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
use crate::errors::*;
use failure::bail;
#[derive(Debug, Clone)]
pub(super) struct Rule {
pub table: String,
pub chain: String,
pub source: Option<String>,
pub destination: Option<String>,
pub in_interface: Option<String>,
pub out_interface: Option<String>,
pub not_in_interface: bool,
pub not_out_interface: bool,
pub protocol: Option<String>,
pub source_port: Option<String>,
pub destination_port: Option<String>,
pub filter: Option<String>,
pub jump: Option<String>,
pub comment: Option<String>,
}
#[derive(Debug, Clone)]
pub(super) struct BuiltRule {
pub table: String,
pub chain: String,
pub rule: String,
}
impl slog::Value for BuiltRule {
fn serialize(
&self,
record: &slog::Record,
key: slog::Key,
serializer: &mut dyn slog::Serializer,
) -> slog::Result {
format!("{:?}", self).serialize(record, key, serializer)
}
}
#[allow(dead_code)]
impl Rule {
pub(super) fn new(table: &str, chain: &str) -> Rule {
Rule {
table: table.into(),
chain: chain.into(),
source: None,
destination: None,
in_interface: None,
out_interface: None,
not_in_interface: false,
not_out_interface: false,
protocol: None,
source_port: None,
destination_port: None,
filter: None,
jump: None,
comment: None,
}
}
pub fn source<S: ?Sized>(&mut self, value: &S) -> &mut Self
where
S: AsRef<str>,
{
let new = self;
new.source = Some(value.as_ref().into());
new
}
pub fn destination<S: ?Sized>(&mut self, value: &S) -> &mut Self
where
S: AsRef<str>,
{
let new = self;
new.destination = Some(value.as_ref().into());
new
}
pub fn in_interface<S: ?Sized>(&mut self, value: &S) -> &mut Self
where
S: AsRef<str>,
{
let new = self;
new.in_interface = Some(value.as_ref().into());
new
}
pub fn out_interface<S: ?Sized>(&mut self, value: &S) -> &mut Self
where
S: AsRef<str>,
{
let new = self;
new.out_interface = Some(value.as_ref().into());
new
}
pub fn not_in_interface(&mut self, value: bool) -> &mut Self {
let new = self;
new.not_in_interface = value;
new
}
pub fn not_out_interface(&mut self, value: bool) -> &mut Self {
let new = self;
new.not_out_interface = value;
new
}
pub fn protocol<S: ?Sized>(&mut self, value: &S) -> &mut Self
where
S: AsRef<str>,
{
let new = self;
new.protocol = Some(value.as_ref().into());
new
}
pub fn source_port<S: ?Sized>(&mut self, value: &S) -> &mut Self
where
S: AsRef<str>,
{
let new = self;
new.source_port = Some(value.as_ref().into());
new
}
pub fn destination_port<S: ?Sized>(&mut self, value: &S) -> &mut Self
where
S: AsRef<str>,
{
let new = self;
new.destination_port = Some(value.as_ref().into());
new
}
pub fn filter<S: ?Sized>(&mut self, value: &S) -> &mut Self
where
S: AsRef<str>,
{
let new = self;
new.filter = Some(value.as_ref().into());
new
}
pub fn jump<S: ?Sized>(&mut self, value: &S) -> &mut Self
where
S: AsRef<str>,
{
let new = self;
new.jump = Some(value.as_ref().into());
new
}
pub fn comment<S: ?Sized>(&mut self, value: &S) -> &mut Self
where
S: AsRef<str>,
{
let new = self;
new.comment = Some(value.as_ref().into());
new
}
pub fn build(&self) -> Result<BuiltRule> {
let mut args: Vec<String> = Vec::new();
if let Some(ref source) = self.source {
args.push("-s".to_owned());
args.push(source.to_owned());
}
if let Some(ref destination) = self.destination {
args.push("-d".to_owned());
args.push(destination.to_owned());
}
if let Some(ref in_interface) = self.in_interface {
if self.not_in_interface {
args.push("!".to_owned());
}
args.push("-i".to_owned());
args.push(in_interface.to_owned());
}
if let Some(ref out_interface) = self.out_interface {
if self.not_out_interface {
args.push("!".to_owned());
}
args.push("-o".to_owned());
args.push(out_interface.to_owned());
}
if let Some(ref protocol) = self.protocol {
args.push("-p".to_owned());
args.push(protocol.to_owned());
} else if self.source_port.is_some() || self.destination_port.is_some() {
args.push("-p".to_owned());
args.push("tcp".to_owned());
}
if let Some(ref source_port) = self.source_port {
args.push("--sport".to_owned());
args.push(source_port.to_owned());
}
if let Some(ref destination_port) = self.destination_port {
args.push("--dport".to_owned());
args.push(destination_port.to_owned());
}
if let Some(ref filter) = self.filter {
args.push(filter.to_owned());
}
if args.is_empty() {
bail!(
"one of `source`, `destination`, `in_interface`, `out_interface` \
`protocol`, `source_port`, `destination_port` or `filter` must be \
initialized"
);
}
if let Some(ref jump) = self.jump {
args.push("-j".to_owned());
args.push(jump.to_owned());
} else {
bail!("`jump` must be initialized");
}
if let Some(ref comment) = self.comment {
args.push("-m".to_owned());
args.push("comment".to_owned());
args.push("--comment".to_owned());
args.push(format!("\"{}\"", comment));
}
Ok(BuiltRule {
table: self.table.clone(),
chain: self.chain.clone(),
rule: args.join(" "),
})
}
}