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
/*-
* 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. EUROPEAN UNION PUBLIC LICENCE v. 1.2 EUPL © the European Union 2007, 2016
*/
//! syslog-rs
//!
//!
//! 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.
//!
//! ## Supports
//!
//! * GNU/Linux RFC3164 (UTF-8 by default)
//! * *BSD and OSX RFC5424 (BOM UTF-8 by default)
//!
//! 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_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_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.
//!
//! # Usage
//!
//! syslog-rs = {version = "2.0", 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::sy_sync::Syslog;
//!
//! use syslog_rs::{LogFacility, LogStat, Priority, SyslogLocal};
//!
//! pub static SYSLOG: LazyLock<Syslog> = LazyLock::new(||
//! {
//! Syslog::openlog(
//! Some("example"),
//! 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)*))
//! )
//! }
//!
//! pub fn main()
//! {
//! logdebug!("test message1!");
//!
//! SYSLOG.change_identity("example2").unwrap();
//!
//! logdebug!("test message from new ident");
//!
//! 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!;
//-- REEXPORT --
extern crate bitflags;
pub extern crate chrono;
pub extern crate nix;
extern crate socket2;
// -- TLS --
extern crate rustls;
extern crate tokio_rustls;
extern crate futures_rustls;
// -- ASYNC --
extern crate tokio;
extern crate smol;
// -- SYNC --
extern crate crossbeam_channel;
pub use *;
//-- NON EXPORT
//-- PUBLIC
pub use TapType;
pub use *;
pub use syslog as sy_sync;
pub use Syslog;
pub use SyslogShared;
pub use syslog_async as sy_async;
pub use AsyncSyslog;
pub use AsyncSyslogShared;
pub use AsyncSyslogQueue;
pub use syslog_sync_queue as sy_sync_queue;
pub use SyslogQueue;
pub use *;