blob: 1f022510abe3431b75c1812ac5fe7be1836ca8d5 [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) {
YOSHIFUJI Hideakif25c3d62008-04-21 02:34:08 -070061 struct timespec tv;
Al Viroe25d2ca2006-09-27 18:28:47 -070062 __be32 midtime;
YOSHIFUJI Hideakif25c3d62008-04-21 02:34:08 -070063 getnstimeofday(&tv);
64 midtime = htonl((tv.tv_sec % 86400) * MSEC_PER_SEC + tv.tv_nsec / NSEC_PER_MSEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 memcpy(iph+opt->ts+iph[opt->ts+2]-5, &midtime, 4);
66 }
67 return;
68 }
69 if (opt->rr) {
70 memset(iph+opt->rr, IPOPT_NOP, iph[opt->rr+1]);
71 opt->rr = 0;
72 opt->rr_needaddr = 0;
73 }
74 if (opt->ts) {
75 memset(iph+opt->ts, IPOPT_NOP, iph[opt->ts+1]);
76 opt->ts = 0;
77 opt->ts_needaddr = opt->ts_needtime = 0;
78 }
79}
80
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090081/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * Provided (sopt, skb) points to received options,
83 * build in dopt compiled option set appropriate for answering.
84 * i.e. invert SRR option, copy anothers,
85 * and grab room in RR/TS options.
86 *
87 * NOTE: dopt cannot point to skb.
88 */
89
Eric Dumazetf6d8bd02011-04-21 09:45:37 +000090int ip_options_echo(struct ip_options *dopt, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +000092 const struct ip_options *sopt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 unsigned char *sptr, *dptr;
94 int soffset, doffset;
95 int optlen;
Al Viroe25d2ca2006-09-27 18:28:47 -070096 __be32 daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 memset(dopt, 0, sizeof(struct ip_options));
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 sopt = &(IPCB(skb)->opt);
101
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000102 if (sopt->optlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700105 sptr = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 dptr = dopt->__data;
107
David S. Miller35ebf652012-06-28 03:59:11 -0700108 daddr = fib_compute_spec_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 if (sopt->rr) {
111 optlen = sptr[sopt->rr+1];
112 soffset = sptr[sopt->rr+2];
113 dopt->rr = dopt->optlen + sizeof(struct iphdr);
114 memcpy(dptr, sptr+sopt->rr, optlen);
115 if (sopt->rr_needaddr && soffset <= optlen) {
116 if (soffset + 3 > optlen)
117 return -EINVAL;
118 dptr[2] = soffset + 4;
119 dopt->rr_needaddr = 1;
120 }
121 dptr += optlen;
122 dopt->optlen += optlen;
123 }
124 if (sopt->ts) {
125 optlen = sptr[sopt->ts+1];
126 soffset = sptr[sopt->ts+2];
127 dopt->ts = dopt->optlen + sizeof(struct iphdr);
128 memcpy(dptr, sptr+sopt->ts, optlen);
129 if (soffset <= optlen) {
130 if (sopt->ts_needaddr) {
131 if (soffset + 3 > optlen)
132 return -EINVAL;
133 dopt->ts_needaddr = 1;
134 soffset += 4;
135 }
136 if (sopt->ts_needtime) {
137 if (soffset + 3 > optlen)
138 return -EINVAL;
139 if ((dptr[3]&0xF) != IPOPT_TS_PRESPEC) {
140 dopt->ts_needtime = 1;
141 soffset += 4;
142 } else {
143 dopt->ts_needtime = 0;
144
Jan Luebbe8628bd82011-03-24 07:44:22 +0000145 if (soffset + 7 <= optlen) {
Al Virofd683222006-09-26 22:17:51 -0700146 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Jan Luebbe8628bd82011-03-24 07:44:22 +0000148 memcpy(&addr, dptr+soffset-1, 4);
149 if (inet_addr_type(dev_net(skb_dst(skb)->dev), addr) != RTN_UNICAST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 dopt->ts_needtime = 1;
151 soffset += 8;
152 }
153 }
154 }
155 }
156 dptr[2] = soffset;
157 }
158 dptr += optlen;
159 dopt->optlen += optlen;
160 }
161 if (sopt->srr) {
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000162 unsigned char *start = sptr+sopt->srr;
Al Viro3ca3c682006-09-27 18:28:07 -0700163 __be32 faddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 optlen = start[1];
166 soffset = start[2];
167 doffset = 0;
168 if (soffset > optlen)
169 soffset = optlen + 1;
170 soffset -= 4;
171 if (soffset > 3) {
172 memcpy(&faddr, &start[soffset-1], 4);
173 for (soffset-=4, doffset=4; soffset > 3; soffset-=4, doffset+=4)
174 memcpy(&dptr[doffset-1], &start[soffset-1], 4);
175 /*
176 * RFC1812 requires to fix illegal source routes.
177 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700178 if (memcmp(&ip_hdr(skb)->saddr,
179 &start[soffset + 3], 4) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 doffset -= 4;
181 }
182 if (doffset > 3) {
183 memcpy(&start[doffset-1], &daddr, 4);
184 dopt->faddr = faddr;
185 dptr[0] = start[0];
186 dptr[1] = doffset+3;
187 dptr[2] = 4;
188 dptr += doffset+3;
189 dopt->srr = dopt->optlen + sizeof(struct iphdr);
190 dopt->optlen += doffset+3;
191 dopt->is_strictroute = sopt->is_strictroute;
192 }
193 }
Paul Moore11a03f72006-08-03 16:46:20 -0700194 if (sopt->cipso) {
195 optlen = sptr[sopt->cipso+1];
196 dopt->cipso = dopt->optlen+sizeof(struct iphdr);
197 memcpy(dptr, sptr+sopt->cipso, optlen);
198 dptr += optlen;
199 dopt->optlen += optlen;
200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 while (dopt->optlen & 3) {
202 *dptr++ = IPOPT_END;
203 dopt->optlen++;
204 }
205 return 0;
206}
207
208/*
209 * Options "fragmenting", just fill options not
210 * allowed in fragments with NOOPs.
211 * Simple and stupid 8), but the most efficient way.
212 */
213
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000214void ip_options_fragment(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700216 unsigned char *optptr = skb_network_header(skb) + sizeof(struct iphdr);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000217 struct ip_options *opt = &(IPCB(skb)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 int l = opt->optlen;
219 int optlen;
220
221 while (l > 0) {
222 switch (*optptr) {
223 case IPOPT_END:
224 return;
225 case IPOPT_NOOP:
226 l--;
227 optptr++;
228 continue;
229 }
230 optlen = optptr[1];
231 if (optlen<2 || optlen>l)
232 return;
233 if (!IPOPT_COPIED(*optptr))
234 memset(optptr, IPOPT_NOOP, optlen);
235 l -= optlen;
236 optptr += optlen;
237 }
238 opt->ts = 0;
239 opt->rr = 0;
240 opt->rr_needaddr = 0;
241 opt->ts_needaddr = 0;
242 opt->ts_needtime = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
245/*
246 * Verify options and fill pointers in struct options.
247 * Caller should clear *opt, and set opt->data.
248 * If opt == NULL, then skb->data should point to IP header.
249 */
250
Denis V. Lunev0e6bd4a2008-03-24 15:29:23 -0700251int ip_options_compile(struct net *net,
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000252 struct ip_options *opt, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
David S. Miller35ebf652012-06-28 03:59:11 -0700254 __be32 spec_dst = (__force __be32) 0;
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000255 unsigned char *pp_ptr = NULL;
David S. Miller11604722012-07-04 16:13:17 -0700256 struct rtable *rt = NULL;
David S. Miller35ebf652012-06-28 03:59:11 -0700257 unsigned char *optptr;
258 unsigned char *iph;
259 int optlen, l;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Denis V. Lunev22aba382008-03-22 16:36:20 -0700261 if (skb != NULL) {
David S. Miller11604722012-07-04 16:13:17 -0700262 rt = skb_rtable(skb);
263 if (rt)
264 spec_dst = fib_compute_spec_dst(skb);
Denis V. Lunev22aba382008-03-22 16:36:20 -0700265 optptr = (unsigned char *)&(ip_hdr(skb)[1]);
266 } else
Denis V. Lunev10fe7d82008-03-22 16:35:00 -0700267 optptr = opt->__data;
Denis V. Lunev22aba382008-03-22 16:36:20 -0700268 iph = optptr - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 for (l = opt->optlen; l > 0; ) {
271 switch (*optptr) {
272 case IPOPT_END:
273 for (optptr++, l--; l>0; optptr++, l--) {
274 if (*optptr != IPOPT_END) {
275 *optptr = IPOPT_END;
276 opt->is_changed = 1;
277 }
278 }
279 goto eol;
280 case IPOPT_NOOP:
281 l--;
282 optptr++;
283 continue;
284 }
285 optlen = optptr[1];
286 if (optlen<2 || optlen>l) {
287 pp_ptr = optptr;
288 goto error;
289 }
290 switch (*optptr) {
291 case IPOPT_SSRR:
292 case IPOPT_LSRR:
293 if (optlen < 3) {
294 pp_ptr = optptr + 1;
295 goto error;
296 }
297 if (optptr[2] < 4) {
298 pp_ptr = optptr + 2;
299 goto error;
300 }
301 /* NB: cf RFC-1812 5.2.4.1 */
302 if (opt->srr) {
303 pp_ptr = optptr;
304 goto error;
305 }
306 if (!skb) {
307 if (optptr[2] != 4 || optlen < 7 || ((optlen-3) & 3)) {
308 pp_ptr = optptr + 1;
309 goto error;
310 }
311 memcpy(&opt->faddr, &optptr[3], 4);
312 if (optlen > 7)
313 memmove(&optptr[3], &optptr[7], optlen-7);
314 }
315 opt->is_strictroute = (optptr[0] == IPOPT_SSRR);
316 opt->srr = optptr - iph;
317 break;
318 case IPOPT_RR:
319 if (opt->rr) {
320 pp_ptr = optptr;
321 goto error;
322 }
323 if (optlen < 3) {
324 pp_ptr = optptr + 1;
325 goto error;
326 }
327 if (optptr[2] < 4) {
328 pp_ptr = optptr + 2;
329 goto error;
330 }
331 if (optptr[2] <= optlen) {
332 if (optptr[2]+3 > optlen) {
333 pp_ptr = optptr + 2;
334 goto error;
335 }
David S. Miller11604722012-07-04 16:13:17 -0700336 if (rt) {
David S. Miller35ebf652012-06-28 03:59:11 -0700337 memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 opt->is_changed = 1;
339 }
340 optptr[2] += 4;
341 opt->rr_needaddr = 1;
342 }
343 opt->rr = optptr - iph;
344 break;
345 case IPOPT_TIMESTAMP:
346 if (opt->ts) {
347 pp_ptr = optptr;
348 goto error;
349 }
350 if (optlen < 4) {
351 pp_ptr = optptr + 1;
352 goto error;
353 }
354 if (optptr[2] < 5) {
355 pp_ptr = optptr + 2;
356 goto error;
357 }
358 if (optptr[2] <= optlen) {
Chris Metcalf48bdf072011-05-29 10:55:44 +0000359 unsigned char *timeptr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (optptr[2]+3 > optptr[1]) {
361 pp_ptr = optptr + 2;
362 goto error;
363 }
364 switch (optptr[3]&0xF) {
365 case IPOPT_TS_TSONLY:
366 opt->ts = optptr - iph;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900367 if (skb)
Chris Metcalf48bdf072011-05-29 10:55:44 +0000368 timeptr = &optptr[optptr[2]-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 opt->ts_needtime = 1;
370 optptr[2] += 4;
371 break;
372 case IPOPT_TS_TSANDADDR:
373 if (optptr[2]+7 > optptr[1]) {
374 pp_ptr = optptr + 2;
375 goto error;
376 }
377 opt->ts = optptr - iph;
David S. Miller11604722012-07-04 16:13:17 -0700378 if (rt) {
David S. Miller35ebf652012-06-28 03:59:11 -0700379 memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
Chris Metcalf48bdf072011-05-29 10:55:44 +0000380 timeptr = &optptr[optptr[2]+3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382 opt->ts_needaddr = 1;
383 opt->ts_needtime = 1;
384 optptr[2] += 8;
385 break;
386 case IPOPT_TS_PRESPEC:
387 if (optptr[2]+7 > optptr[1]) {
388 pp_ptr = optptr + 2;
389 goto error;
390 }
391 opt->ts = optptr - iph;
392 {
Al Virofd683222006-09-26 22:17:51 -0700393 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 memcpy(&addr, &optptr[optptr[2]-1], 4);
Denis V. Lunev0e6bd4a2008-03-24 15:29:23 -0700395 if (inet_addr_type(net, addr) == RTN_UNICAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 break;
397 if (skb)
Chris Metcalf48bdf072011-05-29 10:55:44 +0000398 timeptr = &optptr[optptr[2]+3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400 opt->ts_needtime = 1;
401 optptr[2] += 8;
402 break;
403 default:
404 if (!skb && !capable(CAP_NET_RAW)) {
405 pp_ptr = optptr + 3;
406 goto error;
407 }
408 break;
409 }
410 if (timeptr) {
YOSHIFUJI Hideakif25c3d62008-04-21 02:34:08 -0700411 struct timespec tv;
Chris Metcalf48bdf072011-05-29 10:55:44 +0000412 u32 midtime;
YOSHIFUJI Hideakif25c3d62008-04-21 02:34:08 -0700413 getnstimeofday(&tv);
Chris Metcalf48bdf072011-05-29 10:55:44 +0000414 midtime = (tv.tv_sec % 86400) * MSEC_PER_SEC + tv.tv_nsec / NSEC_PER_MSEC;
415 put_unaligned_be32(midtime, timeptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 opt->is_changed = 1;
417 }
418 } else {
Eric Dumazet95c96172012-04-15 05:58:06 +0000419 unsigned int overflow = optptr[3]>>4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (overflow == 15) {
421 pp_ptr = optptr + 3;
422 goto error;
423 }
424 opt->ts = optptr - iph;
425 if (skb) {
426 optptr[3] = (optptr[3]&0xF)|((overflow+1)<<4);
427 opt->is_changed = 1;
428 }
429 }
430 break;
431 case IPOPT_RA:
432 if (optlen < 4) {
433 pp_ptr = optptr + 1;
434 goto error;
435 }
436 if (optptr[2] == 0 && optptr[3] == 0)
437 opt->router_alert = optptr - iph;
438 break;
Paul Moore11a03f72006-08-03 16:46:20 -0700439 case IPOPT_CIPSO:
Paul Mooref8687af2006-10-30 15:22:15 -0800440 if ((!skb && !capable(CAP_NET_RAW)) || opt->cipso) {
Paul Moore11a03f72006-08-03 16:46:20 -0700441 pp_ptr = optptr;
442 goto error;
443 }
444 opt->cipso = optptr - iph;
Paul Moore15c45f72008-10-10 10:16:34 -0400445 if (cipso_v4_validate(skb, &optptr)) {
Paul Moore11a03f72006-08-03 16:46:20 -0700446 pp_ptr = optptr;
447 goto error;
448 }
449 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 case IPOPT_SEC:
451 case IPOPT_SID:
452 default:
453 if (!skb && !capable(CAP_NET_RAW)) {
454 pp_ptr = optptr;
455 goto error;
456 }
457 break;
458 }
459 l -= optlen;
460 optptr += optlen;
461 }
462
463eol:
464 if (!pp_ptr)
465 return 0;
466
467error:
468 if (skb) {
469 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((pp_ptr-iph)<<24));
470 }
471 return -EINVAL;
472}
Bandan Das462fb2a2010-09-19 09:34:33 +0000473EXPORT_SYMBOL(ip_options_compile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475/*
476 * Undo all the changes done by ip_options_compile().
477 */
478
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000479void ip_options_undo(struct ip_options *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 if (opt->srr) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000482 unsigned char *optptr = opt->__data+opt->srr-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 memmove(optptr+7, optptr+3, optptr[1]-7);
484 memcpy(optptr+3, &opt->faddr, 4);
485 }
486 if (opt->rr_needaddr) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000487 unsigned char *optptr = opt->__data+opt->rr-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 optptr[2] -= 4;
489 memset(&optptr[optptr[2]-1], 0, 4);
490 }
491 if (opt->ts) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000492 unsigned char *optptr = opt->__data+opt->ts-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (opt->ts_needtime) {
494 optptr[2] -= 4;
495 memset(&optptr[optptr[2]-1], 0, 4);
496 if ((optptr[3]&0xF) == IPOPT_TS_PRESPEC)
497 optptr[2] -= 4;
498 }
499 if (opt->ts_needaddr) {
500 optptr[2] -= 4;
501 memset(&optptr[optptr[2]-1], 0, 4);
502 }
503 }
504}
505
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000506static struct ip_options_rcu *ip_options_get_alloc(const int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000508 return kzalloc(sizeof(struct ip_options_rcu) + ((optlen + 3) & ~3),
Mariusz Kozlowski37640702007-07-31 14:06:45 -0700509 GFP_KERNEL);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300510}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000512static int ip_options_get_finish(struct net *net, struct ip_options_rcu **optp,
513 struct ip_options_rcu *opt, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300514{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 while (optlen & 3)
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000516 opt->opt.__data[optlen++] = IPOPT_END;
517 opt->opt.optlen = optlen;
518 if (optlen && ip_options_compile(net, &opt->opt, NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 kfree(opt);
520 return -EINVAL;
521 }
Jesper Juhla51482b2005-11-08 09:41:34 -0800522 kfree(*optp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 *optp = opt;
524 return 0;
525}
526
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000527int ip_options_get_from_user(struct net *net, struct ip_options_rcu **optp,
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700528 unsigned char __user *data, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300529{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000530 struct ip_options_rcu *opt = ip_options_get_alloc(optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300531
532 if (!opt)
533 return -ENOMEM;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000534 if (optlen && copy_from_user(opt->opt.__data, data, optlen)) {
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300535 kfree(opt);
536 return -EFAULT;
537 }
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700538 return ip_options_get_finish(net, optp, opt, optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300539}
540
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000541int ip_options_get(struct net *net, struct ip_options_rcu **optp,
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700542 unsigned char *data, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300543{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000544 struct ip_options_rcu *opt = ip_options_get_alloc(optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300545
546 if (!opt)
547 return -ENOMEM;
548 if (optlen)
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000549 memcpy(opt->opt.__data, data, optlen);
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700550 return ip_options_get_finish(net, optp, opt, optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300551}
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553void ip_forward_options(struct sk_buff *skb)
554{
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000555 struct ip_options *opt = &(IPCB(skb)->opt);
556 unsigned char *optptr;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000557 struct rtable *rt = skb_rtable(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700558 unsigned char *raw = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 if (opt->rr_needaddr) {
561 optptr = (unsigned char *)raw + opt->rr;
David S. Miller8e363602011-05-13 17:29:41 -0400562 ip_rt_get_source(&optptr[optptr[2]-5], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 opt->is_changed = 1;
564 }
565 if (opt->srr_is_hit) {
566 int srrptr, srrspace;
567
568 optptr = raw + opt->srr;
569
570 for ( srrptr=optptr[2], srrspace = optptr[1];
571 srrptr <= srrspace;
572 srrptr += 4
573 ) {
574 if (srrptr + 3 > srrspace)
575 break;
Li Weiac8a4812011-11-22 23:33:10 +0000576 if (memcmp(&opt->nexthop, &optptr[srrptr-1], 4) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 break;
578 }
579 if (srrptr + 3 <= srrspace) {
580 opt->is_changed = 1;
Li Weiac8a4812011-11-22 23:33:10 +0000581 ip_hdr(skb)->daddr = opt->nexthop;
Li Wei5dc78832012-02-09 21:15:25 +0000582 ip_rt_get_source(&optptr[srrptr-1], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 optptr[2] = srrptr+4;
Joe Perchese87cc472012-05-13 21:56:26 +0000584 } else {
585 net_crit_ratelimited("%s(): Argh! Destination lost!\n",
586 __func__);
587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (opt->ts_needaddr) {
589 optptr = raw + opt->ts;
David S. Miller8e363602011-05-13 17:29:41 -0400590 ip_rt_get_source(&optptr[optptr[2]-9], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 opt->is_changed = 1;
592 }
593 }
594 if (opt->is_changed) {
595 opt->is_changed = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700596 ip_send_check(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598}
599
600int ip_options_rcv_srr(struct sk_buff *skb)
601{
602 struct ip_options *opt = &(IPCB(skb)->opt);
603 int srrspace, srrptr;
Al Viro9e12bb22006-09-26 21:25:20 -0700604 __be32 nexthop;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700605 struct iphdr *iph = ip_hdr(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700606 unsigned char *optptr = skb_network_header(skb) + opt->srr;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000607 struct rtable *rt = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 struct rtable *rt2;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000609 unsigned long orefdst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 int err;
611
David S. Miller10949552011-05-12 19:26:57 -0400612 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return 0;
614
615 if (skb->pkt_type != PACKET_HOST)
616 return -EINVAL;
617 if (rt->rt_type == RTN_UNICAST) {
618 if (!opt->is_strictroute)
619 return 0;
620 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl(16<<24));
621 return -EINVAL;
622 }
623 if (rt->rt_type != RTN_LOCAL)
624 return -EINVAL;
625
626 for (srrptr=optptr[2], srrspace = optptr[1]; srrptr <= srrspace; srrptr += 4) {
627 if (srrptr + 3 > srrspace) {
628 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((opt->srr+2)<<24));
629 return -EINVAL;
630 }
631 memcpy(&nexthop, &optptr[srrptr-1], 4);
632
Eric Dumazet7fee2262010-05-11 23:19:48 +0000633 orefdst = skb->_skb_refdst;
Eric Dumazetadf30902009-06-02 05:19:30 +0000634 skb_dst_set(skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 err = ip_route_input(skb, nexthop, iph->saddr, iph->tos, skb->dev);
Eric Dumazet511c3f92009-06-02 05:14:27 +0000636 rt2 = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (err || (rt2->rt_type != RTN_UNICAST && rt2->rt_type != RTN_LOCAL)) {
Eric Dumazet7fee2262010-05-11 23:19:48 +0000638 skb_dst_drop(skb);
639 skb->_skb_refdst = orefdst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return -EINVAL;
641 }
Eric Dumazet7fee2262010-05-11 23:19:48 +0000642 refdst_drop(orefdst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (rt2->rt_type != RTN_LOCAL)
644 break;
645 /* Superfast 8) loopback forward */
David S. Millerc30883b2011-05-12 19:30:58 -0400646 iph->daddr = nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 opt->is_changed = 1;
648 }
649 if (srrptr <= srrspace) {
650 opt->srr_is_hit = 1;
Li Weiac8a4812011-11-22 23:33:10 +0000651 opt->nexthop = nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 opt->is_changed = 1;
653 }
654 return 0;
655}
Bandan Das462fb2a2010-09-19 09:34:33 +0000656EXPORT_SYMBOL(ip_options_rcv_srr);