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