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
|
/*
* (C) 2006-2007 by Pablo Neira Ayuso <pablo@netfilter.org>
*
* This software may be used and distributed according to the terms
* of the GNU General Public License, incorporated herein by reference.
*/
#include "internal/internal.h"
static void __build_timeout(struct nfnlhdr *req,
size_t size,
const struct nf_expect *exp)
{
nfnl_addattr32(&req->nlh, size, CTA_EXPECT_TIMEOUT,htonl(exp->timeout));
}
int __build_expect(struct nfnl_subsys_handle *ssh,
struct nfnlhdr *req,
size_t size,
u_int16_t type,
u_int16_t flags,
const struct nf_expect *exp)
{
u_int8_t l3num;
if (test_bit(ATTR_ORIG_L3PROTO, exp->master.set))
l3num = exp->master.tuple[__DIR_ORIG].l3protonum;
else if (test_bit(ATTR_ORIG_L3PROTO, exp->expected.set))
l3num = exp->expected.tuple[__DIR_ORIG].l3protonum;
else
return -1;
memset(req, 0, size);
nfnl_fill_hdr(ssh, &req->nlh, 0, l3num, 0, type, flags);
if (test_bit(ATTR_EXP_EXPECTED, exp->set)) {
__build_tuple(req,
size,
&exp->expected.tuple[__DIR_ORIG],
CTA_EXPECT_TUPLE);
}
if (test_bit(ATTR_EXP_MASTER, exp->set)) {
__build_tuple(req,
size,
&exp->master.tuple[__DIR_ORIG],
CTA_EXPECT_MASTER);
}
if (test_bit(ATTR_EXP_MASK, exp->set)) {
__build_tuple(req,
size,
&exp->mask.tuple[__DIR_ORIG],
CTA_EXPECT_MASK);
}
if (test_bit(ATTR_EXP_TIMEOUT, exp->set))
__build_timeout(req, size, exp);
return 0;
}
|