1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
/*-
* syslog-rs - a syslog client translated from libc to rust
*
* Copyright 2025 Aleksandr Morozov
*
* The syslog-rs crate can be redistributed and/or modified
* under the terms of either of the following licenses:
*
* 1. the Mozilla Public License Version 2.0 (the “MPL”) OR
*
* 2. The MIT License (MIT)
*
* 3. EUROPEAN UNION PUBLIC LICENCE v. 1.2 EUPL © the European Union 2007, 2016
*/
//! syslog-rs
//!
//! <img src="https://cdn.4neko.org/syslog_logo.webp" width="280"/> <img src="https://cdn.4neko.org/source_avail.webp" width="280"/> <img src="https://cdn.4neko.org/mit_mpl_eupl_2.webp" width="280"/>
//!
//! An implementation of the syslog from glibc/libc like it was designed in
//! in both system libraries. The API is almost compatible with what is in
//! libc/glibc.
//!
//! Also supports windows Event Log and/or remote syslog server.
//!
//! ## Supports
//!
//! * GNU/Linux RFC3164 (UTF-8 by default)
//! * *BSD and OSX RFC5424 (BOM UTF-8 by default) (including msgid and parametes).
//! * Windows Event Log via `WindowsEvent` provider and `RFC3164`/`RFC5424` via network or file.
//! * Tokio async
//! * Smol async
//! * TLS over TCP syslog server connection
//! * TCP/UDP syslog server connection
//! * Local file writer
//!
//! Directories:
//! * a_sync - all async code
//! * formatters - syslog message formatter.
//! * sync - all sync code
//! * src - all common code for both sync and async.
//!
//! Features:
//! * feature = `build_with_thread_local` enables the lockless syslog client for single threaded or `thread_local` instances.
//! * feature = "build_sync" a base feature which enables all SYNC code. Just enabling the `use_sync`
//! would enable only basic SharedSyslog.
//! * feature = "build_async_tokio" a Tokio based async IO. Includes the tokio and tokio-rustls deps.
//! * feature = "build_async_smol" for synchronious with async processing (use syslog_rs::sy_async_queue::{Syslog};)
//! * feature = "build_async_interface" for asynchronious interface only without any realisations.
//! * feature = "build_with_queue" a Smol based async IO. Includes the smol and futures-rustls dep.
//! moves the syslog client to separate thread and by default uses
//! crossbeam-channel to receive messages.
//! Depending on which async procvider is selected, the channel realization
//! will be switched suring compilation. In this case, an async code can be
//! attached to the sync queue which allows to write to the same syslog
//! connection with the same setup.
//! * feature = "build_ext_net" adds the networking support! (TCP, UDP)
//! * feature = "build_ext_tls" adds the TLS support over network (TCP).
//! * feature = "build_ext_file" writing directly to file.
//!
//! --
//! * feature = "udp_truncate_1024_bytes" - Forces truncation of the (whole) syslog message to 1024
//! * feature = udp_truncate_1440_bytes - Forces truncation of the (whole) syslog message to 1440
//! * feature = tcp_truncate_1024_bytes - Forces truncation of the (whole) syslog message to 1024
//! * feature = tcp_truncate_2048_bytes - Forces truncation of the (whole) syslog message to 2048
//! * feature = tcp_truncate_4096_bytes - Forces truncation of the (whole) syslog message to 4096
//! * feature = tcp_truncate_max_bytes - Forces truncation of the (whole) syslog message to 8192 (max)
//! * feature = dgram_sysctl_failure_panic - BSD only! By default, if crate fails to obtain a sysctl net.local.dgram.maxdgram,
//! it returns a default value 2048. If this feature is enabled, then it will panic.
//!
//! `build_async_tokio` and `build_async_smol` cannot be used together.
//!
//! `build_with_queue` behaves differently if enabled ine of the async providers.
//!
//! **For mor info, please see README.md!**
//!
//! # Usage Example
//!
//! syslog-rs = {version = "6.4", default-features = false, features = ["build_sync", "build_ext_net", "udp_truncate_1440_bytes"]}
//!
//! By default, the following features are enabled: `build_sync`, `truncate_default`
//!
//! ```ignore
//! use std::{sync::LazyLock, thread};
//! use std::time::Duration;
//!
//! use syslog_rs::formatters::DefaultSyslogFormatter;
//! use syslog_rs::{SyslogApi, SyncSyslog};
//! use syslog_rs::{LogFacility, LogStat, Priority, SyslogLocal};
//!
//! pub static SYSLOG: LazyLock<SyncSyslog> = LazyLock::new(||
//! {
//! SyncSyslog::openlog(
//! Some("example"),
//! LogStat::LOG_CONS | LogStat::LOG_PID,
//! LogFacility::LOG_DAEMON, SyslogLocal::new()
//! )
//! .unwrap()
//! }
//! );
//!
//! pub static SYSLOG2: LazyLock<SyncSyslog<DefaultSyslogFormatter, SyslogLocal>> = LazyLock::new(||
//! {
//! SyncSyslog
//! ::<_, _>
//! ::openlog_with(
//! None,
//! LogStat::LOG_CONS | LogStat::LOG_NDELAY | LogStat::LOG_PID,
//! LogFacility::LOG_DAEMON, SyslogLocal::new()
//! )
//! .unwrap()
//! }
//! );
//!
//! pub static SYSLOG3: LazyLock<SyncSyslog<DefaultSyslogFormatter, SyslogLocal>> = LazyLock::new(||
//! {
//! SyncSyslog
//! ::<_, _>
//! ::openlog_with(
//! None,
//! LogStat::LOG_CONS | LogStat::LOG_NDELAY | LogStat::LOG_PID,
//! LogFacility::LOG_DAEMON, SyslogLocal::new()
//! )
//! .unwrap()
//! }
//! );
//!
//! macro_rules! logdebug
//! {
//! ($($arg:tt)*) => (
//! SYSLOG.syslog(Priority::LOG_DEBUG, format!($($arg)*).into())
//! )
//! }
//!
//! macro_rules! logdebug2
//! {
//! ($($arg:tt)*) => (
//! SYSLOG2.syslog(Priority::LOG_DEBUG, format!($($arg)*).into())
//! )
//! }
//!
//! pub fn main()
//! {
//! logdebug2!("test program name!");
//!
//!
//! logdebug!("test message1!");
//!
//! SYSLOG.change_identity(Some("example2")).unwrap();
//!
//! logdebug!("test message from new ident");
//!
//! let new_syslog =
//! SyncSyslog
//! ::<DefaultSyslogFormatter, SyslogLocal>
//! ::openlog_with(
//! None,
//! LogStat::LOG_CONS | LogStat::LOG_NDELAY | LogStat::LOG_PID,
//! LogFacility::LOG_DAEMON, SyslogLocal::new()
//! )
//! .unwrap();
//!
//! let c_new_syslog = new_syslog.clone();
//! let thread_hndl =
//! std::thread::spawn(move ||
//! {
//! logdebug!("message from thread 1");
//! std::thread::sleep(Duration::from_nanos(1000));
//! logdebug!("message from thread 2");
//! std::thread::sleep(Duration::from_nanos(1000));
//! logdebug!("message from thread 3");
//! std::thread::sleep(Duration::from_nanos(1000));
//! logdebug!("message from thread 4");
//!
//! c_new_syslog.syslog(Priority::LOG_DEBUG, "test".into());
//! }
//! );
//!
//! let _ = thread_hndl.join();
//!
//! logdebug!("joined");
//! thread::sleep(Duration::from_micros(10));
//!
//! return;
//! }
//! ```
//!
//! ```ignore
//! use syslog_rs::sy_async::AsyncSyslog;
//! use tokio::sync::OnceCell;
//! use tokio::time::{Duration, sleep};
//!
//! use syslog_rs::{LogFacility, LogStat, Priority, SyslogLocal};
//!
//!
//! pub static SYSLOG: OnceCell<AsyncSyslog> = OnceCell::const_new();
//!
//!
//!
//!
//! macro_rules! logdebug
//! {
//! ($($arg:tt)*) => (
//! SYSLOG.get().unwrap().syslog(Priority::LOG_DEBUG, format!($($arg)*)).await
//! )
//! }
//!
//! #[tokio::main]
//! async fn main()
//! {
//! let syslog =
//! AsyncSyslog::openlog(
//! Some("example"),
//! LogStat::LOG_CONS | LogStat::LOG_NDELAY | LogStat::LOG_PID,
//! LogFacility::LOG_DAEMON,
//! SyslogLocal::new()
//! )
//! .await
//! .unwrap();
//!
//!
//! SYSLOG.get_or_init(|| async { syslog }).await;
//!
//!
//! logdebug!("test message async start!");
//!
//! SYSLOG.get().unwrap().vsyslog(Priority::LOG_DEBUG, "test 2").await;
//!
//! sleep(Duration::from_micros(10)).await;
//!
//! SYSLOG.get().unwrap().change_identity("new_identity").await.unwrap();
//!
//! logdebug!("test message new identity!");
//!
//! sleep(Duration::from_micros(10)).await;
//!
//! logdebug!("test 123!");
//! logdebug!("test 123123! end ");
//! return;
//! }
//!
//! ```
// make sure that the smol and tokio are not used together.
compile_error!;
// make sure that the build_async_interface and either async_embedded are not used together.
compile_error!;
//-- REEXPORT --
extern crate bitflags;
pub extern crate chrono;
extern crate socket2;
extern crate instance_copy_on_write;
pub extern crate nix;
/// winDAws crp...
pub extern crate windows;
// -- TLS --
extern crate rustls;
extern crate tokio_rustls;
extern crate futures_rustls;
// -- ASYNC --
extern crate tokio;
extern crate smol;
// -- SYNC --
extern crate crossbeam_channel;
extern crate crossbeam_utils;
/// A sync syslog realization including shared and queued syslog client.
/// An async interface and/or realisations. The main async syslog struct is located there.
/// A message formatters i.e RFC5424 and other. Also a message formatter interface.
/// A syslog destnation. i.e local, remote, remote TLS, local file. Needed to initialize the
/// (both sync and async) instances.
pub use *;
/// A common things for the sockets managment.
/// A common code which holds all flags and macroses.
/// Unified error interface.
//-- NON EXPORT
/// A portable code which is different for different OSes.
/// Public use of the type of the tap.
pub use TapType;
/// A (prev SyslogShared) single shared (between threads) a sync type of the syslog client.
pub use SyncSyslog;
pub use SyslogApi;
/// A streamable sync instance (both).
pub use SyStreamApi;
/// A `sy_async` is a shortcut to the file `syslog_async.rs` in dir `a_sync`.
pub use syslog_async as sy_async;
/// A main async syslog instance.
pub use AsyncSyslog;
/// A shortcut for the internals of the `async_syslog` and IO for user implementation.
pub use ;
/// A shortcut to the trait `AsyncMutex` which unifies the mutex realiztion of different
/// exec environments.
pub use AsyncMutex;
/// Use this trait to access queue interface for async code.
pub use AsyncSyslogQueueApi;
/// A shortcut to the file `syslog_sync_queue.rs` in dir `sync`.
pub use syslog_sync_queue as sy_sync_queue;
/// A (previosuly SyslogQueue) queued sync type of the syslog client. Also async queue.
pub use QueuedSyslog;
pub use SingleSyslog;
/// A shortcut use of all in the `common.rs`.
pub use *;