blob: 4d158ff1def1a8fae218b268c7e66224eed95adf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -07008 * Authors: A.N.Kuznetsov
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Joe Perchesafd465032012-03-12 07:03:32 +000012#define pr_fmt(fmt) "IPv4: " fmt
13
Randy Dunlap4fc268d2006-01-11 12:17:47 -080014#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/types.h>
18#include <asm/uaccess.h>
Chris Metcalf48bdf072011-05-29 10:55:44 +000019#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#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 Melo14c85022005-12-27 02:43:12 -020028#include <net/route.h>
Paul Moore11a03f72006-08-03 16:46:20 -070029#include <net/cipso_ipv4.h>
David S. Miller35ebf652012-06-28 03:59:11 -070030#include <net/ip_fib.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090032/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * Write options to IP header, record destination address to
34 * source route option, address of outgoing interface
35 * (we should already know it, so that this function is allowed be
36 * called only after routing decision) and timestamp,
37 * if we originate this datagram.
38 *
39 * daddr is real destination address, next hop is recorded in IP header.
40 * saddr is address of outgoing interface.
41 */
42
Eric Dumazetf6d8bd02011-04-21 09:45:37 +000043void ip_options_build(struct sk_buff *skb, struct ip_options *opt,
David S. Miller8e363602011-05-13 17:29:41 -040044 __be32 daddr, struct rtable *rt, int is_frag)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -070046 unsigned char *iph = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48 memcpy(&(IPCB(skb)->opt), opt, sizeof(struct ip_options));
49 memcpy(iph+sizeof(struct iphdr), opt->__data, opt->optlen);
50 opt = &(IPCB(skb)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 if (opt->srr)
53 memcpy(iph+opt->srr+iph[opt->srr+1]-4, &daddr, 4);
54
55 if (!is_frag) {
56 if (opt->rr_needaddr)
David S. Miller8e363602011-05-13 17:29:41 -040057 ip_rt_get_source(iph+opt->rr+iph[opt->rr+2]-5, skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 if (opt->ts_needaddr)
David S. Miller8e363602011-05-13 17:29:41 -040059 ip_rt_get_source(iph+opt->ts+iph[opt->ts+2]-9, skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 if (opt->ts_needtime) {
Al Viroe25d2ca2006-09-27 18:28:47 -070061 __be32 midtime;
Deepa Dinamani822c8682016-02-27 00:32:15 -080062
63 midtime = inet_current_timestamp();
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 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 Hideakie905a9e2007-02-09 23:24:47 +090080/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 * 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 Dumazet24a2d432014-09-27 09:50:55 -070089int __ip_options_echo(struct ip_options *dopt, struct sk_buff *skb,
90 const struct ip_options *sopt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 unsigned char *sptr, *dptr;
93 int soffset, doffset;
94 int optlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 memset(dopt, 0, sizeof(struct ip_options));
97
Eric Dumazetf6d8bd02011-04-21 09:45:37 +000098 if (sopt->optlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700101 sptr = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 dptr = dopt->__data;
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (sopt->rr) {
105 optlen = sptr[sopt->rr+1];
106 soffset = sptr[sopt->rr+2];
107 dopt->rr = dopt->optlen + sizeof(struct iphdr);
108 memcpy(dptr, sptr+sopt->rr, optlen);
109 if (sopt->rr_needaddr && soffset <= optlen) {
110 if (soffset + 3 > optlen)
111 return -EINVAL;
112 dptr[2] = soffset + 4;
113 dopt->rr_needaddr = 1;
114 }
115 dptr += optlen;
116 dopt->optlen += optlen;
117 }
118 if (sopt->ts) {
119 optlen = sptr[sopt->ts+1];
120 soffset = sptr[sopt->ts+2];
121 dopt->ts = dopt->optlen + sizeof(struct iphdr);
122 memcpy(dptr, sptr+sopt->ts, optlen);
123 if (soffset <= optlen) {
124 if (sopt->ts_needaddr) {
125 if (soffset + 3 > optlen)
126 return -EINVAL;
127 dopt->ts_needaddr = 1;
128 soffset += 4;
129 }
130 if (sopt->ts_needtime) {
131 if (soffset + 3 > optlen)
132 return -EINVAL;
133 if ((dptr[3]&0xF) != IPOPT_TS_PRESPEC) {
134 dopt->ts_needtime = 1;
135 soffset += 4;
136 } else {
137 dopt->ts_needtime = 0;
138
Jan Luebbe8628bd82011-03-24 07:44:22 +0000139 if (soffset + 7 <= optlen) {
Al Virofd683222006-09-26 22:17:51 -0700140 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Jan Luebbe8628bd82011-03-24 07:44:22 +0000142 memcpy(&addr, dptr+soffset-1, 4);
143 if (inet_addr_type(dev_net(skb_dst(skb)->dev), addr) != RTN_UNICAST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 dopt->ts_needtime = 1;
145 soffset += 8;
146 }
147 }
148 }
149 }
150 dptr[2] = soffset;
151 }
152 dptr += optlen;
153 dopt->optlen += optlen;
154 }
155 if (sopt->srr) {
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000156 unsigned char *start = sptr+sopt->srr;
Al Viro3ca3c682006-09-27 18:28:07 -0700157 __be32 faddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 optlen = start[1];
160 soffset = start[2];
161 doffset = 0;
162 if (soffset > optlen)
163 soffset = optlen + 1;
164 soffset -= 4;
165 if (soffset > 3) {
166 memcpy(&faddr, &start[soffset-1], 4);
Weilong Chena22318e2013-12-23 14:37:26 +0800167 for (soffset -= 4, doffset = 4; soffset > 3; soffset -= 4, doffset += 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 memcpy(&dptr[doffset-1], &start[soffset-1], 4);
169 /*
170 * RFC1812 requires to fix illegal source routes.
171 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700172 if (memcmp(&ip_hdr(skb)->saddr,
173 &start[soffset + 3], 4) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 doffset -= 4;
175 }
176 if (doffset > 3) {
Julian Anastasov6255e5e2012-07-18 21:34:24 +0000177 __be32 daddr = fib_compute_spec_dst(skb);
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 memcpy(&start[doffset-1], &daddr, 4);
180 dopt->faddr = faddr;
181 dptr[0] = start[0];
182 dptr[1] = doffset+3;
183 dptr[2] = 4;
184 dptr += doffset+3;
185 dopt->srr = dopt->optlen + sizeof(struct iphdr);
186 dopt->optlen += doffset+3;
187 dopt->is_strictroute = sopt->is_strictroute;
188 }
189 }
Paul Moore11a03f72006-08-03 16:46:20 -0700190 if (sopt->cipso) {
191 optlen = sptr[sopt->cipso+1];
192 dopt->cipso = dopt->optlen+sizeof(struct iphdr);
193 memcpy(dptr, sptr+sopt->cipso, optlen);
194 dptr += optlen;
195 dopt->optlen += optlen;
196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 while (dopt->optlen & 3) {
198 *dptr++ = IPOPT_END;
199 dopt->optlen++;
200 }
201 return 0;
202}
203
204/*
205 * Options "fragmenting", just fill options not
206 * allowed in fragments with NOOPs.
207 * Simple and stupid 8), but the most efficient way.
208 */
209
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000210void ip_options_fragment(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700212 unsigned char *optptr = skb_network_header(skb) + sizeof(struct iphdr);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000213 struct ip_options *opt = &(IPCB(skb)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 int l = opt->optlen;
215 int optlen;
216
217 while (l > 0) {
218 switch (*optptr) {
219 case IPOPT_END:
220 return;
221 case IPOPT_NOOP:
222 l--;
223 optptr++;
224 continue;
225 }
226 optlen = optptr[1];
Weilong Chena22318e2013-12-23 14:37:26 +0800227 if (optlen < 2 || optlen > l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return;
229 if (!IPOPT_COPIED(*optptr))
230 memset(optptr, IPOPT_NOOP, optlen);
231 l -= optlen;
232 optptr += optlen;
233 }
234 opt->ts = 0;
235 opt->rr = 0;
236 opt->rr_needaddr = 0;
237 opt->ts_needaddr = 0;
238 opt->ts_needtime = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000241/* helper used by ip_options_compile() to call fib_compute_spec_dst()
242 * at most one time.
243 */
244static void spec_dst_fill(__be32 *spec_dst, struct sk_buff *skb)
245{
246 if (*spec_dst == htonl(INADDR_ANY))
247 *spec_dst = fib_compute_spec_dst(skb);
248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*
251 * Verify options and fill pointers in struct options.
252 * Caller should clear *opt, and set opt->data.
253 * If opt == NULL, then skb->data should point to IP header.
254 */
255
Denis V. Lunev0e6bd4a2008-03-24 15:29:23 -0700256int ip_options_compile(struct net *net,
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000257 struct ip_options *opt, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000259 __be32 spec_dst = htonl(INADDR_ANY);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000260 unsigned char *pp_ptr = NULL;
David S. Miller11604722012-07-04 16:13:17 -0700261 struct rtable *rt = NULL;
David S. Miller35ebf652012-06-28 03:59:11 -0700262 unsigned char *optptr;
263 unsigned char *iph;
264 int optlen, l;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Ian Morris00db4122015-04-03 09:17:27 +0100266 if (skb) {
David S. Miller11604722012-07-04 16:13:17 -0700267 rt = skb_rtable(skb);
Denis V. Lunev22aba382008-03-22 16:36:20 -0700268 optptr = (unsigned char *)&(ip_hdr(skb)[1]);
269 } else
Denis V. Lunev10fe7d82008-03-22 16:35:00 -0700270 optptr = opt->__data;
Denis V. Lunev22aba382008-03-22 16:36:20 -0700271 iph = optptr - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 for (l = opt->optlen; l > 0; ) {
274 switch (*optptr) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800275 case IPOPT_END:
Weilong Chena22318e2013-12-23 14:37:26 +0800276 for (optptr++, l--; l > 0; optptr++, l--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (*optptr != IPOPT_END) {
278 *optptr = IPOPT_END;
279 opt->is_changed = 1;
280 }
281 }
282 goto eol;
Weilong Chendd9b4552013-12-31 15:11:28 +0800283 case IPOPT_NOOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 l--;
285 optptr++;
286 continue;
287 }
Eric Dumazet10ec9472014-07-21 07:17:42 +0200288 if (unlikely(l < 2)) {
289 pp_ptr = optptr;
290 goto error;
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 optlen = optptr[1];
Weilong Chena22318e2013-12-23 14:37:26 +0800293 if (optlen < 2 || optlen > l) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 pp_ptr = optptr;
295 goto error;
296 }
297 switch (*optptr) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800298 case IPOPT_SSRR:
299 case IPOPT_LSRR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (optlen < 3) {
301 pp_ptr = optptr + 1;
302 goto error;
303 }
304 if (optptr[2] < 4) {
305 pp_ptr = optptr + 2;
306 goto error;
307 }
308 /* NB: cf RFC-1812 5.2.4.1 */
309 if (opt->srr) {
310 pp_ptr = optptr;
311 goto error;
312 }
313 if (!skb) {
314 if (optptr[2] != 4 || optlen < 7 || ((optlen-3) & 3)) {
315 pp_ptr = optptr + 1;
316 goto error;
317 }
318 memcpy(&opt->faddr, &optptr[3], 4);
319 if (optlen > 7)
320 memmove(&optptr[3], &optptr[7], optlen-7);
321 }
322 opt->is_strictroute = (optptr[0] == IPOPT_SSRR);
323 opt->srr = optptr - iph;
324 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800325 case IPOPT_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (opt->rr) {
327 pp_ptr = optptr;
328 goto error;
329 }
330 if (optlen < 3) {
331 pp_ptr = optptr + 1;
332 goto error;
333 }
334 if (optptr[2] < 4) {
335 pp_ptr = optptr + 2;
336 goto error;
337 }
338 if (optptr[2] <= optlen) {
339 if (optptr[2]+3 > optlen) {
340 pp_ptr = optptr + 2;
341 goto error;
342 }
David S. Miller11604722012-07-04 16:13:17 -0700343 if (rt) {
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000344 spec_dst_fill(&spec_dst, skb);
David S. Miller35ebf652012-06-28 03:59:11 -0700345 memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 opt->is_changed = 1;
347 }
348 optptr[2] += 4;
349 opt->rr_needaddr = 1;
350 }
351 opt->rr = optptr - iph;
352 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800353 case IPOPT_TIMESTAMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (opt->ts) {
355 pp_ptr = optptr;
356 goto error;
357 }
358 if (optlen < 4) {
359 pp_ptr = optptr + 1;
360 goto error;
361 }
362 if (optptr[2] < 5) {
363 pp_ptr = optptr + 2;
364 goto error;
365 }
366 if (optptr[2] <= optlen) {
Chris Metcalf48bdf072011-05-29 10:55:44 +0000367 unsigned char *timeptr = NULL;
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900368 if (optptr[2]+3 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 pp_ptr = optptr + 2;
370 goto error;
371 }
372 switch (optptr[3]&0xF) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800373 case IPOPT_TS_TSONLY:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900374 if (skb)
Chris Metcalf48bdf072011-05-29 10:55:44 +0000375 timeptr = &optptr[optptr[2]-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 opt->ts_needtime = 1;
377 optptr[2] += 4;
378 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800379 case IPOPT_TS_TSANDADDR:
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900380 if (optptr[2]+7 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 pp_ptr = optptr + 2;
382 goto error;
383 }
David S. Miller11604722012-07-04 16:13:17 -0700384 if (rt) {
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000385 spec_dst_fill(&spec_dst, skb);
David S. Miller35ebf652012-06-28 03:59:11 -0700386 memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
Chris Metcalf48bdf072011-05-29 10:55:44 +0000387 timeptr = &optptr[optptr[2]+3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389 opt->ts_needaddr = 1;
390 opt->ts_needtime = 1;
391 optptr[2] += 8;
392 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800393 case IPOPT_TS_PRESPEC:
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900394 if (optptr[2]+7 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 pp_ptr = optptr + 2;
396 goto error;
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 {
Al Virofd683222006-09-26 22:17:51 -0700399 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 memcpy(&addr, &optptr[optptr[2]-1], 4);
Denis V. Lunev0e6bd4a2008-03-24 15:29:23 -0700401 if (inet_addr_type(net, addr) == RTN_UNICAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 break;
403 if (skb)
Chris Metcalf48bdf072011-05-29 10:55:44 +0000404 timeptr = &optptr[optptr[2]+3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406 opt->ts_needtime = 1;
407 optptr[2] += 8;
408 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800409 default:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000410 if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 pp_ptr = optptr + 3;
412 goto error;
413 }
414 break;
415 }
416 if (timeptr) {
Deepa Dinamani822c8682016-02-27 00:32:15 -0800417 __be32 midtime;
418
419 midtime = inet_current_timestamp();
420 memcpy(timeptr, &midtime, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 opt->is_changed = 1;
422 }
David Wardfa2b04f2013-03-05 17:06:32 +0000423 } else if ((optptr[3]&0xF) != IPOPT_TS_PRESPEC) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000424 unsigned int overflow = optptr[3]>>4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (overflow == 15) {
426 pp_ptr = optptr + 3;
427 goto error;
428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (skb) {
430 optptr[3] = (optptr[3]&0xF)|((overflow+1)<<4);
431 opt->is_changed = 1;
432 }
433 }
David Ward4660c7f2013-03-11 10:43:39 +0000434 opt->ts = optptr - iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800436 case IPOPT_RA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (optlen < 4) {
438 pp_ptr = optptr + 1;
439 goto error;
440 }
441 if (optptr[2] == 0 && optptr[3] == 0)
442 opt->router_alert = optptr - iph;
443 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800444 case IPOPT_CIPSO:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000445 if ((!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) || opt->cipso) {
Paul Moore11a03f72006-08-03 16:46:20 -0700446 pp_ptr = optptr;
447 goto error;
448 }
449 opt->cipso = optptr - iph;
Paul Moore15c45f72008-10-10 10:16:34 -0400450 if (cipso_v4_validate(skb, &optptr)) {
Paul Moore11a03f72006-08-03 16:46:20 -0700451 pp_ptr = optptr;
452 goto error;
453 }
454 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800455 case IPOPT_SEC:
456 case IPOPT_SID:
457 default:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000458 if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 pp_ptr = optptr;
460 goto error;
461 }
462 break;
463 }
464 l -= optlen;
465 optptr += optlen;
466 }
467
468eol:
469 if (!pp_ptr)
470 return 0;
471
472error:
473 if (skb) {
474 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((pp_ptr-iph)<<24));
475 }
476 return -EINVAL;
477}
Bandan Das462fb2a2010-09-19 09:34:33 +0000478EXPORT_SYMBOL(ip_options_compile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480/*
481 * Undo all the changes done by ip_options_compile().
482 */
483
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000484void ip_options_undo(struct ip_options *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 if (opt->srr) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000487 unsigned char *optptr = opt->__data+opt->srr-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 memmove(optptr+7, optptr+3, optptr[1]-7);
489 memcpy(optptr+3, &opt->faddr, 4);
490 }
491 if (opt->rr_needaddr) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000492 unsigned char *optptr = opt->__data+opt->rr-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 optptr[2] -= 4;
494 memset(&optptr[optptr[2]-1], 0, 4);
495 }
496 if (opt->ts) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000497 unsigned char *optptr = opt->__data+opt->ts-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (opt->ts_needtime) {
499 optptr[2] -= 4;
500 memset(&optptr[optptr[2]-1], 0, 4);
501 if ((optptr[3]&0xF) == IPOPT_TS_PRESPEC)
502 optptr[2] -= 4;
503 }
504 if (opt->ts_needaddr) {
505 optptr[2] -= 4;
506 memset(&optptr[optptr[2]-1], 0, 4);
507 }
508 }
509}
510
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000511static struct ip_options_rcu *ip_options_get_alloc(const int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000513 return kzalloc(sizeof(struct ip_options_rcu) + ((optlen + 3) & ~3),
Mariusz Kozlowski37640702007-07-31 14:06:45 -0700514 GFP_KERNEL);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300515}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000517static int ip_options_get_finish(struct net *net, struct ip_options_rcu **optp,
518 struct ip_options_rcu *opt, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300519{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 while (optlen & 3)
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000521 opt->opt.__data[optlen++] = IPOPT_END;
522 opt->opt.optlen = optlen;
523 if (optlen && ip_options_compile(net, &opt->opt, NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 kfree(opt);
525 return -EINVAL;
526 }
Jesper Juhla51482b2005-11-08 09:41:34 -0800527 kfree(*optp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 *optp = opt;
529 return 0;
530}
531
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000532int ip_options_get_from_user(struct net *net, struct ip_options_rcu **optp,
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700533 unsigned char __user *data, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300534{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000535 struct ip_options_rcu *opt = ip_options_get_alloc(optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300536
537 if (!opt)
538 return -ENOMEM;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000539 if (optlen && copy_from_user(opt->opt.__data, data, optlen)) {
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300540 kfree(opt);
541 return -EFAULT;
542 }
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700543 return ip_options_get_finish(net, optp, opt, optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300544}
545
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000546int ip_options_get(struct net *net, struct ip_options_rcu **optp,
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700547 unsigned char *data, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300548{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000549 struct ip_options_rcu *opt = ip_options_get_alloc(optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300550
551 if (!opt)
552 return -ENOMEM;
553 if (optlen)
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000554 memcpy(opt->opt.__data, data, optlen);
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700555 return ip_options_get_finish(net, optp, opt, optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300556}
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558void ip_forward_options(struct sk_buff *skb)
559{
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000560 struct ip_options *opt = &(IPCB(skb)->opt);
561 unsigned char *optptr;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000562 struct rtable *rt = skb_rtable(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700563 unsigned char *raw = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 if (opt->rr_needaddr) {
566 optptr = (unsigned char *)raw + opt->rr;
David S. Miller8e363602011-05-13 17:29:41 -0400567 ip_rt_get_source(&optptr[optptr[2]-5], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 opt->is_changed = 1;
569 }
570 if (opt->srr_is_hit) {
571 int srrptr, srrspace;
572
573 optptr = raw + opt->srr;
574
Weilong Chena22318e2013-12-23 14:37:26 +0800575 for ( srrptr = optptr[2], srrspace = optptr[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 srrptr <= srrspace;
577 srrptr += 4
578 ) {
579 if (srrptr + 3 > srrspace)
580 break;
Li Weiac8a4812011-11-22 23:33:10 +0000581 if (memcmp(&opt->nexthop, &optptr[srrptr-1], 4) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 break;
583 }
584 if (srrptr + 3 <= srrspace) {
585 opt->is_changed = 1;
Li Weiac8a4812011-11-22 23:33:10 +0000586 ip_hdr(skb)->daddr = opt->nexthop;
Li Wei5dc78832012-02-09 21:15:25 +0000587 ip_rt_get_source(&optptr[srrptr-1], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 optptr[2] = srrptr+4;
Joe Perchese87cc472012-05-13 21:56:26 +0000589 } else {
590 net_crit_ratelimited("%s(): Argh! Destination lost!\n",
591 __func__);
592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (opt->ts_needaddr) {
594 optptr = raw + opt->ts;
David S. Miller8e363602011-05-13 17:29:41 -0400595 ip_rt_get_source(&optptr[optptr[2]-9], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 opt->is_changed = 1;
597 }
598 }
599 if (opt->is_changed) {
600 opt->is_changed = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700601 ip_send_check(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
603}
604
605int ip_options_rcv_srr(struct sk_buff *skb)
606{
607 struct ip_options *opt = &(IPCB(skb)->opt);
608 int srrspace, srrptr;
Al Viro9e12bb22006-09-26 21:25:20 -0700609 __be32 nexthop;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700610 struct iphdr *iph = ip_hdr(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700611 unsigned char *optptr = skb_network_header(skb) + opt->srr;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000612 struct rtable *rt = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 struct rtable *rt2;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000614 unsigned long orefdst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 int err;
616
David S. Miller10949552011-05-12 19:26:57 -0400617 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return 0;
619
620 if (skb->pkt_type != PACKET_HOST)
621 return -EINVAL;
622 if (rt->rt_type == RTN_UNICAST) {
623 if (!opt->is_strictroute)
624 return 0;
625 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl(16<<24));
626 return -EINVAL;
627 }
628 if (rt->rt_type != RTN_LOCAL)
629 return -EINVAL;
630
Weilong Chena22318e2013-12-23 14:37:26 +0800631 for (srrptr = optptr[2], srrspace = optptr[1]; srrptr <= srrspace; srrptr += 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (srrptr + 3 > srrspace) {
633 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((opt->srr+2)<<24));
634 return -EINVAL;
635 }
636 memcpy(&nexthop, &optptr[srrptr-1], 4);
637
Eric Dumazet7fee2262010-05-11 23:19:48 +0000638 orefdst = skb->_skb_refdst;
Eric Dumazetadf30902009-06-02 05:19:30 +0000639 skb_dst_set(skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 err = ip_route_input(skb, nexthop, iph->saddr, iph->tos, skb->dev);
Eric Dumazet511c3f92009-06-02 05:14:27 +0000641 rt2 = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (err || (rt2->rt_type != RTN_UNICAST && rt2->rt_type != RTN_LOCAL)) {
Eric Dumazet7fee2262010-05-11 23:19:48 +0000643 skb_dst_drop(skb);
644 skb->_skb_refdst = orefdst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return -EINVAL;
646 }
Eric Dumazet7fee2262010-05-11 23:19:48 +0000647 refdst_drop(orefdst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (rt2->rt_type != RTN_LOCAL)
649 break;
650 /* Superfast 8) loopback forward */
David S. Millerc30883b2011-05-12 19:30:58 -0400651 iph->daddr = nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 opt->is_changed = 1;
653 }
654 if (srrptr <= srrspace) {
655 opt->srr_is_hit = 1;
Li Weiac8a4812011-11-22 23:33:10 +0000656 opt->nexthop = nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 opt->is_changed = 1;
658 }
659 return 0;
660}
Bandan Das462fb2a2010-09-19 09:34:33 +0000661EXPORT_SYMBOL(ip_options_rcv_srr);