2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* PF_INET6 socket protocol family
|
2007-02-09 22:24:49 +08:00
|
|
|
* Linux INET6 implementation
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Authors:
|
2007-02-09 22:24:49 +08:00
|
|
|
* Pedro Roque <roque@di.fc.ul.pt>
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Adapted from linux/net/ipv4/af_inet.c
|
|
|
|
*
|
2014-08-25 04:53:10 +08:00
|
|
|
* Fixes:
|
2005-04-17 06:20:36 +08:00
|
|
|
* piggy, Karl Knutson : Socket protocol table
|
2014-08-25 04:53:10 +08:00
|
|
|
* Hideaki YOSHIFUJI : sin6_scope_id support
|
|
|
|
* Arnaldo Melo : check proc_net_create return, cleanups
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
2014-08-25 04:53:10 +08:00
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
|
2012-05-15 22:11:53 +08:00
|
|
|
#define pr_fmt(fmt) "IPv6: " fmt
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <linux/module.h>
|
2006-01-12 04:17:47 +08:00
|
|
|
#include <linux/capability.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/socket.h>
|
|
|
|
#include <linux/in.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/timer.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/sockios.h>
|
|
|
|
#include <linux/net.h>
|
|
|
|
#include <linux/fcntl.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/proc_fs.h>
|
|
|
|
#include <linux/stat.h>
|
|
|
|
#include <linux/init.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <linux/inet.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/icmpv6.h>
|
2005-08-10 10:42:34 +08:00
|
|
|
#include <linux/netfilter_ipv6.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <net/ip.h>
|
|
|
|
#include <net/ipv6.h>
|
|
|
|
#include <net/udp.h>
|
2006-11-28 03:10:57 +08:00
|
|
|
#include <net/udplite.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <net/tcp.h>
|
2013-05-23 04:17:31 +08:00
|
|
|
#include <net/ping.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <net/protocol.h>
|
|
|
|
#include <net/inet_common.h>
|
2008-10-01 22:33:10 +08:00
|
|
|
#include <net/route.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <net/transp_v6.h>
|
|
|
|
#include <net/ip6_route.h>
|
|
|
|
#include <net/addrconf.h>
|
2013-08-31 13:44:36 +08:00
|
|
|
#include <net/ndisc.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifdef CONFIG_IPV6_TUNNEL
|
|
|
|
#include <net/ip6_tunnel.h>
|
|
|
|
#endif
|
2016-06-28 03:02:46 +08:00
|
|
|
#include <net/calipso.h>
|
2016-11-08 21:57:40 +08:00
|
|
|
#include <net/seg6.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-12-25 03:46:01 +08:00
|
|
|
#include <linux/uaccess.h>
|
2008-04-03 08:22:53 +08:00
|
|
|
#include <linux/mroute6.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-04-05 23:22:51 +08:00
|
|
|
#include "ip6_offload.h"
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
MODULE_AUTHOR("Cast of dozens");
|
|
|
|
MODULE_DESCRIPTION("IPv6 protocol stack for Linux");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
2007-11-23 21:28:44 +08:00
|
|
|
/* The inetsw6 table contains everything that inet6_create needs to
|
2005-04-17 06:20:36 +08:00
|
|
|
* build a new socket.
|
|
|
|
*/
|
|
|
|
static struct list_head inetsw6[SOCK_MAX];
|
|
|
|
static DEFINE_SPINLOCK(inetsw6_lock);
|
|
|
|
|
2009-06-01 18:07:33 +08:00
|
|
|
struct ipv6_params ipv6_defaults = {
|
|
|
|
.disable_ipv6 = 0,
|
|
|
|
.autoconf = 1,
|
|
|
|
};
|
|
|
|
|
2012-05-05 18:13:53 +08:00
|
|
|
static int disable_ipv6_mod;
|
2009-06-01 18:07:33 +08:00
|
|
|
|
|
|
|
module_param_named(disable, disable_ipv6_mod, int, 0444);
|
|
|
|
MODULE_PARM_DESC(disable, "Disable IPv6 module such that it is non-functional");
|
|
|
|
|
|
|
|
module_param_named(disable_ipv6, ipv6_defaults.disable_ipv6, int, 0444);
|
|
|
|
MODULE_PARM_DESC(disable_ipv6, "Disable IPv6 on all interfaces");
|
|
|
|
|
|
|
|
module_param_named(autoconf, ipv6_defaults.autoconf, int, 0444);
|
|
|
|
MODULE_PARM_DESC(autoconf, "Enable IPv6 address autoconfiguration on all interfaces");
|
2009-03-04 19:18:11 +08:00
|
|
|
|
2016-06-10 01:21:00 +08:00
|
|
|
bool ipv6_mod_enabled(void)
|
|
|
|
{
|
|
|
|
return disable_ipv6_mod == 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(ipv6_mod_enabled);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
static __inline__ struct ipv6_pinfo *inet6_sk_generic(struct sock *sk)
|
|
|
|
{
|
|
|
|
const int offset = sk->sk_prot->obj_size - sizeof(struct ipv6_pinfo);
|
|
|
|
|
|
|
|
return (struct ipv6_pinfo *)(((u8 *)sk) + offset);
|
|
|
|
}
|
|
|
|
|
2009-11-06 14:18:14 +08:00
|
|
|
static int inet6_create(struct net *net, struct socket *sock, int protocol,
|
|
|
|
int kern)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct inet_sock *inet;
|
|
|
|
struct ipv6_pinfo *np;
|
|
|
|
struct sock *sk;
|
|
|
|
struct inet_protosw *answer;
|
|
|
|
struct proto *answer_prot;
|
|
|
|
unsigned char answer_flags;
|
2005-12-03 12:56:57 +08:00
|
|
|
int try_loading_module = 0;
|
|
|
|
int err;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2015-12-15 05:03:39 +08:00
|
|
|
if (protocol < 0 || protocol >= IPPROTO_MAX)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Look for the requested type/protocol pair. */
|
2005-12-03 12:56:57 +08:00
|
|
|
lookup_protocol:
|
|
|
|
err = -ESOCKTNOSUPPORT;
|
2005-04-17 06:20:36 +08:00
|
|
|
rcu_read_lock();
|
2008-07-25 16:45:34 +08:00
|
|
|
list_for_each_entry_rcu(answer, &inetsw6[sock->type], list) {
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-07-25 16:45:34 +08:00
|
|
|
err = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Check the non-wild match. */
|
|
|
|
if (protocol == answer->protocol) {
|
|
|
|
if (protocol != IPPROTO_IP)
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
/* Check for the two wild cases. */
|
|
|
|
if (IPPROTO_IP == protocol) {
|
|
|
|
protocol = answer->protocol;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (IPPROTO_IP == answer->protocol)
|
|
|
|
break;
|
|
|
|
}
|
2005-12-03 12:56:57 +08:00
|
|
|
err = -EPROTONOSUPPORT;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2008-07-25 16:45:34 +08:00
|
|
|
if (err) {
|
2005-12-03 12:56:57 +08:00
|
|
|
if (try_loading_module < 2) {
|
|
|
|
rcu_read_unlock();
|
|
|
|
/*
|
|
|
|
* Be more specific, e.g. net-pf-10-proto-132-type-1
|
|
|
|
* (net-pf-PF_INET6-proto-IPPROTO_SCTP-type-SOCK_STREAM)
|
|
|
|
*/
|
|
|
|
if (++try_loading_module == 1)
|
|
|
|
request_module("net-pf-%d-proto-%d-type-%d",
|
|
|
|
PF_INET6, protocol, sock->type);
|
|
|
|
/*
|
|
|
|
* Fall back to generic, e.g. net-pf-10-proto-132
|
|
|
|
* (net-pf-PF_INET6-proto-IPPROTO_SCTP)
|
|
|
|
*/
|
|
|
|
else
|
|
|
|
request_module("net-pf-%d-proto-%d",
|
|
|
|
PF_INET6, protocol);
|
|
|
|
goto lookup_protocol;
|
|
|
|
} else
|
|
|
|
goto out_rcu_unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = -EPERM;
|
net: Allow userns root to control ipv6
Allow an unpriviled user who has created a user namespace, and then
created a network namespace to effectively use the new network
namespace, by reducing capable(CAP_NET_ADMIN) and
capable(CAP_NET_RAW) calls to be ns_capable(net->user_ns,
CAP_NET_ADMIN), or capable(net->user_ns, CAP_NET_RAW) calls.
Settings that merely control a single network device are allowed.
Either the network device is a logical network device where
restrictions make no difference or the network device is hardware NIC
that has been explicity moved from the initial network namespace.
In general policy and network stack state changes are allowed while
resource control is left unchanged.
Allow the SIOCSIFADDR ioctl to add ipv6 addresses.
Allow the SIOCDIFADDR ioctl to delete ipv6 addresses.
Allow the SIOCADDRT ioctl to add ipv6 routes.
Allow the SIOCDELRT ioctl to delete ipv6 routes.
Allow creation of ipv6 raw sockets.
Allow setting the IPV6_JOIN_ANYCAST socket option.
Allow setting the IPV6_FL_A_RENEW parameter of the IPV6_FLOWLABEL_MGR
socket option.
Allow setting the IPV6_TRANSPARENT socket option.
Allow setting the IPV6_HOPOPTS socket option.
Allow setting the IPV6_RTHDRDSTOPTS socket option.
Allow setting the IPV6_DSTOPTS socket option.
Allow setting the IPV6_IPSEC_POLICY socket option.
Allow setting the IPV6_XFRM_POLICY socket option.
Allow sending packets with the IPV6_2292HOPOPTS control message.
Allow sending packets with the IPV6_2292DSTOPTS control message.
Allow sending packets with the IPV6_RTHDRDSTOPTS control message.
Allow setting the multicast routing socket options on non multicast
routing sockets.
Allow the SIOCADDTUNNEL, SIOCCHGTUNNEL, and SIOCDELTUNNEL ioctls for
setting up, changing and deleting tunnels over ipv6.
Allow the SIOCADDTUNNEL, SIOCCHGTUNNEL, SIOCDELTUNNEL ioctls for
setting up, changing and deleting ipv6 over ipv4 tunnels.
Allow the SIOCADDPRL, SIOCDELPRL, SIOCCHGPRL ioctls for adding,
deleting, and changing the potential router list for ISATAP tunnels.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2012-11-16 11:03:06 +08:00
|
|
|
if (sock->type == SOCK_RAW && !kern &&
|
|
|
|
!ns_capable(net->user_ns, CAP_NET_RAW))
|
2005-04-17 06:20:36 +08:00
|
|
|
goto out_rcu_unlock;
|
|
|
|
|
|
|
|
sock->ops = answer->ops;
|
|
|
|
answer_prot = answer->prot;
|
|
|
|
answer_flags = answer->flags;
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
2015-03-29 21:00:04 +08:00
|
|
|
WARN_ON(!answer_prot->slab);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-12-03 12:56:57 +08:00
|
|
|
err = -ENOBUFS;
|
2015-05-09 10:09:13 +08:00
|
|
|
sk = sk_alloc(net, PF_INET6, GFP_KERNEL, answer_prot, kern);
|
2015-03-29 21:00:04 +08:00
|
|
|
if (!sk)
|
2005-04-17 06:20:36 +08:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
sock_init_data(sock, sk);
|
|
|
|
|
2005-12-03 12:56:57 +08:00
|
|
|
err = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
if (INET_PROTOSW_REUSE & answer_flags)
|
2012-04-19 11:39:36 +08:00
|
|
|
sk->sk_reuse = SK_CAN_REUSE;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
inet = inet_sk(sk);
|
2007-01-10 06:37:06 +08:00
|
|
|
inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) != 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (SOCK_RAW == sock->type) {
|
2009-10-15 14:30:45 +08:00
|
|
|
inet->inet_num = protocol;
|
2005-04-17 06:20:36 +08:00
|
|
|
if (IPPROTO_RAW == protocol)
|
|
|
|
inet->hdrincl = 1;
|
|
|
|
}
|
|
|
|
|
2005-08-10 10:45:38 +08:00
|
|
|
sk->sk_destruct = inet_sock_destruct;
|
2005-04-17 06:20:36 +08:00
|
|
|
sk->sk_family = PF_INET6;
|
|
|
|
sk->sk_protocol = protocol;
|
|
|
|
|
|
|
|
sk->sk_backlog_rcv = answer->prot->backlog_rcv;
|
|
|
|
|
|
|
|
inet_sk(sk)->pinet6 = np = inet6_sk_generic(sk);
|
|
|
|
np->hop_limit = -1;
|
2010-05-04 14:42:27 +08:00
|
|
|
np->mcast_hops = IPV6_DEFAULT_MCASTHOPS;
|
2005-04-17 06:20:36 +08:00
|
|
|
np->mc_loop = 1;
|
2018-09-10 16:27:15 +08:00
|
|
|
np->mc_all = 1;
|
2005-04-17 06:20:36 +08:00
|
|
|
np->pmtudisc = IPV6_PMTUDISC_WANT;
|
2017-08-23 15:55:41 +08:00
|
|
|
np->repflow = net->ipv6.sysctl.flowlabel_reflect;
|
2014-06-27 23:36:16 +08:00
|
|
|
sk->sk_ipv6only = net->ipv6.sysctl.bindv6only;
|
2007-02-09 22:24:49 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Init the ipv4 part of the socket since we can have sockets
|
|
|
|
* using v6 API for ipv4.
|
|
|
|
*/
|
|
|
|
inet->uc_ttl = -1;
|
|
|
|
|
|
|
|
inet->mc_loop = 1;
|
|
|
|
inet->mc_ttl = 1;
|
|
|
|
inet->mc_index = 0;
|
|
|
|
inet->mc_list = NULL;
|
2012-02-09 17:35:49 +08:00
|
|
|
inet->rcv_tos = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-12-14 12:13:38 +08:00
|
|
|
if (net->ipv4.sysctl_ip_no_pmtu_disc)
|
2005-04-17 06:20:36 +08:00
|
|
|
inet->pmtudisc = IP_PMTUDISC_DONT;
|
|
|
|
else
|
|
|
|
inet->pmtudisc = IP_PMTUDISC_WANT;
|
2007-02-09 22:24:49 +08:00
|
|
|
/*
|
2005-08-10 10:45:38 +08:00
|
|
|
* Increment only the relevant sk_prot->socks debug field, this changes
|
|
|
|
* the previous behaviour of incrementing both the equivalent to
|
|
|
|
* answer->prot->socks (inet6_sock_nr) and inet_sock_nr.
|
|
|
|
*
|
|
|
|
* This allows better debug granularity as we'll know exactly how many
|
|
|
|
* UDPv6, TCPv6, etc socks were allocated, not the sum of all IPv6
|
|
|
|
* transport protocol socks. -acme
|
|
|
|
*/
|
|
|
|
sk_refcnt_debug_inc(sk);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-10-15 14:30:45 +08:00
|
|
|
if (inet->inet_num) {
|
2005-04-17 06:20:36 +08:00
|
|
|
/* It assumes that any protocol which allows
|
|
|
|
* the user to assign a number at socket
|
|
|
|
* creation time automatically shares.
|
|
|
|
*/
|
2009-10-15 14:30:45 +08:00
|
|
|
inet->inet_sport = htons(inet->inet_num);
|
2016-02-11 00:50:35 +08:00
|
|
|
err = sk->sk_prot->hash(sk);
|
|
|
|
if (err) {
|
|
|
|
sk_common_release(sk);
|
|
|
|
goto out;
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
if (sk->sk_prot->init) {
|
2005-12-03 12:56:57 +08:00
|
|
|
err = sk->sk_prot->init(sk);
|
|
|
|
if (err) {
|
2005-04-17 06:20:36 +08:00
|
|
|
sk_common_release(sk);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2016-12-02 00:48:04 +08:00
|
|
|
|
|
|
|
if (!kern) {
|
|
|
|
err = BPF_CGROUP_RUN_PROG_INET_SOCK(sk);
|
|
|
|
if (err) {
|
|
|
|
sk_common_release(sk);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
out:
|
2005-12-03 12:56:57 +08:00
|
|
|
return err;
|
2005-04-17 06:20:36 +08:00
|
|
|
out_rcu_unlock:
|
|
|
|
rcu_read_unlock();
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:00:39 +08:00
|
|
|
static int __inet6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len,
|
|
|
|
bool force_bind_address_no_port, bool with_lock)
|
2018-03-31 06:08:04 +08:00
|
|
|
{
|
|
|
|
struct sockaddr_in6 *addr = (struct sockaddr_in6 *)uaddr;
|
|
|
|
struct inet_sock *inet = inet_sk(sk);
|
|
|
|
struct ipv6_pinfo *np = inet6_sk(sk);
|
|
|
|
struct net *net = sock_net(sk);
|
|
|
|
__be32 v4addr = 0;
|
|
|
|
unsigned short snum;
|
|
|
|
bool saved_ipv6only;
|
|
|
|
int addr_type = 0;
|
|
|
|
int err = 0;
|
|
|
|
|
2011-06-06 14:00:07 +08:00
|
|
|
if (addr->sin6_family != AF_INET6)
|
net: bind() fix error return on wrong address family
Hi,
Reinhard Max also pointed out that the error should EAFNOSUPPORT according
to POSIX.
The Linux manpages have it as EINVAL, some other OSes (Minix, HPUX, perhaps BSD) use
EAFNOSUPPORT. Windows uses WSAEFAULT according to MSDN.
Other protocols error values in their af bind() methods in current mainline git as far
as a brief look shows:
EAFNOSUPPORT: atm, appletalk, l2tp, llc, phonet, rxrpc
EINVAL: ax25, bluetooth, decnet, econet, ieee802154, iucv, netlink, netrom, packet, rds, rose, unix, x25,
No check?: can/raw, ipv6/raw, irda, l2tp/l2tp_ip
Ciao, Marcus
Signed-off-by: Marcus Meissner <meissner@suse.de>
Cc: Reinhard Max <max@suse.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
2011-07-04 09:30:29 +08:00
|
|
|
return -EAFNOSUPPORT;
|
2011-06-06 14:00:07 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
addr_type = ipv6_addr_type(&addr->sin6_addr);
|
2018-03-31 06:08:04 +08:00
|
|
|
if ((addr_type & IPV6_ADDR_MULTICAST) && sk->sk_type == SOCK_STREAM)
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
snum = ntohs(addr->sin6_port);
|
2017-01-21 09:49:11 +08:00
|
|
|
if (snum && snum < inet_prot_sock(net) &&
|
|
|
|
!ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EACCES;
|
|
|
|
|
2018-03-31 06:08:04 +08:00
|
|
|
if (with_lock)
|
|
|
|
lock_sock(sk);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Check these errors (active socket, double bind). */
|
2009-10-15 14:30:45 +08:00
|
|
|
if (sk->sk_state != TCP_CLOSE || inet->inet_num) {
|
2005-04-17 06:20:36 +08:00
|
|
|
err = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if the address belongs to the host. */
|
|
|
|
if (addr_type == IPV6_ADDR_MAPPED) {
|
2009-03-25 00:24:50 +08:00
|
|
|
int chk_addr_ret;
|
|
|
|
|
2009-03-25 00:24:48 +08:00
|
|
|
/* Binding to v4-mapped address on a v6-only socket
|
|
|
|
* makes no sense
|
|
|
|
*/
|
2014-06-27 23:36:16 +08:00
|
|
|
if (sk->sk_ipv6only) {
|
2009-03-25 00:24:48 +08:00
|
|
|
err = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-03-25 00:24:50 +08:00
|
|
|
|
2010-12-10 21:55:42 +08:00
|
|
|
/* Reproduce AF_INET checks to make the bindings consistent */
|
2005-04-17 06:20:36 +08:00
|
|
|
v4addr = addr->sin6_addr.s6_addr32[3];
|
2009-03-25 00:24:50 +08:00
|
|
|
chk_addr_ret = inet_addr_type(net, v4addr);
|
2018-08-01 03:18:11 +08:00
|
|
|
if (!inet_can_nonlocal_bind(net, inet) &&
|
2009-03-25 00:24:50 +08:00
|
|
|
v4addr != htonl(INADDR_ANY) &&
|
|
|
|
chk_addr_ret != RTN_LOCAL &&
|
|
|
|
chk_addr_ret != RTN_MULTICAST &&
|
2009-08-24 10:06:28 +08:00
|
|
|
chk_addr_ret != RTN_BROADCAST) {
|
|
|
|
err = -EADDRNOTAVAIL;
|
2005-04-17 06:20:36 +08:00
|
|
|
goto out;
|
2009-08-24 10:06:28 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
} else {
|
|
|
|
if (addr_type != IPV6_ADDR_ANY) {
|
|
|
|
struct net_device *dev = NULL;
|
|
|
|
|
2009-11-02 19:10:39 +08:00
|
|
|
rcu_read_lock();
|
2013-03-08 10:07:19 +08:00
|
|
|
if (__ipv6_addr_needs_scope_id(addr_type)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
if (addr_len >= sizeof(struct sockaddr_in6) &&
|
|
|
|
addr->sin6_scope_id) {
|
|
|
|
/* Override any existing binding, if another one
|
|
|
|
* is supplied by user.
|
|
|
|
*/
|
|
|
|
sk->sk_bound_dev_if = addr->sin6_scope_id;
|
|
|
|
}
|
2007-02-09 22:24:49 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Binding to link-local address requires an interface */
|
|
|
|
if (!sk->sk_bound_dev_if) {
|
|
|
|
err = -EINVAL;
|
2009-11-02 19:10:39 +08:00
|
|
|
goto out_unlock;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2009-11-02 19:10:39 +08:00
|
|
|
dev = dev_get_by_index_rcu(net, sk->sk_bound_dev_if);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!dev) {
|
|
|
|
err = -ENODEV;
|
2009-11-02 19:10:39 +08:00
|
|
|
goto out_unlock;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ipv4 addr of the socket is invalid. Only the
|
|
|
|
* unspecified and mapped address have a v4 equivalent.
|
|
|
|
*/
|
|
|
|
v4addr = LOOPBACK4_IPV6;
|
|
|
|
if (!(addr_type & IPV6_ADDR_MULTICAST)) {
|
2018-08-01 03:18:11 +08:00
|
|
|
if (!ipv6_can_nonlocal_bind(net, inet) &&
|
2010-10-21 22:10:03 +08:00
|
|
|
!ipv6_chk_addr(net, &addr->sin6_addr,
|
2008-01-11 14:43:18 +08:00
|
|
|
dev, 0)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
err = -EADDRNOTAVAIL;
|
2009-11-02 19:10:39 +08:00
|
|
|
goto out_unlock;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
2009-11-02 19:10:39 +08:00
|
|
|
rcu_read_unlock();
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-15 14:30:45 +08:00
|
|
|
inet->inet_rcv_saddr = v4addr;
|
|
|
|
inet->inet_saddr = v4addr;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
ipv6: make lookups simpler and faster
TCP listener refactoring, part 4 :
To speed up inet lookups, we moved IPv4 addresses from inet to struct
sock_common
Now is time to do the same for IPv6, because it permits us to have fast
lookups for all kind of sockets, including upcoming SYN_RECV.
Getting IPv6 addresses in TCP lookups currently requires two extra cache
lines, plus a dereference (and memory stall).
inet6_sk(sk) does the dereference of inet_sk(__sk)->pinet6
This patch is way bigger than its IPv4 counter part, because for IPv4,
we could add aliases (inet_daddr, inet_rcv_saddr), while on IPv6,
it's not doable easily.
inet6_sk(sk)->daddr becomes sk->sk_v6_daddr
inet6_sk(sk)->rcv_saddr becomes sk->sk_v6_rcv_saddr
And timewait socket also have tw->tw_v6_daddr & tw->tw_v6_rcv_saddr
at the same offset.
We get rid of INET6_TW_MATCH() as INET6_MATCH() is now the generic
macro.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2013-10-04 06:42:29 +08:00
|
|
|
sk->sk_v6_rcv_saddr = addr->sin6_addr;
|
2007-02-09 22:24:49 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!(addr_type & IPV6_ADDR_MULTICAST))
|
2011-11-21 11:39:03 +08:00
|
|
|
np->saddr = addr->sin6_addr;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2018-01-25 15:15:27 +08:00
|
|
|
saved_ipv6only = sk->sk_ipv6only;
|
|
|
|
if (addr_type != IPV6_ADDR_ANY && addr_type != IPV6_ADDR_MAPPED)
|
|
|
|
sk->sk_ipv6only = 1;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Make sure we are allowed to bind here. */
|
2018-03-31 06:08:07 +08:00
|
|
|
if (snum || !(inet->bind_address_no_port ||
|
|
|
|
force_bind_address_no_port)) {
|
|
|
|
if (sk->sk_prot->get_port(sk, snum)) {
|
|
|
|
sk->sk_ipv6only = saved_ipv6only;
|
|
|
|
inet_reset_saddr(sk);
|
|
|
|
err = -EADDRINUSE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
err = BPF_CGROUP_RUN_PROG_INET6_POST_BIND(sk);
|
|
|
|
if (err) {
|
|
|
|
sk->sk_ipv6only = saved_ipv6only;
|
|
|
|
inet_reset_saddr(sk);
|
|
|
|
goto out;
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2018-01-25 15:15:27 +08:00
|
|
|
if (addr_type != IPV6_ADDR_ANY)
|
2005-04-17 06:20:36 +08:00
|
|
|
sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
|
|
|
|
if (snum)
|
|
|
|
sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
|
2009-10-15 14:30:45 +08:00
|
|
|
inet->inet_sport = htons(inet->inet_num);
|
|
|
|
inet->inet_dport = 0;
|
|
|
|
inet->inet_daddr = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
out:
|
2018-03-31 06:08:04 +08:00
|
|
|
if (with_lock)
|
|
|
|
release_sock(sk);
|
2005-04-17 06:20:36 +08:00
|
|
|
return err;
|
2009-11-02 19:10:39 +08:00
|
|
|
out_unlock:
|
|
|
|
rcu_read_unlock();
|
|
|
|
goto out;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2007-02-22 21:05:40 +08:00
|
|
|
|
2018-04-18 01:00:39 +08:00
|
|
|
/* bind for INET6 API */
|
|
|
|
int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
|
|
|
|
{
|
|
|
|
struct sock *sk = sock->sk;
|
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
/* If the socket has its own bind function then use it. */
|
|
|
|
if (sk->sk_prot->bind)
|
|
|
|
return sk->sk_prot->bind(sk, uaddr, addr_len);
|
|
|
|
|
|
|
|
if (addr_len < SIN6_LEN_RFC2133)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* BPF prog is run before any checks are done so that if the prog
|
|
|
|
* changes context in a wrong way it will be caught.
|
|
|
|
*/
|
|
|
|
err = BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
return __inet6_bind(sk, uaddr, addr_len, false, true);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(inet6_bind);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
int inet6_release(struct socket *sock)
|
|
|
|
{
|
|
|
|
struct sock *sk = sock->sk;
|
|
|
|
|
2015-03-29 21:00:04 +08:00
|
|
|
if (!sk)
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* Free mc lists */
|
|
|
|
ipv6_sock_mc_close(sk);
|
|
|
|
|
|
|
|
/* Free ac lists */
|
|
|
|
ipv6_sock_ac_close(sk);
|
|
|
|
|
|
|
|
return inet_release(sock);
|
|
|
|
}
|
2007-02-22 21:05:40 +08:00
|
|
|
EXPORT_SYMBOL(inet6_release);
|
|
|
|
|
2008-06-15 08:04:49 +08:00
|
|
|
void inet6_destroy_sock(struct sock *sk)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct ipv6_pinfo *np = inet6_sk(sk);
|
|
|
|
struct sk_buff *skb;
|
|
|
|
struct ipv6_txoptions *opt;
|
|
|
|
|
|
|
|
/* Release rx options */
|
|
|
|
|
2012-05-05 18:13:53 +08:00
|
|
|
skb = xchg(&np->pktoptions, NULL);
|
2015-03-29 21:00:05 +08:00
|
|
|
if (skb)
|
2005-04-17 06:20:36 +08:00
|
|
|
kfree_skb(skb);
|
2010-04-23 19:26:09 +08:00
|
|
|
|
2012-05-05 18:13:53 +08:00
|
|
|
skb = xchg(&np->rxpmtu, NULL);
|
2015-03-29 21:00:05 +08:00
|
|
|
if (skb)
|
2010-04-23 19:26:09 +08:00
|
|
|
kfree_skb(skb);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Free flowlabels */
|
|
|
|
fl6_free_socklist(sk);
|
|
|
|
|
|
|
|
/* Free tx options */
|
|
|
|
|
2015-11-30 11:37:57 +08:00
|
|
|
opt = xchg((__force struct ipv6_txoptions **)&np->opt, NULL);
|
|
|
|
if (opt) {
|
|
|
|
atomic_sub(opt->tot_len, &sk->sk_omem_alloc);
|
|
|
|
txopt_put(opt);
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2005-12-14 15:23:20 +08:00
|
|
|
EXPORT_SYMBOL_GPL(inet6_destroy_sock);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* This does both peername and sockname.
|
|
|
|
*/
|
2007-02-09 22:24:49 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
|
2018-02-13 03:00:20 +08:00
|
|
|
int peer)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2012-05-05 18:13:53 +08:00
|
|
|
struct sockaddr_in6 *sin = (struct sockaddr_in6 *)uaddr;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct sock *sk = sock->sk;
|
|
|
|
struct inet_sock *inet = inet_sk(sk);
|
|
|
|
struct ipv6_pinfo *np = inet6_sk(sk);
|
2007-02-09 22:24:49 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
sin->sin6_family = AF_INET6;
|
|
|
|
sin->sin6_flowinfo = 0;
|
|
|
|
sin->sin6_scope_id = 0;
|
|
|
|
if (peer) {
|
2009-10-15 14:30:45 +08:00
|
|
|
if (!inet->inet_dport)
|
2005-04-17 06:20:36 +08:00
|
|
|
return -ENOTCONN;
|
|
|
|
if (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
|
|
|
|
peer == 1)
|
|
|
|
return -ENOTCONN;
|
2009-10-15 14:30:45 +08:00
|
|
|
sin->sin6_port = inet->inet_dport;
|
ipv6: make lookups simpler and faster
TCP listener refactoring, part 4 :
To speed up inet lookups, we moved IPv4 addresses from inet to struct
sock_common
Now is time to do the same for IPv6, because it permits us to have fast
lookups for all kind of sockets, including upcoming SYN_RECV.
Getting IPv6 addresses in TCP lookups currently requires two extra cache
lines, plus a dereference (and memory stall).
inet6_sk(sk) does the dereference of inet_sk(__sk)->pinet6
This patch is way bigger than its IPv4 counter part, because for IPv4,
we could add aliases (inet_daddr, inet_rcv_saddr), while on IPv6,
it's not doable easily.
inet6_sk(sk)->daddr becomes sk->sk_v6_daddr
inet6_sk(sk)->rcv_saddr becomes sk->sk_v6_rcv_saddr
And timewait socket also have tw->tw_v6_daddr & tw->tw_v6_rcv_saddr
at the same offset.
We get rid of INET6_TW_MATCH() as INET6_MATCH() is now the generic
macro.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2013-10-04 06:42:29 +08:00
|
|
|
sin->sin6_addr = sk->sk_v6_daddr;
|
2005-04-17 06:20:36 +08:00
|
|
|
if (np->sndflow)
|
|
|
|
sin->sin6_flowinfo = np->flow_label;
|
|
|
|
} else {
|
ipv6: make lookups simpler and faster
TCP listener refactoring, part 4 :
To speed up inet lookups, we moved IPv4 addresses from inet to struct
sock_common
Now is time to do the same for IPv6, because it permits us to have fast
lookups for all kind of sockets, including upcoming SYN_RECV.
Getting IPv6 addresses in TCP lookups currently requires two extra cache
lines, plus a dereference (and memory stall).
inet6_sk(sk) does the dereference of inet_sk(__sk)->pinet6
This patch is way bigger than its IPv4 counter part, because for IPv4,
we could add aliases (inet_daddr, inet_rcv_saddr), while on IPv6,
it's not doable easily.
inet6_sk(sk)->daddr becomes sk->sk_v6_daddr
inet6_sk(sk)->rcv_saddr becomes sk->sk_v6_rcv_saddr
And timewait socket also have tw->tw_v6_daddr & tw->tw_v6_rcv_saddr
at the same offset.
We get rid of INET6_TW_MATCH() as INET6_MATCH() is now the generic
macro.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2013-10-04 06:42:29 +08:00
|
|
|
if (ipv6_addr_any(&sk->sk_v6_rcv_saddr))
|
2011-11-21 11:39:03 +08:00
|
|
|
sin->sin6_addr = np->saddr;
|
2005-04-17 06:20:36 +08:00
|
|
|
else
|
ipv6: make lookups simpler and faster
TCP listener refactoring, part 4 :
To speed up inet lookups, we moved IPv4 addresses from inet to struct
sock_common
Now is time to do the same for IPv6, because it permits us to have fast
lookups for all kind of sockets, including upcoming SYN_RECV.
Getting IPv6 addresses in TCP lookups currently requires two extra cache
lines, plus a dereference (and memory stall).
inet6_sk(sk) does the dereference of inet_sk(__sk)->pinet6
This patch is way bigger than its IPv4 counter part, because for IPv4,
we could add aliases (inet_daddr, inet_rcv_saddr), while on IPv6,
it's not doable easily.
inet6_sk(sk)->daddr becomes sk->sk_v6_daddr
inet6_sk(sk)->rcv_saddr becomes sk->sk_v6_rcv_saddr
And timewait socket also have tw->tw_v6_daddr & tw->tw_v6_rcv_saddr
at the same offset.
We get rid of INET6_TW_MATCH() as INET6_MATCH() is now the generic
macro.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2013-10-04 06:42:29 +08:00
|
|
|
sin->sin6_addr = sk->sk_v6_rcv_saddr;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-10-15 14:30:45 +08:00
|
|
|
sin->sin6_port = inet->inet_sport;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2013-03-08 10:07:19 +08:00
|
|
|
sin->sin6_scope_id = ipv6_iface_scope_id(&sin->sin6_addr,
|
|
|
|
sk->sk_bound_dev_if);
|
2018-02-13 03:00:20 +08:00
|
|
|
return sizeof(*sin);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2007-02-22 21:05:40 +08:00
|
|
|
EXPORT_SYMBOL(inet6_getname);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
struct sock *sk = sock->sk;
|
2008-03-26 01:26:21 +08:00
|
|
|
struct net *net = sock_net(sk);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-05-05 18:13:53 +08:00
|
|
|
switch (cmd) {
|
2005-04-17 06:20:36 +08:00
|
|
|
case SIOCGSTAMP:
|
|
|
|
return sock_get_timestamp(sk, (struct timeval __user *)arg);
|
|
|
|
|
2007-03-19 08:33:16 +08:00
|
|
|
case SIOCGSTAMPNS:
|
|
|
|
return sock_get_timestampns(sk, (struct timespec __user *)arg);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
case SIOCADDRT:
|
|
|
|
case SIOCDELRT:
|
2007-02-09 22:24:49 +08:00
|
|
|
|
2010-09-23 04:43:57 +08:00
|
|
|
return ipv6_route_ioctl(net, cmd, (void __user *)arg);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
case SIOCSIFADDR:
|
2008-03-06 02:46:57 +08:00
|
|
|
return addrconf_add_ifaddr(net, (void __user *) arg);
|
2005-04-17 06:20:36 +08:00
|
|
|
case SIOCDIFADDR:
|
2008-03-06 02:46:57 +08:00
|
|
|
return addrconf_del_ifaddr(net, (void __user *) arg);
|
2005-04-17 06:20:36 +08:00
|
|
|
case SIOCSIFDSTADDR:
|
2008-03-06 02:46:57 +08:00
|
|
|
return addrconf_set_dstaddr(net, (void __user *) arg);
|
2005-04-17 06:20:36 +08:00
|
|
|
default:
|
2006-01-04 06:18:33 +08:00
|
|
|
if (!sk->sk_prot->ioctl)
|
|
|
|
return -ENOIOCTLCMD;
|
|
|
|
return sk->sk_prot->ioctl(sk, cmd, arg);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
/*NOTREACHED*/
|
2010-09-23 04:43:57 +08:00
|
|
|
return 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2007-02-22 21:05:40 +08:00
|
|
|
EXPORT_SYMBOL(inet6_ioctl);
|
|
|
|
|
2005-12-23 04:49:22 +08:00
|
|
|
const struct proto_ops inet6_stream_ops = {
|
2006-03-21 14:48:35 +08:00
|
|
|
.family = PF_INET6,
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.release = inet6_release,
|
|
|
|
.bind = inet6_bind,
|
|
|
|
.connect = inet_stream_connect, /* ok */
|
|
|
|
.socketpair = sock_no_socketpair, /* a do nothing */
|
|
|
|
.accept = inet_accept, /* ok */
|
|
|
|
.getname = inet6_getname,
|
2018-06-29 00:43:44 +08:00
|
|
|
.poll = tcp_poll, /* ok */
|
2006-03-21 14:48:35 +08:00
|
|
|
.ioctl = inet6_ioctl, /* must change */
|
|
|
|
.listen = inet_listen, /* ok */
|
|
|
|
.shutdown = inet_shutdown, /* ok */
|
|
|
|
.setsockopt = sock_common_setsockopt, /* ok */
|
|
|
|
.getsockopt = sock_common_getsockopt, /* ok */
|
2010-07-11 04:41:55 +08:00
|
|
|
.sendmsg = inet_sendmsg, /* ok */
|
|
|
|
.recvmsg = inet_recvmsg, /* ok */
|
tcp: add TCP_ZEROCOPY_RECEIVE support for zerocopy receive
When adding tcp mmap() implementation, I forgot that socket lock
had to be taken before current->mm->mmap_sem. syzbot eventually caught
the bug.
Since we can not lock the socket in tcp mmap() handler we have to
split the operation in two phases.
1) mmap() on a tcp socket simply reserves VMA space, and nothing else.
This operation does not involve any TCP locking.
2) getsockopt(fd, IPPROTO_TCP, TCP_ZEROCOPY_RECEIVE, ...) implements
the transfert of pages from skbs to one VMA.
This operation only uses down_read(¤t->mm->mmap_sem) after
holding TCP lock, thus solving the lockdep issue.
This new implementation was suggested by Andy Lutomirski with great details.
Benefits are :
- Better scalability, in case multiple threads reuse VMAS
(without mmap()/munmap() calls) since mmap_sem wont be write locked.
- Better error recovery.
The previous mmap() model had to provide the expected size of the
mapping. If for some reason one part could not be mapped (partial MSS),
the whole operation had to be aborted.
With the tcp_zerocopy_receive struct, kernel can report how
many bytes were successfuly mapped, and how many bytes should
be read to skip the problematic sequence.
- No more memory allocation to hold an array of page pointers.
16 MB mappings needed 32 KB for this array, potentially using vmalloc() :/
- skbs are freed while mmap_sem has been released
Following patch makes the change in tcp_mmap tool to demonstrate
one possible use of mmap() and setsockopt(... TCP_ZEROCOPY_RECEIVE ...)
Note that memcg might require additional changes.
Fixes: 93ab6cc69162 ("tcp: implement mmap() for zero copy receive")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: syzbot <syzkaller@googlegroups.com>
Suggested-by: Andy Lutomirski <luto@kernel.org>
Cc: linux-mm@kvack.org
Acked-by: Soheil Hassas Yeganeh <soheil@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-04-27 23:58:08 +08:00
|
|
|
#ifdef CONFIG_MMU
|
tcp: implement mmap() for zero copy receive
Some networks can make sure TCP payload can exactly fit 4KB pages,
with well chosen MSS/MTU and architectures.
Implement mmap() system call so that applications can avoid
copying data without complex splice() games.
Note that a successful mmap( X bytes) on TCP socket is consuming
bytes, as if recvmsg() has been done. (tp->copied += X)
Only PROT_READ mappings are accepted, as skb page frags
are fundamentally shared and read only.
If tcp_mmap() finds data that is not a full page, or a patch of
urgent data, -EINVAL is returned, no bytes are consumed.
Application must fallback to recvmsg() to read the problematic sequence.
mmap() wont block, regardless of socket being in blocking or
non-blocking mode. If not enough bytes are in receive queue,
mmap() would return -EAGAIN, or -EIO if socket is in a state
where no other bytes can be added into receive queue.
An application might use SO_RCVLOWAT, poll() and/or ioctl( FIONREAD)
to efficiently use mmap()
On the sender side, MSG_EOR might help to clearly separate unaligned
headers and 4K-aligned chunks if necessary.
Tested:
mlx4 (cx-3) 40Gbit NIC, with tcp_mmap program provided in following patch.
MTU set to 4168 (4096 TCP payload, 40 bytes IPv6 header, 32 bytes TCP header)
Without mmap() (tcp_mmap -s)
received 32768 MB (0 % mmap'ed) in 8.13342 s, 33.7961 Gbit,
cpu usage user:0.034 sys:3.778, 116.333 usec per MB, 63062 c-switches
received 32768 MB (0 % mmap'ed) in 8.14501 s, 33.748 Gbit,
cpu usage user:0.029 sys:3.997, 122.864 usec per MB, 61903 c-switches
received 32768 MB (0 % mmap'ed) in 8.11723 s, 33.8635 Gbit,
cpu usage user:0.048 sys:3.964, 122.437 usec per MB, 62983 c-switches
received 32768 MB (0 % mmap'ed) in 8.39189 s, 32.7552 Gbit,
cpu usage user:0.038 sys:4.181, 128.754 usec per MB, 55834 c-switches
With mmap() on receiver (tcp_mmap -s -z)
received 32768 MB (100 % mmap'ed) in 8.03083 s, 34.2278 Gbit,
cpu usage user:0.024 sys:1.466, 45.4712 usec per MB, 65479 c-switches
received 32768 MB (100 % mmap'ed) in 7.98805 s, 34.4111 Gbit,
cpu usage user:0.026 sys:1.401, 43.5486 usec per MB, 65447 c-switches
received 32768 MB (100 % mmap'ed) in 7.98377 s, 34.4296 Gbit,
cpu usage user:0.028 sys:1.452, 45.166 usec per MB, 65496 c-switches
received 32768 MB (99.9969 % mmap'ed) in 8.01838 s, 34.281 Gbit,
cpu usage user:0.02 sys:1.446, 44.7388 usec per MB, 65505 c-switches
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-04-17 01:33:38 +08:00
|
|
|
.mmap = tcp_mmap,
|
tcp: add TCP_ZEROCOPY_RECEIVE support for zerocopy receive
When adding tcp mmap() implementation, I forgot that socket lock
had to be taken before current->mm->mmap_sem. syzbot eventually caught
the bug.
Since we can not lock the socket in tcp mmap() handler we have to
split the operation in two phases.
1) mmap() on a tcp socket simply reserves VMA space, and nothing else.
This operation does not involve any TCP locking.
2) getsockopt(fd, IPPROTO_TCP, TCP_ZEROCOPY_RECEIVE, ...) implements
the transfert of pages from skbs to one VMA.
This operation only uses down_read(¤t->mm->mmap_sem) after
holding TCP lock, thus solving the lockdep issue.
This new implementation was suggested by Andy Lutomirski with great details.
Benefits are :
- Better scalability, in case multiple threads reuse VMAS
(without mmap()/munmap() calls) since mmap_sem wont be write locked.
- Better error recovery.
The previous mmap() model had to provide the expected size of the
mapping. If for some reason one part could not be mapped (partial MSS),
the whole operation had to be aborted.
With the tcp_zerocopy_receive struct, kernel can report how
many bytes were successfuly mapped, and how many bytes should
be read to skip the problematic sequence.
- No more memory allocation to hold an array of page pointers.
16 MB mappings needed 32 KB for this array, potentially using vmalloc() :/
- skbs are freed while mmap_sem has been released
Following patch makes the change in tcp_mmap tool to demonstrate
one possible use of mmap() and setsockopt(... TCP_ZEROCOPY_RECEIVE ...)
Note that memcg might require additional changes.
Fixes: 93ab6cc69162 ("tcp: implement mmap() for zero copy receive")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: syzbot <syzkaller@googlegroups.com>
Suggested-by: Andy Lutomirski <luto@kernel.org>
Cc: linux-mm@kvack.org
Acked-by: Soheil Hassas Yeganeh <soheil@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-04-27 23:58:08 +08:00
|
|
|
#endif
|
2010-07-11 04:41:55 +08:00
|
|
|
.sendpage = inet_sendpage,
|
2017-08-16 13:31:10 +08:00
|
|
|
.sendmsg_locked = tcp_sendmsg_locked,
|
|
|
|
.sendpage_locked = tcp_sendpage_locked,
|
2007-11-07 15:31:58 +08:00
|
|
|
.splice_read = tcp_splice_read,
|
2016-08-29 05:43:18 +08:00
|
|
|
.read_sock = tcp_read_sock,
|
|
|
|
.peek_len = tcp_peek_len,
|
2006-03-21 14:45:21 +08:00
|
|
|
#ifdef CONFIG_COMPAT
|
2006-03-21 14:48:35 +08:00
|
|
|
.compat_setsockopt = compat_sock_common_setsockopt,
|
|
|
|
.compat_getsockopt = compat_sock_common_getsockopt,
|
2006-03-21 14:45:21 +08:00
|
|
|
#endif
|
2018-04-17 01:33:35 +08:00
|
|
|
.set_rcvlowat = tcp_set_rcvlowat,
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2005-12-23 04:49:22 +08:00
|
|
|
const struct proto_ops inet6_dgram_ops = {
|
2006-03-21 14:48:35 +08:00
|
|
|
.family = PF_INET6,
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.release = inet6_release,
|
|
|
|
.bind = inet6_bind,
|
|
|
|
.connect = inet_dgram_connect, /* ok */
|
|
|
|
.socketpair = sock_no_socketpair, /* a do nothing */
|
|
|
|
.accept = sock_no_accept, /* a do nothing */
|
|
|
|
.getname = inet6_getname,
|
2018-06-29 00:43:44 +08:00
|
|
|
.poll = udp_poll, /* ok */
|
2006-03-21 14:48:35 +08:00
|
|
|
.ioctl = inet6_ioctl, /* must change */
|
|
|
|
.listen = sock_no_listen, /* ok */
|
|
|
|
.shutdown = inet_shutdown, /* ok */
|
|
|
|
.setsockopt = sock_common_setsockopt, /* ok */
|
|
|
|
.getsockopt = sock_common_getsockopt, /* ok */
|
|
|
|
.sendmsg = inet_sendmsg, /* ok */
|
2010-07-11 04:41:55 +08:00
|
|
|
.recvmsg = inet_recvmsg, /* ok */
|
2006-03-21 14:48:35 +08:00
|
|
|
.mmap = sock_no_mmap,
|
|
|
|
.sendpage = sock_no_sendpage,
|
2016-04-06 00:41:16 +08:00
|
|
|
.set_peek_off = sk_set_peek_off,
|
2006-03-21 14:45:21 +08:00
|
|
|
#ifdef CONFIG_COMPAT
|
2006-03-21 14:48:35 +08:00
|
|
|
.compat_setsockopt = compat_sock_common_setsockopt,
|
|
|
|
.compat_getsockopt = compat_sock_common_getsockopt,
|
2006-03-21 14:45:21 +08:00
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2009-10-05 13:58:39 +08:00
|
|
|
static const struct net_proto_family inet6_family_ops = {
|
2005-04-17 06:20:36 +08:00
|
|
|
.family = PF_INET6,
|
|
|
|
.create = inet6_create,
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
};
|
|
|
|
|
2007-12-11 18:25:01 +08:00
|
|
|
int inet6_register_protosw(struct inet_protosw *p)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct list_head *lh;
|
|
|
|
struct inet_protosw *answer;
|
|
|
|
struct list_head *last_perm;
|
2007-12-11 18:25:01 +08:00
|
|
|
int protocol = p->protocol;
|
|
|
|
int ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
spin_lock_bh(&inetsw6_lock);
|
|
|
|
|
2007-12-11 18:25:01 +08:00
|
|
|
ret = -EINVAL;
|
2005-04-17 06:20:36 +08:00
|
|
|
if (p->type >= SOCK_MAX)
|
|
|
|
goto out_illegal;
|
|
|
|
|
|
|
|
/* If we are trying to override a permanent protocol, bail. */
|
|
|
|
answer = NULL;
|
2007-12-11 18:25:01 +08:00
|
|
|
ret = -EPERM;
|
2005-04-17 06:20:36 +08:00
|
|
|
last_perm = &inetsw6[p->type];
|
|
|
|
list_for_each(lh, &inetsw6[p->type]) {
|
|
|
|
answer = list_entry(lh, struct inet_protosw, list);
|
|
|
|
|
|
|
|
/* Check only the non-wild match. */
|
|
|
|
if (INET_PROTOSW_PERMANENT & answer->flags) {
|
|
|
|
if (protocol == answer->protocol)
|
|
|
|
break;
|
|
|
|
last_perm = lh;
|
|
|
|
}
|
|
|
|
|
|
|
|
answer = NULL;
|
|
|
|
}
|
|
|
|
if (answer)
|
|
|
|
goto out_permanent;
|
|
|
|
|
|
|
|
/* Add the new entry after the last permanent entry if any, so that
|
|
|
|
* the new entry does not override a permanent entry when matched with
|
|
|
|
* a wild-card protocol. But it is allowed to override any existing
|
2007-02-09 22:24:49 +08:00
|
|
|
* non-permanent entry. This means that when we remove this entry, the
|
2005-04-17 06:20:36 +08:00
|
|
|
* system automatically returns to the old behavior.
|
|
|
|
*/
|
|
|
|
list_add_rcu(&p->list, last_perm);
|
2007-12-11 18:25:01 +08:00
|
|
|
ret = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
out:
|
|
|
|
spin_unlock_bh(&inetsw6_lock);
|
2007-12-11 18:25:01 +08:00
|
|
|
return ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
out_permanent:
|
2012-05-15 22:11:53 +08:00
|
|
|
pr_err("Attempt to override permanent protocol %d\n", protocol);
|
2005-04-17 06:20:36 +08:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
out_illegal:
|
2012-05-15 22:11:53 +08:00
|
|
|
pr_err("Ignoring attempt to register invalid socket type %d\n",
|
2005-04-17 06:20:36 +08:00
|
|
|
p->type);
|
|
|
|
goto out;
|
|
|
|
}
|
2007-02-22 21:05:40 +08:00
|
|
|
EXPORT_SYMBOL(inet6_register_protosw);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
void
|
|
|
|
inet6_unregister_protosw(struct inet_protosw *p)
|
|
|
|
{
|
|
|
|
if (INET_PROTOSW_PERMANENT & p->flags) {
|
2012-05-15 22:11:53 +08:00
|
|
|
pr_err("Attempt to unregister permanent protocol %d\n",
|
2005-04-17 06:20:36 +08:00
|
|
|
p->protocol);
|
|
|
|
} else {
|
|
|
|
spin_lock_bh(&inetsw6_lock);
|
|
|
|
list_del_rcu(&p->list);
|
|
|
|
spin_unlock_bh(&inetsw6_lock);
|
|
|
|
|
|
|
|
synchronize_net();
|
|
|
|
}
|
|
|
|
}
|
2007-02-22 21:05:40 +08:00
|
|
|
EXPORT_SYMBOL(inet6_unregister_protosw);
|
|
|
|
|
2005-12-14 15:22:54 +08:00
|
|
|
int inet6_sk_rebuild_header(struct sock *sk)
|
|
|
|
{
|
|
|
|
struct ipv6_pinfo *np = inet6_sk(sk);
|
2011-03-02 05:19:07 +08:00
|
|
|
struct dst_entry *dst;
|
2005-12-14 15:22:54 +08:00
|
|
|
|
|
|
|
dst = __sk_dst_check(sk, np->dst_cookie);
|
|
|
|
|
2015-03-29 21:00:04 +08:00
|
|
|
if (!dst) {
|
2005-12-14 15:22:54 +08:00
|
|
|
struct inet_sock *inet = inet_sk(sk);
|
2010-06-02 05:35:01 +08:00
|
|
|
struct in6_addr *final_p, final;
|
2011-03-13 05:22:43 +08:00
|
|
|
struct flowi6 fl6;
|
|
|
|
|
|
|
|
memset(&fl6, 0, sizeof(fl6));
|
|
|
|
fl6.flowi6_proto = sk->sk_protocol;
|
ipv6: make lookups simpler and faster
TCP listener refactoring, part 4 :
To speed up inet lookups, we moved IPv4 addresses from inet to struct
sock_common
Now is time to do the same for IPv6, because it permits us to have fast
lookups for all kind of sockets, including upcoming SYN_RECV.
Getting IPv6 addresses in TCP lookups currently requires two extra cache
lines, plus a dereference (and memory stall).
inet6_sk(sk) does the dereference of inet_sk(__sk)->pinet6
This patch is way bigger than its IPv4 counter part, because for IPv4,
we could add aliases (inet_daddr, inet_rcv_saddr), while on IPv6,
it's not doable easily.
inet6_sk(sk)->daddr becomes sk->sk_v6_daddr
inet6_sk(sk)->rcv_saddr becomes sk->sk_v6_rcv_saddr
And timewait socket also have tw->tw_v6_daddr & tw->tw_v6_rcv_saddr
at the same offset.
We get rid of INET6_TW_MATCH() as INET6_MATCH() is now the generic
macro.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2013-10-04 06:42:29 +08:00
|
|
|
fl6.daddr = sk->sk_v6_daddr;
|
2011-11-21 11:39:03 +08:00
|
|
|
fl6.saddr = np->saddr;
|
2011-03-13 05:22:43 +08:00
|
|
|
fl6.flowlabel = np->flow_label;
|
|
|
|
fl6.flowi6_oif = sk->sk_bound_dev_if;
|
|
|
|
fl6.flowi6_mark = sk->sk_mark;
|
2011-03-13 05:36:19 +08:00
|
|
|
fl6.fl6_dport = inet->inet_dport;
|
|
|
|
fl6.fl6_sport = inet->inet_sport;
|
2016-11-04 01:23:43 +08:00
|
|
|
fl6.flowi6_uid = sk->sk_uid;
|
2011-03-13 05:22:43 +08:00
|
|
|
security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
|
|
|
|
|
2015-11-30 11:37:57 +08:00
|
|
|
rcu_read_lock();
|
|
|
|
final_p = fl6_update_dst(&fl6, rcu_dereference(np->opt),
|
|
|
|
&final);
|
|
|
|
rcu_read_unlock();
|
2011-03-13 05:22:43 +08:00
|
|
|
|
2013-08-28 14:04:14 +08:00
|
|
|
dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
|
2011-03-02 05:19:07 +08:00
|
|
|
if (IS_ERR(dst)) {
|
2005-12-14 15:22:54 +08:00
|
|
|
sk->sk_route_caps = 0;
|
2011-03-02 05:19:07 +08:00
|
|
|
sk->sk_err_soft = -PTR_ERR(dst);
|
|
|
|
return PTR_ERR(dst);
|
2005-12-14 15:22:54 +08:00
|
|
|
}
|
|
|
|
|
2015-12-03 13:53:57 +08:00
|
|
|
ip6_dst_store(sk, dst, NULL, NULL);
|
2005-12-14 15:22:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(inet6_sk_rebuild_header);
|
|
|
|
|
2014-09-28 00:50:56 +08:00
|
|
|
bool ipv6_opt_accepted(const struct sock *sk, const struct sk_buff *skb,
|
|
|
|
const struct inet6_skb_parm *opt)
|
2005-12-14 15:24:28 +08:00
|
|
|
{
|
2012-05-18 14:14:11 +08:00
|
|
|
const struct ipv6_pinfo *np = inet6_sk(sk);
|
2005-12-14 15:24:28 +08:00
|
|
|
|
|
|
|
if (np->rxopt.all) {
|
2015-07-09 05:32:12 +08:00
|
|
|
if (((opt->flags & IP6SKB_HOPBYHOP) &&
|
|
|
|
(np->rxopt.bits.hopopts || np->rxopt.bits.ohopopts)) ||
|
2013-12-08 22:47:01 +08:00
|
|
|
(ip6_flowinfo((struct ipv6hdr *) skb_network_header(skb)) &&
|
2005-12-14 15:24:28 +08:00
|
|
|
np->rxopt.bits.rxflow) ||
|
|
|
|
(opt->srcrt && (np->rxopt.bits.srcrt ||
|
|
|
|
np->rxopt.bits.osrcrt)) ||
|
|
|
|
((opt->dst1 || opt->dst0) &&
|
|
|
|
(np->rxopt.bits.dstopts || np->rxopt.bits.odstopts)))
|
2012-05-18 14:14:11 +08:00
|
|
|
return true;
|
2005-12-14 15:24:28 +08:00
|
|
|
}
|
2012-05-18 14:14:11 +08:00
|
|
|
return false;
|
2005-12-14 15:24:28 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(ipv6_opt_accepted);
|
|
|
|
|
2009-03-09 16:18:29 +08:00
|
|
|
static struct packet_type ipv6_packet_type __read_mostly = {
|
2009-02-01 16:45:17 +08:00
|
|
|
.type = cpu_to_be16(ETH_P_IPV6),
|
2008-02-27 22:14:03 +08:00
|
|
|
.func = ipv6_rcv,
|
2018-07-05 22:49:42 +08:00
|
|
|
.list_func = ipv6_list_rcv,
|
2012-11-15 16:49:11 +08:00
|
|
|
};
|
|
|
|
|
2008-02-27 22:14:03 +08:00
|
|
|
static int __init ipv6_packet_init(void)
|
|
|
|
{
|
|
|
|
dev_add_pack(&ipv6_packet_type);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ipv6_packet_cleanup(void)
|
|
|
|
{
|
|
|
|
dev_remove_pack(&ipv6_packet_type);
|
|
|
|
}
|
|
|
|
|
2008-10-08 05:48:53 +08:00
|
|
|
static int __net_init ipv6_init_mibs(struct net *net)
|
|
|
|
{
|
2013-10-08 06:51:58 +08:00
|
|
|
int i;
|
|
|
|
|
2014-05-06 06:55:55 +08:00
|
|
|
net->mib.udp_stats_in6 = alloc_percpu(struct udp_mib);
|
|
|
|
if (!net->mib.udp_stats_in6)
|
2008-10-08 05:49:36 +08:00
|
|
|
return -ENOMEM;
|
2014-05-06 06:55:55 +08:00
|
|
|
net->mib.udplite_stats_in6 = alloc_percpu(struct udp_mib);
|
|
|
|
if (!net->mib.udplite_stats_in6)
|
2008-10-08 05:50:06 +08:00
|
|
|
goto err_udplite_mib;
|
2014-05-06 06:55:55 +08:00
|
|
|
net->mib.ipv6_statistics = alloc_percpu(struct ipstats_mib);
|
|
|
|
if (!net->mib.ipv6_statistics)
|
2008-10-09 01:36:03 +08:00
|
|
|
goto err_ip_mib;
|
2013-10-08 06:51:58 +08:00
|
|
|
|
|
|
|
for_each_possible_cpu(i) {
|
|
|
|
struct ipstats_mib *af_inet6_stats;
|
2014-05-06 06:55:55 +08:00
|
|
|
af_inet6_stats = per_cpu_ptr(net->mib.ipv6_statistics, i);
|
2013-10-08 06:51:58 +08:00
|
|
|
u64_stats_init(&af_inet6_stats->syncp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-06 06:55:55 +08:00
|
|
|
net->mib.icmpv6_statistics = alloc_percpu(struct icmpv6_mib);
|
|
|
|
if (!net->mib.icmpv6_statistics)
|
2008-10-09 01:36:03 +08:00
|
|
|
goto err_icmp_mib;
|
2011-11-13 09:24:04 +08:00
|
|
|
net->mib.icmpv6msg_statistics = kzalloc(sizeof(struct icmpv6msg_mib),
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!net->mib.icmpv6msg_statistics)
|
2008-10-09 01:36:03 +08:00
|
|
|
goto err_icmpmsg_mib;
|
2008-10-08 05:48:53 +08:00
|
|
|
return 0;
|
2008-10-08 05:50:06 +08:00
|
|
|
|
2008-10-09 01:36:03 +08:00
|
|
|
err_icmpmsg_mib:
|
2014-05-06 06:55:55 +08:00
|
|
|
free_percpu(net->mib.icmpv6_statistics);
|
2008-10-09 01:36:03 +08:00
|
|
|
err_icmp_mib:
|
2014-05-06 06:55:55 +08:00
|
|
|
free_percpu(net->mib.ipv6_statistics);
|
2008-10-09 01:36:03 +08:00
|
|
|
err_ip_mib:
|
2014-05-06 06:55:55 +08:00
|
|
|
free_percpu(net->mib.udplite_stats_in6);
|
2008-10-08 05:50:06 +08:00
|
|
|
err_udplite_mib:
|
2014-05-06 06:55:55 +08:00
|
|
|
free_percpu(net->mib.udp_stats_in6);
|
2008-10-08 05:50:06 +08:00
|
|
|
return -ENOMEM;
|
2008-10-08 05:48:53 +08:00
|
|
|
}
|
|
|
|
|
2010-01-17 11:35:32 +08:00
|
|
|
static void ipv6_cleanup_mibs(struct net *net)
|
2008-10-08 05:48:53 +08:00
|
|
|
{
|
2014-05-06 06:55:55 +08:00
|
|
|
free_percpu(net->mib.udp_stats_in6);
|
|
|
|
free_percpu(net->mib.udplite_stats_in6);
|
|
|
|
free_percpu(net->mib.ipv6_statistics);
|
|
|
|
free_percpu(net->mib.icmpv6_statistics);
|
2011-11-13 09:24:04 +08:00
|
|
|
kfree(net->mib.icmpv6msg_statistics);
|
2008-10-08 05:48:53 +08:00
|
|
|
}
|
|
|
|
|
2008-10-14 09:54:07 +08:00
|
|
|
static int __net_init inet6_net_init(struct net *net)
|
2008-01-10 18:48:33 +08:00
|
|
|
{
|
2008-03-21 19:14:17 +08:00
|
|
|
int err = 0;
|
|
|
|
|
2008-01-10 18:54:53 +08:00
|
|
|
net->ipv6.sysctl.bindv6only = 0;
|
2008-01-10 19:02:40 +08:00
|
|
|
net->ipv6.sysctl.icmpv6_time = 1*HZ;
|
2018-08-10 23:48:15 +08:00
|
|
|
net->ipv6.sysctl.icmpv6_echo_ignore_all = 0;
|
2014-01-18 00:15:05 +08:00
|
|
|
net->ipv6.sysctl.flowlabel_consistency = 1;
|
2015-08-01 07:52:12 +08:00
|
|
|
net->ipv6.sysctl.auto_flowlabels = IP6_DEFAULT_AUTO_FLOW_LABELS;
|
2015-03-24 06:36:05 +08:00
|
|
|
net->ipv6.sysctl.idgen_retries = 3;
|
|
|
|
net->ipv6.sysctl.idgen_delay = 1 * HZ;
|
2015-08-01 07:52:13 +08:00
|
|
|
net->ipv6.sysctl.flowlabel_state_ranges = 0;
|
2017-10-31 05:16:00 +08:00
|
|
|
net->ipv6.sysctl.max_dst_opts_cnt = IP6_DEFAULT_MAX_DST_OPTS_CNT;
|
|
|
|
net->ipv6.sysctl.max_hbh_opts_cnt = IP6_DEFAULT_MAX_HBH_OPTS_CNT;
|
|
|
|
net->ipv6.sysctl.max_dst_opts_len = IP6_DEFAULT_MAX_DST_OPTS_LEN;
|
|
|
|
net->ipv6.sysctl.max_hbh_opts_len = IP6_DEFAULT_MAX_HBH_OPTS_LEN;
|
2014-10-07 01:58:37 +08:00
|
|
|
atomic_set(&net->ipv6.fib6_sernum, 1);
|
2008-01-10 18:56:03 +08:00
|
|
|
|
2008-10-08 05:48:53 +08:00
|
|
|
err = ipv6_init_mibs(net);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2008-03-21 19:14:17 +08:00
|
|
|
#ifdef CONFIG_PROC_FS
|
|
|
|
err = udp6_proc_init(net);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
2008-03-21 19:14:45 +08:00
|
|
|
err = tcp6_proc_init(net);
|
|
|
|
if (err)
|
|
|
|
goto proc_tcp6_fail;
|
2008-03-27 07:52:32 +08:00
|
|
|
err = ac6_proc_init(net);
|
|
|
|
if (err)
|
|
|
|
goto proc_ac6_fail;
|
2008-03-21 19:14:17 +08:00
|
|
|
#endif
|
|
|
|
return err;
|
2008-03-21 19:14:45 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_PROC_FS
|
2008-03-27 07:52:32 +08:00
|
|
|
proc_ac6_fail:
|
|
|
|
tcp6_proc_exit(net);
|
2008-03-21 19:14:45 +08:00
|
|
|
proc_tcp6_fail:
|
|
|
|
udp6_proc_exit(net);
|
2008-10-08 05:48:53 +08:00
|
|
|
out:
|
|
|
|
ipv6_cleanup_mibs(net);
|
|
|
|
return err;
|
2008-03-21 19:14:45 +08:00
|
|
|
#endif
|
2008-01-10 18:48:33 +08:00
|
|
|
}
|
|
|
|
|
2010-01-17 11:35:32 +08:00
|
|
|
static void __net_exit inet6_net_exit(struct net *net)
|
2008-01-10 18:48:33 +08:00
|
|
|
{
|
2008-03-21 19:14:17 +08:00
|
|
|
#ifdef CONFIG_PROC_FS
|
|
|
|
udp6_proc_exit(net);
|
2008-03-21 19:14:45 +08:00
|
|
|
tcp6_proc_exit(net);
|
2008-03-27 07:52:32 +08:00
|
|
|
ac6_proc_exit(net);
|
2008-03-21 19:14:17 +08:00
|
|
|
#endif
|
2008-10-08 05:48:53 +08:00
|
|
|
ipv6_cleanup_mibs(net);
|
2008-01-10 18:48:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct pernet_operations inet6_net_ops = {
|
|
|
|
.init = inet6_net_init,
|
|
|
|
.exit = inet6_net_exit,
|
|
|
|
};
|
|
|
|
|
2013-08-31 13:44:30 +08:00
|
|
|
static const struct ipv6_stub ipv6_stub_impl = {
|
|
|
|
.ipv6_sock_mc_join = ipv6_sock_mc_join,
|
|
|
|
.ipv6_sock_mc_drop = ipv6_sock_mc_drop,
|
2018-05-10 11:34:25 +08:00
|
|
|
.ipv6_dst_lookup = ip6_dst_lookup,
|
|
|
|
.fib6_get_table = fib6_get_table,
|
|
|
|
.fib6_table_lookup = fib6_table_lookup,
|
|
|
|
.fib6_lookup = fib6_lookup,
|
|
|
|
.fib6_multipath_select = fib6_multipath_select,
|
2018-05-22 00:08:14 +08:00
|
|
|
.ip6_mtu_from_fib6 = ip6_mtu_from_fib6,
|
2013-08-31 13:44:30 +08:00
|
|
|
.udpv6_encap_enable = udpv6_encap_enable,
|
2013-08-31 13:44:36 +08:00
|
|
|
.ndisc_send_na = ndisc_send_na,
|
2013-08-31 13:44:34 +08:00
|
|
|
.nd_tbl = &nd_tbl,
|
2013-08-31 13:44:30 +08:00
|
|
|
};
|
|
|
|
|
2018-03-31 06:08:05 +08:00
|
|
|
static const struct ipv6_bpf_stub ipv6_bpf_stub_impl = {
|
|
|
|
.inet6_bind = __inet6_bind,
|
|
|
|
};
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
static int __init inet6_init(void)
|
|
|
|
{
|
2007-02-09 22:24:49 +08:00
|
|
|
struct list_head *r;
|
2009-03-04 19:18:11 +08:00
|
|
|
int err = 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2015-03-01 20:58:29 +08:00
|
|
|
sock_skb_cb_check_size(sizeof(struct inet6_skb_parm));
|
2006-09-01 15:29:06 +08:00
|
|
|
|
2009-03-04 19:18:11 +08:00
|
|
|
/* Register the socket-side information for inet6_create. */
|
2012-05-05 18:13:53 +08:00
|
|
|
for (r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r)
|
2009-03-04 19:18:11 +08:00
|
|
|
INIT_LIST_HEAD(r);
|
|
|
|
|
2009-06-01 18:07:33 +08:00
|
|
|
if (disable_ipv6_mod) {
|
2012-05-15 22:11:53 +08:00
|
|
|
pr_info("Loaded, but administratively disabled, reboot required to enable\n");
|
2009-03-04 19:18:11 +08:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
err = proto_register(&tcpv6_prot, 1);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
err = proto_register(&udpv6_prot, 1);
|
|
|
|
if (err)
|
|
|
|
goto out_unregister_tcp_proto;
|
|
|
|
|
2006-11-28 03:10:57 +08:00
|
|
|
err = proto_register(&udplitev6_prot, 1);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (err)
|
|
|
|
goto out_unregister_udp_proto;
|
|
|
|
|
2006-11-28 03:10:57 +08:00
|
|
|
err = proto_register(&rawv6_prot, 1);
|
|
|
|
if (err)
|
|
|
|
goto out_unregister_udplite_proto;
|
|
|
|
|
2013-05-23 04:17:31 +08:00
|
|
|
err = proto_register(&pingv6_prot, 1);
|
|
|
|
if (err)
|
2018-08-28 19:40:52 +08:00
|
|
|
goto out_unregister_raw_proto;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* We MUST register RAW sockets before we create the ICMP6,
|
|
|
|
* IGMP6, or NDISC control sockets.
|
|
|
|
*/
|
2007-12-11 18:25:35 +08:00
|
|
|
err = rawv6_init();
|
|
|
|
if (err)
|
2018-08-28 19:40:52 +08:00
|
|
|
goto out_unregister_ping_proto;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Register the family here so that the init calls below will
|
|
|
|
* be able to create sockets. (?? is this dangerous ??)
|
|
|
|
*/
|
2005-11-12 07:05:47 +08:00
|
|
|
err = sock_register(&inet6_family_ops);
|
|
|
|
if (err)
|
2007-12-11 18:25:35 +08:00
|
|
|
goto out_sock_register_fail;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ipngwg API draft makes clear that the correct semantics
|
|
|
|
* for TCP and UDP is to consider one TCP and UDP instance
|
2011-03-31 09:57:33 +08:00
|
|
|
* in a host available by both INET and INET6 APIs and
|
2005-04-17 06:20:36 +08:00
|
|
|
* able to communicate via both network protocols.
|
|
|
|
*/
|
|
|
|
|
2008-01-10 18:48:33 +08:00
|
|
|
err = register_pernet_subsys(&inet6_net_ops);
|
|
|
|
if (err)
|
|
|
|
goto register_pernet_fail;
|
2008-07-03 12:13:30 +08:00
|
|
|
err = ip6_mr_init();
|
|
|
|
if (err)
|
|
|
|
goto ipmr_fail;
|
2017-03-06 04:34:53 +08:00
|
|
|
err = icmpv6_init();
|
|
|
|
if (err)
|
|
|
|
goto icmp_fail;
|
2008-03-01 03:13:15 +08:00
|
|
|
err = ndisc_init();
|
2005-04-17 06:20:36 +08:00
|
|
|
if (err)
|
|
|
|
goto ndisc_fail;
|
2008-03-01 03:13:15 +08:00
|
|
|
err = igmp6_init();
|
2005-04-17 06:20:36 +08:00
|
|
|
if (err)
|
|
|
|
goto igmp_fail;
|
2013-08-31 13:44:30 +08:00
|
|
|
|
2005-08-10 10:42:34 +08:00
|
|
|
err = ipv6_netfilter_init();
|
|
|
|
if (err)
|
|
|
|
goto netfilter_fail;
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Create /proc/foo6 entries. */
|
|
|
|
#ifdef CONFIG_PROC_FS
|
|
|
|
err = -ENOMEM;
|
|
|
|
if (raw6_proc_init())
|
|
|
|
goto proc_raw6_fail;
|
2006-11-28 03:10:57 +08:00
|
|
|
if (udplite6_proc_init())
|
|
|
|
goto proc_udplite6_fail;
|
2005-04-17 06:20:36 +08:00
|
|
|
if (ipv6_misc_proc_init())
|
|
|
|
goto proc_misc6_fail;
|
|
|
|
if (if6_proc_init())
|
|
|
|
goto proc_if6_fail;
|
|
|
|
#endif
|
2007-12-07 16:44:29 +08:00
|
|
|
err = ip6_route_init();
|
|
|
|
if (err)
|
|
|
|
goto ip6_route_fail;
|
2013-09-10 03:45:04 +08:00
|
|
|
err = ndisc_late_init();
|
|
|
|
if (err)
|
|
|
|
goto ndisc_late_fail;
|
2007-12-11 18:23:18 +08:00
|
|
|
err = ip6_flowlabel_init();
|
|
|
|
if (err)
|
|
|
|
goto ip6_flowlabel_fail;
|
2005-04-17 06:20:36 +08:00
|
|
|
err = addrconf_init();
|
|
|
|
if (err)
|
|
|
|
goto addrconf_fail;
|
|
|
|
|
|
|
|
/* Init v6 extension headers. */
|
2007-12-11 18:23:54 +08:00
|
|
|
err = ipv6_exthdrs_init();
|
|
|
|
if (err)
|
|
|
|
goto ipv6_exthdrs_fail;
|
|
|
|
|
2007-12-11 18:24:29 +08:00
|
|
|
err = ipv6_frag_init();
|
|
|
|
if (err)
|
|
|
|
goto ipv6_frag_fail;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Init v6 transport protocols. */
|
2007-12-11 18:25:35 +08:00
|
|
|
err = udpv6_init();
|
|
|
|
if (err)
|
|
|
|
goto udpv6_fail;
|
2005-07-06 05:41:20 +08:00
|
|
|
|
2007-12-11 18:25:35 +08:00
|
|
|
err = udplitev6_init();
|
|
|
|
if (err)
|
|
|
|
goto udplitev6_fail;
|
|
|
|
|
2016-04-05 23:22:51 +08:00
|
|
|
err = udpv6_offload_init();
|
|
|
|
if (err)
|
|
|
|
goto udpv6_offload_fail;
|
|
|
|
|
2007-12-11 18:25:35 +08:00
|
|
|
err = tcpv6_init();
|
|
|
|
if (err)
|
|
|
|
goto tcpv6_fail;
|
|
|
|
|
|
|
|
err = ipv6_packet_init();
|
|
|
|
if (err)
|
|
|
|
goto ipv6_packet_fail;
|
2008-03-06 02:45:36 +08:00
|
|
|
|
2013-05-23 04:17:31 +08:00
|
|
|
err = pingv6_init();
|
|
|
|
if (err)
|
|
|
|
goto pingv6_fail;
|
|
|
|
|
2016-06-28 03:02:46 +08:00
|
|
|
err = calipso_init();
|
|
|
|
if (err)
|
|
|
|
goto calipso_fail;
|
|
|
|
|
2016-11-08 21:57:40 +08:00
|
|
|
err = seg6_init();
|
|
|
|
if (err)
|
|
|
|
goto seg6_fail;
|
|
|
|
|
2017-03-29 02:49:16 +08:00
|
|
|
err = igmp6_late_init();
|
|
|
|
if (err)
|
|
|
|
goto igmp6_late_err;
|
|
|
|
|
2008-03-06 02:45:36 +08:00
|
|
|
#ifdef CONFIG_SYSCTL
|
|
|
|
err = ipv6_sysctl_register();
|
|
|
|
if (err)
|
|
|
|
goto sysctl_fail;
|
|
|
|
#endif
|
2017-04-24 20:18:28 +08:00
|
|
|
|
|
|
|
/* ensure that ipv6 stubs are visible only after ipv6 is ready */
|
|
|
|
wmb();
|
|
|
|
ipv6_stub = &ipv6_stub_impl;
|
2018-03-31 06:08:05 +08:00
|
|
|
ipv6_bpf_stub = &ipv6_bpf_stub_impl;
|
2005-04-17 06:20:36 +08:00
|
|
|
out:
|
|
|
|
return err;
|
|
|
|
|
2008-03-06 02:45:36 +08:00
|
|
|
#ifdef CONFIG_SYSCTL
|
|
|
|
sysctl_fail:
|
2017-03-29 02:49:16 +08:00
|
|
|
igmp6_late_cleanup();
|
2008-03-06 02:45:36 +08:00
|
|
|
#endif
|
2017-03-29 02:49:16 +08:00
|
|
|
igmp6_late_err:
|
|
|
|
seg6_exit();
|
2016-11-08 21:57:40 +08:00
|
|
|
seg6_fail:
|
|
|
|
calipso_exit();
|
2016-06-28 03:02:46 +08:00
|
|
|
calipso_fail:
|
|
|
|
pingv6_exit();
|
2013-05-23 04:17:31 +08:00
|
|
|
pingv6_fail:
|
2013-11-17 04:17:24 +08:00
|
|
|
ipv6_packet_cleanup();
|
2007-12-11 18:25:35 +08:00
|
|
|
ipv6_packet_fail:
|
|
|
|
tcpv6_exit();
|
|
|
|
tcpv6_fail:
|
2016-04-05 23:22:51 +08:00
|
|
|
udpv6_offload_exit();
|
|
|
|
udpv6_offload_fail:
|
2007-12-11 18:25:35 +08:00
|
|
|
udplitev6_exit();
|
|
|
|
udplitev6_fail:
|
|
|
|
udpv6_exit();
|
|
|
|
udpv6_fail:
|
|
|
|
ipv6_frag_exit();
|
2007-12-11 18:24:29 +08:00
|
|
|
ipv6_frag_fail:
|
|
|
|
ipv6_exthdrs_exit();
|
2007-12-11 18:23:54 +08:00
|
|
|
ipv6_exthdrs_fail:
|
|
|
|
addrconf_cleanup();
|
2005-04-17 06:20:36 +08:00
|
|
|
addrconf_fail:
|
|
|
|
ip6_flowlabel_cleanup();
|
2007-12-11 18:23:18 +08:00
|
|
|
ip6_flowlabel_fail:
|
2013-09-10 03:45:04 +08:00
|
|
|
ndisc_late_cleanup();
|
|
|
|
ndisc_late_fail:
|
2005-04-17 06:20:36 +08:00
|
|
|
ip6_route_cleanup();
|
2007-12-07 16:44:29 +08:00
|
|
|
ip6_route_fail:
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifdef CONFIG_PROC_FS
|
|
|
|
if6_proc_exit();
|
|
|
|
proc_if6_fail:
|
|
|
|
ipv6_misc_proc_exit();
|
|
|
|
proc_misc6_fail:
|
2006-11-28 03:10:57 +08:00
|
|
|
udplite6_proc_exit();
|
|
|
|
proc_udplite6_fail:
|
2005-04-17 06:20:36 +08:00
|
|
|
raw6_proc_exit();
|
|
|
|
proc_raw6_fail:
|
|
|
|
#endif
|
2005-08-10 10:42:34 +08:00
|
|
|
ipv6_netfilter_fini();
|
|
|
|
netfilter_fail:
|
2005-04-17 06:20:36 +08:00
|
|
|
igmp6_cleanup();
|
|
|
|
igmp_fail:
|
|
|
|
ndisc_cleanup();
|
|
|
|
ndisc_fail:
|
2018-08-28 19:40:51 +08:00
|
|
|
icmpv6_cleanup();
|
2005-04-17 06:20:36 +08:00
|
|
|
icmp_fail:
|
2018-08-28 19:40:51 +08:00
|
|
|
ip6_mr_cleanup();
|
2017-03-06 04:34:53 +08:00
|
|
|
ipmr_fail:
|
2018-08-28 19:40:51 +08:00
|
|
|
unregister_pernet_subsys(&inet6_net_ops);
|
2008-01-10 18:48:33 +08:00
|
|
|
register_pernet_fail:
|
2005-11-12 07:05:47 +08:00
|
|
|
sock_unregister(PF_INET6);
|
2007-12-07 16:44:29 +08:00
|
|
|
rtnl_unregister_all(PF_INET6);
|
2007-12-11 18:25:35 +08:00
|
|
|
out_sock_register_fail:
|
|
|
|
rawv6_exit();
|
2013-05-23 04:17:31 +08:00
|
|
|
out_unregister_ping_proto:
|
|
|
|
proto_unregister(&pingv6_prot);
|
2005-04-17 06:20:36 +08:00
|
|
|
out_unregister_raw_proto:
|
|
|
|
proto_unregister(&rawv6_prot);
|
2006-11-28 03:10:57 +08:00
|
|
|
out_unregister_udplite_proto:
|
|
|
|
proto_unregister(&udplitev6_prot);
|
2005-04-17 06:20:36 +08:00
|
|
|
out_unregister_udp_proto:
|
|
|
|
proto_unregister(&udpv6_prot);
|
|
|
|
out_unregister_tcp_proto:
|
|
|
|
proto_unregister(&tcpv6_prot);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
module_init(inet6_init);
|
|
|
|
|
|
|
|
MODULE_ALIAS_NETPROTO(PF_INET6);
|