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