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