blob: 4f70ef0b946dba1b7efa71ad9b0d6debb2f713c9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
Jesper Juhl02c30a82005-05-05 16:16:16 -07008 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Florian La Roche, <flla@stud.uni-sb.de>
11 * Alan Cox, <A.Cox@swansea.ac.uk>
12 *
13 * Changes (see also sock.c)
14 *
15 * piggy,
16 * Karl Knutson : Socket protocol table
17 * A.N.Kuznetsov : Socket death error in accept().
18 * John Richardson : Fix non blocking error in connect()
19 * so sockets that fail to connect
20 * don't return -EINPROGRESS.
21 * Alan Cox : Asynchronous I/O support
22 * Alan Cox : Keep correct socket pointer on sock
23 * structures
24 * when accept() ed
25 * Alan Cox : Semantics of SO_LINGER aren't state
26 * moved to close when you look carefully.
27 * With this fixed and the accept bug fixed
28 * some RPC stuff seems happier.
29 * Niibe Yutaka : 4.4BSD style write async I/O
30 * Alan Cox,
31 * Tony Gale : Fixed reuse semantics.
32 * Alan Cox : bind() shouldn't abort existing but dead
33 * sockets. Stops FTP netin:.. I hope.
34 * Alan Cox : bind() works correctly for RAW sockets.
35 * Note that FreeBSD at least was broken
36 * in this respect so be careful with
37 * compatibility tests...
38 * Alan Cox : routing cache support
39 * Alan Cox : memzero the socket structure for
40 * compactness.
41 * Matt Day : nonblock connect error handler
42 * Alan Cox : Allow large numbers of pending sockets
43 * (eg for big web sites), but only if
44 * specifically application requested.
45 * Alan Cox : New buffering throughout IP. Used
46 * dumbly.
47 * Alan Cox : New buffering now used smartly.
48 * Alan Cox : BSD rather than common sense
49 * interpretation of listen.
50 * Germano Caronni : Assorted small races.
51 * Alan Cox : sendmsg/recvmsg basic support.
52 * Alan Cox : Only sendmsg/recvmsg now supported.
53 * Alan Cox : Locked down bind (see security list).
54 * Alan Cox : Loosened bind a little.
55 * Mike McLagan : ADD/DEL DLCI Ioctls
56 * Willy Konynenberg : Transparent proxying support.
57 * David S. Miller : New socket lookup architecture.
58 * Some other random speedups.
59 * Cyrus Durgin : Cleaned up file for kmod hacks.
60 * Andi Kleen : Fix inet_stream_connect TCP race.
61 *
62 * This program is free software; you can redistribute it and/or
63 * modify it under the terms of the GNU General Public License
64 * as published by the Free Software Foundation; either version
65 * 2 of the License, or (at your option) any later version.
66 */
67
Joe Perchesafd465032012-03-12 07:03:32 +000068#define pr_fmt(fmt) "IPv4: " fmt
69
Herbert Xuf4c50d92006-06-22 03:02:40 -070070#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <linux/errno.h>
72#include <linux/types.h>
73#include <linux/socket.h>
74#include <linux/in.h>
75#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#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>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080082#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#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>
David S. Millerb3da2cf2007-03-23 11:40:27 -070090#include <linux/random.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090091#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include <linux/inet.h>
96#include <linux/igmp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020097#include <linux/inetdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include <linux/netdevice.h>
Herbert Xu73cc19f2008-12-15 23:41:09 -080099#include <net/checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <net/ip.h>
101#include <net/protocol.h>
102#include <net/arp.h>
103#include <net/route.h>
104#include <net/ip_fib.h>
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -0700105#include <net/inet_connection_sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <net/tcp.h>
107#include <net/udp.h>
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800108#include <net/udplite.h>
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000109#include <net/ping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#include <linux/skbuff.h>
111#include <net/sock.h>
112#include <net/raw.h>
113#include <net/icmp.h>
114#include <net/ipip.h>
115#include <net/inet_common.h>
116#include <net/xfrm.h>
Pavel Emelyanov9b4661b2008-07-18 04:01:44 -0700117#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#ifdef CONFIG_IP_MROUTE
119#include <linux/mroute.h>
120#endif
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
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
Pavel Emelyanov9ba63972007-12-05 01:38:23 -0800129struct ipv4_config ipv4_config;
Pavel Emelyanov9ba63972007-12-05 01:38:23 -0800130EXPORT_SYMBOL(ipv4_config);
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/* New destruction routine */
133
134void inet_sock_destruct(struct sock *sk)
135{
136 struct inet_sock *inet = inet_sk(sk);
137
138 __skb_queue_purge(&sk->sk_receive_queue);
139 __skb_queue_purge(&sk->sk_error_queue);
140
Hideo Aoki95766ff2007-12-31 00:29:24 -0800141 sk_mem_reclaim(sk);
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (sk->sk_type == SOCK_STREAM && sk->sk_state != TCP_CLOSE) {
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700144 pr_err("Attempt to release TCP socket in state %d %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 sk->sk_state, sk);
146 return;
147 }
148 if (!sock_flag(sk, SOCK_DEAD)) {
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700149 pr_err("Attempt to release alive inet socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return;
151 }
Jerry Chu83368862012-08-31 12:29:12 +0000152 if (sk->sk_type == SOCK_STREAM) {
153 struct fastopen_queue *fastopenq =
154 inet_csk(sk)->icsk_accept_queue.fastopenq;
155 kfree(fastopenq);
156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700158 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
159 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
160 WARN_ON(sk->sk_wmem_queued);
161 WARN_ON(sk->sk_forward_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000163 kfree(rcu_dereference_protected(inet->inet_opt, 1));
Eric Dumazetb6c67122010-04-08 23:03:29 +0000164 dst_release(rcu_dereference_check(sk->sk_dst_cache, 1));
David S. Miller41063e92012-06-19 21:22:05 -0700165 dst_release(sk->sk_rx_dst);
Arnaldo Carvalho de Meloe6848972005-08-09 19:45:38 -0700166 sk_refcnt_debug_dec(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700168EXPORT_SYMBOL(inet_sock_destruct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170/*
171 * The routines beyond this point handle the behaviour of an AF_INET
172 * socket object. Mostly it punts to the subprotocols of IP to do
173 * the work.
174 */
175
176/*
177 * Automatically bind an unbound socket.
178 */
179
180static int inet_autobind(struct sock *sk)
181{
182 struct inet_sock *inet;
183 /* We may need to bind the socket. */
184 lock_sock(sk);
185 inet = inet_sk(sk);
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000186 if (!inet->inet_num) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (sk->sk_prot->get_port(sk, 0)) {
188 release_sock(sk);
189 return -EAGAIN;
190 }
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000191 inet->inet_sport = htons(inet->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193 release_sock(sk);
194 return 0;
195}
196
197/*
198 * Move a socket into listening state.
199 */
200int inet_listen(struct socket *sock, int backlog)
201{
202 struct sock *sk = sock->sk;
203 unsigned char old_state;
204 int err;
205
206 lock_sock(sk);
207
208 err = -EINVAL;
209 if (sock->state != SS_UNCONNECTED || sock->type != SOCK_STREAM)
210 goto out;
211
212 old_state = sk->sk_state;
213 if (!((1 << old_state) & (TCPF_CLOSE | TCPF_LISTEN)))
214 goto out;
215
216 /* Really, if the socket is already in listen state
217 * we can only allow the backlog to be adjusted.
218 */
219 if (old_state != TCP_LISTEN) {
Jerry Chu83368862012-08-31 12:29:12 +0000220 /* Check special setups for testing purpose to enable TFO w/o
221 * requiring TCP_FASTOPEN sockopt.
222 * Note that only TCP sockets (SOCK_STREAM) will reach here.
223 * Also fastopenq may already been allocated because this
224 * socket was in TCP_LISTEN state previously but was
225 * shutdown() (rather than close()).
226 */
227 if ((sysctl_tcp_fastopen & TFO_SERVER_ENABLE) != 0 &&
228 inet_csk(sk)->icsk_accept_queue.fastopenq == NULL) {
229 if ((sysctl_tcp_fastopen & TFO_SERVER_WO_SOCKOPT1) != 0)
230 err = fastopen_init_queue(sk, backlog);
231 else if ((sysctl_tcp_fastopen &
232 TFO_SERVER_WO_SOCKOPT2) != 0)
233 err = fastopen_init_queue(sk,
234 ((uint)sysctl_tcp_fastopen) >> 16);
235 else
236 err = 0;
237 if (err)
238 goto out;
239 }
Eric Dumazet72a3eff2006-11-16 02:30:37 -0800240 err = inet_csk_listen_start(sk, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (err)
242 goto out;
243 }
244 sk->sk_max_ack_backlog = backlog;
245 err = 0;
246
247out:
248 release_sock(sk);
249 return err;
250}
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700251EXPORT_SYMBOL(inet_listen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Eric Dumazetbe776282007-03-27 13:53:04 -0700253u32 inet_ehash_secret __read_mostly;
David S. Millerb3da2cf2007-03-23 11:40:27 -0700254EXPORT_SYMBOL(inet_ehash_secret);
255
Eric Dumazetbe776282007-03-27 13:53:04 -0700256/*
257 * inet_ehash_secret must be set exactly once
Eric Dumazetbe776282007-03-27 13:53:04 -0700258 */
David S. Millerb3da2cf2007-03-23 11:40:27 -0700259void build_ehash_secret(void)
260{
Eric Dumazetbe776282007-03-27 13:53:04 -0700261 u32 rnd;
Eric Dumazet49e8ab02010-08-19 06:10:45 +0000262
Eric Dumazetbe776282007-03-27 13:53:04 -0700263 do {
264 get_random_bytes(&rnd, sizeof(rnd));
265 } while (rnd == 0);
Eric Dumazet49e8ab02010-08-19 06:10:45 +0000266
267 cmpxchg(&inet_ehash_secret, 0, rnd);
David S. Millerb3da2cf2007-03-23 11:40:27 -0700268}
269EXPORT_SYMBOL(build_ehash_secret);
270
David S. Millerf9242b62012-06-19 18:56:21 -0700271static inline int inet_netns_ok(struct net *net, __u8 protocol)
Denis V. Lunev2342fd72008-03-24 15:33:42 -0700272{
Alexey Dobriyan32613092009-09-14 12:21:47 +0000273 const struct net_protocol *ipprot;
Denis V. Lunev2342fd72008-03-24 15:33:42 -0700274
Eric Dumazet04f258c2008-11-23 15:42:23 -0800275 if (net_eq(net, &init_net))
Denis V. Lunev2342fd72008-03-24 15:33:42 -0700276 return 1;
277
David S. Millerf9242b62012-06-19 18:56:21 -0700278 ipprot = rcu_dereference(inet_protos[protocol]);
279 if (ipprot == NULL) {
Denis V. Lunev2342fd72008-03-24 15:33:42 -0700280 /* raw IP is OK */
281 return 1;
David S. Millerf9242b62012-06-19 18:56:21 -0700282 }
Denis V. Lunev2342fd72008-03-24 15:33:42 -0700283 return ipprot->netns_ok;
284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286/*
287 * Create an inet socket.
288 */
289
Eric Paris3f378b62009-11-05 22:18:14 -0800290static int inet_create(struct net *net, struct socket *sock, int protocol,
291 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 struct inet_protosw *answer;
295 struct inet_sock *inet;
296 struct proto *answer_prot;
297 unsigned char answer_flags;
298 char answer_no_check;
Arnaldo Carvalho de Melobb97d312005-08-09 20:19:14 -0700299 int try_loading_module = 0;
Herbert Xu86c8f9d2005-12-02 20:43:26 -0800300 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Eric Dumazet04f258c2008-11-23 15:42:23 -0800302 if (unlikely(!inet_ehash_secret))
303 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
304 build_ehash_secret();
David S. Millerb3da2cf2007-03-23 11:40:27 -0700305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 sock->state = SS_UNCONNECTED;
307
308 /* Look for the requested type/protocol pair. */
Arnaldo Carvalho de Melobb97d312005-08-09 20:19:14 -0700309lookup_protocol:
Herbert Xu86c8f9d2005-12-02 20:43:26 -0800310 err = -ESOCKTNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 rcu_read_lock();
Paul E. McKenney696adfe2008-07-25 01:45:34 -0700312 list_for_each_entry_rcu(answer, &inetsw[sock->type], list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Paul E. McKenney696adfe2008-07-25 01:45:34 -0700314 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 /* Check the non-wild match. */
316 if (protocol == answer->protocol) {
317 if (protocol != IPPROTO_IP)
318 break;
319 } else {
320 /* Check for the two wild cases. */
321 if (IPPROTO_IP == protocol) {
322 protocol = answer->protocol;
323 break;
324 }
325 if (IPPROTO_IP == answer->protocol)
326 break;
327 }
Herbert Xu86c8f9d2005-12-02 20:43:26 -0800328 err = -EPROTONOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330
Paul E. McKenney696adfe2008-07-25 01:45:34 -0700331 if (unlikely(err)) {
Arnaldo Carvalho de Melobb97d312005-08-09 20:19:14 -0700332 if (try_loading_module < 2) {
333 rcu_read_unlock();
334 /*
335 * Be more specific, e.g. net-pf-2-proto-132-type-1
336 * (net-pf-PF_INET-proto-IPPROTO_SCTP-type-SOCK_STREAM)
337 */
338 if (++try_loading_module == 1)
339 request_module("net-pf-%d-proto-%d-type-%d",
340 PF_INET, protocol, sock->type);
341 /*
342 * Fall back to generic, e.g. net-pf-2-proto-132
343 * (net-pf-PF_INET-proto-IPPROTO_SCTP)
344 */
345 else
346 request_module("net-pf-%d-proto-%d",
347 PF_INET, protocol);
348 goto lookup_protocol;
349 } else
350 goto out_rcu_unlock;
351 }
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 err = -EPERM;
Eric Parisc84b3262009-11-05 20:45:52 -0800354 if (sock->type == SOCK_RAW && !kern && !capable(CAP_NET_RAW))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 goto out_rcu_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Denis V. Lunev2342fd72008-03-24 15:33:42 -0700357 err = -EAFNOSUPPORT;
358 if (!inet_netns_ok(net, protocol))
359 goto out_rcu_unlock;
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 sock->ops = answer->ops;
362 answer_prot = answer->prot;
363 answer_no_check = answer->no_check;
364 answer_flags = answer->flags;
365 rcu_read_unlock();
366
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700367 WARN_ON(answer_prot->slab == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 err = -ENOBUFS;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700370 sk = sk_alloc(net, PF_INET, GFP_KERNEL, answer_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (sk == NULL)
372 goto out;
373
374 err = 0;
375 sk->sk_no_check = answer_no_check;
376 if (INET_PROTOSW_REUSE & answer_flags)
Pavel Emelyanov4a17fd52012-04-19 03:39:36 +0000377 sk->sk_reuse = SK_CAN_REUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 inet = inet_sk(sk);
Paul Moore469de9b2007-01-09 14:37:06 -0800380 inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Jiri Olsa7b2ff182010-06-15 01:07:31 +0000382 inet->nodefrag = 0;
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (SOCK_RAW == sock->type) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000385 inet->inet_num = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (IPPROTO_RAW == protocol)
387 inet->hdrincl = 1;
388 }
389
390 if (ipv4_config.no_pmtu_disc)
391 inet->pmtudisc = IP_PMTUDISC_DONT;
392 else
393 inet->pmtudisc = IP_PMTUDISC_WANT;
394
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000395 inet->inet_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 sock_init_data(sock, sk);
398
399 sk->sk_destruct = inet_sock_destruct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 sk->sk_protocol = protocol;
401 sk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
402
403 inet->uc_ttl = -1;
404 inet->mc_loop = 1;
405 inet->mc_ttl = 1;
Nivedita Singhvif771bef2009-05-28 07:00:46 +0000406 inet->mc_all = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 inet->mc_index = 0;
408 inet->mc_list = NULL;
Jiri Benc4c507d22012-02-09 09:35:49 +0000409 inet->rcv_tos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Arnaldo Carvalho de Meloe6848972005-08-09 19:45:38 -0700411 sk_refcnt_debug_inc(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000413 if (inet->inet_num) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 /* It assumes that any protocol which allows
415 * the user to assign a number at socket
416 * creation time automatically
417 * shares.
418 */
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000419 inet->inet_sport = htons(inet->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 /* Add to protocol hash chains. */
421 sk->sk_prot->hash(sk);
422 }
423
424 if (sk->sk_prot->init) {
425 err = sk->sk_prot->init(sk);
426 if (err)
427 sk_common_release(sk);
428 }
429out:
430 return err;
431out_rcu_unlock:
432 rcu_read_unlock();
433 goto out;
434}
435
436
437/*
438 * The peer socket should always be NULL (or else). When we call this
439 * function we are destroying the object and from then on nobody
440 * should refer to it.
441 */
442int inet_release(struct socket *sock)
443{
444 struct sock *sk = sock->sk;
445
446 if (sk) {
447 long timeout;
448
David S. Millerc58dc012010-04-27 15:05:31 -0700449 sock_rps_reset_flow(sk);
Tom Herbertfec5e652010-04-16 16:01:27 -0700450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /* Applications forget to leave groups before exiting */
452 ip_mc_drop_socket(sk);
453
454 /* If linger is set, we don't return until the close
455 * is complete. Otherwise we return immediately. The
456 * actually closing is done the same either way.
457 *
458 * If the close is due to the process exiting, we never
459 * linger..
460 */
461 timeout = 0;
462 if (sock_flag(sk, SOCK_LINGER) &&
463 !(current->flags & PF_EXITING))
464 timeout = sk->sk_lingertime;
465 sock->sk = NULL;
466 sk->sk_prot->close(sk, timeout);
467 }
468 return 0;
469}
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700470EXPORT_SYMBOL(inet_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472/* It is off by default, see below. */
Brian Haleyab32ea52006-09-22 14:15:41 -0700473int sysctl_ip_nonlocal_bind __read_mostly;
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700474EXPORT_SYMBOL(sysctl_ip_nonlocal_bind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476int inet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
477{
478 struct sockaddr_in *addr = (struct sockaddr_in *)uaddr;
479 struct sock *sk = sock->sk;
480 struct inet_sock *inet = inet_sk(sk);
481 unsigned short snum;
482 int chk_addr_ret;
483 int err;
484
485 /* If the socket has its own bind function then use it. (RAW) */
486 if (sk->sk_prot->bind) {
487 err = sk->sk_prot->bind(sk, uaddr, addr_len);
488 goto out;
489 }
490 err = -EINVAL;
491 if (addr_len < sizeof(struct sockaddr_in))
492 goto out;
493
Marcus Meissnerc349a522011-07-04 01:30:29 +0000494 if (addr->sin_family != AF_INET) {
Eric Dumazet29c486d2011-08-30 18:57:00 -0400495 /* Compatibility games : accept AF_UNSPEC (mapped to AF_INET)
496 * only if s_addr is INADDR_ANY.
497 */
Marcus Meissnerc349a522011-07-04 01:30:29 +0000498 err = -EAFNOSUPPORT;
Eric Dumazet29c486d2011-08-30 18:57:00 -0400499 if (addr->sin_family != AF_UNSPEC ||
500 addr->sin_addr.s_addr != htonl(INADDR_ANY))
501 goto out;
Marcus Meissnerc349a522011-07-04 01:30:29 +0000502 }
Marcus Meissnerd0733d22011-06-01 21:05:22 -0700503
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900504 chk_addr_ret = inet_addr_type(sock_net(sk), addr->sin_addr.s_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 /* Not specified by any standard per-se, however it breaks too
507 * many applications when removed. It is unfortunate since
508 * allowing applications to make a non-local bind solves
509 * several problems with systems using dynamic addressing.
510 * (ie. your servers still start up even if your ISDN link
511 * is temporarily down)
512 */
513 err = -EADDRNOTAVAIL;
514 if (!sysctl_ip_nonlocal_bind &&
Tóth László Attilab9fb1502008-10-01 07:31:24 -0700515 !(inet->freebind || inet->transparent) &&
Al Viroe6f1ceb2008-03-17 22:44:53 -0700516 addr->sin_addr.s_addr != htonl(INADDR_ANY) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 chk_addr_ret != RTN_LOCAL &&
518 chk_addr_ret != RTN_MULTICAST &&
519 chk_addr_ret != RTN_BROADCAST)
520 goto out;
521
522 snum = ntohs(addr->sin_port);
523 err = -EACCES;
524 if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
525 goto out;
526
527 /* We keep a pair of addresses. rcv_saddr is the one
528 * used by hash lookups, and saddr is used for transmit.
529 *
530 * In the BSD API these are the same except where it
531 * would be illegal to use them (multicast/broadcast) in
532 * which case the sending device address is used.
533 */
534 lock_sock(sk);
535
536 /* Check these errors (active socket, double bind). */
537 err = -EINVAL;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000538 if (sk->sk_state != TCP_CLOSE || inet->inet_num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 goto out_release_sock;
540
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000541 inet->inet_rcv_saddr = inet->inet_saddr = addr->sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000543 inet->inet_saddr = 0; /* Use device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 /* Make sure we are allowed to bind here. */
546 if (sk->sk_prot->get_port(sk, snum)) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000547 inet->inet_saddr = inet->inet_rcv_saddr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 err = -EADDRINUSE;
549 goto out_release_sock;
550 }
551
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000552 if (inet->inet_rcv_saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
554 if (snum)
555 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000556 inet->inet_sport = htons(inet->inet_num);
557 inet->inet_daddr = 0;
558 inet->inet_dport = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 sk_dst_reset(sk);
560 err = 0;
561out_release_sock:
562 release_sock(sk);
563out:
564 return err;
565}
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700566EXPORT_SYMBOL(inet_bind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000568int inet_dgram_connect(struct socket *sock, struct sockaddr *uaddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 int addr_len, int flags)
570{
571 struct sock *sk = sock->sk;
572
Changli Gao6503d962010-03-31 22:58:26 +0000573 if (addr_len < sizeof(uaddr->sa_family))
574 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (uaddr->sa_family == AF_UNSPEC)
576 return sk->sk_prot->disconnect(sk, flags);
577
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000578 if (!inet_sk(sk)->inet_num && inet_autobind(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return -EAGAIN;
Joe Perchese3192692012-06-03 17:41:40 +0000580 return sk->sk_prot->connect(sk, uaddr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700582EXPORT_SYMBOL(inet_dgram_connect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Yuchung Cheng783237e2012-07-19 06:43:07 +0000584static long inet_wait_for_connect(struct sock *sk, long timeo, int writebias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
586 DEFINE_WAIT(wait);
587
Eric Dumazetaa395142010-04-20 13:03:51 +0000588 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Yuchung Cheng783237e2012-07-19 06:43:07 +0000589 sk->sk_write_pending += writebias;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 /* Basic assumption: if someone sets sk->sk_err, he _must_
592 * change state of the socket from TCP_SYN_*.
593 * Connect() does not allow to get error notifications
594 * without closing the socket.
595 */
596 while ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
597 release_sock(sk);
598 timeo = schedule_timeout(timeo);
599 lock_sock(sk);
600 if (signal_pending(current) || !timeo)
601 break;
Eric Dumazetaa395142010-04-20 13:03:51 +0000602 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000604 finish_wait(sk_sleep(sk), &wait);
Yuchung Cheng783237e2012-07-19 06:43:07 +0000605 sk->sk_write_pending -= writebias;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return timeo;
607}
608
609/*
610 * Connect to a remote host. There is regrettably still a little
611 * TCP 'magic' in here.
612 */
Yuchung Chengcf60af02012-07-19 06:43:09 +0000613int __inet_stream_connect(struct socket *sock, struct sockaddr *uaddr,
614 int addr_len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
616 struct sock *sk = sock->sk;
617 int err;
618 long timeo;
619
Changli Gao6503d962010-03-31 22:58:26 +0000620 if (addr_len < sizeof(uaddr->sa_family))
621 return -EINVAL;
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (uaddr->sa_family == AF_UNSPEC) {
624 err = sk->sk_prot->disconnect(sk, flags);
625 sock->state = err ? SS_DISCONNECTING : SS_UNCONNECTED;
626 goto out;
627 }
628
629 switch (sock->state) {
630 default:
631 err = -EINVAL;
632 goto out;
633 case SS_CONNECTED:
634 err = -EISCONN;
635 goto out;
636 case SS_CONNECTING:
637 err = -EALREADY;
638 /* Fall out of switch with err, set for this state */
639 break;
640 case SS_UNCONNECTED:
641 err = -EISCONN;
642 if (sk->sk_state != TCP_CLOSE)
643 goto out;
644
645 err = sk->sk_prot->connect(sk, uaddr, addr_len);
646 if (err < 0)
647 goto out;
648
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900649 sock->state = SS_CONNECTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 /* Just entered SS_CONNECTING state; the only
652 * difference is that return value in non-blocking
653 * case is EINPROGRESS, rather than EALREADY.
654 */
655 err = -EINPROGRESS;
656 break;
657 }
658
659 timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
660
661 if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
Yuchung Cheng783237e2012-07-19 06:43:07 +0000662 int writebias = (sk->sk_protocol == IPPROTO_TCP) &&
663 tcp_sk(sk)->fastopen_req &&
664 tcp_sk(sk)->fastopen_req->data ? 1 : 0;
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /* Error code is set above */
Yuchung Cheng783237e2012-07-19 06:43:07 +0000667 if (!timeo || !inet_wait_for_connect(sk, timeo, writebias))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 goto out;
669
670 err = sock_intr_errno(timeo);
671 if (signal_pending(current))
672 goto out;
673 }
674
675 /* Connection was closed by RST, timeout, ICMP error
676 * or another process disconnected us.
677 */
678 if (sk->sk_state == TCP_CLOSE)
679 goto sock_error;
680
681 /* sk->sk_err may be not zero now, if RECVERR was ordered by user
682 * and error was received after socket entered established state.
683 * Hence, it is handled normally after connect() return successfully.
684 */
685
686 sock->state = SS_CONNECTED;
687 err = 0;
688out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return err;
690
691sock_error:
692 err = sock_error(sk) ? : -ECONNABORTED;
693 sock->state = SS_UNCONNECTED;
694 if (sk->sk_prot->disconnect(sk, flags))
695 sock->state = SS_DISCONNECTING;
696 goto out;
697}
Yuchung Chengcf60af02012-07-19 06:43:09 +0000698EXPORT_SYMBOL(__inet_stream_connect);
699
700int inet_stream_connect(struct socket *sock, struct sockaddr *uaddr,
701 int addr_len, int flags)
702{
703 int err;
704
705 lock_sock(sock->sk);
706 err = __inet_stream_connect(sock, uaddr, addr_len, flags);
707 release_sock(sock->sk);
708 return err;
709}
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700710EXPORT_SYMBOL(inet_stream_connect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712/*
713 * Accept a pending connection. The TCP layer now gives BSD semantics.
714 */
715
716int inet_accept(struct socket *sock, struct socket *newsock, int flags)
717{
718 struct sock *sk1 = sock->sk;
719 int err = -EINVAL;
720 struct sock *sk2 = sk1->sk_prot->accept(sk1, flags, &err);
721
722 if (!sk2)
723 goto do_err;
724
725 lock_sock(sk2);
726
Eric Dumazet1eddcea2011-06-17 03:45:15 +0000727 sock_rps_record_flow(sk2);
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700728 WARN_ON(!((1 << sk2->sk_state) &
Jerry Chu83368862012-08-31 12:29:12 +0000729 (TCPF_ESTABLISHED | TCPF_SYN_RECV |
730 TCPF_CLOSE_WAIT | TCPF_CLOSE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 sock_graft(sk2, newsock);
733
734 newsock->state = SS_CONNECTED;
735 err = 0;
736 release_sock(sk2);
737do_err:
738 return err;
739}
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700740EXPORT_SYMBOL(inet_accept);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742
743/*
744 * This does both peername and sockname.
745 */
746int inet_getname(struct socket *sock, struct sockaddr *uaddr,
747 int *uaddr_len, int peer)
748{
749 struct sock *sk = sock->sk;
750 struct inet_sock *inet = inet_sk(sk);
Cyrill Gorcunov38bfd8f2009-10-29 02:59:18 -0700751 DECLARE_SOCKADDR(struct sockaddr_in *, sin, uaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 sin->sin_family = AF_INET;
754 if (peer) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000755 if (!inet->inet_dport ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
757 peer == 1))
758 return -ENOTCONN;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000759 sin->sin_port = inet->inet_dport;
760 sin->sin_addr.s_addr = inet->inet_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 } else {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000762 __be32 addr = inet->inet_rcv_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (!addr)
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000764 addr = inet->inet_saddr;
765 sin->sin_port = inet->inet_sport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 sin->sin_addr.s_addr = addr;
767 }
768 memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
769 *uaddr_len = sizeof(*sin);
770 return 0;
771}
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700772EXPORT_SYMBOL(inet_getname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774int inet_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
775 size_t size)
776{
777 struct sock *sk = sock->sk;
778
David S. Millerc58dc012010-04-27 15:05:31 -0700779 sock_rps_record_flow(sk);
Tom Herbertfec5e652010-04-16 16:01:27 -0700780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 /* We may need to bind the socket. */
Changli Gao7ba42912010-07-10 20:41:55 +0000782 if (!inet_sk(sk)->inet_num && !sk->sk_prot->no_autobind &&
783 inet_autobind(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return -EAGAIN;
785
786 return sk->sk_prot->sendmsg(iocb, sk, msg, size);
787}
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700788EXPORT_SYMBOL(inet_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Changli Gao7ba42912010-07-10 20:41:55 +0000790ssize_t inet_sendpage(struct socket *sock, struct page *page, int offset,
791 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 struct sock *sk = sock->sk;
794
David S. Millerc58dc012010-04-27 15:05:31 -0700795 sock_rps_record_flow(sk);
Tom Herbertfec5e652010-04-16 16:01:27 -0700796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 /* We may need to bind the socket. */
Changli Gao7ba42912010-07-10 20:41:55 +0000798 if (!inet_sk(sk)->inet_num && !sk->sk_prot->no_autobind &&
799 inet_autobind(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return -EAGAIN;
801
802 if (sk->sk_prot->sendpage)
803 return sk->sk_prot->sendpage(sk, page, offset, size, flags);
804 return sock_no_sendpage(sock, page, offset, size, flags);
805}
Changli Gao7ba42912010-07-10 20:41:55 +0000806EXPORT_SYMBOL(inet_sendpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Tom Herbertfec5e652010-04-16 16:01:27 -0700808int inet_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
809 size_t size, int flags)
810{
811 struct sock *sk = sock->sk;
812 int addr_len = 0;
813 int err;
814
David S. Millerc58dc012010-04-27 15:05:31 -0700815 sock_rps_record_flow(sk);
Tom Herbertfec5e652010-04-16 16:01:27 -0700816
817 err = sk->sk_prot->recvmsg(iocb, sk, msg, size, flags & MSG_DONTWAIT,
818 flags & ~MSG_DONTWAIT, &addr_len);
819 if (err >= 0)
820 msg->msg_namelen = addr_len;
821 return err;
822}
823EXPORT_SYMBOL(inet_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825int inet_shutdown(struct socket *sock, int how)
826{
827 struct sock *sk = sock->sk;
828 int err = 0;
829
830 /* This should really check to make sure
831 * the socket is a TCP socket. (WHY AC...)
832 */
833 how++; /* maps 0->1 has the advantage of making bit 1 rcvs and
834 1->2 bit 2 snds.
835 2->3 */
836 if ((how & ~SHUTDOWN_MASK) || !how) /* MAXINT->0 */
837 return -EINVAL;
838
839 lock_sock(sk);
840 if (sock->state == SS_CONNECTING) {
841 if ((1 << sk->sk_state) &
842 (TCPF_SYN_SENT | TCPF_SYN_RECV | TCPF_CLOSE))
843 sock->state = SS_DISCONNECTING;
844 else
845 sock->state = SS_CONNECTED;
846 }
847
848 switch (sk->sk_state) {
849 case TCP_CLOSE:
850 err = -ENOTCONN;
851 /* Hack to wake up other listeners, who can poll for
852 POLLHUP, even on eg. unconnected UDP sockets -- RR */
853 default:
854 sk->sk_shutdown |= how;
855 if (sk->sk_prot->shutdown)
856 sk->sk_prot->shutdown(sk, how);
857 break;
858
859 /* Remaining two branches are temporary solution for missing
860 * close() in multithreaded environment. It is _not_ a good idea,
861 * but we have no choice until close() is repaired at VFS level.
862 */
863 case TCP_LISTEN:
864 if (!(how & RCV_SHUTDOWN))
865 break;
866 /* Fall through */
867 case TCP_SYN_SENT:
868 err = sk->sk_prot->disconnect(sk, O_NONBLOCK);
869 sock->state = err ? SS_DISCONNECTING : SS_UNCONNECTED;
870 break;
871 }
872
873 /* Wake up anyone sleeping in poll. */
874 sk->sk_state_change(sk);
875 release_sock(sk);
876 return err;
877}
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700878EXPORT_SYMBOL(inet_shutdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880/*
881 * ioctl() calls you can issue on an INET socket. Most of these are
882 * device configuration and stuff and very rarely used. Some ioctls
883 * pass on to the socket itself.
884 *
885 * NOTE: I like the idea of a module for the config stuff. ie ifconfig
886 * loads the devconfigure module does its configuring and unloads it.
887 * There's a good 20K of config code hanging around the kernel.
888 */
889
890int inet_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
891{
892 struct sock *sk = sock->sk;
893 int err = 0;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900894 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 switch (cmd) {
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700897 case SIOCGSTAMP:
898 err = sock_get_timestamp(sk, (struct timeval __user *)arg);
899 break;
900 case SIOCGSTAMPNS:
901 err = sock_get_timestampns(sk, (struct timespec __user *)arg);
902 break;
903 case SIOCADDRT:
904 case SIOCDELRT:
905 case SIOCRTMSG:
906 err = ip_rt_ioctl(net, cmd, (void __user *)arg);
907 break;
908 case SIOCDARP:
909 case SIOCGARP:
910 case SIOCSARP:
911 err = arp_ioctl(net, cmd, (void __user *)arg);
912 break;
913 case SIOCGIFADDR:
914 case SIOCSIFADDR:
915 case SIOCGIFBRDADDR:
916 case SIOCSIFBRDADDR:
917 case SIOCGIFNETMASK:
918 case SIOCSIFNETMASK:
919 case SIOCGIFDSTADDR:
920 case SIOCSIFDSTADDR:
921 case SIOCSIFPFLAGS:
922 case SIOCGIFPFLAGS:
923 case SIOCSIFFLAGS:
924 err = devinet_ioctl(net, cmd, (void __user *)arg);
925 break;
926 default:
927 if (sk->sk_prot->ioctl)
928 err = sk->sk_prot->ioctl(sk, cmd, arg);
929 else
930 err = -ENOIOCTLCMD;
931 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933 return err;
934}
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700935EXPORT_SYMBOL(inet_ioctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Eric W. Biederman709b46e2011-01-29 16:15:56 +0000937#ifdef CONFIG_COMPAT
Gerrit Renker686dc6b2011-10-15 09:26:56 +0000938static int inet_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
Eric W. Biederman709b46e2011-01-29 16:15:56 +0000939{
940 struct sock *sk = sock->sk;
941 int err = -ENOIOCTLCMD;
942
943 if (sk->sk_prot->compat_ioctl)
944 err = sk->sk_prot->compat_ioctl(sk, cmd, arg);
945
946 return err;
947}
948#endif
949
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800950const struct proto_ops inet_stream_ops = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800951 .family = PF_INET,
952 .owner = THIS_MODULE,
953 .release = inet_release,
954 .bind = inet_bind,
955 .connect = inet_stream_connect,
956 .socketpair = sock_no_socketpair,
957 .accept = inet_accept,
958 .getname = inet_getname,
959 .poll = tcp_poll,
960 .ioctl = inet_ioctl,
961 .listen = inet_listen,
962 .shutdown = inet_shutdown,
963 .setsockopt = sock_common_setsockopt,
964 .getsockopt = sock_common_getsockopt,
Changli Gao7ba42912010-07-10 20:41:55 +0000965 .sendmsg = inet_sendmsg,
Tom Herbertfec5e652010-04-16 16:01:27 -0700966 .recvmsg = inet_recvmsg,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800967 .mmap = sock_no_mmap,
Changli Gao7ba42912010-07-10 20:41:55 +0000968 .sendpage = inet_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800969 .splice_read = tcp_splice_read,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800970#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800971 .compat_setsockopt = compat_sock_common_setsockopt,
972 .compat_getsockopt = compat_sock_common_getsockopt,
Eric W. Biederman709b46e2011-01-29 16:15:56 +0000973 .compat_ioctl = inet_compat_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800974#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975};
Eric Dumazet3d1427f2009-08-28 23:45:21 -0700976EXPORT_SYMBOL(inet_stream_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800978const struct proto_ops inet_dgram_ops = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800979 .family = PF_INET,
980 .owner = THIS_MODULE,
981 .release = inet_release,
982 .bind = inet_bind,
983 .connect = inet_dgram_connect,
984 .socketpair = sock_no_socketpair,
985 .accept = sock_no_accept,
986 .getname = inet_getname,
987 .poll = udp_poll,
988 .ioctl = inet_ioctl,
989 .listen = sock_no_listen,
990 .shutdown = inet_shutdown,
991 .setsockopt = sock_common_setsockopt,
992 .getsockopt = sock_common_getsockopt,
993 .sendmsg = inet_sendmsg,
Tom Herbertfec5e652010-04-16 16:01:27 -0700994 .recvmsg = inet_recvmsg,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800995 .mmap = sock_no_mmap,
996 .sendpage = inet_sendpage,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800997#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800998 .compat_setsockopt = compat_sock_common_setsockopt,
999 .compat_getsockopt = compat_sock_common_getsockopt,
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001000 .compat_ioctl = inet_compat_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001001#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002};
Eric Dumazet3d1427f2009-08-28 23:45:21 -07001003EXPORT_SYMBOL(inet_dgram_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005/*
1006 * For SOCK_RAW sockets; should be the same as inet_dgram_ops but without
1007 * udp_poll
1008 */
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001009static const struct proto_ops inet_sockraw_ops = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001010 .family = PF_INET,
1011 .owner = THIS_MODULE,
1012 .release = inet_release,
1013 .bind = inet_bind,
1014 .connect = inet_dgram_connect,
1015 .socketpair = sock_no_socketpair,
1016 .accept = sock_no_accept,
1017 .getname = inet_getname,
1018 .poll = datagram_poll,
1019 .ioctl = inet_ioctl,
1020 .listen = sock_no_listen,
1021 .shutdown = inet_shutdown,
1022 .setsockopt = sock_common_setsockopt,
1023 .getsockopt = sock_common_getsockopt,
1024 .sendmsg = inet_sendmsg,
Tom Herbertfec5e652010-04-16 16:01:27 -07001025 .recvmsg = inet_recvmsg,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001026 .mmap = sock_no_mmap,
1027 .sendpage = inet_sendpage,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001028#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001029 .compat_setsockopt = compat_sock_common_setsockopt,
1030 .compat_getsockopt = compat_sock_common_getsockopt,
Eric W. Biederman709b46e2011-01-29 16:15:56 +00001031 .compat_ioctl = inet_compat_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001032#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033};
1034
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00001035static const struct net_proto_family inet_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 .family = PF_INET,
1037 .create = inet_create,
1038 .owner = THIS_MODULE,
1039};
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041/* Upon startup we insert all the elements in inetsw_array[] into
1042 * the linked list inetsw.
1043 */
1044static struct inet_protosw inetsw_array[] =
1045{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001046 {
1047 .type = SOCK_STREAM,
1048 .protocol = IPPROTO_TCP,
1049 .prot = &tcp_prot,
1050 .ops = &inet_stream_ops,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001051 .no_check = 0,
1052 .flags = INET_PROTOSW_PERMANENT |
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08001053 INET_PROTOSW_ICSK,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001054 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001056 {
1057 .type = SOCK_DGRAM,
1058 .protocol = IPPROTO_UDP,
1059 .prot = &udp_prot,
1060 .ops = &inet_dgram_ops,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001061 .no_check = UDP_CSUM_DEFAULT,
1062 .flags = INET_PROTOSW_PERMANENT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 },
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001064
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +00001065 {
1066 .type = SOCK_DGRAM,
1067 .protocol = IPPROTO_ICMP,
1068 .prot = &ping_prot,
1069 .ops = &inet_dgram_ops,
1070 .no_check = UDP_CSUM_DEFAULT,
1071 .flags = INET_PROTOSW_REUSE,
1072 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001075 .type = SOCK_RAW,
1076 .protocol = IPPROTO_IP, /* wild card */
1077 .prot = &raw_prot,
1078 .ops = &inet_sockraw_ops,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001079 .no_check = UDP_CSUM_DEFAULT,
1080 .flags = INET_PROTOSW_REUSE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 }
1082};
1083
Denis Chengc40f6ff2007-09-16 16:39:25 -07001084#define INETSW_ARRAY_LEN ARRAY_SIZE(inetsw_array)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086void inet_register_protosw(struct inet_protosw *p)
1087{
1088 struct list_head *lh;
1089 struct inet_protosw *answer;
1090 int protocol = p->protocol;
1091 struct list_head *last_perm;
1092
1093 spin_lock_bh(&inetsw_lock);
1094
1095 if (p->type >= SOCK_MAX)
1096 goto out_illegal;
1097
1098 /* If we are trying to override a permanent protocol, bail. */
1099 answer = NULL;
1100 last_perm = &inetsw[p->type];
1101 list_for_each(lh, &inetsw[p->type]) {
1102 answer = list_entry(lh, struct inet_protosw, list);
1103
1104 /* Check only the non-wild match. */
1105 if (INET_PROTOSW_PERMANENT & answer->flags) {
1106 if (protocol == answer->protocol)
1107 break;
1108 last_perm = lh;
1109 }
1110
1111 answer = NULL;
1112 }
1113 if (answer)
1114 goto out_permanent;
1115
1116 /* Add the new entry after the last permanent entry if any, so that
1117 * the new entry does not override a permanent entry when matched with
1118 * a wild-card protocol. But it is allowed to override any existing
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001119 * non-permanent entry. This means that when we remove this entry, the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 * system automatically returns to the old behavior.
1121 */
1122 list_add_rcu(&p->list, last_perm);
1123out:
1124 spin_unlock_bh(&inetsw_lock);
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return;
1127
1128out_permanent:
Joe Perches058bd4d2012-03-11 18:36:11 +00001129 pr_err("Attempt to override permanent protocol %d\n", protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 goto out;
1131
1132out_illegal:
Joe Perches058bd4d2012-03-11 18:36:11 +00001133 pr_err("Ignoring attempt to register invalid socket type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 p->type);
1135 goto out;
1136}
Eric Dumazet3d1427f2009-08-28 23:45:21 -07001137EXPORT_SYMBOL(inet_register_protosw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139void inet_unregister_protosw(struct inet_protosw *p)
1140{
1141 if (INET_PROTOSW_PERMANENT & p->flags) {
Joe Perches058bd4d2012-03-11 18:36:11 +00001142 pr_err("Attempt to unregister permanent protocol %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 p->protocol);
1144 } else {
1145 spin_lock_bh(&inetsw_lock);
1146 list_del_rcu(&p->list);
1147 spin_unlock_bh(&inetsw_lock);
1148
1149 synchronize_net();
1150 }
1151}
Eric Dumazet3d1427f2009-08-28 23:45:21 -07001152EXPORT_SYMBOL(inet_unregister_protosw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Arnaldo Carvalho de Melo32519f12005-08-09 19:50:02 -07001154/*
1155 * Shall we try to damage output packets if routing dev changes?
1156 */
1157
Brian Haleyab32ea52006-09-22 14:15:41 -07001158int sysctl_ip_dynaddr __read_mostly;
Arnaldo Carvalho de Melo32519f12005-08-09 19:50:02 -07001159
1160static int inet_sk_reselect_saddr(struct sock *sk)
1161{
1162 struct inet_sock *inet = inet_sk(sk);
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001163 __be32 old_saddr = inet->inet_saddr;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001164 __be32 daddr = inet->inet_daddr;
David S. Miller6e869132011-05-06 16:18:04 -07001165 struct flowi4 *fl4;
David S. Millerb23dd4f2011-03-02 14:31:35 -08001166 struct rtable *rt;
1167 __be32 new_saddr;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +00001168 struct ip_options_rcu *inet_opt;
Arnaldo Carvalho de Melo32519f12005-08-09 19:50:02 -07001169
Eric Dumazetf6d8bd02011-04-21 09:45:37 +00001170 inet_opt = rcu_dereference_protected(inet->inet_opt,
1171 sock_owned_by_user(sk));
1172 if (inet_opt && inet_opt->opt.srr)
1173 daddr = inet_opt->opt.faddr;
Arnaldo Carvalho de Melo32519f12005-08-09 19:50:02 -07001174
1175 /* Query new route. */
David S. Miller6e869132011-05-06 16:18:04 -07001176 fl4 = &inet->cork.fl.u.ip4;
1177 rt = ip_route_connect(fl4, daddr, 0, RT_CONN_FLAGS(sk),
David S. Millerb23dd4f2011-03-02 14:31:35 -08001178 sk->sk_bound_dev_if, sk->sk_protocol,
1179 inet->inet_sport, inet->inet_dport, sk, false);
1180 if (IS_ERR(rt))
1181 return PTR_ERR(rt);
Arnaldo Carvalho de Melo32519f12005-08-09 19:50:02 -07001182
Changli Gaod8d1f302010-06-10 23:31:35 -07001183 sk_setup_caps(sk, &rt->dst);
Arnaldo Carvalho de Melo32519f12005-08-09 19:50:02 -07001184
David S. Miller6e869132011-05-06 16:18:04 -07001185 new_saddr = fl4->saddr;
Arnaldo Carvalho de Melo32519f12005-08-09 19:50:02 -07001186
1187 if (new_saddr == old_saddr)
1188 return 0;
1189
1190 if (sysctl_ip_dynaddr > 1) {
Joe Perches058bd4d2012-03-11 18:36:11 +00001191 pr_info("%s(): shifting inet->saddr from %pI4 to %pI4\n",
1192 __func__, &old_saddr, &new_saddr);
Arnaldo Carvalho de Melo32519f12005-08-09 19:50:02 -07001193 }
1194
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001195 inet->inet_saddr = inet->inet_rcv_saddr = new_saddr;
Arnaldo Carvalho de Melo32519f12005-08-09 19:50:02 -07001196
1197 /*
1198 * XXX The only one ugly spot where we need to
1199 * XXX really change the sockets identity after
1200 * XXX it has entered the hashes. -DaveM
1201 *
1202 * Besides that, it does not check for connection
1203 * uniqueness. Wait for troubles.
1204 */
1205 __sk_prot_rehash(sk);
1206 return 0;
1207}
1208
1209int inet_sk_rebuild_header(struct sock *sk)
1210{
1211 struct inet_sock *inet = inet_sk(sk);
1212 struct rtable *rt = (struct rtable *)__sk_dst_check(sk, 0);
Al Viro3ca3c682006-09-27 18:28:07 -07001213 __be32 daddr;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +00001214 struct ip_options_rcu *inet_opt;
David S. Miller6e869132011-05-06 16:18:04 -07001215 struct flowi4 *fl4;
Arnaldo Carvalho de Melo32519f12005-08-09 19:50:02 -07001216 int err;
1217
1218 /* Route is OK, nothing to do. */
1219 if (rt)
1220 return 0;
1221
1222 /* Reroute. */
Eric Dumazetf6d8bd02011-04-21 09:45:37 +00001223 rcu_read_lock();
1224 inet_opt = rcu_dereference(inet->inet_opt);
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001225 daddr = inet->inet_daddr;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +00001226 if (inet_opt && inet_opt->opt.srr)
1227 daddr = inet_opt->opt.faddr;
1228 rcu_read_unlock();
David S. Miller6e869132011-05-06 16:18:04 -07001229 fl4 = &inet->cork.fl.u.ip4;
1230 rt = ip_route_output_ports(sock_net(sk), fl4, sk, daddr, inet->inet_saddr,
David S. Miller78fbfd82011-03-12 00:00:52 -05001231 inet->inet_dport, inet->inet_sport,
1232 sk->sk_protocol, RT_CONN_FLAGS(sk),
1233 sk->sk_bound_dev_if);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001234 if (!IS_ERR(rt)) {
1235 err = 0;
Changli Gaod8d1f302010-06-10 23:31:35 -07001236 sk_setup_caps(sk, &rt->dst);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001237 } else {
1238 err = PTR_ERR(rt);
1239
Arnaldo Carvalho de Melo32519f12005-08-09 19:50:02 -07001240 /* Routing failed... */
1241 sk->sk_route_caps = 0;
1242 /*
1243 * Other protocols have to map its equivalent state to TCP_SYN_SENT.
1244 * DCCP maps its DCCP_REQUESTING state to TCP_SYN_SENT. -acme
1245 */
1246 if (!sysctl_ip_dynaddr ||
1247 sk->sk_state != TCP_SYN_SENT ||
1248 (sk->sk_userlocks & SOCK_BINDADDR_LOCK) ||
1249 (err = inet_sk_reselect_saddr(sk)) != 0)
1250 sk->sk_err_soft = -err;
1251 }
1252
1253 return err;
1254}
Arnaldo Carvalho de Melo32519f12005-08-09 19:50:02 -07001255EXPORT_SYMBOL(inet_sk_rebuild_header);
1256
Herbert Xua430a432006-07-08 13:34:56 -07001257static int inet_gso_send_check(struct sk_buff *skb)
1258{
Alexey Dobriyan32613092009-09-14 12:21:47 +00001259 const struct net_protocol *ops;
David S. Millerf9242b62012-06-19 18:56:21 -07001260 const struct iphdr *iph;
Herbert Xua430a432006-07-08 13:34:56 -07001261 int proto;
1262 int ihl;
1263 int err = -EINVAL;
1264
1265 if (unlikely(!pskb_may_pull(skb, sizeof(*iph))))
1266 goto out;
1267
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001268 iph = ip_hdr(skb);
Herbert Xua430a432006-07-08 13:34:56 -07001269 ihl = iph->ihl * 4;
1270 if (ihl < sizeof(*iph))
1271 goto out;
1272
1273 if (unlikely(!pskb_may_pull(skb, ihl)))
1274 goto out;
1275
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001276 __skb_pull(skb, ihl);
1277 skb_reset_transport_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001278 iph = ip_hdr(skb);
David S. Millerf9242b62012-06-19 18:56:21 -07001279 proto = iph->protocol;
Herbert Xua430a432006-07-08 13:34:56 -07001280 err = -EPROTONOSUPPORT;
1281
1282 rcu_read_lock();
1283 ops = rcu_dereference(inet_protos[proto]);
1284 if (likely(ops && ops->gso_send_check))
1285 err = ops->gso_send_check(skb);
1286 rcu_read_unlock();
1287
1288out:
1289 return err;
1290}
1291
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001292static struct sk_buff *inet_gso_segment(struct sk_buff *skb,
1293 netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07001294{
1295 struct sk_buff *segs = ERR_PTR(-EINVAL);
Alexey Dobriyan32613092009-09-14 12:21:47 +00001296 const struct net_protocol *ops;
David S. Millerf9242b62012-06-19 18:56:21 -07001297 struct iphdr *iph;
Herbert Xuf4c50d92006-06-22 03:02:40 -07001298 int proto;
1299 int ihl;
1300 int id;
Sridhar Samudralad7ca4cc2009-07-09 08:09:47 +00001301 unsigned int offset = 0;
Herbert Xuf4c50d92006-06-22 03:02:40 -07001302
Stephen Hemmingerd212f872007-06-27 00:47:37 -07001303 if (!(features & NETIF_F_V4_CSUM))
1304 features &= ~NETIF_F_SG;
1305
Herbert Xubbcf4672006-07-03 19:38:35 -07001306 if (unlikely(skb_shinfo(skb)->gso_type &
1307 ~(SKB_GSO_TCPV4 |
1308 SKB_GSO_UDP |
1309 SKB_GSO_DODGY |
1310 SKB_GSO_TCP_ECN |
1311 0)))
1312 goto out;
1313
1314 if (unlikely(!pskb_may_pull(skb, sizeof(*iph))))
Herbert Xuf4c50d92006-06-22 03:02:40 -07001315 goto out;
1316
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001317 iph = ip_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07001318 ihl = iph->ihl * 4;
1319 if (ihl < sizeof(*iph))
1320 goto out;
1321
Herbert Xubbcf4672006-07-03 19:38:35 -07001322 if (unlikely(!pskb_may_pull(skb, ihl)))
Herbert Xuf4c50d92006-06-22 03:02:40 -07001323 goto out;
1324
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001325 __skb_pull(skb, ihl);
1326 skb_reset_transport_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001327 iph = ip_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07001328 id = ntohs(iph->id);
David S. Millerf9242b62012-06-19 18:56:21 -07001329 proto = iph->protocol;
Herbert Xuf4c50d92006-06-22 03:02:40 -07001330 segs = ERR_PTR(-EPROTONOSUPPORT);
1331
1332 rcu_read_lock();
1333 ops = rcu_dereference(inet_protos[proto]);
Herbert Xubbcf4672006-07-03 19:38:35 -07001334 if (likely(ops && ops->gso_segment))
Herbert Xu576a30e2006-06-27 13:22:38 -07001335 segs = ops->gso_segment(skb, features);
Herbert Xuf4c50d92006-06-22 03:02:40 -07001336 rcu_read_unlock();
1337
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07001338 if (!segs || IS_ERR(segs))
Herbert Xuf4c50d92006-06-22 03:02:40 -07001339 goto out;
1340
1341 skb = segs;
1342 do {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001343 iph = ip_hdr(skb);
Sridhar Samudralad7ca4cc2009-07-09 08:09:47 +00001344 if (proto == IPPROTO_UDP) {
1345 iph->id = htons(id);
1346 iph->frag_off = htons(offset >> 3);
1347 if (skb->next != NULL)
1348 iph->frag_off |= htons(IP_MF);
1349 offset += (skb->len - skb->mac_len - iph->ihl * 4);
1350 } else
1351 iph->id = htons(id++);
Herbert Xuf4c50d92006-06-22 03:02:40 -07001352 iph->tot_len = htons(skb->len - skb->mac_len);
1353 iph->check = 0;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001354 iph->check = ip_fast_csum(skb_network_header(skb), iph->ihl);
Herbert Xuf4c50d92006-06-22 03:02:40 -07001355 } while ((skb = skb->next));
1356
1357out:
1358 return segs;
1359}
1360
Herbert Xu73cc19f2008-12-15 23:41:09 -08001361static struct sk_buff **inet_gro_receive(struct sk_buff **head,
1362 struct sk_buff *skb)
1363{
Alexey Dobriyan32613092009-09-14 12:21:47 +00001364 const struct net_protocol *ops;
Herbert Xu73cc19f2008-12-15 23:41:09 -08001365 struct sk_buff **pp = NULL;
1366 struct sk_buff *p;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001367 const struct iphdr *iph;
Herbert Xua5b1cf22009-05-26 18:50:28 +00001368 unsigned int hlen;
1369 unsigned int off;
Herbert Xu1075f3f2009-05-26 18:50:29 +00001370 unsigned int id;
Herbert Xu73cc19f2008-12-15 23:41:09 -08001371 int flush = 1;
1372 int proto;
Herbert Xu73cc19f2008-12-15 23:41:09 -08001373
Herbert Xua5b1cf22009-05-26 18:50:28 +00001374 off = skb_gro_offset(skb);
1375 hlen = off + sizeof(*iph);
1376 iph = skb_gro_header_fast(skb, off);
1377 if (skb_gro_header_hard(skb, hlen)) {
1378 iph = skb_gro_header_slow(skb, hlen, off);
1379 if (unlikely(!iph))
1380 goto out;
1381 }
Herbert Xu73cc19f2008-12-15 23:41:09 -08001382
David S. Millerf9242b62012-06-19 18:56:21 -07001383 proto = iph->protocol;
Herbert Xu73cc19f2008-12-15 23:41:09 -08001384
1385 rcu_read_lock();
1386 ops = rcu_dereference(inet_protos[proto]);
1387 if (!ops || !ops->gro_receive)
1388 goto out_unlock;
1389
Herbert Xua5ad24b2009-02-08 18:00:39 +00001390 if (*(u8 *)iph != 0x45)
Herbert Xu73cc19f2008-12-15 23:41:09 -08001391 goto out_unlock;
1392
Eric Dumazeta9e050f2012-08-05 22:34:50 +00001393 if (unlikely(ip_fast_csum((u8 *)iph, 5)))
Herbert Xu73cc19f2008-12-15 23:41:09 -08001394 goto out_unlock;
1395
Eric Dumazet0eae88f2010-04-20 19:06:52 -07001396 id = ntohl(*(__be32 *)&iph->id);
1397 flush = (u16)((ntohl(*(__be32 *)iph) ^ skb_gro_len(skb)) | (id ^ IP_DF));
Herbert Xu1075f3f2009-05-26 18:50:29 +00001398 id >>= 16;
Herbert Xu73cc19f2008-12-15 23:41:09 -08001399
1400 for (p = *head; p; p = p->next) {
1401 struct iphdr *iph2;
1402
1403 if (!NAPI_GRO_CB(p)->same_flow)
1404 continue;
1405
1406 iph2 = ip_hdr(p);
1407
Herbert Xua5ad24b2009-02-08 18:00:39 +00001408 if ((iph->protocol ^ iph2->protocol) |
Eric Dumazet0eae88f2010-04-20 19:06:52 -07001409 ((__force u32)iph->saddr ^ (__force u32)iph2->saddr) |
1410 ((__force u32)iph->daddr ^ (__force u32)iph2->daddr)) {
Herbert Xu73cc19f2008-12-15 23:41:09 -08001411 NAPI_GRO_CB(p)->same_flow = 0;
1412 continue;
1413 }
1414
1415 /* All fields must match except length and checksum. */
1416 NAPI_GRO_CB(p)->flush |=
Herbert Xua5ad24b2009-02-08 18:00:39 +00001417 (iph->ttl ^ iph2->ttl) |
Eric Dumazeta9e050f2012-08-05 22:34:50 +00001418 (iph->tos ^ iph2->tos) |
Herbert Xua5ad24b2009-02-08 18:00:39 +00001419 ((u16)(ntohs(iph2->id) + NAPI_GRO_CB(p)->count) ^ id);
Herbert Xu73cc19f2008-12-15 23:41:09 -08001420
1421 NAPI_GRO_CB(p)->flush |= flush;
1422 }
1423
1424 NAPI_GRO_CB(skb)->flush |= flush;
Herbert Xu86911732009-01-29 14:19:50 +00001425 skb_gro_pull(skb, sizeof(*iph));
1426 skb_set_transport_header(skb, skb_gro_offset(skb));
Herbert Xu73cc19f2008-12-15 23:41:09 -08001427
1428 pp = ops->gro_receive(head, skb);
1429
1430out_unlock:
1431 rcu_read_unlock();
1432
1433out:
1434 NAPI_GRO_CB(skb)->flush |= flush;
1435
1436 return pp;
1437}
1438
1439static int inet_gro_complete(struct sk_buff *skb)
1440{
Herbert Xu73cc19f2008-12-15 23:41:09 -08001441 __be16 newlen = htons(skb->len - skb_network_offset(skb));
David S. Millerf9242b62012-06-19 18:56:21 -07001442 struct iphdr *iph = ip_hdr(skb);
1443 const struct net_protocol *ops;
1444 int proto = iph->protocol;
1445 int err = -ENOSYS;
Herbert Xu73cc19f2008-12-15 23:41:09 -08001446
1447 csum_replace2(&iph->check, iph->tot_len, newlen);
1448 iph->tot_len = newlen;
1449
1450 rcu_read_lock();
1451 ops = rcu_dereference(inet_protos[proto]);
1452 if (WARN_ON(!ops || !ops->gro_complete))
1453 goto out_unlock;
1454
1455 err = ops->gro_complete(skb);
1456
1457out_unlock:
1458 rcu_read_unlock();
1459
1460 return err;
1461}
1462
Denis V. Luneveee4fe42008-04-03 14:27:58 -07001463int inet_ctl_sock_create(struct sock **sk, unsigned short family,
Denis V. Lunev56772422008-04-03 14:28:30 -07001464 unsigned short type, unsigned char protocol,
1465 struct net *net)
Denis V. Lunev3d58b5f2008-04-03 14:22:32 -07001466{
Denis V. Luneveee4fe42008-04-03 14:27:58 -07001467 struct socket *sock;
1468 int rc = sock_create_kern(family, type, protocol, &sock);
Denis V. Lunev3d58b5f2008-04-03 14:22:32 -07001469
1470 if (rc == 0) {
Denis V. Luneveee4fe42008-04-03 14:27:58 -07001471 *sk = sock->sk;
1472 (*sk)->sk_allocation = GFP_ATOMIC;
Denis V. Lunev3d58b5f2008-04-03 14:22:32 -07001473 /*
1474 * Unhash it so that IP input processing does not even see it,
1475 * we do not wish this socket to see incoming packets.
1476 */
Denis V. Luneveee4fe42008-04-03 14:27:58 -07001477 (*sk)->sk_prot->unhash(*sk);
Denis V. Lunev56772422008-04-03 14:28:30 -07001478
1479 sk_change_net(*sk, net);
Denis V. Lunev3d58b5f2008-04-03 14:22:32 -07001480 }
1481 return rc;
1482}
Denis V. Lunev3d58b5f2008-04-03 14:22:32 -07001483EXPORT_SYMBOL_GPL(inet_ctl_sock_create);
1484
Tejun Heo7d720c32010-02-16 15:20:26 +00001485unsigned long snmp_fold_field(void __percpu *mib[], int offt)
Herbert Xu5e0f0432007-04-24 21:53:35 -07001486{
1487 unsigned long res = 0;
Eric Dumazet8f0ea0f2011-06-10 19:45:51 +00001488 int i, j;
Herbert Xu5e0f0432007-04-24 21:53:35 -07001489
1490 for_each_possible_cpu(i) {
Eric Dumazet8f0ea0f2011-06-10 19:45:51 +00001491 for (j = 0; j < SNMP_ARRAY_SZ; j++)
1492 res += *(((unsigned long *) per_cpu_ptr(mib[j], i)) + offt);
Herbert Xu5e0f0432007-04-24 21:53:35 -07001493 }
1494 return res;
1495}
1496EXPORT_SYMBOL_GPL(snmp_fold_field);
1497
Eric Dumazet4ce3c182010-06-30 13:31:19 -07001498#if BITS_PER_LONG==32
1499
1500u64 snmp_fold_field64(void __percpu *mib[], int offt, size_t syncp_offset)
1501{
1502 u64 res = 0;
1503 int cpu;
1504
1505 for_each_possible_cpu(cpu) {
Eric Dumazet8f0ea0f2011-06-10 19:45:51 +00001506 void *bhptr;
Eric Dumazet4ce3c182010-06-30 13:31:19 -07001507 struct u64_stats_sync *syncp;
Eric Dumazet8f0ea0f2011-06-10 19:45:51 +00001508 u64 v;
Eric Dumazet4ce3c182010-06-30 13:31:19 -07001509 unsigned int start;
1510
Eric Dumazet8f0ea0f2011-06-10 19:45:51 +00001511 bhptr = per_cpu_ptr(mib[0], cpu);
Eric Dumazet4ce3c182010-06-30 13:31:19 -07001512 syncp = (struct u64_stats_sync *)(bhptr + syncp_offset);
1513 do {
1514 start = u64_stats_fetch_begin_bh(syncp);
Eric Dumazet8f0ea0f2011-06-10 19:45:51 +00001515 v = *(((u64 *) bhptr) + offt);
Eric Dumazet4ce3c182010-06-30 13:31:19 -07001516 } while (u64_stats_fetch_retry_bh(syncp, start));
1517
Eric Dumazet8f0ea0f2011-06-10 19:45:51 +00001518 res += v;
Eric Dumazet4ce3c182010-06-30 13:31:19 -07001519 }
1520 return res;
1521}
1522EXPORT_SYMBOL_GPL(snmp_fold_field64);
1523#endif
1524
Eric Dumazet1823e4c82010-06-22 20:58:41 +00001525int snmp_mib_init(void __percpu *ptr[2], size_t mibsize, size_t align)
Herbert Xu5e0f0432007-04-24 21:53:35 -07001526{
1527 BUG_ON(ptr == NULL);
Eric Dumazet1823e4c82010-06-22 20:58:41 +00001528 ptr[0] = __alloc_percpu(mibsize, align);
Herbert Xu5e0f0432007-04-24 21:53:35 -07001529 if (!ptr[0])
Eric Dumazet8f0ea0f2011-06-10 19:45:51 +00001530 return -ENOMEM;
1531#if SNMP_ARRAY_SZ == 2
Eric Dumazet1823e4c82010-06-22 20:58:41 +00001532 ptr[1] = __alloc_percpu(mibsize, align);
Eric Dumazet8f0ea0f2011-06-10 19:45:51 +00001533 if (!ptr[1]) {
1534 free_percpu(ptr[0]);
1535 ptr[0] = NULL;
1536 return -ENOMEM;
1537 }
1538#endif
Herbert Xu5e0f0432007-04-24 21:53:35 -07001539 return 0;
Herbert Xu5e0f0432007-04-24 21:53:35 -07001540}
1541EXPORT_SYMBOL_GPL(snmp_mib_init);
1542
Eric Dumazet8f0ea0f2011-06-10 19:45:51 +00001543void snmp_mib_free(void __percpu *ptr[SNMP_ARRAY_SZ])
Herbert Xu5e0f0432007-04-24 21:53:35 -07001544{
Eric Dumazet8f0ea0f2011-06-10 19:45:51 +00001545 int i;
1546
Herbert Xu5e0f0432007-04-24 21:53:35 -07001547 BUG_ON(ptr == NULL);
Eric Dumazet8f0ea0f2011-06-10 19:45:51 +00001548 for (i = 0; i < SNMP_ARRAY_SZ; i++) {
1549 free_percpu(ptr[i]);
1550 ptr[i] = NULL;
1551 }
Herbert Xu5e0f0432007-04-24 21:53:35 -07001552}
1553EXPORT_SYMBOL_GPL(snmp_mib_free);
1554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555#ifdef CONFIG_IP_MULTICAST
Alexey Dobriyan32613092009-09-14 12:21:47 +00001556static const struct net_protocol igmp_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 .handler = igmp_rcv,
Alexey Dobriyanb4ee07d2008-12-25 16:42:23 -08001558 .netns_ok = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559};
1560#endif
1561
Alexey Dobriyan32613092009-09-14 12:21:47 +00001562static const struct net_protocol tcp_protocol = {
David S. Miller41063e92012-06-19 21:22:05 -07001563 .early_demux = tcp_v4_early_demux,
1564 .handler = tcp_v4_rcv,
1565 .err_handler = tcp_v4_err,
1566 .gso_send_check = tcp_v4_gso_send_check,
1567 .gso_segment = tcp_tso_segment,
1568 .gro_receive = tcp4_gro_receive,
1569 .gro_complete = tcp4_gro_complete,
1570 .no_policy = 1,
1571 .netns_ok = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572};
1573
Alexey Dobriyan32613092009-09-14 12:21:47 +00001574static const struct net_protocol udp_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 .handler = udp_rcv,
1576 .err_handler = udp_err,
Sridhar Samudralad7ca4cc2009-07-09 08:09:47 +00001577 .gso_send_check = udp4_ufo_send_check,
1578 .gso_segment = udp4_ufo_fragment,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 .no_policy = 1,
Denis V. Lunev92f1fec2008-03-24 15:34:06 -07001580 .netns_ok = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581};
1582
Alexey Dobriyan32613092009-09-14 12:21:47 +00001583static const struct net_protocol icmp_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 .handler = icmp_rcv,
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +00001585 .err_handler = ping_err,
Herbert Xu8b7817f2007-12-12 10:44:43 -08001586 .no_policy = 1,
Denis V. Lunev92f1fec2008-03-24 15:34:06 -07001587 .netns_ok = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588};
1589
Pavel Emelyanov9b4661b2008-07-18 04:01:44 -07001590static __net_init int ipv4_mib_init_net(struct net *net)
1591{
Tejun Heo7d720c32010-02-16 15:20:26 +00001592 if (snmp_mib_init((void __percpu **)net->mib.tcp_statistics,
Eric Dumazet1823e4c82010-06-22 20:58:41 +00001593 sizeof(struct tcp_mib),
1594 __alignof__(struct tcp_mib)) < 0)
Pavel Emelyanov57ef42d2008-07-18 04:02:08 -07001595 goto err_tcp_mib;
Tejun Heo7d720c32010-02-16 15:20:26 +00001596 if (snmp_mib_init((void __percpu **)net->mib.ip_statistics,
Eric Dumazet1823e4c82010-06-22 20:58:41 +00001597 sizeof(struct ipstats_mib),
1598 __alignof__(struct ipstats_mib)) < 0)
Pavel Emelyanova20f5792008-07-18 04:02:42 -07001599 goto err_ip_mib;
Tejun Heo7d720c32010-02-16 15:20:26 +00001600 if (snmp_mib_init((void __percpu **)net->mib.net_statistics,
Eric Dumazet1823e4c82010-06-22 20:58:41 +00001601 sizeof(struct linux_mib),
1602 __alignof__(struct linux_mib)) < 0)
Pavel Emelyanov61a7e262008-07-18 04:03:08 -07001603 goto err_net_mib;
Tejun Heo7d720c32010-02-16 15:20:26 +00001604 if (snmp_mib_init((void __percpu **)net->mib.udp_statistics,
Eric Dumazet1823e4c82010-06-22 20:58:41 +00001605 sizeof(struct udp_mib),
1606 __alignof__(struct udp_mib)) < 0)
Pavel Emelyanov2f275f92008-07-18 04:03:27 -07001607 goto err_udp_mib;
Tejun Heo7d720c32010-02-16 15:20:26 +00001608 if (snmp_mib_init((void __percpu **)net->mib.udplite_statistics,
Eric Dumazet1823e4c82010-06-22 20:58:41 +00001609 sizeof(struct udp_mib),
1610 __alignof__(struct udp_mib)) < 0)
Pavel Emelyanov386019d2008-07-18 04:03:45 -07001611 goto err_udplite_mib;
Tejun Heo7d720c32010-02-16 15:20:26 +00001612 if (snmp_mib_init((void __percpu **)net->mib.icmp_statistics,
Eric Dumazet1823e4c82010-06-22 20:58:41 +00001613 sizeof(struct icmp_mib),
1614 __alignof__(struct icmp_mib)) < 0)
Pavel Emelyanovb60538a2008-07-18 04:04:02 -07001615 goto err_icmp_mib;
Eric Dumazetacb32ba2011-11-08 13:04:43 +00001616 net->mib.icmpmsg_statistics = kzalloc(sizeof(struct icmpmsg_mib),
1617 GFP_KERNEL);
1618 if (!net->mib.icmpmsg_statistics)
Pavel Emelyanov923c6582008-07-18 04:04:22 -07001619 goto err_icmpmsg_mib;
Pavel Emelyanov57ef42d2008-07-18 04:02:08 -07001620
1621 tcp_mib_init(net);
Pavel Emelyanov9b4661b2008-07-18 04:01:44 -07001622 return 0;
Pavel Emelyanov57ef42d2008-07-18 04:02:08 -07001623
Pavel Emelyanov923c6582008-07-18 04:04:22 -07001624err_icmpmsg_mib:
Tejun Heo7d720c32010-02-16 15:20:26 +00001625 snmp_mib_free((void __percpu **)net->mib.icmp_statistics);
Pavel Emelyanovb60538a2008-07-18 04:04:02 -07001626err_icmp_mib:
Tejun Heo7d720c32010-02-16 15:20:26 +00001627 snmp_mib_free((void __percpu **)net->mib.udplite_statistics);
Pavel Emelyanov386019d2008-07-18 04:03:45 -07001628err_udplite_mib:
Tejun Heo7d720c32010-02-16 15:20:26 +00001629 snmp_mib_free((void __percpu **)net->mib.udp_statistics);
Pavel Emelyanov2f275f92008-07-18 04:03:27 -07001630err_udp_mib:
Tejun Heo7d720c32010-02-16 15:20:26 +00001631 snmp_mib_free((void __percpu **)net->mib.net_statistics);
Pavel Emelyanov61a7e262008-07-18 04:03:08 -07001632err_net_mib:
Tejun Heo7d720c32010-02-16 15:20:26 +00001633 snmp_mib_free((void __percpu **)net->mib.ip_statistics);
Pavel Emelyanova20f5792008-07-18 04:02:42 -07001634err_ip_mib:
Tejun Heo7d720c32010-02-16 15:20:26 +00001635 snmp_mib_free((void __percpu **)net->mib.tcp_statistics);
Pavel Emelyanov57ef42d2008-07-18 04:02:08 -07001636err_tcp_mib:
1637 return -ENOMEM;
Pavel Emelyanov9b4661b2008-07-18 04:01:44 -07001638}
1639
1640static __net_exit void ipv4_mib_exit_net(struct net *net)
1641{
Eric Dumazetacb32ba2011-11-08 13:04:43 +00001642 kfree(net->mib.icmpmsg_statistics);
Tejun Heo7d720c32010-02-16 15:20:26 +00001643 snmp_mib_free((void __percpu **)net->mib.icmp_statistics);
1644 snmp_mib_free((void __percpu **)net->mib.udplite_statistics);
1645 snmp_mib_free((void __percpu **)net->mib.udp_statistics);
1646 snmp_mib_free((void __percpu **)net->mib.net_statistics);
1647 snmp_mib_free((void __percpu **)net->mib.ip_statistics);
1648 snmp_mib_free((void __percpu **)net->mib.tcp_statistics);
Pavel Emelyanov9b4661b2008-07-18 04:01:44 -07001649}
1650
1651static __net_initdata struct pernet_operations ipv4_mib_ops = {
1652 .init = ipv4_mib_init_net,
1653 .exit = ipv4_mib_exit_net,
1654};
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656static int __init init_ipv4_mibs(void)
1657{
Pavel Emelyanovd89cbbb2008-07-18 04:04:51 -07001658 return register_pernet_subsys(&ipv4_mib_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659}
1660
1661static int ipv4_proc_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Herbert Xu30e224d2005-07-05 14:40:10 -07001663/*
1664 * IP protocol layer initialiser
1665 */
1666
Stephen Hemminger7546dd92009-03-09 08:18:29 +00001667static struct packet_type ip_packet_type __read_mostly = {
Harvey Harrison09640e62009-02-01 00:45:17 -08001668 .type = cpu_to_be16(ETH_P_IP),
Herbert Xu30e224d2005-07-05 14:40:10 -07001669 .func = ip_rcv,
Herbert Xua430a432006-07-08 13:34:56 -07001670 .gso_send_check = inet_gso_send_check,
Herbert Xuf4c50d92006-06-22 03:02:40 -07001671 .gso_segment = inet_gso_segment,
Herbert Xu73cc19f2008-12-15 23:41:09 -08001672 .gro_receive = inet_gro_receive,
1673 .gro_complete = inet_gro_complete,
Herbert Xu30e224d2005-07-05 14:40:10 -07001674};
1675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676static int __init inet_init(void)
1677{
1678 struct sk_buff *dummy_skb;
1679 struct inet_protosw *q;
1680 struct list_head *r;
1681 int rc = -EINVAL;
1682
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07001683 BUILD_BUG_ON(sizeof(struct inet_skb_parm) > sizeof(dummy_skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Amerigo Wange3826f12010-05-05 00:27:06 +00001685 sysctl_local_reserved_ports = kzalloc(65536 / 8, GFP_KERNEL);
1686 if (!sysctl_local_reserved_ports)
1687 goto out;
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 rc = proto_register(&tcp_prot, 1);
1690 if (rc)
Amerigo Wange3826f12010-05-05 00:27:06 +00001691 goto out_free_reserved_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
1693 rc = proto_register(&udp_prot, 1);
1694 if (rc)
1695 goto out_unregister_tcp_proto;
1696
1697 rc = proto_register(&raw_prot, 1);
1698 if (rc)
1699 goto out_unregister_udp_proto;
1700
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +00001701 rc = proto_register(&ping_prot, 1);
1702 if (rc)
1703 goto out_unregister_raw_proto;
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 /*
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001706 * Tell SOCKET that we are alive...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 */
1708
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001709 (void)sock_register(&inet_family_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Al Virobd7b1532008-07-15 16:00:59 -04001711#ifdef CONFIG_SYSCTL
1712 ip_static_sysctl_init();
1713#endif
1714
Glauber Costa3dc43e32011-12-11 21:47:05 +00001715 tcp_prot.sysctl_mem = init_net.ipv4.sysctl_tcp_mem;
1716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 /*
1718 * Add all the base protocols.
1719 */
1720
1721 if (inet_add_protocol(&icmp_protocol, IPPROTO_ICMP) < 0)
Joe Perches058bd4d2012-03-11 18:36:11 +00001722 pr_crit("%s: Cannot add ICMP protocol\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if (inet_add_protocol(&udp_protocol, IPPROTO_UDP) < 0)
Joe Perches058bd4d2012-03-11 18:36:11 +00001724 pr_crit("%s: Cannot add UDP protocol\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (inet_add_protocol(&tcp_protocol, IPPROTO_TCP) < 0)
Joe Perches058bd4d2012-03-11 18:36:11 +00001726 pr_crit("%s: Cannot add TCP protocol\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727#ifdef CONFIG_IP_MULTICAST
1728 if (inet_add_protocol(&igmp_protocol, IPPROTO_IGMP) < 0)
Joe Perches058bd4d2012-03-11 18:36:11 +00001729 pr_crit("%s: Cannot add IGMP protocol\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730#endif
1731
1732 /* Register the socket-side information for inet_create. */
1733 for (r = &inetsw[0]; r < &inetsw[SOCK_MAX]; ++r)
1734 INIT_LIST_HEAD(r);
1735
1736 for (q = inetsw_array; q < &inetsw_array[INETSW_ARRAY_LEN]; ++q)
1737 inet_register_protosw(q);
1738
1739 /*
1740 * Set the ARP module up
1741 */
1742
1743 arp_init();
1744
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001745 /*
1746 * Set the IP module up
1747 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749 ip_init();
1750
Denis V. Lunev9b0f9762008-02-29 11:13:15 -08001751 tcp_v4_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 /* Setup TCP slab cache for open requests. */
1754 tcp_init();
1755
Hideo Aoki95766ff2007-12-31 00:29:24 -08001756 /* Setup UDP memory threshold */
1757 udp_init();
1758
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001759 /* Add UDP-Lite (RFC 3828) */
1760 udplite4_register();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +00001762 ping_init();
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 /*
1765 * Set the ICMP layer up
1766 */
1767
Denis V. Luneva5710d62008-02-29 11:14:50 -08001768 if (icmp_init() < 0)
1769 panic("Failed to create the ICMP control socket.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 /*
1772 * Initialise the multicast router
1773 */
1774#if defined(CONFIG_IP_MROUTE)
Wang Chen03d2f892008-07-03 12:13:36 +08001775 if (ip_mr_init())
Joe Perches058bd4d2012-03-11 18:36:11 +00001776 pr_crit("%s: Cannot init ipv4 mroute\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777#endif
1778 /*
1779 * Initialise per-cpu ipv4 mibs
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001780 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Stephen Hemminger132adf52007-03-08 20:44:43 -08001782 if (init_ipv4_mibs())
Joe Perches058bd4d2012-03-11 18:36:11 +00001783 pr_crit("%s: Cannot init ipv4 mibs\n", __func__);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 ipv4_proc_init();
1786
1787 ipfrag_init();
1788
Herbert Xu30e224d2005-07-05 14:40:10 -07001789 dev_add_pack(&ip_packet_type);
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 rc = 0;
1792out:
1793 return rc;
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +00001794out_unregister_raw_proto:
1795 proto_unregister(&raw_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796out_unregister_udp_proto:
1797 proto_unregister(&udp_prot);
Olaf Kirch321efff2006-09-27 16:33:45 -07001798out_unregister_tcp_proto:
1799 proto_unregister(&tcp_prot);
Amerigo Wange3826f12010-05-05 00:27:06 +00001800out_free_reserved_ports:
1801 kfree(sysctl_local_reserved_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 goto out;
1803}
1804
Heiko Carstensa536e072006-04-28 15:19:17 -07001805fs_initcall(inet_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807/* ------------------------------------------------------------------------ */
1808
1809#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810static int __init ipv4_proc_init(void)
1811{
1812 int rc = 0;
1813
1814 if (raw_proc_init())
1815 goto out_raw;
1816 if (tcp4_proc_init())
1817 goto out_tcp;
1818 if (udp4_proc_init())
1819 goto out_udp;
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +00001820 if (ping_proc_init())
1821 goto out_ping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (ip_misc_proc_init())
1823 goto out_misc;
1824out:
1825 return rc;
1826out_misc:
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +00001827 ping_proc_exit();
1828out_ping:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 udp4_proc_exit();
1830out_udp:
1831 tcp4_proc_exit();
1832out_tcp:
1833 raw_proc_exit();
1834out_raw:
1835 rc = -ENOMEM;
1836 goto out;
1837}
1838
1839#else /* CONFIG_PROC_FS */
1840static int __init ipv4_proc_init(void)
1841{
1842 return 0;
1843}
1844#endif /* CONFIG_PROC_FS */
1845
1846MODULE_ALIAS_NETPROTO(PF_INET);
1847