2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Extension Header handling for IPv6
|
|
|
|
* Linux INET6 implementation
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Pedro Roque <roque@di.fc.ul.pt>
|
|
|
|
* Andi Kleen <ak@muc.de>
|
|
|
|
* Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Changes:
|
2007-02-09 14:24:49 +00:00
|
|
|
* yoshfuji : ensure not to overrun while parsing
|
2005-04-16 22:20:36 +00:00
|
|
|
* tlv options.
|
|
|
|
* Mitsuru KANDA @USAGI and: Remove ipv6_parse_exthdrs().
|
|
|
|
* YOSHIFUJI Hideaki @USAGI Register inbound extension header
|
|
|
|
* handlers as inet6_protocol{}.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/socket.h>
|
|
|
|
#include <linux/sockios.h>
|
|
|
|
#include <linux/net.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/in6.h>
|
|
|
|
#include <linux/icmpv6.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 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2011-07-15 15:47:34 +00:00
|
|
|
#include <linux/export.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-11-14 05:34:06 +00:00
|
|
|
#include <net/dst.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <net/sock.h>
|
|
|
|
#include <net/snmp.h>
|
|
|
|
|
|
|
|
#include <net/ipv6.h>
|
|
|
|
#include <net/protocol.h>
|
|
|
|
#include <net/transp_v6.h>
|
|
|
|
#include <net/rawv6.h>
|
|
|
|
#include <net/ndisc.h>
|
|
|
|
#include <net/ip6_route.h>
|
|
|
|
#include <net/addrconf.h>
|
2016-06-27 19:06:17 +00:00
|
|
|
#include <net/calipso.h>
|
2012-10-29 16:23:10 +00:00
|
|
|
#if IS_ENABLED(CONFIG_IPV6_MIP6)
|
2006-08-24 02:16:22 +00:00
|
|
|
#include <net/xfrm.h>
|
|
|
|
#endif
|
2016-11-08 13:57:39 +00:00
|
|
|
#include <linux/seg6.h>
|
|
|
|
#include <net/seg6.h>
|
2016-11-08 13:59:19 +00:00
|
|
|
#ifdef CONFIG_IPV6_SEG6_HMAC
|
|
|
|
#include <net/seg6_hmac.h>
|
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-10-27 18:12:58 +00:00
|
|
|
#include <linux/uaccess.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Parsing tlv encoded headers.
|
|
|
|
*
|
2012-05-18 18:57:34 +00:00
|
|
|
* Parsing function "func" returns true, if parsing succeed
|
|
|
|
* and false, if it failed.
|
2005-04-16 22:20:36 +00:00
|
|
|
* It MUST NOT touch skb->h.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct tlvtype_proc {
|
|
|
|
int type;
|
2012-05-18 18:57:34 +00:00
|
|
|
bool (*func)(struct sk_buff *skb, int offset);
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
Generic functions
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
/* An unknown option is detected, decide what to do */
|
|
|
|
|
2017-10-30 21:16:00 +00:00
|
|
|
static bool ip6_tlvopt_unknown(struct sk_buff *skb, int optoff,
|
|
|
|
bool disallow_unknowns)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2017-10-30 21:16:00 +00:00
|
|
|
if (disallow_unknowns) {
|
|
|
|
/* If unknown TLVs are disallowed by configuration
|
|
|
|
* then always silently drop packet. Note this also
|
|
|
|
* means no ICMP parameter problem is sent which
|
|
|
|
* could be a good property to mitigate a reflection DOS
|
|
|
|
* attack.
|
|
|
|
*/
|
|
|
|
|
|
|
|
goto drop;
|
|
|
|
}
|
|
|
|
|
2007-04-11 03:50:43 +00:00
|
|
|
switch ((skb_network_header(skb)[optoff] & 0xC0) >> 6) {
|
2005-04-16 22:20:36 +00:00
|
|
|
case 0: /* ignore */
|
2012-05-18 18:57:34 +00:00
|
|
|
return true;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
case 1: /* drop packet */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3: /* Send ICMP if not a multicast address and drop packet */
|
|
|
|
/* Actually, it is redundant check. icmp_send
|
|
|
|
will recheck in any case.
|
|
|
|
*/
|
2007-04-26 00:54:47 +00:00
|
|
|
if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr))
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
2017-10-16 21:36:52 +00:00
|
|
|
/* fall through */
|
2005-04-16 22:20:36 +00:00
|
|
|
case 2: /* send ICMP PARM PROB regardless and drop packet */
|
|
|
|
icmpv6_param_prob(skb, ICMPV6_UNK_OPTION, optoff);
|
2012-05-18 18:57:34 +00:00
|
|
|
return false;
|
2007-04-21 00:09:22 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2017-10-30 21:16:00 +00:00
|
|
|
drop:
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree_skb(skb);
|
2012-05-18 18:57:34 +00:00
|
|
|
return false;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Parse tlv encoded option header (hop-by-hop or destination) */
|
|
|
|
|
2017-10-30 21:16:00 +00:00
|
|
|
static bool ip6_parse_tlv(const struct tlvtype_proc *procs,
|
|
|
|
struct sk_buff *skb,
|
|
|
|
int max_count)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2017-10-30 21:16:00 +00:00
|
|
|
int len = (skb_transport_header(skb)[1] + 1) << 3;
|
2007-04-11 03:50:43 +00:00
|
|
|
const unsigned char *nh = skb_network_header(skb);
|
2007-03-16 20:26:39 +00:00
|
|
|
int off = skb_network_header_len(skb);
|
2017-10-30 21:16:00 +00:00
|
|
|
const struct tlvtype_proc *curr;
|
|
|
|
bool disallow_unknowns = false;
|
|
|
|
int tlv_count = 0;
|
2012-05-20 01:59:33 +00:00
|
|
|
int padlen = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2017-10-30 21:16:00 +00:00
|
|
|
if (unlikely(max_count < 0)) {
|
|
|
|
disallow_unknowns = true;
|
|
|
|
max_count = -max_count;
|
|
|
|
}
|
|
|
|
|
2007-04-26 00:55:53 +00:00
|
|
|
if (skb_transport_offset(skb) + len > skb_headlen(skb))
|
2005-04-16 22:20:36 +00:00
|
|
|
goto bad;
|
|
|
|
|
|
|
|
off += 2;
|
|
|
|
len -= 2;
|
|
|
|
|
|
|
|
while (len > 0) {
|
2007-04-11 03:50:43 +00:00
|
|
|
int optlen = nh[off + 1] + 2;
|
2012-04-12 21:36:17 +00:00
|
|
|
int i;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-04-11 03:50:43 +00:00
|
|
|
switch (nh[off]) {
|
2012-05-17 06:00:25 +00:00
|
|
|
case IPV6_TLV_PAD1:
|
2005-04-16 22:20:36 +00:00
|
|
|
optlen = 1;
|
2012-05-20 01:59:33 +00:00
|
|
|
padlen++;
|
|
|
|
if (padlen > 7)
|
|
|
|
goto bad;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IPV6_TLV_PADN:
|
2012-04-12 21:36:17 +00:00
|
|
|
/* RFC 2460 states that the purpose of PadN is
|
|
|
|
* to align the containing header to multiples
|
|
|
|
* of 8. 7 is therefore the highest valid value.
|
|
|
|
* See also RFC 4942, Section 2.1.9.5.
|
|
|
|
*/
|
2012-05-20 01:59:33 +00:00
|
|
|
padlen += optlen;
|
|
|
|
if (padlen > 7)
|
2012-04-12 21:36:17 +00:00
|
|
|
goto bad;
|
|
|
|
/* RFC 4942 recommends receiving hosts to
|
|
|
|
* actively check PadN payload to contain
|
|
|
|
* only zeroes.
|
|
|
|
*/
|
|
|
|
for (i = 2; i < optlen; i++) {
|
|
|
|
if (nh[off + i] != 0)
|
|
|
|
goto bad;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default: /* Other TLV code so scan list */
|
|
|
|
if (optlen > len)
|
|
|
|
goto bad;
|
2017-10-30 21:16:00 +00:00
|
|
|
|
|
|
|
tlv_count++;
|
|
|
|
if (tlv_count > max_count)
|
|
|
|
goto bad;
|
|
|
|
|
2014-08-24 20:53:10 +00:00
|
|
|
for (curr = procs; curr->type >= 0; curr++) {
|
2007-04-11 03:50:43 +00:00
|
|
|
if (curr->type == nh[off]) {
|
2007-02-09 14:24:49 +00:00
|
|
|
/* type specific length/alignment
|
|
|
|
checks will be performed in the
|
2005-04-16 22:20:36 +00:00
|
|
|
func(). */
|
2012-05-18 18:57:34 +00:00
|
|
|
if (curr->func(skb, off) == false)
|
|
|
|
return false;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-10-30 21:16:00 +00:00
|
|
|
if (curr->type < 0 &&
|
|
|
|
!ip6_tlvopt_unknown(skb, off, disallow_unknowns))
|
|
|
|
return false;
|
|
|
|
|
2012-05-20 01:59:33 +00:00
|
|
|
padlen = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
off += optlen;
|
|
|
|
len -= optlen;
|
|
|
|
}
|
2012-05-20 01:59:33 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
if (len == 0)
|
2012-05-18 18:57:34 +00:00
|
|
|
return true;
|
2005-04-16 22:20:36 +00:00
|
|
|
bad:
|
|
|
|
kfree_skb(skb);
|
2012-05-18 18:57:34 +00:00
|
|
|
return false;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************
|
|
|
|
Destination options header.
|
|
|
|
*****************************/
|
|
|
|
|
2012-10-29 16:23:10 +00:00
|
|
|
#if IS_ENABLED(CONFIG_IPV6_MIP6)
|
2012-05-18 18:57:34 +00:00
|
|
|
static bool ipv6_dest_hao(struct sk_buff *skb, int optoff)
|
2006-08-24 02:24:48 +00:00
|
|
|
{
|
|
|
|
struct ipv6_destopt_hao *hao;
|
|
|
|
struct inet6_skb_parm *opt = IP6CB(skb);
|
2007-04-26 00:54:47 +00:00
|
|
|
struct ipv6hdr *ipv6h = ipv6_hdr(skb);
|
2006-08-24 02:24:48 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (opt->dsthao) {
|
2014-11-11 18:59:17 +00:00
|
|
|
net_dbg_ratelimited("hao duplicated\n");
|
2006-08-24 02:24:48 +00:00
|
|
|
goto discard;
|
|
|
|
}
|
|
|
|
opt->dsthao = opt->dst1;
|
|
|
|
opt->dst1 = 0;
|
|
|
|
|
2007-04-11 03:50:43 +00:00
|
|
|
hao = (struct ipv6_destopt_hao *)(skb_network_header(skb) + optoff);
|
2006-08-24 02:24:48 +00:00
|
|
|
|
|
|
|
if (hao->length != 16) {
|
2014-11-11 18:59:17 +00:00
|
|
|
net_dbg_ratelimited("hao invalid option length = %d\n",
|
|
|
|
hao->length);
|
2006-08-24 02:24:48 +00:00
|
|
|
goto discard;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(ipv6_addr_type(&hao->addr) & IPV6_ADDR_UNICAST)) {
|
2014-11-11 18:59:17 +00:00
|
|
|
net_dbg_ratelimited("hao is not an unicast addr: %pI6\n",
|
|
|
|
&hao->addr);
|
2006-08-24 02:24:48 +00:00
|
|
|
goto discard;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = xfrm6_input_addr(skb, (xfrm_address_t *)&ipv6h->daddr,
|
|
|
|
(xfrm_address_t *)&hao->addr, IPPROTO_DSTOPTS);
|
|
|
|
if (unlikely(ret < 0))
|
|
|
|
goto discard;
|
|
|
|
|
|
|
|
if (skb_cloned(skb)) {
|
2007-10-15 08:29:10 +00:00
|
|
|
if (pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
|
2006-08-24 02:24:48 +00:00
|
|
|
goto discard;
|
|
|
|
|
|
|
|
/* update all variable using below by copied skbuff */
|
2007-10-15 08:29:10 +00:00
|
|
|
hao = (struct ipv6_destopt_hao *)(skb_network_header(skb) +
|
2007-04-11 03:50:43 +00:00
|
|
|
optoff);
|
2007-10-15 08:29:10 +00:00
|
|
|
ipv6h = ipv6_hdr(skb);
|
2006-08-24 02:24:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (skb->ip_summed == CHECKSUM_COMPLETE)
|
|
|
|
skb->ip_summed = CHECKSUM_NONE;
|
|
|
|
|
2017-10-27 04:10:35 +00:00
|
|
|
swap(ipv6h->saddr, hao->addr);
|
2006-08-24 02:24:48 +00:00
|
|
|
|
2016-12-25 10:38:40 +00:00
|
|
|
if (skb->tstamp == 0)
|
2006-08-24 02:24:48 +00:00
|
|
|
__net_timestamp(skb);
|
|
|
|
|
2012-05-18 18:57:34 +00:00
|
|
|
return true;
|
2006-08-24 02:24:48 +00:00
|
|
|
|
|
|
|
discard:
|
|
|
|
kfree_skb(skb);
|
2012-05-18 18:57:34 +00:00
|
|
|
return false;
|
2006-08-24 02:24:48 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-05-18 18:57:34 +00:00
|
|
|
static const struct tlvtype_proc tlvprocdestopt_lst[] = {
|
2012-10-29 16:23:10 +00:00
|
|
|
#if IS_ENABLED(CONFIG_IPV6_MIP6)
|
2006-08-24 02:24:48 +00:00
|
|
|
{
|
|
|
|
.type = IPV6_TLV_HAO,
|
|
|
|
.func = ipv6_dest_hao,
|
|
|
|
},
|
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
{-1, NULL}
|
|
|
|
};
|
|
|
|
|
2007-10-15 19:50:28 +00:00
|
|
|
static int ipv6_destopt_rcv(struct sk_buff *skb)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct inet6_skb_parm *opt = IP6CB(skb);
|
2012-10-29 16:23:10 +00:00
|
|
|
#if IS_ENABLED(CONFIG_IPV6_MIP6)
|
2006-08-24 02:24:48 +00:00
|
|
|
__u16 dstbuf;
|
|
|
|
#endif
|
2011-07-28 04:00:35 +00:00
|
|
|
struct dst_entry *dst = skb_dst(skb);
|
2017-10-30 21:16:00 +00:00
|
|
|
struct net *net = dev_net(skb->dev);
|
|
|
|
int extlen;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-04-26 00:55:53 +00:00
|
|
|
if (!pskb_may_pull(skb, skb_transport_offset(skb) + 8) ||
|
|
|
|
!pskb_may_pull(skb, (skb_transport_offset(skb) +
|
2007-04-26 01:04:18 +00:00
|
|
|
((skb_transport_header(skb)[1] + 1) << 3)))) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
|
|
|
|
IPSTATS_MIB_INHDRERRORS);
|
2017-10-30 21:16:00 +00:00
|
|
|
fail_and_free:
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-10-30 21:16:00 +00:00
|
|
|
extlen = (skb_transport_header(skb)[1] + 1) << 3;
|
|
|
|
if (extlen > net->ipv6.sysctl.max_dst_opts_len)
|
|
|
|
goto fail_and_free;
|
|
|
|
|
2007-03-16 20:26:39 +00:00
|
|
|
opt->lastopt = opt->dst1 = skb_network_header_len(skb);
|
2012-10-29 16:23:10 +00:00
|
|
|
#if IS_ENABLED(CONFIG_IPV6_MIP6)
|
2006-08-24 02:24:48 +00:00
|
|
|
dstbuf = opt->dst1;
|
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2017-10-30 21:16:00 +00:00
|
|
|
if (ip6_parse_tlv(tlvprocdestopt_lst, skb,
|
|
|
|
init_net.ipv6.sysctl.max_dst_opts_cnt)) {
|
|
|
|
skb->transport_header += extlen;
|
2006-08-31 22:18:49 +00:00
|
|
|
opt = IP6CB(skb);
|
2012-10-29 16:23:10 +00:00
|
|
|
#if IS_ENABLED(CONFIG_IPV6_MIP6)
|
2006-08-24 02:24:48 +00:00
|
|
|
opt->nhoff = dstbuf;
|
|
|
|
#else
|
2006-01-07 07:02:34 +00:00
|
|
|
opt->nhoff = opt->dst1;
|
2006-08-24 02:24:48 +00:00
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(dev_net(dst->dev),
|
|
|
|
ip6_dst_idev(dst), IPSTATS_MIB_INHDRERRORS);
|
2005-04-16 22:20:36 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-11-08 13:57:39 +00:00
|
|
|
static void seg6_update_csum(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
struct ipv6_sr_hdr *hdr;
|
|
|
|
struct in6_addr *addr;
|
|
|
|
__be32 from, to;
|
|
|
|
|
|
|
|
/* srh is at transport offset and seg_left is already decremented
|
|
|
|
* but daddr is not yet updated with next segment
|
|
|
|
*/
|
|
|
|
|
|
|
|
hdr = (struct ipv6_sr_hdr *)skb_transport_header(skb);
|
|
|
|
addr = hdr->segments + hdr->segments_left;
|
|
|
|
|
|
|
|
hdr->segments_left++;
|
|
|
|
from = *(__be32 *)hdr;
|
|
|
|
|
|
|
|
hdr->segments_left--;
|
|
|
|
to = *(__be32 *)hdr;
|
|
|
|
|
|
|
|
/* update skb csum with diff resulting from seg_left decrement */
|
|
|
|
|
|
|
|
update_csum_diff4(skb, from, to);
|
|
|
|
|
|
|
|
/* compute csum diff between current and next segment and update */
|
|
|
|
|
|
|
|
update_csum_diff16(skb, (__be32 *)(&ipv6_hdr(skb)->daddr),
|
|
|
|
(__be32 *)addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ipv6_srh_rcv(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
struct inet6_skb_parm *opt = IP6CB(skb);
|
|
|
|
struct net *net = dev_net(skb->dev);
|
|
|
|
struct ipv6_sr_hdr *hdr;
|
|
|
|
struct inet6_dev *idev;
|
|
|
|
struct in6_addr *addr;
|
|
|
|
int accept_seg6;
|
|
|
|
|
|
|
|
hdr = (struct ipv6_sr_hdr *)skb_transport_header(skb);
|
|
|
|
|
|
|
|
idev = __in6_dev_get(skb->dev);
|
|
|
|
|
|
|
|
accept_seg6 = net->ipv6.devconf_all->seg6_enabled;
|
|
|
|
if (accept_seg6 > idev->cnf.seg6_enabled)
|
|
|
|
accept_seg6 = idev->cnf.seg6_enabled;
|
|
|
|
|
|
|
|
if (!accept_seg6) {
|
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-11-08 13:59:19 +00:00
|
|
|
#ifdef CONFIG_IPV6_SEG6_HMAC
|
|
|
|
if (!seg6_hmac_validate_skb(skb)) {
|
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-11-08 13:57:39 +00:00
|
|
|
looped_back:
|
2017-02-02 10:29:38 +00:00
|
|
|
if (hdr->segments_left == 0) {
|
2016-11-08 13:57:39 +00:00
|
|
|
if (hdr->nexthdr == NEXTHDR_IPV6) {
|
|
|
|
int offset = (hdr->hdrlen + 1) << 3;
|
|
|
|
|
|
|
|
skb_postpull_rcsum(skb, skb_network_header(skb),
|
|
|
|
skb_network_header_len(skb));
|
|
|
|
|
|
|
|
if (!pskb_pull(skb, offset)) {
|
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
skb_postpull_rcsum(skb, skb_transport_header(skb),
|
|
|
|
offset);
|
|
|
|
|
|
|
|
skb_reset_network_header(skb);
|
|
|
|
skb_reset_transport_header(skb);
|
|
|
|
skb->encapsulation = 0;
|
|
|
|
|
|
|
|
__skb_tunnel_rx(skb, skb->dev, net);
|
|
|
|
|
|
|
|
netif_rx(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
opt->srcrt = skb_network_header_len(skb);
|
|
|
|
opt->lastopt = opt->srcrt;
|
|
|
|
skb->transport_header += (hdr->hdrlen + 1) << 3;
|
|
|
|
opt->nhoff = (&hdr->nexthdr) - skb_network_header(skb);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hdr->segments_left >= (hdr->hdrlen >> 1)) {
|
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_INHDRERRORS);
|
|
|
|
icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
|
|
|
|
((&hdr->segments_left) -
|
|
|
|
skb_network_header(skb)));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skb_cloned(skb)) {
|
|
|
|
if (pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
|
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_OUTDISCARDS);
|
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hdr = (struct ipv6_sr_hdr *)skb_transport_header(skb);
|
|
|
|
|
|
|
|
hdr->segments_left--;
|
|
|
|
addr = hdr->segments + hdr->segments_left;
|
|
|
|
|
|
|
|
skb_push(skb, sizeof(struct ipv6hdr));
|
|
|
|
|
|
|
|
if (skb->ip_summed == CHECKSUM_COMPLETE)
|
|
|
|
seg6_update_csum(skb);
|
|
|
|
|
|
|
|
ipv6_hdr(skb)->daddr = *addr;
|
|
|
|
|
|
|
|
skb_dst_drop(skb);
|
|
|
|
|
|
|
|
ip6_route_input(skb);
|
|
|
|
|
|
|
|
if (skb_dst(skb)->error) {
|
|
|
|
dst_input(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skb_dst(skb)->dev->flags & IFF_LOOPBACK) {
|
|
|
|
if (ipv6_hdr(skb)->hop_limit <= 1) {
|
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_INHDRERRORS);
|
|
|
|
icmpv6_send(skb, ICMPV6_TIME_EXCEED,
|
|
|
|
ICMPV6_EXC_HOPLIMIT, 0);
|
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ipv6_hdr(skb)->hop_limit--;
|
|
|
|
|
2017-02-02 10:29:38 +00:00
|
|
|
skb_pull(skb, sizeof(struct ipv6hdr));
|
|
|
|
goto looped_back;
|
2016-11-08 13:57:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dst_input(skb);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/********************************
|
|
|
|
Routing header.
|
|
|
|
********************************/
|
|
|
|
|
2010-06-14 04:39:27 +00:00
|
|
|
/* called with rcu_read_lock() */
|
2007-10-15 19:50:28 +00:00
|
|
|
static int ipv6_rthdr_rcv(struct sk_buff *skb)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct inet6_skb_parm *opt = IP6CB(skb);
|
2006-08-24 02:16:22 +00:00
|
|
|
struct in6_addr *addr = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct in6_addr daddr;
|
2007-04-24 21:58:30 +00:00
|
|
|
struct inet6_dev *idev;
|
2005-04-16 22:20:36 +00:00
|
|
|
int n, i;
|
|
|
|
struct ipv6_rt_hdr *hdr;
|
|
|
|
struct rt0_hdr *rthdr;
|
2008-10-08 18:09:27 +00:00
|
|
|
struct net *net = dev_net(skb->dev);
|
|
|
|
int accept_source_route = net->ipv6.devconf_all->accept_source_route;
|
2007-04-24 21:58:30 +00:00
|
|
|
|
2010-06-14 04:39:27 +00:00
|
|
|
idev = __in6_dev_get(skb->dev);
|
|
|
|
if (idev && accept_source_route > idev->cnf.accept_source_route)
|
|
|
|
accept_source_route = idev->cnf.accept_source_route;
|
2007-04-24 21:58:30 +00:00
|
|
|
|
2007-04-26 00:55:53 +00:00
|
|
|
if (!pskb_may_pull(skb, skb_transport_offset(skb) + 8) ||
|
|
|
|
!pskb_may_pull(skb, (skb_transport_offset(skb) +
|
2007-04-26 01:04:18 +00:00
|
|
|
((skb_transport_header(skb)[1] + 1) << 3)))) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_INHDRERRORS);
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-04-26 01:04:18 +00:00
|
|
|
hdr = (struct ipv6_rt_hdr *)skb_transport_header(skb);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-04-26 00:54:47 +00:00
|
|
|
if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr) ||
|
2005-04-16 22:20:36 +00:00
|
|
|
skb->pkt_type != PACKET_HOST) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_INADDRERRORS);
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-11-08 13:57:39 +00:00
|
|
|
/* segment routing */
|
|
|
|
if (hdr->type == IPV6_SRCRT_TYPE_4)
|
|
|
|
return ipv6_srh_rcv(skb);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
looped_back:
|
|
|
|
if (hdr->segments_left == 0) {
|
2006-08-24 02:16:22 +00:00
|
|
|
switch (hdr->type) {
|
2012-10-29 16:23:10 +00:00
|
|
|
#if IS_ENABLED(CONFIG_IPV6_MIP6)
|
2006-08-24 02:16:22 +00:00
|
|
|
case IPV6_SRCRT_TYPE_2:
|
|
|
|
/* Silently discard type 2 header unless it was
|
|
|
|
* processed by own
|
|
|
|
*/
|
|
|
|
if (!addr) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_INADDRERRORS);
|
2006-08-24 02:16:22 +00:00
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-03-16 20:26:39 +00:00
|
|
|
opt->lastopt = opt->srcrt = skb_network_header_len(skb);
|
2007-04-11 04:21:55 +00:00
|
|
|
skb->transport_header += (hdr->hdrlen + 1) << 3;
|
2005-04-16 22:20:36 +00:00
|
|
|
opt->dst0 = opt->dst1;
|
|
|
|
opt->dst1 = 0;
|
2007-04-11 03:50:43 +00:00
|
|
|
opt->nhoff = (&hdr->nexthdr) - skb_network_header(skb);
|
2005-04-16 22:20:36 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-08-24 02:16:22 +00:00
|
|
|
switch (hdr->type) {
|
2012-10-29 16:23:10 +00:00
|
|
|
#if IS_ENABLED(CONFIG_IPV6_MIP6)
|
2006-08-24 02:16:22 +00:00
|
|
|
case IPV6_SRCRT_TYPE_2:
|
2007-07-11 05:47:58 +00:00
|
|
|
if (accept_source_route < 0)
|
|
|
|
goto unknown_rh;
|
2006-08-24 02:16:22 +00:00
|
|
|
/* Silently discard invalid RTH type 2 */
|
|
|
|
if (hdr->hdrlen != 2 || hdr->segments_left != 1) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_INHDRERRORS);
|
2006-08-24 02:16:22 +00:00
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
2007-07-11 05:47:58 +00:00
|
|
|
default:
|
|
|
|
goto unknown_rh;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the routing header forwarding algorithm from
|
|
|
|
* RFC 2460, page 16.
|
|
|
|
*/
|
|
|
|
|
|
|
|
n = hdr->hdrlen >> 1;
|
|
|
|
|
|
|
|
if (hdr->segments_left > n) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_INHDRERRORS);
|
2007-04-11 03:50:43 +00:00
|
|
|
icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
|
|
|
|
((&hdr->segments_left) -
|
|
|
|
skb_network_header(skb)));
|
2005-04-16 22:20:36 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We are about to mangle packet header. Be careful!
|
|
|
|
Do not damage packets queued somewhere.
|
|
|
|
*/
|
|
|
|
if (skb_cloned(skb)) {
|
|
|
|
/* the copy is a forwarded packet */
|
2007-10-15 08:29:10 +00:00
|
|
|
if (pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_OUTDISCARDS);
|
2006-11-04 11:11:37 +00:00
|
|
|
kfree_skb(skb);
|
2005-04-16 22:20:36 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2007-10-15 08:29:10 +00:00
|
|
|
hdr = (struct ipv6_rt_hdr *)skb_transport_header(skb);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-08-29 23:44:56 +00:00
|
|
|
if (skb->ip_summed == CHECKSUM_COMPLETE)
|
2005-04-16 22:20:36 +00:00
|
|
|
skb->ip_summed = CHECKSUM_NONE;
|
|
|
|
|
|
|
|
i = n - --hdr->segments_left;
|
|
|
|
|
|
|
|
rthdr = (struct rt0_hdr *) hdr;
|
|
|
|
addr = rthdr->addr;
|
|
|
|
addr += i - 1;
|
|
|
|
|
2006-08-24 02:16:22 +00:00
|
|
|
switch (hdr->type) {
|
2012-10-29 16:23:10 +00:00
|
|
|
#if IS_ENABLED(CONFIG_IPV6_MIP6)
|
2006-08-24 02:16:22 +00:00
|
|
|
case IPV6_SRCRT_TYPE_2:
|
|
|
|
if (xfrm6_input_addr(skb, (xfrm_address_t *)addr,
|
2007-04-26 00:54:47 +00:00
|
|
|
(xfrm_address_t *)&ipv6_hdr(skb)->saddr,
|
2006-08-24 02:16:22 +00:00
|
|
|
IPPROTO_ROUTING) < 0) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_INADDRERRORS);
|
2006-08-24 02:16:22 +00:00
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-06-02 05:19:30 +00:00
|
|
|
if (!ipv6_chk_home_addr(dev_net(skb_dst(skb)->dev), addr)) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_INADDRERRORS);
|
2006-08-24 02:16:22 +00:00
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ipv6_addr_is_multicast(addr)) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_INADDRERRORS);
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-11-21 03:39:03 +00:00
|
|
|
daddr = *addr;
|
|
|
|
*addr = ipv6_hdr(skb)->daddr;
|
|
|
|
ipv6_hdr(skb)->daddr = daddr;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-06-02 05:19:30 +00:00
|
|
|
skb_dst_drop(skb);
|
2005-04-16 22:20:36 +00:00
|
|
|
ip6_route_input(skb);
|
2009-06-02 05:19:30 +00:00
|
|
|
if (skb_dst(skb)->error) {
|
2007-04-11 03:50:43 +00:00
|
|
|
skb_push(skb, skb->data - skb_network_header(skb));
|
2005-04-16 22:20:36 +00:00
|
|
|
dst_input(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-06-02 05:19:30 +00:00
|
|
|
if (skb_dst(skb)->dev->flags&IFF_LOOPBACK) {
|
2007-04-26 00:54:47 +00:00
|
|
|
if (ipv6_hdr(skb)->hop_limit <= 1) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
|
|
|
|
IPSTATS_MIB_INHDRERRORS);
|
2005-04-16 22:20:36 +00:00
|
|
|
icmpv6_send(skb, ICMPV6_TIME_EXCEED, ICMPV6_EXC_HOPLIMIT,
|
2010-02-18 08:25:24 +00:00
|
|
|
0);
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
2007-04-26 00:54:47 +00:00
|
|
|
ipv6_hdr(skb)->hop_limit--;
|
2005-04-16 22:20:36 +00:00
|
|
|
goto looped_back;
|
|
|
|
}
|
|
|
|
|
2007-04-11 03:50:43 +00:00
|
|
|
skb_push(skb, skb->data - skb_network_header(skb));
|
2005-04-16 22:20:36 +00:00
|
|
|
dst_input(skb);
|
|
|
|
return -1;
|
2007-07-11 05:47:58 +00:00
|
|
|
|
|
|
|
unknown_rh:
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_INHDRERRORS);
|
2007-07-11 05:47:58 +00:00
|
|
|
icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
|
|
|
|
(&hdr->type) - skb_network_header(skb));
|
|
|
|
return -1;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-09-14 12:22:28 +00:00
|
|
|
static const struct inet6_protocol rthdr_protocol = {
|
2005-04-16 22:20:36 +00:00
|
|
|
.handler = ipv6_rthdr_rcv,
|
2012-11-15 08:49:19 +00:00
|
|
|
.flags = INET6_PROTO_NOPOLICY,
|
2012-11-15 08:49:13 +00:00
|
|
|
};
|
|
|
|
|
2009-09-14 12:22:28 +00:00
|
|
|
static const struct inet6_protocol destopt_protocol = {
|
2007-12-11 10:23:54 +00:00
|
|
|
.handler = ipv6_destopt_rcv,
|
2012-11-15 08:49:19 +00:00
|
|
|
.flags = INET6_PROTO_NOPOLICY,
|
2012-11-15 08:49:13 +00:00
|
|
|
};
|
|
|
|
|
2009-09-14 12:22:28 +00:00
|
|
|
static const struct inet6_protocol nodata_protocol = {
|
2007-12-11 10:23:54 +00:00
|
|
|
.handler = dst_discard,
|
|
|
|
.flags = INET6_PROTO_NOPOLICY,
|
|
|
|
};
|
|
|
|
|
|
|
|
int __init ipv6_exthdrs_init(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-12-11 10:23:54 +00:00
|
|
|
int ret;
|
|
|
|
|
2012-11-15 08:49:15 +00:00
|
|
|
ret = inet6_add_protocol(&rthdr_protocol, IPPROTO_ROUTING);
|
|
|
|
if (ret)
|
2012-11-15 08:49:22 +00:00
|
|
|
goto out;
|
2012-11-15 08:49:15 +00:00
|
|
|
|
2007-12-11 10:23:54 +00:00
|
|
|
ret = inet6_add_protocol(&destopt_protocol, IPPROTO_DSTOPTS);
|
|
|
|
if (ret)
|
|
|
|
goto out_rthdr;
|
|
|
|
|
|
|
|
ret = inet6_add_protocol(&nodata_protocol, IPPROTO_NONE);
|
|
|
|
if (ret)
|
|
|
|
goto out_destopt;
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
out_destopt:
|
|
|
|
inet6_del_protocol(&destopt_protocol, IPPROTO_DSTOPTS);
|
2012-11-15 08:49:15 +00:00
|
|
|
out_rthdr:
|
|
|
|
inet6_del_protocol(&rthdr_protocol, IPPROTO_ROUTING);
|
2007-12-11 10:23:54 +00:00
|
|
|
goto out;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2007-12-11 10:23:54 +00:00
|
|
|
void ipv6_exthdrs_exit(void)
|
|
|
|
{
|
|
|
|
inet6_del_protocol(&nodata_protocol, IPPROTO_NONE);
|
|
|
|
inet6_del_protocol(&destopt_protocol, IPPROTO_DSTOPTS);
|
|
|
|
inet6_del_protocol(&rthdr_protocol, IPPROTO_ROUTING);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**********************************
|
|
|
|
Hop-by-hop options.
|
|
|
|
**********************************/
|
|
|
|
|
2007-05-09 21:01:59 +00:00
|
|
|
/*
|
2009-06-02 05:19:30 +00:00
|
|
|
* Note: we cannot rely on skb_dst(skb) before we assign it in ip6_route_input().
|
2007-05-09 21:01:59 +00:00
|
|
|
*/
|
|
|
|
static inline struct inet6_dev *ipv6_skb_idev(struct sk_buff *skb)
|
|
|
|
{
|
2009-06-02 05:19:30 +00:00
|
|
|
return skb_dst(skb) ? ip6_dst_idev(skb_dst(skb)) : __in6_dev_get(skb->dev);
|
2007-05-09 21:01:59 +00:00
|
|
|
}
|
|
|
|
|
2010-01-14 01:27:37 +00:00
|
|
|
static inline struct net *ipv6_skb_net(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
return skb_dst(skb) ? dev_net(skb_dst(skb)->dev) : dev_net(skb->dev);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Router Alert as of RFC 2711 */
|
|
|
|
|
2012-05-18 18:57:34 +00:00
|
|
|
static bool ipv6_hop_ra(struct sk_buff *skb, int optoff)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-04-11 03:50:43 +00:00
|
|
|
const unsigned char *nh = skb_network_header(skb);
|
2006-08-24 02:19:50 +00:00
|
|
|
|
2007-04-11 03:50:43 +00:00
|
|
|
if (nh[optoff + 1] == 2) {
|
2013-01-13 05:02:45 +00:00
|
|
|
IP6CB(skb)->flags |= IP6SKB_ROUTERALERT;
|
|
|
|
memcpy(&IP6CB(skb)->ra, nh + optoff + 2, sizeof(IP6CB(skb)->ra));
|
2012-05-18 18:57:34 +00:00
|
|
|
return true;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2014-11-11 18:59:17 +00:00
|
|
|
net_dbg_ratelimited("ipv6_hop_ra: wrong RA length %d\n",
|
|
|
|
nh[optoff + 1]);
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree_skb(skb);
|
2012-05-18 18:57:34 +00:00
|
|
|
return false;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Jumbo payload */
|
|
|
|
|
2012-05-18 18:57:34 +00:00
|
|
|
static bool ipv6_hop_jumbo(struct sk_buff *skb, int optoff)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-04-11 03:50:43 +00:00
|
|
|
const unsigned char *nh = skb_network_header(skb);
|
2010-01-14 01:27:37 +00:00
|
|
|
struct net *net = ipv6_skb_net(skb);
|
2005-04-16 22:20:36 +00:00
|
|
|
u32 pkt_len;
|
|
|
|
|
2007-04-11 03:50:43 +00:00
|
|
|
if (nh[optoff + 1] != 4 || (optoff & 3) != 2) {
|
2014-11-11 18:59:17 +00:00
|
|
|
net_dbg_ratelimited("ipv6_hop_jumbo: wrong jumbo opt length/alignment %d\n",
|
|
|
|
nh[optoff+1]);
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ipv6_skb_idev(skb),
|
|
|
|
IPSTATS_MIB_INHDRERRORS);
|
2005-04-16 22:20:36 +00:00
|
|
|
goto drop;
|
|
|
|
}
|
|
|
|
|
2007-04-11 03:50:43 +00:00
|
|
|
pkt_len = ntohl(*(__be32 *)(nh + optoff + 2));
|
2005-04-16 22:20:36 +00:00
|
|
|
if (pkt_len <= IPV6_MAXPLEN) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ipv6_skb_idev(skb),
|
|
|
|
IPSTATS_MIB_INHDRERRORS);
|
2005-04-16 22:20:36 +00:00
|
|
|
icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, optoff+2);
|
2012-05-18 18:57:34 +00:00
|
|
|
return false;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2007-04-26 00:54:47 +00:00
|
|
|
if (ipv6_hdr(skb)->payload_len) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ipv6_skb_idev(skb),
|
|
|
|
IPSTATS_MIB_INHDRERRORS);
|
2005-04-16 22:20:36 +00:00
|
|
|
icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, optoff);
|
2012-05-18 18:57:34 +00:00
|
|
|
return false;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pkt_len > skb->len - sizeof(struct ipv6hdr)) {
|
2016-04-27 23:44:40 +00:00
|
|
|
__IP6_INC_STATS(net, ipv6_skb_idev(skb),
|
|
|
|
IPSTATS_MIB_INTRUNCATEDPKTS);
|
2005-04-16 22:20:36 +00:00
|
|
|
goto drop;
|
|
|
|
}
|
2005-09-08 19:57:43 +00:00
|
|
|
|
|
|
|
if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
|
|
|
|
goto drop;
|
|
|
|
|
2017-07-31 14:52:36 +00:00
|
|
|
IP6CB(skb)->flags |= IP6SKB_JUMBOGRAM;
|
2012-05-18 18:57:34 +00:00
|
|
|
return true;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
drop:
|
|
|
|
kfree_skb(skb);
|
2012-05-18 18:57:34 +00:00
|
|
|
return false;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2016-06-27 19:06:17 +00:00
|
|
|
/* CALIPSO RFC 5570 */
|
|
|
|
|
|
|
|
static bool ipv6_hop_calipso(struct sk_buff *skb, int optoff)
|
|
|
|
{
|
|
|
|
const unsigned char *nh = skb_network_header(skb);
|
|
|
|
|
|
|
|
if (nh[optoff + 1] < 8)
|
|
|
|
goto drop;
|
|
|
|
|
|
|
|
if (nh[optoff + 6] * 4 + 8 > nh[optoff + 1])
|
|
|
|
goto drop;
|
|
|
|
|
|
|
|
if (!calipso_validate(skb, nh + optoff))
|
|
|
|
goto drop;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
drop:
|
|
|
|
kfree_skb(skb);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-05-18 18:57:34 +00:00
|
|
|
static const struct tlvtype_proc tlvprochopopt_lst[] = {
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
.type = IPV6_TLV_ROUTERALERT,
|
|
|
|
.func = ipv6_hop_ra,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.type = IPV6_TLV_JUMBO,
|
|
|
|
.func = ipv6_hop_jumbo,
|
|
|
|
},
|
2016-06-27 19:06:17 +00:00
|
|
|
{
|
|
|
|
.type = IPV6_TLV_CALIPSO,
|
|
|
|
.func = ipv6_hop_calipso,
|
|
|
|
},
|
2005-04-16 22:20:36 +00:00
|
|
|
{ -1, }
|
|
|
|
};
|
|
|
|
|
2007-10-15 19:50:28 +00:00
|
|
|
int ipv6_parse_hopopts(struct sk_buff *skb)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-01-07 07:02:34 +00:00
|
|
|
struct inet6_skb_parm *opt = IP6CB(skb);
|
2017-10-30 21:16:00 +00:00
|
|
|
struct net *net = dev_net(skb->dev);
|
|
|
|
int extlen;
|
2006-01-07 07:02:34 +00:00
|
|
|
|
2006-04-18 21:46:26 +00:00
|
|
|
/*
|
2007-04-11 03:50:43 +00:00
|
|
|
* skb_network_header(skb) is equal to skb->data, and
|
2007-03-16 20:26:39 +00:00
|
|
|
* skb_network_header_len(skb) is always equal to
|
2006-04-18 21:46:26 +00:00
|
|
|
* sizeof(struct ipv6hdr) by definition of
|
|
|
|
* hop-by-hop options.
|
|
|
|
*/
|
|
|
|
if (!pskb_may_pull(skb, sizeof(struct ipv6hdr) + 8) ||
|
2007-04-26 01:04:18 +00:00
|
|
|
!pskb_may_pull(skb, (sizeof(struct ipv6hdr) +
|
|
|
|
((skb_transport_header(skb)[1] + 1) << 3)))) {
|
2017-10-30 21:16:00 +00:00
|
|
|
fail_and_free:
|
2006-04-18 21:46:26 +00:00
|
|
|
kfree_skb(skb);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-10-30 21:16:00 +00:00
|
|
|
extlen = (skb_transport_header(skb)[1] + 1) << 3;
|
|
|
|
if (extlen > net->ipv6.sysctl.max_hbh_opts_len)
|
|
|
|
goto fail_and_free;
|
|
|
|
|
2015-07-08 21:32:12 +00:00
|
|
|
opt->flags |= IP6SKB_HOPBYHOP;
|
2017-10-30 21:16:00 +00:00
|
|
|
if (ip6_parse_tlv(tlvprochopopt_lst, skb,
|
|
|
|
init_net.ipv6.sysctl.max_hbh_opts_cnt)) {
|
|
|
|
skb->transport_header += extlen;
|
2006-08-31 22:18:49 +00:00
|
|
|
opt = IP6CB(skb);
|
2006-01-07 07:02:34 +00:00
|
|
|
opt->nhoff = sizeof(struct ipv6hdr);
|
2006-04-18 21:48:45 +00:00
|
|
|
return 1;
|
2006-01-07 07:02:34 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Creating outbound headers.
|
|
|
|
*
|
|
|
|
* "build" functions work when skb is filled from head to tail (datagram)
|
|
|
|
* "push" functions work when headers are added from tail to head (tcp)
|
|
|
|
*
|
|
|
|
* In both cases we assume, that caller reserved enough room
|
|
|
|
* for headers.
|
|
|
|
*/
|
|
|
|
|
2016-11-08 13:59:21 +00:00
|
|
|
static void ipv6_push_rthdr0(struct sk_buff *skb, u8 *proto,
|
|
|
|
struct ipv6_rt_hdr *opt,
|
|
|
|
struct in6_addr **addr_p, struct in6_addr *saddr)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct rt0_hdr *phdr, *ihdr;
|
|
|
|
int hops;
|
|
|
|
|
|
|
|
ihdr = (struct rt0_hdr *) opt;
|
2007-02-09 14:24:49 +00:00
|
|
|
|
networking: make skb_push & __skb_push return void pointers
It seems like a historic accident that these return unsigned char *,
and in many places that means casts are required, more often than not.
Make these functions return void * and remove all the casts across
the tree, adding a (u8 *) cast only where the unsigned char pointer
was used directly, all done with the following spatch:
@@
expression SKB, LEN;
typedef u8;
identifier fn = { skb_push, __skb_push, skb_push_rcsum };
@@
- *(fn(SKB, LEN))
+ *(u8 *)fn(SKB, LEN)
@@
expression E, SKB, LEN;
identifier fn = { skb_push, __skb_push, skb_push_rcsum };
type T;
@@
- E = ((T *)(fn(SKB, LEN)))
+ E = fn(SKB, LEN)
@@
expression SKB, LEN;
identifier fn = { skb_push, __skb_push, skb_push_rcsum };
@@
- fn(SKB, LEN)[0]
+ *(u8 *)fn(SKB, LEN)
Note that the last part there converts from push(...)[0] to the
more idiomatic *(u8 *)push(...).
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-06-16 12:29:23 +00:00
|
|
|
phdr = skb_push(skb, (ihdr->rt_hdr.hdrlen + 1) << 3);
|
2005-04-16 22:20:36 +00:00
|
|
|
memcpy(phdr, ihdr, sizeof(struct rt0_hdr));
|
|
|
|
|
|
|
|
hops = ihdr->rt_hdr.hdrlen >> 1;
|
|
|
|
|
|
|
|
if (hops > 1)
|
|
|
|
memcpy(phdr->addr, ihdr->addr + 1,
|
|
|
|
(hops - 1) * sizeof(struct in6_addr));
|
|
|
|
|
2011-11-21 03:39:03 +00:00
|
|
|
phdr->addr[hops - 1] = **addr_p;
|
2005-04-16 22:20:36 +00:00
|
|
|
*addr_p = ihdr->addr;
|
|
|
|
|
|
|
|
phdr->rt_hdr.nexthdr = *proto;
|
|
|
|
*proto = NEXTHDR_ROUTING;
|
|
|
|
}
|
|
|
|
|
2016-11-08 13:59:21 +00:00
|
|
|
static void ipv6_push_rthdr4(struct sk_buff *skb, u8 *proto,
|
|
|
|
struct ipv6_rt_hdr *opt,
|
|
|
|
struct in6_addr **addr_p, struct in6_addr *saddr)
|
|
|
|
{
|
|
|
|
struct ipv6_sr_hdr *sr_phdr, *sr_ihdr;
|
|
|
|
int plen, hops;
|
|
|
|
|
|
|
|
sr_ihdr = (struct ipv6_sr_hdr *)opt;
|
|
|
|
plen = (sr_ihdr->hdrlen + 1) << 3;
|
|
|
|
|
networking: make skb_push & __skb_push return void pointers
It seems like a historic accident that these return unsigned char *,
and in many places that means casts are required, more often than not.
Make these functions return void * and remove all the casts across
the tree, adding a (u8 *) cast only where the unsigned char pointer
was used directly, all done with the following spatch:
@@
expression SKB, LEN;
typedef u8;
identifier fn = { skb_push, __skb_push, skb_push_rcsum };
@@
- *(fn(SKB, LEN))
+ *(u8 *)fn(SKB, LEN)
@@
expression E, SKB, LEN;
identifier fn = { skb_push, __skb_push, skb_push_rcsum };
type T;
@@
- E = ((T *)(fn(SKB, LEN)))
+ E = fn(SKB, LEN)
@@
expression SKB, LEN;
identifier fn = { skb_push, __skb_push, skb_push_rcsum };
@@
- fn(SKB, LEN)[0]
+ *(u8 *)fn(SKB, LEN)
Note that the last part there converts from push(...)[0] to the
more idiomatic *(u8 *)push(...).
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-06-16 12:29:23 +00:00
|
|
|
sr_phdr = skb_push(skb, plen);
|
2016-11-08 13:59:21 +00:00
|
|
|
memcpy(sr_phdr, sr_ihdr, sizeof(struct ipv6_sr_hdr));
|
|
|
|
|
|
|
|
hops = sr_ihdr->first_segment + 1;
|
|
|
|
memcpy(sr_phdr->segments + 1, sr_ihdr->segments + 1,
|
|
|
|
(hops - 1) * sizeof(struct in6_addr));
|
|
|
|
|
|
|
|
sr_phdr->segments[0] = **addr_p;
|
2017-08-05 10:38:24 +00:00
|
|
|
*addr_p = &sr_ihdr->segments[sr_ihdr->segments_left];
|
2016-11-08 13:59:21 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_IPV6_SEG6_HMAC
|
|
|
|
if (sr_has_hmac(sr_phdr)) {
|
|
|
|
struct net *net = NULL;
|
|
|
|
|
|
|
|
if (skb->dev)
|
|
|
|
net = dev_net(skb->dev);
|
|
|
|
else if (skb->sk)
|
|
|
|
net = sock_net(skb->sk);
|
|
|
|
|
|
|
|
WARN_ON(!net);
|
|
|
|
|
|
|
|
if (net)
|
|
|
|
seg6_push_hmac(net, saddr, sr_phdr);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
sr_phdr->nexthdr = *proto;
|
|
|
|
*proto = NEXTHDR_ROUTING;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ipv6_push_rthdr(struct sk_buff *skb, u8 *proto,
|
|
|
|
struct ipv6_rt_hdr *opt,
|
|
|
|
struct in6_addr **addr_p, struct in6_addr *saddr)
|
|
|
|
{
|
|
|
|
switch (opt->type) {
|
|
|
|
case IPV6_SRCRT_TYPE_0:
|
2017-04-25 13:56:50 +00:00
|
|
|
case IPV6_SRCRT_STRICT:
|
|
|
|
case IPV6_SRCRT_TYPE_2:
|
2016-11-08 13:59:21 +00:00
|
|
|
ipv6_push_rthdr0(skb, proto, opt, addr_p, saddr);
|
|
|
|
break;
|
|
|
|
case IPV6_SRCRT_TYPE_4:
|
|
|
|
ipv6_push_rthdr4(skb, proto, opt, addr_p, saddr);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static void ipv6_push_exthdr(struct sk_buff *skb, u8 *proto, u8 type, struct ipv6_opt_hdr *opt)
|
|
|
|
{
|
networking: make skb_push & __skb_push return void pointers
It seems like a historic accident that these return unsigned char *,
and in many places that means casts are required, more often than not.
Make these functions return void * and remove all the casts across
the tree, adding a (u8 *) cast only where the unsigned char pointer
was used directly, all done with the following spatch:
@@
expression SKB, LEN;
typedef u8;
identifier fn = { skb_push, __skb_push, skb_push_rcsum };
@@
- *(fn(SKB, LEN))
+ *(u8 *)fn(SKB, LEN)
@@
expression E, SKB, LEN;
identifier fn = { skb_push, __skb_push, skb_push_rcsum };
type T;
@@
- E = ((T *)(fn(SKB, LEN)))
+ E = fn(SKB, LEN)
@@
expression SKB, LEN;
identifier fn = { skb_push, __skb_push, skb_push_rcsum };
@@
- fn(SKB, LEN)[0]
+ *(u8 *)fn(SKB, LEN)
Note that the last part there converts from push(...)[0] to the
more idiomatic *(u8 *)push(...).
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-06-16 12:29:23 +00:00
|
|
|
struct ipv6_opt_hdr *h = skb_push(skb, ipv6_optlen(opt));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
memcpy(h, opt, ipv6_optlen(opt));
|
|
|
|
h->nexthdr = *proto;
|
|
|
|
*proto = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ipv6_push_nfrag_opts(struct sk_buff *skb, struct ipv6_txoptions *opt,
|
|
|
|
u8 *proto,
|
2016-11-08 13:59:20 +00:00
|
|
|
struct in6_addr **daddr, struct in6_addr *saddr)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
if (opt->srcrt) {
|
2016-11-08 13:59:20 +00:00
|
|
|
ipv6_push_rthdr(skb, proto, opt->srcrt, daddr, saddr);
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
/*
|
|
|
|
* IPV6_RTHDRDSTOPTS is ignored
|
|
|
|
* unless IPV6_RTHDR is set (RFC3542).
|
|
|
|
*/
|
|
|
|
if (opt->dst0opt)
|
|
|
|
ipv6_push_exthdr(skb, proto, NEXTHDR_DEST, opt->dst0opt);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
if (opt->hopopt)
|
|
|
|
ipv6_push_exthdr(skb, proto, NEXTHDR_HOP, opt->hopopt);
|
|
|
|
}
|
2007-02-22 13:05:40 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
void ipv6_push_frag_opts(struct sk_buff *skb, struct ipv6_txoptions *opt, u8 *proto)
|
|
|
|
{
|
|
|
|
if (opt->dst1opt)
|
|
|
|
ipv6_push_exthdr(skb, proto, NEXTHDR_DEST, opt->dst1opt);
|
|
|
|
}
|
2017-05-01 19:10:20 +00:00
|
|
|
EXPORT_SYMBOL(ipv6_push_frag_opts);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
struct ipv6_txoptions *
|
|
|
|
ipv6_dup_options(struct sock *sk, struct ipv6_txoptions *opt)
|
|
|
|
{
|
|
|
|
struct ipv6_txoptions *opt2;
|
|
|
|
|
|
|
|
opt2 = sock_kmalloc(sk, opt->tot_len, GFP_ATOMIC);
|
|
|
|
if (opt2) {
|
2012-04-01 07:49:04 +00:00
|
|
|
long dif = (char *)opt2 - (char *)opt;
|
2005-04-16 22:20:36 +00:00
|
|
|
memcpy(opt2, opt, opt->tot_len);
|
|
|
|
if (opt2->hopopt)
|
2012-04-01 07:49:04 +00:00
|
|
|
*((char **)&opt2->hopopt) += dif;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (opt2->dst0opt)
|
2012-04-01 07:49:04 +00:00
|
|
|
*((char **)&opt2->dst0opt) += dif;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (opt2->dst1opt)
|
2012-04-01 07:49:04 +00:00
|
|
|
*((char **)&opt2->dst1opt) += dif;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (opt2->srcrt)
|
2012-04-01 07:49:04 +00:00
|
|
|
*((char **)&opt2->srcrt) += dif;
|
2017-07-04 06:34:54 +00:00
|
|
|
refcount_set(&opt2->refcnt, 1);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
return opt2;
|
|
|
|
}
|
2005-12-14 07:23:20 +00:00
|
|
|
EXPORT_SYMBOL_GPL(ipv6_dup_options);
|
|
|
|
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
static int ipv6_renew_option(void *ohdr,
|
|
|
|
struct ipv6_opt_hdr __user *newopt, int newoptlen,
|
|
|
|
int inherit,
|
|
|
|
struct ipv6_opt_hdr **hdr,
|
|
|
|
char **p)
|
|
|
|
{
|
|
|
|
if (inherit) {
|
|
|
|
if (ohdr) {
|
|
|
|
memcpy(*p, ohdr, ipv6_optlen((struct ipv6_opt_hdr *)ohdr));
|
|
|
|
*hdr = (struct ipv6_opt_hdr *)*p;
|
2012-06-03 17:41:40 +00:00
|
|
|
*p += CMSG_ALIGN(ipv6_optlen(*hdr));
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (newopt) {
|
|
|
|
if (copy_from_user(*p, newopt, newoptlen))
|
|
|
|
return -EFAULT;
|
|
|
|
*hdr = (struct ipv6_opt_hdr *)*p;
|
2012-06-03 17:41:40 +00:00
|
|
|
if (ipv6_optlen(*hdr) > newoptlen)
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
return -EINVAL;
|
|
|
|
*p += CMSG_ALIGN(newoptlen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-06-27 19:02:50 +00:00
|
|
|
/**
|
|
|
|
* ipv6_renew_options - replace a specific ext hdr with a new one.
|
|
|
|
*
|
|
|
|
* @sk: sock from which to allocate memory
|
|
|
|
* @opt: original options
|
|
|
|
* @newtype: option type to replace in @opt
|
|
|
|
* @newopt: new option of type @newtype to replace (user-mem)
|
|
|
|
* @newoptlen: length of @newopt
|
|
|
|
*
|
|
|
|
* Returns a new set of options which is a copy of @opt with the
|
|
|
|
* option type @newtype replaced with @newopt.
|
|
|
|
*
|
|
|
|
* @opt may be NULL, in which case a new set of options is returned
|
|
|
|
* containing just @newopt.
|
|
|
|
*
|
|
|
|
* @newopt may be NULL, in which case the specified option type is
|
|
|
|
* not copied into the new set of options.
|
|
|
|
*
|
|
|
|
* The new set of options is allocated from the socket option memory
|
|
|
|
* buffer of @sk.
|
|
|
|
*/
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
struct ipv6_txoptions *
|
|
|
|
ipv6_renew_options(struct sock *sk, struct ipv6_txoptions *opt,
|
|
|
|
int newtype,
|
|
|
|
struct ipv6_opt_hdr __user *newopt, int newoptlen)
|
|
|
|
{
|
|
|
|
int tot_len = 0;
|
|
|
|
char *p;
|
|
|
|
struct ipv6_txoptions *opt2;
|
|
|
|
int err;
|
|
|
|
|
2006-08-31 21:52:17 +00:00
|
|
|
if (opt) {
|
|
|
|
if (newtype != IPV6_HOPOPTS && opt->hopopt)
|
|
|
|
tot_len += CMSG_ALIGN(ipv6_optlen(opt->hopopt));
|
|
|
|
if (newtype != IPV6_RTHDRDSTOPTS && opt->dst0opt)
|
|
|
|
tot_len += CMSG_ALIGN(ipv6_optlen(opt->dst0opt));
|
|
|
|
if (newtype != IPV6_RTHDR && opt->srcrt)
|
|
|
|
tot_len += CMSG_ALIGN(ipv6_optlen(opt->srcrt));
|
|
|
|
if (newtype != IPV6_DSTOPTS && opt->dst1opt)
|
|
|
|
tot_len += CMSG_ALIGN(ipv6_optlen(opt->dst1opt));
|
|
|
|
}
|
|
|
|
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
if (newopt && newoptlen)
|
|
|
|
tot_len += CMSG_ALIGN(newoptlen);
|
|
|
|
|
|
|
|
if (!tot_len)
|
|
|
|
return NULL;
|
|
|
|
|
2005-11-20 03:18:17 +00:00
|
|
|
tot_len += sizeof(*opt2);
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
opt2 = sock_kmalloc(sk, tot_len, GFP_ATOMIC);
|
|
|
|
if (!opt2)
|
|
|
|
return ERR_PTR(-ENOBUFS);
|
|
|
|
|
|
|
|
memset(opt2, 0, tot_len);
|
2017-07-04 06:34:54 +00:00
|
|
|
refcount_set(&opt2->refcnt, 1);
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
opt2->tot_len = tot_len;
|
|
|
|
p = (char *)(opt2 + 1);
|
|
|
|
|
2006-08-31 21:52:17 +00:00
|
|
|
err = ipv6_renew_option(opt ? opt->hopopt : NULL, newopt, newoptlen,
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
newtype != IPV6_HOPOPTS,
|
|
|
|
&opt2->hopopt, &p);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
2006-08-31 21:52:17 +00:00
|
|
|
err = ipv6_renew_option(opt ? opt->dst0opt : NULL, newopt, newoptlen,
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
newtype != IPV6_RTHDRDSTOPTS,
|
|
|
|
&opt2->dst0opt, &p);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
2006-08-31 21:52:17 +00:00
|
|
|
err = ipv6_renew_option(opt ? opt->srcrt : NULL, newopt, newoptlen,
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
newtype != IPV6_RTHDR,
|
2006-08-31 21:52:17 +00:00
|
|
|
(struct ipv6_opt_hdr **)&opt2->srcrt, &p);
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
2006-08-31 21:52:17 +00:00
|
|
|
err = ipv6_renew_option(opt ? opt->dst1opt : NULL, newopt, newoptlen,
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
newtype != IPV6_DSTOPTS,
|
|
|
|
&opt2->dst1opt, &p);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
opt2->opt_nflen = (opt2->hopopt ? ipv6_optlen(opt2->hopopt) : 0) +
|
|
|
|
(opt2->dst0opt ? ipv6_optlen(opt2->dst0opt) : 0) +
|
|
|
|
(opt2->srcrt ? ipv6_optlen(opt2->srcrt) : 0);
|
|
|
|
opt2->opt_flen = (opt2->dst1opt ? ipv6_optlen(opt2->dst1opt) : 0);
|
|
|
|
|
|
|
|
return opt2;
|
|
|
|
out:
|
2005-11-20 03:18:17 +00:00
|
|
|
sock_kfree_s(sk, opt2, opt2->tot_len);
|
[IPV6]: Support several new sockopt / ancillary data in Advanced API (RFC3542).
Support several new socket options / ancillary data:
IPV6_RECVPKTINFO, IPV6_PKTINFO,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS,
IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS,
IPV6_RECVRTHDR, IPV6_RTHDR,
IPV6_RECVHOPOPTS, IPV6_HOPOPTS
Old semantics are preserved as IPV6_2292xxxx so that
we can maintain backward compatibility.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
2005-09-08 00:59:17 +00:00
|
|
|
return ERR_PTR(err);
|
|
|
|
}
|
|
|
|
|
2016-06-27 19:02:50 +00:00
|
|
|
/**
|
|
|
|
* ipv6_renew_options_kern - replace a specific ext hdr with a new one.
|
|
|
|
*
|
|
|
|
* @sk: sock from which to allocate memory
|
|
|
|
* @opt: original options
|
|
|
|
* @newtype: option type to replace in @opt
|
|
|
|
* @newopt: new option of type @newtype to replace (kernel-mem)
|
|
|
|
* @newoptlen: length of @newopt
|
|
|
|
*
|
|
|
|
* See ipv6_renew_options(). The difference is that @newopt is
|
|
|
|
* kernel memory, rather than user memory.
|
|
|
|
*/
|
|
|
|
struct ipv6_txoptions *
|
|
|
|
ipv6_renew_options_kern(struct sock *sk, struct ipv6_txoptions *opt,
|
|
|
|
int newtype, struct ipv6_opt_hdr *newopt,
|
|
|
|
int newoptlen)
|
|
|
|
{
|
|
|
|
struct ipv6_txoptions *ret_val;
|
|
|
|
const mm_segment_t old_fs = get_fs();
|
|
|
|
|
|
|
|
set_fs(KERNEL_DS);
|
|
|
|
ret_val = ipv6_renew_options(sk, opt, newtype,
|
|
|
|
(struct ipv6_opt_hdr __user *)newopt,
|
|
|
|
newoptlen);
|
|
|
|
set_fs(old_fs);
|
|
|
|
return ret_val;
|
|
|
|
}
|
|
|
|
|
2005-11-20 03:23:18 +00:00
|
|
|
struct ipv6_txoptions *ipv6_fixup_options(struct ipv6_txoptions *opt_space,
|
|
|
|
struct ipv6_txoptions *opt)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* ignore the dest before srcrt unless srcrt is being included.
|
|
|
|
* --yoshfuji
|
|
|
|
*/
|
|
|
|
if (opt && opt->dst0opt && !opt->srcrt) {
|
|
|
|
if (opt_space != opt) {
|
|
|
|
memcpy(opt_space, opt, sizeof(*opt_space));
|
|
|
|
opt = opt_space;
|
|
|
|
}
|
|
|
|
opt->opt_nflen -= ipv6_optlen(opt->dst0opt);
|
|
|
|
opt->dst0opt = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return opt;
|
|
|
|
}
|
2012-04-29 21:48:53 +00:00
|
|
|
EXPORT_SYMBOL_GPL(ipv6_fixup_options);
|
2005-11-20 03:23:18 +00:00
|
|
|
|
2010-06-01 21:35:01 +00:00
|
|
|
/**
|
|
|
|
* fl6_update_dst - update flowi destination address with info given
|
|
|
|
* by srcrt option, if any.
|
|
|
|
*
|
2011-03-12 21:22:43 +00:00
|
|
|
* @fl6: flowi6 for which daddr is to be updated
|
2010-06-01 21:35:01 +00:00
|
|
|
* @opt: struct ipv6_txoptions in which to look for srcrt opt
|
2011-03-12 21:22:43 +00:00
|
|
|
* @orig: copy of original daddr address if modified
|
2010-06-01 21:35:01 +00:00
|
|
|
*
|
|
|
|
* Returns NULL if no txoptions or no srcrt, otherwise returns orig
|
2011-03-12 21:22:43 +00:00
|
|
|
* and initial value of fl6->daddr set in orig
|
2010-06-01 21:35:01 +00:00
|
|
|
*/
|
2011-03-12 21:22:43 +00:00
|
|
|
struct in6_addr *fl6_update_dst(struct flowi6 *fl6,
|
2010-06-01 21:35:01 +00:00
|
|
|
const struct ipv6_txoptions *opt,
|
|
|
|
struct in6_addr *orig)
|
|
|
|
{
|
|
|
|
if (!opt || !opt->srcrt)
|
|
|
|
return NULL;
|
|
|
|
|
2011-11-21 03:39:03 +00:00
|
|
|
*orig = fl6->daddr;
|
2016-11-08 13:59:21 +00:00
|
|
|
|
|
|
|
switch (opt->srcrt->type) {
|
|
|
|
case IPV6_SRCRT_TYPE_0:
|
2017-04-25 13:56:50 +00:00
|
|
|
case IPV6_SRCRT_STRICT:
|
|
|
|
case IPV6_SRCRT_TYPE_2:
|
2016-11-08 13:59:21 +00:00
|
|
|
fl6->daddr = *((struct rt0_hdr *)opt->srcrt)->addr;
|
|
|
|
break;
|
|
|
|
case IPV6_SRCRT_TYPE_4:
|
|
|
|
{
|
|
|
|
struct ipv6_sr_hdr *srh = (struct ipv6_sr_hdr *)opt->srcrt;
|
|
|
|
|
2017-08-05 10:38:24 +00:00
|
|
|
fl6->daddr = srh->segments[srh->segments_left];
|
2016-11-08 13:59:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-06-01 21:35:01 +00:00
|
|
|
return orig;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(fl6_update_dst);
|