~ubuntu-branches/ubuntu/trusty/conntrack/trusty-proposed

« back to all changes in this revision

Viewing changes to src/build.c

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Wirt, Max Kellermann
  • Date: 2008-04-14 23:09:22 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080414230922-9xoi1gl38tc8lyng
Tags: 1:0.9.6-4
[ Max Kellermann ]
fix compilation on SPARC (printf argument mismatch)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * (C) 2006-2007 by Pablo Neira Ayuso <pablo@netfilter.org>
 
3
 * 
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 */
 
18
 
 
19
#include <string.h>
 
20
#include <libnetfilter_conntrack/libnetfilter_conntrack.h>
 
21
#include "network.h"
 
22
 
 
23
static void addattr(struct netpld *pld, int attr, const void *data, size_t len)
 
24
{
 
25
        struct netattr *nta;
 
26
        int tlen = NTA_LENGTH(len);
 
27
 
 
28
        nta = PLD_TAIL(pld);
 
29
        nta->nta_attr = htons(attr);
 
30
        nta->nta_len = htons(len);
 
31
        memcpy(NTA_DATA(nta), data, len);
 
32
        pld->len += NTA_ALIGN(tlen);
 
33
}
 
34
 
 
35
static void __build_u8(const struct nf_conntrack *ct,
 
36
                       struct netpld *pld,
 
37
                       int attr)
 
38
{
 
39
        uint8_t data = nfct_get_attr_u8(ct, attr);
 
40
        addattr(pld, attr, &data, sizeof(uint8_t));
 
41
}
 
42
 
 
43
static void __build_u16(const struct nf_conntrack *ct,
 
44
                        struct netpld *pld,
 
45
                        int attr)
 
46
{
 
47
        uint16_t data = nfct_get_attr_u16(ct, attr);
 
48
        data = htons(data);
 
49
        addattr(pld, attr, &data, sizeof(uint16_t));
 
50
}
 
51
 
 
52
static void __build_u32(const struct nf_conntrack *ct, 
 
53
                        struct netpld *pld,
 
54
                        int attr)
 
55
{
 
56
        uint32_t data = nfct_get_attr_u32(ct, attr);
 
57
        data = htonl(data);
 
58
        addattr(pld, attr, &data, sizeof(uint32_t));
 
59
}
 
60
 
 
61
static void __build_pointer_be(const struct nf_conntrack *ct, 
 
62
                               struct netpld *pld,
 
63
                               int attr,
 
64
                               size_t size)
 
65
{
 
66
        addattr(pld, attr, nfct_get_attr(ct, attr), size);
 
67
}
 
68
 
 
69
static void __nat_build_u32(uint32_t data, struct netpld *pld, int attr)
 
70
{
 
71
        data = htonl(data);
 
72
        addattr(pld, attr, &data, sizeof(uint32_t));
 
73
}
 
74
 
 
75
static void __nat_build_u16(uint16_t data, struct netpld *pld, int attr)
 
76
{
 
77
        data = htons(data);
 
78
        addattr(pld, attr, &data, sizeof(uint16_t));
 
79
}
 
80
 
 
81
/* XXX: ICMP not supported */
 
82
void build_netpld(struct nf_conntrack *ct, struct netpld *pld, int query)
 
83
{
 
84
        if (nfct_attr_is_set(ct, ATTR_IPV4_SRC))
 
85
                __build_pointer_be(ct, pld, ATTR_IPV4_SRC, sizeof(uint32_t));
 
86
        if (nfct_attr_is_set(ct, ATTR_IPV4_DST))
 
87
                __build_pointer_be(ct, pld, ATTR_IPV4_DST, sizeof(uint32_t));
 
88
        if (nfct_attr_is_set(ct, ATTR_IPV6_SRC))
 
89
                __build_pointer_be(ct, pld, ATTR_IPV6_SRC, sizeof(uint32_t)*4);
 
90
        if (nfct_attr_is_set(ct, ATTR_IPV6_DST))
 
91
                __build_pointer_be(ct, pld, ATTR_IPV6_DST, sizeof(uint32_t)*4);
 
92
        if (nfct_attr_is_set(ct, ATTR_L3PROTO))
 
93
                __build_u8(ct, pld, ATTR_L3PROTO);
 
94
        if (nfct_attr_is_set(ct, ATTR_PORT_SRC))
 
95
                __build_u16(ct, pld, ATTR_PORT_SRC);
 
96
        if (nfct_attr_is_set(ct, ATTR_PORT_DST))
 
97
                __build_u16(ct, pld, ATTR_PORT_DST);
 
98
        if (nfct_attr_is_set(ct, ATTR_L4PROTO)) {
 
99
                uint8_t proto;
 
100
 
 
101
                __build_u8(ct, pld, ATTR_L4PROTO);
 
102
                proto = nfct_get_attr_u8(ct, ATTR_L4PROTO);
 
103
                if (proto == IPPROTO_TCP) {
 
104
                        if (nfct_attr_is_set(ct, ATTR_TCP_STATE))
 
105
                                __build_u8(ct, pld, ATTR_TCP_STATE);
 
106
                }
 
107
        }
 
108
        if (nfct_attr_is_set(ct, ATTR_TIMEOUT))
 
109
                __build_u32(ct, pld, ATTR_TIMEOUT);
 
110
        if (nfct_attr_is_set(ct, ATTR_MARK))
 
111
                __build_u32(ct, pld, ATTR_MARK);
 
112
        if (nfct_attr_is_set(ct, ATTR_SECMARK))
 
113
                __build_u32(ct, pld, ATTR_SECMARK);
 
114
        if (nfct_attr_is_set(ct, ATTR_STATUS))
 
115
                __build_u32(ct, pld, ATTR_STATUS);
 
116
 
 
117
        /* setup the master conntrack */
 
118
        if (nfct_attr_is_set(ct, ATTR_MASTER_IPV4_SRC))
 
119
                __build_u32(ct, pld, ATTR_MASTER_IPV4_SRC);
 
120
        if (nfct_attr_is_set(ct, ATTR_MASTER_IPV4_DST))
 
121
                __build_u32(ct, pld, ATTR_MASTER_IPV4_DST);
 
122
        if (nfct_attr_is_set(ct, ATTR_MASTER_L3PROTO))
 
123
                __build_u8(ct, pld, ATTR_MASTER_L3PROTO);
 
124
        if (nfct_attr_is_set(ct, ATTR_MASTER_PORT_SRC))
 
125
                __build_u16(ct, pld, ATTR_MASTER_PORT_SRC);
 
126
        if (nfct_attr_is_set(ct, ATTR_MASTER_PORT_DST))
 
127
                __build_u16(ct, pld, ATTR_MASTER_PORT_DST);
 
128
        if (nfct_attr_is_set(ct, ATTR_MASTER_L4PROTO))
 
129
                __build_u8(ct, pld, ATTR_MASTER_L4PROTO);
 
130
 
 
131
        /*  NAT */
 
132
        if (nfct_getobjopt(ct, NFCT_GOPT_IS_SNAT)) {
 
133
                uint32_t data = nfct_get_attr_u32(ct, ATTR_REPL_IPV4_DST);
 
134
                __nat_build_u32(data, pld, ATTR_SNAT_IPV4);
 
135
        }
 
136
        if (nfct_getobjopt(ct, NFCT_GOPT_IS_DNAT)) {
 
137
                uint32_t data = nfct_get_attr_u32(ct, ATTR_REPL_IPV4_SRC);
 
138
                __nat_build_u32(data, pld, ATTR_DNAT_IPV4);
 
139
        }
 
140
        if (nfct_getobjopt(ct, NFCT_GOPT_IS_SPAT)) {
 
141
                uint16_t data = nfct_get_attr_u16(ct, ATTR_REPL_PORT_DST);
 
142
                __nat_build_u16(data, pld, ATTR_SNAT_PORT);
 
143
        }
 
144
        if (nfct_getobjopt(ct, NFCT_GOPT_IS_DPAT)) {
 
145
                uint16_t data = nfct_get_attr_u16(ct, ATTR_REPL_PORT_SRC);
 
146
                __nat_build_u16(data, pld, ATTR_DNAT_PORT);
 
147
        }
 
148
 
 
149
        /* NAT sequence adjustment */
 
150
        if (nfct_attr_is_set(ct, ATTR_ORIG_NAT_SEQ_CORRECTION_POS))
 
151
                __build_u32(ct, pld, ATTR_ORIG_NAT_SEQ_CORRECTION_POS);
 
152
        if (nfct_attr_is_set(ct, ATTR_ORIG_NAT_SEQ_OFFSET_BEFORE))
 
153
                __build_u32(ct, pld, ATTR_ORIG_NAT_SEQ_OFFSET_BEFORE);
 
154
        if (nfct_attr_is_set(ct, ATTR_ORIG_NAT_SEQ_OFFSET_AFTER))
 
155
                __build_u32(ct, pld, ATTR_ORIG_NAT_SEQ_OFFSET_AFTER);
 
156
        if (nfct_attr_is_set(ct, ATTR_REPL_NAT_SEQ_CORRECTION_POS))
 
157
                __build_u32(ct, pld, ATTR_REPL_NAT_SEQ_CORRECTION_POS);
 
158
        if (nfct_attr_is_set(ct, ATTR_REPL_NAT_SEQ_OFFSET_BEFORE))
 
159
                __build_u32(ct, pld, ATTR_REPL_NAT_SEQ_OFFSET_BEFORE);
 
160
        if (nfct_attr_is_set(ct, ATTR_REPL_NAT_SEQ_OFFSET_AFTER))
 
161
                __build_u32(ct, pld, ATTR_REPL_NAT_SEQ_OFFSET_AFTER);
 
162
 
 
163
        pld->query = query;
 
164
 
 
165
        PLD_HOST2NETWORK(pld);
 
166
}