Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * INET An implementation of the TCP/IP protocol suite for the LINUX |
| 4 | * operating system. INET is implemented using the BSD Socket |
| 5 | * interface as the means of communication with the user level. |
| 6 | * |
| 7 | * The options processing module for ip.c |
| 8 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * Authors: A.N.Kuznetsov |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 10 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
Joe Perches | afd46503 | 2012-03-12 07:03:32 +0000 | [diff] [blame] | 13 | #define pr_fmt(fmt) "IPv4: " fmt |
| 14 | |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 15 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/types.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 19 | #include <linux/uaccess.h> |
Chris Metcalf | 48bdf07 | 2011-05-29 10:55:44 +0000 | [diff] [blame] | 20 | #include <asm/unaligned.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/skbuff.h> |
| 22 | #include <linux/ip.h> |
| 23 | #include <linux/icmp.h> |
| 24 | #include <linux/netdevice.h> |
| 25 | #include <linux/rtnetlink.h> |
| 26 | #include <net/sock.h> |
| 27 | #include <net/ip.h> |
| 28 | #include <net/icmp.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 29 | #include <net/route.h> |
Paul Moore | 11a03f7 | 2006-08-03 16:46:20 -0700 | [diff] [blame] | 30 | #include <net/cipso_ipv4.h> |
David S. Miller | 35ebf65 | 2012-06-28 03:59:11 -0700 | [diff] [blame] | 31 | #include <net/ip_fib.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 33 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | * Write options to IP header, record destination address to |
| 35 | * source route option, address of outgoing interface |
| 36 | * (we should already know it, so that this function is allowed be |
| 37 | * called only after routing decision) and timestamp, |
| 38 | * if we originate this datagram. |
| 39 | * |
| 40 | * daddr is real destination address, next hop is recorded in IP header. |
| 41 | * saddr is address of outgoing interface. |
| 42 | */ |
| 43 | |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 44 | void ip_options_build(struct sk_buff *skb, struct ip_options *opt, |
David S. Miller | 8e36360 | 2011-05-13 17:29:41 -0400 | [diff] [blame] | 45 | __be32 daddr, struct rtable *rt, int is_frag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 47 | unsigned char *iph = skb_network_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | memcpy(&(IPCB(skb)->opt), opt, sizeof(struct ip_options)); |
| 50 | memcpy(iph+sizeof(struct iphdr), opt->__data, opt->optlen); |
| 51 | opt = &(IPCB(skb)->opt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | if (opt->srr) |
| 54 | memcpy(iph+opt->srr+iph[opt->srr+1]-4, &daddr, 4); |
| 55 | |
| 56 | if (!is_frag) { |
| 57 | if (opt->rr_needaddr) |
David S. Miller | 8e36360 | 2011-05-13 17:29:41 -0400 | [diff] [blame] | 58 | ip_rt_get_source(iph+opt->rr+iph[opt->rr+2]-5, skb, rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | if (opt->ts_needaddr) |
David S. Miller | 8e36360 | 2011-05-13 17:29:41 -0400 | [diff] [blame] | 60 | ip_rt_get_source(iph+opt->ts+iph[opt->ts+2]-9, skb, rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | if (opt->ts_needtime) { |
Al Viro | e25d2ca | 2006-09-27 18:28:47 -0700 | [diff] [blame] | 62 | __be32 midtime; |
Deepa Dinamani | 822c868 | 2016-02-27 00:32:15 -0800 | [diff] [blame] | 63 | |
| 64 | midtime = inet_current_timestamp(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | memcpy(iph+opt->ts+iph[opt->ts+2]-5, &midtime, 4); |
| 66 | } |
| 67 | return; |
| 68 | } |
| 69 | if (opt->rr) { |
| 70 | memset(iph+opt->rr, IPOPT_NOP, iph[opt->rr+1]); |
| 71 | opt->rr = 0; |
| 72 | opt->rr_needaddr = 0; |
| 73 | } |
| 74 | if (opt->ts) { |
| 75 | memset(iph+opt->ts, IPOPT_NOP, iph[opt->ts+1]); |
| 76 | opt->ts = 0; |
| 77 | opt->ts_needaddr = opt->ts_needtime = 0; |
| 78 | } |
| 79 | } |
| 80 | |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 81 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | * Provided (sopt, skb) points to received options, |
| 83 | * build in dopt compiled option set appropriate for answering. |
| 84 | * i.e. invert SRR option, copy anothers, |
| 85 | * and grab room in RR/TS options. |
| 86 | * |
| 87 | * NOTE: dopt cannot point to skb. |
| 88 | */ |
| 89 | |
Paolo Abeni | 91ed1e6 | 2017-08-03 18:07:06 +0200 | [diff] [blame] | 90 | int __ip_options_echo(struct net *net, struct ip_options *dopt, |
| 91 | struct sk_buff *skb, const struct ip_options *sopt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | unsigned char *sptr, *dptr; |
| 94 | int soffset, doffset; |
| 95 | int optlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
| 97 | memset(dopt, 0, sizeof(struct ip_options)); |
| 98 | |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 99 | if (sopt->optlen == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 102 | sptr = skb_network_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | dptr = dopt->__data; |
| 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | if (sopt->rr) { |
| 106 | optlen = sptr[sopt->rr+1]; |
| 107 | soffset = sptr[sopt->rr+2]; |
| 108 | dopt->rr = dopt->optlen + sizeof(struct iphdr); |
| 109 | memcpy(dptr, sptr+sopt->rr, optlen); |
| 110 | if (sopt->rr_needaddr && soffset <= optlen) { |
| 111 | if (soffset + 3 > optlen) |
| 112 | return -EINVAL; |
| 113 | dptr[2] = soffset + 4; |
| 114 | dopt->rr_needaddr = 1; |
| 115 | } |
| 116 | dptr += optlen; |
| 117 | dopt->optlen += optlen; |
| 118 | } |
| 119 | if (sopt->ts) { |
| 120 | optlen = sptr[sopt->ts+1]; |
| 121 | soffset = sptr[sopt->ts+2]; |
| 122 | dopt->ts = dopt->optlen + sizeof(struct iphdr); |
| 123 | memcpy(dptr, sptr+sopt->ts, optlen); |
| 124 | if (soffset <= optlen) { |
| 125 | if (sopt->ts_needaddr) { |
| 126 | if (soffset + 3 > optlen) |
| 127 | return -EINVAL; |
| 128 | dopt->ts_needaddr = 1; |
| 129 | soffset += 4; |
| 130 | } |
| 131 | if (sopt->ts_needtime) { |
| 132 | if (soffset + 3 > optlen) |
| 133 | return -EINVAL; |
| 134 | if ((dptr[3]&0xF) != IPOPT_TS_PRESPEC) { |
| 135 | dopt->ts_needtime = 1; |
| 136 | soffset += 4; |
| 137 | } else { |
| 138 | dopt->ts_needtime = 0; |
| 139 | |
Jan Luebbe | 8628bd8 | 2011-03-24 07:44:22 +0000 | [diff] [blame] | 140 | if (soffset + 7 <= optlen) { |
Al Viro | fd68322 | 2006-09-26 22:17:51 -0700 | [diff] [blame] | 141 | __be32 addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Jan Luebbe | 8628bd8 | 2011-03-24 07:44:22 +0000 | [diff] [blame] | 143 | memcpy(&addr, dptr+soffset-1, 4); |
Paolo Abeni | 91ed1e6 | 2017-08-03 18:07:06 +0200 | [diff] [blame] | 144 | if (inet_addr_type(net, addr) != RTN_UNICAST) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | dopt->ts_needtime = 1; |
| 146 | soffset += 8; |
| 147 | } |
| 148 | } |
| 149 | } |
| 150 | } |
| 151 | dptr[2] = soffset; |
| 152 | } |
| 153 | dptr += optlen; |
| 154 | dopt->optlen += optlen; |
| 155 | } |
| 156 | if (sopt->srr) { |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 157 | unsigned char *start = sptr+sopt->srr; |
Al Viro | 3ca3c68 | 2006-09-27 18:28:07 -0700 | [diff] [blame] | 158 | __be32 faddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
| 160 | optlen = start[1]; |
| 161 | soffset = start[2]; |
| 162 | doffset = 0; |
| 163 | if (soffset > optlen) |
| 164 | soffset = optlen + 1; |
| 165 | soffset -= 4; |
| 166 | if (soffset > 3) { |
| 167 | memcpy(&faddr, &start[soffset-1], 4); |
Weilong Chen | a22318e | 2013-12-23 14:37:26 +0800 | [diff] [blame] | 168 | for (soffset -= 4, doffset = 4; soffset > 3; soffset -= 4, doffset += 4) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | memcpy(&dptr[doffset-1], &start[soffset-1], 4); |
| 170 | /* |
| 171 | * RFC1812 requires to fix illegal source routes. |
| 172 | */ |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 173 | if (memcmp(&ip_hdr(skb)->saddr, |
| 174 | &start[soffset + 3], 4) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | doffset -= 4; |
| 176 | } |
| 177 | if (doffset > 3) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | dopt->faddr = faddr; |
| 179 | dptr[0] = start[0]; |
| 180 | dptr[1] = doffset+3; |
| 181 | dptr[2] = 4; |
| 182 | dptr += doffset+3; |
| 183 | dopt->srr = dopt->optlen + sizeof(struct iphdr); |
| 184 | dopt->optlen += doffset+3; |
| 185 | dopt->is_strictroute = sopt->is_strictroute; |
| 186 | } |
| 187 | } |
Paul Moore | 11a03f7 | 2006-08-03 16:46:20 -0700 | [diff] [blame] | 188 | if (sopt->cipso) { |
| 189 | optlen = sptr[sopt->cipso+1]; |
| 190 | dopt->cipso = dopt->optlen+sizeof(struct iphdr); |
| 191 | memcpy(dptr, sptr+sopt->cipso, optlen); |
| 192 | dptr += optlen; |
| 193 | dopt->optlen += optlen; |
| 194 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | while (dopt->optlen & 3) { |
| 196 | *dptr++ = IPOPT_END; |
| 197 | dopt->optlen++; |
| 198 | } |
| 199 | return 0; |
| 200 | } |
| 201 | |
| 202 | /* |
| 203 | * Options "fragmenting", just fill options not |
| 204 | * allowed in fragments with NOOPs. |
| 205 | * Simple and stupid 8), but the most efficient way. |
| 206 | */ |
| 207 | |
Daniel Baluta | 5e73ea1 | 2012-04-15 01:34:41 +0000 | [diff] [blame] | 208 | void ip_options_fragment(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | { |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 210 | unsigned char *optptr = skb_network_header(skb) + sizeof(struct iphdr); |
Daniel Baluta | 5e73ea1 | 2012-04-15 01:34:41 +0000 | [diff] [blame] | 211 | struct ip_options *opt = &(IPCB(skb)->opt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | int l = opt->optlen; |
| 213 | int optlen; |
| 214 | |
| 215 | while (l > 0) { |
| 216 | switch (*optptr) { |
| 217 | case IPOPT_END: |
| 218 | return; |
| 219 | case IPOPT_NOOP: |
| 220 | l--; |
| 221 | optptr++; |
| 222 | continue; |
| 223 | } |
| 224 | optlen = optptr[1]; |
Weilong Chen | a22318e | 2013-12-23 14:37:26 +0800 | [diff] [blame] | 225 | if (optlen < 2 || optlen > l) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return; |
| 227 | if (!IPOPT_COPIED(*optptr)) |
| 228 | memset(optptr, IPOPT_NOOP, optlen); |
| 229 | l -= optlen; |
| 230 | optptr += optlen; |
| 231 | } |
| 232 | opt->ts = 0; |
| 233 | opt->rr = 0; |
| 234 | opt->rr_needaddr = 0; |
| 235 | opt->ts_needaddr = 0; |
| 236 | opt->ts_needtime = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | } |
| 238 | |
Eric Dumazet | bf5e53e | 2012-07-04 22:30:09 +0000 | [diff] [blame] | 239 | /* helper used by ip_options_compile() to call fib_compute_spec_dst() |
| 240 | * at most one time. |
| 241 | */ |
| 242 | static void spec_dst_fill(__be32 *spec_dst, struct sk_buff *skb) |
| 243 | { |
| 244 | if (*spec_dst == htonl(INADDR_ANY)) |
| 245 | *spec_dst = fib_compute_spec_dst(skb); |
| 246 | } |
| 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | /* |
| 249 | * Verify options and fill pointers in struct options. |
| 250 | * Caller should clear *opt, and set opt->data. |
| 251 | * If opt == NULL, then skb->data should point to IP header. |
| 252 | */ |
| 253 | |
Denis V. Lunev | 0e6bd4a | 2008-03-24 15:29:23 -0700 | [diff] [blame] | 254 | int ip_options_compile(struct net *net, |
Daniel Baluta | 5e73ea1 | 2012-04-15 01:34:41 +0000 | [diff] [blame] | 255 | struct ip_options *opt, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | { |
Eric Dumazet | bf5e53e | 2012-07-04 22:30:09 +0000 | [diff] [blame] | 257 | __be32 spec_dst = htonl(INADDR_ANY); |
Daniel Baluta | 5e73ea1 | 2012-04-15 01:34:41 +0000 | [diff] [blame] | 258 | unsigned char *pp_ptr = NULL; |
David S. Miller | 1160472 | 2012-07-04 16:13:17 -0700 | [diff] [blame] | 259 | struct rtable *rt = NULL; |
David S. Miller | 35ebf65 | 2012-06-28 03:59:11 -0700 | [diff] [blame] | 260 | unsigned char *optptr; |
| 261 | unsigned char *iph; |
| 262 | int optlen, l; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
Ian Morris | 00db412 | 2015-04-03 09:17:27 +0100 | [diff] [blame] | 264 | if (skb) { |
David S. Miller | 1160472 | 2012-07-04 16:13:17 -0700 | [diff] [blame] | 265 | rt = skb_rtable(skb); |
Denis V. Lunev | 22aba38 | 2008-03-22 16:36:20 -0700 | [diff] [blame] | 266 | optptr = (unsigned char *)&(ip_hdr(skb)[1]); |
| 267 | } else |
Denis V. Lunev | 10fe7d8 | 2008-03-22 16:35:00 -0700 | [diff] [blame] | 268 | optptr = opt->__data; |
Denis V. Lunev | 22aba38 | 2008-03-22 16:36:20 -0700 | [diff] [blame] | 269 | iph = optptr - sizeof(struct iphdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
| 271 | for (l = opt->optlen; l > 0; ) { |
| 272 | switch (*optptr) { |
Weilong Chen | dd9b455 | 2013-12-31 15:11:28 +0800 | [diff] [blame] | 273 | case IPOPT_END: |
Weilong Chen | a22318e | 2013-12-23 14:37:26 +0800 | [diff] [blame] | 274 | for (optptr++, l--; l > 0; optptr++, l--) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | if (*optptr != IPOPT_END) { |
| 276 | *optptr = IPOPT_END; |
| 277 | opt->is_changed = 1; |
| 278 | } |
| 279 | } |
| 280 | goto eol; |
Weilong Chen | dd9b455 | 2013-12-31 15:11:28 +0800 | [diff] [blame] | 281 | case IPOPT_NOOP: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | l--; |
| 283 | optptr++; |
| 284 | continue; |
| 285 | } |
Eric Dumazet | 10ec947 | 2014-07-21 07:17:42 +0200 | [diff] [blame] | 286 | if (unlikely(l < 2)) { |
| 287 | pp_ptr = optptr; |
| 288 | goto error; |
| 289 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | optlen = optptr[1]; |
Weilong Chen | a22318e | 2013-12-23 14:37:26 +0800 | [diff] [blame] | 291 | if (optlen < 2 || optlen > l) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | pp_ptr = optptr; |
| 293 | goto error; |
| 294 | } |
| 295 | switch (*optptr) { |
Weilong Chen | dd9b455 | 2013-12-31 15:11:28 +0800 | [diff] [blame] | 296 | case IPOPT_SSRR: |
| 297 | case IPOPT_LSRR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | if (optlen < 3) { |
| 299 | pp_ptr = optptr + 1; |
| 300 | goto error; |
| 301 | } |
| 302 | if (optptr[2] < 4) { |
| 303 | pp_ptr = optptr + 2; |
| 304 | goto error; |
| 305 | } |
| 306 | /* NB: cf RFC-1812 5.2.4.1 */ |
| 307 | if (opt->srr) { |
| 308 | pp_ptr = optptr; |
| 309 | goto error; |
| 310 | } |
| 311 | if (!skb) { |
| 312 | if (optptr[2] != 4 || optlen < 7 || ((optlen-3) & 3)) { |
| 313 | pp_ptr = optptr + 1; |
| 314 | goto error; |
| 315 | } |
| 316 | memcpy(&opt->faddr, &optptr[3], 4); |
| 317 | if (optlen > 7) |
| 318 | memmove(&optptr[3], &optptr[7], optlen-7); |
| 319 | } |
| 320 | opt->is_strictroute = (optptr[0] == IPOPT_SSRR); |
| 321 | opt->srr = optptr - iph; |
| 322 | break; |
Weilong Chen | dd9b455 | 2013-12-31 15:11:28 +0800 | [diff] [blame] | 323 | case IPOPT_RR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | if (opt->rr) { |
| 325 | pp_ptr = optptr; |
| 326 | goto error; |
| 327 | } |
| 328 | if (optlen < 3) { |
| 329 | pp_ptr = optptr + 1; |
| 330 | goto error; |
| 331 | } |
| 332 | if (optptr[2] < 4) { |
| 333 | pp_ptr = optptr + 2; |
| 334 | goto error; |
| 335 | } |
| 336 | if (optptr[2] <= optlen) { |
| 337 | if (optptr[2]+3 > optlen) { |
| 338 | pp_ptr = optptr + 2; |
| 339 | goto error; |
| 340 | } |
David S. Miller | 1160472 | 2012-07-04 16:13:17 -0700 | [diff] [blame] | 341 | if (rt) { |
Eric Dumazet | bf5e53e | 2012-07-04 22:30:09 +0000 | [diff] [blame] | 342 | spec_dst_fill(&spec_dst, skb); |
David S. Miller | 35ebf65 | 2012-06-28 03:59:11 -0700 | [diff] [blame] | 343 | memcpy(&optptr[optptr[2]-1], &spec_dst, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | opt->is_changed = 1; |
| 345 | } |
| 346 | optptr[2] += 4; |
| 347 | opt->rr_needaddr = 1; |
| 348 | } |
| 349 | opt->rr = optptr - iph; |
| 350 | break; |
Weilong Chen | dd9b455 | 2013-12-31 15:11:28 +0800 | [diff] [blame] | 351 | case IPOPT_TIMESTAMP: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | if (opt->ts) { |
| 353 | pp_ptr = optptr; |
| 354 | goto error; |
| 355 | } |
| 356 | if (optlen < 4) { |
| 357 | pp_ptr = optptr + 1; |
| 358 | goto error; |
| 359 | } |
| 360 | if (optptr[2] < 5) { |
| 361 | pp_ptr = optptr + 2; |
| 362 | goto error; |
| 363 | } |
| 364 | if (optptr[2] <= optlen) { |
Chris Metcalf | 48bdf07 | 2011-05-29 10:55:44 +0000 | [diff] [blame] | 365 | unsigned char *timeptr = NULL; |
Hisao Tanabe | 5a2b646 | 2014-04-27 19:03:45 +0900 | [diff] [blame] | 366 | if (optptr[2]+3 > optlen) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | pp_ptr = optptr + 2; |
| 368 | goto error; |
| 369 | } |
| 370 | switch (optptr[3]&0xF) { |
Weilong Chen | dd9b455 | 2013-12-31 15:11:28 +0800 | [diff] [blame] | 371 | case IPOPT_TS_TSONLY: |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 372 | if (skb) |
Chris Metcalf | 48bdf07 | 2011-05-29 10:55:44 +0000 | [diff] [blame] | 373 | timeptr = &optptr[optptr[2]-1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | opt->ts_needtime = 1; |
| 375 | optptr[2] += 4; |
| 376 | break; |
Weilong Chen | dd9b455 | 2013-12-31 15:11:28 +0800 | [diff] [blame] | 377 | case IPOPT_TS_TSANDADDR: |
Hisao Tanabe | 5a2b646 | 2014-04-27 19:03:45 +0900 | [diff] [blame] | 378 | if (optptr[2]+7 > optlen) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | pp_ptr = optptr + 2; |
| 380 | goto error; |
| 381 | } |
David S. Miller | 1160472 | 2012-07-04 16:13:17 -0700 | [diff] [blame] | 382 | if (rt) { |
Eric Dumazet | bf5e53e | 2012-07-04 22:30:09 +0000 | [diff] [blame] | 383 | spec_dst_fill(&spec_dst, skb); |
David S. Miller | 35ebf65 | 2012-06-28 03:59:11 -0700 | [diff] [blame] | 384 | memcpy(&optptr[optptr[2]-1], &spec_dst, 4); |
Chris Metcalf | 48bdf07 | 2011-05-29 10:55:44 +0000 | [diff] [blame] | 385 | timeptr = &optptr[optptr[2]+3]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | } |
| 387 | opt->ts_needaddr = 1; |
| 388 | opt->ts_needtime = 1; |
| 389 | optptr[2] += 8; |
| 390 | break; |
Weilong Chen | dd9b455 | 2013-12-31 15:11:28 +0800 | [diff] [blame] | 391 | case IPOPT_TS_PRESPEC: |
Hisao Tanabe | 5a2b646 | 2014-04-27 19:03:45 +0900 | [diff] [blame] | 392 | if (optptr[2]+7 > optlen) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | pp_ptr = optptr + 2; |
| 394 | goto error; |
| 395 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | { |
Al Viro | fd68322 | 2006-09-26 22:17:51 -0700 | [diff] [blame] | 397 | __be32 addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | memcpy(&addr, &optptr[optptr[2]-1], 4); |
Denis V. Lunev | 0e6bd4a | 2008-03-24 15:29:23 -0700 | [diff] [blame] | 399 | if (inet_addr_type(net, addr) == RTN_UNICAST) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | break; |
| 401 | if (skb) |
Chris Metcalf | 48bdf07 | 2011-05-29 10:55:44 +0000 | [diff] [blame] | 402 | timeptr = &optptr[optptr[2]+3]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | } |
| 404 | opt->ts_needtime = 1; |
| 405 | optptr[2] += 8; |
| 406 | break; |
Weilong Chen | dd9b455 | 2013-12-31 15:11:28 +0800 | [diff] [blame] | 407 | default: |
Eric W. Biederman | 52e804c | 2012-11-16 03:03:05 +0000 | [diff] [blame] | 408 | if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | pp_ptr = optptr + 3; |
| 410 | goto error; |
| 411 | } |
| 412 | break; |
| 413 | } |
| 414 | if (timeptr) { |
Deepa Dinamani | 822c868 | 2016-02-27 00:32:15 -0800 | [diff] [blame] | 415 | __be32 midtime; |
| 416 | |
| 417 | midtime = inet_current_timestamp(); |
| 418 | memcpy(timeptr, &midtime, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | opt->is_changed = 1; |
| 420 | } |
David Ward | fa2b04f | 2013-03-05 17:06:32 +0000 | [diff] [blame] | 421 | } else if ((optptr[3]&0xF) != IPOPT_TS_PRESPEC) { |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 422 | unsigned int overflow = optptr[3]>>4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | if (overflow == 15) { |
| 424 | pp_ptr = optptr + 3; |
| 425 | goto error; |
| 426 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | if (skb) { |
| 428 | optptr[3] = (optptr[3]&0xF)|((overflow+1)<<4); |
| 429 | opt->is_changed = 1; |
| 430 | } |
| 431 | } |
David Ward | 4660c7f | 2013-03-11 10:43:39 +0000 | [diff] [blame] | 432 | opt->ts = optptr - iph; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | break; |
Weilong Chen | dd9b455 | 2013-12-31 15:11:28 +0800 | [diff] [blame] | 434 | case IPOPT_RA: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | if (optlen < 4) { |
| 436 | pp_ptr = optptr + 1; |
| 437 | goto error; |
| 438 | } |
| 439 | if (optptr[2] == 0 && optptr[3] == 0) |
| 440 | opt->router_alert = optptr - iph; |
| 441 | break; |
Weilong Chen | dd9b455 | 2013-12-31 15:11:28 +0800 | [diff] [blame] | 442 | case IPOPT_CIPSO: |
Eric W. Biederman | 52e804c | 2012-11-16 03:03:05 +0000 | [diff] [blame] | 443 | if ((!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) || opt->cipso) { |
Paul Moore | 11a03f7 | 2006-08-03 16:46:20 -0700 | [diff] [blame] | 444 | pp_ptr = optptr; |
| 445 | goto error; |
| 446 | } |
| 447 | opt->cipso = optptr - iph; |
Paul Moore | 15c45f7 | 2008-10-10 10:16:34 -0400 | [diff] [blame] | 448 | if (cipso_v4_validate(skb, &optptr)) { |
Paul Moore | 11a03f7 | 2006-08-03 16:46:20 -0700 | [diff] [blame] | 449 | pp_ptr = optptr; |
| 450 | goto error; |
| 451 | } |
| 452 | break; |
Weilong Chen | dd9b455 | 2013-12-31 15:11:28 +0800 | [diff] [blame] | 453 | case IPOPT_SEC: |
| 454 | case IPOPT_SID: |
| 455 | default: |
Eric W. Biederman | 52e804c | 2012-11-16 03:03:05 +0000 | [diff] [blame] | 456 | if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | pp_ptr = optptr; |
| 458 | goto error; |
| 459 | } |
| 460 | break; |
| 461 | } |
| 462 | l -= optlen; |
| 463 | optptr += optlen; |
| 464 | } |
| 465 | |
| 466 | eol: |
| 467 | if (!pp_ptr) |
| 468 | return 0; |
| 469 | |
| 470 | error: |
| 471 | if (skb) { |
| 472 | icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((pp_ptr-iph)<<24)); |
| 473 | } |
| 474 | return -EINVAL; |
| 475 | } |
Bandan Das | 462fb2a | 2010-09-19 09:34:33 +0000 | [diff] [blame] | 476 | EXPORT_SYMBOL(ip_options_compile); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
| 478 | /* |
| 479 | * Undo all the changes done by ip_options_compile(). |
| 480 | */ |
| 481 | |
Daniel Baluta | 5e73ea1 | 2012-04-15 01:34:41 +0000 | [diff] [blame] | 482 | void ip_options_undo(struct ip_options *opt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | { |
| 484 | if (opt->srr) { |
Daniel Baluta | 5e73ea1 | 2012-04-15 01:34:41 +0000 | [diff] [blame] | 485 | unsigned char *optptr = opt->__data+opt->srr-sizeof(struct iphdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | memmove(optptr+7, optptr+3, optptr[1]-7); |
| 487 | memcpy(optptr+3, &opt->faddr, 4); |
| 488 | } |
| 489 | if (opt->rr_needaddr) { |
Daniel Baluta | 5e73ea1 | 2012-04-15 01:34:41 +0000 | [diff] [blame] | 490 | unsigned char *optptr = opt->__data+opt->rr-sizeof(struct iphdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | optptr[2] -= 4; |
| 492 | memset(&optptr[optptr[2]-1], 0, 4); |
| 493 | } |
| 494 | if (opt->ts) { |
Daniel Baluta | 5e73ea1 | 2012-04-15 01:34:41 +0000 | [diff] [blame] | 495 | unsigned char *optptr = opt->__data+opt->ts-sizeof(struct iphdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | if (opt->ts_needtime) { |
| 497 | optptr[2] -= 4; |
| 498 | memset(&optptr[optptr[2]-1], 0, 4); |
| 499 | if ((optptr[3]&0xF) == IPOPT_TS_PRESPEC) |
| 500 | optptr[2] -= 4; |
| 501 | } |
| 502 | if (opt->ts_needaddr) { |
| 503 | optptr[2] -= 4; |
| 504 | memset(&optptr[optptr[2]-1], 0, 4); |
| 505 | } |
| 506 | } |
| 507 | } |
| 508 | |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 509 | static struct ip_options_rcu *ip_options_get_alloc(const int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | { |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 511 | return kzalloc(sizeof(struct ip_options_rcu) + ((optlen + 3) & ~3), |
Mariusz Kozlowski | 3764070 | 2007-07-31 14:06:45 -0700 | [diff] [blame] | 512 | GFP_KERNEL); |
Arnaldo Carvalho de Melo | 4c6ea29 | 2005-08-16 19:46:48 -0300 | [diff] [blame] | 513 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 515 | static int ip_options_get_finish(struct net *net, struct ip_options_rcu **optp, |
| 516 | struct ip_options_rcu *opt, int optlen) |
Arnaldo Carvalho de Melo | 4c6ea29 | 2005-08-16 19:46:48 -0300 | [diff] [blame] | 517 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | while (optlen & 3) |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 519 | opt->opt.__data[optlen++] = IPOPT_END; |
| 520 | opt->opt.optlen = optlen; |
| 521 | if (optlen && ip_options_compile(net, &opt->opt, NULL)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | kfree(opt); |
| 523 | return -EINVAL; |
| 524 | } |
Jesper Juhl | a51482b | 2005-11-08 09:41:34 -0800 | [diff] [blame] | 525 | kfree(*optp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | *optp = opt; |
| 527 | return 0; |
| 528 | } |
| 529 | |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 530 | int ip_options_get_from_user(struct net *net, struct ip_options_rcu **optp, |
Denis V. Lunev | f2c4802 | 2008-03-24 15:29:55 -0700 | [diff] [blame] | 531 | unsigned char __user *data, int optlen) |
Arnaldo Carvalho de Melo | 4c6ea29 | 2005-08-16 19:46:48 -0300 | [diff] [blame] | 532 | { |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 533 | struct ip_options_rcu *opt = ip_options_get_alloc(optlen); |
Arnaldo Carvalho de Melo | 4c6ea29 | 2005-08-16 19:46:48 -0300 | [diff] [blame] | 534 | |
| 535 | if (!opt) |
| 536 | return -ENOMEM; |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 537 | if (optlen && copy_from_user(opt->opt.__data, data, optlen)) { |
Arnaldo Carvalho de Melo | 4c6ea29 | 2005-08-16 19:46:48 -0300 | [diff] [blame] | 538 | kfree(opt); |
| 539 | return -EFAULT; |
| 540 | } |
Denis V. Lunev | f2c4802 | 2008-03-24 15:29:55 -0700 | [diff] [blame] | 541 | return ip_options_get_finish(net, optp, opt, optlen); |
Arnaldo Carvalho de Melo | 4c6ea29 | 2005-08-16 19:46:48 -0300 | [diff] [blame] | 542 | } |
| 543 | |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 544 | int ip_options_get(struct net *net, struct ip_options_rcu **optp, |
Denis V. Lunev | f2c4802 | 2008-03-24 15:29:55 -0700 | [diff] [blame] | 545 | unsigned char *data, int optlen) |
Arnaldo Carvalho de Melo | 4c6ea29 | 2005-08-16 19:46:48 -0300 | [diff] [blame] | 546 | { |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 547 | struct ip_options_rcu *opt = ip_options_get_alloc(optlen); |
Arnaldo Carvalho de Melo | 4c6ea29 | 2005-08-16 19:46:48 -0300 | [diff] [blame] | 548 | |
| 549 | if (!opt) |
| 550 | return -ENOMEM; |
| 551 | if (optlen) |
Eric Dumazet | f6d8bd0 | 2011-04-21 09:45:37 +0000 | [diff] [blame] | 552 | memcpy(opt->opt.__data, data, optlen); |
Denis V. Lunev | f2c4802 | 2008-03-24 15:29:55 -0700 | [diff] [blame] | 553 | return ip_options_get_finish(net, optp, opt, optlen); |
Arnaldo Carvalho de Melo | 4c6ea29 | 2005-08-16 19:46:48 -0300 | [diff] [blame] | 554 | } |
| 555 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | void ip_forward_options(struct sk_buff *skb) |
| 557 | { |
Daniel Baluta | 5e73ea1 | 2012-04-15 01:34:41 +0000 | [diff] [blame] | 558 | struct ip_options *opt = &(IPCB(skb)->opt); |
| 559 | unsigned char *optptr; |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 560 | struct rtable *rt = skb_rtable(skb); |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 561 | unsigned char *raw = skb_network_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
| 563 | if (opt->rr_needaddr) { |
| 564 | optptr = (unsigned char *)raw + opt->rr; |
David S. Miller | 8e36360 | 2011-05-13 17:29:41 -0400 | [diff] [blame] | 565 | ip_rt_get_source(&optptr[optptr[2]-5], skb, rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | opt->is_changed = 1; |
| 567 | } |
| 568 | if (opt->srr_is_hit) { |
| 569 | int srrptr, srrspace; |
| 570 | |
| 571 | optptr = raw + opt->srr; |
| 572 | |
Weilong Chen | a22318e | 2013-12-23 14:37:26 +0800 | [diff] [blame] | 573 | for ( srrptr = optptr[2], srrspace = optptr[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | srrptr <= srrspace; |
| 575 | srrptr += 4 |
| 576 | ) { |
| 577 | if (srrptr + 3 > srrspace) |
| 578 | break; |
Li Wei | ac8a481 | 2011-11-22 23:33:10 +0000 | [diff] [blame] | 579 | if (memcmp(&opt->nexthop, &optptr[srrptr-1], 4) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | break; |
| 581 | } |
| 582 | if (srrptr + 3 <= srrspace) { |
| 583 | opt->is_changed = 1; |
Li Wei | ac8a481 | 2011-11-22 23:33:10 +0000 | [diff] [blame] | 584 | ip_hdr(skb)->daddr = opt->nexthop; |
Li Wei | 5dc7883 | 2012-02-09 21:15:25 +0000 | [diff] [blame] | 585 | ip_rt_get_source(&optptr[srrptr-1], skb, rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | optptr[2] = srrptr+4; |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 587 | } else { |
| 588 | net_crit_ratelimited("%s(): Argh! Destination lost!\n", |
| 589 | __func__); |
| 590 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | if (opt->ts_needaddr) { |
| 592 | optptr = raw + opt->ts; |
David S. Miller | 8e36360 | 2011-05-13 17:29:41 -0400 | [diff] [blame] | 593 | ip_rt_get_source(&optptr[optptr[2]-9], skb, rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | opt->is_changed = 1; |
| 595 | } |
| 596 | } |
| 597 | if (opt->is_changed) { |
| 598 | opt->is_changed = 0; |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 599 | ip_send_check(ip_hdr(skb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | } |
| 601 | } |
| 602 | |
| 603 | int ip_options_rcv_srr(struct sk_buff *skb) |
| 604 | { |
| 605 | struct ip_options *opt = &(IPCB(skb)->opt); |
| 606 | int srrspace, srrptr; |
Al Viro | 9e12bb2 | 2006-09-26 21:25:20 -0700 | [diff] [blame] | 607 | __be32 nexthop; |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 608 | struct iphdr *iph = ip_hdr(skb); |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 609 | unsigned char *optptr = skb_network_header(skb) + opt->srr; |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 610 | struct rtable *rt = skb_rtable(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | struct rtable *rt2; |
Eric Dumazet | 7fee226 | 2010-05-11 23:19:48 +0000 | [diff] [blame] | 612 | unsigned long orefdst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | int err; |
| 614 | |
David S. Miller | 1094955 | 2011-05-12 19:26:57 -0400 | [diff] [blame] | 615 | if (!rt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | return 0; |
| 617 | |
| 618 | if (skb->pkt_type != PACKET_HOST) |
| 619 | return -EINVAL; |
| 620 | if (rt->rt_type == RTN_UNICAST) { |
| 621 | if (!opt->is_strictroute) |
| 622 | return 0; |
| 623 | icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl(16<<24)); |
| 624 | return -EINVAL; |
| 625 | } |
| 626 | if (rt->rt_type != RTN_LOCAL) |
| 627 | return -EINVAL; |
| 628 | |
Weilong Chen | a22318e | 2013-12-23 14:37:26 +0800 | [diff] [blame] | 629 | for (srrptr = optptr[2], srrspace = optptr[1]; srrptr <= srrspace; srrptr += 4) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | if (srrptr + 3 > srrspace) { |
| 631 | icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((opt->srr+2)<<24)); |
| 632 | return -EINVAL; |
| 633 | } |
| 634 | memcpy(&nexthop, &optptr[srrptr-1], 4); |
| 635 | |
Eric Dumazet | 7fee226 | 2010-05-11 23:19:48 +0000 | [diff] [blame] | 636 | orefdst = skb->_skb_refdst; |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 637 | skb_dst_set(skb, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | err = ip_route_input(skb, nexthop, iph->saddr, iph->tos, skb->dev); |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 639 | rt2 = skb_rtable(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | if (err || (rt2->rt_type != RTN_UNICAST && rt2->rt_type != RTN_LOCAL)) { |
Eric Dumazet | 7fee226 | 2010-05-11 23:19:48 +0000 | [diff] [blame] | 641 | skb_dst_drop(skb); |
| 642 | skb->_skb_refdst = orefdst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | return -EINVAL; |
| 644 | } |
Eric Dumazet | 7fee226 | 2010-05-11 23:19:48 +0000 | [diff] [blame] | 645 | refdst_drop(orefdst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | if (rt2->rt_type != RTN_LOCAL) |
| 647 | break; |
| 648 | /* Superfast 8) loopback forward */ |
David S. Miller | c30883b | 2011-05-12 19:30:58 -0400 | [diff] [blame] | 649 | iph->daddr = nexthop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | opt->is_changed = 1; |
| 651 | } |
| 652 | if (srrptr <= srrspace) { |
| 653 | opt->srr_is_hit = 1; |
Li Wei | ac8a481 | 2011-11-22 23:33:10 +0000 | [diff] [blame] | 654 | opt->nexthop = nexthop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | opt->is_changed = 1; |
| 656 | } |
| 657 | return 0; |
| 658 | } |
Bandan Das | 462fb2a | 2010-09-19 09:34:33 +0000 | [diff] [blame] | 659 | EXPORT_SYMBOL(ip_options_rcv_srr); |