]> bbs.cooldavid.org Git - net-next-2.6.git/blob - net/ipv4/af_inet.c
[IPSEC]: Add ICMP host relookup support
[net-next-2.6.git] / net / ipv4 / af_inet.c
1 /*
2  * INET         An implementation of the TCP/IP protocol suite for the LINUX
3  *              operating system.  INET is implemented using the  BSD Socket
4  *              interface as the means of communication with the user level.
5  *
6  *              PF_INET protocol family socket handler.
7  *
8  * Version:     $Id: af_inet.c,v 1.137 2002/02/01 22:01:03 davem Exp $
9  *
10  * Authors:     Ross Biro
11  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12  *              Florian La Roche, <flla@stud.uni-sb.de>
13  *              Alan Cox, <A.Cox@swansea.ac.uk>
14  *
15  * Changes (see also sock.c)
16  *
17  *              piggy,
18  *              Karl Knutson    :       Socket protocol table
19  *              A.N.Kuznetsov   :       Socket death error in accept().
20  *              John Richardson :       Fix non blocking error in connect()
21  *                                      so sockets that fail to connect
22  *                                      don't return -EINPROGRESS.
23  *              Alan Cox        :       Asynchronous I/O support
24  *              Alan Cox        :       Keep correct socket pointer on sock
25  *                                      structures
26  *                                      when accept() ed
27  *              Alan Cox        :       Semantics of SO_LINGER aren't state
28  *                                      moved to close when you look carefully.
29  *                                      With this fixed and the accept bug fixed
30  *                                      some RPC stuff seems happier.
31  *              Niibe Yutaka    :       4.4BSD style write async I/O
32  *              Alan Cox,
33  *              Tony Gale       :       Fixed reuse semantics.
34  *              Alan Cox        :       bind() shouldn't abort existing but dead
35  *                                      sockets. Stops FTP netin:.. I hope.
36  *              Alan Cox        :       bind() works correctly for RAW sockets.
37  *                                      Note that FreeBSD at least was broken
38  *                                      in this respect so be careful with
39  *                                      compatibility tests...
40  *              Alan Cox        :       routing cache support
41  *              Alan Cox        :       memzero the socket structure for
42  *                                      compactness.
43  *              Matt Day        :       nonblock connect error handler
44  *              Alan Cox        :       Allow large numbers of pending sockets
45  *                                      (eg for big web sites), but only if
46  *                                      specifically application requested.
47  *              Alan Cox        :       New buffering throughout IP. Used
48  *                                      dumbly.
49  *              Alan Cox        :       New buffering now used smartly.
50  *              Alan Cox        :       BSD rather than common sense
51  *                                      interpretation of listen.
52  *              Germano Caronni :       Assorted small races.
53  *              Alan Cox        :       sendmsg/recvmsg basic support.
54  *              Alan Cox        :       Only sendmsg/recvmsg now supported.
55  *              Alan Cox        :       Locked down bind (see security list).
56  *              Alan Cox        :       Loosened bind a little.
57  *              Mike McLagan    :       ADD/DEL DLCI Ioctls
58  *      Willy Konynenberg       :       Transparent proxying support.
59  *              David S. Miller :       New socket lookup architecture.
60  *                                      Some other random speedups.
61  *              Cyrus Durgin    :       Cleaned up file for kmod hacks.
62  *              Andi Kleen      :       Fix inet_stream_connect TCP race.
63  *
64  *              This program is free software; you can redistribute it and/or
65  *              modify it under the terms of the GNU General Public License
66  *              as published by the Free Software Foundation; either version
67  *              2 of the License, or (at your option) any later version.
68  */
69
70 #include <linux/err.h>
71 #include <linux/errno.h>
72 #include <linux/types.h>
73 #include <linux/socket.h>
74 #include <linux/in.h>
75 #include <linux/kernel.h>
76 #include <linux/module.h>
77 #include <linux/sched.h>
78 #include <linux/timer.h>
79 #include <linux/string.h>
80 #include <linux/sockios.h>
81 #include <linux/net.h>
82 #include <linux/capability.h>
83 #include <linux/fcntl.h>
84 #include <linux/mm.h>
85 #include <linux/interrupt.h>
86 #include <linux/stat.h>
87 #include <linux/init.h>
88 #include <linux/poll.h>
89 #include <linux/netfilter_ipv4.h>
90 #include <linux/random.h>
91
92 #include <asm/uaccess.h>
93 #include <asm/system.h>
94
95 #include <linux/inet.h>
96 #include <linux/igmp.h>
97 #include <linux/inetdevice.h>
98 #include <linux/netdevice.h>
99 #include <net/ip.h>
100 #include <net/protocol.h>
101 #include <net/arp.h>
102 #include <net/route.h>
103 #include <net/ip_fib.h>
104 #include <net/inet_connection_sock.h>
105 #include <net/tcp.h>
106 #include <net/udp.h>
107 #include <net/udplite.h>
108 #include <linux/skbuff.h>
109 #include <net/sock.h>
110 #include <net/raw.h>
111 #include <net/icmp.h>
112 #include <net/ipip.h>
113 #include <net/inet_common.h>
114 #include <net/xfrm.h>
115 #ifdef CONFIG_IP_MROUTE
116 #include <linux/mroute.h>
117 #endif
118
119 DEFINE_SNMP_STAT(struct linux_mib, net_statistics) __read_mostly;
120
121 extern void ip_mc_drop_socket(struct sock *sk);
122
123 /* The inetsw table contains everything that inet_create needs to
124  * build a new socket.
125  */
126 static struct list_head inetsw[SOCK_MAX];
127 static DEFINE_SPINLOCK(inetsw_lock);
128
129 struct ipv4_config ipv4_config;
130
131 EXPORT_SYMBOL(ipv4_config);
132
133 /* New destruction routine */
134
135 void inet_sock_destruct(struct sock *sk)
136 {
137         struct inet_sock *inet = inet_sk(sk);
138
139         __skb_queue_purge(&sk->sk_receive_queue);
140         __skb_queue_purge(&sk->sk_error_queue);
141
142         if (sk->sk_type == SOCK_STREAM && sk->sk_state != TCP_CLOSE) {
143                 printk("Attempt to release TCP socket in state %d %p\n",
144                        sk->sk_state, sk);
145                 return;
146         }
147         if (!sock_flag(sk, SOCK_DEAD)) {
148                 printk("Attempt to release alive inet socket %p\n", sk);
149                 return;
150         }
151
152         BUG_TRAP(!atomic_read(&sk->sk_rmem_alloc));
153         BUG_TRAP(!atomic_read(&sk->sk_wmem_alloc));
154         BUG_TRAP(!sk->sk_wmem_queued);
155         BUG_TRAP(!sk->sk_forward_alloc);
156
157         kfree(inet->opt);
158         dst_release(sk->sk_dst_cache);
159         sk_refcnt_debug_dec(sk);
160 }
161
162 /*
163  *      The routines beyond this point handle the behaviour of an AF_INET
164  *      socket object. Mostly it punts to the subprotocols of IP to do
165  *      the work.
166  */
167
168 /*
169  *      Automatically bind an unbound socket.
170  */
171
172 static int inet_autobind(struct sock *sk)
173 {
174         struct inet_sock *inet;
175         /* We may need to bind the socket. */
176         lock_sock(sk);
177         inet = inet_sk(sk);
178         if (!inet->num) {
179                 if (sk->sk_prot->get_port(sk, 0)) {
180                         release_sock(sk);
181                         return -EAGAIN;
182                 }
183                 inet->sport = htons(inet->num);
184         }
185         release_sock(sk);
186         return 0;
187 }
188
189 /*
190  *      Move a socket into listening state.
191  */
192 int inet_listen(struct socket *sock, int backlog)
193 {
194         struct sock *sk = sock->sk;
195         unsigned char old_state;
196         int err;
197
198         lock_sock(sk);
199
200         err = -EINVAL;
201         if (sock->state != SS_UNCONNECTED || sock->type != SOCK_STREAM)
202                 goto out;
203
204         old_state = sk->sk_state;
205         if (!((1 << old_state) & (TCPF_CLOSE | TCPF_LISTEN)))
206                 goto out;
207
208         /* Really, if the socket is already in listen state
209          * we can only allow the backlog to be adjusted.
210          */
211         if (old_state != TCP_LISTEN) {
212                 err = inet_csk_listen_start(sk, backlog);
213                 if (err)
214                         goto out;
215         }
216         sk->sk_max_ack_backlog = backlog;
217         err = 0;
218
219 out:
220         release_sock(sk);
221         return err;
222 }
223
224 u32 inet_ehash_secret __read_mostly;
225 EXPORT_SYMBOL(inet_ehash_secret);
226
227 /*
228  * inet_ehash_secret must be set exactly once
229  * Instead of using a dedicated spinlock, we (ab)use inetsw_lock
230  */
231 void build_ehash_secret(void)
232 {
233         u32 rnd;
234         do {
235                 get_random_bytes(&rnd, sizeof(rnd));
236         } while (rnd == 0);
237         spin_lock_bh(&inetsw_lock);
238         if (!inet_ehash_secret)
239                 inet_ehash_secret = rnd;
240         spin_unlock_bh(&inetsw_lock);
241 }
242 EXPORT_SYMBOL(build_ehash_secret);
243
244 /*
245  *      Create an inet socket.
246  */
247
248 static int inet_create(struct net *net, struct socket *sock, int protocol)
249 {
250         struct sock *sk;
251         struct list_head *p;
252         struct inet_protosw *answer;
253         struct inet_sock *inet;
254         struct proto *answer_prot;
255         unsigned char answer_flags;
256         char answer_no_check;
257         int try_loading_module = 0;
258         int err;
259
260         if (net != &init_net)
261                 return -EAFNOSUPPORT;
262
263         if (sock->type != SOCK_RAW &&
264             sock->type != SOCK_DGRAM &&
265             !inet_ehash_secret)
266                 build_ehash_secret();
267
268         sock->state = SS_UNCONNECTED;
269
270         /* Look for the requested type/protocol pair. */
271         answer = NULL;
272 lookup_protocol:
273         err = -ESOCKTNOSUPPORT;
274         rcu_read_lock();
275         list_for_each_rcu(p, &inetsw[sock->type]) {
276                 answer = list_entry(p, struct inet_protosw, list);
277
278                 /* Check the non-wild match. */
279                 if (protocol == answer->protocol) {
280                         if (protocol != IPPROTO_IP)
281                                 break;
282                 } else {
283                         /* Check for the two wild cases. */
284                         if (IPPROTO_IP == protocol) {
285                                 protocol = answer->protocol;
286                                 break;
287                         }
288                         if (IPPROTO_IP == answer->protocol)
289                                 break;
290                 }
291                 err = -EPROTONOSUPPORT;
292                 answer = NULL;
293         }
294
295         if (unlikely(answer == NULL)) {
296                 if (try_loading_module < 2) {
297                         rcu_read_unlock();
298                         /*
299                          * Be more specific, e.g. net-pf-2-proto-132-type-1
300                          * (net-pf-PF_INET-proto-IPPROTO_SCTP-type-SOCK_STREAM)
301                          */
302                         if (++try_loading_module == 1)
303                                 request_module("net-pf-%d-proto-%d-type-%d",
304                                                PF_INET, protocol, sock->type);
305                         /*
306                          * Fall back to generic, e.g. net-pf-2-proto-132
307                          * (net-pf-PF_INET-proto-IPPROTO_SCTP)
308                          */
309                         else
310                                 request_module("net-pf-%d-proto-%d",
311                                                PF_INET, protocol);
312                         goto lookup_protocol;
313                 } else
314                         goto out_rcu_unlock;
315         }
316
317         err = -EPERM;
318         if (answer->capability > 0 && !capable(answer->capability))
319                 goto out_rcu_unlock;
320
321         sock->ops = answer->ops;
322         answer_prot = answer->prot;
323         answer_no_check = answer->no_check;
324         answer_flags = answer->flags;
325         rcu_read_unlock();
326
327         BUG_TRAP(answer_prot->slab != NULL);
328
329         err = -ENOBUFS;
330         sk = sk_alloc(net, PF_INET, GFP_KERNEL, answer_prot);
331         if (sk == NULL)
332                 goto out;
333
334         err = 0;
335         sk->sk_no_check = answer_no_check;
336         if (INET_PROTOSW_REUSE & answer_flags)
337                 sk->sk_reuse = 1;
338
339         inet = inet_sk(sk);
340         inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) != 0;
341
342         if (SOCK_RAW == sock->type) {
343                 inet->num = protocol;
344                 if (IPPROTO_RAW == protocol)
345                         inet->hdrincl = 1;
346         }
347
348         if (ipv4_config.no_pmtu_disc)
349                 inet->pmtudisc = IP_PMTUDISC_DONT;
350         else
351                 inet->pmtudisc = IP_PMTUDISC_WANT;
352
353         inet->id = 0;
354
355         sock_init_data(sock, sk);
356
357         sk->sk_destruct    = inet_sock_destruct;
358         sk->sk_family      = PF_INET;
359         sk->sk_protocol    = protocol;
360         sk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
361
362         inet->uc_ttl    = -1;
363         inet->mc_loop   = 1;
364         inet->mc_ttl    = 1;
365         inet->mc_index  = 0;
366         inet->mc_list   = NULL;
367
368         sk_refcnt_debug_inc(sk);
369
370         if (inet->num) {
371                 /* It assumes that any protocol which allows
372                  * the user to assign a number at socket
373                  * creation time automatically
374                  * shares.
375                  */
376                 inet->sport = htons(inet->num);
377                 /* Add to protocol hash chains. */
378                 sk->sk_prot->hash(sk);
379         }
380
381         if (sk->sk_prot->init) {
382                 err = sk->sk_prot->init(sk);
383                 if (err)
384                         sk_common_release(sk);
385         }
386 out:
387         return err;
388 out_rcu_unlock:
389         rcu_read_unlock();
390         goto out;
391 }
392
393
394 /*
395  *      The peer socket should always be NULL (or else). When we call this
396  *      function we are destroying the object and from then on nobody
397  *      should refer to it.
398  */
399 int inet_release(struct socket *sock)
400 {
401         struct sock *sk = sock->sk;
402
403         if (sk) {
404                 long timeout;
405
406                 /* Applications forget to leave groups before exiting */
407                 ip_mc_drop_socket(sk);
408
409                 /* If linger is set, we don't return until the close
410                  * is complete.  Otherwise we return immediately. The
411                  * actually closing is done the same either way.
412                  *
413                  * If the close is due to the process exiting, we never
414                  * linger..
415                  */
416                 timeout = 0;
417                 if (sock_flag(sk, SOCK_LINGER) &&
418                     !(current->flags & PF_EXITING))
419                         timeout = sk->sk_lingertime;
420                 sock->sk = NULL;
421                 sk->sk_prot->close(sk, timeout);
422         }
423         return 0;
424 }
425
426 /* It is off by default, see below. */
427 int sysctl_ip_nonlocal_bind __read_mostly;
428
429 int inet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
430 {
431         struct sockaddr_in *addr = (struct sockaddr_in *)uaddr;
432         struct sock *sk = sock->sk;
433         struct inet_sock *inet = inet_sk(sk);
434         unsigned short snum;
435         int chk_addr_ret;
436         int err;
437
438         /* If the socket has its own bind function then use it. (RAW) */
439         if (sk->sk_prot->bind) {
440                 err = sk->sk_prot->bind(sk, uaddr, addr_len);
441                 goto out;
442         }
443         err = -EINVAL;
444         if (addr_len < sizeof(struct sockaddr_in))
445                 goto out;
446
447         chk_addr_ret = inet_addr_type(addr->sin_addr.s_addr);
448
449         /* Not specified by any standard per-se, however it breaks too
450          * many applications when removed.  It is unfortunate since
451          * allowing applications to make a non-local bind solves
452          * several problems with systems using dynamic addressing.
453          * (ie. your servers still start up even if your ISDN link
454          *  is temporarily down)
455          */
456         err = -EADDRNOTAVAIL;
457         if (!sysctl_ip_nonlocal_bind &&
458             !inet->freebind &&
459             addr->sin_addr.s_addr != INADDR_ANY &&
460             chk_addr_ret != RTN_LOCAL &&
461             chk_addr_ret != RTN_MULTICAST &&
462             chk_addr_ret != RTN_BROADCAST)
463                 goto out;
464
465         snum = ntohs(addr->sin_port);
466         err = -EACCES;
467         if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
468                 goto out;
469
470         /*      We keep a pair of addresses. rcv_saddr is the one
471          *      used by hash lookups, and saddr is used for transmit.
472          *
473          *      In the BSD API these are the same except where it
474          *      would be illegal to use them (multicast/broadcast) in
475          *      which case the sending device address is used.
476          */
477         lock_sock(sk);
478
479         /* Check these errors (active socket, double bind). */
480         err = -EINVAL;
481         if (sk->sk_state != TCP_CLOSE || inet->num)
482                 goto out_release_sock;
483
484         inet->rcv_saddr = inet->saddr = addr->sin_addr.s_addr;
485         if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
486                 inet->saddr = 0;  /* Use device */
487
488         /* Make sure we are allowed to bind here. */
489         if (sk->sk_prot->get_port(sk, snum)) {
490                 inet->saddr = inet->rcv_saddr = 0;
491                 err = -EADDRINUSE;
492                 goto out_release_sock;
493         }
494
495         if (inet->rcv_saddr)
496                 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
497         if (snum)
498                 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
499         inet->sport = htons(inet->num);
500         inet->daddr = 0;
501         inet->dport = 0;
502         sk_dst_reset(sk);
503         err = 0;
504 out_release_sock:
505         release_sock(sk);
506 out:
507         return err;
508 }
509
510 int inet_dgram_connect(struct socket *sock, struct sockaddr * uaddr,
511                        int addr_len, int flags)
512 {
513         struct sock *sk = sock->sk;
514
515         if (uaddr->sa_family == AF_UNSPEC)
516                 return sk->sk_prot->disconnect(sk, flags);
517
518         if (!inet_sk(sk)->num && inet_autobind(sk))
519                 return -EAGAIN;
520         return sk->sk_prot->connect(sk, (struct sockaddr *)uaddr, addr_len);
521 }
522
523 static long inet_wait_for_connect(struct sock *sk, long timeo)
524 {
525         DEFINE_WAIT(wait);
526
527         prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
528
529         /* Basic assumption: if someone sets sk->sk_err, he _must_
530          * change state of the socket from TCP_SYN_*.
531          * Connect() does not allow to get error notifications
532          * without closing the socket.
533          */
534         while ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
535                 release_sock(sk);
536                 timeo = schedule_timeout(timeo);
537                 lock_sock(sk);
538                 if (signal_pending(current) || !timeo)
539                         break;
540                 prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
541         }
542         finish_wait(sk->sk_sleep, &wait);
543         return timeo;
544 }
545
546 /*
547  *      Connect to a remote host. There is regrettably still a little
548  *      TCP 'magic' in here.
549  */
550 int inet_stream_connect(struct socket *sock, struct sockaddr *uaddr,
551                         int addr_len, int flags)
552 {
553         struct sock *sk = sock->sk;
554         int err;
555         long timeo;
556
557         lock_sock(sk);
558
559         if (uaddr->sa_family == AF_UNSPEC) {
560                 err = sk->sk_prot->disconnect(sk, flags);
561                 sock->state = err ? SS_DISCONNECTING : SS_UNCONNECTED;
562                 goto out;
563         }
564
565         switch (sock->state) {
566         default:
567                 err = -EINVAL;
568                 goto out;
569         case SS_CONNECTED:
570                 err = -EISCONN;
571                 goto out;
572         case SS_CONNECTING:
573                 err = -EALREADY;
574                 /* Fall out of switch with err, set for this state */
575                 break;
576         case SS_UNCONNECTED:
577                 err = -EISCONN;
578                 if (sk->sk_state != TCP_CLOSE)
579                         goto out;
580
581                 err = sk->sk_prot->connect(sk, uaddr, addr_len);
582                 if (err < 0)
583                         goto out;
584
585                 sock->state = SS_CONNECTING;
586
587                 /* Just entered SS_CONNECTING state; the only
588                  * difference is that return value in non-blocking
589                  * case is EINPROGRESS, rather than EALREADY.
590                  */
591                 err = -EINPROGRESS;
592                 break;
593         }
594
595         timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
596
597         if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
598                 /* Error code is set above */
599                 if (!timeo || !inet_wait_for_connect(sk, timeo))
600                         goto out;
601
602                 err = sock_intr_errno(timeo);
603                 if (signal_pending(current))
604                         goto out;
605         }
606
607         /* Connection was closed by RST, timeout, ICMP error
608          * or another process disconnected us.
609          */
610         if (sk->sk_state == TCP_CLOSE)
611                 goto sock_error;
612
613         /* sk->sk_err may be not zero now, if RECVERR was ordered by user
614          * and error was received after socket entered established state.
615          * Hence, it is handled normally after connect() return successfully.
616          */
617
618         sock->state = SS_CONNECTED;
619         err = 0;
620 out:
621         release_sock(sk);
622         return err;
623
624 sock_error:
625         err = sock_error(sk) ? : -ECONNABORTED;
626         sock->state = SS_UNCONNECTED;
627         if (sk->sk_prot->disconnect(sk, flags))
628                 sock->state = SS_DISCONNECTING;
629         goto out;
630 }
631
632 /*
633  *      Accept a pending connection. The TCP layer now gives BSD semantics.
634  */
635
636 int inet_accept(struct socket *sock, struct socket *newsock, int flags)
637 {
638         struct sock *sk1 = sock->sk;
639         int err = -EINVAL;
640         struct sock *sk2 = sk1->sk_prot->accept(sk1, flags, &err);
641
642         if (!sk2)
643                 goto do_err;
644
645         lock_sock(sk2);
646
647         BUG_TRAP((1 << sk2->sk_state) &
648                  (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT | TCPF_CLOSE));
649
650         sock_graft(sk2, newsock);
651
652         newsock->state = SS_CONNECTED;
653         err = 0;
654         release_sock(sk2);
655 do_err:
656         return err;
657 }
658
659
660 /*
661  *      This does both peername and sockname.
662  */
663 int inet_getname(struct socket *sock, struct sockaddr *uaddr,
664                         int *uaddr_len, int peer)
665 {
666         struct sock *sk         = sock->sk;
667         struct inet_sock *inet  = inet_sk(sk);
668         struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;
669
670         sin->sin_family = AF_INET;
671         if (peer) {
672                 if (!inet->dport ||
673                     (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
674                      peer == 1))
675                         return -ENOTCONN;
676                 sin->sin_port = inet->dport;
677                 sin->sin_addr.s_addr = inet->daddr;
678         } else {
679                 __be32 addr = inet->rcv_saddr;
680                 if (!addr)
681                         addr = inet->saddr;
682                 sin->sin_port = inet->sport;
683                 sin->sin_addr.s_addr = addr;
684         }
685         memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
686         *uaddr_len = sizeof(*sin);
687         return 0;
688 }
689
690 int inet_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
691                  size_t size)
692 {
693         struct sock *sk = sock->sk;
694
695         /* We may need to bind the socket. */
696         if (!inet_sk(sk)->num && inet_autobind(sk))
697                 return -EAGAIN;
698
699         return sk->sk_prot->sendmsg(iocb, sk, msg, size);
700 }
701
702
703 static ssize_t inet_sendpage(struct socket *sock, struct page *page, int offset, size_t size, int flags)
704 {
705         struct sock *sk = sock->sk;
706
707         /* We may need to bind the socket. */
708         if (!inet_sk(sk)->num && inet_autobind(sk))
709                 return -EAGAIN;
710
711         if (sk->sk_prot->sendpage)
712                 return sk->sk_prot->sendpage(sk, page, offset, size, flags);
713         return sock_no_sendpage(sock, page, offset, size, flags);
714 }
715
716
717 int inet_shutdown(struct socket *sock, int how)
718 {
719         struct sock *sk = sock->sk;
720         int err = 0;
721
722         /* This should really check to make sure
723          * the socket is a TCP socket. (WHY AC...)
724          */
725         how++; /* maps 0->1 has the advantage of making bit 1 rcvs and
726                        1->2 bit 2 snds.
727                        2->3 */
728         if ((how & ~SHUTDOWN_MASK) || !how)     /* MAXINT->0 */
729                 return -EINVAL;
730
731         lock_sock(sk);
732         if (sock->state == SS_CONNECTING) {
733                 if ((1 << sk->sk_state) &
734                     (TCPF_SYN_SENT | TCPF_SYN_RECV | TCPF_CLOSE))
735                         sock->state = SS_DISCONNECTING;
736                 else
737                         sock->state = SS_CONNECTED;
738         }
739
740         switch (sk->sk_state) {
741         case TCP_CLOSE:
742                 err = -ENOTCONN;
743                 /* Hack to wake up other listeners, who can poll for
744                    POLLHUP, even on eg. unconnected UDP sockets -- RR */
745         default:
746                 sk->sk_shutdown |= how;
747                 if (sk->sk_prot->shutdown)
748                         sk->sk_prot->shutdown(sk, how);
749                 break;
750
751         /* Remaining two branches are temporary solution for missing
752          * close() in multithreaded environment. It is _not_ a good idea,
753          * but we have no choice until close() is repaired at VFS level.
754          */
755         case TCP_LISTEN:
756                 if (!(how & RCV_SHUTDOWN))
757                         break;
758                 /* Fall through */
759         case TCP_SYN_SENT:
760                 err = sk->sk_prot->disconnect(sk, O_NONBLOCK);
761                 sock->state = err ? SS_DISCONNECTING : SS_UNCONNECTED;
762                 break;
763         }
764
765         /* Wake up anyone sleeping in poll. */
766         sk->sk_state_change(sk);
767         release_sock(sk);
768         return err;
769 }
770
771 /*
772  *      ioctl() calls you can issue on an INET socket. Most of these are
773  *      device configuration and stuff and very rarely used. Some ioctls
774  *      pass on to the socket itself.
775  *
776  *      NOTE: I like the idea of a module for the config stuff. ie ifconfig
777  *      loads the devconfigure module does its configuring and unloads it.
778  *      There's a good 20K of config code hanging around the kernel.
779  */
780
781 int inet_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
782 {
783         struct sock *sk = sock->sk;
784         int err = 0;
785
786         switch (cmd) {
787                 case SIOCGSTAMP:
788                         err = sock_get_timestamp(sk, (struct timeval __user *)arg);
789                         break;
790                 case SIOCGSTAMPNS:
791                         err = sock_get_timestampns(sk, (struct timespec __user *)arg);
792                         break;
793                 case SIOCADDRT:
794                 case SIOCDELRT:
795                 case SIOCRTMSG:
796                         err = ip_rt_ioctl(cmd, (void __user *)arg);
797                         break;
798                 case SIOCDARP:
799                 case SIOCGARP:
800                 case SIOCSARP:
801                         err = arp_ioctl(cmd, (void __user *)arg);
802                         break;
803                 case SIOCGIFADDR:
804                 case SIOCSIFADDR:
805                 case SIOCGIFBRDADDR:
806                 case SIOCSIFBRDADDR:
807                 case SIOCGIFNETMASK:
808                 case SIOCSIFNETMASK:
809                 case SIOCGIFDSTADDR:
810                 case SIOCSIFDSTADDR:
811                 case SIOCSIFPFLAGS:
812                 case SIOCGIFPFLAGS:
813                 case SIOCSIFFLAGS:
814                         err = devinet_ioctl(cmd, (void __user *)arg);
815                         break;
816                 default:
817                         if (sk->sk_prot->ioctl)
818                                 err = sk->sk_prot->ioctl(sk, cmd, arg);
819                         else
820                                 err = -ENOIOCTLCMD;
821                         break;
822         }
823         return err;
824 }
825
826 const struct proto_ops inet_stream_ops = {
827         .family            = PF_INET,
828         .owner             = THIS_MODULE,
829         .release           = inet_release,
830         .bind              = inet_bind,
831         .connect           = inet_stream_connect,
832         .socketpair        = sock_no_socketpair,
833         .accept            = inet_accept,
834         .getname           = inet_getname,
835         .poll              = tcp_poll,
836         .ioctl             = inet_ioctl,
837         .listen            = inet_listen,
838         .shutdown          = inet_shutdown,
839         .setsockopt        = sock_common_setsockopt,
840         .getsockopt        = sock_common_getsockopt,
841         .sendmsg           = tcp_sendmsg,
842         .recvmsg           = sock_common_recvmsg,
843         .mmap              = sock_no_mmap,
844         .sendpage          = tcp_sendpage,
845         .splice_read       = tcp_splice_read,
846 #ifdef CONFIG_COMPAT
847         .compat_setsockopt = compat_sock_common_setsockopt,
848         .compat_getsockopt = compat_sock_common_getsockopt,
849 #endif
850 };
851
852 const struct proto_ops inet_dgram_ops = {
853         .family            = PF_INET,
854         .owner             = THIS_MODULE,
855         .release           = inet_release,
856         .bind              = inet_bind,
857         .connect           = inet_dgram_connect,
858         .socketpair        = sock_no_socketpair,
859         .accept            = sock_no_accept,
860         .getname           = inet_getname,
861         .poll              = udp_poll,
862         .ioctl             = inet_ioctl,
863         .listen            = sock_no_listen,
864         .shutdown          = inet_shutdown,
865         .setsockopt        = sock_common_setsockopt,
866         .getsockopt        = sock_common_getsockopt,
867         .sendmsg           = inet_sendmsg,
868         .recvmsg           = sock_common_recvmsg,
869         .mmap              = sock_no_mmap,
870         .sendpage          = inet_sendpage,
871 #ifdef CONFIG_COMPAT
872         .compat_setsockopt = compat_sock_common_setsockopt,
873         .compat_getsockopt = compat_sock_common_getsockopt,
874 #endif
875 };
876
877 /*
878  * For SOCK_RAW sockets; should be the same as inet_dgram_ops but without
879  * udp_poll
880  */
881 static const struct proto_ops inet_sockraw_ops = {
882         .family            = PF_INET,
883         .owner             = THIS_MODULE,
884         .release           = inet_release,
885         .bind              = inet_bind,
886         .connect           = inet_dgram_connect,
887         .socketpair        = sock_no_socketpair,
888         .accept            = sock_no_accept,
889         .getname           = inet_getname,
890         .poll              = datagram_poll,
891         .ioctl             = inet_ioctl,
892         .listen            = sock_no_listen,
893         .shutdown          = inet_shutdown,
894         .setsockopt        = sock_common_setsockopt,
895         .getsockopt        = sock_common_getsockopt,
896         .sendmsg           = inet_sendmsg,
897         .recvmsg           = sock_common_recvmsg,
898         .mmap              = sock_no_mmap,
899         .sendpage          = inet_sendpage,
900 #ifdef CONFIG_COMPAT
901         .compat_setsockopt = compat_sock_common_setsockopt,
902         .compat_getsockopt = compat_sock_common_getsockopt,
903 #endif
904 };
905
906 static struct net_proto_family inet_family_ops = {
907         .family = PF_INET,
908         .create = inet_create,
909         .owner  = THIS_MODULE,
910 };
911
912 /* Upon startup we insert all the elements in inetsw_array[] into
913  * the linked list inetsw.
914  */
915 static struct inet_protosw inetsw_array[] =
916 {
917         {
918                 .type =       SOCK_STREAM,
919                 .protocol =   IPPROTO_TCP,
920                 .prot =       &tcp_prot,
921                 .ops =        &inet_stream_ops,
922                 .capability = -1,
923                 .no_check =   0,
924                 .flags =      INET_PROTOSW_PERMANENT |
925                               INET_PROTOSW_ICSK,
926         },
927
928         {
929                 .type =       SOCK_DGRAM,
930                 .protocol =   IPPROTO_UDP,
931                 .prot =       &udp_prot,
932                 .ops =        &inet_dgram_ops,
933                 .capability = -1,
934                 .no_check =   UDP_CSUM_DEFAULT,
935                 .flags =      INET_PROTOSW_PERMANENT,
936        },
937
938
939        {
940                .type =       SOCK_RAW,
941                .protocol =   IPPROTO_IP,        /* wild card */
942                .prot =       &raw_prot,
943                .ops =        &inet_sockraw_ops,
944                .capability = CAP_NET_RAW,
945                .no_check =   UDP_CSUM_DEFAULT,
946                .flags =      INET_PROTOSW_REUSE,
947        }
948 };
949
950 #define INETSW_ARRAY_LEN ARRAY_SIZE(inetsw_array)
951
952 void inet_register_protosw(struct inet_protosw *p)
953 {
954         struct list_head *lh;
955         struct inet_protosw *answer;
956         int protocol = p->protocol;
957         struct list_head *last_perm;
958
959         spin_lock_bh(&inetsw_lock);
960
961         if (p->type >= SOCK_MAX)
962                 goto out_illegal;
963
964         /* If we are trying to override a permanent protocol, bail. */
965         answer = NULL;
966         last_perm = &inetsw[p->type];
967         list_for_each(lh, &inetsw[p->type]) {
968                 answer = list_entry(lh, struct inet_protosw, list);
969
970                 /* Check only the non-wild match. */
971                 if (INET_PROTOSW_PERMANENT & answer->flags) {
972                         if (protocol == answer->protocol)
973                                 break;
974                         last_perm = lh;
975                 }
976
977                 answer = NULL;
978         }
979         if (answer)
980                 goto out_permanent;
981
982         /* Add the new entry after the last permanent entry if any, so that
983          * the new entry does not override a permanent entry when matched with
984          * a wild-card protocol. But it is allowed to override any existing
985          * non-permanent entry.  This means that when we remove this entry, the
986          * system automatically returns to the old behavior.
987          */
988         list_add_rcu(&p->list, last_perm);
989 out:
990         spin_unlock_bh(&inetsw_lock);
991
992         synchronize_net();
993
994         return;
995
996 out_permanent:
997         printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
998                protocol);
999         goto out;
1000
1001 out_illegal:
1002         printk(KERN_ERR
1003                "Ignoring attempt to register invalid socket type %d.\n",
1004                p->type);
1005         goto out;
1006 }
1007
1008 void inet_unregister_protosw(struct inet_protosw *p)
1009 {
1010         if (INET_PROTOSW_PERMANENT & p->flags) {
1011                 printk(KERN_ERR
1012                        "Attempt to unregister permanent protocol %d.\n",
1013                        p->protocol);
1014         } else {
1015                 spin_lock_bh(&inetsw_lock);
1016                 list_del_rcu(&p->list);
1017                 spin_unlock_bh(&inetsw_lock);
1018
1019                 synchronize_net();
1020         }
1021 }
1022
1023 /*
1024  *      Shall we try to damage output packets if routing dev changes?
1025  */
1026
1027 int sysctl_ip_dynaddr __read_mostly;
1028
1029 static int inet_sk_reselect_saddr(struct sock *sk)
1030 {
1031         struct inet_sock *inet = inet_sk(sk);
1032         int err;
1033         struct rtable *rt;
1034         __be32 old_saddr = inet->saddr;
1035         __be32 new_saddr;
1036         __be32 daddr = inet->daddr;
1037
1038         if (inet->opt && inet->opt->srr)
1039                 daddr = inet->opt->faddr;
1040
1041         /* Query new route. */
1042         err = ip_route_connect(&rt, daddr, 0,
1043                                RT_CONN_FLAGS(sk),
1044                                sk->sk_bound_dev_if,
1045                                sk->sk_protocol,
1046                                inet->sport, inet->dport, sk, 0);
1047         if (err)
1048                 return err;
1049
1050         sk_setup_caps(sk, &rt->u.dst);
1051
1052         new_saddr = rt->rt_src;
1053
1054         if (new_saddr == old_saddr)
1055                 return 0;
1056
1057         if (sysctl_ip_dynaddr > 1) {
1058                 printk(KERN_INFO "%s(): shifting inet->"
1059                                  "saddr from %d.%d.%d.%d to %d.%d.%d.%d\n",
1060                        __FUNCTION__,
1061                        NIPQUAD(old_saddr),
1062                        NIPQUAD(new_saddr));
1063         }
1064
1065         inet->saddr = inet->rcv_saddr = new_saddr;
1066
1067         /*
1068          * XXX The only one ugly spot where we need to
1069          * XXX really change the sockets identity after
1070          * XXX it has entered the hashes. -DaveM
1071          *
1072          * Besides that, it does not check for connection
1073          * uniqueness. Wait for troubles.
1074          */
1075         __sk_prot_rehash(sk);
1076         return 0;
1077 }
1078
1079 int inet_sk_rebuild_header(struct sock *sk)
1080 {
1081         struct inet_sock *inet = inet_sk(sk);
1082         struct rtable *rt = (struct rtable *)__sk_dst_check(sk, 0);
1083         __be32 daddr;
1084         int err;
1085
1086         /* Route is OK, nothing to do. */
1087         if (rt)
1088                 return 0;
1089
1090         /* Reroute. */
1091         daddr = inet->daddr;
1092         if (inet->opt && inet->opt->srr)
1093                 daddr = inet->opt->faddr;
1094 {
1095         struct flowi fl = {
1096                 .oif = sk->sk_bound_dev_if,
1097                 .nl_u = {
1098                         .ip4_u = {
1099                                 .daddr  = daddr,
1100                                 .saddr  = inet->saddr,
1101                                 .tos    = RT_CONN_FLAGS(sk),
1102                         },
1103                 },
1104                 .proto = sk->sk_protocol,
1105                 .uli_u = {
1106                         .ports = {
1107                                 .sport = inet->sport,
1108                                 .dport = inet->dport,
1109                         },
1110                 },
1111         };
1112
1113         security_sk_classify_flow(sk, &fl);
1114         err = ip_route_output_flow(&rt, &fl, sk, 0);
1115 }
1116         if (!err)
1117                 sk_setup_caps(sk, &rt->u.dst);
1118         else {
1119                 /* Routing failed... */
1120                 sk->sk_route_caps = 0;
1121                 /*
1122                  * Other protocols have to map its equivalent state to TCP_SYN_SENT.
1123                  * DCCP maps its DCCP_REQUESTING state to TCP_SYN_SENT. -acme
1124                  */
1125                 if (!sysctl_ip_dynaddr ||
1126                     sk->sk_state != TCP_SYN_SENT ||
1127                     (sk->sk_userlocks & SOCK_BINDADDR_LOCK) ||
1128                     (err = inet_sk_reselect_saddr(sk)) != 0)
1129                         sk->sk_err_soft = -err;
1130         }
1131
1132         return err;
1133 }
1134
1135 EXPORT_SYMBOL(inet_sk_rebuild_header);
1136
1137 static int inet_gso_send_check(struct sk_buff *skb)
1138 {
1139         struct iphdr *iph;
1140         struct net_protocol *ops;
1141         int proto;
1142         int ihl;
1143         int err = -EINVAL;
1144
1145         if (unlikely(!pskb_may_pull(skb, sizeof(*iph))))
1146                 goto out;
1147
1148         iph = ip_hdr(skb);
1149         ihl = iph->ihl * 4;
1150         if (ihl < sizeof(*iph))
1151                 goto out;
1152
1153         if (unlikely(!pskb_may_pull(skb, ihl)))
1154                 goto out;
1155
1156         __skb_pull(skb, ihl);
1157         skb_reset_transport_header(skb);
1158         iph = ip_hdr(skb);
1159         proto = iph->protocol & (MAX_INET_PROTOS - 1);
1160         err = -EPROTONOSUPPORT;
1161
1162         rcu_read_lock();
1163         ops = rcu_dereference(inet_protos[proto]);
1164         if (likely(ops && ops->gso_send_check))
1165                 err = ops->gso_send_check(skb);
1166         rcu_read_unlock();
1167
1168 out:
1169         return err;
1170 }
1171
1172 static struct sk_buff *inet_gso_segment(struct sk_buff *skb, int features)
1173 {
1174         struct sk_buff *segs = ERR_PTR(-EINVAL);
1175         struct iphdr *iph;
1176         struct net_protocol *ops;
1177         int proto;
1178         int ihl;
1179         int id;
1180
1181         if (!(features & NETIF_F_V4_CSUM))
1182                 features &= ~NETIF_F_SG;
1183
1184         if (unlikely(skb_shinfo(skb)->gso_type &
1185                      ~(SKB_GSO_TCPV4 |
1186                        SKB_GSO_UDP |
1187                        SKB_GSO_DODGY |
1188                        SKB_GSO_TCP_ECN |
1189                        0)))
1190                 goto out;
1191
1192         if (unlikely(!pskb_may_pull(skb, sizeof(*iph))))
1193                 goto out;
1194
1195         iph = ip_hdr(skb);
1196         ihl = iph->ihl * 4;
1197         if (ihl < sizeof(*iph))
1198                 goto out;
1199
1200         if (unlikely(!pskb_may_pull(skb, ihl)))
1201                 goto out;
1202
1203         __skb_pull(skb, ihl);
1204         skb_reset_transport_header(skb);
1205         iph = ip_hdr(skb);
1206         id = ntohs(iph->id);
1207         proto = iph->protocol & (MAX_INET_PROTOS - 1);
1208         segs = ERR_PTR(-EPROTONOSUPPORT);
1209
1210         rcu_read_lock();
1211         ops = rcu_dereference(inet_protos[proto]);
1212         if (likely(ops && ops->gso_segment))
1213                 segs = ops->gso_segment(skb, features);
1214         rcu_read_unlock();
1215
1216         if (!segs || unlikely(IS_ERR(segs)))
1217                 goto out;
1218
1219         skb = segs;
1220         do {
1221                 iph = ip_hdr(skb);
1222                 iph->id = htons(id++);
1223                 iph->tot_len = htons(skb->len - skb->mac_len);
1224                 iph->check = 0;
1225                 iph->check = ip_fast_csum(skb_network_header(skb), iph->ihl);
1226         } while ((skb = skb->next));
1227
1228 out:
1229         return segs;
1230 }
1231
1232 unsigned long snmp_fold_field(void *mib[], int offt)
1233 {
1234         unsigned long res = 0;
1235         int i;
1236
1237         for_each_possible_cpu(i) {
1238                 res += *(((unsigned long *) per_cpu_ptr(mib[0], i)) + offt);
1239                 res += *(((unsigned long *) per_cpu_ptr(mib[1], i)) + offt);
1240         }
1241         return res;
1242 }
1243 EXPORT_SYMBOL_GPL(snmp_fold_field);
1244
1245 int snmp_mib_init(void *ptr[2], size_t mibsize)
1246 {
1247         BUG_ON(ptr == NULL);
1248         ptr[0] = __alloc_percpu(mibsize);
1249         if (!ptr[0])
1250                 goto err0;
1251         ptr[1] = __alloc_percpu(mibsize);
1252         if (!ptr[1])
1253                 goto err1;
1254         return 0;
1255 err1:
1256         free_percpu(ptr[0]);
1257         ptr[0] = NULL;
1258 err0:
1259         return -ENOMEM;
1260 }
1261 EXPORT_SYMBOL_GPL(snmp_mib_init);
1262
1263 void snmp_mib_free(void *ptr[2])
1264 {
1265         BUG_ON(ptr == NULL);
1266         free_percpu(ptr[0]);
1267         free_percpu(ptr[1]);
1268         ptr[0] = ptr[1] = NULL;
1269 }
1270 EXPORT_SYMBOL_GPL(snmp_mib_free);
1271
1272 #ifdef CONFIG_IP_MULTICAST
1273 static struct net_protocol igmp_protocol = {
1274         .handler =      igmp_rcv,
1275 };
1276 #endif
1277
1278 static struct net_protocol tcp_protocol = {
1279         .handler =      tcp_v4_rcv,
1280         .err_handler =  tcp_v4_err,
1281         .gso_send_check = tcp_v4_gso_send_check,
1282         .gso_segment =  tcp_tso_segment,
1283         .no_policy =    1,
1284 };
1285
1286 static struct net_protocol udp_protocol = {
1287         .handler =      udp_rcv,
1288         .err_handler =  udp_err,
1289         .no_policy =    1,
1290 };
1291
1292 static struct net_protocol icmp_protocol = {
1293         .handler =      icmp_rcv,
1294         .no_policy =    1,
1295 };
1296
1297 static int __init init_ipv4_mibs(void)
1298 {
1299         if (snmp_mib_init((void **)net_statistics,
1300                           sizeof(struct linux_mib)) < 0)
1301                 goto err_net_mib;
1302         if (snmp_mib_init((void **)ip_statistics,
1303                           sizeof(struct ipstats_mib)) < 0)
1304                 goto err_ip_mib;
1305         if (snmp_mib_init((void **)icmp_statistics,
1306                           sizeof(struct icmp_mib)) < 0)
1307                 goto err_icmp_mib;
1308         if (snmp_mib_init((void **)icmpmsg_statistics,
1309                           sizeof(struct icmpmsg_mib)) < 0)
1310                 goto err_icmpmsg_mib;
1311         if (snmp_mib_init((void **)tcp_statistics,
1312                           sizeof(struct tcp_mib)) < 0)
1313                 goto err_tcp_mib;
1314         if (snmp_mib_init((void **)udp_statistics,
1315                           sizeof(struct udp_mib)) < 0)
1316                 goto err_udp_mib;
1317         if (snmp_mib_init((void **)udplite_statistics,
1318                           sizeof(struct udp_mib)) < 0)
1319                 goto err_udplite_mib;
1320
1321         tcp_mib_init();
1322
1323         return 0;
1324
1325 err_udplite_mib:
1326         snmp_mib_free((void **)udp_statistics);
1327 err_udp_mib:
1328         snmp_mib_free((void **)tcp_statistics);
1329 err_tcp_mib:
1330         snmp_mib_free((void **)icmpmsg_statistics);
1331 err_icmpmsg_mib:
1332         snmp_mib_free((void **)icmp_statistics);
1333 err_icmp_mib:
1334         snmp_mib_free((void **)ip_statistics);
1335 err_ip_mib:
1336         snmp_mib_free((void **)net_statistics);
1337 err_net_mib:
1338         return -ENOMEM;
1339 }
1340
1341 static int ipv4_proc_init(void);
1342
1343 /*
1344  *      IP protocol layer initialiser
1345  */
1346
1347 static struct packet_type ip_packet_type = {
1348         .type = __constant_htons(ETH_P_IP),
1349         .func = ip_rcv,
1350         .gso_send_check = inet_gso_send_check,
1351         .gso_segment = inet_gso_segment,
1352 };
1353
1354 static int __init inet_init(void)
1355 {
1356         struct sk_buff *dummy_skb;
1357         struct inet_protosw *q;
1358         struct list_head *r;
1359         int rc = -EINVAL;
1360
1361         BUILD_BUG_ON(sizeof(struct inet_skb_parm) > sizeof(dummy_skb->cb));
1362
1363         rc = proto_register(&tcp_prot, 1);
1364         if (rc)
1365                 goto out;
1366
1367         rc = proto_register(&udp_prot, 1);
1368         if (rc)
1369                 goto out_unregister_tcp_proto;
1370
1371         rc = proto_register(&raw_prot, 1);
1372         if (rc)
1373                 goto out_unregister_udp_proto;
1374
1375         /*
1376          *      Tell SOCKET that we are alive...
1377          */
1378
1379         (void)sock_register(&inet_family_ops);
1380
1381         /*
1382          *      Add all the base protocols.
1383          */
1384
1385         if (inet_add_protocol(&icmp_protocol, IPPROTO_ICMP) < 0)
1386                 printk(KERN_CRIT "inet_init: Cannot add ICMP protocol\n");
1387         if (inet_add_protocol(&udp_protocol, IPPROTO_UDP) < 0)
1388                 printk(KERN_CRIT "inet_init: Cannot add UDP protocol\n");
1389         if (inet_add_protocol(&tcp_protocol, IPPROTO_TCP) < 0)
1390                 printk(KERN_CRIT "inet_init: Cannot add TCP protocol\n");
1391 #ifdef CONFIG_IP_MULTICAST
1392         if (inet_add_protocol(&igmp_protocol, IPPROTO_IGMP) < 0)
1393                 printk(KERN_CRIT "inet_init: Cannot add IGMP protocol\n");
1394 #endif
1395
1396         /* Register the socket-side information for inet_create. */
1397         for (r = &inetsw[0]; r < &inetsw[SOCK_MAX]; ++r)
1398                 INIT_LIST_HEAD(r);
1399
1400         for (q = inetsw_array; q < &inetsw_array[INETSW_ARRAY_LEN]; ++q)
1401                 inet_register_protosw(q);
1402
1403         /*
1404          *      Set the ARP module up
1405          */
1406
1407         arp_init();
1408
1409         /*
1410          *      Set the IP module up
1411          */
1412
1413         ip_init();
1414
1415         tcp_v4_init(&inet_family_ops);
1416
1417         /* Setup TCP slab cache for open requests. */
1418         tcp_init();
1419
1420         /* Add UDP-Lite (RFC 3828) */
1421         udplite4_register();
1422
1423         /*
1424          *      Set the ICMP layer up
1425          */
1426
1427         icmp_init(&inet_family_ops);
1428
1429         /*
1430          *      Initialise the multicast router
1431          */
1432 #if defined(CONFIG_IP_MROUTE)
1433         ip_mr_init();
1434 #endif
1435         /*
1436          *      Initialise per-cpu ipv4 mibs
1437          */
1438
1439         if (init_ipv4_mibs())
1440                 printk(KERN_CRIT "inet_init: Cannot init ipv4 mibs\n"); ;
1441
1442         ipv4_proc_init();
1443
1444         ipfrag_init();
1445
1446         dev_add_pack(&ip_packet_type);
1447
1448         rc = 0;
1449 out:
1450         return rc;
1451 out_unregister_udp_proto:
1452         proto_unregister(&udp_prot);
1453 out_unregister_tcp_proto:
1454         proto_unregister(&tcp_prot);
1455         goto out;
1456 }
1457
1458 fs_initcall(inet_init);
1459
1460 /* ------------------------------------------------------------------------ */
1461
1462 #ifdef CONFIG_PROC_FS
1463 static int __init ipv4_proc_init(void)
1464 {
1465         int rc = 0;
1466
1467         if (raw_proc_init())
1468                 goto out_raw;
1469         if (tcp4_proc_init())
1470                 goto out_tcp;
1471         if (udp4_proc_init())
1472                 goto out_udp;
1473         if (fib_proc_init())
1474                 goto out_fib;
1475         if (ip_misc_proc_init())
1476                 goto out_misc;
1477 out:
1478         return rc;
1479 out_misc:
1480         fib_proc_exit();
1481 out_fib:
1482         udp4_proc_exit();
1483 out_udp:
1484         tcp4_proc_exit();
1485 out_tcp:
1486         raw_proc_exit();
1487 out_raw:
1488         rc = -ENOMEM;
1489         goto out;
1490 }
1491
1492 #else /* CONFIG_PROC_FS */
1493 static int __init ipv4_proc_init(void)
1494 {
1495         return 0;
1496 }
1497 #endif /* CONFIG_PROC_FS */
1498
1499 MODULE_ALIAS_NETPROTO(PF_INET);
1500
1501 EXPORT_SYMBOL(inet_accept);
1502 EXPORT_SYMBOL(inet_bind);
1503 EXPORT_SYMBOL(inet_dgram_connect);
1504 EXPORT_SYMBOL(inet_dgram_ops);
1505 EXPORT_SYMBOL(inet_getname);
1506 EXPORT_SYMBOL(inet_ioctl);
1507 EXPORT_SYMBOL(inet_listen);
1508 EXPORT_SYMBOL(inet_register_protosw);
1509 EXPORT_SYMBOL(inet_release);
1510 EXPORT_SYMBOL(inet_sendmsg);
1511 EXPORT_SYMBOL(inet_shutdown);
1512 EXPORT_SYMBOL(inet_sock_destruct);
1513 EXPORT_SYMBOL(inet_stream_connect);
1514 EXPORT_SYMBOL(inet_stream_ops);
1515 EXPORT_SYMBOL(inet_unregister_protosw);
1516 EXPORT_SYMBOL(net_statistics);
1517 EXPORT_SYMBOL(sysctl_ip_nonlocal_bind);