blob: 525ae88d1e586e0c5d3abf6c64a22e5367a01a8d [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>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080018#include <linux/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
Paolo Abeni91ed1e62017-08-03 18:07:06 +020089int __ip_options_echo(struct net *net, struct ip_options *dopt,
90 struct sk_buff *skb, 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);
Paolo Abeni91ed1e62017-08-03 18:07:06 +0200143 if (inet_addr_type(net, 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) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 dopt->faddr = faddr;
178 dptr[0] = start[0];
179 dptr[1] = doffset+3;
180 dptr[2] = 4;
181 dptr += doffset+3;
182 dopt->srr = dopt->optlen + sizeof(struct iphdr);
183 dopt->optlen += doffset+3;
184 dopt->is_strictroute = sopt->is_strictroute;
185 }
186 }
Paul Moore11a03f72006-08-03 16:46:20 -0700187 if (sopt->cipso) {
188 optlen = sptr[sopt->cipso+1];
189 dopt->cipso = dopt->optlen+sizeof(struct iphdr);
190 memcpy(dptr, sptr+sopt->cipso, optlen);
191 dptr += optlen;
192 dopt->optlen += optlen;
193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 while (dopt->optlen & 3) {
195 *dptr++ = IPOPT_END;
196 dopt->optlen++;
197 }
198 return 0;
199}
200
201/*
202 * Options "fragmenting", just fill options not
203 * allowed in fragments with NOOPs.
204 * Simple and stupid 8), but the most efficient way.
205 */
206
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000207void ip_options_fragment(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700209 unsigned char *optptr = skb_network_header(skb) + sizeof(struct iphdr);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000210 struct ip_options *opt = &(IPCB(skb)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 int l = opt->optlen;
212 int optlen;
213
214 while (l > 0) {
215 switch (*optptr) {
216 case IPOPT_END:
217 return;
218 case IPOPT_NOOP:
219 l--;
220 optptr++;
221 continue;
222 }
223 optlen = optptr[1];
Weilong Chena22318e2013-12-23 14:37:26 +0800224 if (optlen < 2 || optlen > l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return;
226 if (!IPOPT_COPIED(*optptr))
227 memset(optptr, IPOPT_NOOP, optlen);
228 l -= optlen;
229 optptr += optlen;
230 }
231 opt->ts = 0;
232 opt->rr = 0;
233 opt->rr_needaddr = 0;
234 opt->ts_needaddr = 0;
235 opt->ts_needtime = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000238/* helper used by ip_options_compile() to call fib_compute_spec_dst()
239 * at most one time.
240 */
241static void spec_dst_fill(__be32 *spec_dst, struct sk_buff *skb)
242{
243 if (*spec_dst == htonl(INADDR_ANY))
244 *spec_dst = fib_compute_spec_dst(skb);
245}
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247/*
248 * Verify options and fill pointers in struct options.
249 * Caller should clear *opt, and set opt->data.
250 * If opt == NULL, then skb->data should point to IP header.
251 */
252
Denis V. Lunev0e6bd4a2008-03-24 15:29:23 -0700253int ip_options_compile(struct net *net,
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000254 struct ip_options *opt, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000256 __be32 spec_dst = htonl(INADDR_ANY);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000257 unsigned char *pp_ptr = NULL;
David S. Miller11604722012-07-04 16:13:17 -0700258 struct rtable *rt = NULL;
David S. Miller35ebf652012-06-28 03:59:11 -0700259 unsigned char *optptr;
260 unsigned char *iph;
261 int optlen, l;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Ian Morris00db4122015-04-03 09:17:27 +0100263 if (skb) {
David S. Miller11604722012-07-04 16:13:17 -0700264 rt = skb_rtable(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) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800272 case IPOPT_END:
Weilong Chena22318e2013-12-23 14:37:26 +0800273 for (optptr++, l--; l > 0; optptr++, l--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (*optptr != IPOPT_END) {
275 *optptr = IPOPT_END;
276 opt->is_changed = 1;
277 }
278 }
279 goto eol;
Weilong Chendd9b4552013-12-31 15:11:28 +0800280 case IPOPT_NOOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 l--;
282 optptr++;
283 continue;
284 }
Eric Dumazet10ec9472014-07-21 07:17:42 +0200285 if (unlikely(l < 2)) {
286 pp_ptr = optptr;
287 goto error;
288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 optlen = optptr[1];
Weilong Chena22318e2013-12-23 14:37:26 +0800290 if (optlen < 2 || optlen > l) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 pp_ptr = optptr;
292 goto error;
293 }
294 switch (*optptr) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800295 case IPOPT_SSRR:
296 case IPOPT_LSRR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 if (optlen < 3) {
298 pp_ptr = optptr + 1;
299 goto error;
300 }
301 if (optptr[2] < 4) {
302 pp_ptr = optptr + 2;
303 goto error;
304 }
305 /* NB: cf RFC-1812 5.2.4.1 */
306 if (opt->srr) {
307 pp_ptr = optptr;
308 goto error;
309 }
310 if (!skb) {
311 if (optptr[2] != 4 || optlen < 7 || ((optlen-3) & 3)) {
312 pp_ptr = optptr + 1;
313 goto error;
314 }
315 memcpy(&opt->faddr, &optptr[3], 4);
316 if (optlen > 7)
317 memmove(&optptr[3], &optptr[7], optlen-7);
318 }
319 opt->is_strictroute = (optptr[0] == IPOPT_SSRR);
320 opt->srr = optptr - iph;
321 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800322 case IPOPT_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (opt->rr) {
324 pp_ptr = optptr;
325 goto error;
326 }
327 if (optlen < 3) {
328 pp_ptr = optptr + 1;
329 goto error;
330 }
331 if (optptr[2] < 4) {
332 pp_ptr = optptr + 2;
333 goto error;
334 }
335 if (optptr[2] <= optlen) {
336 if (optptr[2]+3 > optlen) {
337 pp_ptr = optptr + 2;
338 goto error;
339 }
David S. Miller11604722012-07-04 16:13:17 -0700340 if (rt) {
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000341 spec_dst_fill(&spec_dst, skb);
David S. Miller35ebf652012-06-28 03:59:11 -0700342 memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 opt->is_changed = 1;
344 }
345 optptr[2] += 4;
346 opt->rr_needaddr = 1;
347 }
348 opt->rr = optptr - iph;
349 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800350 case IPOPT_TIMESTAMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (opt->ts) {
352 pp_ptr = optptr;
353 goto error;
354 }
355 if (optlen < 4) {
356 pp_ptr = optptr + 1;
357 goto error;
358 }
359 if (optptr[2] < 5) {
360 pp_ptr = optptr + 2;
361 goto error;
362 }
363 if (optptr[2] <= optlen) {
Chris Metcalf48bdf072011-05-29 10:55:44 +0000364 unsigned char *timeptr = NULL;
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900365 if (optptr[2]+3 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 pp_ptr = optptr + 2;
367 goto error;
368 }
369 switch (optptr[3]&0xF) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800370 case IPOPT_TS_TSONLY:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900371 if (skb)
Chris Metcalf48bdf072011-05-29 10:55:44 +0000372 timeptr = &optptr[optptr[2]-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 opt->ts_needtime = 1;
374 optptr[2] += 4;
375 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800376 case IPOPT_TS_TSANDADDR:
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900377 if (optptr[2]+7 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 pp_ptr = optptr + 2;
379 goto error;
380 }
David S. Miller11604722012-07-04 16:13:17 -0700381 if (rt) {
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000382 spec_dst_fill(&spec_dst, skb);
David S. Miller35ebf652012-06-28 03:59:11 -0700383 memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
Chris Metcalf48bdf072011-05-29 10:55:44 +0000384 timeptr = &optptr[optptr[2]+3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386 opt->ts_needaddr = 1;
387 opt->ts_needtime = 1;
388 optptr[2] += 8;
389 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800390 case IPOPT_TS_PRESPEC:
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900391 if (optptr[2]+7 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 pp_ptr = optptr + 2;
393 goto error;
394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 {
Al Virofd683222006-09-26 22:17:51 -0700396 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 memcpy(&addr, &optptr[optptr[2]-1], 4);
Denis V. Lunev0e6bd4a2008-03-24 15:29:23 -0700398 if (inet_addr_type(net, addr) == RTN_UNICAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 break;
400 if (skb)
Chris Metcalf48bdf072011-05-29 10:55:44 +0000401 timeptr = &optptr[optptr[2]+3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403 opt->ts_needtime = 1;
404 optptr[2] += 8;
405 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800406 default:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000407 if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 pp_ptr = optptr + 3;
409 goto error;
410 }
411 break;
412 }
413 if (timeptr) {
Deepa Dinamani822c8682016-02-27 00:32:15 -0800414 __be32 midtime;
415
416 midtime = inet_current_timestamp();
417 memcpy(timeptr, &midtime, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 opt->is_changed = 1;
419 }
David Wardfa2b04f2013-03-05 17:06:32 +0000420 } else if ((optptr[3]&0xF) != IPOPT_TS_PRESPEC) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000421 unsigned int overflow = optptr[3]>>4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (overflow == 15) {
423 pp_ptr = optptr + 3;
424 goto error;
425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (skb) {
427 optptr[3] = (optptr[3]&0xF)|((overflow+1)<<4);
428 opt->is_changed = 1;
429 }
430 }
David Ward4660c7f2013-03-11 10:43:39 +0000431 opt->ts = optptr - iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800433 case IPOPT_RA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (optlen < 4) {
435 pp_ptr = optptr + 1;
436 goto error;
437 }
438 if (optptr[2] == 0 && optptr[3] == 0)
439 opt->router_alert = optptr - iph;
440 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800441 case IPOPT_CIPSO:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000442 if ((!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) || opt->cipso) {
Paul Moore11a03f72006-08-03 16:46:20 -0700443 pp_ptr = optptr;
444 goto error;
445 }
446 opt->cipso = optptr - iph;
Paul Moore15c45f72008-10-10 10:16:34 -0400447 if (cipso_v4_validate(skb, &optptr)) {
Paul Moore11a03f72006-08-03 16:46:20 -0700448 pp_ptr = optptr;
449 goto error;
450 }
451 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800452 case IPOPT_SEC:
453 case IPOPT_SID:
454 default:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000455 if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 pp_ptr = optptr;
457 goto error;
458 }
459 break;
460 }
461 l -= optlen;
462 optptr += optlen;
463 }
464
465eol:
466 if (!pp_ptr)
467 return 0;
468
469error:
470 if (skb) {
471 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((pp_ptr-iph)<<24));
472 }
473 return -EINVAL;
474}
Bandan Das462fb2a2010-09-19 09:34:33 +0000475EXPORT_SYMBOL(ip_options_compile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477/*
478 * Undo all the changes done by ip_options_compile().
479 */
480
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000481void ip_options_undo(struct ip_options *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 if (opt->srr) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000484 unsigned char *optptr = opt->__data+opt->srr-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 memmove(optptr+7, optptr+3, optptr[1]-7);
486 memcpy(optptr+3, &opt->faddr, 4);
487 }
488 if (opt->rr_needaddr) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000489 unsigned char *optptr = opt->__data+opt->rr-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 optptr[2] -= 4;
491 memset(&optptr[optptr[2]-1], 0, 4);
492 }
493 if (opt->ts) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000494 unsigned char *optptr = opt->__data+opt->ts-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (opt->ts_needtime) {
496 optptr[2] -= 4;
497 memset(&optptr[optptr[2]-1], 0, 4);
498 if ((optptr[3]&0xF) == IPOPT_TS_PRESPEC)
499 optptr[2] -= 4;
500 }
501 if (opt->ts_needaddr) {
502 optptr[2] -= 4;
503 memset(&optptr[optptr[2]-1], 0, 4);
504 }
505 }
506}
507
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000508static struct ip_options_rcu *ip_options_get_alloc(const int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000510 return kzalloc(sizeof(struct ip_options_rcu) + ((optlen + 3) & ~3),
Mariusz Kozlowski37640702007-07-31 14:06:45 -0700511 GFP_KERNEL);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300512}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000514static int ip_options_get_finish(struct net *net, struct ip_options_rcu **optp,
515 struct ip_options_rcu *opt, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300516{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 while (optlen & 3)
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000518 opt->opt.__data[optlen++] = IPOPT_END;
519 opt->opt.optlen = optlen;
520 if (optlen && ip_options_compile(net, &opt->opt, NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 kfree(opt);
522 return -EINVAL;
523 }
Jesper Juhla51482b2005-11-08 09:41:34 -0800524 kfree(*optp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 *optp = opt;
526 return 0;
527}
528
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000529int ip_options_get_from_user(struct net *net, struct ip_options_rcu **optp,
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700530 unsigned char __user *data, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300531{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000532 struct ip_options_rcu *opt = ip_options_get_alloc(optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300533
534 if (!opt)
535 return -ENOMEM;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000536 if (optlen && copy_from_user(opt->opt.__data, data, optlen)) {
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300537 kfree(opt);
538 return -EFAULT;
539 }
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700540 return ip_options_get_finish(net, optp, opt, optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300541}
542
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000543int ip_options_get(struct net *net, struct ip_options_rcu **optp,
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700544 unsigned char *data, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300545{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000546 struct ip_options_rcu *opt = ip_options_get_alloc(optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300547
548 if (!opt)
549 return -ENOMEM;
550 if (optlen)
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000551 memcpy(opt->opt.__data, data, optlen);
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700552 return ip_options_get_finish(net, optp, opt, optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555void ip_forward_options(struct sk_buff *skb)
556{
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000557 struct ip_options *opt = &(IPCB(skb)->opt);
558 unsigned char *optptr;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000559 struct rtable *rt = skb_rtable(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700560 unsigned char *raw = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 if (opt->rr_needaddr) {
563 optptr = (unsigned char *)raw + opt->rr;
David S. Miller8e363602011-05-13 17:29:41 -0400564 ip_rt_get_source(&optptr[optptr[2]-5], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 opt->is_changed = 1;
566 }
567 if (opt->srr_is_hit) {
568 int srrptr, srrspace;
569
570 optptr = raw + opt->srr;
571
Weilong Chena22318e2013-12-23 14:37:26 +0800572 for ( srrptr = optptr[2], srrspace = optptr[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 srrptr <= srrspace;
574 srrptr += 4
575 ) {
576 if (srrptr + 3 > srrspace)
577 break;
Li Weiac8a4812011-11-22 23:33:10 +0000578 if (memcmp(&opt->nexthop, &optptr[srrptr-1], 4) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 break;
580 }
581 if (srrptr + 3 <= srrspace) {
582 opt->is_changed = 1;
Li Weiac8a4812011-11-22 23:33:10 +0000583 ip_hdr(skb)->daddr = opt->nexthop;
Li Wei5dc78832012-02-09 21:15:25 +0000584 ip_rt_get_source(&optptr[srrptr-1], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 optptr[2] = srrptr+4;
Joe Perchese87cc472012-05-13 21:56:26 +0000586 } else {
587 net_crit_ratelimited("%s(): Argh! Destination lost!\n",
588 __func__);
589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (opt->ts_needaddr) {
591 optptr = raw + opt->ts;
David S. Miller8e363602011-05-13 17:29:41 -0400592 ip_rt_get_source(&optptr[optptr[2]-9], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 opt->is_changed = 1;
594 }
595 }
596 if (opt->is_changed) {
597 opt->is_changed = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700598 ip_send_check(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600}
601
602int ip_options_rcv_srr(struct sk_buff *skb)
603{
604 struct ip_options *opt = &(IPCB(skb)->opt);
605 int srrspace, srrptr;
Al Viro9e12bb22006-09-26 21:25:20 -0700606 __be32 nexthop;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700607 struct iphdr *iph = ip_hdr(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700608 unsigned char *optptr = skb_network_header(skb) + opt->srr;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000609 struct rtable *rt = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 struct rtable *rt2;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000611 unsigned long orefdst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 int err;
613
David S. Miller10949552011-05-12 19:26:57 -0400614 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return 0;
616
617 if (skb->pkt_type != PACKET_HOST)
618 return -EINVAL;
619 if (rt->rt_type == RTN_UNICAST) {
620 if (!opt->is_strictroute)
621 return 0;
622 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl(16<<24));
623 return -EINVAL;
624 }
625 if (rt->rt_type != RTN_LOCAL)
626 return -EINVAL;
627
Weilong Chena22318e2013-12-23 14:37:26 +0800628 for (srrptr = optptr[2], srrspace = optptr[1]; srrptr <= srrspace; srrptr += 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (srrptr + 3 > srrspace) {
630 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((opt->srr+2)<<24));
631 return -EINVAL;
632 }
633 memcpy(&nexthop, &optptr[srrptr-1], 4);
634
Eric Dumazet7fee2262010-05-11 23:19:48 +0000635 orefdst = skb->_skb_refdst;
Eric Dumazetadf30902009-06-02 05:19:30 +0000636 skb_dst_set(skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 err = ip_route_input(skb, nexthop, iph->saddr, iph->tos, skb->dev);
Eric Dumazet511c3f92009-06-02 05:14:27 +0000638 rt2 = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (err || (rt2->rt_type != RTN_UNICAST && rt2->rt_type != RTN_LOCAL)) {
Eric Dumazet7fee2262010-05-11 23:19:48 +0000640 skb_dst_drop(skb);
641 skb->_skb_refdst = orefdst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return -EINVAL;
643 }
Eric Dumazet7fee2262010-05-11 23:19:48 +0000644 refdst_drop(orefdst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (rt2->rt_type != RTN_LOCAL)
646 break;
647 /* Superfast 8) loopback forward */
David S. Millerc30883b2011-05-12 19:30:58 -0400648 iph->daddr = nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 opt->is_changed = 1;
650 }
651 if (srrptr <= srrspace) {
652 opt->srr_is_hit = 1;
Li Weiac8a4812011-11-22 23:33:10 +0000653 opt->nexthop = nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 opt->is_changed = 1;
655 }
656 return 0;
657}
Bandan Das462fb2a2010-09-19 09:34:33 +0000658EXPORT_SYMBOL(ip_options_rcv_srr);