blob: b5a90596d3f49914eb936a5152b4b94dbe6872d3 [file] [log] [blame]
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001/*
2 * Connection tracking protocol helper module for SCTP.
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08003 *
4 * SCTP is defined in RFC 2960. References to various sections in this code
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08005 * are to this RFC.
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08006 *
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080010 */
11
12#include <linux/types.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080013#include <linux/timer.h>
14#include <linux/netfilter.h>
15#include <linux/module.h>
16#include <linux/in.h>
17#include <linux/ip.h>
18#include <linux/sctp.h>
19#include <linux/string.h>
20#include <linux/seq_file.h>
Yasuyuki Kozakai40a839f2006-06-27 03:00:35 -070021#include <linux/spinlock.h>
22#include <linux/interrupt.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080023
24#include <net/netfilter/nf_conntrack.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010025#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010026#include <net/netfilter/nf_conntrack_ecache.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080027
Patrick McHardyc88130b2008-01-31 04:42:11 -080028/* Protects ct->proto.sctp */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080029static DEFINE_RWLOCK(sctp_lock);
30
31/* FIXME: Examine ipfilter's timeouts and conntrack transitions more
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080032 closely. They're more complex. --RR
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080033
34 And so for me for SCTP :D -Kiran */
35
Jan Engelhardt12c33aa2008-04-14 11:15:54 +020036static const char *const sctp_conntrack_names[] = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080037 "NONE",
38 "CLOSED",
39 "COOKIE_WAIT",
40 "COOKIE_ECHOED",
41 "ESTABLISHED",
42 "SHUTDOWN_SENT",
43 "SHUTDOWN_RECD",
44 "SHUTDOWN_ACK_SENT",
45};
46
47#define SECS * HZ
48#define MINS * 60 SECS
49#define HOURS * 60 MINS
50#define DAYS * 24 HOURS
51
Patrick McHardy86c0bf42008-01-14 23:48:17 -080052static unsigned int sctp_timeouts[SCTP_CONNTRACK_MAX] __read_mostly = {
53 [SCTP_CONNTRACK_CLOSED] = 10 SECS,
54 [SCTP_CONNTRACK_COOKIE_WAIT] = 3 SECS,
55 [SCTP_CONNTRACK_COOKIE_ECHOED] = 3 SECS,
56 [SCTP_CONNTRACK_ESTABLISHED] = 5 DAYS,
57 [SCTP_CONNTRACK_SHUTDOWN_SENT] = 300 SECS / 1000,
58 [SCTP_CONNTRACK_SHUTDOWN_RECD] = 300 SECS / 1000,
59 [SCTP_CONNTRACK_SHUTDOWN_ACK_SENT] = 3 SECS,
60};
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080061
62#define sNO SCTP_CONNTRACK_NONE
63#define sCL SCTP_CONNTRACK_CLOSED
64#define sCW SCTP_CONNTRACK_COOKIE_WAIT
65#define sCE SCTP_CONNTRACK_COOKIE_ECHOED
66#define sES SCTP_CONNTRACK_ESTABLISHED
67#define sSS SCTP_CONNTRACK_SHUTDOWN_SENT
68#define sSR SCTP_CONNTRACK_SHUTDOWN_RECD
69#define sSA SCTP_CONNTRACK_SHUTDOWN_ACK_SENT
70#define sIV SCTP_CONNTRACK_MAX
71
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080072/*
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080073 These are the descriptions of the states:
74
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080075NOTE: These state names are tantalizingly similar to the states of an
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080076SCTP endpoint. But the interpretation of the states is a little different,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080077considering that these are the states of the connection and not of an end
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080078point. Please note the subtleties. -Kiran
79
80NONE - Nothing so far.
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080081COOKIE WAIT - We have seen an INIT chunk in the original direction, or also
82 an INIT_ACK chunk in the reply direction.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083COOKIE ECHOED - We have seen a COOKIE_ECHO chunk in the original direction.
84ESTABLISHED - We have seen a COOKIE_ACK in the reply direction.
85SHUTDOWN_SENT - We have seen a SHUTDOWN chunk in the original direction.
86SHUTDOWN_RECD - We have seen a SHUTDOWN chunk in the reply directoin.
87SHUTDOWN_ACK_SENT - We have seen a SHUTDOWN_ACK chunk in the direction opposite
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080088 to that of the SHUTDOWN chunk.
89CLOSED - We have seen a SHUTDOWN_COMPLETE chunk in the direction of
90 the SHUTDOWN chunk. Connection is closed.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080091*/
92
93/* TODO
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080094 - I have assumed that the first INIT is in the original direction.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080095 This messes things when an INIT comes in the reply direction in CLOSED
96 state.
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080097 - Check the error type in the reply dir before transitioning from
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080098cookie echoed to closed.
99 - Sec 5.2.4 of RFC 2960
100 - Multi Homing support.
101*/
102
103/* SCTP conntrack state transitions */
Patrick McHardya5e73c22008-01-14 23:45:11 -0800104static const u8 sctp_conntracks[2][9][SCTP_CONNTRACK_MAX] = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800105 {
106/* ORIGINAL */
107/* sNO, sCL, sCW, sCE, sES, sSS, sSR, sSA */
108/* init */ {sCW, sCW, sCW, sCE, sES, sSS, sSR, sSA},
109/* init_ack */ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA},
110/* abort */ {sCL, sCL, sCL, sCL, sCL, sCL, sCL, sCL},
111/* shutdown */ {sCL, sCL, sCW, sCE, sSS, sSS, sSR, sSA},
112/* shutdown_ack */ {sSA, sCL, sCW, sCE, sES, sSA, sSA, sSA},
113/* error */ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA},/* Cant have Stale cookie*/
114/* cookie_echo */ {sCL, sCL, sCE, sCE, sES, sSS, sSR, sSA},/* 5.2.4 - Big TODO */
115/* cookie_ack */ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA},/* Cant come in orig dir */
116/* shutdown_comp*/ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sCL}
117 },
118 {
119/* REPLY */
120/* sNO, sCL, sCW, sCE, sES, sSS, sSR, sSA */
121/* init */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA},/* INIT in sCL Big TODO */
122/* init_ack */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA},
123/* abort */ {sIV, sCL, sCL, sCL, sCL, sCL, sCL, sCL},
124/* shutdown */ {sIV, sCL, sCW, sCE, sSR, sSS, sSR, sSA},
125/* shutdown_ack */ {sIV, sCL, sCW, sCE, sES, sSA, sSA, sSA},
126/* error */ {sIV, sCL, sCW, sCL, sES, sSS, sSR, sSA},
127/* cookie_echo */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA},/* Cant come in reply dir */
128/* cookie_ack */ {sIV, sCL, sCW, sES, sES, sSS, sSR, sSA},
129/* shutdown_comp*/ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sCL}
130 }
131};
132
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200133static bool sctp_pkt_to_tuple(const struct sk_buff *skb, unsigned int dataoff,
134 struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800135{
Jan Engelhardt12c33aa2008-04-14 11:15:54 +0200136 const struct sctphdr *hp;
137 struct sctphdr _hdr;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800138
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800139 /* Actually only need first 8 bytes. */
140 hp = skb_header_pointer(skb, dataoff, 8, &_hdr);
141 if (hp == NULL)
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200142 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800143
144 tuple->src.u.sctp.port = hp->source;
145 tuple->dst.u.sctp.port = hp->dest;
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200146 return true;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800147}
148
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200149static bool sctp_invert_tuple(struct nf_conntrack_tuple *tuple,
150 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800151{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800152 tuple->src.u.sctp.port = orig->dst.u.sctp.port;
153 tuple->dst.u.sctp.port = orig->src.u.sctp.port;
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200154 return true;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800155}
156
157/* Print out the per-protocol part of the tuple. */
158static int sctp_print_tuple(struct seq_file *s,
159 const struct nf_conntrack_tuple *tuple)
160{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800161 return seq_printf(s, "sport=%hu dport=%hu ",
162 ntohs(tuple->src.u.sctp.port),
163 ntohs(tuple->dst.u.sctp.port));
164}
165
166/* Print out the private part of the conntrack. */
Patrick McHardy112f35c2008-01-14 23:46:20 -0800167static int sctp_print_conntrack(struct seq_file *s, const struct nf_conn *ct)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800168{
169 enum sctp_conntrack state;
170
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800171 read_lock_bh(&sctp_lock);
Patrick McHardy112f35c2008-01-14 23:46:20 -0800172 state = ct->proto.sctp.state;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800173 read_unlock_bh(&sctp_lock);
174
175 return seq_printf(s, "%s ", sctp_conntrack_names[state]);
176}
177
178#define for_each_sctp_chunk(skb, sch, _sch, offset, dataoff, count) \
Jan Engelhardte79ec502007-12-17 22:44:06 -0800179for ((offset) = (dataoff) + sizeof(sctp_sctphdr_t), (count) = 0; \
180 (offset) < (skb)->len && \
181 ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))); \
182 (offset) += (ntohs((sch)->length) + 3) & ~3, (count)++)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800183
184/* Some validity checks to make sure the chunks are fine */
Patrick McHardy112f35c2008-01-14 23:46:20 -0800185static int do_basic_checks(struct nf_conn *ct,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800186 const struct sk_buff *skb,
187 unsigned int dataoff,
Patrick McHardy35c6d3c2008-01-14 23:46:05 -0800188 unsigned long *map)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800189{
190 u_int32_t offset, count;
191 sctp_chunkhdr_t _sch, *sch;
192 int flag;
193
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800194 flag = 0;
195
196 for_each_sctp_chunk (skb, sch, _sch, offset, dataoff, count) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700197 pr_debug("Chunk Num: %d Type: %d\n", count, sch->type);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800198
Patrick McHardy5447d472008-01-14 23:45:48 -0800199 if (sch->type == SCTP_CID_INIT ||
200 sch->type == SCTP_CID_INIT_ACK ||
201 sch->type == SCTP_CID_SHUTDOWN_COMPLETE)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800202 flag = 1;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800203
Patrick McHardye17df682006-05-02 23:23:07 +0200204 /*
205 * Cookie Ack/Echo chunks not the first OR
206 * Init / Init Ack / Shutdown compl chunks not the only chunks
207 * OR zero-length.
208 */
Patrick McHardy5447d472008-01-14 23:45:48 -0800209 if (((sch->type == SCTP_CID_COOKIE_ACK ||
210 sch->type == SCTP_CID_COOKIE_ECHO ||
211 flag) &&
212 count != 0) || !sch->length) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700213 pr_debug("Basic checks failed\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800214 return 1;
215 }
216
Patrick McHardy5447d472008-01-14 23:45:48 -0800217 if (map)
Patrick McHardy35c6d3c2008-01-14 23:46:05 -0800218 set_bit(sch->type, map);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800219 }
220
Patrick McHardy0d537782007-07-07 22:39:38 -0700221 pr_debug("Basic checks passed\n");
Patrick McHardydd7271f2006-06-29 21:40:23 -0700222 return count == 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800223}
224
Patrick McHardyefe9f682008-01-14 23:47:09 -0800225static int sctp_new_state(enum ip_conntrack_dir dir,
226 enum sctp_conntrack cur_state,
227 int chunk_type)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800228{
229 int i;
230
Patrick McHardy0d537782007-07-07 22:39:38 -0700231 pr_debug("Chunk type: %d\n", chunk_type);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800232
233 switch (chunk_type) {
Patrick McHardy5447d472008-01-14 23:45:48 -0800234 case SCTP_CID_INIT:
235 pr_debug("SCTP_CID_INIT\n");
236 i = 0;
237 break;
238 case SCTP_CID_INIT_ACK:
239 pr_debug("SCTP_CID_INIT_ACK\n");
240 i = 1;
241 break;
242 case SCTP_CID_ABORT:
243 pr_debug("SCTP_CID_ABORT\n");
244 i = 2;
245 break;
246 case SCTP_CID_SHUTDOWN:
247 pr_debug("SCTP_CID_SHUTDOWN\n");
248 i = 3;
249 break;
250 case SCTP_CID_SHUTDOWN_ACK:
251 pr_debug("SCTP_CID_SHUTDOWN_ACK\n");
252 i = 4;
253 break;
254 case SCTP_CID_ERROR:
255 pr_debug("SCTP_CID_ERROR\n");
256 i = 5;
257 break;
258 case SCTP_CID_COOKIE_ECHO:
259 pr_debug("SCTP_CID_COOKIE_ECHO\n");
260 i = 6;
261 break;
262 case SCTP_CID_COOKIE_ACK:
263 pr_debug("SCTP_CID_COOKIE_ACK\n");
264 i = 7;
265 break;
266 case SCTP_CID_SHUTDOWN_COMPLETE:
267 pr_debug("SCTP_CID_SHUTDOWN_COMPLETE\n");
268 i = 8;
269 break;
270 default:
271 /* Other chunks like DATA, SACK, HEARTBEAT and
272 its ACK do not cause a change in state */
273 pr_debug("Unknown chunk type, Will stay in %s\n",
274 sctp_conntrack_names[cur_state]);
275 return cur_state;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800276 }
277
Patrick McHardy0d537782007-07-07 22:39:38 -0700278 pr_debug("dir: %d cur_state: %s chunk_type: %d new_state: %s\n",
279 dir, sctp_conntrack_names[cur_state], chunk_type,
280 sctp_conntrack_names[sctp_conntracks[dir][i][cur_state]]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800281
282 return sctp_conntracks[dir][i][cur_state];
283}
284
Patrick McHardyb37e9332008-01-14 23:46:52 -0800285/* Returns verdict for packet, or -NF_ACCEPT for invalid. */
Patrick McHardy112f35c2008-01-14 23:46:20 -0800286static int sctp_packet(struct nf_conn *ct,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800287 const struct sk_buff *skb,
288 unsigned int dataoff,
289 enum ip_conntrack_info ctinfo,
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200290 u_int8_t pf,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800291 unsigned int hooknum)
292{
Patrick McHardyefe9f682008-01-14 23:47:09 -0800293 enum sctp_conntrack new_state, old_state;
Patrick McHardy85288192008-01-14 23:46:37 -0800294 enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
Jan Engelhardt12c33aa2008-04-14 11:15:54 +0200295 const struct sctphdr *sh;
296 struct sctphdr _sctph;
297 const struct sctp_chunkhdr *sch;
298 struct sctp_chunkhdr _sch;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800299 u_int32_t offset, count;
Patrick McHardy35c6d3c2008-01-14 23:46:05 -0800300 unsigned long map[256 / sizeof(unsigned long)] = { 0 };
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800301
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800302 sh = skb_header_pointer(skb, dataoff, sizeof(_sctph), &_sctph);
303 if (sh == NULL)
Patrick McHardyb37e9332008-01-14 23:46:52 -0800304 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800305
Patrick McHardy112f35c2008-01-14 23:46:20 -0800306 if (do_basic_checks(ct, skb, dataoff, map) != 0)
Patrick McHardyb37e9332008-01-14 23:46:52 -0800307 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800308
309 /* Check the verification tag (Sec 8.5) */
Patrick McHardy35c6d3c2008-01-14 23:46:05 -0800310 if (!test_bit(SCTP_CID_INIT, map) &&
311 !test_bit(SCTP_CID_SHUTDOWN_COMPLETE, map) &&
312 !test_bit(SCTP_CID_COOKIE_ECHO, map) &&
313 !test_bit(SCTP_CID_ABORT, map) &&
314 !test_bit(SCTP_CID_SHUTDOWN_ACK, map) &&
Patrick McHardy85288192008-01-14 23:46:37 -0800315 sh->vtag != ct->proto.sctp.vtag[dir]) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700316 pr_debug("Verification tag check failed\n");
Patrick McHardyb37e9332008-01-14 23:46:52 -0800317 goto out;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800318 }
319
Patrick McHardyefe9f682008-01-14 23:47:09 -0800320 old_state = new_state = SCTP_CONNTRACK_MAX;
Patrick McHardy4a648302008-01-14 23:47:25 -0800321 write_lock_bh(&sctp_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800322 for_each_sctp_chunk (skb, sch, _sch, offset, dataoff, count) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800323 /* Special cases of Verification tag check (Sec 8.5.1) */
324 if (sch->type == SCTP_CID_INIT) {
325 /* Sec 8.5.1 (A) */
Patrick McHardyb37e9332008-01-14 23:46:52 -0800326 if (sh->vtag != 0)
327 goto out_unlock;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800328 } else if (sch->type == SCTP_CID_ABORT) {
329 /* Sec 8.5.1 (B) */
Patrick McHardy85288192008-01-14 23:46:37 -0800330 if (sh->vtag != ct->proto.sctp.vtag[dir] &&
Patrick McHardyb37e9332008-01-14 23:46:52 -0800331 sh->vtag != ct->proto.sctp.vtag[!dir])
332 goto out_unlock;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800333 } else if (sch->type == SCTP_CID_SHUTDOWN_COMPLETE) {
334 /* Sec 8.5.1 (C) */
Patrick McHardy85288192008-01-14 23:46:37 -0800335 if (sh->vtag != ct->proto.sctp.vtag[dir] &&
336 sh->vtag != ct->proto.sctp.vtag[!dir] &&
Patrick McHardy9b1c2cf2008-01-14 23:48:02 -0800337 sch->flags & SCTP_CHUNK_FLAG_T)
Patrick McHardyb37e9332008-01-14 23:46:52 -0800338 goto out_unlock;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800339 } else if (sch->type == SCTP_CID_COOKIE_ECHO) {
340 /* Sec 8.5.1 (D) */
Patrick McHardyb37e9332008-01-14 23:46:52 -0800341 if (sh->vtag != ct->proto.sctp.vtag[dir])
342 goto out_unlock;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800343 }
344
Patrick McHardyefe9f682008-01-14 23:47:09 -0800345 old_state = ct->proto.sctp.state;
346 new_state = sctp_new_state(dir, old_state, sch->type);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800347
348 /* Invalid */
Patrick McHardyefe9f682008-01-14 23:47:09 -0800349 if (new_state == SCTP_CONNTRACK_MAX) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700350 pr_debug("nf_conntrack_sctp: Invalid dir=%i ctype=%u "
351 "conntrack=%u\n",
Patrick McHardyefe9f682008-01-14 23:47:09 -0800352 dir, sch->type, old_state);
Patrick McHardyb37e9332008-01-14 23:46:52 -0800353 goto out_unlock;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800354 }
355
356 /* If it is an INIT or an INIT ACK note down the vtag */
Patrick McHardy5447d472008-01-14 23:45:48 -0800357 if (sch->type == SCTP_CID_INIT ||
358 sch->type == SCTP_CID_INIT_ACK) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800359 sctp_inithdr_t _inithdr, *ih;
360
361 ih = skb_header_pointer(skb, offset + sizeof(sctp_chunkhdr_t),
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800362 sizeof(_inithdr), &_inithdr);
Patrick McHardyb37e9332008-01-14 23:46:52 -0800363 if (ih == NULL)
364 goto out_unlock;
Patrick McHardy0d537782007-07-07 22:39:38 -0700365 pr_debug("Setting vtag %x for dir %d\n",
Patrick McHardy85288192008-01-14 23:46:37 -0800366 ih->init_tag, !dir);
367 ct->proto.sctp.vtag[!dir] = ih->init_tag;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800368 }
369
Patrick McHardyefe9f682008-01-14 23:47:09 -0800370 ct->proto.sctp.state = new_state;
371 if (old_state != new_state)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800372 nf_conntrack_event_cache(IPCT_PROTOINFO, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800373 }
Patrick McHardy4a648302008-01-14 23:47:25 -0800374 write_unlock_bh(&sctp_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800375
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800376 nf_ct_refresh_acct(ct, ctinfo, skb, sctp_timeouts[new_state]);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800377
Patrick McHardyefe9f682008-01-14 23:47:09 -0800378 if (old_state == SCTP_CONNTRACK_COOKIE_ECHOED &&
Patrick McHardy85288192008-01-14 23:46:37 -0800379 dir == IP_CT_DIR_REPLY &&
Patrick McHardyefe9f682008-01-14 23:47:09 -0800380 new_state == SCTP_CONNTRACK_ESTABLISHED) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700381 pr_debug("Setting assured bit\n");
Patrick McHardy112f35c2008-01-14 23:46:20 -0800382 set_bit(IPS_ASSURED_BIT, &ct->status);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800383 nf_conntrack_event_cache(IPCT_STATUS, skb);
384 }
385
386 return NF_ACCEPT;
Patrick McHardyb37e9332008-01-14 23:46:52 -0800387
388out_unlock:
389 write_unlock_bh(&sctp_lock);
390out:
391 return -NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800392}
393
394/* Called when a new connection for this protocol found. */
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200395static bool sctp_new(struct nf_conn *ct, const struct sk_buff *skb,
396 unsigned int dataoff)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800397{
Patrick McHardyefe9f682008-01-14 23:47:09 -0800398 enum sctp_conntrack new_state;
Jan Engelhardt12c33aa2008-04-14 11:15:54 +0200399 const struct sctphdr *sh;
400 struct sctphdr _sctph;
401 const struct sctp_chunkhdr *sch;
402 struct sctp_chunkhdr _sch;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800403 u_int32_t offset, count;
Patrick McHardy35c6d3c2008-01-14 23:46:05 -0800404 unsigned long map[256 / sizeof(unsigned long)] = { 0 };
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800405
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800406 sh = skb_header_pointer(skb, dataoff, sizeof(_sctph), &_sctph);
407 if (sh == NULL)
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200408 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800409
Patrick McHardy112f35c2008-01-14 23:46:20 -0800410 if (do_basic_checks(ct, skb, dataoff, map) != 0)
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200411 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800412
413 /* If an OOTB packet has any of these chunks discard (Sec 8.4) */
Patrick McHardy35c6d3c2008-01-14 23:46:05 -0800414 if (test_bit(SCTP_CID_ABORT, map) ||
415 test_bit(SCTP_CID_SHUTDOWN_COMPLETE, map) ||
416 test_bit(SCTP_CID_COOKIE_ACK, map))
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200417 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800418
Patrick McHardyefe9f682008-01-14 23:47:09 -0800419 new_state = SCTP_CONNTRACK_MAX;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800420 for_each_sctp_chunk (skb, sch, _sch, offset, dataoff, count) {
421 /* Don't need lock here: this conntrack not in circulation yet */
Patrick McHardyefe9f682008-01-14 23:47:09 -0800422 new_state = sctp_new_state(IP_CT_DIR_ORIGINAL,
423 SCTP_CONNTRACK_NONE, sch->type);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800424
425 /* Invalid: delete conntrack */
Patrick McHardyefe9f682008-01-14 23:47:09 -0800426 if (new_state == SCTP_CONNTRACK_NONE ||
427 new_state == SCTP_CONNTRACK_MAX) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700428 pr_debug("nf_conntrack_sctp: invalid new deleting.\n");
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200429 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800430 }
431
432 /* Copy the vtag into the state info */
433 if (sch->type == SCTP_CID_INIT) {
434 if (sh->vtag == 0) {
435 sctp_inithdr_t _inithdr, *ih;
436
437 ih = skb_header_pointer(skb, offset + sizeof(sctp_chunkhdr_t),
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800438 sizeof(_inithdr), &_inithdr);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800439 if (ih == NULL)
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200440 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800441
Patrick McHardy0d537782007-07-07 22:39:38 -0700442 pr_debug("Setting vtag %x for new conn\n",
443 ih->init_tag);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800444
Patrick McHardy112f35c2008-01-14 23:46:20 -0800445 ct->proto.sctp.vtag[IP_CT_DIR_REPLY] =
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800446 ih->init_tag;
447 } else {
448 /* Sec 8.5.1 (A) */
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200449 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800450 }
451 }
452 /* If it is a shutdown ack OOTB packet, we expect a return
453 shutdown complete, otherwise an ABORT Sec 8.4 (5) and (8) */
454 else {
Patrick McHardy0d537782007-07-07 22:39:38 -0700455 pr_debug("Setting vtag %x for new conn OOTB\n",
456 sh->vtag);
Patrick McHardy112f35c2008-01-14 23:46:20 -0800457 ct->proto.sctp.vtag[IP_CT_DIR_REPLY] = sh->vtag;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800458 }
459
Patrick McHardyefe9f682008-01-14 23:47:09 -0800460 ct->proto.sctp.state = new_state;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800461 }
462
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200463 return true;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800464}
465
Pablo Neira Ayusoa2588602008-06-09 15:56:39 -0700466#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
467
468#include <linux/netfilter/nfnetlink.h>
469#include <linux/netfilter/nfnetlink_conntrack.h>
470
471static int sctp_to_nlattr(struct sk_buff *skb, struct nlattr *nla,
472 const struct nf_conn *ct)
473{
474 struct nlattr *nest_parms;
475
476 read_lock_bh(&sctp_lock);
477 nest_parms = nla_nest_start(skb, CTA_PROTOINFO_SCTP | NLA_F_NESTED);
478 if (!nest_parms)
479 goto nla_put_failure;
480
481 NLA_PUT_U8(skb, CTA_PROTOINFO_SCTP_STATE, ct->proto.sctp.state);
482
483 NLA_PUT_BE32(skb,
484 CTA_PROTOINFO_SCTP_VTAG_ORIGINAL,
Patrick McHardy5547cd02008-07-21 10:03:49 -0700485 ct->proto.sctp.vtag[IP_CT_DIR_ORIGINAL]);
Pablo Neira Ayusoa2588602008-06-09 15:56:39 -0700486
487 NLA_PUT_BE32(skb,
488 CTA_PROTOINFO_SCTP_VTAG_REPLY,
Patrick McHardy5547cd02008-07-21 10:03:49 -0700489 ct->proto.sctp.vtag[IP_CT_DIR_REPLY]);
Pablo Neira Ayusoa2588602008-06-09 15:56:39 -0700490
491 read_unlock_bh(&sctp_lock);
492
493 nla_nest_end(skb, nest_parms);
494
495 return 0;
496
497nla_put_failure:
498 read_unlock_bh(&sctp_lock);
499 return -1;
500}
501
502static const struct nla_policy sctp_nla_policy[CTA_PROTOINFO_SCTP_MAX+1] = {
503 [CTA_PROTOINFO_SCTP_STATE] = { .type = NLA_U8 },
504 [CTA_PROTOINFO_SCTP_VTAG_ORIGINAL] = { .type = NLA_U32 },
505 [CTA_PROTOINFO_SCTP_VTAG_REPLY] = { .type = NLA_U32 },
506};
507
508static int nlattr_to_sctp(struct nlattr *cda[], struct nf_conn *ct)
509{
510 struct nlattr *attr = cda[CTA_PROTOINFO_SCTP];
511 struct nlattr *tb[CTA_PROTOINFO_SCTP_MAX+1];
512 int err;
513
514 /* updates may not contain the internal protocol info, skip parsing */
515 if (!attr)
516 return 0;
517
518 err = nla_parse_nested(tb,
519 CTA_PROTOINFO_SCTP_MAX,
520 attr,
521 sctp_nla_policy);
522 if (err < 0)
523 return err;
524
525 if (!tb[CTA_PROTOINFO_SCTP_STATE] ||
526 !tb[CTA_PROTOINFO_SCTP_VTAG_ORIGINAL] ||
527 !tb[CTA_PROTOINFO_SCTP_VTAG_REPLY])
528 return -EINVAL;
529
530 write_lock_bh(&sctp_lock);
531 ct->proto.sctp.state = nla_get_u8(tb[CTA_PROTOINFO_SCTP_STATE]);
532 ct->proto.sctp.vtag[IP_CT_DIR_ORIGINAL] =
Patrick McHardy5547cd02008-07-21 10:03:49 -0700533 nla_get_be32(tb[CTA_PROTOINFO_SCTP_VTAG_ORIGINAL]);
Pablo Neira Ayusoa2588602008-06-09 15:56:39 -0700534 ct->proto.sctp.vtag[IP_CT_DIR_REPLY] =
Patrick McHardy5547cd02008-07-21 10:03:49 -0700535 nla_get_be32(tb[CTA_PROTOINFO_SCTP_VTAG_REPLY]);
Pablo Neira Ayusoa2588602008-06-09 15:56:39 -0700536 write_unlock_bh(&sctp_lock);
537
538 return 0;
539}
540#endif
541
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800542#ifdef CONFIG_SYSCTL
Patrick McHardy933a41e2006-11-29 02:35:18 +0100543static unsigned int sctp_sysctl_table_users;
544static struct ctl_table_header *sctp_sysctl_header;
545static struct ctl_table sctp_sysctl_table[] = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800546 {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800547 .procname = "nf_conntrack_sctp_timeout_closed",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800548 .data = &sctp_timeouts[SCTP_CONNTRACK_CLOSED],
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800549 .maxlen = sizeof(unsigned int),
550 .mode = 0644,
551 .proc_handler = &proc_dointvec_jiffies,
552 },
553 {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800554 .procname = "nf_conntrack_sctp_timeout_cookie_wait",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800555 .data = &sctp_timeouts[SCTP_CONNTRACK_COOKIE_WAIT],
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800556 .maxlen = sizeof(unsigned int),
557 .mode = 0644,
558 .proc_handler = &proc_dointvec_jiffies,
559 },
560 {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800561 .procname = "nf_conntrack_sctp_timeout_cookie_echoed",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800562 .data = &sctp_timeouts[SCTP_CONNTRACK_COOKIE_ECHOED],
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800563 .maxlen = sizeof(unsigned int),
564 .mode = 0644,
565 .proc_handler = &proc_dointvec_jiffies,
566 },
567 {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800568 .procname = "nf_conntrack_sctp_timeout_established",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800569 .data = &sctp_timeouts[SCTP_CONNTRACK_ESTABLISHED],
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800570 .maxlen = sizeof(unsigned int),
571 .mode = 0644,
572 .proc_handler = &proc_dointvec_jiffies,
573 },
574 {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800575 .procname = "nf_conntrack_sctp_timeout_shutdown_sent",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800576 .data = &sctp_timeouts[SCTP_CONNTRACK_SHUTDOWN_SENT],
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800577 .maxlen = sizeof(unsigned int),
578 .mode = 0644,
579 .proc_handler = &proc_dointvec_jiffies,
580 },
581 {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800582 .procname = "nf_conntrack_sctp_timeout_shutdown_recd",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800583 .data = &sctp_timeouts[SCTP_CONNTRACK_SHUTDOWN_RECD],
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800584 .maxlen = sizeof(unsigned int),
585 .mode = 0644,
586 .proc_handler = &proc_dointvec_jiffies,
587 },
588 {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800589 .procname = "nf_conntrack_sctp_timeout_shutdown_ack_sent",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800590 .data = &sctp_timeouts[SCTP_CONNTRACK_SHUTDOWN_ACK_SENT],
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800591 .maxlen = sizeof(unsigned int),
592 .mode = 0644,
593 .proc_handler = &proc_dointvec_jiffies,
594 },
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800595 {
Patrick McHardy933a41e2006-11-29 02:35:18 +0100596 .ctl_name = 0
597 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800598};
Patrick McHardya999e682006-11-29 02:35:20 +0100599
600#ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
601static struct ctl_table sctp_compat_sysctl_table[] = {
602 {
Patrick McHardya999e682006-11-29 02:35:20 +0100603 .procname = "ip_conntrack_sctp_timeout_closed",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800604 .data = &sctp_timeouts[SCTP_CONNTRACK_CLOSED],
Patrick McHardya999e682006-11-29 02:35:20 +0100605 .maxlen = sizeof(unsigned int),
606 .mode = 0644,
607 .proc_handler = &proc_dointvec_jiffies,
608 },
609 {
Patrick McHardya999e682006-11-29 02:35:20 +0100610 .procname = "ip_conntrack_sctp_timeout_cookie_wait",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800611 .data = &sctp_timeouts[SCTP_CONNTRACK_COOKIE_WAIT],
Patrick McHardya999e682006-11-29 02:35:20 +0100612 .maxlen = sizeof(unsigned int),
613 .mode = 0644,
614 .proc_handler = &proc_dointvec_jiffies,
615 },
616 {
Patrick McHardya999e682006-11-29 02:35:20 +0100617 .procname = "ip_conntrack_sctp_timeout_cookie_echoed",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800618 .data = &sctp_timeouts[SCTP_CONNTRACK_COOKIE_ECHOED],
Patrick McHardya999e682006-11-29 02:35:20 +0100619 .maxlen = sizeof(unsigned int),
620 .mode = 0644,
621 .proc_handler = &proc_dointvec_jiffies,
622 },
623 {
Patrick McHardya999e682006-11-29 02:35:20 +0100624 .procname = "ip_conntrack_sctp_timeout_established",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800625 .data = &sctp_timeouts[SCTP_CONNTRACK_ESTABLISHED],
Patrick McHardya999e682006-11-29 02:35:20 +0100626 .maxlen = sizeof(unsigned int),
627 .mode = 0644,
628 .proc_handler = &proc_dointvec_jiffies,
629 },
630 {
Patrick McHardya999e682006-11-29 02:35:20 +0100631 .procname = "ip_conntrack_sctp_timeout_shutdown_sent",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800632 .data = &sctp_timeouts[SCTP_CONNTRACK_SHUTDOWN_SENT],
Patrick McHardya999e682006-11-29 02:35:20 +0100633 .maxlen = sizeof(unsigned int),
634 .mode = 0644,
635 .proc_handler = &proc_dointvec_jiffies,
636 },
637 {
Patrick McHardya999e682006-11-29 02:35:20 +0100638 .procname = "ip_conntrack_sctp_timeout_shutdown_recd",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800639 .data = &sctp_timeouts[SCTP_CONNTRACK_SHUTDOWN_RECD],
Patrick McHardya999e682006-11-29 02:35:20 +0100640 .maxlen = sizeof(unsigned int),
641 .mode = 0644,
642 .proc_handler = &proc_dointvec_jiffies,
643 },
644 {
Patrick McHardya999e682006-11-29 02:35:20 +0100645 .procname = "ip_conntrack_sctp_timeout_shutdown_ack_sent",
Patrick McHardy86c0bf42008-01-14 23:48:17 -0800646 .data = &sctp_timeouts[SCTP_CONNTRACK_SHUTDOWN_ACK_SENT],
Patrick McHardya999e682006-11-29 02:35:20 +0100647 .maxlen = sizeof(unsigned int),
648 .mode = 0644,
649 .proc_handler = &proc_dointvec_jiffies,
650 },
651 {
652 .ctl_name = 0
653 }
654};
655#endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800656#endif
657
Patrick McHardy61075af2007-07-14 20:48:19 -0700658static struct nf_conntrack_l4proto nf_conntrack_l4proto_sctp4 __read_mostly = {
Patrick McHardy933a41e2006-11-29 02:35:18 +0100659 .l3proto = PF_INET,
660 .l4proto = IPPROTO_SCTP,
661 .name = "sctp",
662 .pkt_to_tuple = sctp_pkt_to_tuple,
663 .invert_tuple = sctp_invert_tuple,
664 .print_tuple = sctp_print_tuple,
665 .print_conntrack = sctp_print_conntrack,
666 .packet = sctp_packet,
667 .new = sctp_new,
668 .me = THIS_MODULE,
Pablo Neira Ayusoc7212e92007-12-17 22:29:02 -0800669#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoa2588602008-06-09 15:56:39 -0700670 .to_nlattr = sctp_to_nlattr,
671 .from_nlattr = nlattr_to_sctp,
Pablo Neira Ayusoc7212e92007-12-17 22:29:02 -0800672 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
673 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
674 .nla_policy = nf_ct_port_nla_policy,
675#endif
Patrick McHardy933a41e2006-11-29 02:35:18 +0100676#ifdef CONFIG_SYSCTL
677 .ctl_table_users = &sctp_sysctl_table_users,
678 .ctl_table_header = &sctp_sysctl_header,
679 .ctl_table = sctp_sysctl_table,
Patrick McHardya999e682006-11-29 02:35:20 +0100680#ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
681 .ctl_compat_table = sctp_compat_sysctl_table,
682#endif
Patrick McHardy933a41e2006-11-29 02:35:18 +0100683#endif
684};
685
Patrick McHardy61075af2007-07-14 20:48:19 -0700686static struct nf_conntrack_l4proto nf_conntrack_l4proto_sctp6 __read_mostly = {
Patrick McHardy933a41e2006-11-29 02:35:18 +0100687 .l3proto = PF_INET6,
688 .l4proto = IPPROTO_SCTP,
689 .name = "sctp",
690 .pkt_to_tuple = sctp_pkt_to_tuple,
691 .invert_tuple = sctp_invert_tuple,
692 .print_tuple = sctp_print_tuple,
693 .print_conntrack = sctp_print_conntrack,
694 .packet = sctp_packet,
695 .new = sctp_new,
696 .me = THIS_MODULE,
Pablo Neira Ayusoc7212e92007-12-17 22:29:02 -0800697#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoa2588602008-06-09 15:56:39 -0700698 .to_nlattr = sctp_to_nlattr,
699 .from_nlattr = nlattr_to_sctp,
Pablo Neira Ayusoc7212e92007-12-17 22:29:02 -0800700 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
701 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
702 .nla_policy = nf_ct_port_nla_policy,
703#endif
Patrick McHardy933a41e2006-11-29 02:35:18 +0100704#ifdef CONFIG_SYSCTL
705 .ctl_table_users = &sctp_sysctl_table_users,
706 .ctl_table_header = &sctp_sysctl_header,
707 .ctl_table = sctp_sysctl_table,
708#endif
709};
710
Stephen Hemminger2f0d2f12008-01-31 04:08:10 -0800711static int __init nf_conntrack_proto_sctp_init(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800712{
713 int ret;
714
Martin Josefsson605dcad2006-11-29 02:35:06 +0100715 ret = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_sctp4);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800716 if (ret) {
Martin Josefsson605dcad2006-11-29 02:35:06 +0100717 printk("nf_conntrack_l4proto_sctp4: protocol register failed\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800718 goto out;
719 }
Martin Josefsson605dcad2006-11-29 02:35:06 +0100720 ret = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_sctp6);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800721 if (ret) {
Martin Josefsson605dcad2006-11-29 02:35:06 +0100722 printk("nf_conntrack_l4proto_sctp6: protocol register failed\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800723 goto cleanup_sctp4;
724 }
725
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800726 return ret;
727
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800728 cleanup_sctp4:
Martin Josefsson605dcad2006-11-29 02:35:06 +0100729 nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_sctp4);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800730 out:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800731 return ret;
732}
733
Stephen Hemminger2f0d2f12008-01-31 04:08:10 -0800734static void __exit nf_conntrack_proto_sctp_fini(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800735{
Martin Josefsson605dcad2006-11-29 02:35:06 +0100736 nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_sctp6);
737 nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_sctp4);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800738}
739
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800740module_init(nf_conntrack_proto_sctp_init);
741module_exit(nf_conntrack_proto_sctp_fini);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800742
743MODULE_LICENSE("GPL");
744MODULE_AUTHOR("Kiran Kumar Immidi");
745MODULE_DESCRIPTION("Netfilter connection tracking protocol helper for SCTP");
Patrick McHardyd2483dd2006-12-02 22:06:05 -0800746MODULE_ALIAS("ip_conntrack_proto_sctp");