License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* INET An implementation of the TCP/IP protocol suite for the LINUX
|
|
|
|
* operating system. INET is implemented using the BSD Socket
|
|
|
|
* interface as the means of communication with the user level.
|
|
|
|
*
|
|
|
|
* The options processing module for ip.c
|
|
|
|
*
|
|
|
|
* Authors: A.N.Kuznetsov
|
2007-02-09 22:24:47 +08:00
|
|
|
*
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
|
2012-03-12 15:03:32 +08:00
|
|
|
#define pr_fmt(fmt) "IPv4: " fmt
|
|
|
|
|
2006-01-12 04:17:47 +08:00
|
|
|
#include <linux/capability.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/module.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/types.h>
|
2016-12-25 03:46:01 +08:00
|
|
|
#include <linux/uaccess.h>
|
2011-05-29 18:55:44 +08:00
|
|
|
#include <asm/unaligned.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/ip.h>
|
|
|
|
#include <linux/icmp.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/rtnetlink.h>
|
|
|
|
#include <net/sock.h>
|
|
|
|
#include <net/ip.h>
|
|
|
|
#include <net/icmp.h>
|
2005-12-27 12:43:12 +08:00
|
|
|
#include <net/route.h>
|
2006-08-04 07:46:20 +08:00
|
|
|
#include <net/cipso_ipv4.h>
|
2012-06-28 18:59:11 +08:00
|
|
|
#include <net/ip_fib.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-02-09 22:24:47 +08:00
|
|
|
/*
|
2005-04-17 06:20:36 +08:00
|
|
|
* Write options to IP header, record destination address to
|
|
|
|
* source route option, address of outgoing interface
|
|
|
|
* (we should already know it, so that this function is allowed be
|
|
|
|
* called only after routing decision) and timestamp,
|
|
|
|
* if we originate this datagram.
|
|
|
|
*
|
|
|
|
* daddr is real destination address, next hop is recorded in IP header.
|
|
|
|
* saddr is address of outgoing interface.
|
|
|
|
*/
|
|
|
|
|
2011-04-21 17:45:37 +08:00
|
|
|
void ip_options_build(struct sk_buff *skb, struct ip_options *opt,
|
2011-05-14 05:29:41 +08:00
|
|
|
__be32 daddr, struct rtable *rt, int is_frag)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2007-04-11 11:50:43 +08:00
|
|
|
unsigned char *iph = skb_network_header(skb);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
memcpy(&(IPCB(skb)->opt), opt, sizeof(struct ip_options));
|
|
|
|
memcpy(iph+sizeof(struct iphdr), opt->__data, opt->optlen);
|
|
|
|
opt = &(IPCB(skb)->opt);
|
|
|
|
|
|
|
|
if (opt->srr)
|
|
|
|
memcpy(iph+opt->srr+iph[opt->srr+1]-4, &daddr, 4);
|
|
|
|
|
|
|
|
if (!is_frag) {
|
|
|
|
if (opt->rr_needaddr)
|
2011-05-14 05:29:41 +08:00
|
|
|
ip_rt_get_source(iph+opt->rr+iph[opt->rr+2]-5, skb, rt);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (opt->ts_needaddr)
|
2011-05-14 05:29:41 +08:00
|
|
|
ip_rt_get_source(iph+opt->ts+iph[opt->ts+2]-9, skb, rt);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (opt->ts_needtime) {
|
2006-09-28 09:28:47 +08:00
|
|
|
__be32 midtime;
|
2016-02-27 16:32:15 +08:00
|
|
|
|
|
|
|
midtime = inet_current_timestamp();
|
2005-04-17 06:20:36 +08:00
|
|
|
memcpy(iph+opt->ts+iph[opt->ts+2]-5, &midtime, 4);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (opt->rr) {
|
|
|
|
memset(iph+opt->rr, IPOPT_NOP, iph[opt->rr+1]);
|
|
|
|
opt->rr = 0;
|
|
|
|
opt->rr_needaddr = 0;
|
|
|
|
}
|
|
|
|
if (opt->ts) {
|
|
|
|
memset(iph+opt->ts, IPOPT_NOP, iph[opt->ts+1]);
|
|
|
|
opt->ts = 0;
|
|
|
|
opt->ts_needaddr = opt->ts_needtime = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-09 22:24:47 +08:00
|
|
|
/*
|
2005-04-17 06:20:36 +08:00
|
|
|
* Provided (sopt, skb) points to received options,
|
|
|
|
* build in dopt compiled option set appropriate for answering.
|
|
|
|
* i.e. invert SRR option, copy anothers,
|
|
|
|
* and grab room in RR/TS options.
|
|
|
|
*
|
|
|
|
* NOTE: dopt cannot point to skb.
|
|
|
|
*/
|
|
|
|
|
2017-08-04 00:07:06 +08:00
|
|
|
int __ip_options_echo(struct net *net, struct ip_options *dopt,
|
|
|
|
struct sk_buff *skb, const struct ip_options *sopt)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
unsigned char *sptr, *dptr;
|
|
|
|
int soffset, doffset;
|
|
|
|
int optlen;
|
|
|
|
|
|
|
|
memset(dopt, 0, sizeof(struct ip_options));
|
|
|
|
|
2011-04-21 17:45:37 +08:00
|
|
|
if (sopt->optlen == 0)
|
2005-04-17 06:20:36 +08:00
|
|
|
return 0;
|
|
|
|
|
2007-04-11 11:50:43 +08:00
|
|
|
sptr = skb_network_header(skb);
|
2005-04-17 06:20:36 +08:00
|
|
|
dptr = dopt->__data;
|
|
|
|
|
|
|
|
if (sopt->rr) {
|
|
|
|
optlen = sptr[sopt->rr+1];
|
|
|
|
soffset = sptr[sopt->rr+2];
|
|
|
|
dopt->rr = dopt->optlen + sizeof(struct iphdr);
|
|
|
|
memcpy(dptr, sptr+sopt->rr, optlen);
|
|
|
|
if (sopt->rr_needaddr && soffset <= optlen) {
|
|
|
|
if (soffset + 3 > optlen)
|
|
|
|
return -EINVAL;
|
|
|
|
dptr[2] = soffset + 4;
|
|
|
|
dopt->rr_needaddr = 1;
|
|
|
|
}
|
|
|
|
dptr += optlen;
|
|
|
|
dopt->optlen += optlen;
|
|
|
|
}
|
|
|
|
if (sopt->ts) {
|
|
|
|
optlen = sptr[sopt->ts+1];
|
|
|
|
soffset = sptr[sopt->ts+2];
|
|
|
|
dopt->ts = dopt->optlen + sizeof(struct iphdr);
|
|
|
|
memcpy(dptr, sptr+sopt->ts, optlen);
|
|
|
|
if (soffset <= optlen) {
|
|
|
|
if (sopt->ts_needaddr) {
|
|
|
|
if (soffset + 3 > optlen)
|
|
|
|
return -EINVAL;
|
|
|
|
dopt->ts_needaddr = 1;
|
|
|
|
soffset += 4;
|
|
|
|
}
|
|
|
|
if (sopt->ts_needtime) {
|
|
|
|
if (soffset + 3 > optlen)
|
|
|
|
return -EINVAL;
|
|
|
|
if ((dptr[3]&0xF) != IPOPT_TS_PRESPEC) {
|
|
|
|
dopt->ts_needtime = 1;
|
|
|
|
soffset += 4;
|
|
|
|
} else {
|
|
|
|
dopt->ts_needtime = 0;
|
|
|
|
|
2011-03-24 15:44:22 +08:00
|
|
|
if (soffset + 7 <= optlen) {
|
2006-09-27 13:17:51 +08:00
|
|
|
__be32 addr;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2011-03-24 15:44:22 +08:00
|
|
|
memcpy(&addr, dptr+soffset-1, 4);
|
2017-08-04 00:07:06 +08:00
|
|
|
if (inet_addr_type(net, addr) != RTN_UNICAST) {
|
2005-04-17 06:20:36 +08:00
|
|
|
dopt->ts_needtime = 1;
|
|
|
|
soffset += 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dptr[2] = soffset;
|
|
|
|
}
|
|
|
|
dptr += optlen;
|
|
|
|
dopt->optlen += optlen;
|
|
|
|
}
|
|
|
|
if (sopt->srr) {
|
2011-04-21 17:45:37 +08:00
|
|
|
unsigned char *start = sptr+sopt->srr;
|
2006-09-28 09:28:07 +08:00
|
|
|
__be32 faddr;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
optlen = start[1];
|
|
|
|
soffset = start[2];
|
|
|
|
doffset = 0;
|
|
|
|
if (soffset > optlen)
|
|
|
|
soffset = optlen + 1;
|
|
|
|
soffset -= 4;
|
|
|
|
if (soffset > 3) {
|
|
|
|
memcpy(&faddr, &start[soffset-1], 4);
|
2013-12-23 14:37:26 +08:00
|
|
|
for (soffset -= 4, doffset = 4; soffset > 3; soffset -= 4, doffset += 4)
|
2005-04-17 06:20:36 +08:00
|
|
|
memcpy(&dptr[doffset-1], &start[soffset-1], 4);
|
|
|
|
/*
|
|
|
|
* RFC1812 requires to fix illegal source routes.
|
|
|
|
*/
|
2007-04-21 13:47:35 +08:00
|
|
|
if (memcmp(&ip_hdr(skb)->saddr,
|
|
|
|
&start[soffset + 3], 4) == 0)
|
2005-04-17 06:20:36 +08:00
|
|
|
doffset -= 4;
|
|
|
|
}
|
|
|
|
if (doffset > 3) {
|
|
|
|
dopt->faddr = faddr;
|
|
|
|
dptr[0] = start[0];
|
|
|
|
dptr[1] = doffset+3;
|
|
|
|
dptr[2] = 4;
|
|
|
|
dptr += doffset+3;
|
|
|
|
dopt->srr = dopt->optlen + sizeof(struct iphdr);
|
|
|
|
dopt->optlen += doffset+3;
|
|
|
|
dopt->is_strictroute = sopt->is_strictroute;
|
|
|
|
}
|
|
|
|
}
|
2006-08-04 07:46:20 +08:00
|
|
|
if (sopt->cipso) {
|
|
|
|
optlen = sptr[sopt->cipso+1];
|
|
|
|
dopt->cipso = dopt->optlen+sizeof(struct iphdr);
|
|
|
|
memcpy(dptr, sptr+sopt->cipso, optlen);
|
|
|
|
dptr += optlen;
|
|
|
|
dopt->optlen += optlen;
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
while (dopt->optlen & 3) {
|
|
|
|
*dptr++ = IPOPT_END;
|
|
|
|
dopt->optlen++;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Options "fragmenting", just fill options not
|
|
|
|
* allowed in fragments with NOOPs.
|
|
|
|
* Simple and stupid 8), but the most efficient way.
|
|
|
|
*/
|
|
|
|
|
2012-04-15 09:34:41 +08:00
|
|
|
void ip_options_fragment(struct sk_buff *skb)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2007-04-11 11:50:43 +08:00
|
|
|
unsigned char *optptr = skb_network_header(skb) + sizeof(struct iphdr);
|
2012-04-15 09:34:41 +08:00
|
|
|
struct ip_options *opt = &(IPCB(skb)->opt);
|
2005-04-17 06:20:36 +08:00
|
|
|
int l = opt->optlen;
|
|
|
|
int optlen;
|
|
|
|
|
|
|
|
while (l > 0) {
|
|
|
|
switch (*optptr) {
|
|
|
|
case IPOPT_END:
|
|
|
|
return;
|
|
|
|
case IPOPT_NOOP:
|
|
|
|
l--;
|
|
|
|
optptr++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
optlen = optptr[1];
|
2013-12-23 14:37:26 +08:00
|
|
|
if (optlen < 2 || optlen > l)
|
2005-04-17 06:20:36 +08:00
|
|
|
return;
|
|
|
|
if (!IPOPT_COPIED(*optptr))
|
|
|
|
memset(optptr, IPOPT_NOOP, optlen);
|
|
|
|
l -= optlen;
|
|
|
|
optptr += optlen;
|
|
|
|
}
|
|
|
|
opt->ts = 0;
|
|
|
|
opt->rr = 0;
|
|
|
|
opt->rr_needaddr = 0;
|
|
|
|
opt->ts_needaddr = 0;
|
|
|
|
opt->ts_needtime = 0;
|
|
|
|
}
|
|
|
|
|
2012-07-05 06:30:09 +08:00
|
|
|
/* helper used by ip_options_compile() to call fib_compute_spec_dst()
|
|
|
|
* at most one time.
|
|
|
|
*/
|
|
|
|
static void spec_dst_fill(__be32 *spec_dst, struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
if (*spec_dst == htonl(INADDR_ANY))
|
|
|
|
*spec_dst = fib_compute_spec_dst(skb);
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Verify options and fill pointers in struct options.
|
|
|
|
* Caller should clear *opt, and set opt->data.
|
|
|
|
* If opt == NULL, then skb->data should point to IP header.
|
|
|
|
*/
|
|
|
|
|
2008-03-25 06:29:23 +08:00
|
|
|
int ip_options_compile(struct net *net,
|
2012-04-15 09:34:41 +08:00
|
|
|
struct ip_options *opt, struct sk_buff *skb)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2012-07-05 06:30:09 +08:00
|
|
|
__be32 spec_dst = htonl(INADDR_ANY);
|
2012-04-15 09:34:41 +08:00
|
|
|
unsigned char *pp_ptr = NULL;
|
2012-07-05 07:13:17 +08:00
|
|
|
struct rtable *rt = NULL;
|
2012-06-28 18:59:11 +08:00
|
|
|
unsigned char *optptr;
|
|
|
|
unsigned char *iph;
|
|
|
|
int optlen, l;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2015-04-03 16:17:27 +08:00
|
|
|
if (skb) {
|
2012-07-05 07:13:17 +08:00
|
|
|
rt = skb_rtable(skb);
|
2008-03-23 07:36:20 +08:00
|
|
|
optptr = (unsigned char *)&(ip_hdr(skb)[1]);
|
|
|
|
} else
|
2008-03-23 07:35:00 +08:00
|
|
|
optptr = opt->__data;
|
2008-03-23 07:36:20 +08:00
|
|
|
iph = optptr - sizeof(struct iphdr);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
for (l = opt->optlen; l > 0; ) {
|
|
|
|
switch (*optptr) {
|
2013-12-31 15:11:28 +08:00
|
|
|
case IPOPT_END:
|
2013-12-23 14:37:26 +08:00
|
|
|
for (optptr++, l--; l > 0; optptr++, l--) {
|
2005-04-17 06:20:36 +08:00
|
|
|
if (*optptr != IPOPT_END) {
|
|
|
|
*optptr = IPOPT_END;
|
|
|
|
opt->is_changed = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goto eol;
|
2013-12-31 15:11:28 +08:00
|
|
|
case IPOPT_NOOP:
|
2005-04-17 06:20:36 +08:00
|
|
|
l--;
|
|
|
|
optptr++;
|
|
|
|
continue;
|
|
|
|
}
|
2014-07-21 13:17:42 +08:00
|
|
|
if (unlikely(l < 2)) {
|
|
|
|
pp_ptr = optptr;
|
|
|
|
goto error;
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
optlen = optptr[1];
|
2013-12-23 14:37:26 +08:00
|
|
|
if (optlen < 2 || optlen > l) {
|
2005-04-17 06:20:36 +08:00
|
|
|
pp_ptr = optptr;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
switch (*optptr) {
|
2013-12-31 15:11:28 +08:00
|
|
|
case IPOPT_SSRR:
|
|
|
|
case IPOPT_LSRR:
|
2005-04-17 06:20:36 +08:00
|
|
|
if (optlen < 3) {
|
|
|
|
pp_ptr = optptr + 1;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (optptr[2] < 4) {
|
|
|
|
pp_ptr = optptr + 2;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
/* NB: cf RFC-1812 5.2.4.1 */
|
|
|
|
if (opt->srr) {
|
|
|
|
pp_ptr = optptr;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (!skb) {
|
|
|
|
if (optptr[2] != 4 || optlen < 7 || ((optlen-3) & 3)) {
|
|
|
|
pp_ptr = optptr + 1;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
memcpy(&opt->faddr, &optptr[3], 4);
|
|
|
|
if (optlen > 7)
|
|
|
|
memmove(&optptr[3], &optptr[7], optlen-7);
|
|
|
|
}
|
|
|
|
opt->is_strictroute = (optptr[0] == IPOPT_SSRR);
|
|
|
|
opt->srr = optptr - iph;
|
|
|
|
break;
|
2013-12-31 15:11:28 +08:00
|
|
|
case IPOPT_RR:
|
2005-04-17 06:20:36 +08:00
|
|
|
if (opt->rr) {
|
|
|
|
pp_ptr = optptr;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (optlen < 3) {
|
|
|
|
pp_ptr = optptr + 1;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (optptr[2] < 4) {
|
|
|
|
pp_ptr = optptr + 2;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (optptr[2] <= optlen) {
|
|
|
|
if (optptr[2]+3 > optlen) {
|
|
|
|
pp_ptr = optptr + 2;
|
|
|
|
goto error;
|
|
|
|
}
|
2012-07-05 07:13:17 +08:00
|
|
|
if (rt) {
|
2012-07-05 06:30:09 +08:00
|
|
|
spec_dst_fill(&spec_dst, skb);
|
2012-06-28 18:59:11 +08:00
|
|
|
memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
|
2005-04-17 06:20:36 +08:00
|
|
|
opt->is_changed = 1;
|
|
|
|
}
|
|
|
|
optptr[2] += 4;
|
|
|
|
opt->rr_needaddr = 1;
|
|
|
|
}
|
|
|
|
opt->rr = optptr - iph;
|
|
|
|
break;
|
2013-12-31 15:11:28 +08:00
|
|
|
case IPOPT_TIMESTAMP:
|
2005-04-17 06:20:36 +08:00
|
|
|
if (opt->ts) {
|
|
|
|
pp_ptr = optptr;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (optlen < 4) {
|
|
|
|
pp_ptr = optptr + 1;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (optptr[2] < 5) {
|
|
|
|
pp_ptr = optptr + 2;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (optptr[2] <= optlen) {
|
2011-05-29 18:55:44 +08:00
|
|
|
unsigned char *timeptr = NULL;
|
2014-04-27 18:03:45 +08:00
|
|
|
if (optptr[2]+3 > optlen) {
|
2005-04-17 06:20:36 +08:00
|
|
|
pp_ptr = optptr + 2;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
switch (optptr[3]&0xF) {
|
2013-12-31 15:11:28 +08:00
|
|
|
case IPOPT_TS_TSONLY:
|
2007-02-09 22:24:47 +08:00
|
|
|
if (skb)
|
2011-05-29 18:55:44 +08:00
|
|
|
timeptr = &optptr[optptr[2]-1];
|
2005-04-17 06:20:36 +08:00
|
|
|
opt->ts_needtime = 1;
|
|
|
|
optptr[2] += 4;
|
|
|
|
break;
|
2013-12-31 15:11:28 +08:00
|
|
|
case IPOPT_TS_TSANDADDR:
|
2014-04-27 18:03:45 +08:00
|
|
|
if (optptr[2]+7 > optlen) {
|
2005-04-17 06:20:36 +08:00
|
|
|
pp_ptr = optptr + 2;
|
|
|
|
goto error;
|
|
|
|
}
|
2012-07-05 07:13:17 +08:00
|
|
|
if (rt) {
|
2012-07-05 06:30:09 +08:00
|
|
|
spec_dst_fill(&spec_dst, skb);
|
2012-06-28 18:59:11 +08:00
|
|
|
memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
|
2011-05-29 18:55:44 +08:00
|
|
|
timeptr = &optptr[optptr[2]+3];
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
opt->ts_needaddr = 1;
|
|
|
|
opt->ts_needtime = 1;
|
|
|
|
optptr[2] += 8;
|
|
|
|
break;
|
2013-12-31 15:11:28 +08:00
|
|
|
case IPOPT_TS_PRESPEC:
|
2014-04-27 18:03:45 +08:00
|
|
|
if (optptr[2]+7 > optlen) {
|
2005-04-17 06:20:36 +08:00
|
|
|
pp_ptr = optptr + 2;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
{
|
2006-09-27 13:17:51 +08:00
|
|
|
__be32 addr;
|
2005-04-17 06:20:36 +08:00
|
|
|
memcpy(&addr, &optptr[optptr[2]-1], 4);
|
2008-03-25 06:29:23 +08:00
|
|
|
if (inet_addr_type(net, addr) == RTN_UNICAST)
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
if (skb)
|
2011-05-29 18:55:44 +08:00
|
|
|
timeptr = &optptr[optptr[2]+3];
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
opt->ts_needtime = 1;
|
|
|
|
optptr[2] += 8;
|
|
|
|
break;
|
2013-12-31 15:11:28 +08:00
|
|
|
default:
|
net: Allow userns root to control ipv4
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 creating raw sockets.
Allow the SIOCSARP ioctl to control the arp cache.
Allow the SIOCSIFFLAG ioctl to allow setting network device flags.
Allow the SIOCSIFADDR ioctl to allow setting a netdevice ipv4 address.
Allow the SIOCSIFBRDADDR ioctl to allow setting a netdevice ipv4 broadcast address.
Allow the SIOCSIFDSTADDR ioctl to allow setting a netdevice ipv4 destination address.
Allow the SIOCSIFNETMASK ioctl to allow setting a netdevice ipv4 netmask.
Allow the SIOCADDRT and SIOCDELRT ioctls to allow adding and deleting ipv4 routes.
Allow the SIOCADDTUNNEL, SIOCCHGTUNNEL and SIOCDELTUNNEL ioctls for
adding, changing and deleting gre tunnels.
Allow the SIOCADDTUNNEL, SIOCCHGTUNNEL and SIOCDELTUNNEL ioctls for
adding, changing and deleting ipip tunnels.
Allow the SIOCADDTUNNEL, SIOCCHGTUNNEL and SIOCDELTUNNEL ioctls for
adding, changing and deleting ipsec virtual tunnel interfaces.
Allow setting the MRT_INIT, MRT_DONE, MRT_ADD_VIF, MRT_DEL_VIF, MRT_ADD_MFC,
MRT_DEL_MFC, MRT_ASSERT, MRT_PIM, MRT_TABLE socket options on multicast routing
sockets.
Allow setting and receiving IPOPT_CIPSO, IP_OPT_SEC, IP_OPT_SID and
arbitrary ip options.
Allow setting IP_SEC_POLICY/IP_XFRM_POLICY ipv4 socket option.
Allow setting the IP_TRANSPARENT ipv4 socket option.
Allow setting the TCP_REPAIR socket option.
Allow setting the TCP_CONGESTION socket option.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2012-11-16 11:03:05 +08:00
|
|
|
if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
pp_ptr = optptr + 3;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (timeptr) {
|
2016-02-27 16:32:15 +08:00
|
|
|
__be32 midtime;
|
|
|
|
|
|
|
|
midtime = inet_current_timestamp();
|
|
|
|
memcpy(timeptr, &midtime, 4);
|
2005-04-17 06:20:36 +08:00
|
|
|
opt->is_changed = 1;
|
|
|
|
}
|
2013-03-06 01:06:32 +08:00
|
|
|
} else if ((optptr[3]&0xF) != IPOPT_TS_PRESPEC) {
|
2012-04-15 13:58:06 +08:00
|
|
|
unsigned int overflow = optptr[3]>>4;
|
2005-04-17 06:20:36 +08:00
|
|
|
if (overflow == 15) {
|
|
|
|
pp_ptr = optptr + 3;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (skb) {
|
|
|
|
optptr[3] = (optptr[3]&0xF)|((overflow+1)<<4);
|
|
|
|
opt->is_changed = 1;
|
|
|
|
}
|
|
|
|
}
|
2013-03-11 18:43:39 +08:00
|
|
|
opt->ts = optptr - iph;
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
2013-12-31 15:11:28 +08:00
|
|
|
case IPOPT_RA:
|
2005-04-17 06:20:36 +08:00
|
|
|
if (optlen < 4) {
|
|
|
|
pp_ptr = optptr + 1;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (optptr[2] == 0 && optptr[3] == 0)
|
|
|
|
opt->router_alert = optptr - iph;
|
|
|
|
break;
|
2013-12-31 15:11:28 +08:00
|
|
|
case IPOPT_CIPSO:
|
net: Allow userns root to control ipv4
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 creating raw sockets.
Allow the SIOCSARP ioctl to control the arp cache.
Allow the SIOCSIFFLAG ioctl to allow setting network device flags.
Allow the SIOCSIFADDR ioctl to allow setting a netdevice ipv4 address.
Allow the SIOCSIFBRDADDR ioctl to allow setting a netdevice ipv4 broadcast address.
Allow the SIOCSIFDSTADDR ioctl to allow setting a netdevice ipv4 destination address.
Allow the SIOCSIFNETMASK ioctl to allow setting a netdevice ipv4 netmask.
Allow the SIOCADDRT and SIOCDELRT ioctls to allow adding and deleting ipv4 routes.
Allow the SIOCADDTUNNEL, SIOCCHGTUNNEL and SIOCDELTUNNEL ioctls for
adding, changing and deleting gre tunnels.
Allow the SIOCADDTUNNEL, SIOCCHGTUNNEL and SIOCDELTUNNEL ioctls for
adding, changing and deleting ipip tunnels.
Allow the SIOCADDTUNNEL, SIOCCHGTUNNEL and SIOCDELTUNNEL ioctls for
adding, changing and deleting ipsec virtual tunnel interfaces.
Allow setting the MRT_INIT, MRT_DONE, MRT_ADD_VIF, MRT_DEL_VIF, MRT_ADD_MFC,
MRT_DEL_MFC, MRT_ASSERT, MRT_PIM, MRT_TABLE socket options on multicast routing
sockets.
Allow setting and receiving IPOPT_CIPSO, IP_OPT_SEC, IP_OPT_SID and
arbitrary ip options.
Allow setting IP_SEC_POLICY/IP_XFRM_POLICY ipv4 socket option.
Allow setting the IP_TRANSPARENT ipv4 socket option.
Allow setting the TCP_REPAIR socket option.
Allow setting the TCP_CONGESTION socket option.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2012-11-16 11:03:05 +08:00
|
|
|
if ((!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) || opt->cipso) {
|
2006-08-04 07:46:20 +08:00
|
|
|
pp_ptr = optptr;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
opt->cipso = optptr - iph;
|
2008-10-10 22:16:34 +08:00
|
|
|
if (cipso_v4_validate(skb, &optptr)) {
|
2006-08-04 07:46:20 +08:00
|
|
|
pp_ptr = optptr;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
break;
|
2013-12-31 15:11:28 +08:00
|
|
|
case IPOPT_SEC:
|
|
|
|
case IPOPT_SID:
|
|
|
|
default:
|
net: Allow userns root to control ipv4
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 creating raw sockets.
Allow the SIOCSARP ioctl to control the arp cache.
Allow the SIOCSIFFLAG ioctl to allow setting network device flags.
Allow the SIOCSIFADDR ioctl to allow setting a netdevice ipv4 address.
Allow the SIOCSIFBRDADDR ioctl to allow setting a netdevice ipv4 broadcast address.
Allow the SIOCSIFDSTADDR ioctl to allow setting a netdevice ipv4 destination address.
Allow the SIOCSIFNETMASK ioctl to allow setting a netdevice ipv4 netmask.
Allow the SIOCADDRT and SIOCDELRT ioctls to allow adding and deleting ipv4 routes.
Allow the SIOCADDTUNNEL, SIOCCHGTUNNEL and SIOCDELTUNNEL ioctls for
adding, changing and deleting gre tunnels.
Allow the SIOCADDTUNNEL, SIOCCHGTUNNEL and SIOCDELTUNNEL ioctls for
adding, changing and deleting ipip tunnels.
Allow the SIOCADDTUNNEL, SIOCCHGTUNNEL and SIOCDELTUNNEL ioctls for
adding, changing and deleting ipsec virtual tunnel interfaces.
Allow setting the MRT_INIT, MRT_DONE, MRT_ADD_VIF, MRT_DEL_VIF, MRT_ADD_MFC,
MRT_DEL_MFC, MRT_ASSERT, MRT_PIM, MRT_TABLE socket options on multicast routing
sockets.
Allow setting and receiving IPOPT_CIPSO, IP_OPT_SEC, IP_OPT_SID and
arbitrary ip options.
Allow setting IP_SEC_POLICY/IP_XFRM_POLICY ipv4 socket option.
Allow setting the IP_TRANSPARENT ipv4 socket option.
Allow setting the TCP_REPAIR socket option.
Allow setting the TCP_CONGESTION socket option.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2012-11-16 11:03:05 +08:00
|
|
|
if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
pp_ptr = optptr;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
l -= optlen;
|
|
|
|
optptr += optlen;
|
|
|
|
}
|
|
|
|
|
|
|
|
eol:
|
|
|
|
if (!pp_ptr)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
error:
|
|
|
|
if (skb) {
|
|
|
|
icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((pp_ptr-iph)<<24));
|
|
|
|
}
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2010-09-19 17:34:33 +08:00
|
|
|
EXPORT_SYMBOL(ip_options_compile);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Undo all the changes done by ip_options_compile().
|
|
|
|
*/
|
|
|
|
|
2012-04-15 09:34:41 +08:00
|
|
|
void ip_options_undo(struct ip_options *opt)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
if (opt->srr) {
|
2012-04-15 09:34:41 +08:00
|
|
|
unsigned char *optptr = opt->__data+opt->srr-sizeof(struct iphdr);
|
2005-04-17 06:20:36 +08:00
|
|
|
memmove(optptr+7, optptr+3, optptr[1]-7);
|
|
|
|
memcpy(optptr+3, &opt->faddr, 4);
|
|
|
|
}
|
|
|
|
if (opt->rr_needaddr) {
|
2012-04-15 09:34:41 +08:00
|
|
|
unsigned char *optptr = opt->__data+opt->rr-sizeof(struct iphdr);
|
2005-04-17 06:20:36 +08:00
|
|
|
optptr[2] -= 4;
|
|
|
|
memset(&optptr[optptr[2]-1], 0, 4);
|
|
|
|
}
|
|
|
|
if (opt->ts) {
|
2012-04-15 09:34:41 +08:00
|
|
|
unsigned char *optptr = opt->__data+opt->ts-sizeof(struct iphdr);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (opt->ts_needtime) {
|
|
|
|
optptr[2] -= 4;
|
|
|
|
memset(&optptr[optptr[2]-1], 0, 4);
|
|
|
|
if ((optptr[3]&0xF) == IPOPT_TS_PRESPEC)
|
|
|
|
optptr[2] -= 4;
|
|
|
|
}
|
|
|
|
if (opt->ts_needaddr) {
|
|
|
|
optptr[2] -= 4;
|
|
|
|
memset(&optptr[optptr[2]-1], 0, 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-21 17:45:37 +08:00
|
|
|
static struct ip_options_rcu *ip_options_get_alloc(const int optlen)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2011-04-21 17:45:37 +08:00
|
|
|
return kzalloc(sizeof(struct ip_options_rcu) + ((optlen + 3) & ~3),
|
2007-08-01 05:06:45 +08:00
|
|
|
GFP_KERNEL);
|
2005-08-17 06:46:48 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2011-04-21 17:45:37 +08:00
|
|
|
static int ip_options_get_finish(struct net *net, struct ip_options_rcu **optp,
|
|
|
|
struct ip_options_rcu *opt, int optlen)
|
2005-08-17 06:46:48 +08:00
|
|
|
{
|
2005-04-17 06:20:36 +08:00
|
|
|
while (optlen & 3)
|
2011-04-21 17:45:37 +08:00
|
|
|
opt->opt.__data[optlen++] = IPOPT_END;
|
|
|
|
opt->opt.optlen = optlen;
|
|
|
|
if (optlen && ip_options_compile(net, &opt->opt, NULL)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
kfree(opt);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2005-11-09 01:41:34 +08:00
|
|
|
kfree(*optp);
|
2005-04-17 06:20:36 +08:00
|
|
|
*optp = opt;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-04-21 17:45:37 +08:00
|
|
|
int ip_options_get_from_user(struct net *net, struct ip_options_rcu **optp,
|
2008-03-25 06:29:55 +08:00
|
|
|
unsigned char __user *data, int optlen)
|
2005-08-17 06:46:48 +08:00
|
|
|
{
|
2011-04-21 17:45:37 +08:00
|
|
|
struct ip_options_rcu *opt = ip_options_get_alloc(optlen);
|
2005-08-17 06:46:48 +08:00
|
|
|
|
|
|
|
if (!opt)
|
|
|
|
return -ENOMEM;
|
2011-04-21 17:45:37 +08:00
|
|
|
if (optlen && copy_from_user(opt->opt.__data, data, optlen)) {
|
2005-08-17 06:46:48 +08:00
|
|
|
kfree(opt);
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
2008-03-25 06:29:55 +08:00
|
|
|
return ip_options_get_finish(net, optp, opt, optlen);
|
2005-08-17 06:46:48 +08:00
|
|
|
}
|
|
|
|
|
2011-04-21 17:45:37 +08:00
|
|
|
int ip_options_get(struct net *net, struct ip_options_rcu **optp,
|
2008-03-25 06:29:55 +08:00
|
|
|
unsigned char *data, int optlen)
|
2005-08-17 06:46:48 +08:00
|
|
|
{
|
2011-04-21 17:45:37 +08:00
|
|
|
struct ip_options_rcu *opt = ip_options_get_alloc(optlen);
|
2005-08-17 06:46:48 +08:00
|
|
|
|
|
|
|
if (!opt)
|
|
|
|
return -ENOMEM;
|
|
|
|
if (optlen)
|
2011-04-21 17:45:37 +08:00
|
|
|
memcpy(opt->opt.__data, data, optlen);
|
2008-03-25 06:29:55 +08:00
|
|
|
return ip_options_get_finish(net, optp, opt, optlen);
|
2005-08-17 06:46:48 +08:00
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
void ip_forward_options(struct sk_buff *skb)
|
|
|
|
{
|
2012-04-15 09:34:41 +08:00
|
|
|
struct ip_options *opt = &(IPCB(skb)->opt);
|
|
|
|
unsigned char *optptr;
|
2009-06-02 13:14:27 +08:00
|
|
|
struct rtable *rt = skb_rtable(skb);
|
2007-04-11 11:50:43 +08:00
|
|
|
unsigned char *raw = skb_network_header(skb);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (opt->rr_needaddr) {
|
|
|
|
optptr = (unsigned char *)raw + opt->rr;
|
2011-05-14 05:29:41 +08:00
|
|
|
ip_rt_get_source(&optptr[optptr[2]-5], skb, rt);
|
2005-04-17 06:20:36 +08:00
|
|
|
opt->is_changed = 1;
|
|
|
|
}
|
|
|
|
if (opt->srr_is_hit) {
|
|
|
|
int srrptr, srrspace;
|
|
|
|
|
|
|
|
optptr = raw + opt->srr;
|
|
|
|
|
2013-12-23 14:37:26 +08:00
|
|
|
for ( srrptr = optptr[2], srrspace = optptr[1];
|
2005-04-17 06:20:36 +08:00
|
|
|
srrptr <= srrspace;
|
|
|
|
srrptr += 4
|
|
|
|
) {
|
|
|
|
if (srrptr + 3 > srrspace)
|
|
|
|
break;
|
2011-11-23 07:33:10 +08:00
|
|
|
if (memcmp(&opt->nexthop, &optptr[srrptr-1], 4) == 0)
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (srrptr + 3 <= srrspace) {
|
|
|
|
opt->is_changed = 1;
|
2011-11-23 07:33:10 +08:00
|
|
|
ip_hdr(skb)->daddr = opt->nexthop;
|
2012-02-10 05:15:25 +08:00
|
|
|
ip_rt_get_source(&optptr[srrptr-1], skb, rt);
|
2005-04-17 06:20:36 +08:00
|
|
|
optptr[2] = srrptr+4;
|
2012-05-14 05:56:26 +08:00
|
|
|
} else {
|
|
|
|
net_crit_ratelimited("%s(): Argh! Destination lost!\n",
|
|
|
|
__func__);
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
if (opt->ts_needaddr) {
|
|
|
|
optptr = raw + opt->ts;
|
2011-05-14 05:29:41 +08:00
|
|
|
ip_rt_get_source(&optptr[optptr[2]-9], skb, rt);
|
2005-04-17 06:20:36 +08:00
|
|
|
opt->is_changed = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (opt->is_changed) {
|
|
|
|
opt->is_changed = 0;
|
2007-04-21 13:47:35 +08:00
|
|
|
ip_send_check(ip_hdr(skb));
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int ip_options_rcv_srr(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
struct ip_options *opt = &(IPCB(skb)->opt);
|
|
|
|
int srrspace, srrptr;
|
2006-09-27 12:25:20 +08:00
|
|
|
__be32 nexthop;
|
2007-04-21 13:47:35 +08:00
|
|
|
struct iphdr *iph = ip_hdr(skb);
|
2007-04-11 11:50:43 +08:00
|
|
|
unsigned char *optptr = skb_network_header(skb) + opt->srr;
|
2009-06-02 13:14:27 +08:00
|
|
|
struct rtable *rt = skb_rtable(skb);
|
2005-04-17 06:20:36 +08:00
|
|
|
struct rtable *rt2;
|
2010-05-12 07:19:48 +08:00
|
|
|
unsigned long orefdst;
|
2005-04-17 06:20:36 +08:00
|
|
|
int err;
|
|
|
|
|
2011-05-13 07:26:57 +08:00
|
|
|
if (!rt)
|
2005-04-17 06:20:36 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (skb->pkt_type != PACKET_HOST)
|
|
|
|
return -EINVAL;
|
|
|
|
if (rt->rt_type == RTN_UNICAST) {
|
|
|
|
if (!opt->is_strictroute)
|
|
|
|
return 0;
|
|
|
|
icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl(16<<24));
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
if (rt->rt_type != RTN_LOCAL)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2013-12-23 14:37:26 +08:00
|
|
|
for (srrptr = optptr[2], srrspace = optptr[1]; srrptr <= srrspace; srrptr += 4) {
|
2005-04-17 06:20:36 +08:00
|
|
|
if (srrptr + 3 > srrspace) {
|
|
|
|
icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((opt->srr+2)<<24));
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
memcpy(&nexthop, &optptr[srrptr-1], 4);
|
|
|
|
|
2010-05-12 07:19:48 +08:00
|
|
|
orefdst = skb->_skb_refdst;
|
2009-06-02 13:19:30 +08:00
|
|
|
skb_dst_set(skb, NULL);
|
2005-04-17 06:20:36 +08:00
|
|
|
err = ip_route_input(skb, nexthop, iph->saddr, iph->tos, skb->dev);
|
2009-06-02 13:14:27 +08:00
|
|
|
rt2 = skb_rtable(skb);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (err || (rt2->rt_type != RTN_UNICAST && rt2->rt_type != RTN_LOCAL)) {
|
2010-05-12 07:19:48 +08:00
|
|
|
skb_dst_drop(skb);
|
|
|
|
skb->_skb_refdst = orefdst;
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
2010-05-12 07:19:48 +08:00
|
|
|
refdst_drop(orefdst);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (rt2->rt_type != RTN_LOCAL)
|
|
|
|
break;
|
|
|
|
/* Superfast 8) loopback forward */
|
2011-05-13 07:30:58 +08:00
|
|
|
iph->daddr = nexthop;
|
2005-04-17 06:20:36 +08:00
|
|
|
opt->is_changed = 1;
|
|
|
|
}
|
|
|
|
if (srrptr <= srrspace) {
|
|
|
|
opt->srr_is_hit = 1;
|
2011-11-23 07:33:10 +08:00
|
|
|
opt->nexthop = nexthop;
|
2005-04-17 06:20:36 +08:00
|
|
|
opt->is_changed = 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2010-09-19 17:34:33 +08:00
|
|
|
EXPORT_SYMBOL(ip_options_rcv_srr);
|