]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/ipv4/af_inet.c
[IPSEC]: Added xfrm_decode_session_reverse and xfrmX_policy_check_reverse
[net-next-2.6.git] / net / ipv4 / af_inet.c
CommitLineData
1da177e4
LT
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 *
02c30a84 10 * Authors: Ross Biro
1da177e4
LT
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
f4c50d99 70#include <linux/err.h>
1da177e4
LT
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>
1da177e4
LT
76#include <linux/module.h>
77#include <linux/sched.h>
78#include <linux/timer.h>
79#include <linux/string.h>
80#include <linux/sockios.h>
81#include <linux/net.h>
4fc268d2 82#include <linux/capability.h>
1da177e4
LT
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>
b3da2cf3 90#include <linux/random.h>
1da177e4
LT
91
92#include <asm/uaccess.h>
93#include <asm/system.h>
94
1da177e4
LT
95#include <linux/inet.h>
96#include <linux/igmp.h>
14c85021 97#include <linux/inetdevice.h>
1da177e4
LT
98#include <linux/netdevice.h>
99#include <net/ip.h>
100#include <net/protocol.h>
101#include <net/arp.h>
102#include <net/route.h>
103#include <net/ip_fib.h>
295f7324 104#include <net/inet_connection_sock.h>
1da177e4
LT
105#include <net/tcp.h>
106#include <net/udp.h>
ba4e58ec 107#include <net/udplite.h>
1da177e4
LT
108#include <linux/skbuff.h>
109#include <net/sock.h>
110#include <net/raw.h>
111#include <net/icmp.h>
112#include <net/ipip.h>
113#include <net/inet_common.h>
114#include <net/xfrm.h>
115#ifdef CONFIG_IP_MROUTE
116#include <linux/mroute.h>
117#endif
118
ba89966c 119DEFINE_SNMP_STAT(struct linux_mib, net_statistics) __read_mostly;
1da177e4 120
1da177e4
LT
121extern void ip_mc_drop_socket(struct sock *sk);
122
123/* The inetsw table contains everything that inet_create needs to
124 * build a new socket.
125 */
126static struct list_head inetsw[SOCK_MAX];
127static DEFINE_SPINLOCK(inetsw_lock);
128
9ba63979
PE
129struct ipv4_config ipv4_config;
130
131EXPORT_SYMBOL(ipv4_config);
132
1da177e4
LT
133/* New destruction routine */
134
135void inet_sock_destruct(struct sock *sk)
136{
137 struct inet_sock *inet = inet_sk(sk);
138
139 __skb_queue_purge(&sk->sk_receive_queue);
140 __skb_queue_purge(&sk->sk_error_queue);
141
142 if (sk->sk_type == SOCK_STREAM && sk->sk_state != TCP_CLOSE) {
143 printk("Attempt to release TCP socket in state %d %p\n",
144 sk->sk_state, sk);
145 return;
146 }
147 if (!sock_flag(sk, SOCK_DEAD)) {
148 printk("Attempt to release alive inet socket %p\n", sk);
149 return;
150 }
151
152 BUG_TRAP(!atomic_read(&sk->sk_rmem_alloc));
153 BUG_TRAP(!atomic_read(&sk->sk_wmem_alloc));
154 BUG_TRAP(!sk->sk_wmem_queued);
155 BUG_TRAP(!sk->sk_forward_alloc);
156
a51482bd 157 kfree(inet->opt);
1da177e4 158 dst_release(sk->sk_dst_cache);
e6848976 159 sk_refcnt_debug_dec(sk);
1da177e4
LT
160}
161
162/*
163 * The routines beyond this point handle the behaviour of an AF_INET
164 * socket object. Mostly it punts to the subprotocols of IP to do
165 * the work.
166 */
167
168/*
169 * Automatically bind an unbound socket.
170 */
171
172static int inet_autobind(struct sock *sk)
173{
174 struct inet_sock *inet;
175 /* We may need to bind the socket. */
176 lock_sock(sk);
177 inet = inet_sk(sk);
178 if (!inet->num) {
179 if (sk->sk_prot->get_port(sk, 0)) {
180 release_sock(sk);
181 return -EAGAIN;
182 }
183 inet->sport = htons(inet->num);
184 }
185 release_sock(sk);
186 return 0;
187}
188
189/*
190 * Move a socket into listening state.
191 */
192int inet_listen(struct socket *sock, int backlog)
193{
194 struct sock *sk = sock->sk;
195 unsigned char old_state;
196 int err;
197
198 lock_sock(sk);
199
200 err = -EINVAL;
201 if (sock->state != SS_UNCONNECTED || sock->type != SOCK_STREAM)
202 goto out;
203
204 old_state = sk->sk_state;
205 if (!((1 << old_state) & (TCPF_CLOSE | TCPF_LISTEN)))
206 goto out;
207
208 /* Really, if the socket is already in listen state
209 * we can only allow the backlog to be adjusted.
210 */
211 if (old_state != TCP_LISTEN) {
72a3effa 212 err = inet_csk_listen_start(sk, backlog);
1da177e4
LT
213 if (err)
214 goto out;
215 }
216 sk->sk_max_ack_backlog = backlog;
217 err = 0;
218
219out:
220 release_sock(sk);
221 return err;
222}
223
be776281 224u32 inet_ehash_secret __read_mostly;
b3da2cf3
DM
225EXPORT_SYMBOL(inet_ehash_secret);
226
be776281
ED
227/*
228 * inet_ehash_secret must be set exactly once
229 * Instead of using a dedicated spinlock, we (ab)use inetsw_lock
230 */
b3da2cf3
DM
231void build_ehash_secret(void)
232{
be776281
ED
233 u32 rnd;
234 do {
235 get_random_bytes(&rnd, sizeof(rnd));
236 } while (rnd == 0);
237 spin_lock_bh(&inetsw_lock);
238 if (!inet_ehash_secret)
239 inet_ehash_secret = rnd;
240 spin_unlock_bh(&inetsw_lock);
b3da2cf3
DM
241}
242EXPORT_SYMBOL(build_ehash_secret);
243
1da177e4
LT
244/*
245 * Create an inet socket.
246 */
247
1b8d7ae4 248static int inet_create(struct net *net, struct socket *sock, int protocol)
1da177e4
LT
249{
250 struct sock *sk;
251 struct list_head *p;
252 struct inet_protosw *answer;
253 struct inet_sock *inet;
254 struct proto *answer_prot;
255 unsigned char answer_flags;
256 char answer_no_check;
bb97d31f 257 int try_loading_module = 0;
86c8f9d1 258 int err;
1da177e4 259
1b8d7ae4
EB
260 if (net != &init_net)
261 return -EAFNOSUPPORT;
262
b3da2cf3
DM
263 if (sock->type != SOCK_RAW &&
264 sock->type != SOCK_DGRAM &&
265 !inet_ehash_secret)
266 build_ehash_secret();
267
1da177e4
LT
268 sock->state = SS_UNCONNECTED;
269
270 /* Look for the requested type/protocol pair. */
271 answer = NULL;
bb97d31f 272lookup_protocol:
86c8f9d1 273 err = -ESOCKTNOSUPPORT;
1da177e4
LT
274 rcu_read_lock();
275 list_for_each_rcu(p, &inetsw[sock->type]) {
276 answer = list_entry(p, struct inet_protosw, list);
277
278 /* Check the non-wild match. */
279 if (protocol == answer->protocol) {
280 if (protocol != IPPROTO_IP)
281 break;
282 } else {
283 /* Check for the two wild cases. */
284 if (IPPROTO_IP == protocol) {
285 protocol = answer->protocol;
286 break;
287 }
288 if (IPPROTO_IP == answer->protocol)
289 break;
290 }
86c8f9d1 291 err = -EPROTONOSUPPORT;
1da177e4
LT
292 answer = NULL;
293 }
294
bb97d31f
ACM
295 if (unlikely(answer == NULL)) {
296 if (try_loading_module < 2) {
297 rcu_read_unlock();
298 /*
299 * Be more specific, e.g. net-pf-2-proto-132-type-1
300 * (net-pf-PF_INET-proto-IPPROTO_SCTP-type-SOCK_STREAM)
301 */
302 if (++try_loading_module == 1)
303 request_module("net-pf-%d-proto-%d-type-%d",
304 PF_INET, protocol, sock->type);
305 /*
306 * Fall back to generic, e.g. net-pf-2-proto-132
307 * (net-pf-PF_INET-proto-IPPROTO_SCTP)
308 */
309 else
310 request_module("net-pf-%d-proto-%d",
311 PF_INET, protocol);
312 goto lookup_protocol;
313 } else
314 goto out_rcu_unlock;
315 }
316
1da177e4
LT
317 err = -EPERM;
318 if (answer->capability > 0 && !capable(answer->capability))
319 goto out_rcu_unlock;
1da177e4
LT
320
321 sock->ops = answer->ops;
322 answer_prot = answer->prot;
323 answer_no_check = answer->no_check;
324 answer_flags = answer->flags;
325 rcu_read_unlock();
326
327 BUG_TRAP(answer_prot->slab != NULL);
328
329 err = -ENOBUFS;
6257ff21 330 sk = sk_alloc(net, PF_INET, GFP_KERNEL, answer_prot);
1da177e4
LT
331 if (sk == NULL)
332 goto out;
333
334 err = 0;
335 sk->sk_no_check = answer_no_check;
336 if (INET_PROTOSW_REUSE & answer_flags)
337 sk->sk_reuse = 1;
338
339 inet = inet_sk(sk);
469de9b9 340 inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) != 0;
1da177e4
LT
341
342 if (SOCK_RAW == sock->type) {
343 inet->num = protocol;
344 if (IPPROTO_RAW == protocol)
345 inet->hdrincl = 1;
346 }
347
348 if (ipv4_config.no_pmtu_disc)
349 inet->pmtudisc = IP_PMTUDISC_DONT;
350 else
351 inet->pmtudisc = IP_PMTUDISC_WANT;
352
353 inet->id = 0;
354
355 sock_init_data(sock, sk);
356
357 sk->sk_destruct = inet_sock_destruct;
358 sk->sk_family = PF_INET;
359 sk->sk_protocol = protocol;
360 sk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
361
362 inet->uc_ttl = -1;
363 inet->mc_loop = 1;
364 inet->mc_ttl = 1;
365 inet->mc_index = 0;
366 inet->mc_list = NULL;
367
e6848976 368 sk_refcnt_debug_inc(sk);
1da177e4
LT
369
370 if (inet->num) {
371 /* It assumes that any protocol which allows
372 * the user to assign a number at socket
373 * creation time automatically
374 * shares.
375 */
376 inet->sport = htons(inet->num);
377 /* Add to protocol hash chains. */
378 sk->sk_prot->hash(sk);
379 }
380
381 if (sk->sk_prot->init) {
382 err = sk->sk_prot->init(sk);
383 if (err)
384 sk_common_release(sk);
385 }
386out:
387 return err;
388out_rcu_unlock:
389 rcu_read_unlock();
390 goto out;
391}
392
393
394/*
395 * The peer socket should always be NULL (or else). When we call this
396 * function we are destroying the object and from then on nobody
397 * should refer to it.
398 */
399int inet_release(struct socket *sock)
400{
401 struct sock *sk = sock->sk;
402
403 if (sk) {
404 long timeout;
405
406 /* Applications forget to leave groups before exiting */
407 ip_mc_drop_socket(sk);
408
409 /* If linger is set, we don't return until the close
410 * is complete. Otherwise we return immediately. The
411 * actually closing is done the same either way.
412 *
413 * If the close is due to the process exiting, we never
414 * linger..
415 */
416 timeout = 0;
417 if (sock_flag(sk, SOCK_LINGER) &&
418 !(current->flags & PF_EXITING))
419 timeout = sk->sk_lingertime;
420 sock->sk = NULL;
421 sk->sk_prot->close(sk, timeout);
422 }
423 return 0;
424}
425
426/* It is off by default, see below. */
ab32ea5d 427int sysctl_ip_nonlocal_bind __read_mostly;
1da177e4
LT
428
429int inet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
430{
431 struct sockaddr_in *addr = (struct sockaddr_in *)uaddr;
432 struct sock *sk = sock->sk;
433 struct inet_sock *inet = inet_sk(sk);
434 unsigned short snum;
435 int chk_addr_ret;
436 int err;
437
438 /* If the socket has its own bind function then use it. (RAW) */
439 if (sk->sk_prot->bind) {
440 err = sk->sk_prot->bind(sk, uaddr, addr_len);
441 goto out;
442 }
443 err = -EINVAL;
444 if (addr_len < sizeof(struct sockaddr_in))
445 goto out;
446
447 chk_addr_ret = inet_addr_type(addr->sin_addr.s_addr);
448
449 /* Not specified by any standard per-se, however it breaks too
450 * many applications when removed. It is unfortunate since
451 * allowing applications to make a non-local bind solves
452 * several problems with systems using dynamic addressing.
453 * (ie. your servers still start up even if your ISDN link
454 * is temporarily down)
455 */
456 err = -EADDRNOTAVAIL;
457 if (!sysctl_ip_nonlocal_bind &&
458 !inet->freebind &&
459 addr->sin_addr.s_addr != INADDR_ANY &&
460 chk_addr_ret != RTN_LOCAL &&
461 chk_addr_ret != RTN_MULTICAST &&
462 chk_addr_ret != RTN_BROADCAST)
463 goto out;
464
465 snum = ntohs(addr->sin_port);
466 err = -EACCES;
467 if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
468 goto out;
469
470 /* We keep a pair of addresses. rcv_saddr is the one
471 * used by hash lookups, and saddr is used for transmit.
472 *
473 * In the BSD API these are the same except where it
474 * would be illegal to use them (multicast/broadcast) in
475 * which case the sending device address is used.
476 */
477 lock_sock(sk);
478
479 /* Check these errors (active socket, double bind). */
480 err = -EINVAL;
481 if (sk->sk_state != TCP_CLOSE || inet->num)
482 goto out_release_sock;
483
484 inet->rcv_saddr = inet->saddr = addr->sin_addr.s_addr;
485 if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
486 inet->saddr = 0; /* Use device */
487
488 /* Make sure we are allowed to bind here. */
489 if (sk->sk_prot->get_port(sk, snum)) {
490 inet->saddr = inet->rcv_saddr = 0;
491 err = -EADDRINUSE;
492 goto out_release_sock;
493 }
494
495 if (inet->rcv_saddr)
496 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
497 if (snum)
498 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
499 inet->sport = htons(inet->num);
500 inet->daddr = 0;
501 inet->dport = 0;
502 sk_dst_reset(sk);
503 err = 0;
504out_release_sock:
505 release_sock(sk);
506out:
507 return err;
508}
509
510int inet_dgram_connect(struct socket *sock, struct sockaddr * uaddr,
511 int addr_len, int flags)
512{
513 struct sock *sk = sock->sk;
514
515 if (uaddr->sa_family == AF_UNSPEC)
516 return sk->sk_prot->disconnect(sk, flags);
517
518 if (!inet_sk(sk)->num && inet_autobind(sk))
519 return -EAGAIN;
520 return sk->sk_prot->connect(sk, (struct sockaddr *)uaddr, addr_len);
521}
522
523static long inet_wait_for_connect(struct sock *sk, long timeo)
524{
525 DEFINE_WAIT(wait);
526
527 prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
528
529 /* Basic assumption: if someone sets sk->sk_err, he _must_
530 * change state of the socket from TCP_SYN_*.
531 * Connect() does not allow to get error notifications
532 * without closing the socket.
533 */
534 while ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
535 release_sock(sk);
536 timeo = schedule_timeout(timeo);
537 lock_sock(sk);
538 if (signal_pending(current) || !timeo)
539 break;
540 prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
541 }
542 finish_wait(sk->sk_sleep, &wait);
543 return timeo;
544}
545
546/*
547 * Connect to a remote host. There is regrettably still a little
548 * TCP 'magic' in here.
549 */
550int inet_stream_connect(struct socket *sock, struct sockaddr *uaddr,
551 int addr_len, int flags)
552{
553 struct sock *sk = sock->sk;
554 int err;
555 long timeo;
556
557 lock_sock(sk);
558
559 if (uaddr->sa_family == AF_UNSPEC) {
560 err = sk->sk_prot->disconnect(sk, flags);
561 sock->state = err ? SS_DISCONNECTING : SS_UNCONNECTED;
562 goto out;
563 }
564
565 switch (sock->state) {
566 default:
567 err = -EINVAL;
568 goto out;
569 case SS_CONNECTED:
570 err = -EISCONN;
571 goto out;
572 case SS_CONNECTING:
573 err = -EALREADY;
574 /* Fall out of switch with err, set for this state */
575 break;
576 case SS_UNCONNECTED:
577 err = -EISCONN;
578 if (sk->sk_state != TCP_CLOSE)
579 goto out;
580
581 err = sk->sk_prot->connect(sk, uaddr, addr_len);
582 if (err < 0)
583 goto out;
584
e905a9ed 585 sock->state = SS_CONNECTING;
1da177e4
LT
586
587 /* Just entered SS_CONNECTING state; the only
588 * difference is that return value in non-blocking
589 * case is EINPROGRESS, rather than EALREADY.
590 */
591 err = -EINPROGRESS;
592 break;
593 }
594
595 timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
596
597 if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
598 /* Error code is set above */
599 if (!timeo || !inet_wait_for_connect(sk, timeo))
600 goto out;
601
602 err = sock_intr_errno(timeo);
603 if (signal_pending(current))
604 goto out;
605 }
606
607 /* Connection was closed by RST, timeout, ICMP error
608 * or another process disconnected us.
609 */
610 if (sk->sk_state == TCP_CLOSE)
611 goto sock_error;
612
613 /* sk->sk_err may be not zero now, if RECVERR was ordered by user
614 * and error was received after socket entered established state.
615 * Hence, it is handled normally after connect() return successfully.
616 */
617
618 sock->state = SS_CONNECTED;
619 err = 0;
620out:
621 release_sock(sk);
622 return err;
623
624sock_error:
625 err = sock_error(sk) ? : -ECONNABORTED;
626 sock->state = SS_UNCONNECTED;
627 if (sk->sk_prot->disconnect(sk, flags))
628 sock->state = SS_DISCONNECTING;
629 goto out;
630}
631
632/*
633 * Accept a pending connection. The TCP layer now gives BSD semantics.
634 */
635
636int inet_accept(struct socket *sock, struct socket *newsock, int flags)
637{
638 struct sock *sk1 = sock->sk;
639 int err = -EINVAL;
640 struct sock *sk2 = sk1->sk_prot->accept(sk1, flags, &err);
641
642 if (!sk2)
643 goto do_err;
644
645 lock_sock(sk2);
646
647 BUG_TRAP((1 << sk2->sk_state) &
648 (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT | TCPF_CLOSE));
649
650 sock_graft(sk2, newsock);
651
652 newsock->state = SS_CONNECTED;
653 err = 0;
654 release_sock(sk2);
655do_err:
656 return err;
657}
658
659
660/*
661 * This does both peername and sockname.
662 */
663int inet_getname(struct socket *sock, struct sockaddr *uaddr,
664 int *uaddr_len, int peer)
665{
666 struct sock *sk = sock->sk;
667 struct inet_sock *inet = inet_sk(sk);
668 struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;
669
670 sin->sin_family = AF_INET;
671 if (peer) {
672 if (!inet->dport ||
673 (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
674 peer == 1))
675 return -ENOTCONN;
676 sin->sin_port = inet->dport;
677 sin->sin_addr.s_addr = inet->daddr;
678 } else {
714e85be 679 __be32 addr = inet->rcv_saddr;
1da177e4
LT
680 if (!addr)
681 addr = inet->saddr;
682 sin->sin_port = inet->sport;
683 sin->sin_addr.s_addr = addr;
684 }
685 memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
686 *uaddr_len = sizeof(*sin);
687 return 0;
688}
689
690int inet_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
691 size_t size)
692{
693 struct sock *sk = sock->sk;
694
695 /* We may need to bind the socket. */
696 if (!inet_sk(sk)->num && inet_autobind(sk))
697 return -EAGAIN;
698
699 return sk->sk_prot->sendmsg(iocb, sk, msg, size);
700}
701
702
703static ssize_t inet_sendpage(struct socket *sock, struct page *page, int offset, size_t size, int flags)
704{
705 struct sock *sk = sock->sk;
706
707 /* We may need to bind the socket. */
708 if (!inet_sk(sk)->num && inet_autobind(sk))
709 return -EAGAIN;
710
711 if (sk->sk_prot->sendpage)
712 return sk->sk_prot->sendpage(sk, page, offset, size, flags);
713 return sock_no_sendpage(sock, page, offset, size, flags);
714}
715
716
717int inet_shutdown(struct socket *sock, int how)
718{
719 struct sock *sk = sock->sk;
720 int err = 0;
721
722 /* This should really check to make sure
723 * the socket is a TCP socket. (WHY AC...)
724 */
725 how++; /* maps 0->1 has the advantage of making bit 1 rcvs and
726 1->2 bit 2 snds.
727 2->3 */
728 if ((how & ~SHUTDOWN_MASK) || !how) /* MAXINT->0 */
729 return -EINVAL;
730
731 lock_sock(sk);
732 if (sock->state == SS_CONNECTING) {
733 if ((1 << sk->sk_state) &
734 (TCPF_SYN_SENT | TCPF_SYN_RECV | TCPF_CLOSE))
735 sock->state = SS_DISCONNECTING;
736 else
737 sock->state = SS_CONNECTED;
738 }
739
740 switch (sk->sk_state) {
741 case TCP_CLOSE:
742 err = -ENOTCONN;
743 /* Hack to wake up other listeners, who can poll for
744 POLLHUP, even on eg. unconnected UDP sockets -- RR */
745 default:
746 sk->sk_shutdown |= how;
747 if (sk->sk_prot->shutdown)
748 sk->sk_prot->shutdown(sk, how);
749 break;
750
751 /* Remaining two branches are temporary solution for missing
752 * close() in multithreaded environment. It is _not_ a good idea,
753 * but we have no choice until close() is repaired at VFS level.
754 */
755 case TCP_LISTEN:
756 if (!(how & RCV_SHUTDOWN))
757 break;
758 /* Fall through */
759 case TCP_SYN_SENT:
760 err = sk->sk_prot->disconnect(sk, O_NONBLOCK);
761 sock->state = err ? SS_DISCONNECTING : SS_UNCONNECTED;
762 break;
763 }
764
765 /* Wake up anyone sleeping in poll. */
766 sk->sk_state_change(sk);
767 release_sock(sk);
768 return err;
769}
770
771/*
772 * ioctl() calls you can issue on an INET socket. Most of these are
773 * device configuration and stuff and very rarely used. Some ioctls
774 * pass on to the socket itself.
775 *
776 * NOTE: I like the idea of a module for the config stuff. ie ifconfig
777 * loads the devconfigure module does its configuring and unloads it.
778 * There's a good 20K of config code hanging around the kernel.
779 */
780
781int inet_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
782{
783 struct sock *sk = sock->sk;
784 int err = 0;
785
786 switch (cmd) {
787 case SIOCGSTAMP:
788 err = sock_get_timestamp(sk, (struct timeval __user *)arg);
789 break;
ae40eb1e
ED
790 case SIOCGSTAMPNS:
791 err = sock_get_timestampns(sk, (struct timespec __user *)arg);
792 break;
1da177e4
LT
793 case SIOCADDRT:
794 case SIOCDELRT:
795 case SIOCRTMSG:
796 err = ip_rt_ioctl(cmd, (void __user *)arg);
797 break;
798 case SIOCDARP:
799 case SIOCGARP:
800 case SIOCSARP:
801 err = arp_ioctl(cmd, (void __user *)arg);
802 break;
803 case SIOCGIFADDR:
804 case SIOCSIFADDR:
805 case SIOCGIFBRDADDR:
806 case SIOCSIFBRDADDR:
807 case SIOCGIFNETMASK:
808 case SIOCSIFNETMASK:
809 case SIOCGIFDSTADDR:
810 case SIOCSIFDSTADDR:
811 case SIOCSIFPFLAGS:
812 case SIOCGIFPFLAGS:
813 case SIOCSIFFLAGS:
814 err = devinet_ioctl(cmd, (void __user *)arg);
815 break;
816 default:
b5e5fa5e
CH
817 if (sk->sk_prot->ioctl)
818 err = sk->sk_prot->ioctl(sk, cmd, arg);
819 else
820 err = -ENOIOCTLCMD;
1da177e4
LT
821 break;
822 }
823 return err;
824}
825
90ddc4f0 826const struct proto_ops inet_stream_ops = {
543d9cfe
ACM
827 .family = PF_INET,
828 .owner = THIS_MODULE,
829 .release = inet_release,
830 .bind = inet_bind,
831 .connect = inet_stream_connect,
832 .socketpair = sock_no_socketpair,
833 .accept = inet_accept,
834 .getname = inet_getname,
835 .poll = tcp_poll,
836 .ioctl = inet_ioctl,
837 .listen = inet_listen,
838 .shutdown = inet_shutdown,
839 .setsockopt = sock_common_setsockopt,
840 .getsockopt = sock_common_getsockopt,
3516ffb0 841 .sendmsg = tcp_sendmsg,
543d9cfe
ACM
842 .recvmsg = sock_common_recvmsg,
843 .mmap = sock_no_mmap,
844 .sendpage = tcp_sendpage,
9c55e01c 845 .splice_read = tcp_splice_read,
3fdadf7d 846#ifdef CONFIG_COMPAT
543d9cfe
ACM
847 .compat_setsockopt = compat_sock_common_setsockopt,
848 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 849#endif
1da177e4
LT
850};
851
90ddc4f0 852const struct proto_ops inet_dgram_ops = {
543d9cfe
ACM
853 .family = PF_INET,
854 .owner = THIS_MODULE,
855 .release = inet_release,
856 .bind = inet_bind,
857 .connect = inet_dgram_connect,
858 .socketpair = sock_no_socketpair,
859 .accept = sock_no_accept,
860 .getname = inet_getname,
861 .poll = udp_poll,
862 .ioctl = inet_ioctl,
863 .listen = sock_no_listen,
864 .shutdown = inet_shutdown,
865 .setsockopt = sock_common_setsockopt,
866 .getsockopt = sock_common_getsockopt,
867 .sendmsg = inet_sendmsg,
868 .recvmsg = sock_common_recvmsg,
869 .mmap = sock_no_mmap,
870 .sendpage = inet_sendpage,
3fdadf7d 871#ifdef CONFIG_COMPAT
543d9cfe
ACM
872 .compat_setsockopt = compat_sock_common_setsockopt,
873 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 874#endif
1da177e4
LT
875};
876
877/*
878 * For SOCK_RAW sockets; should be the same as inet_dgram_ops but without
879 * udp_poll
880 */
90ddc4f0 881static const struct proto_ops inet_sockraw_ops = {
543d9cfe
ACM
882 .family = PF_INET,
883 .owner = THIS_MODULE,
884 .release = inet_release,
885 .bind = inet_bind,
886 .connect = inet_dgram_connect,
887 .socketpair = sock_no_socketpair,
888 .accept = sock_no_accept,
889 .getname = inet_getname,
890 .poll = datagram_poll,
891 .ioctl = inet_ioctl,
892 .listen = sock_no_listen,
893 .shutdown = inet_shutdown,
894 .setsockopt = sock_common_setsockopt,
895 .getsockopt = sock_common_getsockopt,
896 .sendmsg = inet_sendmsg,
897 .recvmsg = sock_common_recvmsg,
898 .mmap = sock_no_mmap,
899 .sendpage = inet_sendpage,
3fdadf7d 900#ifdef CONFIG_COMPAT
543d9cfe
ACM
901 .compat_setsockopt = compat_sock_common_setsockopt,
902 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 903#endif
1da177e4
LT
904};
905
906static struct net_proto_family inet_family_ops = {
907 .family = PF_INET,
908 .create = inet_create,
909 .owner = THIS_MODULE,
910};
911
1da177e4
LT
912/* Upon startup we insert all the elements in inetsw_array[] into
913 * the linked list inetsw.
914 */
915static struct inet_protosw inetsw_array[] =
916{
e905a9ed
YH
917 {
918 .type = SOCK_STREAM,
919 .protocol = IPPROTO_TCP,
920 .prot = &tcp_prot,
921 .ops = &inet_stream_ops,
922 .capability = -1,
923 .no_check = 0,
924 .flags = INET_PROTOSW_PERMANENT |
d83d8461 925 INET_PROTOSW_ICSK,
e905a9ed
YH
926 },
927
928 {
929 .type = SOCK_DGRAM,
930 .protocol = IPPROTO_UDP,
931 .prot = &udp_prot,
932 .ops = &inet_dgram_ops,
933 .capability = -1,
934 .no_check = UDP_CSUM_DEFAULT,
935 .flags = INET_PROTOSW_PERMANENT,
1da177e4 936 },
e905a9ed 937
1da177e4
LT
938
939 {
e905a9ed
YH
940 .type = SOCK_RAW,
941 .protocol = IPPROTO_IP, /* wild card */
942 .prot = &raw_prot,
943 .ops = &inet_sockraw_ops,
944 .capability = CAP_NET_RAW,
945 .no_check = UDP_CSUM_DEFAULT,
946 .flags = INET_PROTOSW_REUSE,
1da177e4
LT
947 }
948};
949
c40f6fff 950#define INETSW_ARRAY_LEN ARRAY_SIZE(inetsw_array)
1da177e4
LT
951
952void inet_register_protosw(struct inet_protosw *p)
953{
954 struct list_head *lh;
955 struct inet_protosw *answer;
956 int protocol = p->protocol;
957 struct list_head *last_perm;
958
959 spin_lock_bh(&inetsw_lock);
960
961 if (p->type >= SOCK_MAX)
962 goto out_illegal;
963
964 /* If we are trying to override a permanent protocol, bail. */
965 answer = NULL;
966 last_perm = &inetsw[p->type];
967 list_for_each(lh, &inetsw[p->type]) {
968 answer = list_entry(lh, struct inet_protosw, list);
969
970 /* Check only the non-wild match. */
971 if (INET_PROTOSW_PERMANENT & answer->flags) {
972 if (protocol == answer->protocol)
973 break;
974 last_perm = lh;
975 }
976
977 answer = NULL;
978 }
979 if (answer)
980 goto out_permanent;
981
982 /* Add the new entry after the last permanent entry if any, so that
983 * the new entry does not override a permanent entry when matched with
984 * a wild-card protocol. But it is allowed to override any existing
e905a9ed 985 * non-permanent entry. This means that when we remove this entry, the
1da177e4
LT
986 * system automatically returns to the old behavior.
987 */
988 list_add_rcu(&p->list, last_perm);
989out:
990 spin_unlock_bh(&inetsw_lock);
991
992 synchronize_net();
993
994 return;
995
996out_permanent:
997 printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
998 protocol);
999 goto out;
1000
1001out_illegal:
1002 printk(KERN_ERR
1003 "Ignoring attempt to register invalid socket type %d.\n",
1004 p->type);
1005 goto out;
1006}
1007
1008void inet_unregister_protosw(struct inet_protosw *p)
1009{
1010 if (INET_PROTOSW_PERMANENT & p->flags) {
1011 printk(KERN_ERR
1012 "Attempt to unregister permanent protocol %d.\n",
1013 p->protocol);
1014 } else {
1015 spin_lock_bh(&inetsw_lock);
1016 list_del_rcu(&p->list);
1017 spin_unlock_bh(&inetsw_lock);
1018
1019 synchronize_net();
1020 }
1021}
1022
32519f11
ACM
1023/*
1024 * Shall we try to damage output packets if routing dev changes?
1025 */
1026
ab32ea5d 1027int sysctl_ip_dynaddr __read_mostly;
32519f11
ACM
1028
1029static int inet_sk_reselect_saddr(struct sock *sk)
1030{
1031 struct inet_sock *inet = inet_sk(sk);
1032 int err;
1033 struct rtable *rt;
714e85be
AV
1034 __be32 old_saddr = inet->saddr;
1035 __be32 new_saddr;
bada8adc 1036 __be32 daddr = inet->daddr;
32519f11
ACM
1037
1038 if (inet->opt && inet->opt->srr)
1039 daddr = inet->opt->faddr;
1040
1041 /* Query new route. */
1042 err = ip_route_connect(&rt, daddr, 0,
1043 RT_CONN_FLAGS(sk),
1044 sk->sk_bound_dev_if,
1045 sk->sk_protocol,
8eb9086f 1046 inet->sport, inet->dport, sk, 0);
32519f11
ACM
1047 if (err)
1048 return err;
1049
1050 sk_setup_caps(sk, &rt->u.dst);
1051
1052 new_saddr = rt->rt_src;
1053
1054 if (new_saddr == old_saddr)
1055 return 0;
1056
1057 if (sysctl_ip_dynaddr > 1) {
1058 printk(KERN_INFO "%s(): shifting inet->"
1059 "saddr from %d.%d.%d.%d to %d.%d.%d.%d\n",
1060 __FUNCTION__,
1061 NIPQUAD(old_saddr),
1062 NIPQUAD(new_saddr));
1063 }
1064
1065 inet->saddr = inet->rcv_saddr = new_saddr;
1066
1067 /*
1068 * XXX The only one ugly spot where we need to
1069 * XXX really change the sockets identity after
1070 * XXX it has entered the hashes. -DaveM
1071 *
1072 * Besides that, it does not check for connection
1073 * uniqueness. Wait for troubles.
1074 */
1075 __sk_prot_rehash(sk);
1076 return 0;
1077}
1078
1079int inet_sk_rebuild_header(struct sock *sk)
1080{
1081 struct inet_sock *inet = inet_sk(sk);
1082 struct rtable *rt = (struct rtable *)__sk_dst_check(sk, 0);
3ca3c68e 1083 __be32 daddr;
32519f11
ACM
1084 int err;
1085
1086 /* Route is OK, nothing to do. */
1087 if (rt)
1088 return 0;
1089
1090 /* Reroute. */
1091 daddr = inet->daddr;
1092 if (inet->opt && inet->opt->srr)
1093 daddr = inet->opt->faddr;
1094{
1095 struct flowi fl = {
1096 .oif = sk->sk_bound_dev_if,
1097 .nl_u = {
1098 .ip4_u = {
1099 .daddr = daddr,
1100 .saddr = inet->saddr,
1101 .tos = RT_CONN_FLAGS(sk),
1102 },
1103 },
1104 .proto = sk->sk_protocol,
1105 .uli_u = {
1106 .ports = {
1107 .sport = inet->sport,
1108 .dport = inet->dport,
1109 },
1110 },
1111 };
e905a9ed 1112
beb8d13b 1113 security_sk_classify_flow(sk, &fl);
32519f11
ACM
1114 err = ip_route_output_flow(&rt, &fl, sk, 0);
1115}
1116 if (!err)
1117 sk_setup_caps(sk, &rt->u.dst);
1118 else {
1119 /* Routing failed... */
1120 sk->sk_route_caps = 0;
1121 /*
1122 * Other protocols have to map its equivalent state to TCP_SYN_SENT.
1123 * DCCP maps its DCCP_REQUESTING state to TCP_SYN_SENT. -acme
1124 */
1125 if (!sysctl_ip_dynaddr ||
1126 sk->sk_state != TCP_SYN_SENT ||
1127 (sk->sk_userlocks & SOCK_BINDADDR_LOCK) ||
1128 (err = inet_sk_reselect_saddr(sk)) != 0)
1129 sk->sk_err_soft = -err;
1130 }
1131
1132 return err;
1133}
1134
1135EXPORT_SYMBOL(inet_sk_rebuild_header);
1136
a430a43d
HX
1137static int inet_gso_send_check(struct sk_buff *skb)
1138{
1139 struct iphdr *iph;
1140 struct net_protocol *ops;
1141 int proto;
1142 int ihl;
1143 int err = -EINVAL;
1144
1145 if (unlikely(!pskb_may_pull(skb, sizeof(*iph))))
1146 goto out;
1147
eddc9ec5 1148 iph = ip_hdr(skb);
a430a43d
HX
1149 ihl = iph->ihl * 4;
1150 if (ihl < sizeof(*iph))
1151 goto out;
1152
1153 if (unlikely(!pskb_may_pull(skb, ihl)))
1154 goto out;
1155
badff6d0
ACM
1156 __skb_pull(skb, ihl);
1157 skb_reset_transport_header(skb);
eddc9ec5 1158 iph = ip_hdr(skb);
a430a43d
HX
1159 proto = iph->protocol & (MAX_INET_PROTOS - 1);
1160 err = -EPROTONOSUPPORT;
1161
1162 rcu_read_lock();
1163 ops = rcu_dereference(inet_protos[proto]);
1164 if (likely(ops && ops->gso_send_check))
1165 err = ops->gso_send_check(skb);
1166 rcu_read_unlock();
1167
1168out:
1169 return err;
1170}
1171
576a30eb 1172static struct sk_buff *inet_gso_segment(struct sk_buff *skb, int features)
f4c50d99
HX
1173{
1174 struct sk_buff *segs = ERR_PTR(-EINVAL);
1175 struct iphdr *iph;
1176 struct net_protocol *ops;
1177 int proto;
1178 int ihl;
1179 int id;
1180
d212f87b
SH
1181 if (!(features & NETIF_F_V4_CSUM))
1182 features &= ~NETIF_F_SG;
1183
bbcf467d
HX
1184 if (unlikely(skb_shinfo(skb)->gso_type &
1185 ~(SKB_GSO_TCPV4 |
1186 SKB_GSO_UDP |
1187 SKB_GSO_DODGY |
1188 SKB_GSO_TCP_ECN |
1189 0)))
1190 goto out;
1191
1192 if (unlikely(!pskb_may_pull(skb, sizeof(*iph))))
f4c50d99
HX
1193 goto out;
1194
eddc9ec5 1195 iph = ip_hdr(skb);
f4c50d99
HX
1196 ihl = iph->ihl * 4;
1197 if (ihl < sizeof(*iph))
1198 goto out;
1199
bbcf467d 1200 if (unlikely(!pskb_may_pull(skb, ihl)))
f4c50d99
HX
1201 goto out;
1202
badff6d0
ACM
1203 __skb_pull(skb, ihl);
1204 skb_reset_transport_header(skb);
eddc9ec5 1205 iph = ip_hdr(skb);
f4c50d99
HX
1206 id = ntohs(iph->id);
1207 proto = iph->protocol & (MAX_INET_PROTOS - 1);
1208 segs = ERR_PTR(-EPROTONOSUPPORT);
1209
1210 rcu_read_lock();
1211 ops = rcu_dereference(inet_protos[proto]);
bbcf467d 1212 if (likely(ops && ops->gso_segment))
576a30eb 1213 segs = ops->gso_segment(skb, features);
f4c50d99
HX
1214 rcu_read_unlock();
1215
576a30eb 1216 if (!segs || unlikely(IS_ERR(segs)))
f4c50d99
HX
1217 goto out;
1218
1219 skb = segs;
1220 do {
eddc9ec5 1221 iph = ip_hdr(skb);
f4c50d99
HX
1222 iph->id = htons(id++);
1223 iph->tot_len = htons(skb->len - skb->mac_len);
1224 iph->check = 0;
d56f90a7 1225 iph->check = ip_fast_csum(skb_network_header(skb), iph->ihl);
f4c50d99
HX
1226 } while ((skb = skb->next));
1227
1228out:
1229 return segs;
1230}
1231
5e0f0435
HX
1232unsigned long snmp_fold_field(void *mib[], int offt)
1233{
1234 unsigned long res = 0;
1235 int i;
1236
1237 for_each_possible_cpu(i) {
1238 res += *(((unsigned long *) per_cpu_ptr(mib[0], i)) + offt);
1239 res += *(((unsigned long *) per_cpu_ptr(mib[1], i)) + offt);
1240 }
1241 return res;
1242}
1243EXPORT_SYMBOL_GPL(snmp_fold_field);
1244
c69bce20 1245int snmp_mib_init(void *ptr[2], size_t mibsize)
5e0f0435
HX
1246{
1247 BUG_ON(ptr == NULL);
1248 ptr[0] = __alloc_percpu(mibsize);
1249 if (!ptr[0])
1250 goto err0;
1251 ptr[1] = __alloc_percpu(mibsize);
1252 if (!ptr[1])
1253 goto err1;
1254 return 0;
1255err1:
1256 free_percpu(ptr[0]);
1257 ptr[0] = NULL;
1258err0:
1259 return -ENOMEM;
1260}
1261EXPORT_SYMBOL_GPL(snmp_mib_init);
1262
1263void snmp_mib_free(void *ptr[2])
1264{
1265 BUG_ON(ptr == NULL);
1266 free_percpu(ptr[0]);
1267 free_percpu(ptr[1]);
1268 ptr[0] = ptr[1] = NULL;
1269}
1270EXPORT_SYMBOL_GPL(snmp_mib_free);
1271
1da177e4
LT
1272#ifdef CONFIG_IP_MULTICAST
1273static struct net_protocol igmp_protocol = {
1274 .handler = igmp_rcv,
1275};
1276#endif
1277
1278static struct net_protocol tcp_protocol = {
1279 .handler = tcp_v4_rcv,
1280 .err_handler = tcp_v4_err,
a430a43d 1281 .gso_send_check = tcp_v4_gso_send_check,
f4c50d99 1282 .gso_segment = tcp_tso_segment,
1da177e4
LT
1283 .no_policy = 1,
1284};
1285
1286static struct net_protocol udp_protocol = {
1287 .handler = udp_rcv,
1288 .err_handler = udp_err,
1289 .no_policy = 1,
1290};
1291
1292static struct net_protocol icmp_protocol = {
1293 .handler = icmp_rcv,
1294};
1295
1296static int __init init_ipv4_mibs(void)
1297{
33490170 1298 if (snmp_mib_init((void **)net_statistics,
c69bce20 1299 sizeof(struct linux_mib)) < 0)
33490170
YH
1300 goto err_net_mib;
1301 if (snmp_mib_init((void **)ip_statistics,
c69bce20 1302 sizeof(struct ipstats_mib)) < 0)
33490170
YH
1303 goto err_ip_mib;
1304 if (snmp_mib_init((void **)icmp_statistics,
c69bce20 1305 sizeof(struct icmp_mib)) < 0)
33490170 1306 goto err_icmp_mib;
96793b48 1307 if (snmp_mib_init((void **)icmpmsg_statistics,
c69bce20 1308 sizeof(struct icmpmsg_mib)) < 0)
96793b48 1309 goto err_icmpmsg_mib;
33490170 1310 if (snmp_mib_init((void **)tcp_statistics,
c69bce20 1311 sizeof(struct tcp_mib)) < 0)
33490170
YH
1312 goto err_tcp_mib;
1313 if (snmp_mib_init((void **)udp_statistics,
c69bce20 1314 sizeof(struct udp_mib)) < 0)
33490170
YH
1315 goto err_udp_mib;
1316 if (snmp_mib_init((void **)udplite_statistics,
c69bce20 1317 sizeof(struct udp_mib)) < 0)
33490170
YH
1318 goto err_udplite_mib;
1319
1320 tcp_mib_init();
1da177e4
LT
1321
1322 return 0;
33490170
YH
1323
1324err_udplite_mib:
1325 snmp_mib_free((void **)udp_statistics);
1326err_udp_mib:
1327 snmp_mib_free((void **)tcp_statistics);
1328err_tcp_mib:
96793b48
DS
1329 snmp_mib_free((void **)icmpmsg_statistics);
1330err_icmpmsg_mib:
33490170
YH
1331 snmp_mib_free((void **)icmp_statistics);
1332err_icmp_mib:
1333 snmp_mib_free((void **)ip_statistics);
1334err_ip_mib:
1335 snmp_mib_free((void **)net_statistics);
1336err_net_mib:
1337 return -ENOMEM;
1da177e4
LT
1338}
1339
1340static int ipv4_proc_init(void);
1da177e4 1341
30e224d7
HX
1342/*
1343 * IP protocol layer initialiser
1344 */
1345
1346static struct packet_type ip_packet_type = {
1347 .type = __constant_htons(ETH_P_IP),
1348 .func = ip_rcv,
a430a43d 1349 .gso_send_check = inet_gso_send_check,
f4c50d99 1350 .gso_segment = inet_gso_segment,
30e224d7
HX
1351};
1352
1da177e4
LT
1353static int __init inet_init(void)
1354{
1355 struct sk_buff *dummy_skb;
1356 struct inet_protosw *q;
1357 struct list_head *r;
1358 int rc = -EINVAL;
1359
ef047f5e 1360 BUILD_BUG_ON(sizeof(struct inet_skb_parm) > sizeof(dummy_skb->cb));
1da177e4
LT
1361
1362 rc = proto_register(&tcp_prot, 1);
1363 if (rc)
1364 goto out;
1365
1366 rc = proto_register(&udp_prot, 1);
1367 if (rc)
1368 goto out_unregister_tcp_proto;
1369
1370 rc = proto_register(&raw_prot, 1);
1371 if (rc)
1372 goto out_unregister_udp_proto;
1373
1374 /*
e905a9ed 1375 * Tell SOCKET that we are alive...
1da177e4
LT
1376 */
1377
e905a9ed 1378 (void)sock_register(&inet_family_ops);
1da177e4
LT
1379
1380 /*
1381 * Add all the base protocols.
1382 */
1383
1384 if (inet_add_protocol(&icmp_protocol, IPPROTO_ICMP) < 0)
1385 printk(KERN_CRIT "inet_init: Cannot add ICMP protocol\n");
1386 if (inet_add_protocol(&udp_protocol, IPPROTO_UDP) < 0)
1387 printk(KERN_CRIT "inet_init: Cannot add UDP protocol\n");
1388 if (inet_add_protocol(&tcp_protocol, IPPROTO_TCP) < 0)
1389 printk(KERN_CRIT "inet_init: Cannot add TCP protocol\n");
1390#ifdef CONFIG_IP_MULTICAST
1391 if (inet_add_protocol(&igmp_protocol, IPPROTO_IGMP) < 0)
1392 printk(KERN_CRIT "inet_init: Cannot add IGMP protocol\n");
1393#endif
1394
1395 /* Register the socket-side information for inet_create. */
1396 for (r = &inetsw[0]; r < &inetsw[SOCK_MAX]; ++r)
1397 INIT_LIST_HEAD(r);
1398
1399 for (q = inetsw_array; q < &inetsw_array[INETSW_ARRAY_LEN]; ++q)
1400 inet_register_protosw(q);
1401
1402 /*
1403 * Set the ARP module up
1404 */
1405
1406 arp_init();
1407
e905a9ed
YH
1408 /*
1409 * Set the IP module up
1410 */
1da177e4
LT
1411
1412 ip_init();
1413
1414 tcp_v4_init(&inet_family_ops);
1415
1416 /* Setup TCP slab cache for open requests. */
1417 tcp_init();
1418
ba4e58ec
GR
1419 /* Add UDP-Lite (RFC 3828) */
1420 udplite4_register();
1da177e4
LT
1421
1422 /*
1423 * Set the ICMP layer up
1424 */
1425
1426 icmp_init(&inet_family_ops);
1427
1428 /*
1429 * Initialise the multicast router
1430 */
1431#if defined(CONFIG_IP_MROUTE)
1432 ip_mr_init();
1433#endif
1434 /*
1435 * Initialise per-cpu ipv4 mibs
e905a9ed 1436 */
1da177e4 1437
132adf54 1438 if (init_ipv4_mibs())
1da177e4 1439 printk(KERN_CRIT "inet_init: Cannot init ipv4 mibs\n"); ;
e905a9ed 1440
1da177e4
LT
1441 ipv4_proc_init();
1442
1443 ipfrag_init();
1444
30e224d7
HX
1445 dev_add_pack(&ip_packet_type);
1446
1da177e4
LT
1447 rc = 0;
1448out:
1449 return rc;
1da177e4
LT
1450out_unregister_udp_proto:
1451 proto_unregister(&udp_prot);
321efff7
OK
1452out_unregister_tcp_proto:
1453 proto_unregister(&tcp_prot);
1da177e4
LT
1454 goto out;
1455}
1456
a536e077 1457fs_initcall(inet_init);
1da177e4
LT
1458
1459/* ------------------------------------------------------------------------ */
1460
1461#ifdef CONFIG_PROC_FS
1da177e4
LT
1462static int __init ipv4_proc_init(void)
1463{
1464 int rc = 0;
1465
1466 if (raw_proc_init())
1467 goto out_raw;
1468 if (tcp4_proc_init())
1469 goto out_tcp;
1470 if (udp4_proc_init())
1471 goto out_udp;
1472 if (fib_proc_init())
1473 goto out_fib;
1474 if (ip_misc_proc_init())
1475 goto out_misc;
1476out:
1477 return rc;
1478out_misc:
1479 fib_proc_exit();
1480out_fib:
1481 udp4_proc_exit();
1482out_udp:
1483 tcp4_proc_exit();
1484out_tcp:
1485 raw_proc_exit();
1486out_raw:
1487 rc = -ENOMEM;
1488 goto out;
1489}
1490
1491#else /* CONFIG_PROC_FS */
1492static int __init ipv4_proc_init(void)
1493{
1494 return 0;
1495}
1496#endif /* CONFIG_PROC_FS */
1497
1498MODULE_ALIAS_NETPROTO(PF_INET);
1499
1500EXPORT_SYMBOL(inet_accept);
1501EXPORT_SYMBOL(inet_bind);
1502EXPORT_SYMBOL(inet_dgram_connect);
1503EXPORT_SYMBOL(inet_dgram_ops);
1504EXPORT_SYMBOL(inet_getname);
1505EXPORT_SYMBOL(inet_ioctl);
1506EXPORT_SYMBOL(inet_listen);
1507EXPORT_SYMBOL(inet_register_protosw);
1508EXPORT_SYMBOL(inet_release);
1509EXPORT_SYMBOL(inet_sendmsg);
1510EXPORT_SYMBOL(inet_shutdown);
1511EXPORT_SYMBOL(inet_sock_destruct);
1512EXPORT_SYMBOL(inet_stream_connect);
1513EXPORT_SYMBOL(inet_stream_ops);
1514EXPORT_SYMBOL(inet_unregister_protosw);
1515EXPORT_SYMBOL(net_statistics);
cdac4e07 1516EXPORT_SYMBOL(sysctl_ip_nonlocal_bind);