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 #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, sk->sk_prot->owner);
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
419         /* If the socket has its own bind function then use it. (RAW) */
420         if (sk->sk_prot->bind) {
421                 err = sk->sk_prot->bind(sk, uaddr, addr_len);
422                 goto out;
423         }
424         err = -EINVAL;
425         if (addr_len < sizeof(struct sockaddr_in))
426                 goto out;
427
428         chk_addr_ret = inet_addr_type(addr->sin_addr.s_addr);
429
430         /* Not specified by any standard per-se, however it breaks too
431          * many applications when removed.  It is unfortunate since
432          * allowing applications to make a non-local bind solves
433          * several problems with systems using dynamic addressing.
434          * (ie. your servers still start up even if your ISDN link
435          *  is temporarily down)
436          */
437         err = -EADDRNOTAVAIL;
438         if (!sysctl_ip_nonlocal_bind &&
439             !inet->freebind &&
440             addr->sin_addr.s_addr != INADDR_ANY &&
441             chk_addr_ret != RTN_LOCAL &&
442             chk_addr_ret != RTN_MULTICAST &&
443             chk_addr_ret != RTN_BROADCAST)
444                 goto out;
445
446         snum = ntohs(addr->sin_port);
447         err = -EACCES;
448         if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
449                 goto out;
450
451         /*      We keep a pair of addresses. rcv_saddr is the one
452          *      used by hash lookups, and saddr is used for transmit.
453          *
454          *      In the BSD API these are the same except where it
455          *      would be illegal to use them (multicast/broadcast) in
456          *      which case the sending device address is used.
457          */
458         lock_sock(sk);
459
460         /* Check these errors (active socket, double bind). */
461         err = -EINVAL;
462         if (sk->sk_state != TCP_CLOSE || inet->num)
463                 goto out_release_sock;
464
465         inet->rcv_saddr = inet->saddr = addr->sin_addr.s_addr;
466         if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
467                 inet->saddr = 0;  /* Use device */
468
469         /* Make sure we are allowed to bind here. */
470         if (sk->sk_prot->get_port(sk, snum)) {
471                 inet->saddr = inet->rcv_saddr = 0;
472                 err = -EADDRINUSE;
473                 goto out_release_sock;
474         }
475
476         if (inet->rcv_saddr)
477                 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
478         if (snum)
479                 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
480         inet->sport = htons(inet->num);
481         inet->daddr = 0;
482         inet->dport = 0;
483         sk_dst_reset(sk);
484         err = 0;
485 out_release_sock:
486         release_sock(sk);
487 out:
488         return err;
489 }
490
491 int inet_dgram_connect(struct socket *sock, struct sockaddr * uaddr,
492                        int addr_len, int flags)
493 {
494         struct sock *sk = sock->sk;
495
496         if (uaddr->sa_family == AF_UNSPEC)
497                 return sk->sk_prot->disconnect(sk, flags);
498
499         if (!inet_sk(sk)->num && inet_autobind(sk))
500                 return -EAGAIN;
501         return sk->sk_prot->connect(sk, (struct sockaddr *)uaddr, addr_len);
502 }
503
504 static long inet_wait_for_connect(struct sock *sk, long timeo)
505 {
506         DEFINE_WAIT(wait);
507
508         prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
509
510         /* Basic assumption: if someone sets sk->sk_err, he _must_
511          * change state of the socket from TCP_SYN_*.
512          * Connect() does not allow to get error notifications
513          * without closing the socket.
514          */
515         while ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
516                 release_sock(sk);
517                 timeo = schedule_timeout(timeo);
518                 lock_sock(sk);
519                 if (signal_pending(current) || !timeo)
520                         break;
521                 prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
522         }
523         finish_wait(sk->sk_sleep, &wait);
524         return timeo;
525 }
526
527 /*
528  *      Connect to a remote host. There is regrettably still a little
529  *      TCP 'magic' in here.
530  */
531 int inet_stream_connect(struct socket *sock, struct sockaddr *uaddr,
532                         int addr_len, int flags)
533 {
534         struct sock *sk = sock->sk;
535         int err;
536         long timeo;
537
538         lock_sock(sk);
539
540         if (uaddr->sa_family == AF_UNSPEC) {
541                 err = sk->sk_prot->disconnect(sk, flags);
542                 sock->state = err ? SS_DISCONNECTING : SS_UNCONNECTED;
543                 goto out;
544         }
545
546         switch (sock->state) {
547         default:
548                 err = -EINVAL;
549                 goto out;
550         case SS_CONNECTED:
551                 err = -EISCONN;
552                 goto out;
553         case SS_CONNECTING:
554                 err = -EALREADY;
555                 /* Fall out of switch with err, set for this state */
556                 break;
557         case SS_UNCONNECTED:
558                 err = -EISCONN;
559                 if (sk->sk_state != TCP_CLOSE)
560                         goto out;
561
562                 err = sk->sk_prot->connect(sk, uaddr, addr_len);
563                 if (err < 0)
564                         goto out;
565
566                 sock->state = SS_CONNECTING;
567
568                 /* Just entered SS_CONNECTING state; the only
569                  * difference is that return value in non-blocking
570                  * case is EINPROGRESS, rather than EALREADY.
571                  */
572                 err = -EINPROGRESS;
573                 break;
574         }
575
576         timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
577
578         if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
579                 /* Error code is set above */
580                 if (!timeo || !inet_wait_for_connect(sk, timeo))
581                         goto out;
582
583                 err = sock_intr_errno(timeo);
584                 if (signal_pending(current))
585                         goto out;
586         }
587
588         /* Connection was closed by RST, timeout, ICMP error
589          * or another process disconnected us.
590          */
591         if (sk->sk_state == TCP_CLOSE)
592                 goto sock_error;
593
594         /* sk->sk_err may be not zero now, if RECVERR was ordered by user
595          * and error was received after socket entered established state.
596          * Hence, it is handled normally after connect() return successfully.
597          */
598
599         sock->state = SS_CONNECTED;
600         err = 0;
601 out:
602         release_sock(sk);
603         return err;
604
605 sock_error:
606         err = sock_error(sk) ? : -ECONNABORTED;
607         sock->state = SS_UNCONNECTED;
608         if (sk->sk_prot->disconnect(sk, flags))
609                 sock->state = SS_DISCONNECTING;
610         goto out;
611 }
612
613 /*
614  *      Accept a pending connection. The TCP layer now gives BSD semantics.
615  */
616
617 int inet_accept(struct socket *sock, struct socket *newsock, int flags)
618 {
619         struct sock *sk1 = sock->sk;
620         int err = -EINVAL;
621         struct sock *sk2 = sk1->sk_prot->accept(sk1, flags, &err);
622
623         if (!sk2)
624                 goto do_err;
625
626         lock_sock(sk2);
627
628         BUG_TRAP((1 << sk2->sk_state) &
629                  (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT | TCPF_CLOSE));
630
631         sock_graft(sk2, newsock);
632
633         newsock->state = SS_CONNECTED;
634         err = 0;
635         release_sock(sk2);
636 do_err:
637         return err;
638 }
639
640
641 /*
642  *      This does both peername and sockname.
643  */
644 int inet_getname(struct socket *sock, struct sockaddr *uaddr,
645                         int *uaddr_len, int peer)
646 {
647         struct sock *sk         = sock->sk;
648         struct inet_opt *inet   = inet_sk(sk);
649         struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;
650
651         sin->sin_family = AF_INET;
652         if (peer) {
653                 if (!inet->dport ||
654                     (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
655                      peer == 1))
656                         return -ENOTCONN;
657                 sin->sin_port = inet->dport;
658                 sin->sin_addr.s_addr = inet->daddr;
659         } else {
660                 __u32 addr = inet->rcv_saddr;
661                 if (!addr)
662                         addr = inet->saddr;
663                 sin->sin_port = inet->sport;
664                 sin->sin_addr.s_addr = addr;
665         }
666         memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
667         *uaddr_len = sizeof(*sin);
668         return 0;
669 }
670
671 int inet_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
672                  size_t size)
673 {
674         struct sock *sk = sock->sk;
675
676         /* We may need to bind the socket. */
677         if (!inet_sk(sk)->num && inet_autobind(sk))
678                 return -EAGAIN;
679
680         return sk->sk_prot->sendmsg(iocb, sk, msg, size);
681 }
682
683
684 ssize_t inet_sendpage(struct socket *sock, struct page *page, int offset, size_t size, int flags)
685 {
686         struct sock *sk = sock->sk;
687
688         /* We may need to bind the socket. */
689         if (!inet_sk(sk)->num && inet_autobind(sk))
690                 return -EAGAIN;
691
692         if (sk->sk_prot->sendpage)
693                 return sk->sk_prot->sendpage(sk, page, offset, size, flags);
694         return sock_no_sendpage(sock, page, offset, size, flags);
695 }
696
697
698 int inet_shutdown(struct socket *sock, int how)
699 {
700         struct sock *sk = sock->sk;
701         int err = 0;
702
703         /* This should really check to make sure
704          * the socket is a TCP socket. (WHY AC...)
705          */
706         how++; /* maps 0->1 has the advantage of making bit 1 rcvs and
707                        1->2 bit 2 snds.
708                        2->3 */
709         if ((how & ~SHUTDOWN_MASK) || !how)     /* MAXINT->0 */
710                 return -EINVAL;
711
712         lock_sock(sk);
713         if (sock->state == SS_CONNECTING) {
714                 if ((1 << sk->sk_state) &
715                     (TCPF_SYN_SENT | TCPF_SYN_RECV | TCPF_CLOSE))
716                         sock->state = SS_DISCONNECTING;
717                 else
718                         sock->state = SS_CONNECTED;
719         }
720
721         switch (sk->sk_state) {
722         case TCP_CLOSE:
723                 err = -ENOTCONN;
724                 /* Hack to wake up other listeners, who can poll for
725                    POLLHUP, even on eg. unconnected UDP sockets -- RR */
726         default:
727                 sk->sk_shutdown |= how;
728                 if (sk->sk_prot->shutdown)
729                         sk->sk_prot->shutdown(sk, how);
730                 break;
731
732         /* Remaining two branches are temporary solution for missing
733          * close() in multithreaded environment. It is _not_ a good idea,
734          * but we have no choice until close() is repaired at VFS level.
735          */
736         case TCP_LISTEN:
737                 if (!(how & RCV_SHUTDOWN))
738                         break;
739                 /* Fall through */
740         case TCP_SYN_SENT:
741                 err = sk->sk_prot->disconnect(sk, O_NONBLOCK);
742                 sock->state = err ? SS_DISCONNECTING : SS_UNCONNECTED;
743                 break;
744         }
745
746         /* Wake up anyone sleeping in poll. */
747         sk->sk_state_change(sk);
748         release_sock(sk);
749         return err;
750 }
751
752 /*
753  *      ioctl() calls you can issue on an INET socket. Most of these are
754  *      device configuration and stuff and very rarely used. Some ioctls
755  *      pass on to the socket itself.
756  *
757  *      NOTE: I like the idea of a module for the config stuff. ie ifconfig
758  *      loads the devconfigure module does its configuring and unloads it.
759  *      There's a good 20K of config code hanging around the kernel.
760  */
761
762 int inet_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
763 {
764         struct sock *sk = sock->sk;
765         int err = 0;
766
767         switch (cmd) {
768                 case SIOCGSTAMP:
769                         err = sock_get_timestamp(sk, (struct timeval __user *)arg);
770                         break;
771                 case SIOCADDRT:
772                 case SIOCDELRT:
773                 case SIOCRTMSG:
774                         err = ip_rt_ioctl(cmd, (void __user *)arg);
775                         break;
776                 case SIOCDARP:
777                 case SIOCGARP:
778                 case SIOCSARP:
779                         err = arp_ioctl(cmd, (void __user *)arg);
780                         break;
781                 case SIOCGIFADDR:
782                 case SIOCSIFADDR:
783                 case SIOCGIFBRDADDR:
784                 case SIOCSIFBRDADDR:
785                 case SIOCGIFNETMASK:
786                 case SIOCSIFNETMASK:
787                 case SIOCGIFDSTADDR:
788                 case SIOCSIFDSTADDR:
789                 case SIOCSIFPFLAGS:
790                 case SIOCGIFPFLAGS:
791                 case SIOCSIFFLAGS:
792                         err = devinet_ioctl(cmd, (void __user *)arg);
793                         break;
794                 default:
795                         if (!sk->sk_prot->ioctl ||
796                             (err = sk->sk_prot->ioctl(sk, cmd, arg)) ==
797                                                                 -ENOIOCTLCMD)
798                                 err = dev_ioctl(cmd, (void __user *)arg);
799                         break;
800         }
801         return err;
802 }
803
804 struct proto_ops inet_stream_ops = {
805         .family =       PF_INET,
806         .owner =        THIS_MODULE,
807         .release =      inet_release,
808         .bind =         inet_bind,
809         .connect =      inet_stream_connect,
810         .socketpair =   sock_no_socketpair,
811         .accept =       inet_accept,
812         .getname =      inet_getname,
813         .poll =         tcp_poll,
814         .ioctl =        inet_ioctl,
815         .listen =       inet_listen,
816         .shutdown =     inet_shutdown,
817         .setsockopt =   sock_common_setsockopt,
818         .getsockopt =   sock_common_getsockopt,
819         .sendmsg =      inet_sendmsg,
820         .recvmsg =      sock_common_recvmsg,
821         .mmap =         sock_no_mmap,
822         .sendpage =     tcp_sendpage
823 };
824
825 struct proto_ops inet_dgram_ops = {
826         .family =       PF_INET,
827         .owner =        THIS_MODULE,
828         .release =      inet_release,
829         .bind =         inet_bind,
830         .connect =      inet_dgram_connect,
831         .socketpair =   sock_no_socketpair,
832         .accept =       sock_no_accept,
833         .getname =      inet_getname,
834         .poll =         udp_poll,
835         .ioctl =        inet_ioctl,
836         .listen =       sock_no_listen,
837         .shutdown =     inet_shutdown,
838         .setsockopt =   sock_common_setsockopt,
839         .getsockopt =   sock_common_getsockopt,
840         .sendmsg =      inet_sendmsg,
841         .recvmsg =      sock_common_recvmsg,
842         .mmap =         sock_no_mmap,
843         .sendpage =     inet_sendpage,
844 };
845
846 /*
847  * For SOCK_RAW sockets; should be the same as inet_dgram_ops but without
848  * udp_poll
849  */
850 static struct proto_ops inet_sockraw_ops = {
851         .family =       PF_INET,
852         .owner =        THIS_MODULE,
853         .release =      inet_release,
854         .bind =         inet_bind,
855         .connect =      inet_dgram_connect,
856         .socketpair =   sock_no_socketpair,
857         .accept =       sock_no_accept,
858         .getname =      inet_getname,
859         .poll =         datagram_poll,
860         .ioctl =        inet_ioctl,
861         .listen =       sock_no_listen,
862         .shutdown =     inet_shutdown,
863         .setsockopt =   sock_common_setsockopt,
864         .getsockopt =   sock_common_getsockopt,
865         .sendmsg =      inet_sendmsg,
866         .recvmsg =      sock_common_recvmsg,
867         .mmap =         sock_no_mmap,
868         .sendpage =     inet_sendpage,
869 };
870
871 #if defined(CONFIG_VNET) || defined(CONFIG_VNET_MODULE)
872 int vnet_active = 0;
873 EXPORT_SYMBOL(vnet_active);
874 struct net_proto_family inet_family_ops;
875 EXPORT_SYMBOL(inet_family_ops);
876 #else
877 static
878 #endif
879 struct net_proto_family inet_family_ops = {
880         .family = PF_INET,
881         .create = inet_create,
882         .owner  = THIS_MODULE,
883 };
884
885
886 extern void tcp_init(void);
887 extern void tcp_v4_init(struct net_proto_family *);
888
889 /* Upon startup we insert all the elements in inetsw_array[] into
890  * the linked list inetsw.
891  */
892 static struct inet_protosw inetsw_array[] =
893 {
894         {
895                 .type =       SOCK_STREAM,
896                 .protocol =   IPPROTO_TCP,
897                 .prot =       &tcp_prot,
898                 .ops =        &inet_stream_ops,
899                 .capability = -1,
900                 .no_check =   0,
901                 .flags =      INET_PROTOSW_PERMANENT,
902         },
903
904         {
905                 .type =       SOCK_DGRAM,
906                 .protocol =   IPPROTO_UDP,
907                 .prot =       &udp_prot,
908                 .ops =        &inet_dgram_ops,
909                 .capability = -1,
910                 .no_check =   UDP_CSUM_DEFAULT,
911                 .flags =      INET_PROTOSW_PERMANENT,
912        },
913         
914
915        {
916                .type =       SOCK_RAW,
917                .protocol =   IPPROTO_IP,        /* wild card */
918                .prot =       &raw_prot,
919                .ops =        &inet_sockraw_ops,
920                .capability = CAP_NET_RAW,
921                .no_check =   UDP_CSUM_DEFAULT,
922                .flags =      INET_PROTOSW_REUSE,
923        }
924 };
925
926 #define INETSW_ARRAY_LEN (sizeof(inetsw_array) / sizeof(struct inet_protosw))
927
928 void inet_register_protosw(struct inet_protosw *p)
929 {
930         struct list_head *lh;
931         struct inet_protosw *answer;
932         int protocol = p->protocol;
933         struct list_head *last_perm;
934
935         spin_lock_bh(&inetsw_lock);
936
937         if (p->type >= SOCK_MAX)
938                 goto out_illegal;
939
940         /* If we are trying to override a permanent protocol, bail. */
941         answer = NULL;
942         last_perm = &inetsw[p->type];
943         list_for_each(lh, &inetsw[p->type]) {
944                 answer = list_entry(lh, struct inet_protosw, list);
945
946                 /* Check only the non-wild match. */
947                 if (INET_PROTOSW_PERMANENT & answer->flags) {
948                         if (protocol == answer->protocol)
949                                 break;
950                         last_perm = lh;
951                 }
952
953                 answer = NULL;
954         }
955         if (answer)
956                 goto out_permanent;
957
958         /* Add the new entry after the last permanent entry if any, so that
959          * the new entry does not override a permanent entry when matched with
960          * a wild-card protocol. But it is allowed to override any existing
961          * non-permanent entry.  This means that when we remove this entry, the 
962          * system automatically returns to the old behavior.
963          */
964         list_add_rcu(&p->list, last_perm);
965 out:
966         spin_unlock_bh(&inetsw_lock);
967
968         synchronize_net();
969
970         return;
971
972 out_permanent:
973         printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
974                protocol);
975         goto out;
976
977 out_illegal:
978         printk(KERN_ERR
979                "Ignoring attempt to register invalid socket type %d.\n",
980                p->type);
981         goto out;
982 }
983
984 void inet_unregister_protosw(struct inet_protosw *p)
985 {
986         if (INET_PROTOSW_PERMANENT & p->flags) {
987                 printk(KERN_ERR
988                        "Attempt to unregister permanent protocol %d.\n",
989                        p->protocol);
990         } else {
991                 spin_lock_bh(&inetsw_lock);
992                 list_del_rcu(&p->list);
993                 spin_unlock_bh(&inetsw_lock);
994
995                 synchronize_net();
996         }
997 }
998
999 #ifdef CONFIG_IP_MULTICAST
1000 static struct net_protocol igmp_protocol = {
1001         .handler =      igmp_rcv,
1002 };
1003 #endif
1004
1005 static struct net_protocol tcp_protocol = {
1006         .handler =      tcp_v4_rcv,
1007         .err_handler =  tcp_v4_err,
1008         .no_policy =    1,
1009 };
1010
1011 static struct net_protocol udp_protocol = {
1012         .handler =      udp_rcv,
1013         .err_handler =  udp_err,
1014         .no_policy =    1,
1015 };
1016
1017 static struct net_protocol icmp_protocol = {
1018         .handler =      icmp_rcv,
1019 };
1020
1021 static int __init init_ipv4_mibs(void)
1022 {
1023         net_statistics[0] = alloc_percpu(struct linux_mib);
1024         net_statistics[1] = alloc_percpu(struct linux_mib);
1025         ip_statistics[0] = alloc_percpu(struct ipstats_mib);
1026         ip_statistics[1] = alloc_percpu(struct ipstats_mib);
1027         icmp_statistics[0] = alloc_percpu(struct icmp_mib);
1028         icmp_statistics[1] = alloc_percpu(struct icmp_mib);
1029         tcp_statistics[0] = alloc_percpu(struct tcp_mib);
1030         tcp_statistics[1] = alloc_percpu(struct tcp_mib);
1031         udp_statistics[0] = alloc_percpu(struct udp_mib);
1032         udp_statistics[1] = alloc_percpu(struct udp_mib);
1033         if (!
1034             (net_statistics[0] && net_statistics[1] && ip_statistics[0]
1035              && ip_statistics[1] && tcp_statistics[0] && tcp_statistics[1]
1036              && udp_statistics[0] && udp_statistics[1]))
1037                 return -ENOMEM;
1038
1039         (void) tcp_mib_init();
1040
1041         return 0;
1042 }
1043
1044 int ipv4_proc_init(void);
1045 extern void ipfrag_init(void);
1046
1047 static int __init inet_init(void)
1048 {
1049         struct sk_buff *dummy_skb;
1050         struct inet_protosw *q;
1051         struct list_head *r;
1052         int rc = -EINVAL;
1053
1054         if (sizeof(struct inet_skb_parm) > sizeof(dummy_skb->cb)) {
1055                 printk(KERN_CRIT "%s: panic\n", __FUNCTION__);
1056                 goto out;
1057         }
1058
1059         rc = sk_alloc_slab(&tcp_prot, "tcp_sock");
1060         if (rc) {
1061                 sk_alloc_slab_error(&tcp_prot);
1062                 goto out;
1063         }
1064         rc = sk_alloc_slab(&udp_prot, "udp_sock");
1065         if (rc) {
1066                 sk_alloc_slab_error(&udp_prot);
1067                 goto out_tcp_free_slab;
1068         }
1069         rc = sk_alloc_slab(&raw_prot, "raw_sock");
1070         if (rc) {
1071                 sk_alloc_slab_error(&raw_prot);
1072                 goto out_udp_free_slab;
1073         }
1074
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         rc = 0;
1145 out:
1146         return rc;
1147 out_tcp_free_slab:
1148         sk_free_slab(&tcp_prot);
1149 out_udp_free_slab:
1150         sk_free_slab(&udp_prot);
1151         goto out;
1152 }
1153
1154 module_init(inet_init);
1155
1156 /* ------------------------------------------------------------------------ */
1157
1158 #ifdef CONFIG_PROC_FS
1159 extern int  fib_proc_init(void);
1160 extern void fib_proc_exit(void);
1161 extern int  ip_misc_proc_init(void);
1162 extern int  raw_proc_init(void);
1163 extern void raw_proc_exit(void);
1164 extern int  tcp4_proc_init(void);
1165 extern void tcp4_proc_exit(void);
1166 extern int  udp4_proc_init(void);
1167 extern void udp4_proc_exit(void);
1168
1169 int __init ipv4_proc_init(void)
1170 {
1171         int rc = 0;
1172
1173         if (raw_proc_init())
1174                 goto out_raw;
1175         if (tcp4_proc_init())
1176                 goto out_tcp;
1177         if (udp4_proc_init())
1178                 goto out_udp;
1179         if (fib_proc_init())
1180                 goto out_fib;
1181         if (ip_misc_proc_init())
1182                 goto out_misc;
1183 out:
1184         return rc;
1185 out_misc:
1186         fib_proc_exit();
1187 out_fib:
1188         udp4_proc_exit();
1189 out_udp:
1190         tcp4_proc_exit();
1191 out_tcp:
1192         raw_proc_exit();
1193 out_raw:
1194         rc = -ENOMEM;
1195         goto out;
1196 }
1197
1198 #else /* CONFIG_PROC_FS */
1199 int __init ipv4_proc_init(void)
1200 {
1201         return 0;
1202 }
1203 #endif /* CONFIG_PROC_FS */
1204
1205 MODULE_ALIAS_NETPROTO(PF_INET);
1206
1207 EXPORT_SYMBOL(inet_accept);
1208 EXPORT_SYMBOL(inet_bind);
1209 EXPORT_SYMBOL(inet_dgram_connect);
1210 EXPORT_SYMBOL(inet_dgram_ops);
1211 EXPORT_SYMBOL(inet_getname);
1212 EXPORT_SYMBOL(inet_ioctl);
1213 EXPORT_SYMBOL(inet_listen);
1214 EXPORT_SYMBOL(inet_register_protosw);
1215 EXPORT_SYMBOL(inet_release);
1216 EXPORT_SYMBOL(inet_sendmsg);
1217 EXPORT_SYMBOL(inet_shutdown);
1218 EXPORT_SYMBOL(inet_sock_destruct);
1219 EXPORT_SYMBOL(inet_stream_connect);
1220 EXPORT_SYMBOL(inet_stream_ops);
1221 EXPORT_SYMBOL(inet_unregister_protosw);
1222 EXPORT_SYMBOL(net_statistics);
1223
1224 #ifdef INET_REFCNT_DEBUG
1225 EXPORT_SYMBOL(inet_sock_nr);
1226 #endif