1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49#include <linux/module.h>
50#include <linux/init.h>
51#include <linux/netdevice.h>
52#include <linux/inetdevice.h>
53#include <linux/seq_file.h>
54#include <linux/bootmem.h>
55#include <net/net_namespace.h>
56#include <net/protocol.h>
57#include <net/ip.h>
58#include <net/ipv6.h>
59#include <net/route.h>
60#include <net/sctp/sctp.h>
61#include <net/addrconf.h>
62#include <net/inet_common.h>
63#include <net/inet_ecn.h>
64
65
66struct sctp_globals sctp_globals __read_mostly;
67struct proc_dir_entry *proc_net_sctp;
68DEFINE_SNMP_STAT(struct sctp_mib, sctp_statistics) __read_mostly;
69
70struct idr sctp_assocs_id;
71DEFINE_SPINLOCK(sctp_assocs_id_lock);
72
73
74
75
76
77static struct socket *sctp_ctl_socket;
78
79static struct sctp_pf *sctp_pf_inet6_specific;
80static struct sctp_pf *sctp_pf_inet_specific;
81static struct sctp_af *sctp_af_v4_specific;
82static struct sctp_af *sctp_af_v6_specific;
83
84struct kmem_cache *sctp_chunk_cachep __read_mostly;
85struct kmem_cache *sctp_bucket_cachep __read_mostly;
86
87int sysctl_sctp_mem[3];
88int sysctl_sctp_rmem[3];
89int sysctl_sctp_wmem[3];
90
91
92struct sock *sctp_get_ctl_sock(void)
93{
94 return sctp_ctl_socket->sk;
95}
96
97
98static __init int sctp_proc_init(void)
99{
100 if (!proc_net_sctp) {
101 struct proc_dir_entry *ent;
102 ent = proc_mkdir("sctp", init_net.proc_net);
103 if (ent) {
104 ent->owner = THIS_MODULE;
105 proc_net_sctp = ent;
106 } else
107 goto out_nomem;
108 }
109
110 if (sctp_snmp_proc_init())
111 goto out_nomem;
112 if (sctp_eps_proc_init())
113 goto out_nomem;
114 if (sctp_assocs_proc_init())
115 goto out_nomem;
116
117 return 0;
118
119out_nomem:
120 return -ENOMEM;
121}
122
123
124
125
126
127static void sctp_proc_exit(void)
128{
129 sctp_snmp_proc_exit();
130 sctp_eps_proc_exit();
131 sctp_assocs_proc_exit();
132
133 if (proc_net_sctp) {
134 proc_net_sctp = NULL;
135 remove_proc_entry("sctp", init_net.proc_net);
136 }
137}
138
139
140
141
142static void sctp_v4_copy_addrlist(struct list_head *addrlist,
143 struct net_device *dev)
144{
145 struct in_device *in_dev;
146 struct in_ifaddr *ifa;
147 struct sctp_sockaddr_entry *addr;
148
149 rcu_read_lock();
150 if ((in_dev = __in_dev_get_rcu(dev)) == NULL) {
151 rcu_read_unlock();
152 return;
153 }
154
155 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
156
157 addr = t_new(struct sctp_sockaddr_entry, GFP_ATOMIC);
158 if (addr) {
159 addr->a.v4.sin_family = AF_INET;
160 addr->a.v4.sin_port = 0;
161 addr->a.v4.sin_addr.s_addr = ifa->ifa_local;
162 addr->valid = 1;
163 INIT_LIST_HEAD(&addr->list);
164 INIT_RCU_HEAD(&addr->rcu);
165 list_add_tail(&addr->list, addrlist);
166 }
167 }
168
169 rcu_read_unlock();
170}
171
172
173
174
175static void sctp_get_local_addr_list(void)
176{
177 struct net_device *dev;
178 struct list_head *pos;
179 struct sctp_af *af;
180
181 read_lock(&dev_base_lock);
182 for_each_netdev(&init_net, dev) {
183 __list_for_each(pos, &sctp_address_families) {
184 af = list_entry(pos, struct sctp_af, list);
185 af->copy_addrlist(&sctp_local_addr_list, dev);
186 }
187 }
188 read_unlock(&dev_base_lock);
189}
190
191
192static void sctp_free_local_addr_list(void)
193{
194 struct sctp_sockaddr_entry *addr;
195 struct list_head *pos, *temp;
196
197 list_for_each_safe(pos, temp, &sctp_local_addr_list) {
198 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
199 list_del(pos);
200 kfree(addr);
201 }
202}
203
204void sctp_local_addr_free(struct rcu_head *head)
205{
206 struct sctp_sockaddr_entry *e = container_of(head,
207 struct sctp_sockaddr_entry, rcu);
208 kfree(e);
209}
210
211
212int sctp_copy_local_addr_list(struct sctp_bind_addr *bp, sctp_scope_t scope,
213 gfp_t gfp, int copy_flags)
214{
215 struct sctp_sockaddr_entry *addr;
216 int error = 0;
217
218 rcu_read_lock();
219 list_for_each_entry_rcu(addr, &sctp_local_addr_list, list) {
220 if (!addr->valid)
221 continue;
222 if (sctp_in_scope(&addr->a, scope)) {
223
224
225
226
227 if ((((AF_INET == addr->a.sa.sa_family) &&
228 (copy_flags & SCTP_ADDR4_PEERSUPP))) ||
229 (((AF_INET6 == addr->a.sa.sa_family) &&
230 (copy_flags & SCTP_ADDR6_ALLOWED) &&
231 (copy_flags & SCTP_ADDR6_PEERSUPP)))) {
232 error = sctp_add_bind_addr(bp, &addr->a,
233 SCTP_ADDR_SRC, GFP_ATOMIC);
234 if (error)
235 goto end_copy;
236 }
237 }
238 }
239
240end_copy:
241 rcu_read_unlock();
242 return error;
243}
244
245
246static void sctp_v4_from_skb(union sctp_addr *addr, struct sk_buff *skb,
247 int is_saddr)
248{
249 void *from;
250 __be16 *port;
251 struct sctphdr *sh;
252
253 port = &addr->v4.sin_port;
254 addr->v4.sin_family = AF_INET;
255
256 sh = sctp_hdr(skb);
257 if (is_saddr) {
258 *port = sh->source;
259 from = &ip_hdr(skb)->saddr;
260 } else {
261 *port = sh->dest;
262 from = &ip_hdr(skb)->daddr;
263 }
264 memcpy(&addr->v4.sin_addr.s_addr, from, sizeof(struct in_addr));
265}
266
267
268static void sctp_v4_from_sk(union sctp_addr *addr, struct sock *sk)
269{
270 addr->v4.sin_family = AF_INET;
271 addr->v4.sin_port = 0;
272 addr->v4.sin_addr.s_addr = inet_sk(sk)->rcv_saddr;
273}
274
275
276static void sctp_v4_to_sk_saddr(union sctp_addr *addr, struct sock *sk)
277{
278 inet_sk(sk)->rcv_saddr = addr->v4.sin_addr.s_addr;
279}
280
281
282static void sctp_v4_to_sk_daddr(union sctp_addr *addr, struct sock *sk)
283{
284 inet_sk(sk)->daddr = addr->v4.sin_addr.s_addr;
285}
286
287
288static void sctp_v4_from_addr_param(union sctp_addr *addr,
289 union sctp_addr_param *param,
290 __be16 port, int iif)
291{
292 addr->v4.sin_family = AF_INET;
293 addr->v4.sin_port = port;
294 addr->v4.sin_addr.s_addr = param->v4.addr.s_addr;
295}
296
297
298
299
300static int sctp_v4_to_addr_param(const union sctp_addr *addr,
301 union sctp_addr_param *param)
302{
303 int length = sizeof(sctp_ipv4addr_param_t);
304
305 param->v4.param_hdr.type = SCTP_PARAM_IPV4_ADDRESS;
306 param->v4.param_hdr.length = htons(length);
307 param->v4.addr.s_addr = addr->v4.sin_addr.s_addr;
308
309 return length;
310}
311
312
313static void sctp_v4_dst_saddr(union sctp_addr *saddr, struct dst_entry *dst,
314 __be16 port)
315{
316 struct rtable *rt = (struct rtable *)dst;
317 saddr->v4.sin_family = AF_INET;
318 saddr->v4.sin_port = port;
319 saddr->v4.sin_addr.s_addr = rt->rt_src;
320}
321
322
323static int sctp_v4_cmp_addr(const union sctp_addr *addr1,
324 const union sctp_addr *addr2)
325{
326 if (addr1->sa.sa_family != addr2->sa.sa_family)
327 return 0;
328 if (addr1->v4.sin_port != addr2->v4.sin_port)
329 return 0;
330 if (addr1->v4.sin_addr.s_addr != addr2->v4.sin_addr.s_addr)
331 return 0;
332
333 return 1;
334}
335
336
337static void sctp_v4_inaddr_any(union sctp_addr *addr, __be16 port)
338{
339 addr->v4.sin_family = AF_INET;
340 addr->v4.sin_addr.s_addr = htonl(INADDR_ANY);
341 addr->v4.sin_port = port;
342}
343
344
345static int sctp_v4_is_any(const union sctp_addr *addr)
346{
347 return htonl(INADDR_ANY) == addr->v4.sin_addr.s_addr;
348}
349
350
351
352
353
354
355
356
357static int sctp_v4_addr_valid(union sctp_addr *addr,
358 struct sctp_sock *sp,
359 const struct sk_buff *skb)
360{
361
362 if (IS_IPV4_UNUSABLE_ADDRESS(addr->v4.sin_addr.s_addr))
363 return 0;
364
365
366 if (skb && ((struct rtable *)skb->dst)->rt_flags & RTCF_BROADCAST)
367 return 0;
368
369 return 1;
370}
371
372
373static int sctp_v4_available(union sctp_addr *addr, struct sctp_sock *sp)
374{
375 int ret = inet_addr_type(&init_net, addr->v4.sin_addr.s_addr);
376
377
378 if (addr->v4.sin_addr.s_addr != htonl(INADDR_ANY) &&
379 ret != RTN_LOCAL &&
380 !sp->inet.freebind &&
381 !sysctl_ip_nonlocal_bind)
382 return 0;
383
384 return 1;
385}
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401static sctp_scope_t sctp_v4_scope(union sctp_addr *addr)
402{
403 sctp_scope_t retval;
404
405
406
407
408
409
410
411 if (IS_IPV4_UNUSABLE_ADDRESS(addr->v4.sin_addr.s_addr)) {
412 retval = SCTP_SCOPE_UNUSABLE;
413 } else if (ipv4_is_loopback(addr->v4.sin_addr.s_addr)) {
414 retval = SCTP_SCOPE_LOOPBACK;
415 } else if (ipv4_is_linklocal_169(addr->v4.sin_addr.s_addr)) {
416 retval = SCTP_SCOPE_LINK;
417 } else if (ipv4_is_private_10(addr->v4.sin_addr.s_addr) ||
418 ipv4_is_private_172(addr->v4.sin_addr.s_addr) ||
419 ipv4_is_private_192(addr->v4.sin_addr.s_addr)) {
420 retval = SCTP_SCOPE_PRIVATE;
421 } else {
422 retval = SCTP_SCOPE_GLOBAL;
423 }
424
425 return retval;
426}
427
428
429
430
431
432static struct dst_entry *sctp_v4_get_dst(struct sctp_association *asoc,
433 union sctp_addr *daddr,
434 union sctp_addr *saddr)
435{
436 struct rtable *rt;
437 struct flowi fl;
438 struct sctp_bind_addr *bp;
439 struct sctp_sockaddr_entry *laddr;
440 struct dst_entry *dst = NULL;
441 union sctp_addr dst_saddr;
442
443 memset(&fl, 0x0, sizeof(struct flowi));
444 fl.fl4_dst = daddr->v4.sin_addr.s_addr;
445 fl.proto = IPPROTO_SCTP;
446 if (asoc) {
447 fl.fl4_tos = RT_CONN_FLAGS(asoc->base.sk);
448 fl.oif = asoc->base.sk->sk_bound_dev_if;
449 }
450 if (saddr)
451 fl.fl4_src = saddr->v4.sin_addr.s_addr;
452
453 SCTP_DEBUG_PRINTK("%s: DST:%u.%u.%u.%u, SRC:%u.%u.%u.%u - ",
454 __FUNCTION__, NIPQUAD(fl.fl4_dst),
455 NIPQUAD(fl.fl4_src));
456
457 if (!ip_route_output_key(&init_net, &rt, &fl)) {
458 dst = &rt->u.dst;
459 }
460
461
462
463
464 if (!asoc || saddr)
465 goto out;
466
467 bp = &asoc->base.bind_addr;
468
469 if (dst) {
470
471
472
473 rcu_read_lock();
474 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
475 if (!laddr->valid || (laddr->state != SCTP_ADDR_SRC))
476 continue;
477 sctp_v4_dst_saddr(&dst_saddr, dst, htons(bp->port));
478 if (sctp_v4_cmp_addr(&dst_saddr, &laddr->a))
479 goto out_unlock;
480 }
481 rcu_read_unlock();
482
483
484
485
486 dst_release(dst);
487 dst = NULL;
488 }
489
490
491
492
493 rcu_read_lock();
494 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
495 if (!laddr->valid)
496 continue;
497 if ((laddr->state == SCTP_ADDR_SRC) &&
498 (AF_INET == laddr->a.sa.sa_family)) {
499 fl.fl4_src = laddr->a.v4.sin_addr.s_addr;
500 if (!ip_route_output_key(&init_net, &rt, &fl)) {
501 dst = &rt->u.dst;
502 goto out_unlock;
503 }
504 }
505 }
506
507out_unlock:
508 rcu_read_unlock();
509out:
510 if (dst)
511 SCTP_DEBUG_PRINTK("rt_dst:%u.%u.%u.%u, rt_src:%u.%u.%u.%u\n",
512 NIPQUAD(rt->rt_dst), NIPQUAD(rt->rt_src));
513 else
514 SCTP_DEBUG_PRINTK("NO ROUTE\n");
515
516 return dst;
517}
518
519
520
521
522static void sctp_v4_get_saddr(struct sctp_association *asoc,
523 struct dst_entry *dst,
524 union sctp_addr *daddr,
525 union sctp_addr *saddr)
526{
527 struct rtable *rt = (struct rtable *)dst;
528
529 if (!asoc)
530 return;
531
532 if (rt) {
533 saddr->v4.sin_family = AF_INET;
534 saddr->v4.sin_port = htons(asoc->base.bind_addr.port);
535 saddr->v4.sin_addr.s_addr = rt->rt_src;
536 }
537}
538
539
540static int sctp_v4_skb_iif(const struct sk_buff *skb)
541{
542 return ((struct rtable *)skb->dst)->rt_iif;
543}
544
545
546static int sctp_v4_is_ce(const struct sk_buff *skb)
547{
548 return INET_ECN_is_ce(ip_hdr(skb)->tos);
549}
550
551
552static struct sock *sctp_v4_create_accept_sk(struct sock *sk,
553 struct sctp_association *asoc)
554{
555 struct inet_sock *inet = inet_sk(sk);
556 struct inet_sock *newinet;
557 struct sock *newsk = sk_alloc(sk->sk_net, PF_INET, GFP_KERNEL,
558 sk->sk_prot);
559
560 if (!newsk)
561 goto out;
562
563 sock_init_data(NULL, newsk);
564
565 newsk->sk_type = SOCK_STREAM;
566
567 newsk->sk_no_check = sk->sk_no_check;
568 newsk->sk_reuse = sk->sk_reuse;
569 newsk->sk_shutdown = sk->sk_shutdown;
570
571 newsk->sk_destruct = inet_sock_destruct;
572 newsk->sk_family = PF_INET;
573 newsk->sk_protocol = IPPROTO_SCTP;
574 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
575 sock_reset_flag(newsk, SOCK_ZAPPED);
576
577 newinet = inet_sk(newsk);
578
579
580
581
582 newinet->sport = inet->sport;
583 newinet->saddr = inet->saddr;
584 newinet->rcv_saddr = inet->rcv_saddr;
585 newinet->dport = htons(asoc->peer.port);
586 newinet->daddr = asoc->peer.primary_addr.v4.sin_addr.s_addr;
587 newinet->pmtudisc = inet->pmtudisc;
588 newinet->id = asoc->next_tsn ^ jiffies;
589
590 newinet->uc_ttl = -1;
591 newinet->mc_loop = 1;
592 newinet->mc_ttl = 1;
593 newinet->mc_index = 0;
594 newinet->mc_list = NULL;
595
596 sk_refcnt_debug_inc(newsk);
597
598 if (newsk->sk_prot->init(newsk)) {
599 sk_common_release(newsk);
600 newsk = NULL;
601 }
602
603out:
604 return newsk;
605}
606
607
608static void sctp_v4_addr_v4map(struct sctp_sock *sp, union sctp_addr *addr)
609{
610
611}
612
613
614static void sctp_v4_seq_dump_addr(struct seq_file *seq, union sctp_addr *addr)
615{
616 seq_printf(seq, "%d.%d.%d.%d ", NIPQUAD(addr->v4.sin_addr));
617}
618
619
620
621
622
623
624
625static int sctp_inetaddr_event(struct notifier_block *this, unsigned long ev,
626 void *ptr)
627{
628 struct in_ifaddr *ifa = (struct in_ifaddr *)ptr;
629 struct sctp_sockaddr_entry *addr = NULL;
630 struct sctp_sockaddr_entry *temp;
631 int found = 0;
632
633 switch (ev) {
634 case NETDEV_UP:
635 addr = kmalloc(sizeof(struct sctp_sockaddr_entry), GFP_ATOMIC);
636 if (addr) {
637 addr->a.v4.sin_family = AF_INET;
638 addr->a.v4.sin_port = 0;
639 addr->a.v4.sin_addr.s_addr = ifa->ifa_local;
640 addr->valid = 1;
641 spin_lock_bh(&sctp_local_addr_lock);
642 list_add_tail_rcu(&addr->list, &sctp_local_addr_list);
643 spin_unlock_bh(&sctp_local_addr_lock);
644 }
645 break;
646 case NETDEV_DOWN:
647 spin_lock_bh(&sctp_local_addr_lock);
648 list_for_each_entry_safe(addr, temp,
649 &sctp_local_addr_list, list) {
650 if (addr->a.sa.sa_family == AF_INET &&
651 addr->a.v4.sin_addr.s_addr ==
652 ifa->ifa_local) {
653 found = 1;
654 addr->valid = 0;
655 list_del_rcu(&addr->list);
656 break;
657 }
658 }
659 spin_unlock_bh(&sctp_local_addr_lock);
660 if (found)
661 call_rcu(&addr->rcu, sctp_local_addr_free);
662 break;
663 }
664
665 return NOTIFY_DONE;
666}
667
668
669
670
671
672static int sctp_ctl_sock_init(void)
673{
674 int err;
675 sa_family_t family;
676
677 if (sctp_get_pf_specific(PF_INET6))
678 family = PF_INET6;
679 else
680 family = PF_INET;
681
682 err = sock_create_kern(family, SOCK_SEQPACKET, IPPROTO_SCTP,
683 &sctp_ctl_socket);
684 if (err < 0) {
685 printk(KERN_ERR
686 "SCTP: Failed to create the SCTP control socket.\n");
687 return err;
688 }
689 sctp_ctl_socket->sk->sk_allocation = GFP_ATOMIC;
690 inet_sk(sctp_ctl_socket->sk)->uc_ttl = -1;
691
692 return 0;
693}
694
695
696int sctp_register_af(struct sctp_af *af)
697{
698 switch (af->sa_family) {
699 case AF_INET:
700 if (sctp_af_v4_specific)
701 return 0;
702 sctp_af_v4_specific = af;
703 break;
704 case AF_INET6:
705 if (sctp_af_v6_specific)
706 return 0;
707 sctp_af_v6_specific = af;
708 break;
709 default:
710 return 0;
711 }
712
713 INIT_LIST_HEAD(&af->list);
714 list_add_tail(&af->list, &sctp_address_families);
715 return 1;
716}
717
718
719
720
721struct sctp_af *sctp_get_af_specific(sa_family_t family)
722{
723 switch (family) {
724 case AF_INET:
725 return sctp_af_v4_specific;
726 case AF_INET6:
727 return sctp_af_v6_specific;
728 default:
729 return NULL;
730 }
731}
732
733
734static void sctp_inet_msgname(char *msgname, int *addr_len)
735{
736 struct sockaddr_in *sin;
737
738 sin = (struct sockaddr_in *)msgname;
739 *addr_len = sizeof(struct sockaddr_in);
740 sin->sin_family = AF_INET;
741 memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
742}
743
744
745static void sctp_inet_event_msgname(struct sctp_ulpevent *event, char *msgname,
746 int *addr_len)
747{
748 struct sockaddr_in *sin, *sinfrom;
749
750 if (msgname) {
751 struct sctp_association *asoc;
752
753 asoc = event->asoc;
754 sctp_inet_msgname(msgname, addr_len);
755 sin = (struct sockaddr_in *)msgname;
756 sinfrom = &asoc->peer.primary_addr.v4;
757 sin->sin_port = htons(asoc->peer.port);
758 sin->sin_addr.s_addr = sinfrom->sin_addr.s_addr;
759 }
760}
761
762
763static void sctp_inet_skb_msgname(struct sk_buff *skb, char *msgname, int *len)
764{
765 if (msgname) {
766 struct sctphdr *sh = sctp_hdr(skb);
767 struct sockaddr_in *sin = (struct sockaddr_in *)msgname;
768
769 sctp_inet_msgname(msgname, len);
770 sin->sin_port = sh->source;
771 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
772 }
773}
774
775
776static int sctp_inet_af_supported(sa_family_t family, struct sctp_sock *sp)
777{
778
779 return (AF_INET == family);
780}
781
782
783static int sctp_inet_cmp_addr(const union sctp_addr *addr1,
784 const union sctp_addr *addr2,
785 struct sctp_sock *opt)
786{
787
788 if (addr1->sa.sa_family != addr2->sa.sa_family)
789 return 0;
790 if (htonl(INADDR_ANY) == addr1->v4.sin_addr.s_addr ||
791 htonl(INADDR_ANY) == addr2->v4.sin_addr.s_addr)
792 return 1;
793 if (addr1->v4.sin_addr.s_addr == addr2->v4.sin_addr.s_addr)
794 return 1;
795
796 return 0;
797}
798
799
800
801
802static int sctp_inet_bind_verify(struct sctp_sock *opt, union sctp_addr *addr)
803{
804 return sctp_v4_available(addr, opt);
805}
806
807
808
809
810static int sctp_inet_send_verify(struct sctp_sock *opt, union sctp_addr *addr)
811{
812 return 1;
813}
814
815
816
817
818static int sctp_inet_supported_addrs(const struct sctp_sock *opt,
819 __be16 *types)
820{
821 types[0] = SCTP_PARAM_IPV4_ADDRESS;
822 return 1;
823}
824
825
826static inline int sctp_v4_xmit(struct sk_buff *skb,
827 struct sctp_transport *transport, int ipfragok)
828{
829 SCTP_DEBUG_PRINTK("%s: skb:%p, len:%d, "
830 "src:%u.%u.%u.%u, dst:%u.%u.%u.%u\n",
831 __FUNCTION__, skb, skb->len,
832 NIPQUAD(((struct rtable *)skb->dst)->rt_src),
833 NIPQUAD(((struct rtable *)skb->dst)->rt_dst));
834
835 SCTP_INC_STATS(SCTP_MIB_OUTSCTPPACKS);
836 return ip_queue_xmit(skb, ipfragok);
837}
838
839static struct sctp_af sctp_af_inet;
840
841static struct sctp_pf sctp_pf_inet = {
842 .event_msgname = sctp_inet_event_msgname,
843 .skb_msgname = sctp_inet_skb_msgname,
844 .af_supported = sctp_inet_af_supported,
845 .cmp_addr = sctp_inet_cmp_addr,
846 .bind_verify = sctp_inet_bind_verify,
847 .send_verify = sctp_inet_send_verify,
848 .supported_addrs = sctp_inet_supported_addrs,
849 .create_accept_sk = sctp_v4_create_accept_sk,
850 .addr_v4map = sctp_v4_addr_v4map,
851 .af = &sctp_af_inet
852};
853
854
855static struct notifier_block sctp_inetaddr_notifier = {
856 .notifier_call = sctp_inetaddr_event,
857};
858
859
860static const struct proto_ops inet_seqpacket_ops = {
861 .family = PF_INET,
862 .owner = THIS_MODULE,
863 .release = inet_release,
864 .bind = inet_bind,
865 .connect = inet_dgram_connect,
866 .socketpair = sock_no_socketpair,
867 .accept = inet_accept,
868 .getname = inet_getname,
869 .poll = sctp_poll,
870 .ioctl = inet_ioctl,
871 .listen = sctp_inet_listen,
872 .shutdown = inet_shutdown,
873 .setsockopt = sock_common_setsockopt,
874 .getsockopt = sock_common_getsockopt,
875 .sendmsg = inet_sendmsg,
876 .recvmsg = sock_common_recvmsg,
877 .mmap = sock_no_mmap,
878 .sendpage = sock_no_sendpage,
879#ifdef CONFIG_COMPAT
880 .compat_setsockopt = compat_sock_common_setsockopt,
881 .compat_getsockopt = compat_sock_common_getsockopt,
882#endif
883};
884
885
886static struct inet_protosw sctp_seqpacket_protosw = {
887 .type = SOCK_SEQPACKET,
888 .protocol = IPPROTO_SCTP,
889 .prot = &sctp_prot,
890 .ops = &inet_seqpacket_ops,
891 .capability = -1,
892 .no_check = 0,
893 .flags = SCTP_PROTOSW_FLAG
894};
895static struct inet_protosw sctp_stream_protosw = {
896 .type = SOCK_STREAM,
897 .protocol = IPPROTO_SCTP,
898 .prot = &sctp_prot,
899 .ops = &inet_seqpacket_ops,
900 .capability = -1,
901 .no_check = 0,
902 .flags = SCTP_PROTOSW_FLAG
903};
904
905
906static struct net_protocol sctp_protocol = {
907 .handler = sctp_rcv,
908 .err_handler = sctp_v4_err,
909 .no_policy = 1,
910};
911
912
913static struct sctp_af sctp_af_inet = {
914 .sa_family = AF_INET,
915 .sctp_xmit = sctp_v4_xmit,
916 .setsockopt = ip_setsockopt,
917 .getsockopt = ip_getsockopt,
918 .get_dst = sctp_v4_get_dst,
919 .get_saddr = sctp_v4_get_saddr,
920 .copy_addrlist = sctp_v4_copy_addrlist,
921 .from_skb = sctp_v4_from_skb,
922 .from_sk = sctp_v4_from_sk,
923 .to_sk_saddr = sctp_v4_to_sk_saddr,
924 .to_sk_daddr = sctp_v4_to_sk_daddr,
925 .from_addr_param = sctp_v4_from_addr_param,
926 .to_addr_param = sctp_v4_to_addr_param,
927 .dst_saddr = sctp_v4_dst_saddr,
928 .cmp_addr = sctp_v4_cmp_addr,
929 .addr_valid = sctp_v4_addr_valid,
930 .inaddr_any = sctp_v4_inaddr_any,
931 .is_any = sctp_v4_is_any,
932 .available = sctp_v4_available,
933 .scope = sctp_v4_scope,
934 .skb_iif = sctp_v4_skb_iif,
935 .is_ce = sctp_v4_is_ce,
936 .seq_dump_addr = sctp_v4_seq_dump_addr,
937 .net_header_len = sizeof(struct iphdr),
938 .sockaddr_len = sizeof(struct sockaddr_in),
939#ifdef CONFIG_COMPAT
940 .compat_setsockopt = compat_ip_setsockopt,
941 .compat_getsockopt = compat_ip_getsockopt,
942#endif
943};
944
945struct sctp_pf *sctp_get_pf_specific(sa_family_t family) {
946
947 switch (family) {
948 case PF_INET:
949 return sctp_pf_inet_specific;
950 case PF_INET6:
951 return sctp_pf_inet6_specific;
952 default:
953 return NULL;
954 }
955}
956
957
958int sctp_register_pf(struct sctp_pf *pf, sa_family_t family)
959{
960 switch (family) {
961 case PF_INET:
962 if (sctp_pf_inet_specific)
963 return 0;
964 sctp_pf_inet_specific = pf;
965 break;
966 case PF_INET6:
967 if (sctp_pf_inet6_specific)
968 return 0;
969 sctp_pf_inet6_specific = pf;
970 break;
971 default:
972 return 0;
973 }
974 return 1;
975}
976
977static int __init init_sctp_mibs(void)
978{
979 sctp_statistics[0] = alloc_percpu(struct sctp_mib);
980 if (!sctp_statistics[0])
981 return -ENOMEM;
982 sctp_statistics[1] = alloc_percpu(struct sctp_mib);
983 if (!sctp_statistics[1]) {
984 free_percpu(sctp_statistics[0]);
985 return -ENOMEM;
986 }
987 return 0;
988
989}
990
991static void cleanup_sctp_mibs(void)
992{
993 free_percpu(sctp_statistics[0]);
994 free_percpu(sctp_statistics[1]);
995}
996
997static void sctp_v4_pf_init(void)
998{
999
1000 sctp_register_pf(&sctp_pf_inet, PF_INET);
1001 sctp_register_af(&sctp_af_inet);
1002}
1003
1004static void sctp_v4_pf_exit(void)
1005{
1006 list_del(&sctp_af_inet.list);
1007}
1008
1009static int sctp_v4_protosw_init(void)
1010{
1011 int rc;
1012
1013 rc = proto_register(&sctp_prot, 1);
1014 if (rc)
1015 return rc;
1016
1017
1018 inet_register_protosw(&sctp_seqpacket_protosw);
1019 inet_register_protosw(&sctp_stream_protosw);
1020
1021 return 0;
1022}
1023
1024static void sctp_v4_protosw_exit(void)
1025{
1026 inet_unregister_protosw(&sctp_stream_protosw);
1027 inet_unregister_protosw(&sctp_seqpacket_protosw);
1028 proto_unregister(&sctp_prot);
1029}
1030
1031static int sctp_v4_add_protocol(void)
1032{
1033
1034 register_inetaddr_notifier(&sctp_inetaddr_notifier);
1035
1036
1037 if (inet_add_protocol(&sctp_protocol, IPPROTO_SCTP) < 0)
1038 return -EAGAIN;
1039
1040 return 0;
1041}
1042
1043static void sctp_v4_del_protocol(void)
1044{
1045 inet_del_protocol(&sctp_protocol, IPPROTO_SCTP);
1046 unregister_inetaddr_notifier(&sctp_inetaddr_notifier);
1047}
1048
1049
1050SCTP_STATIC __init int sctp_init(void)
1051{
1052 int i;
1053 int status = -EINVAL;
1054 unsigned long goal;
1055 unsigned long limit;
1056 int max_share;
1057 int order;
1058
1059
1060 if (!sctp_sanity_check())
1061 goto out;
1062
1063
1064 status = -ENOBUFS;
1065 sctp_bucket_cachep = kmem_cache_create("sctp_bind_bucket",
1066 sizeof(struct sctp_bind_bucket),
1067 0, SLAB_HWCACHE_ALIGN,
1068 NULL);
1069 if (!sctp_bucket_cachep)
1070 goto out;
1071
1072 sctp_chunk_cachep = kmem_cache_create("sctp_chunk",
1073 sizeof(struct sctp_chunk),
1074 0, SLAB_HWCACHE_ALIGN,
1075 NULL);
1076 if (!sctp_chunk_cachep)
1077 goto err_chunk_cachep;
1078
1079
1080 status = init_sctp_mibs();
1081 if (status)
1082 goto err_init_mibs;
1083
1084
1085 status = sctp_proc_init();
1086 if (status)
1087 goto err_init_proc;
1088
1089
1090 sctp_dbg_objcnt_init();
1091
1092
1093
1094
1095
1096
1097 sctp_rto_initial = SCTP_RTO_INITIAL;
1098
1099 sctp_rto_min = SCTP_RTO_MIN;
1100
1101 sctp_rto_max = SCTP_RTO_MAX;
1102
1103 sctp_rto_alpha = SCTP_RTO_ALPHA;
1104
1105 sctp_rto_beta = SCTP_RTO_BETA;
1106
1107
1108 sctp_valid_cookie_life = SCTP_DEFAULT_COOKIE_LIFE;
1109
1110
1111 sctp_cookie_preserve_enable = 1;
1112
1113
1114 sctp_max_burst = SCTP_DEFAULT_MAX_BURST;
1115
1116
1117
1118
1119
1120 sctp_max_retrans_association = 10;
1121 sctp_max_retrans_path = 5;
1122 sctp_max_retrans_init = 8;
1123
1124
1125 sctp_sndbuf_policy = 0;
1126
1127
1128 sctp_rcvbuf_policy = 0;
1129
1130
1131 sctp_hb_interval = SCTP_DEFAULT_TIMEOUT_HEARTBEAT;
1132
1133
1134 sctp_sack_timeout = SCTP_DEFAULT_TIMEOUT_SACK;
1135
1136
1137
1138
1139 sctp_max_instreams = SCTP_DEFAULT_INSTREAMS;
1140 sctp_max_outstreams = SCTP_DEFAULT_OUTSTREAMS;
1141
1142
1143 idr_init(&sctp_assocs_id);
1144
1145
1146
1147
1148
1149
1150
1151 limit = min(num_physpages, 1UL<<(28-PAGE_SHIFT)) >> (20-PAGE_SHIFT);
1152 limit = (limit * (num_physpages >> (20-PAGE_SHIFT))) >> (PAGE_SHIFT-11);
1153 limit = max(limit, 128UL);
1154 sysctl_sctp_mem[0] = limit / 4 * 3;
1155 sysctl_sctp_mem[1] = limit;
1156 sysctl_sctp_mem[2] = sysctl_sctp_mem[0] * 2;
1157
1158
1159 limit = (sysctl_sctp_mem[1]) << (PAGE_SHIFT - 7);
1160 max_share = min(4UL*1024*1024, limit);
1161
1162 sysctl_sctp_rmem[0] = PAGE_SIZE;
1163 sysctl_sctp_rmem[1] = (1500 *(sizeof(struct sk_buff) + 1));
1164 sysctl_sctp_rmem[2] = max(sysctl_sctp_rmem[1], max_share);
1165
1166 sysctl_sctp_wmem[0] = SK_MEM_QUANTUM;
1167 sysctl_sctp_wmem[1] = 16*1024;
1168 sysctl_sctp_wmem[2] = max(64*1024, max_share);
1169
1170
1171
1172
1173 if (num_physpages >= (128 * 1024))
1174 goal = num_physpages >> (22 - PAGE_SHIFT);
1175 else
1176 goal = num_physpages >> (24 - PAGE_SHIFT);
1177
1178 for (order = 0; (1UL << order) < goal; order++)
1179 ;
1180
1181 do {
1182 sctp_assoc_hashsize = (1UL << order) * PAGE_SIZE /
1183 sizeof(struct sctp_hashbucket);
1184 if ((sctp_assoc_hashsize > (64 * 1024)) && order > 0)
1185 continue;
1186 sctp_assoc_hashtable = (struct sctp_hashbucket *)
1187 __get_free_pages(GFP_ATOMIC, order);
1188 } while (!sctp_assoc_hashtable && --order > 0);
1189 if (!sctp_assoc_hashtable) {
1190 printk(KERN_ERR "SCTP: Failed association hash alloc.\n");
1191 status = -ENOMEM;
1192 goto err_ahash_alloc;
1193 }
1194 for (i = 0; i < sctp_assoc_hashsize; i++) {
1195 rwlock_init(&sctp_assoc_hashtable[i].lock);
1196 INIT_HLIST_HEAD(&sctp_assoc_hashtable[i].chain);
1197 }
1198
1199
1200 sctp_ep_hashsize = 64;
1201 sctp_ep_hashtable = (struct sctp_hashbucket *)
1202 kmalloc(64 * sizeof(struct sctp_hashbucket), GFP_KERNEL);
1203 if (!sctp_ep_hashtable) {
1204 printk(KERN_ERR "SCTP: Failed endpoint_hash alloc.\n");
1205 status = -ENOMEM;
1206 goto err_ehash_alloc;
1207 }
1208 for (i = 0; i < sctp_ep_hashsize; i++) {
1209 rwlock_init(&sctp_ep_hashtable[i].lock);
1210 INIT_HLIST_HEAD(&sctp_ep_hashtable[i].chain);
1211 }
1212
1213
1214 do {
1215 sctp_port_hashsize = (1UL << order) * PAGE_SIZE /
1216 sizeof(struct sctp_bind_hashbucket);
1217 if ((sctp_port_hashsize > (64 * 1024)) && order > 0)
1218 continue;
1219 sctp_port_hashtable = (struct sctp_bind_hashbucket *)
1220 __get_free_pages(GFP_ATOMIC, order);
1221 } while (!sctp_port_hashtable && --order > 0);
1222 if (!sctp_port_hashtable) {
1223 printk(KERN_ERR "SCTP: Failed bind hash alloc.");
1224 status = -ENOMEM;
1225 goto err_bhash_alloc;
1226 }
1227 for (i = 0; i < sctp_port_hashsize; i++) {
1228 spin_lock_init(&sctp_port_hashtable[i].lock);
1229 INIT_HLIST_HEAD(&sctp_port_hashtable[i].chain);
1230 }
1231
1232 printk(KERN_INFO "SCTP: Hash tables configured "
1233 "(established %d bind %d)\n",
1234 sctp_assoc_hashsize, sctp_port_hashsize);
1235
1236
1237 sctp_addip_enable = 0;
1238 sctp_addip_noauth = 0;
1239
1240
1241 sctp_prsctp_enable = 1;
1242
1243
1244 sctp_auth_enable = 0;
1245
1246 sctp_sysctl_register();
1247
1248 INIT_LIST_HEAD(&sctp_address_families);
1249 sctp_v4_pf_init();
1250 sctp_v6_pf_init();
1251
1252
1253 INIT_LIST_HEAD(&sctp_local_addr_list);
1254 spin_lock_init(&sctp_local_addr_lock);
1255 sctp_get_local_addr_list();
1256
1257 status = sctp_v4_protosw_init();
1258
1259 if (status)
1260 goto err_protosw_init;
1261
1262 status = sctp_v6_protosw_init();
1263 if (status)
1264 goto err_v6_protosw_init;
1265
1266
1267 if ((status = sctp_ctl_sock_init())) {
1268 printk (KERN_ERR
1269 "SCTP: Failed to initialize the SCTP control sock.\n");
1270 goto err_ctl_sock_init;
1271 }
1272
1273 status = sctp_v4_add_protocol();
1274 if (status)
1275 goto err_add_protocol;
1276
1277
1278 status = sctp_v6_add_protocol();
1279 if (status)
1280 goto err_v6_add_protocol;
1281
1282 status = 0;
1283out:
1284 return status;
1285err_v6_add_protocol:
1286 sctp_v6_del_protocol();
1287err_add_protocol:
1288 sctp_v4_del_protocol();
1289 sock_release(sctp_ctl_socket);
1290err_ctl_sock_init:
1291 sctp_v6_protosw_exit();
1292err_v6_protosw_init:
1293 sctp_v4_protosw_exit();
1294err_protosw_init:
1295 sctp_free_local_addr_list();
1296 sctp_v4_pf_exit();
1297 sctp_v6_pf_exit();
1298 sctp_sysctl_unregister();
1299 list_del(&sctp_af_inet.list);
1300 free_pages((unsigned long)sctp_port_hashtable,
1301 get_order(sctp_port_hashsize *
1302 sizeof(struct sctp_bind_hashbucket)));
1303err_bhash_alloc:
1304 kfree(sctp_ep_hashtable);
1305err_ehash_alloc:
1306 free_pages((unsigned long)sctp_assoc_hashtable,
1307 get_order(sctp_assoc_hashsize *
1308 sizeof(struct sctp_hashbucket)));
1309err_ahash_alloc:
1310 sctp_dbg_objcnt_exit();
1311 sctp_proc_exit();
1312err_init_proc:
1313 cleanup_sctp_mibs();
1314err_init_mibs:
1315 kmem_cache_destroy(sctp_chunk_cachep);
1316err_chunk_cachep:
1317 kmem_cache_destroy(sctp_bucket_cachep);
1318 goto out;
1319}
1320
1321
1322SCTP_STATIC __exit void sctp_exit(void)
1323{
1324
1325
1326
1327
1328
1329 sctp_v6_del_protocol();
1330 sctp_v4_del_protocol();
1331
1332
1333 sock_release(sctp_ctl_socket);
1334
1335
1336 sctp_v6_protosw_exit();
1337 sctp_v4_protosw_exit();
1338
1339
1340 sctp_free_local_addr_list();
1341
1342
1343 sctp_v6_pf_exit();
1344 sctp_v4_pf_exit();
1345
1346 sctp_sysctl_unregister();
1347 list_del(&sctp_af_inet.list);
1348
1349 free_pages((unsigned long)sctp_assoc_hashtable,
1350 get_order(sctp_assoc_hashsize *
1351 sizeof(struct sctp_hashbucket)));
1352 kfree(sctp_ep_hashtable);
1353 free_pages((unsigned long)sctp_port_hashtable,
1354 get_order(sctp_port_hashsize *
1355 sizeof(struct sctp_bind_hashbucket)));
1356
1357 sctp_dbg_objcnt_exit();
1358 sctp_proc_exit();
1359 cleanup_sctp_mibs();
1360
1361 kmem_cache_destroy(sctp_chunk_cachep);
1362 kmem_cache_destroy(sctp_bucket_cachep);
1363}
1364
1365module_init(sctp_init);
1366module_exit(sctp_exit);
1367
1368
1369
1370
1371MODULE_ALIAS("net-pf-" __stringify(PF_INET) "-proto-132");
1372MODULE_ALIAS("net-pf-" __stringify(PF_INET6) "-proto-132");
1373MODULE_AUTHOR("Linux Kernel SCTP developers <lksctp-developers@lists.sourceforge.net>");
1374MODULE_DESCRIPTION("Support for the SCTP protocol (RFC2960)");
1375MODULE_LICENSE("GPL");
1376