blob: 570cdb547234b39a66dfecf41d85b3c4b8464bd2 [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
Nazarov Sergey3b448972019-02-25 19:27:15 +0300256int __ip_options_compile(struct net *net,
257 struct ip_options *opt, struct sk_buff *skb,
258 __be32 *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000260 __be32 spec_dst = htonl(INADDR_ANY);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000261 unsigned char *pp_ptr = NULL;
David S. Miller11604722012-07-04 16:13:17 -0700262 struct rtable *rt = NULL;
David S. Miller35ebf652012-06-28 03:59:11 -0700263 unsigned char *optptr;
264 unsigned char *iph;
265 int optlen, l;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Ian Morris00db4122015-04-03 09:17:27 +0100267 if (skb) {
David S. Miller11604722012-07-04 16:13:17 -0700268 rt = skb_rtable(skb);
Denis V. Lunev22aba382008-03-22 16:36:20 -0700269 optptr = (unsigned char *)&(ip_hdr(skb)[1]);
270 } else
Denis V. Lunev10fe7d82008-03-22 16:35:00 -0700271 optptr = opt->__data;
Denis V. Lunev22aba382008-03-22 16:36:20 -0700272 iph = optptr - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 for (l = opt->optlen; l > 0; ) {
275 switch (*optptr) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800276 case IPOPT_END:
Weilong Chena22318e2013-12-23 14:37:26 +0800277 for (optptr++, l--; l > 0; optptr++, l--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (*optptr != IPOPT_END) {
279 *optptr = IPOPT_END;
280 opt->is_changed = 1;
281 }
282 }
283 goto eol;
Weilong Chendd9b4552013-12-31 15:11:28 +0800284 case IPOPT_NOOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 l--;
286 optptr++;
287 continue;
288 }
Eric Dumazet10ec9472014-07-21 07:17:42 +0200289 if (unlikely(l < 2)) {
290 pp_ptr = optptr;
291 goto error;
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 optlen = optptr[1];
Weilong Chena22318e2013-12-23 14:37:26 +0800294 if (optlen < 2 || optlen > l) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 pp_ptr = optptr;
296 goto error;
297 }
298 switch (*optptr) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800299 case IPOPT_SSRR:
300 case IPOPT_LSRR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (optlen < 3) {
302 pp_ptr = optptr + 1;
303 goto error;
304 }
305 if (optptr[2] < 4) {
306 pp_ptr = optptr + 2;
307 goto error;
308 }
309 /* NB: cf RFC-1812 5.2.4.1 */
310 if (opt->srr) {
311 pp_ptr = optptr;
312 goto error;
313 }
314 if (!skb) {
315 if (optptr[2] != 4 || optlen < 7 || ((optlen-3) & 3)) {
316 pp_ptr = optptr + 1;
317 goto error;
318 }
319 memcpy(&opt->faddr, &optptr[3], 4);
320 if (optlen > 7)
321 memmove(&optptr[3], &optptr[7], optlen-7);
322 }
323 opt->is_strictroute = (optptr[0] == IPOPT_SSRR);
324 opt->srr = optptr - iph;
325 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800326 case IPOPT_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (opt->rr) {
328 pp_ptr = optptr;
329 goto error;
330 }
331 if (optlen < 3) {
332 pp_ptr = optptr + 1;
333 goto error;
334 }
335 if (optptr[2] < 4) {
336 pp_ptr = optptr + 2;
337 goto error;
338 }
339 if (optptr[2] <= optlen) {
340 if (optptr[2]+3 > optlen) {
341 pp_ptr = optptr + 2;
342 goto error;
343 }
David S. Miller11604722012-07-04 16:13:17 -0700344 if (rt) {
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000345 spec_dst_fill(&spec_dst, skb);
David S. Miller35ebf652012-06-28 03:59:11 -0700346 memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 opt->is_changed = 1;
348 }
349 optptr[2] += 4;
350 opt->rr_needaddr = 1;
351 }
352 opt->rr = optptr - iph;
353 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800354 case IPOPT_TIMESTAMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (opt->ts) {
356 pp_ptr = optptr;
357 goto error;
358 }
359 if (optlen < 4) {
360 pp_ptr = optptr + 1;
361 goto error;
362 }
363 if (optptr[2] < 5) {
364 pp_ptr = optptr + 2;
365 goto error;
366 }
367 if (optptr[2] <= optlen) {
Chris Metcalf48bdf072011-05-29 10:55:44 +0000368 unsigned char *timeptr = NULL;
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900369 if (optptr[2]+3 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 pp_ptr = optptr + 2;
371 goto error;
372 }
373 switch (optptr[3]&0xF) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800374 case IPOPT_TS_TSONLY:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900375 if (skb)
Chris Metcalf48bdf072011-05-29 10:55:44 +0000376 timeptr = &optptr[optptr[2]-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 opt->ts_needtime = 1;
378 optptr[2] += 4;
379 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800380 case IPOPT_TS_TSANDADDR:
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900381 if (optptr[2]+7 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 pp_ptr = optptr + 2;
383 goto error;
384 }
David S. Miller11604722012-07-04 16:13:17 -0700385 if (rt) {
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000386 spec_dst_fill(&spec_dst, skb);
David S. Miller35ebf652012-06-28 03:59:11 -0700387 memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
Chris Metcalf48bdf072011-05-29 10:55:44 +0000388 timeptr = &optptr[optptr[2]+3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390 opt->ts_needaddr = 1;
391 opt->ts_needtime = 1;
392 optptr[2] += 8;
393 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800394 case IPOPT_TS_PRESPEC:
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900395 if (optptr[2]+7 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 pp_ptr = optptr + 2;
397 goto error;
398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 {
Al Virofd683222006-09-26 22:17:51 -0700400 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 memcpy(&addr, &optptr[optptr[2]-1], 4);
Denis V. Lunev0e6bd4a2008-03-24 15:29:23 -0700402 if (inet_addr_type(net, addr) == RTN_UNICAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 break;
404 if (skb)
Chris Metcalf48bdf072011-05-29 10:55:44 +0000405 timeptr = &optptr[optptr[2]+3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407 opt->ts_needtime = 1;
408 optptr[2] += 8;
409 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800410 default:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000411 if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 pp_ptr = optptr + 3;
413 goto error;
414 }
415 break;
416 }
417 if (timeptr) {
Deepa Dinamani822c8682016-02-27 00:32:15 -0800418 __be32 midtime;
419
420 midtime = inet_current_timestamp();
421 memcpy(timeptr, &midtime, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 opt->is_changed = 1;
423 }
David Wardfa2b04f2013-03-05 17:06:32 +0000424 } else if ((optptr[3]&0xF) != IPOPT_TS_PRESPEC) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000425 unsigned int overflow = optptr[3]>>4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (overflow == 15) {
427 pp_ptr = optptr + 3;
428 goto error;
429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (skb) {
431 optptr[3] = (optptr[3]&0xF)|((overflow+1)<<4);
432 opt->is_changed = 1;
433 }
434 }
David Ward4660c7f2013-03-11 10:43:39 +0000435 opt->ts = optptr - iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800437 case IPOPT_RA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (optlen < 4) {
439 pp_ptr = optptr + 1;
440 goto error;
441 }
442 if (optptr[2] == 0 && optptr[3] == 0)
443 opt->router_alert = optptr - iph;
444 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800445 case IPOPT_CIPSO:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000446 if ((!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) || opt->cipso) {
Paul Moore11a03f72006-08-03 16:46:20 -0700447 pp_ptr = optptr;
448 goto error;
449 }
450 opt->cipso = optptr - iph;
Paul Moore15c45f72008-10-10 10:16:34 -0400451 if (cipso_v4_validate(skb, &optptr)) {
Paul Moore11a03f72006-08-03 16:46:20 -0700452 pp_ptr = optptr;
453 goto error;
454 }
455 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800456 case IPOPT_SEC:
457 case IPOPT_SID:
458 default:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000459 if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 pp_ptr = optptr;
461 goto error;
462 }
463 break;
464 }
465 l -= optlen;
466 optptr += optlen;
467 }
468
469eol:
470 if (!pp_ptr)
471 return 0;
472
473error:
Nazarov Sergey3b448972019-02-25 19:27:15 +0300474 if (info)
475 *info = htonl((pp_ptr-iph)<<24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return -EINVAL;
477}
Nazarov Sergey3b448972019-02-25 19:27:15 +0300478
479int ip_options_compile(struct net *net,
480 struct ip_options *opt, struct sk_buff *skb)
481{
482 int ret;
483 __be32 info;
484
485 ret = __ip_options_compile(net, opt, skb, &info);
486 if (ret != 0 && skb)
487 icmp_send(skb, ICMP_PARAMETERPROB, 0, info);
488 return ret;
489}
Bandan Das462fb2a2010-09-19 09:34:33 +0000490EXPORT_SYMBOL(ip_options_compile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492/*
493 * Undo all the changes done by ip_options_compile().
494 */
495
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000496void ip_options_undo(struct ip_options *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 if (opt->srr) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000499 unsigned char *optptr = opt->__data+opt->srr-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 memmove(optptr+7, optptr+3, optptr[1]-7);
501 memcpy(optptr+3, &opt->faddr, 4);
502 }
503 if (opt->rr_needaddr) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000504 unsigned char *optptr = opt->__data+opt->rr-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 optptr[2] -= 4;
506 memset(&optptr[optptr[2]-1], 0, 4);
507 }
508 if (opt->ts) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000509 unsigned char *optptr = opt->__data+opt->ts-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (opt->ts_needtime) {
511 optptr[2] -= 4;
512 memset(&optptr[optptr[2]-1], 0, 4);
513 if ((optptr[3]&0xF) == IPOPT_TS_PRESPEC)
514 optptr[2] -= 4;
515 }
516 if (opt->ts_needaddr) {
517 optptr[2] -= 4;
518 memset(&optptr[optptr[2]-1], 0, 4);
519 }
520 }
521}
522
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000523static struct ip_options_rcu *ip_options_get_alloc(const int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000525 return kzalloc(sizeof(struct ip_options_rcu) + ((optlen + 3) & ~3),
Mariusz Kozlowski37640702007-07-31 14:06:45 -0700526 GFP_KERNEL);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300527}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000529static int ip_options_get_finish(struct net *net, struct ip_options_rcu **optp,
530 struct ip_options_rcu *opt, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300531{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 while (optlen & 3)
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000533 opt->opt.__data[optlen++] = IPOPT_END;
534 opt->opt.optlen = optlen;
535 if (optlen && ip_options_compile(net, &opt->opt, NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 kfree(opt);
537 return -EINVAL;
538 }
Jesper Juhla51482b2005-11-08 09:41:34 -0800539 kfree(*optp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 *optp = opt;
541 return 0;
542}
543
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000544int ip_options_get_from_user(struct net *net, struct ip_options_rcu **optp,
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700545 unsigned char __user *data, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300546{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000547 struct ip_options_rcu *opt = ip_options_get_alloc(optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300548
549 if (!opt)
550 return -ENOMEM;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000551 if (optlen && copy_from_user(opt->opt.__data, data, optlen)) {
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300552 kfree(opt);
553 return -EFAULT;
554 }
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
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000558int ip_options_get(struct net *net, struct ip_options_rcu **optp,
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700559 unsigned char *data, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300560{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000561 struct ip_options_rcu *opt = ip_options_get_alloc(optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300562
563 if (!opt)
564 return -ENOMEM;
565 if (optlen)
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000566 memcpy(opt->opt.__data, data, optlen);
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700567 return ip_options_get_finish(net, optp, opt, optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300568}
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570void ip_forward_options(struct sk_buff *skb)
571{
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000572 struct ip_options *opt = &(IPCB(skb)->opt);
573 unsigned char *optptr;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000574 struct rtable *rt = skb_rtable(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700575 unsigned char *raw = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 if (opt->rr_needaddr) {
578 optptr = (unsigned char *)raw + opt->rr;
David S. Miller8e363602011-05-13 17:29:41 -0400579 ip_rt_get_source(&optptr[optptr[2]-5], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 opt->is_changed = 1;
581 }
582 if (opt->srr_is_hit) {
583 int srrptr, srrspace;
584
585 optptr = raw + opt->srr;
586
Weilong Chena22318e2013-12-23 14:37:26 +0800587 for ( srrptr = optptr[2], srrspace = optptr[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 srrptr <= srrspace;
589 srrptr += 4
590 ) {
591 if (srrptr + 3 > srrspace)
592 break;
Li Weiac8a4812011-11-22 23:33:10 +0000593 if (memcmp(&opt->nexthop, &optptr[srrptr-1], 4) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 break;
595 }
596 if (srrptr + 3 <= srrspace) {
597 opt->is_changed = 1;
Li Weiac8a4812011-11-22 23:33:10 +0000598 ip_hdr(skb)->daddr = opt->nexthop;
Li Wei5dc78832012-02-09 21:15:25 +0000599 ip_rt_get_source(&optptr[srrptr-1], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 optptr[2] = srrptr+4;
Joe Perchese87cc472012-05-13 21:56:26 +0000601 } else {
602 net_crit_ratelimited("%s(): Argh! Destination lost!\n",
603 __func__);
604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (opt->ts_needaddr) {
606 optptr = raw + opt->ts;
David S. Miller8e363602011-05-13 17:29:41 -0400607 ip_rt_get_source(&optptr[optptr[2]-9], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 opt->is_changed = 1;
609 }
610 }
611 if (opt->is_changed) {
612 opt->is_changed = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700613 ip_send_check(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615}
616
Stephen Suryaputra5f5d6282019-04-01 09:17:32 -0400617int ip_options_rcv_srr(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
619 struct ip_options *opt = &(IPCB(skb)->opt);
620 int srrspace, srrptr;
Al Viro9e12bb22006-09-26 21:25:20 -0700621 __be32 nexthop;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700622 struct iphdr *iph = ip_hdr(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700623 unsigned char *optptr = skb_network_header(skb) + opt->srr;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000624 struct rtable *rt = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 struct rtable *rt2;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000626 unsigned long orefdst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 int err;
628
David S. Miller10949552011-05-12 19:26:57 -0400629 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return 0;
631
632 if (skb->pkt_type != PACKET_HOST)
633 return -EINVAL;
634 if (rt->rt_type == RTN_UNICAST) {
635 if (!opt->is_strictroute)
636 return 0;
637 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl(16<<24));
638 return -EINVAL;
639 }
640 if (rt->rt_type != RTN_LOCAL)
641 return -EINVAL;
642
Weilong Chena22318e2013-12-23 14:37:26 +0800643 for (srrptr = optptr[2], srrspace = optptr[1]; srrptr <= srrspace; srrptr += 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (srrptr + 3 > srrspace) {
645 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((opt->srr+2)<<24));
646 return -EINVAL;
647 }
648 memcpy(&nexthop, &optptr[srrptr-1], 4);
649
Eric Dumazet7fee2262010-05-11 23:19:48 +0000650 orefdst = skb->_skb_refdst;
Eric Dumazetadf30902009-06-02 05:19:30 +0000651 skb_dst_set(skb, NULL);
Stephen Suryaputra5f5d6282019-04-01 09:17:32 -0400652 err = ip_route_input(skb, nexthop, iph->saddr, iph->tos, dev);
Eric Dumazet511c3f92009-06-02 05:14:27 +0000653 rt2 = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (err || (rt2->rt_type != RTN_UNICAST && rt2->rt_type != RTN_LOCAL)) {
Eric Dumazet7fee2262010-05-11 23:19:48 +0000655 skb_dst_drop(skb);
656 skb->_skb_refdst = orefdst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return -EINVAL;
658 }
Eric Dumazet7fee2262010-05-11 23:19:48 +0000659 refdst_drop(orefdst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (rt2->rt_type != RTN_LOCAL)
661 break;
662 /* Superfast 8) loopback forward */
David S. Millerc30883b2011-05-12 19:30:58 -0400663 iph->daddr = nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 opt->is_changed = 1;
665 }
666 if (srrptr <= srrspace) {
667 opt->srr_is_hit = 1;
Li Weiac8a4812011-11-22 23:33:10 +0000668 opt->nexthop = nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 opt->is_changed = 1;
670 }
671 return 0;
672}
Bandan Das462fb2a2010-09-19 09:34:33 +0000673EXPORT_SYMBOL(ip_options_rcv_srr);