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