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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
|
// SPDX-FileCopyrightText: 2025-2026 Dilluti0n <[email protected]>
// SPDX-License-Identifier: GPL-3.0-or-later
use std::{
os::fd::{AsRawFd, OwnedFd},
sync::{LazyLock, atomic::AtomicBool}
};
use std::fs::OpenOptions;
use std::process::{Command, Stdio};
use std::io::Write;
use anyhow::{Result, Context, anyhow};
use socket2::{Domain, Protocol, Socket, Type};
mod iptables;
mod nftables;
mod rxring;
#[macro_use] mod libc_s;
use iptables::*;
use nftables::*;
use crate::pkt;
use crate::opt;
pub static IS_U32_SUPPORTED: AtomicBool = AtomicBool::new(false);
const INJECT_MARK: u32 = 0xD001;
const PID_FILE: &str = "/run/dpibreak.pid"; // TODO: unmagic this
const PKG_NAME: &str = env!("CARGO_PKG_NAME");
fn exec_process(args: &[&str], input: Option<&str>) -> Result<()> {
if args.is_empty() {
return Err(anyhow!("command args cannot be empty"));
}
let program = args[0];
let stdin_mode = if input.is_some() { Stdio::piped() } else { Stdio::null() };
let mut child = Command::new(program)
.args(&args[1..])
.stdin(stdin_mode)
.stdout(Stdio::null())
.stderr(Stdio::piped())
.spawn()
.with_context(|| format!("failed to spawn {}", program))?;
if let Some(data) = input {
if let Some(mut stdin) = child.stdin.take() {
stdin.write_all(data.as_bytes())
.with_context(|| format!("failed to write input to {}", program))?;
}
}
let output = child.wait_with_output()
.with_context(|| format!("failed to wait for {}", program))?;
match output.status.code() {
Some(0) => Ok(()),
Some(code) => Err(anyhow!("{} exited with status {}: {}", program, code,
String::from_utf8_lossy(&output.stderr))),
None => Err(anyhow!("{} terminated by signal", program))
}
}
struct InstalledRules {
is_nft_not_supported: bool,
ipt: Option<IPTables>,
ip6: Option<IPTables>
}
fn install_ipt6(is_ipv6: bool) -> Option<IPTables> {
let ipt = IPTables::new(is_ipv6).map_err(|e| crate::warn!("iptables: {e}")).ok();
if let Some(ref ipt) = ipt {
ipt.install().map_err(|e| crate::warn!("iptables: {e}")).ok();
}
ipt
}
fn install_rules() -> Result<InstalledRules> {
let mut is_nft_not_supported = false;
let mut ipt = None;
let mut ip6 = None;
if let Err(e) = install_nft_rules() {
is_nft_not_supported = true;
crate::warn!("nftables: {}", e.to_string());
crate::warn!("fallback to iptables");
ipt = install_ipt6(false);
ip6 = install_ipt6(true);
}
Ok(InstalledRules{
is_nft_not_supported,
ipt,
ip6
})
}
impl Drop for InstalledRules {
fn drop(&mut self) {
if self.is_nft_not_supported {
if let Some(ipt) = &self.ipt {
ipt.cleanup().map_err(|e| crate::warn!("fail to cleanup iptables rules: {e}")).ok();
}
if let Some(ipt) = &self.ip6 {
ipt.cleanup().map_err(|e| crate::warn!("fail to cleanup ip6tables rules: {e}")).ok();
}
cleanup_xt_u32().map_err(|e| crate::warn!("fail to cleanup xt_u32: {e}")).ok();
} else {
cleanup_nftables_rules().map_err(|e| crate::warn!("fail to cleanup nftables rules: {e}")).ok();
}
}
}
fn lock_pid_file() -> Result<()> {
use libc_s::flock;
let pid_file = OpenOptions::new()
.write(true)
.create(true)
.truncate(false)
.open(PID_FILE)?;
if flock(pid_file.as_raw_fd(), libc::LOCK_NB | libc::LOCK_EX).is_err() {
let existing_pid = std::fs::read_to_string(PID_FILE)?;
anyhow::bail!("Fail to lock {PID_FILE}: {PKG_NAME} already running with PID {}", existing_pid.trim());
}
pid_file.set_len(0)?;
writeln!(&pid_file, "{}", std::process::id())?;
pid_file.sync_all()?;
std::mem::forget(pid_file); // Tell std to do not close the file
Ok(())
}
fn exit_if_not_root() {
if libc_s::geteuid() != 0 {
crate::error!("{PKG_NAME} must be run as root. Try sudo.");
std::process::exit(3);
}
}
/// Bootstraps that don't require cleanup after load global opts
pub fn bootstrap() -> Result<()> {
exit_if_not_root();
if !opt::daemon() {
lock_pid_file()?;
} else {
daemonize();
}
Ok(())
}
static RAW4: LazyLock<Socket> = LazyLock::new(|| {
let sock = Socket::new(Domain::IPV4, Type::RAW, Some(Protocol::TCP))
.expect("create raw4");
sock.set_header_included_v4(true).expect("IP_HDRINCL");
sock.set_mark(INJECT_MARK).expect("SO_MARK");
sock
});
static RAW6: LazyLock<Socket> = LazyLock::new(|| {
let sock = Socket::new(Domain::IPV6, Type::RAW, Some(Protocol::TCP))
.expect("create raw6");
if let Err(e) = sock.set_header_included_v6(true) {
crate::warn!("Failed to set IPV6_HDRINCL. Maybe old kernel version? IPv6 header manipulation disabled.");
crate::warn!("Cause: {e}");
}
sock.set_mark(INJECT_MARK).expect("SO_MARK");
sock
});
pub fn send_to_raw(pkt: &[u8], dst: std::net::IpAddr) -> Result<()> {
use std::net::*;
match dst {
IpAddr::V4(dst) => {
let addr = SocketAddr::from((dst, 0u16));
RAW4.send_to(pkt, &addr.into())?;
}
IpAddr::V6(dst) => {
let addr = SocketAddr::from((dst, 0u16));
RAW6.send_to(pkt, &addr.into())?;
}
}
Ok(())
}
fn open_nfqueue() -> Result<nfq::Queue> {
use std::os::fd::AsRawFd;
use libc_s::{fcntl, FcntlArg};
let mut q = nfq::Queue::open()?;
q.bind(opt::queue_num())?;
crate::info!("nfqueue: bound to queue number {}", opt::queue_num());
// to check inturrupts
let fd = q.as_raw_fd();
let fl = fcntl(fd, FcntlArg::F_GETFL)?;
fcntl(fd, FcntlArg::F_SETFL(fl | libc::O_NONBLOCK))?;
Ok(q)
}
/// Open AF_PACKET RX ring for syn/ack packets
fn open_rxring() -> Result<rxring::RxRing> {
use libc::sock_filter;
/// cBPF filter for TCP and sport=443 and SYN,ACK packets
///
/// Produced by
/// tcpdump -dd '(ip and tcp src port 443 and tcp[tcpflags] & (tcp-syn|tcp-ack)
/// == (tcp-syn|tcp-ack)) or (ip6 and tcp src port 443 and ip6[53] & 0x12 == 0x12)'
const SYNACK_443_CBPF: &[sock_filter] = &[
sock_filter { code: 0x28, jt: 0, jf: 0, k: 0x0000000c },
sock_filter { code: 0x15, jt: 0, jf: 10, k: 0x00000800 },
sock_filter { code: 0x30, jt: 0, jf: 0, k: 0x00000017 },
sock_filter { code: 0x15, jt: 0, jf: 17, k: 0x00000006 },
sock_filter { code: 0x28, jt: 0, jf: 0, k: 0x00000014 },
sock_filter { code: 0x45, jt: 15, jf: 0, k: 0x00001fff },
sock_filter { code: 0xb1, jt: 0, jf: 0, k: 0x0000000e },
sock_filter { code: 0x48, jt: 0, jf: 0, k: 0x0000000e },
sock_filter { code: 0x15, jt: 0, jf: 12, k: 0x000001bb },
sock_filter { code: 0x50, jt: 0, jf: 0, k: 0x0000001b },
sock_filter { code: 0x54, jt: 0, jf: 0, k: 0x00000012 },
sock_filter { code: 0x15, jt: 8, jf: 9, k: 0x00000012 },
sock_filter { code: 0x15, jt: 0, jf: 8, k: 0x000086dd },
sock_filter { code: 0x30, jt: 0, jf: 0, k: 0x00000014 },
sock_filter { code: 0x15, jt: 0, jf: 6, k: 0x00000006 },
sock_filter { code: 0x28, jt: 0, jf: 0, k: 0x00000036 },
sock_filter { code: 0x15, jt: 0, jf: 4, k: 0x000001bb },
sock_filter { code: 0x30, jt: 0, jf: 0, k: 0x00000043 },
sock_filter { code: 0x54, jt: 0, jf: 0, k: 0x00000012 },
sock_filter { code: 0x15, jt: 0, jf: 1, k: 0x00000012 },
sock_filter { code: 0x6, jt: 0, jf: 0, k: 0x00040000 },
sock_filter { code: 0x6, jt: 0, jf: 0, k: 0x00000000 },
];
const BLOCK_SIZE: u32 = 4096 * 4; // 16 KB
const BLOCK_NR: u32 = 4;
/// tpacket_hdr (~66) + eth(14) + ipv6(40) + tcp with options(60) = ~180
const FRAME_SIZE: u32 = 256;
let rx = rxring::RxRing::new(SYNACK_443_CBPF, BLOCK_SIZE, BLOCK_NR, FRAME_SIZE)?;
crate::info!("rxring: initialized");
Ok(rx)
}
/// open signalfd for SIGINT and SIGTERM
fn open_signalfd() -> Result<OwnedFd> {
use libc::*;
use std::os::fd::FromRawFd;
// SAFETY: sigaddset fails only when signum is invalid
unsafe {
let mut mask: sigset_t = std::mem::zeroed();
sigemptyset(&mut mask);
sigaddset(&mut mask, SIGTERM);
sigaddset(&mut mask, SIGINT);
syscall!(pthread_sigmask(SIG_BLOCK, &mask, core::ptr::null_mut()))?;
let raw = syscall!(signalfd(-1, &mask, 0))?;
Ok(OwnedFd::from_raw_fd(raw))
}
}
fn ipt6_cleanup(is_ipv6: bool) -> Result<()> {
let ipt6 = IPTables::new(is_ipv6)?;
ipt6.cleanup()
}
pub fn run() -> Result<()> {
use crate::handle_packet;
use super::PACKET_SIZE_CAP;
// In case the previous execution was not cleaned properly
_ = cleanup_nftables_rules();
_ = ipt6_cleanup(false);
_ = ipt6_cleanup(true);
let _rule = install_rules()?;
let sfd = open_signalfd()?;
let mut q = open_nfqueue()?;
let mut rx = if opt::fake_autottl() { Some(open_rxring()?) } else { None };
let mut buf = Vec::<u8>::with_capacity(PACKET_SIZE_CAP);
let mut fds = [
libc::pollfd { fd: sfd.as_raw_fd(), events: libc::POLLIN, revents: 0 },
libc::pollfd { fd: q.as_raw_fd(), events: libc::POLLIN, revents: 0 },
libc::pollfd {
fd: rx.as_ref().map_or(-1, |r| r.as_raw_fd()),
events: libc::POLLIN,
revents: 0
},
];
crate::splash!("{}", super::MESSAGE_AT_RUN);
loop {
libc_s::poll(&mut fds, -1)?;
let is_intr: bool = fds[0].revents & libc::POLLIN != 0;
let q_ready: bool = fds[1].revents & libc::POLLIN != 0;
let rx_ready: bool = fds[2].revents & libc::POLLIN != 0;
if is_intr {
break;
}
if rx_ready && let Some(ref mut rx) = rx {
while let Some(pkt) = rx.current_packet() {
pkt::put_hop(pkt);
rx.advance();
}
}
if q_ready {
while let Ok(mut msg) = q.recv() {
let verdict = handle_packet!(
&msg.get_payload(),
&mut buf,
handled => nfq::Verdict::Drop,
rejected => nfq::Verdict::Accept,
);
msg.set_verdict(verdict);
q.verdict(msg)?;
}
}
}
q.unbind(opt::queue_num())?;
Ok(())
}
const DAEMON_PREFIX: &str = "/var/log";
// TODO: detach daemonize crate and lock pid file with lock_pid_file
fn daemonize_1() -> Result<()> {
use std::fs;
use daemonize::Daemonize;
fs::create_dir_all(DAEMON_PREFIX).context("daemonize")?;
let log_file = OpenOptions::new()
.create(true)
.write(true)
.open(format!("{DAEMON_PREFIX}/{PKG_NAME}.log"))?;
let daemonize = Daemonize::new()
.pid_file(PID_FILE)
.chown_pid_file(true)
.working_directory(DAEMON_PREFIX)
.stdout(log_file.try_clone()?);
daemonize.start()?;
log_file.set_len(0)?;
crate::info!("start as daemon: pid {}", std::process::id());
Ok(())
}
fn daemonize() {
const EXIT_DAEMON_FAIL: i32 = 2;
match daemonize_1() {
Ok(_) => {},
Err(e) => {
crate::error!("fail to start as daemon: {e}");
std::process::exit(EXIT_DAEMON_FAIL);
}
}
}
pub fn local_time() -> (i32, u8, u8, u8, u8, u8) {
unsafe {
let t = libc::time(std::ptr::null_mut());
let mut tm: libc::tm = std::mem::zeroed();
if t == -1 || libc::localtime_r(&t, &mut tm).is_null() {
return (0, 0, 0, 0, 0, 0);
};
(tm.tm_year + 1900, (tm.tm_mon + 1) as u8, tm.tm_mday as u8,
tm.tm_hour as u8, tm.tm_min as u8, tm.tm_sec as u8)
}
}
|