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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
|
// -*- coding: utf-8 -*-
//
// Copyright (C) 2024 Michael Büsch <m@bues.ch>
//
// Licensed under the Apache License version 2.0
// or the MIT license, at your option.
// SPDX-License-Identifier: Apache-2.0 OR MIT
use crate::firewall::{
prune_all_lease_timeouts, FirewallMaintain, FirewallOpen, Lease, LeaseMap, LeasePort,
SingleLeasePort,
};
use anyhow::{self as ah, format_err as err, Context as _};
use letmein_conf::Config;
use nftables::{
batch::Batch,
expr::{Expression, NamedExpression, Payload, PayloadField},
helper::{apply_ruleset, get_current_ruleset},
schema::{Chain, FlushObject, NfCmd, NfListObject, NfObject, Rule},
stmt::{Match, Operator, Statement},
types::NfFamily,
};
use std::{fmt::Write as _, net::IpAddr};
struct NftNames<'a> {
family: NfFamily,
table: &'a str,
chain_input: &'a str,
}
impl<'a> NftNames<'a> {
fn get(conf: &'a Config) -> ah::Result<Self> {
let family = match conf.nft_family() {
"inet" => NfFamily::INet,
"ip" => NfFamily::IP,
"ip6" => NfFamily::IP6,
fam => {
return Err(err!("Unknown nftables family: {fam}"));
}
};
let table = match conf.nft_table() {
"" => {
return Err(err!("nftables table not specified."));
}
table => table,
};
let chain_input = match conf.nft_chain_input() {
"" => {
return Err(err!("nftables chain-input not specified."));
}
table => table,
};
Ok(NftNames {
family,
table,
chain_input,
})
}
}
/// Create an nftables IP source address match statement.
fn statement_match_saddr(family: NfFamily, addr: IpAddr) -> ah::Result<Statement> {
let (protocol, addr) = match addr {
IpAddr::V4(addr) => match family {
NfFamily::INet | NfFamily::IP => ("ip", addr.to_string()),
_ => {
return Err(err!("IP version not supported by nftables firewall family"));
}
},
IpAddr::V6(addr) => {
if let Some(addr) = addr.to_ipv4_mapped() {
match family {
NfFamily::INet | NfFamily::IP => ("ip", addr.to_string()),
_ => {
return Err(err!("IP version not supported by nftables firewall family"));
}
}
} else {
match family {
NfFamily::INet | NfFamily::IP6 => ("ip6", addr.to_string()),
_ => {
return Err(err!("IP version not supported by nftables firewall family"));
}
}
}
}
};
Ok(Statement::Match(Match {
left: Expression::Named(NamedExpression::Payload(Payload::PayloadField(
PayloadField {
protocol: protocol.to_string(),
field: "saddr".to_string(),
},
))),
right: Expression::String(addr),
op: Operator::EQ,
}))
}
/// Create an nftables port match statement.
fn statement_match_dport(port: SingleLeasePort) -> Statement {
let (protocol, port) = match port {
SingleLeasePort::Tcp(port) => ("tcp".to_string(), port),
SingleLeasePort::Udp(port) => ("udp".to_string(), port),
};
Statement::Match(Match {
left: Expression::Named(NamedExpression::Payload(Payload::PayloadField(
PayloadField {
protocol,
field: "dport".to_string(),
},
))),
right: Expression::Number(port.into()),
op: Operator::EQ,
})
}
/// Create an nftables `accept` statement.
fn statement_accept() -> Statement {
Statement::Accept(None)
}
/// Comment string for a `Rule`.
/// It can be used as unique identifier for lease rules.
fn gen_rule_comment(addr: Option<IpAddr>, port: SingleLeasePort) -> ah::Result<String> {
let mut comment = String::with_capacity(256);
if let Some(addr) = addr {
write!(&mut comment, "{addr}/")?;
} else {
write!(&mut comment, "any/")?;
}
write!(&mut comment, "{port}/accept/letmein/GENERATED")?;
Ok(comment)
}
/// Generate a nftables add-rule for this addr/port.
/// This rule will open the port for the IP address.
fn gen_add_lease_cmd(conf: &Config, addr: IpAddr, port: SingleLeasePort) -> ah::Result<NfCmd> {
let names = NftNames::get(conf).context("Read configuration")?;
let mut rule = Rule {
family: names.family,
table: names.table.to_string(),
chain: names.chain_input.to_string(),
expr: vec![
statement_match_saddr(names.family, addr)?,
statement_match_dport(port),
statement_accept(),
],
..Default::default()
};
rule.comment = Some(gen_rule_comment(Some(addr), port)?);
Ok(NfCmd::Add(NfListObject::Rule(rule)))
}
/// Generate the nftables add-rule commands for this lease.
/// These commands will open the port(s) for the IP address.
fn gen_add_lease_cmds(conf: &Config, lease: &Lease) -> ah::Result<Vec<NfCmd>> {
let mut cmds = Vec::with_capacity(2);
let addr = lease.addr();
match lease.port() {
LeasePort::Tcp(port) => {
cmds.push(gen_add_lease_cmd(conf, addr, SingleLeasePort::Tcp(port))?);
}
LeasePort::Udp(port) => {
cmds.push(gen_add_lease_cmd(conf, addr, SingleLeasePort::Udp(port))?);
}
LeasePort::TcpUdp(port) => {
cmds.push(gen_add_lease_cmd(conf, addr, SingleLeasePort::Tcp(port))?);
cmds.push(gen_add_lease_cmd(conf, addr, SingleLeasePort::Udp(port))?);
}
}
if conf.debug() {
println!("nftables: Adding rules for {lease}");
}
Ok(cmds)
}
struct ListedRuleset {
objs: Vec<NfObject>,
}
impl ListedRuleset {
/// Get the active ruleset from the kernel.
pub fn from_kernel() -> ah::Result<Self> {
let ruleset = get_current_ruleset(
None, // program
None, // args
)?;
Ok(Self {
objs: ruleset.objects,
})
}
/// Get the nftables handle corresponding to the lease.
/// The rule's comment is the main identifier.
fn find_handle(
&self,
family: NfFamily,
table: &str,
chain_input: &str,
addr: IpAddr,
port: SingleLeasePort,
) -> ah::Result<u32> {
let comment = gen_rule_comment(Some(addr), port)?;
for obj in &self.objs {
if let NfObject::ListObject(obj) = obj {
match &**obj {
NfListObject::Rule(Rule {
family: rule_family,
table: rule_table,
chain: rule_chain,
handle: Some(rule_handle),
comment: Some(rule_comment),
..
}) if *rule_family == family
&& *rule_table == table
&& *rule_chain == chain_input
&& *rule_comment == comment =>
{
return Ok(*rule_handle);
}
_ => (),
}
}
}
Err(err!(
"Nftables 'handle' for {addr}:{port} not found in the kernel ruleset."
))
}
/// Generate nftables delete-rules for this lease.
/// These rules will close the ports for the IP address.
pub fn gen_delete_lease_cmds(&self, conf: &Config, lease: &Lease) -> ah::Result<Vec<NfCmd>> {
let mut cmds = Vec::with_capacity(2);
let names = NftNames::get(conf).context("Read configuration")?;
let addr = lease.addr();
let new_rule = |port: SingleLeasePort| -> ah::Result<NfCmd> {
let mut rule = Rule {
family: names.family,
table: names.table.to_string(),
chain: names.chain_input.to_string(),
expr: vec![],
..Default::default()
};
rule.handle =
Some(self.find_handle(names.family, names.table, names.chain_input, addr, port)?);
Ok(NfCmd::Delete(NfListObject::Rule(rule)))
};
match lease.port() {
LeasePort::Tcp(port) => {
cmds.push(new_rule(SingleLeasePort::Tcp(port))?);
}
LeasePort::Udp(port) => {
cmds.push(new_rule(SingleLeasePort::Udp(port))?);
}
LeasePort::TcpUdp(port) => {
cmds.push(new_rule(SingleLeasePort::Tcp(port))?);
cmds.push(new_rule(SingleLeasePort::Udp(port))?);
}
}
if conf.debug() {
println!("nftables: Deleting rules for {lease}");
}
Ok(cmds)
}
}
pub struct NftFirewall {
leases: LeaseMap,
shutdown: bool,
}
impl NftFirewall {
/// Create a new firewall handler instance.
/// This will also remove all rules from the kernel.
pub async fn new(conf: &Config) -> ah::Result<Self> {
// Test if the `nft` binary is available.
if let Err(e) = std::process::Command::new("nft").args(["--help"]).output() {
return Err(err!(
"Failed to execute the 'nft' program.\n\
Did you install the 'nftables' support package in your distribution's package manager?\n\
Is the 'nft' binary available in the $PATH?\n\
The execution error was: {e}"
));
}
let mut this = Self {
leases: LeaseMap::new(),
shutdown: false,
};
this.nftables_full_rebuild(conf)
.context("nftables initialization")?;
this.print_total_rule_count(conf);
Ok(this)
}
/// Print the number of rules required for all leases.
fn print_total_rule_count(&self, conf: &Config) {
if conf.debug() {
let mut count = 0;
if !self.shutdown {
count += 1; // One for the control port.
}
for lease in self.leases.values() {
count += match lease.port() {
LeasePort::Tcp(_) | LeasePort::Udp(_) => 1,
LeasePort::TcpUdp(_) => 2,
};
}
println!("nftables: A total of {count} rules is installed.");
}
}
/// Apply a rules batch to the kernel.
fn nftables_apply_batch(&self, _conf: &Config, batch: Batch) -> ah::Result<()> {
let ruleset = batch.to_nftables();
apply_ruleset(
&ruleset, // rules
None, // program
None, // args
)
.context("Apply nftables")?;
Ok(())
}
/// Generate all nftables rules and apply them to the kernel after flushing the chain.
fn nftables_full_rebuild(&mut self, conf: &Config) -> ah::Result<()> {
let names = NftNames::get(conf).context("Read configuration")?;
let mut batch = Batch::new();
// Remove all rules from our chain.
batch.add_cmd(NfCmd::Flush(FlushObject::Chain(Chain {
family: names.family,
table: names.table.to_string(),
name: names.chain_input.to_string(),
..Default::default()
})));
if conf.debug() {
println!("nftables: Chain flushed");
}
if !self.shutdown {
// Open the port letmeind is listening on.
let mut rule = Rule {
family: names.family,
table: names.table.to_string(),
chain: names.chain_input.to_string(),
expr: vec![
statement_match_dport(SingleLeasePort::Tcp(conf.port())),
statement_accept(),
],
..Default::default()
};
rule.comment = Some(gen_rule_comment(None, SingleLeasePort::Tcp(conf.port()))?);
batch.add_cmd(NfCmd::Add(NfListObject::Rule(rule)));
if conf.debug() {
println!(
"nftables: Adding control port rule for port={}",
conf.port()
);
}
// Open all lease ports, restricted to the peer addresses.
for lease in self.leases.values() {
for cmd in gen_add_lease_cmds(conf, lease)? {
batch.add_cmd(cmd);
}
}
}
// Apply all batch commands to the kernel.
self.nftables_apply_batch(conf, batch)
}
/// Generate one lease rule and apply it to the kernel.
fn nftables_add_lease(&mut self, conf: &Config, lease: &Lease) -> ah::Result<()> {
// Open the lease port, restricted to the peer address.
let mut batch = Batch::new();
for cmd in gen_add_lease_cmds(conf, lease)? {
batch.add_cmd(cmd);
}
// Apply all batch commands to the kernel.
self.nftables_apply_batch(conf, batch)
}
/// Remove an existing lease rule from the kernel.
fn nftables_remove_leases(&mut self, conf: &Config, leases: &[Lease]) -> ah::Result<()> {
if !leases.is_empty() {
// Get the active ruleset from the kernel.
let ruleset = ListedRuleset::from_kernel()?;
// Add delete commands to remove the lease ports.
let mut batch = Batch::new();
for lease in leases {
for cmd in ruleset.gen_delete_lease_cmds(conf, lease)? {
batch.add_cmd(cmd);
}
}
// Apply all batch commands to the kernel.
self.nftables_apply_batch(conf, batch)?;
}
Ok(())
}
}
impl FirewallMaintain for NftFirewall {
/// Remove all leases and remove all rules from the kernel.
async fn shutdown(&mut self, conf: &Config) -> ah::Result<()> {
assert!(!self.shutdown);
self.shutdown = true;
self.leases.clear();
self.nftables_full_rebuild(conf)?;
self.print_total_rule_count(conf);
Ok(())
}
/// Run the periodic maintenance of the firewall.
/// This will remove timed-out leases.
async fn maintain(&mut self, conf: &Config) -> ah::Result<()> {
assert!(!self.shutdown);
let pruned = prune_all_lease_timeouts(conf, &mut self.leases);
if !pruned.is_empty() {
if let Err(e) = self.nftables_remove_leases(conf, &pruned) {
eprintln!("WARNING: Failed to remove lease(s): '{e}'.");
eprintln!("Trying full rebuild.");
self.nftables_full_rebuild(conf)?;
}
self.print_total_rule_count(conf);
}
Ok(())
}
/// Perform a reload (SIGHUP) of the firewall.
/// This will always re-apply the rules to the kernel.
async fn reload(&mut self, conf: &Config) -> ah::Result<()> {
assert!(!self.shutdown);
let _pruned = prune_all_lease_timeouts(conf, &mut self.leases);
self.nftables_full_rebuild(conf)?;
self.print_total_rule_count(conf);
Ok(())
}
}
impl FirewallOpen for NftFirewall {
/// Add a lease and open the port for the specified IP address.
/// If a lease for this port/address is already present, the timeout will be reset.
/// Apply the rules to the kernel, if required.
async fn open_port(
&mut self,
conf: &Config,
remote_addr: IpAddr,
port: LeasePort,
) -> ah::Result<()> {
assert!(!self.shutdown);
let id = (remote_addr, port);
if let Some(lease) = self.leases.get_mut(&id) {
lease.refresh_timeout(conf);
} else {
let lease = Lease::new(conf, remote_addr, port);
self.nftables_add_lease(conf, &lease)?;
self.leases.insert(id, lease);
self.print_total_rule_count(conf);
}
Ok(())
}
}
// vim: ts=4 sw=4 expandtab
|