vserver 1.9.3
[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 #include <linux/vs_limit.h>
116
117 DEFINE_SNMP_STAT(struct linux_mib, net_statistics);
118
119 #ifdef INET_REFCNT_DEBUG
120 atomic_t inet_sock_nr;
121 #endif
122
123 extern void ip_mc_drop_socket(struct sock *sk);
124
125 /* The inetsw table contains everything that inet_create needs to
126  * build a new socket.
127  */
128 static struct list_head inetsw[SOCK_MAX];
129 static spinlock_t inetsw_lock = SPIN_LOCK_UNLOCKED;
130
131 /* New destruction routine */
132
133 void inet_sock_destruct(struct sock *sk)
134 {
135         struct inet_opt *inet = inet_sk(sk);
136
137         __skb_queue_purge(&sk->sk_receive_queue);
138         __skb_queue_purge(&sk->sk_error_queue);
139
140         if (sk->sk_type == SOCK_STREAM && sk->sk_state != TCP_CLOSE) {
141                 printk("Attempt to release TCP socket in state %d %p\n",
142                        sk->sk_state, sk);
143                 return;
144         }
145         if (!sock_flag(sk, SOCK_DEAD)) {
146                 printk("Attempt to release alive inet socket %p\n", sk);
147                 return;
148         }
149
150         BUG_TRAP(!atomic_read(&sk->sk_rmem_alloc));
151         BUG_TRAP(!atomic_read(&sk->sk_wmem_alloc));
152         BUG_TRAP(!sk->sk_wmem_queued);
153         BUG_TRAP(!sk->sk_forward_alloc);
154
155         if (inet->opt)
156                 kfree(inet->opt);
157
158         vx_sock_dec(sk);
159         clr_vx_info(&sk->sk_vx_info);
160         sk->sk_xid = -1;
161         clr_nx_info(&sk->sk_nx_info);
162         sk->sk_nid = -1;
163
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 /*
235  *      Create an inet socket.
236  */
237
238 static int inet_create(struct socket *sock, int protocol)
239 {
240         struct sock *sk;
241         struct list_head *p;
242         struct inet_protosw *answer;
243         struct inet_opt *inet;
244         struct proto *answer_prot;
245         unsigned char answer_flags;
246         char answer_no_check;
247         int err;
248
249         sock->state = SS_UNCONNECTED;
250
251         /* Look for the requested type/protocol pair. */
252         answer = NULL;
253         rcu_read_lock();
254         list_for_each_rcu(p, &inetsw[sock->type]) {
255                 answer = list_entry(p, struct inet_protosw, list);
256
257                 /* Check the non-wild match. */
258                 if (protocol == answer->protocol) {
259                         if (protocol != IPPROTO_IP)
260                                 break;
261                 } else {
262                         /* Check for the two wild cases. */
263                         if (IPPROTO_IP == protocol) {
264                                 protocol = answer->protocol;
265                                 break;
266                         }
267                         if (IPPROTO_IP == answer->protocol)
268                                 break;
269                 }
270                 answer = NULL;
271         }
272
273         err = -ESOCKTNOSUPPORT;
274         if (!answer)
275                 goto out_rcu_unlock;
276         err = -EPERM;
277         if ((protocol == IPPROTO_ICMP) && vx_ccaps(VXC_RAW_ICMP))
278                 goto override;
279         if (answer->capability > 0 && !capable(answer->capability))
280                 goto out_rcu_unlock;
281 override:
282         err = -EPROTONOSUPPORT;
283         if (!protocol)
284                 goto out_rcu_unlock;
285
286         sock->ops = answer->ops;
287         answer_prot = answer->prot;
288         answer_no_check = answer->no_check;
289         answer_flags = answer->flags;
290         rcu_read_unlock();
291
292         BUG_TRAP(answer_prot->slab != NULL);
293
294         err = -ENOBUFS;
295         sk = sk_alloc(PF_INET, GFP_KERNEL,
296                       answer_prot->slab_obj_size,
297                       answer_prot->slab);
298         if (sk == NULL)
299                 goto out;
300
301         err = 0;
302         sk->sk_prot = answer_prot;
303         sk->sk_no_check = answer_no_check;
304         if (INET_PROTOSW_REUSE & answer_flags)
305                 sk->sk_reuse = 1;
306
307         inet = inet_sk(sk);
308
309         if (SOCK_RAW == sock->type) {
310                 inet->num = protocol;
311                 if (IPPROTO_RAW == protocol)
312                         inet->hdrincl = 1;
313         }
314
315         if (ipv4_config.no_pmtu_disc)
316                 inet->pmtudisc = IP_PMTUDISC_DONT;
317         else
318                 inet->pmtudisc = IP_PMTUDISC_WANT;
319
320         inet->id = 0;
321
322         sock_init_data(sock, sk);
323         sk_set_owner(sk, THIS_MODULE);
324
325         sk->sk_destruct    = inet_sock_destruct;
326         sk->sk_family      = PF_INET;
327         sk->sk_protocol    = protocol;
328         sk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
329
330         set_vx_info(&sk->sk_vx_info, current->vx_info);
331         sk->sk_xid = vx_current_xid();
332         vx_sock_inc(sk);
333         set_nx_info(&sk->sk_nx_info, current->nx_info);
334         sk->sk_nid = nx_current_nid();
335
336         inet->uc_ttl    = -1;
337         inet->mc_loop   = 1;
338         inet->mc_ttl    = 1;
339         inet->mc_index  = 0;
340         inet->mc_list   = NULL;
341
342 #ifdef INET_REFCNT_DEBUG
343         atomic_inc(&inet_sock_nr);
344 #endif
345
346         if (inet->num) {
347                 /* It assumes that any protocol which allows
348                  * the user to assign a number at socket
349                  * creation time automatically
350                  * shares.
351                  */
352                 inet->sport = htons(inet->num);
353                 /* Add to protocol hash chains. */
354                 sk->sk_prot->hash(sk);
355         }
356
357         if (sk->sk_prot->init) {
358                 err = sk->sk_prot->init(sk);
359                 if (err)
360                         sk_common_release(sk);
361         }
362 out:
363         return err;
364 out_rcu_unlock:
365         rcu_read_unlock();
366         goto out;
367 }
368
369
370 /*
371  *      The peer socket should always be NULL (or else). When we call this
372  *      function we are destroying the object and from then on nobody
373  *      should refer to it.
374  */
375 int inet_release(struct socket *sock)
376 {
377         struct sock *sk = sock->sk;
378
379         if (sk) {
380                 long timeout;
381
382                 /* Applications forget to leave groups before exiting */
383                 ip_mc_drop_socket(sk);
384
385                 /* If linger is set, we don't return until the close
386                  * is complete.  Otherwise we return immediately. The
387                  * actually closing is done the same either way.
388                  *
389                  * If the close is due to the process exiting, we never
390                  * linger..
391                  */
392                 timeout = 0;
393                 if (sock_flag(sk, SOCK_LINGER) &&
394                     !(current->flags & PF_EXITING))
395                         timeout = sk->sk_lingertime;
396                 sock->sk = NULL;
397                 vx_sock_dec(sk);
398                 clr_vx_info(&sk->sk_vx_info);
399         sk->sk_xid = -1;
400                 clr_nx_info(&sk->sk_nx_info);
401         sk->sk_nid = -1;
402                 sk->sk_prot->close(sk, timeout);
403         }
404         return 0;
405 }
406
407 /* It is off by default, see below. */
408 int sysctl_ip_nonlocal_bind;
409
410 int inet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
411 {
412         struct sockaddr_in *addr = (struct sockaddr_in *)uaddr;
413         struct sock *sk = sock->sk;
414         struct inet_opt *inet = inet_sk(sk);
415         unsigned short snum;
416         int chk_addr_ret;
417         int err;
418         __u32 s_addr;   /* Address used for validation */
419         __u32 s_addr1;  /* Address used for socket */
420         __u32 s_addr2;  /* Broadcast address for the socket */
421         struct nx_info *nxi = sk->sk_nx_info;
422
423         /* If the socket has its own bind function then use it. (RAW) */
424         if (sk->sk_prot->bind) {
425                 err = sk->sk_prot->bind(sk, uaddr, addr_len);
426                 goto out;
427         }
428         err = -EINVAL;
429         if (addr_len < sizeof(struct sockaddr_in))
430                 goto out;
431
432         s_addr = addr->sin_addr.s_addr;
433         s_addr1 = s_addr;
434         s_addr2 = 0xffffffffl;
435
436         vxdprintk(VXD_CBIT(net, 3),
437                 "inet_bind(%p)* %p,%p;%lx %d.%d.%d.%d",
438                 sk, sk->sk_nx_info, sk->sk_socket,
439                 (sk->sk_socket?sk->sk_socket->flags:0),
440                 VXD_QUAD(s_addr));
441         if (nxi) {
442                 __u32 v4_bcast = nxi->v4_bcast;
443                 __u32 ipv4root = nxi->ipv4[0];
444                 int nbipv4 = nxi->nbipv4;
445
446                 if (s_addr == 0) {
447                         /* bind to any for 1-n */
448                         s_addr = ipv4root;
449                         s_addr1 = (nbipv4 > 1) ? 0 : s_addr;
450                         s_addr2 = v4_bcast;
451                 } else if (s_addr == 0x0100007f) {
452                         /* rewrite localhost to ipv4root */
453                         s_addr = ipv4root;
454                         s_addr1 = ipv4root;
455                 } else if (s_addr != v4_bcast) {
456                         /* normal address bind */
457                         if (!addr_in_nx_info(nxi, s_addr))
458                                 return -EADDRNOTAVAIL;
459                 }
460         }
461         chk_addr_ret = inet_addr_type(s_addr);
462
463         vxdprintk(VXD_CBIT(net, 3),
464                 "inet_bind(%p) %d.%d.%d.%d, %d.%d.%d.%d, %d.%d.%d.%d",
465                 sk, VXD_QUAD(s_addr), VXD_QUAD(s_addr1), VXD_QUAD(s_addr2));
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 static 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         int rc = -EINVAL;
1058
1059         if (sizeof(struct inet_skb_parm) > sizeof(dummy_skb->cb)) {
1060                 printk(KERN_CRIT "%s: panic\n", __FUNCTION__);
1061                 goto out;
1062         }
1063
1064         rc = sk_alloc_slab(&tcp_prot, "tcp_sock");
1065         if (rc) {
1066                 sk_alloc_slab_error(&tcp_prot);
1067                 goto out;
1068         }
1069         rc = sk_alloc_slab(&udp_prot, "udp_sock");
1070         if (rc) {
1071                 sk_alloc_slab_error(&udp_prot);
1072                 goto out_tcp_free_slab;
1073         }
1074         rc = sk_alloc_slab(&raw_prot, "raw_sock");
1075         if (rc) {
1076                 sk_alloc_slab_error(&raw_prot);
1077                 goto out_udp_free_slab;
1078         }
1079
1080         /*
1081          *      Tell SOCKET that we are alive... 
1082          */
1083
1084         (void)sock_register(&inet_family_ops);
1085
1086         /*
1087          *      Add all the base protocols.
1088          */
1089
1090         if (inet_add_protocol(&icmp_protocol, IPPROTO_ICMP) < 0)
1091                 printk(KERN_CRIT "inet_init: Cannot add ICMP protocol\n");
1092         if (inet_add_protocol(&udp_protocol, IPPROTO_UDP) < 0)
1093                 printk(KERN_CRIT "inet_init: Cannot add UDP protocol\n");
1094         if (inet_add_protocol(&tcp_protocol, IPPROTO_TCP) < 0)
1095                 printk(KERN_CRIT "inet_init: Cannot add TCP protocol\n");
1096 #ifdef CONFIG_IP_MULTICAST
1097         if (inet_add_protocol(&igmp_protocol, IPPROTO_IGMP) < 0)
1098                 printk(KERN_CRIT "inet_init: Cannot add IGMP protocol\n");
1099 #endif
1100
1101         /* Register the socket-side information for inet_create. */
1102         for (r = &inetsw[0]; r < &inetsw[SOCK_MAX]; ++r)
1103                 INIT_LIST_HEAD(r);
1104
1105         for (q = inetsw_array; q < &inetsw_array[INETSW_ARRAY_LEN]; ++q)
1106                 inet_register_protosw(q);
1107
1108         /*
1109          *      Set the ARP module up
1110          */
1111
1112         arp_init();
1113
1114         /*
1115          *      Set the IP module up
1116          */
1117
1118         ip_init();
1119
1120         tcp_v4_init(&inet_family_ops);
1121
1122         /* Setup TCP slab cache for open requests. */
1123         tcp_init();
1124
1125
1126         /*
1127          *      Set the ICMP layer up
1128          */
1129
1130         icmp_init(&inet_family_ops);
1131
1132         /*
1133          *      Initialise the multicast router
1134          */
1135 #if defined(CONFIG_IP_MROUTE)
1136         ip_mr_init();
1137 #endif
1138         /*
1139          *      Initialise per-cpu ipv4 mibs
1140          */ 
1141
1142         if(init_ipv4_mibs())
1143                 printk(KERN_CRIT "inet_init: Cannot init ipv4 mibs\n"); ;
1144         
1145         ipv4_proc_init();
1146
1147         ipfrag_init();
1148
1149         rc = 0;
1150 out:
1151         return rc;
1152 out_tcp_free_slab:
1153         sk_free_slab(&tcp_prot);
1154 out_udp_free_slab:
1155         sk_free_slab(&udp_prot);
1156         goto out;
1157 }
1158
1159 module_init(inet_init);
1160
1161 /* ------------------------------------------------------------------------ */
1162
1163 #ifdef CONFIG_PROC_FS
1164 extern int  fib_proc_init(void);
1165 extern void fib_proc_exit(void);
1166 extern int  ip_misc_proc_init(void);
1167 extern int  raw_proc_init(void);
1168 extern void raw_proc_exit(void);
1169 extern int  tcp4_proc_init(void);
1170 extern void tcp4_proc_exit(void);
1171 extern int  udp4_proc_init(void);
1172 extern void udp4_proc_exit(void);
1173
1174 int __init ipv4_proc_init(void)
1175 {
1176         int rc = 0;
1177
1178         if (raw_proc_init())
1179                 goto out_raw;
1180         if (tcp4_proc_init())
1181                 goto out_tcp;
1182         if (udp4_proc_init())
1183                 goto out_udp;
1184         if (fib_proc_init())
1185                 goto out_fib;
1186         if (ip_misc_proc_init())
1187                 goto out_misc;
1188 out:
1189         return rc;
1190 out_misc:
1191         fib_proc_exit();
1192 out_fib:
1193         udp4_proc_exit();
1194 out_udp:
1195         tcp4_proc_exit();
1196 out_tcp:
1197         raw_proc_exit();
1198 out_raw:
1199         rc = -ENOMEM;
1200         goto out;
1201 }
1202
1203 #else /* CONFIG_PROC_FS */
1204 int __init ipv4_proc_init(void)
1205 {
1206         return 0;
1207 }
1208 #endif /* CONFIG_PROC_FS */
1209
1210 MODULE_ALIAS_NETPROTO(PF_INET);
1211
1212 EXPORT_SYMBOL(inet_accept);
1213 EXPORT_SYMBOL(inet_bind);
1214 EXPORT_SYMBOL(inet_dgram_connect);
1215 EXPORT_SYMBOL(inet_dgram_ops);
1216 EXPORT_SYMBOL(inet_getname);
1217 EXPORT_SYMBOL(inet_ioctl);
1218 EXPORT_SYMBOL(inet_listen);
1219 EXPORT_SYMBOL(inet_register_protosw);
1220 EXPORT_SYMBOL(inet_release);
1221 EXPORT_SYMBOL(inet_sendmsg);
1222 EXPORT_SYMBOL(inet_shutdown);
1223 EXPORT_SYMBOL(inet_sock_destruct);
1224 EXPORT_SYMBOL(inet_stream_connect);
1225 EXPORT_SYMBOL(inet_stream_ops);
1226 EXPORT_SYMBOL(inet_unregister_protosw);
1227 EXPORT_SYMBOL(net_statistics);
1228 EXPORT_SYMBOL(tcp_protocol);
1229 EXPORT_SYMBOL(udp_protocol);
1230
1231 #ifdef INET_REFCNT_DEBUG
1232 EXPORT_SYMBOL(inet_sock_nr);
1233 #endif