[SCTP] Update pmtu handling to be similar to tcp
[safe/jmp/linux-2.6] / net / sctp / input.c
1 /* SCTP kernel reference Implementation
2  * Copyright (c) 1999-2000 Cisco, Inc.
3  * Copyright (c) 1999-2001 Motorola, Inc.
4  * Copyright (c) 2001-2003 International Business Machines, Corp.
5  * Copyright (c) 2001 Intel Corp.
6  * Copyright (c) 2001 Nokia, Inc.
7  * Copyright (c) 2001 La Monte H.P. Yarroll
8  *
9  * This file is part of the SCTP kernel reference Implementation
10  *
11  * These functions handle all input from the IP layer into SCTP.
12  *
13  * The SCTP reference implementation is free software;
14  * you can redistribute it and/or modify it under the terms of
15  * the GNU General Public License as published by
16  * the Free Software Foundation; either version 2, or (at your option)
17  * any later version.
18  *
19  * The SCTP reference implementation is distributed in the hope that it
20  * will be useful, but WITHOUT ANY WARRANTY; without even the implied
21  *                 ************************
22  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23  * See the GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with GNU CC; see the file COPYING.  If not, write to
27  * the Free Software Foundation, 59 Temple Place - Suite 330,
28  * Boston, MA 02111-1307, USA.
29  *
30  * Please send any bug reports or fixes you make to the
31  * email address(es):
32  *    lksctp developers <lksctp-developers@lists.sourceforge.net>
33  *
34  * Or submit a bug report through the following website:
35  *    http://www.sf.net/projects/lksctp
36  *
37  * Written or modified by:
38  *    La Monte H.P. Yarroll <piggy@acm.org>
39  *    Karl Knutson <karl@athena.chicago.il.us>
40  *    Xingang Guo <xingang.guo@intel.com>
41  *    Jon Grimm <jgrimm@us.ibm.com>
42  *    Hui Huang <hui.huang@nokia.com>
43  *    Daisy Chang <daisyc@us.ibm.com>
44  *    Sridhar Samudrala <sri@us.ibm.com>
45  *    Ardelle Fan <ardelle.fan@intel.com>
46  *
47  * Any bugs reported given to us we will try to fix... any fixes shared will
48  * be incorporated into the next SCTP release.
49  */
50
51 #include <linux/types.h>
52 #include <linux/list.h> /* For struct list_head */
53 #include <linux/socket.h>
54 #include <linux/ip.h>
55 #include <linux/time.h> /* For struct timeval */
56 #include <net/ip.h>
57 #include <net/icmp.h>
58 #include <net/snmp.h>
59 #include <net/sock.h>
60 #include <net/xfrm.h>
61 #include <net/sctp/sctp.h>
62 #include <net/sctp/sm.h>
63
64 /* Forward declarations for internal helpers. */
65 static int sctp_rcv_ootb(struct sk_buff *);
66 static struct sctp_association *__sctp_rcv_lookup(struct sk_buff *skb,
67                                       const union sctp_addr *laddr,
68                                       const union sctp_addr *paddr,
69                                       struct sctp_transport **transportp);
70 static struct sctp_endpoint *__sctp_rcv_lookup_endpoint(const union sctp_addr *laddr);
71 static struct sctp_association *__sctp_lookup_association(
72                                         const union sctp_addr *local,
73                                         const union sctp_addr *peer,
74                                         struct sctp_transport **pt);
75
76 static void sctp_add_backlog(struct sock *sk, struct sk_buff *skb);
77
78
79 /* Calculate the SCTP checksum of an SCTP packet.  */
80 static inline int sctp_rcv_checksum(struct sk_buff *skb)
81 {
82         struct sk_buff *list = skb_shinfo(skb)->frag_list;
83         struct sctphdr *sh = sctp_hdr(skb);
84         __u32 cmp = ntohl(sh->checksum);
85         __u32 val = sctp_start_cksum((__u8 *)sh, skb_headlen(skb));
86
87         for (; list; list = list->next)
88                 val = sctp_update_cksum((__u8 *)list->data, skb_headlen(list),
89                                         val);
90
91         val = sctp_end_cksum(val);
92
93         if (val != cmp) {
94                 /* CRC failure, dump it. */
95                 SCTP_INC_STATS_BH(SCTP_MIB_CHECKSUMERRORS);
96                 return -1;
97         }
98         return 0;
99 }
100
101 struct sctp_input_cb {
102         union {
103                 struct inet_skb_parm    h4;
104 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
105                 struct inet6_skb_parm   h6;
106 #endif
107         } header;
108         struct sctp_chunk *chunk;
109 };
110 #define SCTP_INPUT_CB(__skb)    ((struct sctp_input_cb *)&((__skb)->cb[0]))
111
112 /*
113  * This is the routine which IP calls when receiving an SCTP packet.
114  */
115 int sctp_rcv(struct sk_buff *skb)
116 {
117         struct sock *sk;
118         struct sctp_association *asoc;
119         struct sctp_endpoint *ep = NULL;
120         struct sctp_ep_common *rcvr;
121         struct sctp_transport *transport = NULL;
122         struct sctp_chunk *chunk;
123         struct sctphdr *sh;
124         union sctp_addr src;
125         union sctp_addr dest;
126         int family;
127         struct sctp_af *af;
128
129         if (skb->pkt_type!=PACKET_HOST)
130                 goto discard_it;
131
132         SCTP_INC_STATS_BH(SCTP_MIB_INSCTPPACKS);
133
134         if (skb_linearize(skb))
135                 goto discard_it;
136
137         sh = sctp_hdr(skb);
138
139         /* Pull up the IP and SCTP headers. */
140         __skb_pull(skb, skb_transport_offset(skb));
141         if (skb->len < sizeof(struct sctphdr))
142                 goto discard_it;
143         if (!skb_csum_unnecessary(skb) && sctp_rcv_checksum(skb) < 0)
144                 goto discard_it;
145
146         skb_pull(skb, sizeof(struct sctphdr));
147
148         /* Make sure we at least have chunk headers worth of data left. */
149         if (skb->len < sizeof(struct sctp_chunkhdr))
150                 goto discard_it;
151
152         family = ipver2af(ip_hdr(skb)->version);
153         af = sctp_get_af_specific(family);
154         if (unlikely(!af))
155                 goto discard_it;
156
157         /* Initialize local addresses for lookups. */
158         af->from_skb(&src, skb, 1);
159         af->from_skb(&dest, skb, 0);
160
161         /* If the packet is to or from a non-unicast address,
162          * silently discard the packet.
163          *
164          * This is not clearly defined in the RFC except in section
165          * 8.4 - OOTB handling.  However, based on the book "Stream Control
166          * Transmission Protocol" 2.1, "It is important to note that the
167          * IP address of an SCTP transport address must be a routable
168          * unicast address.  In other words, IP multicast addresses and
169          * IP broadcast addresses cannot be used in an SCTP transport
170          * address."
171          */
172         if (!af->addr_valid(&src, NULL, skb) ||
173             !af->addr_valid(&dest, NULL, skb))
174                 goto discard_it;
175
176         asoc = __sctp_rcv_lookup(skb, &src, &dest, &transport);
177
178         if (!asoc)
179                 ep = __sctp_rcv_lookup_endpoint(&dest);
180
181         /* Retrieve the common input handling substructure. */
182         rcvr = asoc ? &asoc->base : &ep->base;
183         sk = rcvr->sk;
184
185         /*
186          * If a frame arrives on an interface and the receiving socket is
187          * bound to another interface, via SO_BINDTODEVICE, treat it as OOTB
188          */
189         if (sk->sk_bound_dev_if && (sk->sk_bound_dev_if != af->skb_iif(skb)))
190         {
191                 if (asoc) {
192                         sctp_association_put(asoc);
193                         asoc = NULL;
194                 } else {
195                         sctp_endpoint_put(ep);
196                         ep = NULL;
197                 }
198                 sk = sctp_get_ctl_sock();
199                 ep = sctp_sk(sk)->ep;
200                 sctp_endpoint_hold(ep);
201                 rcvr = &ep->base;
202         }
203
204         /*
205          * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
206          * An SCTP packet is called an "out of the blue" (OOTB)
207          * packet if it is correctly formed, i.e., passed the
208          * receiver's checksum check, but the receiver is not
209          * able to identify the association to which this
210          * packet belongs.
211          */
212         if (!asoc) {
213                 if (sctp_rcv_ootb(skb)) {
214                         SCTP_INC_STATS_BH(SCTP_MIB_OUTOFBLUES);
215                         goto discard_release;
216                 }
217         }
218
219         if (!xfrm_policy_check(sk, XFRM_POLICY_IN, skb, family))
220                 goto discard_release;
221         nf_reset(skb);
222
223         if (sk_filter(sk, skb))
224                 goto discard_release;
225
226         /* Create an SCTP packet structure. */
227         chunk = sctp_chunkify(skb, asoc, sk);
228         if (!chunk)
229                 goto discard_release;
230         SCTP_INPUT_CB(skb)->chunk = chunk;
231
232         /* Remember what endpoint is to handle this packet. */
233         chunk->rcvr = rcvr;
234
235         /* Remember the SCTP header. */
236         chunk->sctp_hdr = sh;
237
238         /* Set the source and destination addresses of the incoming chunk.  */
239         sctp_init_addrs(chunk, &src, &dest);
240
241         /* Remember where we came from.  */
242         chunk->transport = transport;
243
244         /* Acquire access to the sock lock. Note: We are safe from other
245          * bottom halves on this lock, but a user may be in the lock too,
246          * so check if it is busy.
247          */
248         sctp_bh_lock_sock(sk);
249
250         if (sock_owned_by_user(sk)) {
251                 SCTP_INC_STATS_BH(SCTP_MIB_IN_PKT_BACKLOG);
252                 sctp_add_backlog(sk, skb);
253         } else {
254                 SCTP_INC_STATS_BH(SCTP_MIB_IN_PKT_SOFTIRQ);
255                 sctp_inq_push(&chunk->rcvr->inqueue, chunk);
256         }
257
258         sctp_bh_unlock_sock(sk);
259
260         /* Release the asoc/ep ref we took in the lookup calls. */
261         if (asoc)
262                 sctp_association_put(asoc);
263         else
264                 sctp_endpoint_put(ep);
265
266         return 0;
267
268 discard_it:
269         SCTP_INC_STATS_BH(SCTP_MIB_IN_PKT_DISCARDS);
270         kfree_skb(skb);
271         return 0;
272
273 discard_release:
274         /* Release the asoc/ep ref we took in the lookup calls. */
275         if (asoc)
276                 sctp_association_put(asoc);
277         else
278                 sctp_endpoint_put(ep);
279
280         goto discard_it;
281 }
282
283 /* Process the backlog queue of the socket.  Every skb on
284  * the backlog holds a ref on an association or endpoint.
285  * We hold this ref throughout the state machine to make
286  * sure that the structure we need is still around.
287  */
288 int sctp_backlog_rcv(struct sock *sk, struct sk_buff *skb)
289 {
290         struct sctp_chunk *chunk = SCTP_INPUT_CB(skb)->chunk;
291         struct sctp_inq *inqueue = &chunk->rcvr->inqueue;
292         struct sctp_ep_common *rcvr = NULL;
293         int backloged = 0;
294
295         rcvr = chunk->rcvr;
296
297         /* If the rcvr is dead then the association or endpoint
298          * has been deleted and we can safely drop the chunk
299          * and refs that we are holding.
300          */
301         if (rcvr->dead) {
302                 sctp_chunk_free(chunk);
303                 goto done;
304         }
305
306         if (unlikely(rcvr->sk != sk)) {
307                 /* In this case, the association moved from one socket to
308                  * another.  We are currently sitting on the backlog of the
309                  * old socket, so we need to move.
310                  * However, since we are here in the process context we
311                  * need to take make sure that the user doesn't own
312                  * the new socket when we process the packet.
313                  * If the new socket is user-owned, queue the chunk to the
314                  * backlog of the new socket without dropping any refs.
315                  * Otherwise, we can safely push the chunk on the inqueue.
316                  */
317
318                 sk = rcvr->sk;
319                 sctp_bh_lock_sock(sk);
320
321                 if (sock_owned_by_user(sk)) {
322                         sk_add_backlog(sk, skb);
323                         backloged = 1;
324                 } else
325                         sctp_inq_push(inqueue, chunk);
326
327                 sctp_bh_unlock_sock(sk);
328
329                 /* If the chunk was backloged again, don't drop refs */
330                 if (backloged)
331                         return 0;
332         } else {
333                 sctp_inq_push(inqueue, chunk);
334         }
335
336 done:
337         /* Release the refs we took in sctp_add_backlog */
338         if (SCTP_EP_TYPE_ASSOCIATION == rcvr->type)
339                 sctp_association_put(sctp_assoc(rcvr));
340         else if (SCTP_EP_TYPE_SOCKET == rcvr->type)
341                 sctp_endpoint_put(sctp_ep(rcvr));
342         else
343                 BUG();
344
345         return 0;
346 }
347
348 static void sctp_add_backlog(struct sock *sk, struct sk_buff *skb)
349 {
350         struct sctp_chunk *chunk = SCTP_INPUT_CB(skb)->chunk;
351         struct sctp_ep_common *rcvr = chunk->rcvr;
352
353         /* Hold the assoc/ep while hanging on the backlog queue.
354          * This way, we know structures we need will not disappear from us
355          */
356         if (SCTP_EP_TYPE_ASSOCIATION == rcvr->type)
357                 sctp_association_hold(sctp_assoc(rcvr));
358         else if (SCTP_EP_TYPE_SOCKET == rcvr->type)
359                 sctp_endpoint_hold(sctp_ep(rcvr));
360         else
361                 BUG();
362
363         sk_add_backlog(sk, skb);
364 }
365
366 /* Handle icmp frag needed error. */
367 void sctp_icmp_frag_needed(struct sock *sk, struct sctp_association *asoc,
368                            struct sctp_transport *t, __u32 pmtu)
369 {
370         if (sock_owned_by_user(sk) || !t || (t->pathmtu == pmtu))
371                 return;
372
373         if (t->param_flags & SPP_PMTUD_ENABLE) {
374                 /* Update transports view of the MTU */
375                 sctp_transport_update_pmtu(t, pmtu);
376
377                 /* Update association pmtu. */
378                 sctp_assoc_sync_pmtu(asoc);
379         }
380
381         /* Retransmit with the new pmtu setting.
382          * Normally, if PMTU discovery is disabled, an ICMP Fragmentation
383          * Needed will never be sent, but if a message was sent before
384          * PMTU discovery was disabled that was larger than the PMTU, it
385          * would not be fragmented, so it must be re-transmitted fragmented.
386          */
387         sctp_retransmit(&asoc->outqueue, t, SCTP_RTXR_PMTUD);
388 }
389
390 /*
391  * SCTP Implementer's Guide, 2.37 ICMP handling procedures
392  *
393  * ICMP8) If the ICMP code is a "Unrecognized next header type encountered"
394  *        or a "Protocol Unreachable" treat this message as an abort
395  *        with the T bit set.
396  *
397  * This function sends an event to the state machine, which will abort the
398  * association.
399  *
400  */
401 void sctp_icmp_proto_unreachable(struct sock *sk,
402                            struct sctp_association *asoc,
403                            struct sctp_transport *t)
404 {
405         SCTP_DEBUG_PRINTK("%s\n",  __FUNCTION__);
406
407         sctp_do_sm(SCTP_EVENT_T_OTHER,
408                    SCTP_ST_OTHER(SCTP_EVENT_ICMP_PROTO_UNREACH),
409                    asoc->state, asoc->ep, asoc, t,
410                    GFP_ATOMIC);
411
412 }
413
414 /* Common lookup code for icmp/icmpv6 error handler. */
415 struct sock *sctp_err_lookup(int family, struct sk_buff *skb,
416                              struct sctphdr *sctphdr,
417                              struct sctp_association **app,
418                              struct sctp_transport **tpp)
419 {
420         union sctp_addr saddr;
421         union sctp_addr daddr;
422         struct sctp_af *af;
423         struct sock *sk = NULL;
424         struct sctp_association *asoc;
425         struct sctp_transport *transport = NULL;
426
427         *app = NULL; *tpp = NULL;
428
429         af = sctp_get_af_specific(family);
430         if (unlikely(!af)) {
431                 return NULL;
432         }
433
434         /* Initialize local addresses for lookups. */
435         af->from_skb(&saddr, skb, 1);
436         af->from_skb(&daddr, skb, 0);
437
438         /* Look for an association that matches the incoming ICMP error
439          * packet.
440          */
441         asoc = __sctp_lookup_association(&saddr, &daddr, &transport);
442         if (!asoc)
443                 return NULL;
444
445         sk = asoc->base.sk;
446
447         if (ntohl(sctphdr->vtag) != asoc->c.peer_vtag) {
448                 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
449                 goto out;
450         }
451
452         sctp_bh_lock_sock(sk);
453
454         /* If too many ICMPs get dropped on busy
455          * servers this needs to be solved differently.
456          */
457         if (sock_owned_by_user(sk))
458                 NET_INC_STATS_BH(LINUX_MIB_LOCKDROPPEDICMPS);
459
460         *app = asoc;
461         *tpp = transport;
462         return sk;
463
464 out:
465         if (asoc)
466                 sctp_association_put(asoc);
467         return NULL;
468 }
469
470 /* Common cleanup code for icmp/icmpv6 error handler. */
471 void sctp_err_finish(struct sock *sk, struct sctp_association *asoc)
472 {
473         sctp_bh_unlock_sock(sk);
474         if (asoc)
475                 sctp_association_put(asoc);
476 }
477
478 /*
479  * This routine is called by the ICMP module when it gets some
480  * sort of error condition.  If err < 0 then the socket should
481  * be closed and the error returned to the user.  If err > 0
482  * it's just the icmp type << 8 | icmp code.  After adjustment
483  * header points to the first 8 bytes of the sctp header.  We need
484  * to find the appropriate port.
485  *
486  * The locking strategy used here is very "optimistic". When
487  * someone else accesses the socket the ICMP is just dropped
488  * and for some paths there is no check at all.
489  * A more general error queue to queue errors for later handling
490  * is probably better.
491  *
492  */
493 void sctp_v4_err(struct sk_buff *skb, __u32 info)
494 {
495         struct iphdr *iph = (struct iphdr *)skb->data;
496         const int ihlen = iph->ihl * 4;
497         const int type = icmp_hdr(skb)->type;
498         const int code = icmp_hdr(skb)->code;
499         struct sock *sk;
500         struct sctp_association *asoc = NULL;
501         struct sctp_transport *transport;
502         struct inet_sock *inet;
503         sk_buff_data_t saveip, savesctp;
504         int err;
505
506         if (skb->len < ihlen + 8) {
507                 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
508                 return;
509         }
510
511         /* Fix up skb to look at the embedded net header. */
512         saveip = skb->network_header;
513         savesctp = skb->transport_header;
514         skb_reset_network_header(skb);
515         skb_set_transport_header(skb, ihlen);
516         sk = sctp_err_lookup(AF_INET, skb, sctp_hdr(skb), &asoc, &transport);
517         /* Put back, the original values. */
518         skb->network_header = saveip;
519         skb->transport_header = savesctp;
520         if (!sk) {
521                 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
522                 return;
523         }
524         /* Warning:  The sock lock is held.  Remember to call
525          * sctp_err_finish!
526          */
527
528         switch (type) {
529         case ICMP_PARAMETERPROB:
530                 err = EPROTO;
531                 break;
532         case ICMP_DEST_UNREACH:
533                 if (code > NR_ICMP_UNREACH)
534                         goto out_unlock;
535
536                 /* PMTU discovery (RFC1191) */
537                 if (ICMP_FRAG_NEEDED == code) {
538                         sctp_icmp_frag_needed(sk, asoc, transport, info);
539                         goto out_unlock;
540                 }
541                 else {
542                         if (ICMP_PROT_UNREACH == code) {
543                                 sctp_icmp_proto_unreachable(sk, asoc,
544                                                             transport);
545                                 goto out_unlock;
546                         }
547                 }
548                 err = icmp_err_convert[code].errno;
549                 break;
550         case ICMP_TIME_EXCEEDED:
551                 /* Ignore any time exceeded errors due to fragment reassembly
552                  * timeouts.
553                  */
554                 if (ICMP_EXC_FRAGTIME == code)
555                         goto out_unlock;
556
557                 err = EHOSTUNREACH;
558                 break;
559         default:
560                 goto out_unlock;
561         }
562
563         inet = inet_sk(sk);
564         if (!sock_owned_by_user(sk) && inet->recverr) {
565                 sk->sk_err = err;
566                 sk->sk_error_report(sk);
567         } else {  /* Only an error on timeout */
568                 sk->sk_err_soft = err;
569         }
570
571 out_unlock:
572         sctp_err_finish(sk, asoc);
573 }
574
575 /*
576  * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
577  *
578  * This function scans all the chunks in the OOTB packet to determine if
579  * the packet should be discarded right away.  If a response might be needed
580  * for this packet, or, if further processing is possible, the packet will
581  * be queued to a proper inqueue for the next phase of handling.
582  *
583  * Output:
584  * Return 0 - If further processing is needed.
585  * Return 1 - If the packet can be discarded right away.
586  */
587 int sctp_rcv_ootb(struct sk_buff *skb)
588 {
589         sctp_chunkhdr_t *ch;
590         __u8 *ch_end;
591         sctp_errhdr_t *err;
592
593         ch = (sctp_chunkhdr_t *) skb->data;
594
595         /* Scan through all the chunks in the packet.  */
596         do {
597                 /* Break out if chunk length is less then minimal. */
598                 if (ntohs(ch->length) < sizeof(sctp_chunkhdr_t))
599                         break;
600
601                 ch_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length));
602                 if (ch_end > skb_tail_pointer(skb))
603                         break;
604
605                 /* RFC 8.4, 2) If the OOTB packet contains an ABORT chunk, the
606                  * receiver MUST silently discard the OOTB packet and take no
607                  * further action.
608                  */
609                 if (SCTP_CID_ABORT == ch->type)
610                         goto discard;
611
612                 /* RFC 8.4, 6) If the packet contains a SHUTDOWN COMPLETE
613                  * chunk, the receiver should silently discard the packet
614                  * and take no further action.
615                  */
616                 if (SCTP_CID_SHUTDOWN_COMPLETE == ch->type)
617                         goto discard;
618
619                 /* RFC 8.4, 7) If the packet contains a "Stale cookie" ERROR
620                  * or a COOKIE ACK the SCTP Packet should be silently
621                  * discarded.
622                  */
623                 if (SCTP_CID_COOKIE_ACK == ch->type)
624                         goto discard;
625
626                 if (SCTP_CID_ERROR == ch->type) {
627                         sctp_walk_errors(err, ch) {
628                                 if (SCTP_ERROR_STALE_COOKIE == err->cause)
629                                         goto discard;
630                         }
631                 }
632
633                 ch = (sctp_chunkhdr_t *) ch_end;
634         } while (ch_end < skb_tail_pointer(skb));
635
636         return 0;
637
638 discard:
639         return 1;
640 }
641
642 /* Insert endpoint into the hash table.  */
643 static void __sctp_hash_endpoint(struct sctp_endpoint *ep)
644 {
645         struct sctp_ep_common **epp;
646         struct sctp_ep_common *epb;
647         struct sctp_hashbucket *head;
648
649         epb = &ep->base;
650
651         epb->hashent = sctp_ep_hashfn(epb->bind_addr.port);
652         head = &sctp_ep_hashtable[epb->hashent];
653
654         sctp_write_lock(&head->lock);
655         epp = &head->chain;
656         epb->next = *epp;
657         if (epb->next)
658                 (*epp)->pprev = &epb->next;
659         *epp = epb;
660         epb->pprev = epp;
661         sctp_write_unlock(&head->lock);
662 }
663
664 /* Add an endpoint to the hash. Local BH-safe. */
665 void sctp_hash_endpoint(struct sctp_endpoint *ep)
666 {
667         sctp_local_bh_disable();
668         __sctp_hash_endpoint(ep);
669         sctp_local_bh_enable();
670 }
671
672 /* Remove endpoint from the hash table.  */
673 static void __sctp_unhash_endpoint(struct sctp_endpoint *ep)
674 {
675         struct sctp_hashbucket *head;
676         struct sctp_ep_common *epb;
677
678         epb = &ep->base;
679
680         epb->hashent = sctp_ep_hashfn(epb->bind_addr.port);
681
682         head = &sctp_ep_hashtable[epb->hashent];
683
684         sctp_write_lock(&head->lock);
685
686         if (epb->pprev) {
687                 if (epb->next)
688                         epb->next->pprev = epb->pprev;
689                 *epb->pprev = epb->next;
690                 epb->pprev = NULL;
691         }
692
693         sctp_write_unlock(&head->lock);
694 }
695
696 /* Remove endpoint from the hash.  Local BH-safe. */
697 void sctp_unhash_endpoint(struct sctp_endpoint *ep)
698 {
699         sctp_local_bh_disable();
700         __sctp_unhash_endpoint(ep);
701         sctp_local_bh_enable();
702 }
703
704 /* Look up an endpoint. */
705 static struct sctp_endpoint *__sctp_rcv_lookup_endpoint(const union sctp_addr *laddr)
706 {
707         struct sctp_hashbucket *head;
708         struct sctp_ep_common *epb;
709         struct sctp_endpoint *ep;
710         int hash;
711
712         hash = sctp_ep_hashfn(ntohs(laddr->v4.sin_port));
713         head = &sctp_ep_hashtable[hash];
714         read_lock(&head->lock);
715         for (epb = head->chain; epb; epb = epb->next) {
716                 ep = sctp_ep(epb);
717                 if (sctp_endpoint_is_match(ep, laddr))
718                         goto hit;
719         }
720
721         ep = sctp_sk((sctp_get_ctl_sock()))->ep;
722         epb = &ep->base;
723
724 hit:
725         sctp_endpoint_hold(ep);
726         read_unlock(&head->lock);
727         return ep;
728 }
729
730 /* Insert association into the hash table.  */
731 static void __sctp_hash_established(struct sctp_association *asoc)
732 {
733         struct sctp_ep_common **epp;
734         struct sctp_ep_common *epb;
735         struct sctp_hashbucket *head;
736
737         epb = &asoc->base;
738
739         /* Calculate which chain this entry will belong to. */
740         epb->hashent = sctp_assoc_hashfn(epb->bind_addr.port, asoc->peer.port);
741
742         head = &sctp_assoc_hashtable[epb->hashent];
743
744         sctp_write_lock(&head->lock);
745         epp = &head->chain;
746         epb->next = *epp;
747         if (epb->next)
748                 (*epp)->pprev = &epb->next;
749         *epp = epb;
750         epb->pprev = epp;
751         sctp_write_unlock(&head->lock);
752 }
753
754 /* Add an association to the hash. Local BH-safe. */
755 void sctp_hash_established(struct sctp_association *asoc)
756 {
757         if (asoc->temp)
758                 return;
759
760         sctp_local_bh_disable();
761         __sctp_hash_established(asoc);
762         sctp_local_bh_enable();
763 }
764
765 /* Remove association from the hash table.  */
766 static void __sctp_unhash_established(struct sctp_association *asoc)
767 {
768         struct sctp_hashbucket *head;
769         struct sctp_ep_common *epb;
770
771         epb = &asoc->base;
772
773         epb->hashent = sctp_assoc_hashfn(epb->bind_addr.port,
774                                          asoc->peer.port);
775
776         head = &sctp_assoc_hashtable[epb->hashent];
777
778         sctp_write_lock(&head->lock);
779
780         if (epb->pprev) {
781                 if (epb->next)
782                         epb->next->pprev = epb->pprev;
783                 *epb->pprev = epb->next;
784                 epb->pprev = NULL;
785         }
786
787         sctp_write_unlock(&head->lock);
788 }
789
790 /* Remove association from the hash table.  Local BH-safe. */
791 void sctp_unhash_established(struct sctp_association *asoc)
792 {
793         if (asoc->temp)
794                 return;
795
796         sctp_local_bh_disable();
797         __sctp_unhash_established(asoc);
798         sctp_local_bh_enable();
799 }
800
801 /* Look up an association. */
802 static struct sctp_association *__sctp_lookup_association(
803                                         const union sctp_addr *local,
804                                         const union sctp_addr *peer,
805                                         struct sctp_transport **pt)
806 {
807         struct sctp_hashbucket *head;
808         struct sctp_ep_common *epb;
809         struct sctp_association *asoc;
810         struct sctp_transport *transport;
811         int hash;
812
813         /* Optimize here for direct hit, only listening connections can
814          * have wildcards anyways.
815          */
816         hash = sctp_assoc_hashfn(ntohs(local->v4.sin_port), ntohs(peer->v4.sin_port));
817         head = &sctp_assoc_hashtable[hash];
818         read_lock(&head->lock);
819         for (epb = head->chain; epb; epb = epb->next) {
820                 asoc = sctp_assoc(epb);
821                 transport = sctp_assoc_is_match(asoc, local, peer);
822                 if (transport)
823                         goto hit;
824         }
825
826         read_unlock(&head->lock);
827
828         return NULL;
829
830 hit:
831         *pt = transport;
832         sctp_association_hold(asoc);
833         read_unlock(&head->lock);
834         return asoc;
835 }
836
837 /* Look up an association. BH-safe. */
838 SCTP_STATIC
839 struct sctp_association *sctp_lookup_association(const union sctp_addr *laddr,
840                                                  const union sctp_addr *paddr,
841                                             struct sctp_transport **transportp)
842 {
843         struct sctp_association *asoc;
844
845         sctp_local_bh_disable();
846         asoc = __sctp_lookup_association(laddr, paddr, transportp);
847         sctp_local_bh_enable();
848
849         return asoc;
850 }
851
852 /* Is there an association matching the given local and peer addresses? */
853 int sctp_has_association(const union sctp_addr *laddr,
854                          const union sctp_addr *paddr)
855 {
856         struct sctp_association *asoc;
857         struct sctp_transport *transport;
858
859         if ((asoc = sctp_lookup_association(laddr, paddr, &transport))) {
860                 sctp_association_put(asoc);
861                 return 1;
862         }
863
864         return 0;
865 }
866
867 /*
868  * SCTP Implementors Guide, 2.18 Handling of address
869  * parameters within the INIT or INIT-ACK.
870  *
871  * D) When searching for a matching TCB upon reception of an INIT
872  *    or INIT-ACK chunk the receiver SHOULD use not only the
873  *    source address of the packet (containing the INIT or
874  *    INIT-ACK) but the receiver SHOULD also use all valid
875  *    address parameters contained within the chunk.
876  *
877  * 2.18.3 Solution description
878  *
879  * This new text clearly specifies to an implementor the need
880  * to look within the INIT or INIT-ACK. Any implementation that
881  * does not do this, may not be able to establish associations
882  * in certain circumstances.
883  *
884  */
885 static struct sctp_association *__sctp_rcv_init_lookup(struct sk_buff *skb,
886         const union sctp_addr *laddr, struct sctp_transport **transportp)
887 {
888         struct sctp_association *asoc;
889         union sctp_addr addr;
890         union sctp_addr *paddr = &addr;
891         struct sctphdr *sh = sctp_hdr(skb);
892         sctp_chunkhdr_t *ch;
893         union sctp_params params;
894         sctp_init_chunk_t *init;
895         struct sctp_transport *transport;
896         struct sctp_af *af;
897
898         ch = (sctp_chunkhdr_t *) skb->data;
899
900         /* If this is INIT/INIT-ACK look inside the chunk too. */
901         switch (ch->type) {
902         case SCTP_CID_INIT:
903         case SCTP_CID_INIT_ACK:
904                 break;
905         default:
906                 return NULL;
907         }
908
909         /* The code below will attempt to walk the chunk and extract
910          * parameter information.  Before we do that, we need to verify
911          * that the chunk length doesn't cause overflow.  Otherwise, we'll
912          * walk off the end.
913          */
914         if (WORD_ROUND(ntohs(ch->length)) > skb->len)
915                 return NULL;
916
917         /*
918          * This code will NOT touch anything inside the chunk--it is
919          * strictly READ-ONLY.
920          *
921          * RFC 2960 3  SCTP packet Format
922          *
923          * Multiple chunks can be bundled into one SCTP packet up to
924          * the MTU size, except for the INIT, INIT ACK, and SHUTDOWN
925          * COMPLETE chunks.  These chunks MUST NOT be bundled with any
926          * other chunk in a packet.  See Section 6.10 for more details
927          * on chunk bundling.
928          */
929
930         /* Find the start of the TLVs and the end of the chunk.  This is
931          * the region we search for address parameters.
932          */
933         init = (sctp_init_chunk_t *)skb->data;
934
935         /* Walk the parameters looking for embedded addresses. */
936         sctp_walk_params(params, init, init_hdr.params) {
937
938                 /* Note: Ignoring hostname addresses. */
939                 af = sctp_get_af_specific(param_type2af(params.p->type));
940                 if (!af)
941                         continue;
942
943                 af->from_addr_param(paddr, params.addr, sh->source, 0);
944
945                 asoc = __sctp_lookup_association(laddr, paddr, &transport);
946                 if (asoc)
947                         return asoc;
948         }
949
950         return NULL;
951 }
952
953 /* Lookup an association for an inbound skb. */
954 static struct sctp_association *__sctp_rcv_lookup(struct sk_buff *skb,
955                                       const union sctp_addr *paddr,
956                                       const union sctp_addr *laddr,
957                                       struct sctp_transport **transportp)
958 {
959         struct sctp_association *asoc;
960
961         asoc = __sctp_lookup_association(laddr, paddr, transportp);
962
963         /* Further lookup for INIT/INIT-ACK packets.
964          * SCTP Implementors Guide, 2.18 Handling of address
965          * parameters within the INIT or INIT-ACK.
966          */
967         if (!asoc)
968                 asoc = __sctp_rcv_init_lookup(skb, laddr, transportp);
969
970         return asoc;
971 }