This commit was manufactured by cvs2svn to create tag
[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, <bir7@leland.Stanford.Edu>
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/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/major.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/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
91 #include <asm/uaccess.h>
92 #include <asm/system.h>
93
94 #include <linux/smp_lock.h>
95 #include <linux/inet.h>
96 #include <linux/igmp.h>
97 #include <linux/netdevice.h>
98 #include <net/ip.h>
99 #include <net/protocol.h>
100 #include <net/arp.h>
101 #include <net/route.h>
102 #include <net/ip_fib.h>
103 #include <net/tcp.h>
104 #include <net/udp.h>
105 #include <linux/skbuff.h>
106 #include <net/sock.h>
107 #include <net/raw.h>
108 #include <net/icmp.h>
109 #include <net/ipip.h>
110 #include <net/inet_common.h>
111 #include <net/xfrm.h>
112 #ifdef CONFIG_IP_MROUTE
113 #include <linux/mroute.h>
114 #endif
115
116 DEFINE_SNMP_STAT(struct linux_mib, net_statistics);
117
118 #ifdef INET_REFCNT_DEBUG
119 atomic_t inet_sock_nr;
120 #endif
121
122 extern void ip_mc_drop_socket(struct sock *sk);
123
124 /* Per protocol sock slabcache */
125 kmem_cache_t *tcp_sk_cachep;
126 static kmem_cache_t *udp_sk_cachep;
127 static kmem_cache_t *raw4_sk_cachep;
128
129 /* The inetsw table contains everything that inet_create needs to
130  * build a new socket.
131  */
132 static struct list_head inetsw[SOCK_MAX];
133 static spinlock_t inetsw_lock = SPIN_LOCK_UNLOCKED;
134
135 /* New destruction routine */
136
137 void inet_sock_destruct(struct sock *sk)
138 {
139         struct inet_opt *inet = inet_sk(sk);
140
141         __skb_queue_purge(&sk->sk_receive_queue);
142         __skb_queue_purge(&sk->sk_error_queue);
143
144         if (sk->sk_type == SOCK_STREAM && sk->sk_state != TCP_CLOSE) {
145                 printk("Attempt to release TCP socket in state %d %p\n",
146                        sk->sk_state, sk);
147                 return;
148         }
149         if (!sock_flag(sk, SOCK_DEAD)) {
150                 printk("Attempt to release alive inet socket %p\n", sk);
151                 return;
152         }
153
154         BUG_TRAP(!atomic_read(&sk->sk_rmem_alloc));
155         BUG_TRAP(!atomic_read(&sk->sk_wmem_alloc));
156         BUG_TRAP(!sk->sk_wmem_queued);
157         BUG_TRAP(!sk->sk_forward_alloc);
158
159         if (inet->opt)
160                 kfree(inet->opt);
161         
162         BUG_ON(sk->sk_nx_info);
163         BUG_ON(sk->sk_vx_info);
164         dst_release(sk->sk_dst_cache);
165 #ifdef INET_REFCNT_DEBUG
166         atomic_dec(&inet_sock_nr);
167         printk(KERN_DEBUG "INET socket %p released, %d are still alive\n",
168                sk, atomic_read(&inet_sock_nr));
169 #endif
170 }
171
172 /*
173  *      The routines beyond this point handle the behaviour of an AF_INET
174  *      socket object. Mostly it punts to the subprotocols of IP to do
175  *      the work.
176  */
177
178 /*
179  *      Automatically bind an unbound socket.
180  */
181
182 static int inet_autobind(struct sock *sk)
183 {
184         struct inet_opt *inet;
185         /* We may need to bind the socket. */
186         lock_sock(sk);
187         inet = inet_sk(sk);
188         if (!inet->num) {
189                 if (sk->sk_prot->get_port(sk, 0)) {
190                         release_sock(sk);
191                         return -EAGAIN;
192                 }
193                 inet->sport = htons(inet->num);
194         }
195         release_sock(sk);
196         return 0;
197 }
198
199 /*
200  *      Move a socket into listening state.
201  */
202 int inet_listen(struct socket *sock, int backlog)
203 {
204         struct sock *sk = sock->sk;
205         unsigned char old_state;
206         int err;
207
208         lock_sock(sk);
209
210         err = -EINVAL;
211         if (sock->state != SS_UNCONNECTED || sock->type != SOCK_STREAM)
212                 goto out;
213
214         old_state = sk->sk_state;
215         if (!((1 << old_state) & (TCPF_CLOSE | TCPF_LISTEN)))
216                 goto out;
217
218         /* Really, if the socket is already in listen state
219          * we can only allow the backlog to be adjusted.
220          */
221         if (old_state != TCP_LISTEN) {
222                 err = tcp_listen_start(sk);
223                 if (err)
224                         goto out;
225         }
226         sk->sk_max_ack_backlog = backlog;
227         err = 0;
228
229 out:
230         release_sock(sk);
231         return err;
232 }
233
234 static __inline__ kmem_cache_t *inet_sk_slab(int protocol)
235 {
236         kmem_cache_t* rc = tcp_sk_cachep;
237
238         if (protocol == IPPROTO_UDP)
239                 rc = udp_sk_cachep;
240         else if (protocol == IPPROTO_RAW)
241                 rc = raw4_sk_cachep;
242         return rc;
243 }
244
245 static __inline__ int inet_sk_size(int protocol)
246 {
247         int rc = sizeof(struct tcp_sock);
248
249         if (protocol == IPPROTO_UDP)
250                 rc = sizeof(struct udp_sock);
251         else if (protocol == IPPROTO_RAW)
252                 rc = sizeof(struct raw_sock);
253         return rc;
254 }
255
256 /*
257  *      Create an inet socket.
258  */
259
260 static int inet_create(struct socket *sock, int protocol)
261 {
262         struct sock *sk;
263         struct list_head *p;
264         struct inet_protosw *answer;
265         struct inet_opt *inet;
266         int err = -ENOBUFS;
267
268         sock->state = SS_UNCONNECTED;
269         sk = sk_alloc(PF_INET, GFP_KERNEL, inet_sk_size(protocol),
270                       inet_sk_slab(protocol));
271         if (!sk)
272                 goto out;
273
274         /* Look for the requested type/protocol pair. */
275         answer = NULL;
276         rcu_read_lock();
277         list_for_each_rcu(p, &inetsw[sock->type]) {
278                 answer = list_entry(p, struct inet_protosw, list);
279
280                 /* Check the non-wild match. */
281                 if (protocol == answer->protocol) {
282                         if (protocol != IPPROTO_IP)
283                                 break;
284                 } else {
285                         /* Check for the two wild cases. */
286                         if (IPPROTO_IP == protocol) {
287                                 protocol = answer->protocol;
288                                 break;
289                         }
290                         if (IPPROTO_IP == answer->protocol)
291                                 break;
292                 }
293                 answer = NULL;
294         }
295
296         err = -ESOCKTNOSUPPORT;
297         if (!answer)
298                 goto out_sk_free;
299         err = -EPERM;
300         if (answer->capability > 0 && !capable(answer->capability))
301                 goto out_sk_free;
302         err = -EPROTONOSUPPORT;
303         if (!protocol)
304                 goto out_sk_free;
305         err = 0;
306         sock->ops = answer->ops;
307         sk->sk_prot = answer->prot;
308         sk->sk_no_check = answer->no_check;
309         if (INET_PROTOSW_REUSE & answer->flags)
310                 sk->sk_reuse = 1;
311         rcu_read_unlock();
312
313         inet = inet_sk(sk);
314
315         if (SOCK_RAW == sock->type) {
316                 inet->num = protocol;
317                 if (IPPROTO_RAW == protocol)
318                         inet->hdrincl = 1;
319         }
320
321         if (ipv4_config.no_pmtu_disc)
322                 inet->pmtudisc = IP_PMTUDISC_DONT;
323         else
324                 inet->pmtudisc = IP_PMTUDISC_WANT;
325
326         inet->id = 0;
327
328         sock_init_data(sock, sk);
329         sk_set_owner(sk, THIS_MODULE);
330
331         sk->sk_destruct    = inet_sock_destruct;
332         sk->sk_zapped      = 0;
333         sk->sk_family      = PF_INET;
334         sk->sk_protocol    = protocol;
335         sk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
336         
337         set_vx_info(&sk->sk_vx_info, current->vx_info);
338         sk->sk_xid = vx_current_xid();
339         set_nx_info(&sk->sk_nx_info, current->nx_info);
340         sk->sk_nid = nx_current_nid();
341
342         inet->uc_ttl    = -1;
343         inet->mc_loop   = 1;
344         inet->mc_ttl    = 1;
345         inet->mc_index  = 0;
346         inet->mc_list   = NULL;
347
348 #ifdef INET_REFCNT_DEBUG
349         atomic_inc(&inet_sock_nr);
350 #endif
351
352         if (inet->num) {
353                 /* It assumes that any protocol which allows
354                  * the user to assign a number at socket
355                  * creation time automatically
356                  * shares.
357                  */
358                 inet->sport = htons(inet->num);
359                 /* Add to protocol hash chains. */
360                 sk->sk_prot->hash(sk);
361         }
362
363         if (sk->sk_prot->init) {
364                 err = sk->sk_prot->init(sk);
365                 if (err)
366                         sk_common_release(sk);
367         }
368 out:
369         return err;
370 out_sk_free:
371         rcu_read_unlock();
372         sk_free(sk);
373         goto out;
374 }
375
376
377 /*
378  *      The peer socket should always be NULL (or else). When we call this
379  *      function we are destroying the object and from then on nobody
380  *      should refer to it.
381  */
382 int inet_release(struct socket *sock)
383 {
384         struct sock *sk = sock->sk;
385
386         if (sk) {
387                 long timeout;
388
389                 /* Applications forget to leave groups before exiting */
390                 ip_mc_drop_socket(sk);
391
392                 /* If linger is set, we don't return until the close
393                  * is complete.  Otherwise we return immediately. The
394                  * actually closing is done the same either way.
395                  *
396                  * If the close is due to the process exiting, we never
397                  * linger..
398                  */
399                 timeout = 0;
400                 if (sock_flag(sk, SOCK_LINGER) &&
401                     !(current->flags & PF_EXITING))
402                         timeout = sk->sk_lingertime;
403                 sock->sk = NULL;
404                 clr_vx_info(&sk->sk_vx_info);
405                 clr_nx_info(&sk->sk_nx_info);
406                 sk->sk_prot->close(sk, timeout);
407         }
408         return 0;
409 }
410
411 /* It is off by default, see below. */
412 int sysctl_ip_nonlocal_bind;
413
414 int inet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
415 {
416         struct sockaddr_in *addr = (struct sockaddr_in *)uaddr;
417         struct sock *sk = sock->sk;
418         struct inet_opt *inet = inet_sk(sk);
419         unsigned short snum;
420         int chk_addr_ret;
421         int err;
422         __u32 s_addr;   /* Address used for validation */
423         __u32 s_addr1;
424         __u32 s_addr2 = 0xffffffffl;    /* Optional address of the socket */
425         struct nx_info *nxi = sk->sk_nx_info;
426
427         /* If the socket has its own bind function then use it. (RAW) */
428         if (sk->sk_prot->bind) {
429                 err = sk->sk_prot->bind(sk, uaddr, addr_len);
430                 goto out;
431         }
432         err = -EINVAL;
433         if (addr_len < sizeof(struct sockaddr_in))
434                 goto out;
435
436         s_addr = s_addr1 = addr->sin_addr.s_addr;
437         nxdprintk("inet_bind(%p) %p,%p;%lx\n",
438                 sk, nx_info, sk->sk_socket,
439                 (sk->sk_socket?sk->sk_socket->flags:0));
440         if (nxi) {
441                 __u32 v4_bcast = nxi->v4_bcast;
442                 __u32 ipv4root = nxi->ipv4[0];
443                 int nbipv4 = nxi->nbipv4;
444                 if (s_addr == 0) {
445                         s_addr = ipv4root;
446                         if (nbipv4 > 1)
447                                 s_addr1 = 0;
448                         else {
449                                 s_addr1 = ipv4root;
450                         }
451                         s_addr2 = v4_bcast;
452                 } else if (s_addr == 0x0100007f) {
453                         s_addr = s_addr1 = ipv4root;
454                 } else if (s_addr != v4_bcast) {
455                         int i;
456                         for (i=0; i<nbipv4; i++) {
457                                 if (s_addr == nxi->ipv4[i])
458                                         break;
459                         }
460                         if (i == nbipv4) {
461                                 return -EADDRNOTAVAIL;
462                         }
463                 }
464         }
465         chk_addr_ret = inet_addr_type(s_addr);
466
467         /* Not specified by any standard per-se, however it breaks too
468          * many applications when removed.  It is unfortunate since
469          * allowing applications to make a non-local bind solves
470          * several problems with systems using dynamic addressing.
471          * (ie. your servers still start up even if your ISDN link
472          *  is temporarily down)
473          */
474         err = -EADDRNOTAVAIL;
475         if (!sysctl_ip_nonlocal_bind &&
476             !inet->freebind &&
477             s_addr != INADDR_ANY &&
478             chk_addr_ret != RTN_LOCAL &&
479             chk_addr_ret != RTN_MULTICAST &&
480             chk_addr_ret != RTN_BROADCAST)
481                 goto out;
482
483         snum = ntohs(addr->sin_port);
484         err = -EACCES;
485         if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
486                 goto out;
487
488         /*      We keep a pair of addresses. rcv_saddr is the one
489          *      used by hash lookups, and saddr is used for transmit.
490          *
491          *      In the BSD API these are the same except where it
492          *      would be illegal to use them (multicast/broadcast) in
493          *      which case the sending device address is used.
494          */
495         lock_sock(sk);
496
497         /* Check these errors (active socket, double bind). */
498         err = -EINVAL;
499         if (sk->sk_state != TCP_CLOSE || inet->num)
500                 goto out_release_sock;
501
502         inet->rcv_saddr = inet->saddr = s_addr1;
503         inet->rcv_saddr2 = s_addr2;
504         if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
505                 inet->saddr = 0;  /* Use device */
506
507         /* Make sure we are allowed to bind here. */
508         if (sk->sk_prot->get_port(sk, snum)) {
509                 inet->saddr = inet->rcv_saddr = 0;
510                 err = -EADDRINUSE;
511                 goto out_release_sock;
512         }
513
514         if (inet->rcv_saddr)
515                 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
516         if (snum)
517                 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
518         inet->sport = htons(inet->num);
519         inet->daddr = 0;
520         inet->dport = 0;
521         sk_dst_reset(sk);
522         err = 0;
523 out_release_sock:
524         release_sock(sk);
525 out:
526         return err;
527 }
528
529 int inet_dgram_connect(struct socket *sock, struct sockaddr * uaddr,
530                        int addr_len, int flags)
531 {
532         struct sock *sk = sock->sk;
533
534         if (uaddr->sa_family == AF_UNSPEC)
535                 return sk->sk_prot->disconnect(sk, flags);
536
537         if (!inet_sk(sk)->num && inet_autobind(sk))
538                 return -EAGAIN;
539         return sk->sk_prot->connect(sk, (struct sockaddr *)uaddr, addr_len);
540 }
541
542 static long inet_wait_for_connect(struct sock *sk, long timeo)
543 {
544         DEFINE_WAIT(wait);
545
546         prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
547
548         /* Basic assumption: if someone sets sk->sk_err, he _must_
549          * change state of the socket from TCP_SYN_*.
550          * Connect() does not allow to get error notifications
551          * without closing the socket.
552          */
553         while ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
554                 release_sock(sk);
555                 timeo = schedule_timeout(timeo);
556                 lock_sock(sk);
557                 if (signal_pending(current) || !timeo)
558                         break;
559                 prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
560         }
561         finish_wait(sk->sk_sleep, &wait);
562         return timeo;
563 }
564
565 /*
566  *      Connect to a remote host. There is regrettably still a little
567  *      TCP 'magic' in here.
568  */
569 int inet_stream_connect(struct socket *sock, struct sockaddr *uaddr,
570                         int addr_len, int flags)
571 {
572         struct sock *sk = sock->sk;
573         int err;
574         long timeo;
575
576         lock_sock(sk);
577
578         if (uaddr->sa_family == AF_UNSPEC) {
579                 err = sk->sk_prot->disconnect(sk, flags);
580                 sock->state = err ? SS_DISCONNECTING : SS_UNCONNECTED;
581                 goto out;
582         }
583
584         switch (sock->state) {
585         default:
586                 err = -EINVAL;
587                 goto out;
588         case SS_CONNECTED:
589                 err = -EISCONN;
590                 goto out;
591         case SS_CONNECTING:
592                 err = -EALREADY;
593                 /* Fall out of switch with err, set for this state */
594                 break;
595         case SS_UNCONNECTED:
596                 err = -EISCONN;
597                 if (sk->sk_state != TCP_CLOSE)
598                         goto out;
599
600                 err = sk->sk_prot->connect(sk, uaddr, addr_len);
601                 if (err < 0)
602                         goto out;
603
604                 sock->state = SS_CONNECTING;
605
606                 /* Just entered SS_CONNECTING state; the only
607                  * difference is that return value in non-blocking
608                  * case is EINPROGRESS, rather than EALREADY.
609                  */
610                 err = -EINPROGRESS;
611                 break;
612         }
613
614         timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
615
616         if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
617                 /* Error code is set above */
618                 if (!timeo || !inet_wait_for_connect(sk, timeo))
619                         goto out;
620
621                 err = sock_intr_errno(timeo);
622                 if (signal_pending(current))
623                         goto out;
624         }
625
626         /* Connection was closed by RST, timeout, ICMP error
627          * or another process disconnected us.
628          */
629         if (sk->sk_state == TCP_CLOSE)
630                 goto sock_error;
631
632         /* sk->sk_err may be not zero now, if RECVERR was ordered by user
633          * and error was received after socket entered established state.
634          * Hence, it is handled normally after connect() return successfully.
635          */
636
637         sock->state = SS_CONNECTED;
638         err = 0;
639 out:
640         release_sock(sk);
641         return err;
642
643 sock_error:
644         err = sock_error(sk) ? : -ECONNABORTED;
645         sock->state = SS_UNCONNECTED;
646         if (sk->sk_prot->disconnect(sk, flags))
647                 sock->state = SS_DISCONNECTING;
648         goto out;
649 }
650
651 /*
652  *      Accept a pending connection. The TCP layer now gives BSD semantics.
653  */
654
655 int inet_accept(struct socket *sock, struct socket *newsock, int flags)
656 {
657         struct sock *sk1 = sock->sk;
658         int err = -EINVAL;
659         struct sock *sk2 = sk1->sk_prot->accept(sk1, flags, &err);
660
661         if (!sk2)
662                 goto do_err;
663
664         lock_sock(sk2);
665
666         BUG_TRAP((1 << sk2->sk_state) &
667                  (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT | TCPF_CLOSE));
668
669         sock_graft(sk2, newsock);
670
671         newsock->state = SS_CONNECTED;
672         err = 0;
673         release_sock(sk2);
674 do_err:
675         return err;
676 }
677
678
679 /*
680  *      This does both peername and sockname.
681  */
682 int inet_getname(struct socket *sock, struct sockaddr *uaddr,
683                         int *uaddr_len, int peer)
684 {
685         struct sock *sk         = sock->sk;
686         struct inet_opt *inet   = inet_sk(sk);
687         struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;
688
689         sin->sin_family = AF_INET;
690         if (peer) {
691                 if (!inet->dport ||
692                     (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
693                      peer == 1))
694                         return -ENOTCONN;
695                 sin->sin_port = inet->dport;
696                 sin->sin_addr.s_addr = inet->daddr;
697         } else {
698                 __u32 addr = inet->rcv_saddr;
699                 if (!addr)
700                         addr = inet->saddr;
701                 sin->sin_port = inet->sport;
702                 sin->sin_addr.s_addr = addr;
703         }
704         memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
705         *uaddr_len = sizeof(*sin);
706         return 0;
707 }
708
709 int inet_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
710                  size_t size)
711 {
712         struct sock *sk = sock->sk;
713
714         /* We may need to bind the socket. */
715         if (!inet_sk(sk)->num && inet_autobind(sk))
716                 return -EAGAIN;
717
718         return sk->sk_prot->sendmsg(iocb, sk, msg, size);
719 }
720
721
722 ssize_t inet_sendpage(struct socket *sock, struct page *page, int offset, size_t size, int flags)
723 {
724         struct sock *sk = sock->sk;
725
726         /* We may need to bind the socket. */
727         if (!inet_sk(sk)->num && inet_autobind(sk))
728                 return -EAGAIN;
729
730         if (sk->sk_prot->sendpage)
731                 return sk->sk_prot->sendpage(sk, page, offset, size, flags);
732         return sock_no_sendpage(sock, page, offset, size, flags);
733 }
734
735
736 int inet_shutdown(struct socket *sock, int how)
737 {
738         struct sock *sk = sock->sk;
739         int err = 0;
740
741         /* This should really check to make sure
742          * the socket is a TCP socket. (WHY AC...)
743          */
744         how++; /* maps 0->1 has the advantage of making bit 1 rcvs and
745                        1->2 bit 2 snds.
746                        2->3 */
747         if ((how & ~SHUTDOWN_MASK) || !how)     /* MAXINT->0 */
748                 return -EINVAL;
749
750         lock_sock(sk);
751         if (sock->state == SS_CONNECTING) {
752                 if ((1 << sk->sk_state) &
753                     (TCPF_SYN_SENT | TCPF_SYN_RECV | TCPF_CLOSE))
754                         sock->state = SS_DISCONNECTING;
755                 else
756                         sock->state = SS_CONNECTED;
757         }
758
759         switch (sk->sk_state) {
760         case TCP_CLOSE:
761                 err = -ENOTCONN;
762                 /* Hack to wake up other listeners, who can poll for
763                    POLLHUP, even on eg. unconnected UDP sockets -- RR */
764         default:
765                 sk->sk_shutdown |= how;
766                 if (sk->sk_prot->shutdown)
767                         sk->sk_prot->shutdown(sk, how);
768                 break;
769
770         /* Remaining two branches are temporary solution for missing
771          * close() in multithreaded environment. It is _not_ a good idea,
772          * but we have no choice until close() is repaired at VFS level.
773          */
774         case TCP_LISTEN:
775                 if (!(how & RCV_SHUTDOWN))
776                         break;
777                 /* Fall through */
778         case TCP_SYN_SENT:
779                 err = sk->sk_prot->disconnect(sk, O_NONBLOCK);
780                 sock->state = err ? SS_DISCONNECTING : SS_UNCONNECTED;
781                 break;
782         }
783
784         /* Wake up anyone sleeping in poll. */
785         sk->sk_state_change(sk);
786         release_sock(sk);
787         return err;
788 }
789
790 /*
791  *      ioctl() calls you can issue on an INET socket. Most of these are
792  *      device configuration and stuff and very rarely used. Some ioctls
793  *      pass on to the socket itself.
794  *
795  *      NOTE: I like the idea of a module for the config stuff. ie ifconfig
796  *      loads the devconfigure module does its configuring and unloads it.
797  *      There's a good 20K of config code hanging around the kernel.
798  */
799
800 int inet_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
801 {
802         struct sock *sk = sock->sk;
803         int err = 0;
804
805         switch (cmd) {
806                 case SIOCGSTAMP:
807                         err = sock_get_timestamp(sk, (struct timeval __user *)arg);
808                         break;
809                 case SIOCADDRT:
810                 case SIOCDELRT:
811                 case SIOCRTMSG:
812                         err = ip_rt_ioctl(cmd, (void __user *)arg);
813                         break;
814                 case SIOCDARP:
815                 case SIOCGARP:
816                 case SIOCSARP:
817                         err = arp_ioctl(cmd, (void __user *)arg);
818                         break;
819                 case SIOCGIFADDR:
820                 case SIOCSIFADDR:
821                 case SIOCGIFBRDADDR:
822                 case SIOCSIFBRDADDR:
823                 case SIOCGIFNETMASK:
824                 case SIOCSIFNETMASK:
825                 case SIOCGIFDSTADDR:
826                 case SIOCSIFDSTADDR:
827                 case SIOCSIFPFLAGS:
828                 case SIOCGIFPFLAGS:
829                 case SIOCSIFFLAGS:
830                         err = devinet_ioctl(cmd, (void __user *)arg);
831                         break;
832                 default:
833                         if (!sk->sk_prot->ioctl ||
834                             (err = sk->sk_prot->ioctl(sk, cmd, arg)) ==
835                                                                 -ENOIOCTLCMD)
836                                 err = dev_ioctl(cmd, (void __user *)arg);
837                         break;
838         }
839         return err;
840 }
841
842 struct proto_ops inet_stream_ops = {
843         .family =       PF_INET,
844         .owner =        THIS_MODULE,
845         .release =      inet_release,
846         .bind =         inet_bind,
847         .connect =      inet_stream_connect,
848         .socketpair =   sock_no_socketpair,
849         .accept =       inet_accept,
850         .getname =      inet_getname,
851         .poll =         tcp_poll,
852         .ioctl =        inet_ioctl,
853         .listen =       inet_listen,
854         .shutdown =     inet_shutdown,
855         .setsockopt =   sock_common_setsockopt,
856         .getsockopt =   sock_common_getsockopt,
857         .sendmsg =      inet_sendmsg,
858         .recvmsg =      sock_common_recvmsg,
859         .mmap =         sock_no_mmap,
860         .sendpage =     tcp_sendpage
861 };
862
863 struct proto_ops inet_dgram_ops = {
864         .family =       PF_INET,
865         .owner =        THIS_MODULE,
866         .release =      inet_release,
867         .bind =         inet_bind,
868         .connect =      inet_dgram_connect,
869         .socketpair =   sock_no_socketpair,
870         .accept =       sock_no_accept,
871         .getname =      inet_getname,
872         .poll =         datagram_poll,
873         .ioctl =        inet_ioctl,
874         .listen =       sock_no_listen,
875         .shutdown =     inet_shutdown,
876         .setsockopt =   sock_common_setsockopt,
877         .getsockopt =   sock_common_getsockopt,
878         .sendmsg =      inet_sendmsg,
879         .recvmsg =      sock_common_recvmsg,
880         .mmap =         sock_no_mmap,
881         .sendpage =     inet_sendpage,
882 };
883
884 struct net_proto_family inet_family_ops = {
885         .family = PF_INET,
886         .create = inet_create,
887         .owner  = THIS_MODULE,
888 };
889
890
891 extern void tcp_init(void);
892 extern void tcp_v4_init(struct net_proto_family *);
893
894 /* Upon startup we insert all the elements in inetsw_array[] into
895  * the linked list inetsw.
896  */
897 static struct inet_protosw inetsw_array[] =
898 {
899         {
900                 .type =       SOCK_STREAM,
901                 .protocol =   IPPROTO_TCP,
902                 .prot =       &tcp_prot,
903                 .ops =        &inet_stream_ops,
904                 .capability = -1,
905                 .no_check =   0,
906                 .flags =      INET_PROTOSW_PERMANENT,
907         },
908
909         {
910                 .type =       SOCK_DGRAM,
911                 .protocol =   IPPROTO_UDP,
912                 .prot =       &udp_prot,
913                 .ops =        &inet_dgram_ops,
914                 .capability = -1,
915                 .no_check =   UDP_CSUM_DEFAULT,
916                 .flags =      INET_PROTOSW_PERMANENT,
917        },
918         
919
920        {
921                .type =       SOCK_RAW,
922                .protocol =   IPPROTO_IP,        /* wild card */
923                .prot =       &raw_prot,
924                .ops =        &inet_dgram_ops,
925                .capability = CAP_NET_RAW,
926                .no_check =   UDP_CSUM_DEFAULT,
927                .flags =      INET_PROTOSW_REUSE,
928        }
929 };
930
931 #define INETSW_ARRAY_LEN (sizeof(inetsw_array) / sizeof(struct inet_protosw))
932
933 void inet_register_protosw(struct inet_protosw *p)
934 {
935         struct list_head *lh;
936         struct inet_protosw *answer;
937         int protocol = p->protocol;
938         struct list_head *last_perm;
939
940         spin_lock_bh(&inetsw_lock);
941
942         if (p->type >= SOCK_MAX)
943                 goto out_illegal;
944
945         /* If we are trying to override a permanent protocol, bail. */
946         answer = NULL;
947         last_perm = &inetsw[p->type];
948         list_for_each(lh, &inetsw[p->type]) {
949                 answer = list_entry(lh, struct inet_protosw, list);
950
951                 /* Check only the non-wild match. */
952                 if (INET_PROTOSW_PERMANENT & answer->flags) {
953                         if (protocol == answer->protocol)
954                                 break;
955                         last_perm = lh;
956                 }
957
958                 answer = NULL;
959         }
960         if (answer)
961                 goto out_permanent;
962
963         /* Add the new entry after the last permanent entry if any, so that
964          * the new entry does not override a permanent entry when matched with
965          * a wild-card protocol. But it is allowed to override any existing
966          * non-permanent entry.  This means that when we remove this entry, the 
967          * system automatically returns to the old behavior.
968          */
969         list_add_rcu(&p->list, last_perm);
970 out:
971         spin_unlock_bh(&inetsw_lock);
972
973         synchronize_net();
974
975         return;
976
977 out_permanent:
978         printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
979                protocol);
980         goto out;
981
982 out_illegal:
983         printk(KERN_ERR
984                "Ignoring attempt to register invalid socket type %d.\n",
985                p->type);
986         goto out;
987 }
988
989 void inet_unregister_protosw(struct inet_protosw *p)
990 {
991         if (INET_PROTOSW_PERMANENT & p->flags) {
992                 printk(KERN_ERR
993                        "Attempt to unregister permanent protocol %d.\n",
994                        p->protocol);
995         } else {
996                 spin_lock_bh(&inetsw_lock);
997                 list_del_rcu(&p->list);
998                 spin_unlock_bh(&inetsw_lock);
999
1000                 synchronize_net();
1001         }
1002 }
1003
1004 #ifdef CONFIG_IP_MULTICAST
1005 static struct net_protocol igmp_protocol = {
1006         .handler =      igmp_rcv,
1007 };
1008 #endif
1009
1010 static struct net_protocol tcp_protocol = {
1011         .handler =      tcp_v4_rcv,
1012         .err_handler =  tcp_v4_err,
1013         .no_policy =    1,
1014 };
1015
1016 static struct net_protocol udp_protocol = {
1017         .handler =      udp_rcv,
1018         .err_handler =  udp_err,
1019         .no_policy =    1,
1020 };
1021
1022 static struct net_protocol icmp_protocol = {
1023         .handler =      icmp_rcv,
1024 };
1025
1026 static int __init init_ipv4_mibs(void)
1027 {
1028         net_statistics[0] = alloc_percpu(struct linux_mib);
1029         net_statistics[1] = alloc_percpu(struct linux_mib);
1030         ip_statistics[0] = alloc_percpu(struct ipstats_mib);
1031         ip_statistics[1] = alloc_percpu(struct ipstats_mib);
1032         icmp_statistics[0] = alloc_percpu(struct icmp_mib);
1033         icmp_statistics[1] = alloc_percpu(struct icmp_mib);
1034         tcp_statistics[0] = alloc_percpu(struct tcp_mib);
1035         tcp_statistics[1] = alloc_percpu(struct tcp_mib);
1036         udp_statistics[0] = alloc_percpu(struct udp_mib);
1037         udp_statistics[1] = alloc_percpu(struct udp_mib);
1038         if (!
1039             (net_statistics[0] && net_statistics[1] && ip_statistics[0]
1040              && ip_statistics[1] && tcp_statistics[0] && tcp_statistics[1]
1041              && udp_statistics[0] && udp_statistics[1]))
1042                 return -ENOMEM;
1043
1044         (void) tcp_mib_init();
1045
1046         return 0;
1047 }
1048
1049 int ipv4_proc_init(void);
1050 extern void ipfrag_init(void);
1051
1052 static int __init inet_init(void)
1053 {
1054         struct sk_buff *dummy_skb;
1055         struct inet_protosw *q;
1056         struct list_head *r;
1057
1058         if (sizeof(struct inet_skb_parm) > sizeof(dummy_skb->cb)) {
1059                 printk(KERN_CRIT "%s: panic\n", __FUNCTION__);
1060                 return -EINVAL;
1061         }
1062
1063         tcp_sk_cachep = kmem_cache_create("tcp_sock",
1064                                           sizeof(struct tcp_sock), 0,
1065                                           SLAB_HWCACHE_ALIGN, NULL, NULL);
1066         udp_sk_cachep = kmem_cache_create("udp_sock",
1067                                           sizeof(struct udp_sock), 0,
1068                                           SLAB_HWCACHE_ALIGN, NULL, NULL);
1069         raw4_sk_cachep = kmem_cache_create("raw4_sock",
1070                                            sizeof(struct raw_sock), 0,
1071                                            SLAB_HWCACHE_ALIGN, NULL, NULL);
1072         if (!tcp_sk_cachep || !udp_sk_cachep || !raw4_sk_cachep)
1073                 printk(KERN_CRIT
1074                        "inet_init: Can't create protocol sock SLAB caches!\n");
1075         /*
1076          *      Tell SOCKET that we are alive... 
1077          */
1078
1079         (void)sock_register(&inet_family_ops);
1080
1081         /*
1082          *      Add all the base protocols.
1083          */
1084
1085         if (inet_add_protocol(&icmp_protocol, IPPROTO_ICMP) < 0)
1086                 printk(KERN_CRIT "inet_init: Cannot add ICMP protocol\n");
1087         if (inet_add_protocol(&udp_protocol, IPPROTO_UDP) < 0)
1088                 printk(KERN_CRIT "inet_init: Cannot add UDP protocol\n");
1089         if (inet_add_protocol(&tcp_protocol, IPPROTO_TCP) < 0)
1090                 printk(KERN_CRIT "inet_init: Cannot add TCP protocol\n");
1091 #ifdef CONFIG_IP_MULTICAST
1092         if (inet_add_protocol(&igmp_protocol, IPPROTO_IGMP) < 0)
1093                 printk(KERN_CRIT "inet_init: Cannot add IGMP protocol\n");
1094 #endif
1095
1096         /* Register the socket-side information for inet_create. */
1097         for (r = &inetsw[0]; r < &inetsw[SOCK_MAX]; ++r)
1098                 INIT_LIST_HEAD(r);
1099
1100         for (q = inetsw_array; q < &inetsw_array[INETSW_ARRAY_LEN]; ++q)
1101                 inet_register_protosw(q);
1102
1103         /*
1104          *      Set the ARP module up
1105          */
1106
1107         arp_init();
1108
1109         /*
1110          *      Set the IP module up
1111          */
1112
1113         ip_init();
1114
1115         tcp_v4_init(&inet_family_ops);
1116
1117         /* Setup TCP slab cache for open requests. */
1118         tcp_init();
1119
1120
1121         /*
1122          *      Set the ICMP layer up
1123          */
1124
1125         icmp_init(&inet_family_ops);
1126
1127         /*
1128          *      Initialise the multicast router
1129          */
1130 #if defined(CONFIG_IP_MROUTE)
1131         ip_mr_init();
1132 #endif
1133         /*
1134          *      Initialise per-cpu ipv4 mibs
1135          */ 
1136
1137         if(init_ipv4_mibs())
1138                 printk(KERN_CRIT "inet_init: Cannot init ipv4 mibs\n"); ;
1139         
1140         ipv4_proc_init();
1141
1142         ipfrag_init();
1143
1144         return 0;
1145 }
1146
1147 module_init(inet_init);
1148
1149 /* ------------------------------------------------------------------------ */
1150
1151 #ifdef CONFIG_PROC_FS
1152 extern int  fib_proc_init(void);
1153 extern void fib_proc_exit(void);
1154 extern int  ip_misc_proc_init(void);
1155 extern int  raw_proc_init(void);
1156 extern void raw_proc_exit(void);
1157 extern int  tcp4_proc_init(void);
1158 extern void tcp4_proc_exit(void);
1159 extern int  udp4_proc_init(void);
1160 extern void udp4_proc_exit(void);
1161
1162 int __init ipv4_proc_init(void)
1163 {
1164         int rc = 0;
1165
1166         if (raw_proc_init())
1167                 goto out_raw;
1168         if (tcp4_proc_init())
1169                 goto out_tcp;
1170         if (udp4_proc_init())
1171                 goto out_udp;
1172         if (fib_proc_init())
1173                 goto out_fib;
1174         if (ip_misc_proc_init())
1175                 goto out_misc;
1176 out:
1177         return rc;
1178 out_misc:
1179         fib_proc_exit();
1180 out_fib:
1181         udp4_proc_exit();
1182 out_udp:
1183         tcp4_proc_exit();
1184 out_tcp:
1185         raw_proc_exit();
1186 out_raw:
1187         rc = -ENOMEM;
1188         goto out;
1189 }
1190
1191 #else /* CONFIG_PROC_FS */
1192 int __init ipv4_proc_init(void)
1193 {
1194         return 0;
1195 }
1196 #endif /* CONFIG_PROC_FS */
1197
1198 MODULE_ALIAS_NETPROTO(PF_INET);
1199
1200 EXPORT_SYMBOL(inet_accept);
1201 EXPORT_SYMBOL(inet_bind);
1202 EXPORT_SYMBOL(inet_dgram_connect);
1203 EXPORT_SYMBOL(inet_dgram_ops);
1204 EXPORT_SYMBOL(inet_family_ops);
1205 EXPORT_SYMBOL(inet_getname);
1206 EXPORT_SYMBOL(inet_ioctl);
1207 EXPORT_SYMBOL(inet_listen);
1208 EXPORT_SYMBOL(inet_register_protosw);
1209 EXPORT_SYMBOL(inet_release);
1210 EXPORT_SYMBOL(inet_sendmsg);
1211 EXPORT_SYMBOL(inet_shutdown);
1212 EXPORT_SYMBOL(inet_sock_destruct);
1213 EXPORT_SYMBOL(inet_stream_connect);
1214 EXPORT_SYMBOL(inet_stream_ops);
1215 EXPORT_SYMBOL(inet_unregister_protosw);
1216 EXPORT_SYMBOL(net_statistics);
1217 EXPORT_SYMBOL(tcp_protocol);
1218 EXPORT_SYMBOL(udp_protocol);
1219
1220 #ifdef INET_REFCNT_DEBUG
1221 EXPORT_SYMBOL(inet_sock_nr);
1222 #endif