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