GNU Linux-libre 4.19.209-gnu1
[releases.git] / net / netfilter / nf_conntrack_proto_sctp.c
1 /*
2  * Connection tracking protocol helper module for SCTP.
3  *
4  * Copyright (c) 2004 Kiran Kumar Immidi <immidi_kiran@yahoo.com>
5  * Copyright (c) 2004-2012 Patrick McHardy <kaber@trash.net>
6  *
7  * SCTP is defined in RFC 2960. References to various sections in this code
8  * are to this RFC.
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  */
14
15 #include <linux/types.h>
16 #include <linux/timer.h>
17 #include <linux/netfilter.h>
18 #include <linux/in.h>
19 #include <linux/ip.h>
20 #include <linux/sctp.h>
21 #include <linux/string.h>
22 #include <linux/seq_file.h>
23 #include <linux/spinlock.h>
24 #include <linux/interrupt.h>
25 #include <net/sctp/checksum.h>
26
27 #include <net/netfilter/nf_log.h>
28 #include <net/netfilter/nf_conntrack.h>
29 #include <net/netfilter/nf_conntrack_l4proto.h>
30 #include <net/netfilter/nf_conntrack_ecache.h>
31 #include <net/netfilter/nf_conntrack_timeout.h>
32
33 /* FIXME: Examine ipfilter's timeouts and conntrack transitions more
34    closely.  They're more complex. --RR
35
36    And so for me for SCTP :D -Kiran */
37
38 static const char *const sctp_conntrack_names[] = {
39         "NONE",
40         "CLOSED",
41         "COOKIE_WAIT",
42         "COOKIE_ECHOED",
43         "ESTABLISHED",
44         "SHUTDOWN_SENT",
45         "SHUTDOWN_RECD",
46         "SHUTDOWN_ACK_SENT",
47         "HEARTBEAT_SENT",
48         "HEARTBEAT_ACKED",
49 };
50
51 #define SECS  * HZ
52 #define MINS  * 60 SECS
53 #define HOURS * 60 MINS
54 #define DAYS  * 24 HOURS
55
56 static const unsigned int sctp_timeouts[SCTP_CONNTRACK_MAX] = {
57         [SCTP_CONNTRACK_CLOSED]                 = 10 SECS,
58         [SCTP_CONNTRACK_COOKIE_WAIT]            = 3 SECS,
59         [SCTP_CONNTRACK_COOKIE_ECHOED]          = 3 SECS,
60         [SCTP_CONNTRACK_ESTABLISHED]            = 5 DAYS,
61         [SCTP_CONNTRACK_SHUTDOWN_SENT]          = 300 SECS / 1000,
62         [SCTP_CONNTRACK_SHUTDOWN_RECD]          = 300 SECS / 1000,
63         [SCTP_CONNTRACK_SHUTDOWN_ACK_SENT]      = 3 SECS,
64         [SCTP_CONNTRACK_HEARTBEAT_SENT]         = 30 SECS,
65         [SCTP_CONNTRACK_HEARTBEAT_ACKED]        = 210 SECS,
66 };
67
68 #define SCTP_FLAG_HEARTBEAT_VTAG_FAILED 1
69
70 #define sNO SCTP_CONNTRACK_NONE
71 #define sCL SCTP_CONNTRACK_CLOSED
72 #define sCW SCTP_CONNTRACK_COOKIE_WAIT
73 #define sCE SCTP_CONNTRACK_COOKIE_ECHOED
74 #define sES SCTP_CONNTRACK_ESTABLISHED
75 #define sSS SCTP_CONNTRACK_SHUTDOWN_SENT
76 #define sSR SCTP_CONNTRACK_SHUTDOWN_RECD
77 #define sSA SCTP_CONNTRACK_SHUTDOWN_ACK_SENT
78 #define sHS SCTP_CONNTRACK_HEARTBEAT_SENT
79 #define sHA SCTP_CONNTRACK_HEARTBEAT_ACKED
80 #define sIV SCTP_CONNTRACK_MAX
81
82 /*
83         These are the descriptions of the states:
84
85 NOTE: These state names are tantalizingly similar to the states of an
86 SCTP endpoint. But the interpretation of the states is a little different,
87 considering that these are the states of the connection and not of an end
88 point. Please note the subtleties. -Kiran
89
90 NONE              - Nothing so far.
91 COOKIE WAIT       - We have seen an INIT chunk in the original direction, or also
92                     an INIT_ACK chunk in the reply direction.
93 COOKIE ECHOED     - We have seen a COOKIE_ECHO chunk in the original direction.
94 ESTABLISHED       - We have seen a COOKIE_ACK in the reply direction.
95 SHUTDOWN_SENT     - We have seen a SHUTDOWN chunk in the original direction.
96 SHUTDOWN_RECD     - We have seen a SHUTDOWN chunk in the reply directoin.
97 SHUTDOWN_ACK_SENT - We have seen a SHUTDOWN_ACK chunk in the direction opposite
98                     to that of the SHUTDOWN chunk.
99 CLOSED            - We have seen a SHUTDOWN_COMPLETE chunk in the direction of
100                     the SHUTDOWN chunk. Connection is closed.
101 HEARTBEAT_SENT    - We have seen a HEARTBEAT in a new flow.
102 HEARTBEAT_ACKED   - We have seen a HEARTBEAT-ACK in the direction opposite to
103                     that of the HEARTBEAT chunk. Secondary connection is
104                     established.
105 */
106
107 /* TODO
108  - I have assumed that the first INIT is in the original direction.
109  This messes things when an INIT comes in the reply direction in CLOSED
110  state.
111  - Check the error type in the reply dir before transitioning from
112 cookie echoed to closed.
113  - Sec 5.2.4 of RFC 2960
114  - Full Multi Homing support.
115 */
116
117 /* SCTP conntrack state transitions */
118 static const u8 sctp_conntracks[2][11][SCTP_CONNTRACK_MAX] = {
119         {
120 /*      ORIGINAL        */
121 /*                  sNO, sCL, sCW, sCE, sES, sSS, sSR, sSA, sHS, sHA */
122 /* init         */ {sCW, sCW, sCW, sCE, sES, sSS, sSR, sSA, sCW, sHA},
123 /* init_ack     */ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA, sCL, sHA},
124 /* abort        */ {sCL, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sCL},
125 /* shutdown     */ {sCL, sCL, sCW, sCE, sSS, sSS, sSR, sSA, sCL, sSS},
126 /* shutdown_ack */ {sSA, sCL, sCW, sCE, sES, sSA, sSA, sSA, sSA, sHA},
127 /* error        */ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA, sCL, sHA},/* Can't have Stale cookie*/
128 /* cookie_echo  */ {sCL, sCL, sCE, sCE, sES, sSS, sSR, sSA, sCL, sHA},/* 5.2.4 - Big TODO */
129 /* cookie_ack   */ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA, sCL, sHA},/* Can't come in orig dir */
130 /* shutdown_comp*/ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sCL, sCL, sHA},
131 /* heartbeat    */ {sHS, sCL, sCW, sCE, sES, sSS, sSR, sSA, sHS, sHA},
132 /* heartbeat_ack*/ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA, sHS, sHA}
133         },
134         {
135 /*      REPLY   */
136 /*                  sNO, sCL, sCW, sCE, sES, sSS, sSR, sSA, sHS, sHA */
137 /* init         */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA, sIV, sHA},/* INIT in sCL Big TODO */
138 /* init_ack     */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA, sIV, sHA},
139 /* abort        */ {sIV, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sIV, sCL},
140 /* shutdown     */ {sIV, sCL, sCW, sCE, sSR, sSS, sSR, sSA, sIV, sSR},
141 /* shutdown_ack */ {sIV, sCL, sCW, sCE, sES, sSA, sSA, sSA, sIV, sHA},
142 /* error        */ {sIV, sCL, sCW, sCL, sES, sSS, sSR, sSA, sIV, sHA},
143 /* cookie_echo  */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA, sIV, sHA},/* Can't come in reply dir */
144 /* cookie_ack   */ {sIV, sCL, sCW, sES, sES, sSS, sSR, sSA, sIV, sHA},
145 /* shutdown_comp*/ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sCL, sIV, sHA},
146 /* heartbeat    */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA, sHS, sHA},
147 /* heartbeat_ack*/ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA, sHA, sHA}
148         }
149 };
150
151 static inline struct nf_sctp_net *sctp_pernet(struct net *net)
152 {
153         return &net->ct.nf_ct_proto.sctp;
154 }
155
156 #ifdef CONFIG_NF_CONNTRACK_PROCFS
157 /* Print out the private part of the conntrack. */
158 static void sctp_print_conntrack(struct seq_file *s, struct nf_conn *ct)
159 {
160         seq_printf(s, "%s ", sctp_conntrack_names[ct->proto.sctp.state]);
161 }
162 #endif
163
164 #define for_each_sctp_chunk(skb, sch, _sch, offset, dataoff, count)     \
165 for ((offset) = (dataoff) + sizeof(struct sctphdr), (count) = 0;        \
166         (offset) < (skb)->len &&                                        \
167         ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch)));   \
168         (offset) += (ntohs((sch)->length) + 3) & ~3, (count)++)
169
170 /* Some validity checks to make sure the chunks are fine */
171 static int do_basic_checks(struct nf_conn *ct,
172                            const struct sk_buff *skb,
173                            unsigned int dataoff,
174                            unsigned long *map)
175 {
176         u_int32_t offset, count;
177         struct sctp_chunkhdr _sch, *sch;
178         int flag;
179
180         flag = 0;
181
182         for_each_sctp_chunk (skb, sch, _sch, offset, dataoff, count) {
183                 pr_debug("Chunk Num: %d  Type: %d\n", count, sch->type);
184
185                 if (sch->type == SCTP_CID_INIT ||
186                     sch->type == SCTP_CID_INIT_ACK ||
187                     sch->type == SCTP_CID_SHUTDOWN_COMPLETE)
188                         flag = 1;
189
190                 /*
191                  * Cookie Ack/Echo chunks not the first OR
192                  * Init / Init Ack / Shutdown compl chunks not the only chunks
193                  * OR zero-length.
194                  */
195                 if (((sch->type == SCTP_CID_COOKIE_ACK ||
196                       sch->type == SCTP_CID_COOKIE_ECHO ||
197                       flag) &&
198                      count != 0) || !sch->length) {
199                         pr_debug("Basic checks failed\n");
200                         return 1;
201                 }
202
203                 if (map)
204                         set_bit(sch->type, map);
205         }
206
207         pr_debug("Basic checks passed\n");
208         return count == 0;
209 }
210
211 static int sctp_new_state(enum ip_conntrack_dir dir,
212                           enum sctp_conntrack cur_state,
213                           int chunk_type)
214 {
215         int i;
216
217         pr_debug("Chunk type: %d\n", chunk_type);
218
219         switch (chunk_type) {
220         case SCTP_CID_INIT:
221                 pr_debug("SCTP_CID_INIT\n");
222                 i = 0;
223                 break;
224         case SCTP_CID_INIT_ACK:
225                 pr_debug("SCTP_CID_INIT_ACK\n");
226                 i = 1;
227                 break;
228         case SCTP_CID_ABORT:
229                 pr_debug("SCTP_CID_ABORT\n");
230                 i = 2;
231                 break;
232         case SCTP_CID_SHUTDOWN:
233                 pr_debug("SCTP_CID_SHUTDOWN\n");
234                 i = 3;
235                 break;
236         case SCTP_CID_SHUTDOWN_ACK:
237                 pr_debug("SCTP_CID_SHUTDOWN_ACK\n");
238                 i = 4;
239                 break;
240         case SCTP_CID_ERROR:
241                 pr_debug("SCTP_CID_ERROR\n");
242                 i = 5;
243                 break;
244         case SCTP_CID_COOKIE_ECHO:
245                 pr_debug("SCTP_CID_COOKIE_ECHO\n");
246                 i = 6;
247                 break;
248         case SCTP_CID_COOKIE_ACK:
249                 pr_debug("SCTP_CID_COOKIE_ACK\n");
250                 i = 7;
251                 break;
252         case SCTP_CID_SHUTDOWN_COMPLETE:
253                 pr_debug("SCTP_CID_SHUTDOWN_COMPLETE\n");
254                 i = 8;
255                 break;
256         case SCTP_CID_HEARTBEAT:
257                 pr_debug("SCTP_CID_HEARTBEAT");
258                 i = 9;
259                 break;
260         case SCTP_CID_HEARTBEAT_ACK:
261                 pr_debug("SCTP_CID_HEARTBEAT_ACK");
262                 i = 10;
263                 break;
264         default:
265                 /* Other chunks like DATA or SACK do not change the state */
266                 pr_debug("Unknown chunk type, Will stay in %s\n",
267                          sctp_conntrack_names[cur_state]);
268                 return cur_state;
269         }
270
271         pr_debug("dir: %d   cur_state: %s  chunk_type: %d  new_state: %s\n",
272                  dir, sctp_conntrack_names[cur_state], chunk_type,
273                  sctp_conntrack_names[sctp_conntracks[dir][i][cur_state]]);
274
275         return sctp_conntracks[dir][i][cur_state];
276 }
277
278 /* Returns verdict for packet, or -NF_ACCEPT for invalid. */
279 static int sctp_packet(struct nf_conn *ct,
280                        const struct sk_buff *skb,
281                        unsigned int dataoff,
282                        enum ip_conntrack_info ctinfo)
283 {
284         enum sctp_conntrack new_state, old_state;
285         enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
286         const struct sctphdr *sh;
287         struct sctphdr _sctph;
288         const struct sctp_chunkhdr *sch;
289         struct sctp_chunkhdr _sch;
290         u_int32_t offset, count;
291         unsigned int *timeouts;
292         unsigned long map[256 / sizeof(unsigned long)] = { 0 };
293         bool ignore = false;
294
295         sh = skb_header_pointer(skb, dataoff, sizeof(_sctph), &_sctph);
296         if (sh == NULL)
297                 goto out;
298
299         if (do_basic_checks(ct, skb, dataoff, map) != 0)
300                 goto out;
301
302         /* Check the verification tag (Sec 8.5) */
303         if (!test_bit(SCTP_CID_INIT, map) &&
304             !test_bit(SCTP_CID_SHUTDOWN_COMPLETE, map) &&
305             !test_bit(SCTP_CID_COOKIE_ECHO, map) &&
306             !test_bit(SCTP_CID_ABORT, map) &&
307             !test_bit(SCTP_CID_SHUTDOWN_ACK, map) &&
308             !test_bit(SCTP_CID_HEARTBEAT, map) &&
309             !test_bit(SCTP_CID_HEARTBEAT_ACK, map) &&
310             sh->vtag != ct->proto.sctp.vtag[dir]) {
311                 pr_debug("Verification tag check failed\n");
312                 goto out;
313         }
314
315         old_state = new_state = SCTP_CONNTRACK_NONE;
316         spin_lock_bh(&ct->lock);
317         for_each_sctp_chunk (skb, sch, _sch, offset, dataoff, count) {
318                 /* Special cases of Verification tag check (Sec 8.5.1) */
319                 if (sch->type == SCTP_CID_INIT) {
320                         /* Sec 8.5.1 (A) */
321                         if (sh->vtag != 0)
322                                 goto out_unlock;
323                 } else if (sch->type == SCTP_CID_ABORT) {
324                         /* Sec 8.5.1 (B) */
325                         if (sh->vtag != ct->proto.sctp.vtag[dir] &&
326                             sh->vtag != ct->proto.sctp.vtag[!dir])
327                                 goto out_unlock;
328                 } else if (sch->type == SCTP_CID_SHUTDOWN_COMPLETE) {
329                         /* Sec 8.5.1 (C) */
330                         if (sh->vtag != ct->proto.sctp.vtag[dir] &&
331                             sh->vtag != ct->proto.sctp.vtag[!dir] &&
332                             sch->flags & SCTP_CHUNK_FLAG_T)
333                                 goto out_unlock;
334                 } else if (sch->type == SCTP_CID_COOKIE_ECHO) {
335                         /* Sec 8.5.1 (D) */
336                         if (sh->vtag != ct->proto.sctp.vtag[dir])
337                                 goto out_unlock;
338                 } else if (sch->type == SCTP_CID_HEARTBEAT) {
339                         if (ct->proto.sctp.vtag[dir] == 0) {
340                                 pr_debug("Setting %d vtag %x for dir %d\n", sch->type, sh->vtag, dir);
341                                 ct->proto.sctp.vtag[dir] = sh->vtag;
342                         } else if (sh->vtag != ct->proto.sctp.vtag[dir]) {
343                                 if (test_bit(SCTP_CID_DATA, map) || ignore)
344                                         goto out_unlock;
345
346                                 ct->proto.sctp.flags |= SCTP_FLAG_HEARTBEAT_VTAG_FAILED;
347                                 ct->proto.sctp.last_dir = dir;
348                                 ignore = true;
349                                 continue;
350                         } else if (ct->proto.sctp.flags & SCTP_FLAG_HEARTBEAT_VTAG_FAILED) {
351                                 ct->proto.sctp.flags &= ~SCTP_FLAG_HEARTBEAT_VTAG_FAILED;
352                         }
353                 } else if (sch->type == SCTP_CID_HEARTBEAT_ACK) {
354                         if (ct->proto.sctp.vtag[dir] == 0) {
355                                 pr_debug("Setting vtag %x for dir %d\n",
356                                          sh->vtag, dir);
357                                 ct->proto.sctp.vtag[dir] = sh->vtag;
358                         } else if (sh->vtag != ct->proto.sctp.vtag[dir]) {
359                                 if (test_bit(SCTP_CID_DATA, map) || ignore)
360                                         goto out_unlock;
361
362                                 if ((ct->proto.sctp.flags & SCTP_FLAG_HEARTBEAT_VTAG_FAILED) == 0 ||
363                                     ct->proto.sctp.last_dir == dir)
364                                         goto out_unlock;
365
366                                 ct->proto.sctp.flags &= ~SCTP_FLAG_HEARTBEAT_VTAG_FAILED;
367                                 ct->proto.sctp.vtag[dir] = sh->vtag;
368                                 ct->proto.sctp.vtag[!dir] = 0;
369                         } else if (ct->proto.sctp.flags & SCTP_FLAG_HEARTBEAT_VTAG_FAILED) {
370                                 ct->proto.sctp.flags &= ~SCTP_FLAG_HEARTBEAT_VTAG_FAILED;
371                         }
372                 }
373
374                 old_state = ct->proto.sctp.state;
375                 new_state = sctp_new_state(dir, old_state, sch->type);
376
377                 /* Invalid */
378                 if (new_state == SCTP_CONNTRACK_MAX) {
379                         pr_debug("nf_conntrack_sctp: Invalid dir=%i ctype=%u "
380                                  "conntrack=%u\n",
381                                  dir, sch->type, old_state);
382                         goto out_unlock;
383                 }
384
385                 /* If it is an INIT or an INIT ACK note down the vtag */
386                 if (sch->type == SCTP_CID_INIT ||
387                     sch->type == SCTP_CID_INIT_ACK) {
388                         struct sctp_inithdr _inithdr, *ih;
389
390                         ih = skb_header_pointer(skb, offset + sizeof(_sch),
391                                                 sizeof(_inithdr), &_inithdr);
392                         if (ih == NULL)
393                                 goto out_unlock;
394                         pr_debug("Setting vtag %x for dir %d\n",
395                                  ih->init_tag, !dir);
396                         ct->proto.sctp.vtag[!dir] = ih->init_tag;
397                 }
398
399                 ct->proto.sctp.state = new_state;
400                 if (old_state != new_state)
401                         nf_conntrack_event_cache(IPCT_PROTOINFO, ct);
402         }
403         spin_unlock_bh(&ct->lock);
404
405         /* allow but do not refresh timeout */
406         if (ignore)
407                 return NF_ACCEPT;
408
409         timeouts = nf_ct_timeout_lookup(ct);
410         if (!timeouts)
411                 timeouts = sctp_pernet(nf_ct_net(ct))->timeouts;
412
413         nf_ct_refresh_acct(ct, ctinfo, skb, timeouts[new_state]);
414
415         if (old_state == SCTP_CONNTRACK_COOKIE_ECHOED &&
416             dir == IP_CT_DIR_REPLY &&
417             new_state == SCTP_CONNTRACK_ESTABLISHED) {
418                 pr_debug("Setting assured bit\n");
419                 set_bit(IPS_ASSURED_BIT, &ct->status);
420                 nf_conntrack_event_cache(IPCT_ASSURED, ct);
421         }
422
423         return NF_ACCEPT;
424
425 out_unlock:
426         spin_unlock_bh(&ct->lock);
427 out:
428         return -NF_ACCEPT;
429 }
430
431 /* Called when a new connection for this protocol found. */
432 static bool sctp_new(struct nf_conn *ct, const struct sk_buff *skb,
433                      unsigned int dataoff)
434 {
435         enum sctp_conntrack new_state;
436         const struct sctphdr *sh;
437         struct sctphdr _sctph;
438         const struct sctp_chunkhdr *sch;
439         struct sctp_chunkhdr _sch;
440         u_int32_t offset, count;
441         unsigned long map[256 / sizeof(unsigned long)] = { 0 };
442
443         sh = skb_header_pointer(skb, dataoff, sizeof(_sctph), &_sctph);
444         if (sh == NULL)
445                 return false;
446
447         if (do_basic_checks(ct, skb, dataoff, map) != 0)
448                 return false;
449
450         /* If an OOTB packet has any of these chunks discard (Sec 8.4) */
451         if (test_bit(SCTP_CID_ABORT, map) ||
452             test_bit(SCTP_CID_SHUTDOWN_COMPLETE, map) ||
453             test_bit(SCTP_CID_COOKIE_ACK, map))
454                 return false;
455
456         memset(&ct->proto.sctp, 0, sizeof(ct->proto.sctp));
457         new_state = SCTP_CONNTRACK_MAX;
458         for_each_sctp_chunk (skb, sch, _sch, offset, dataoff, count) {
459                 /* Don't need lock here: this conntrack not in circulation yet */
460                 new_state = sctp_new_state(IP_CT_DIR_ORIGINAL,
461                                            SCTP_CONNTRACK_NONE, sch->type);
462
463                 /* Invalid: delete conntrack */
464                 if (new_state == SCTP_CONNTRACK_NONE ||
465                     new_state == SCTP_CONNTRACK_MAX) {
466                         pr_debug("nf_conntrack_sctp: invalid new deleting.\n");
467                         return false;
468                 }
469
470                 /* Copy the vtag into the state info */
471                 if (sch->type == SCTP_CID_INIT) {
472                         struct sctp_inithdr _inithdr, *ih;
473                         /* Sec 8.5.1 (A) */
474                         if (sh->vtag)
475                                 return false;
476
477                         ih = skb_header_pointer(skb, offset + sizeof(_sch),
478                                                 sizeof(_inithdr), &_inithdr);
479                         if (!ih)
480                                 return false;
481
482                         pr_debug("Setting vtag %x for new conn\n",
483                                  ih->init_tag);
484
485                         ct->proto.sctp.vtag[IP_CT_DIR_REPLY] = ih->init_tag;
486                 } else if (sch->type == SCTP_CID_HEARTBEAT) {
487                         pr_debug("Setting vtag %x for secondary conntrack\n",
488                                  sh->vtag);
489                         ct->proto.sctp.vtag[IP_CT_DIR_ORIGINAL] = sh->vtag;
490                 }
491                 /* If it is a shutdown ack OOTB packet, we expect a return
492                    shutdown complete, otherwise an ABORT Sec 8.4 (5) and (8) */
493                 else {
494                         pr_debug("Setting vtag %x for new conn OOTB\n",
495                                  sh->vtag);
496                         ct->proto.sctp.vtag[IP_CT_DIR_REPLY] = sh->vtag;
497                 }
498
499                 ct->proto.sctp.state = new_state;
500         }
501
502         return true;
503 }
504
505 static int sctp_error(struct net *net, struct nf_conn *tpl, struct sk_buff *skb,
506                       unsigned int dataoff,
507                       u8 pf, unsigned int hooknum)
508 {
509         const struct sctphdr *sh;
510         const char *logmsg;
511
512         if (skb->len < dataoff + sizeof(struct sctphdr)) {
513                 logmsg = "nf_ct_sctp: short packet ";
514                 goto out_invalid;
515         }
516         if (net->ct.sysctl_checksum && hooknum == NF_INET_PRE_ROUTING &&
517             skb->ip_summed == CHECKSUM_NONE) {
518                 if (!skb_make_writable(skb, dataoff + sizeof(struct sctphdr))) {
519                         logmsg = "nf_ct_sctp: failed to read header ";
520                         goto out_invalid;
521                 }
522                 sh = (const struct sctphdr *)(skb->data + dataoff);
523                 if (sh->checksum != sctp_compute_cksum(skb, dataoff)) {
524                         logmsg = "nf_ct_sctp: bad CRC ";
525                         goto out_invalid;
526                 }
527                 skb->ip_summed = CHECKSUM_UNNECESSARY;
528         }
529         return NF_ACCEPT;
530 out_invalid:
531         nf_l4proto_log_invalid(skb, net, pf, IPPROTO_SCTP, "%s", logmsg);
532         return -NF_ACCEPT;
533 }
534
535 static bool sctp_can_early_drop(const struct nf_conn *ct)
536 {
537         switch (ct->proto.sctp.state) {
538         case SCTP_CONNTRACK_SHUTDOWN_SENT:
539         case SCTP_CONNTRACK_SHUTDOWN_RECD:
540         case SCTP_CONNTRACK_SHUTDOWN_ACK_SENT:
541                 return true;
542         default:
543                 break;
544         }
545
546         return false;
547 }
548
549 #if IS_ENABLED(CONFIG_NF_CT_NETLINK)
550
551 #include <linux/netfilter/nfnetlink.h>
552 #include <linux/netfilter/nfnetlink_conntrack.h>
553
554 static int sctp_to_nlattr(struct sk_buff *skb, struct nlattr *nla,
555                           struct nf_conn *ct)
556 {
557         struct nlattr *nest_parms;
558
559         spin_lock_bh(&ct->lock);
560         nest_parms = nla_nest_start(skb, CTA_PROTOINFO_SCTP | NLA_F_NESTED);
561         if (!nest_parms)
562                 goto nla_put_failure;
563
564         if (nla_put_u8(skb, CTA_PROTOINFO_SCTP_STATE, ct->proto.sctp.state) ||
565             nla_put_be32(skb, CTA_PROTOINFO_SCTP_VTAG_ORIGINAL,
566                          ct->proto.sctp.vtag[IP_CT_DIR_ORIGINAL]) ||
567             nla_put_be32(skb, CTA_PROTOINFO_SCTP_VTAG_REPLY,
568                          ct->proto.sctp.vtag[IP_CT_DIR_REPLY]))
569                 goto nla_put_failure;
570
571         spin_unlock_bh(&ct->lock);
572
573         nla_nest_end(skb, nest_parms);
574
575         return 0;
576
577 nla_put_failure:
578         spin_unlock_bh(&ct->lock);
579         return -1;
580 }
581
582 static const struct nla_policy sctp_nla_policy[CTA_PROTOINFO_SCTP_MAX+1] = {
583         [CTA_PROTOINFO_SCTP_STATE]          = { .type = NLA_U8 },
584         [CTA_PROTOINFO_SCTP_VTAG_ORIGINAL]  = { .type = NLA_U32 },
585         [CTA_PROTOINFO_SCTP_VTAG_REPLY]     = { .type = NLA_U32 },
586 };
587
588 #define SCTP_NLATTR_SIZE ( \
589                 NLA_ALIGN(NLA_HDRLEN + 1) + \
590                 NLA_ALIGN(NLA_HDRLEN + 4) + \
591                 NLA_ALIGN(NLA_HDRLEN + 4))
592
593 static int nlattr_to_sctp(struct nlattr *cda[], struct nf_conn *ct)
594 {
595         struct nlattr *attr = cda[CTA_PROTOINFO_SCTP];
596         struct nlattr *tb[CTA_PROTOINFO_SCTP_MAX+1];
597         int err;
598
599         /* updates may not contain the internal protocol info, skip parsing */
600         if (!attr)
601                 return 0;
602
603         err = nla_parse_nested(tb, CTA_PROTOINFO_SCTP_MAX, attr,
604                                sctp_nla_policy, NULL);
605         if (err < 0)
606                 return err;
607
608         if (!tb[CTA_PROTOINFO_SCTP_STATE] ||
609             !tb[CTA_PROTOINFO_SCTP_VTAG_ORIGINAL] ||
610             !tb[CTA_PROTOINFO_SCTP_VTAG_REPLY])
611                 return -EINVAL;
612
613         spin_lock_bh(&ct->lock);
614         ct->proto.sctp.state = nla_get_u8(tb[CTA_PROTOINFO_SCTP_STATE]);
615         ct->proto.sctp.vtag[IP_CT_DIR_ORIGINAL] =
616                 nla_get_be32(tb[CTA_PROTOINFO_SCTP_VTAG_ORIGINAL]);
617         ct->proto.sctp.vtag[IP_CT_DIR_REPLY] =
618                 nla_get_be32(tb[CTA_PROTOINFO_SCTP_VTAG_REPLY]);
619         spin_unlock_bh(&ct->lock);
620
621         return 0;
622 }
623 #endif
624
625 #ifdef CONFIG_NF_CONNTRACK_TIMEOUT
626
627 #include <linux/netfilter/nfnetlink.h>
628 #include <linux/netfilter/nfnetlink_cttimeout.h>
629
630 static int sctp_timeout_nlattr_to_obj(struct nlattr *tb[],
631                                       struct net *net, void *data)
632 {
633         unsigned int *timeouts = data;
634         struct nf_sctp_net *sn = sctp_pernet(net);
635         int i;
636
637         if (!timeouts)
638                 timeouts = sn->timeouts;
639
640         /* set default SCTP timeouts. */
641         for (i=0; i<SCTP_CONNTRACK_MAX; i++)
642                 timeouts[i] = sn->timeouts[i];
643
644         /* there's a 1:1 mapping between attributes and protocol states. */
645         for (i=CTA_TIMEOUT_SCTP_UNSPEC+1; i<CTA_TIMEOUT_SCTP_MAX+1; i++) {
646                 if (tb[i]) {
647                         timeouts[i] = ntohl(nla_get_be32(tb[i])) * HZ;
648                 }
649         }
650
651         timeouts[CTA_TIMEOUT_SCTP_UNSPEC] = timeouts[CTA_TIMEOUT_SCTP_CLOSED];
652         return 0;
653 }
654
655 static int
656 sctp_timeout_obj_to_nlattr(struct sk_buff *skb, const void *data)
657 {
658         const unsigned int *timeouts = data;
659         int i;
660
661         for (i=CTA_TIMEOUT_SCTP_UNSPEC+1; i<CTA_TIMEOUT_SCTP_MAX+1; i++) {
662                 if (nla_put_be32(skb, i, htonl(timeouts[i] / HZ)))
663                         goto nla_put_failure;
664         }
665         return 0;
666
667 nla_put_failure:
668         return -ENOSPC;
669 }
670
671 static const struct nla_policy
672 sctp_timeout_nla_policy[CTA_TIMEOUT_SCTP_MAX+1] = {
673         [CTA_TIMEOUT_SCTP_CLOSED]               = { .type = NLA_U32 },
674         [CTA_TIMEOUT_SCTP_COOKIE_WAIT]          = { .type = NLA_U32 },
675         [CTA_TIMEOUT_SCTP_COOKIE_ECHOED]        = { .type = NLA_U32 },
676         [CTA_TIMEOUT_SCTP_ESTABLISHED]          = { .type = NLA_U32 },
677         [CTA_TIMEOUT_SCTP_SHUTDOWN_SENT]        = { .type = NLA_U32 },
678         [CTA_TIMEOUT_SCTP_SHUTDOWN_RECD]        = { .type = NLA_U32 },
679         [CTA_TIMEOUT_SCTP_SHUTDOWN_ACK_SENT]    = { .type = NLA_U32 },
680         [CTA_TIMEOUT_SCTP_HEARTBEAT_SENT]       = { .type = NLA_U32 },
681         [CTA_TIMEOUT_SCTP_HEARTBEAT_ACKED]      = { .type = NLA_U32 },
682 };
683 #endif /* CONFIG_NF_CONNTRACK_TIMEOUT */
684
685
686 #ifdef CONFIG_SYSCTL
687 static struct ctl_table sctp_sysctl_table[] = {
688         {
689                 .procname       = "nf_conntrack_sctp_timeout_closed",
690                 .maxlen         = sizeof(unsigned int),
691                 .mode           = 0644,
692                 .proc_handler   = proc_dointvec_jiffies,
693         },
694         {
695                 .procname       = "nf_conntrack_sctp_timeout_cookie_wait",
696                 .maxlen         = sizeof(unsigned int),
697                 .mode           = 0644,
698                 .proc_handler   = proc_dointvec_jiffies,
699         },
700         {
701                 .procname       = "nf_conntrack_sctp_timeout_cookie_echoed",
702                 .maxlen         = sizeof(unsigned int),
703                 .mode           = 0644,
704                 .proc_handler   = proc_dointvec_jiffies,
705         },
706         {
707                 .procname       = "nf_conntrack_sctp_timeout_established",
708                 .maxlen         = sizeof(unsigned int),
709                 .mode           = 0644,
710                 .proc_handler   = proc_dointvec_jiffies,
711         },
712         {
713                 .procname       = "nf_conntrack_sctp_timeout_shutdown_sent",
714                 .maxlen         = sizeof(unsigned int),
715                 .mode           = 0644,
716                 .proc_handler   = proc_dointvec_jiffies,
717         },
718         {
719                 .procname       = "nf_conntrack_sctp_timeout_shutdown_recd",
720                 .maxlen         = sizeof(unsigned int),
721                 .mode           = 0644,
722                 .proc_handler   = proc_dointvec_jiffies,
723         },
724         {
725                 .procname       = "nf_conntrack_sctp_timeout_shutdown_ack_sent",
726                 .maxlen         = sizeof(unsigned int),
727                 .mode           = 0644,
728                 .proc_handler   = proc_dointvec_jiffies,
729         },
730         {
731                 .procname       = "nf_conntrack_sctp_timeout_heartbeat_sent",
732                 .maxlen         = sizeof(unsigned int),
733                 .mode           = 0644,
734                 .proc_handler   = proc_dointvec_jiffies,
735         },
736         {
737                 .procname       = "nf_conntrack_sctp_timeout_heartbeat_acked",
738                 .maxlen         = sizeof(unsigned int),
739                 .mode           = 0644,
740                 .proc_handler   = proc_dointvec_jiffies,
741         },
742         { }
743 };
744 #endif
745
746 static int sctp_kmemdup_sysctl_table(struct nf_proto_net *pn,
747                                      struct nf_sctp_net *sn)
748 {
749 #ifdef CONFIG_SYSCTL
750         if (pn->ctl_table)
751                 return 0;
752
753         pn->ctl_table = kmemdup(sctp_sysctl_table,
754                                 sizeof(sctp_sysctl_table),
755                                 GFP_KERNEL);
756         if (!pn->ctl_table)
757                 return -ENOMEM;
758
759         pn->ctl_table[0].data = &sn->timeouts[SCTP_CONNTRACK_CLOSED];
760         pn->ctl_table[1].data = &sn->timeouts[SCTP_CONNTRACK_COOKIE_WAIT];
761         pn->ctl_table[2].data = &sn->timeouts[SCTP_CONNTRACK_COOKIE_ECHOED];
762         pn->ctl_table[3].data = &sn->timeouts[SCTP_CONNTRACK_ESTABLISHED];
763         pn->ctl_table[4].data = &sn->timeouts[SCTP_CONNTRACK_SHUTDOWN_SENT];
764         pn->ctl_table[5].data = &sn->timeouts[SCTP_CONNTRACK_SHUTDOWN_RECD];
765         pn->ctl_table[6].data = &sn->timeouts[SCTP_CONNTRACK_SHUTDOWN_ACK_SENT];
766         pn->ctl_table[7].data = &sn->timeouts[SCTP_CONNTRACK_HEARTBEAT_SENT];
767         pn->ctl_table[8].data = &sn->timeouts[SCTP_CONNTRACK_HEARTBEAT_ACKED];
768 #endif
769         return 0;
770 }
771
772 static int sctp_init_net(struct net *net, u_int16_t proto)
773 {
774         struct nf_sctp_net *sn = sctp_pernet(net);
775         struct nf_proto_net *pn = &sn->pn;
776
777         if (!pn->users) {
778                 int i;
779
780                 for (i = 0; i < SCTP_CONNTRACK_MAX; i++)
781                         sn->timeouts[i] = sctp_timeouts[i];
782
783                 /* timeouts[0] is unused, init it so ->timeouts[0] contains
784                  * 'new' timeout, like udp or icmp.
785                  */
786                 sn->timeouts[0] = sctp_timeouts[SCTP_CONNTRACK_CLOSED];
787         }
788
789         return sctp_kmemdup_sysctl_table(pn, sn);
790 }
791
792 static struct nf_proto_net *sctp_get_net_proto(struct net *net)
793 {
794         return &net->ct.nf_ct_proto.sctp.pn;
795 }
796
797 const struct nf_conntrack_l4proto nf_conntrack_l4proto_sctp4 = {
798         .l3proto                = PF_INET,
799         .l4proto                = IPPROTO_SCTP,
800 #ifdef CONFIG_NF_CONNTRACK_PROCFS
801         .print_conntrack        = sctp_print_conntrack,
802 #endif
803         .packet                 = sctp_packet,
804         .new                    = sctp_new,
805         .error                  = sctp_error,
806         .can_early_drop         = sctp_can_early_drop,
807         .me                     = THIS_MODULE,
808 #if IS_ENABLED(CONFIG_NF_CT_NETLINK)
809         .nlattr_size            = SCTP_NLATTR_SIZE,
810         .to_nlattr              = sctp_to_nlattr,
811         .from_nlattr            = nlattr_to_sctp,
812         .tuple_to_nlattr        = nf_ct_port_tuple_to_nlattr,
813         .nlattr_tuple_size      = nf_ct_port_nlattr_tuple_size,
814         .nlattr_to_tuple        = nf_ct_port_nlattr_to_tuple,
815         .nla_policy             = nf_ct_port_nla_policy,
816 #endif
817 #ifdef CONFIG_NF_CONNTRACK_TIMEOUT
818         .ctnl_timeout           = {
819                 .nlattr_to_obj  = sctp_timeout_nlattr_to_obj,
820                 .obj_to_nlattr  = sctp_timeout_obj_to_nlattr,
821                 .nlattr_max     = CTA_TIMEOUT_SCTP_MAX,
822                 .obj_size       = sizeof(unsigned int) * SCTP_CONNTRACK_MAX,
823                 .nla_policy     = sctp_timeout_nla_policy,
824         },
825 #endif /* CONFIG_NF_CONNTRACK_TIMEOUT */
826         .init_net               = sctp_init_net,
827         .get_net_proto          = sctp_get_net_proto,
828 };
829 EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_sctp4);
830
831 const struct nf_conntrack_l4proto nf_conntrack_l4proto_sctp6 = {
832         .l3proto                = PF_INET6,
833         .l4proto                = IPPROTO_SCTP,
834 #ifdef CONFIG_NF_CONNTRACK_PROCFS
835         .print_conntrack        = sctp_print_conntrack,
836 #endif
837         .packet                 = sctp_packet,
838         .new                    = sctp_new,
839         .error                  = sctp_error,
840         .can_early_drop         = sctp_can_early_drop,
841         .me                     = THIS_MODULE,
842 #if IS_ENABLED(CONFIG_NF_CT_NETLINK)
843         .nlattr_size            = SCTP_NLATTR_SIZE,
844         .to_nlattr              = sctp_to_nlattr,
845         .from_nlattr            = nlattr_to_sctp,
846         .tuple_to_nlattr        = nf_ct_port_tuple_to_nlattr,
847         .nlattr_tuple_size      = nf_ct_port_nlattr_tuple_size,
848         .nlattr_to_tuple        = nf_ct_port_nlattr_to_tuple,
849         .nla_policy             = nf_ct_port_nla_policy,
850 #endif
851 #ifdef CONFIG_NF_CONNTRACK_TIMEOUT
852         .ctnl_timeout           = {
853                 .nlattr_to_obj  = sctp_timeout_nlattr_to_obj,
854                 .obj_to_nlattr  = sctp_timeout_obj_to_nlattr,
855                 .nlattr_max     = CTA_TIMEOUT_SCTP_MAX,
856                 .obj_size       = sizeof(unsigned int) * SCTP_CONNTRACK_MAX,
857                 .nla_policy     = sctp_timeout_nla_policy,
858         },
859 #endif /* CONFIG_NF_CONNTRACK_TIMEOUT */
860         .init_net               = sctp_init_net,
861         .get_net_proto          = sctp_get_net_proto,
862 };
863 EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_sctp6);