[NETFILTER]: nf_conntrack: replace NF_CT_DUMP_TUPLE macro indrection by function...
[safe/jmp/linux-2.6] / include / net / netfilter / nf_conntrack_tuple.h
1 /*
2  * Definitions and Declarations for tuple.
3  *
4  * 16 Dec 2003: Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
5  *      - generalize L3 protocol dependent part.
6  *
7  * Derived from include/linux/netfiter_ipv4/ip_conntrack_tuple.h
8  */
9
10 #ifndef _NF_CONNTRACK_TUPLE_H
11 #define _NF_CONNTRACK_TUPLE_H
12
13 #include <linux/netfilter/x_tables.h>
14 #include <linux/netfilter/nf_conntrack_tuple_common.h>
15
16 /* A `tuple' is a structure containing the information to uniquely
17   identify a connection.  ie. if two packets have the same tuple, they
18   are in the same connection; if not, they are not.
19
20   We divide the structure along "manipulatable" and
21   "non-manipulatable" lines, for the benefit of the NAT code.
22 */
23
24 #define NF_CT_TUPLE_L3SIZE      ARRAY_SIZE(((union nf_inet_addr *)NULL)->all)
25
26 /* The protocol-specific manipulable parts of the tuple: always in
27    network order! */
28 union nf_conntrack_man_proto
29 {
30         /* Add other protocols here. */
31         __be16 all;
32
33         struct {
34                 __be16 port;
35         } tcp;
36         struct {
37                 __be16 port;
38         } udp;
39         struct {
40                 __be16 id;
41         } icmp;
42         struct {
43                 __be16 port;
44         } dccp;
45         struct {
46                 __be16 port;
47         } sctp;
48         struct {
49                 __be16 key;     /* GRE key is 32bit, PPtP only uses 16bit */
50         } gre;
51 };
52
53 /* The manipulable part of the tuple. */
54 struct nf_conntrack_man
55 {
56         union nf_inet_addr u3;
57         union nf_conntrack_man_proto u;
58         /* Layer 3 protocol */
59         u_int16_t l3num;
60 };
61
62 /* This contains the information to distinguish a connection. */
63 struct nf_conntrack_tuple
64 {
65         struct nf_conntrack_man src;
66
67         /* These are the parts of the tuple which are fixed. */
68         struct {
69                 union nf_inet_addr u3;
70                 union {
71                         /* Add other protocols here. */
72                         __be16 all;
73
74                         struct {
75                                 __be16 port;
76                         } tcp;
77                         struct {
78                                 __be16 port;
79                         } udp;
80                         struct {
81                                 u_int8_t type, code;
82                         } icmp;
83                         struct {
84                                 __be16 port;
85                         } dccp;
86                         struct {
87                                 __be16 port;
88                         } sctp;
89                         struct {
90                                 __be16 key;
91                         } gre;
92                 } u;
93
94                 /* The protocol. */
95                 u_int8_t protonum;
96
97                 /* The direction (for tuplehash) */
98                 u_int8_t dir;
99         } dst;
100 };
101
102 struct nf_conntrack_tuple_mask
103 {
104         struct {
105                 union nf_inet_addr u3;
106                 union nf_conntrack_man_proto u;
107         } src;
108 };
109
110 /* This is optimized opposed to a memset of the whole structure.  Everything we
111  * really care about is the  source/destination unions */
112 #define NF_CT_TUPLE_U_BLANK(tuple)                                      \
113         do {                                                            \
114                 (tuple)->src.u.all = 0;                                 \
115                 (tuple)->dst.u.all = 0;                                 \
116                 memset(&(tuple)->src.u3, 0, sizeof((tuple)->src.u3));   \
117                 memset(&(tuple)->dst.u3, 0, sizeof((tuple)->dst.u3));   \
118         } while (0)
119
120 #ifdef __KERNEL__
121
122 static inline void nf_ct_dump_tuple_ip(const struct nf_conntrack_tuple *t)
123 {
124 #ifdef DEBUG
125         printk("tuple %p: %u " NIPQUAD_FMT ":%hu -> " NIPQUAD_FMT ":%hu\n",
126                t, t->dst.protonum,
127                NIPQUAD(t->src.u3.ip), ntohs(t->src.u.all),
128                NIPQUAD(t->dst.u3.ip), ntohs(t->dst.u.all));
129 #endif
130 }
131
132 static inline void nf_ct_dump_tuple_ipv6(const struct nf_conntrack_tuple *t)
133 {
134 #ifdef DEBUG
135         printk("tuple %p: %u " NIP6_FMT " %hu -> " NIP6_FMT " %hu\n",
136                t, t->dst.protonum,
137                NIP6(*(struct in6_addr *)t->src.u3.all), ntohs(t->src.u.all),
138                NIP6(*(struct in6_addr *)t->dst.u3.all), ntohs(t->dst.u.all));
139 #endif
140 }
141
142 static inline void nf_ct_dump_tuple(const struct nf_conntrack_tuple *t)
143 {
144         switch (t->src.l3num) {
145         case AF_INET:
146                 nf_ct_dump_tuple_ip(t);
147                 break;
148         case AF_INET6:
149                 nf_ct_dump_tuple_ipv6(t);
150                 break;
151         }
152 }
153
154 /* If we're the first tuple, it's the original dir. */
155 #define NF_CT_DIRECTION(h)                                              \
156         ((enum ip_conntrack_dir)(h)->tuple.dst.dir)
157
158 /* Connections have two entries in the hash table: one for each way */
159 struct nf_conntrack_tuple_hash
160 {
161         struct hlist_node hnode;
162         struct nf_conntrack_tuple tuple;
163 };
164
165 #endif /* __KERNEL__ */
166
167 static inline bool __nf_ct_tuple_src_equal(const struct nf_conntrack_tuple *t1,
168                                            const struct nf_conntrack_tuple *t2)
169
170         return (nf_inet_addr_cmp(&t1->src.u3, &t2->src.u3) &&
171                 t1->src.u.all == t2->src.u.all &&
172                 t1->src.l3num == t2->src.l3num);
173 }
174
175 static inline bool __nf_ct_tuple_dst_equal(const struct nf_conntrack_tuple *t1,
176                                            const struct nf_conntrack_tuple *t2)
177 {
178         return (nf_inet_addr_cmp(&t1->dst.u3, &t2->dst.u3) &&
179                 t1->dst.u.all == t2->dst.u.all &&
180                 t1->dst.protonum == t2->dst.protonum);
181 }
182
183 static inline bool nf_ct_tuple_equal(const struct nf_conntrack_tuple *t1,
184                                      const struct nf_conntrack_tuple *t2)
185 {
186         return __nf_ct_tuple_src_equal(t1, t2) &&
187                __nf_ct_tuple_dst_equal(t1, t2);
188 }
189
190 static inline bool
191 nf_ct_tuple_mask_equal(const struct nf_conntrack_tuple_mask *m1,
192                        const struct nf_conntrack_tuple_mask *m2)
193 {
194         return (nf_inet_addr_cmp(&m1->src.u3, &m2->src.u3) &&
195                 m1->src.u.all == m2->src.u.all);
196 }
197
198 static inline bool
199 nf_ct_tuple_src_mask_cmp(const struct nf_conntrack_tuple *t1,
200                          const struct nf_conntrack_tuple *t2,
201                          const struct nf_conntrack_tuple_mask *mask)
202 {
203         int count;
204
205         for (count = 0; count < NF_CT_TUPLE_L3SIZE; count++) {
206                 if ((t1->src.u3.all[count] ^ t2->src.u3.all[count]) &
207                     mask->src.u3.all[count])
208                         return false;
209         }
210
211         if ((t1->src.u.all ^ t2->src.u.all) & mask->src.u.all)
212                 return false;
213
214         if (t1->src.l3num != t2->src.l3num ||
215             t1->dst.protonum != t2->dst.protonum)
216                 return false;
217
218         return true;
219 }
220
221 static inline bool
222 nf_ct_tuple_mask_cmp(const struct nf_conntrack_tuple *t,
223                      const struct nf_conntrack_tuple *tuple,
224                      const struct nf_conntrack_tuple_mask *mask)
225 {
226         return nf_ct_tuple_src_mask_cmp(t, tuple, mask) &&
227                __nf_ct_tuple_dst_equal(t, tuple);
228 }
229
230 #endif /* _NF_CONNTRACK_TUPLE_H */