blob: ad382499bace4ce3852c2953bb262f2796d9a416 [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 memset(dopt, 0, sizeof(struct ip_options));
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 sopt = &(IPCB(skb)->opt);
100
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000101 if (sopt->optlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700104 sptr = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 dptr = dopt->__data;
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (sopt->rr) {
108 optlen = sptr[sopt->rr+1];
109 soffset = sptr[sopt->rr+2];
110 dopt->rr = dopt->optlen + sizeof(struct iphdr);
111 memcpy(dptr, sptr+sopt->rr, optlen);
112 if (sopt->rr_needaddr && soffset <= optlen) {
113 if (soffset + 3 > optlen)
114 return -EINVAL;
115 dptr[2] = soffset + 4;
116 dopt->rr_needaddr = 1;
117 }
118 dptr += optlen;
119 dopt->optlen += optlen;
120 }
121 if (sopt->ts) {
122 optlen = sptr[sopt->ts+1];
123 soffset = sptr[sopt->ts+2];
124 dopt->ts = dopt->optlen + sizeof(struct iphdr);
125 memcpy(dptr, sptr+sopt->ts, optlen);
126 if (soffset <= optlen) {
127 if (sopt->ts_needaddr) {
128 if (soffset + 3 > optlen)
129 return -EINVAL;
130 dopt->ts_needaddr = 1;
131 soffset += 4;
132 }
133 if (sopt->ts_needtime) {
134 if (soffset + 3 > optlen)
135 return -EINVAL;
136 if ((dptr[3]&0xF) != IPOPT_TS_PRESPEC) {
137 dopt->ts_needtime = 1;
138 soffset += 4;
139 } else {
140 dopt->ts_needtime = 0;
141
Jan Luebbe8628bd82011-03-24 07:44:22 +0000142 if (soffset + 7 <= optlen) {
Al Virofd683222006-09-26 22:17:51 -0700143 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Jan Luebbe8628bd82011-03-24 07:44:22 +0000145 memcpy(&addr, dptr+soffset-1, 4);
146 if (inet_addr_type(dev_net(skb_dst(skb)->dev), addr) != RTN_UNICAST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 dopt->ts_needtime = 1;
148 soffset += 8;
149 }
150 }
151 }
152 }
153 dptr[2] = soffset;
154 }
155 dptr += optlen;
156 dopt->optlen += optlen;
157 }
158 if (sopt->srr) {
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000159 unsigned char *start = sptr+sopt->srr;
Al Viro3ca3c682006-09-27 18:28:07 -0700160 __be32 faddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 optlen = start[1];
163 soffset = start[2];
164 doffset = 0;
165 if (soffset > optlen)
166 soffset = optlen + 1;
167 soffset -= 4;
168 if (soffset > 3) {
169 memcpy(&faddr, &start[soffset-1], 4);
Weilong Chena22318e2013-12-23 14:37:26 +0800170 for (soffset -= 4, doffset = 4; soffset > 3; soffset -= 4, doffset += 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 memcpy(&dptr[doffset-1], &start[soffset-1], 4);
172 /*
173 * RFC1812 requires to fix illegal source routes.
174 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700175 if (memcmp(&ip_hdr(skb)->saddr,
176 &start[soffset + 3], 4) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 doffset -= 4;
178 }
179 if (doffset > 3) {
Julian Anastasov6255e5e2012-07-18 21:34:24 +0000180 __be32 daddr = fib_compute_spec_dst(skb);
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 memcpy(&start[doffset-1], &daddr, 4);
183 dopt->faddr = faddr;
184 dptr[0] = start[0];
185 dptr[1] = doffset+3;
186 dptr[2] = 4;
187 dptr += doffset+3;
188 dopt->srr = dopt->optlen + sizeof(struct iphdr);
189 dopt->optlen += doffset+3;
190 dopt->is_strictroute = sopt->is_strictroute;
191 }
192 }
Paul Moore11a03f72006-08-03 16:46:20 -0700193 if (sopt->cipso) {
194 optlen = sptr[sopt->cipso+1];
195 dopt->cipso = dopt->optlen+sizeof(struct iphdr);
196 memcpy(dptr, sptr+sopt->cipso, optlen);
197 dptr += optlen;
198 dopt->optlen += optlen;
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 while (dopt->optlen & 3) {
201 *dptr++ = IPOPT_END;
202 dopt->optlen++;
203 }
204 return 0;
205}
206
207/*
208 * Options "fragmenting", just fill options not
209 * allowed in fragments with NOOPs.
210 * Simple and stupid 8), but the most efficient way.
211 */
212
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000213void ip_options_fragment(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700215 unsigned char *optptr = skb_network_header(skb) + sizeof(struct iphdr);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000216 struct ip_options *opt = &(IPCB(skb)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 int l = opt->optlen;
218 int optlen;
219
220 while (l > 0) {
221 switch (*optptr) {
222 case IPOPT_END:
223 return;
224 case IPOPT_NOOP:
225 l--;
226 optptr++;
227 continue;
228 }
229 optlen = optptr[1];
Weilong Chena22318e2013-12-23 14:37:26 +0800230 if (optlen < 2 || optlen > l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return;
232 if (!IPOPT_COPIED(*optptr))
233 memset(optptr, IPOPT_NOOP, optlen);
234 l -= optlen;
235 optptr += optlen;
236 }
237 opt->ts = 0;
238 opt->rr = 0;
239 opt->rr_needaddr = 0;
240 opt->ts_needaddr = 0;
241 opt->ts_needtime = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000244/* helper used by ip_options_compile() to call fib_compute_spec_dst()
245 * at most one time.
246 */
247static void spec_dst_fill(__be32 *spec_dst, struct sk_buff *skb)
248{
249 if (*spec_dst == htonl(INADDR_ANY))
250 *spec_dst = fib_compute_spec_dst(skb);
251}
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253/*
254 * Verify options and fill pointers in struct options.
255 * Caller should clear *opt, and set opt->data.
256 * If opt == NULL, then skb->data should point to IP header.
257 */
258
Denis V. Lunev0e6bd4a2008-03-24 15:29:23 -0700259int ip_options_compile(struct net *net,
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000260 struct ip_options *opt, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000262 __be32 spec_dst = htonl(INADDR_ANY);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000263 unsigned char *pp_ptr = NULL;
David S. Miller11604722012-07-04 16:13:17 -0700264 struct rtable *rt = NULL;
David S. Miller35ebf652012-06-28 03:59:11 -0700265 unsigned char *optptr;
266 unsigned char *iph;
267 int optlen, l;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Denis V. Lunev22aba382008-03-22 16:36:20 -0700269 if (skb != NULL) {
David S. Miller11604722012-07-04 16:13:17 -0700270 rt = skb_rtable(skb);
Denis V. Lunev22aba382008-03-22 16:36:20 -0700271 optptr = (unsigned char *)&(ip_hdr(skb)[1]);
272 } else
Denis V. Lunev10fe7d82008-03-22 16:35:00 -0700273 optptr = opt->__data;
Denis V. Lunev22aba382008-03-22 16:36:20 -0700274 iph = optptr - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 for (l = opt->optlen; l > 0; ) {
277 switch (*optptr) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800278 case IPOPT_END:
Weilong Chena22318e2013-12-23 14:37:26 +0800279 for (optptr++, l--; l > 0; optptr++, l--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (*optptr != IPOPT_END) {
281 *optptr = IPOPT_END;
282 opt->is_changed = 1;
283 }
284 }
285 goto eol;
Weilong Chendd9b4552013-12-31 15:11:28 +0800286 case IPOPT_NOOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 l--;
288 optptr++;
289 continue;
290 }
Eric Dumazet10ec9472014-07-21 07:17:42 +0200291 if (unlikely(l < 2)) {
292 pp_ptr = optptr;
293 goto error;
294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 optlen = optptr[1];
Weilong Chena22318e2013-12-23 14:37:26 +0800296 if (optlen < 2 || optlen > l) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 pp_ptr = optptr;
298 goto error;
299 }
300 switch (*optptr) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800301 case IPOPT_SSRR:
302 case IPOPT_LSRR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (optlen < 3) {
304 pp_ptr = optptr + 1;
305 goto error;
306 }
307 if (optptr[2] < 4) {
308 pp_ptr = optptr + 2;
309 goto error;
310 }
311 /* NB: cf RFC-1812 5.2.4.1 */
312 if (opt->srr) {
313 pp_ptr = optptr;
314 goto error;
315 }
316 if (!skb) {
317 if (optptr[2] != 4 || optlen < 7 || ((optlen-3) & 3)) {
318 pp_ptr = optptr + 1;
319 goto error;
320 }
321 memcpy(&opt->faddr, &optptr[3], 4);
322 if (optlen > 7)
323 memmove(&optptr[3], &optptr[7], optlen-7);
324 }
325 opt->is_strictroute = (optptr[0] == IPOPT_SSRR);
326 opt->srr = optptr - iph;
327 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800328 case IPOPT_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (opt->rr) {
330 pp_ptr = optptr;
331 goto error;
332 }
333 if (optlen < 3) {
334 pp_ptr = optptr + 1;
335 goto error;
336 }
337 if (optptr[2] < 4) {
338 pp_ptr = optptr + 2;
339 goto error;
340 }
341 if (optptr[2] <= optlen) {
342 if (optptr[2]+3 > optlen) {
343 pp_ptr = optptr + 2;
344 goto error;
345 }
David S. Miller11604722012-07-04 16:13:17 -0700346 if (rt) {
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000347 spec_dst_fill(&spec_dst, skb);
David S. Miller35ebf652012-06-28 03:59:11 -0700348 memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 opt->is_changed = 1;
350 }
351 optptr[2] += 4;
352 opt->rr_needaddr = 1;
353 }
354 opt->rr = optptr - iph;
355 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800356 case IPOPT_TIMESTAMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (opt->ts) {
358 pp_ptr = optptr;
359 goto error;
360 }
361 if (optlen < 4) {
362 pp_ptr = optptr + 1;
363 goto error;
364 }
365 if (optptr[2] < 5) {
366 pp_ptr = optptr + 2;
367 goto error;
368 }
369 if (optptr[2] <= optlen) {
Chris Metcalf48bdf072011-05-29 10:55:44 +0000370 unsigned char *timeptr = NULL;
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900371 if (optptr[2]+3 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 pp_ptr = optptr + 2;
373 goto error;
374 }
375 switch (optptr[3]&0xF) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800376 case IPOPT_TS_TSONLY:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900377 if (skb)
Chris Metcalf48bdf072011-05-29 10:55:44 +0000378 timeptr = &optptr[optptr[2]-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 opt->ts_needtime = 1;
380 optptr[2] += 4;
381 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800382 case IPOPT_TS_TSANDADDR:
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900383 if (optptr[2]+7 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 pp_ptr = optptr + 2;
385 goto error;
386 }
David S. Miller11604722012-07-04 16:13:17 -0700387 if (rt) {
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000388 spec_dst_fill(&spec_dst, skb);
David S. Miller35ebf652012-06-28 03:59:11 -0700389 memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
Chris Metcalf48bdf072011-05-29 10:55:44 +0000390 timeptr = &optptr[optptr[2]+3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392 opt->ts_needaddr = 1;
393 opt->ts_needtime = 1;
394 optptr[2] += 8;
395 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800396 case IPOPT_TS_PRESPEC:
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900397 if (optptr[2]+7 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 pp_ptr = optptr + 2;
399 goto error;
400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 {
Al Virofd683222006-09-26 22:17:51 -0700402 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 memcpy(&addr, &optptr[optptr[2]-1], 4);
Denis V. Lunev0e6bd4a2008-03-24 15:29:23 -0700404 if (inet_addr_type(net, addr) == RTN_UNICAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 break;
406 if (skb)
Chris Metcalf48bdf072011-05-29 10:55:44 +0000407 timeptr = &optptr[optptr[2]+3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409 opt->ts_needtime = 1;
410 optptr[2] += 8;
411 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800412 default:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000413 if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 pp_ptr = optptr + 3;
415 goto error;
416 }
417 break;
418 }
419 if (timeptr) {
YOSHIFUJI Hideakif25c3d62008-04-21 02:34:08 -0700420 struct timespec tv;
Chris Metcalf48bdf072011-05-29 10:55:44 +0000421 u32 midtime;
YOSHIFUJI Hideakif25c3d62008-04-21 02:34:08 -0700422 getnstimeofday(&tv);
Chris Metcalf48bdf072011-05-29 10:55:44 +0000423 midtime = (tv.tv_sec % 86400) * MSEC_PER_SEC + tv.tv_nsec / NSEC_PER_MSEC;
424 put_unaligned_be32(midtime, timeptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 opt->is_changed = 1;
426 }
David Wardfa2b04f2013-03-05 17:06:32 +0000427 } else if ((optptr[3]&0xF) != IPOPT_TS_PRESPEC) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000428 unsigned int overflow = optptr[3]>>4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (overflow == 15) {
430 pp_ptr = optptr + 3;
431 goto error;
432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (skb) {
434 optptr[3] = (optptr[3]&0xF)|((overflow+1)<<4);
435 opt->is_changed = 1;
436 }
437 }
David Ward4660c7f2013-03-11 10:43:39 +0000438 opt->ts = optptr - iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800440 case IPOPT_RA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (optlen < 4) {
442 pp_ptr = optptr + 1;
443 goto error;
444 }
445 if (optptr[2] == 0 && optptr[3] == 0)
446 opt->router_alert = optptr - iph;
447 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800448 case IPOPT_CIPSO:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000449 if ((!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) || opt->cipso) {
Paul Moore11a03f72006-08-03 16:46:20 -0700450 pp_ptr = optptr;
451 goto error;
452 }
453 opt->cipso = optptr - iph;
Paul Moore15c45f72008-10-10 10:16:34 -0400454 if (cipso_v4_validate(skb, &optptr)) {
Paul Moore11a03f72006-08-03 16:46:20 -0700455 pp_ptr = optptr;
456 goto error;
457 }
458 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800459 case IPOPT_SEC:
460 case IPOPT_SID:
461 default:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000462 if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 pp_ptr = optptr;
464 goto error;
465 }
466 break;
467 }
468 l -= optlen;
469 optptr += optlen;
470 }
471
472eol:
473 if (!pp_ptr)
474 return 0;
475
476error:
477 if (skb) {
478 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((pp_ptr-iph)<<24));
479 }
480 return -EINVAL;
481}
Bandan Das462fb2a2010-09-19 09:34:33 +0000482EXPORT_SYMBOL(ip_options_compile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484/*
485 * Undo all the changes done by ip_options_compile().
486 */
487
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000488void ip_options_undo(struct ip_options *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
490 if (opt->srr) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000491 unsigned char *optptr = opt->__data+opt->srr-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 memmove(optptr+7, optptr+3, optptr[1]-7);
493 memcpy(optptr+3, &opt->faddr, 4);
494 }
495 if (opt->rr_needaddr) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000496 unsigned char *optptr = opt->__data+opt->rr-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 optptr[2] -= 4;
498 memset(&optptr[optptr[2]-1], 0, 4);
499 }
500 if (opt->ts) {
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000501 unsigned char *optptr = opt->__data+opt->ts-sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (opt->ts_needtime) {
503 optptr[2] -= 4;
504 memset(&optptr[optptr[2]-1], 0, 4);
505 if ((optptr[3]&0xF) == IPOPT_TS_PRESPEC)
506 optptr[2] -= 4;
507 }
508 if (opt->ts_needaddr) {
509 optptr[2] -= 4;
510 memset(&optptr[optptr[2]-1], 0, 4);
511 }
512 }
513}
514
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000515static struct ip_options_rcu *ip_options_get_alloc(const int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000517 return kzalloc(sizeof(struct ip_options_rcu) + ((optlen + 3) & ~3),
Mariusz Kozlowski37640702007-07-31 14:06:45 -0700518 GFP_KERNEL);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300519}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000521static int ip_options_get_finish(struct net *net, struct ip_options_rcu **optp,
522 struct ip_options_rcu *opt, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300523{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 while (optlen & 3)
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000525 opt->opt.__data[optlen++] = IPOPT_END;
526 opt->opt.optlen = optlen;
527 if (optlen && ip_options_compile(net, &opt->opt, NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 kfree(opt);
529 return -EINVAL;
530 }
Jesper Juhla51482b2005-11-08 09:41:34 -0800531 kfree(*optp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 *optp = opt;
533 return 0;
534}
535
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000536int ip_options_get_from_user(struct net *net, struct ip_options_rcu **optp,
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700537 unsigned char __user *data, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300538{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000539 struct ip_options_rcu *opt = ip_options_get_alloc(optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300540
541 if (!opt)
542 return -ENOMEM;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000543 if (optlen && copy_from_user(opt->opt.__data, data, optlen)) {
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300544 kfree(opt);
545 return -EFAULT;
546 }
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700547 return ip_options_get_finish(net, optp, opt, optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300548}
549
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000550int ip_options_get(struct net *net, struct ip_options_rcu **optp,
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700551 unsigned char *data, int optlen)
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300552{
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000553 struct ip_options_rcu *opt = ip_options_get_alloc(optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300554
555 if (!opt)
556 return -ENOMEM;
557 if (optlen)
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000558 memcpy(opt->opt.__data, data, optlen);
Denis V. Lunevf2c48022008-03-24 15:29:55 -0700559 return ip_options_get_finish(net, optp, opt, optlen);
Arnaldo Carvalho de Melo4c6ea292005-08-16 19:46:48 -0300560}
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562void ip_forward_options(struct sk_buff *skb)
563{
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000564 struct ip_options *opt = &(IPCB(skb)->opt);
565 unsigned char *optptr;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000566 struct rtable *rt = skb_rtable(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700567 unsigned char *raw = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 if (opt->rr_needaddr) {
570 optptr = (unsigned char *)raw + opt->rr;
David S. Miller8e363602011-05-13 17:29:41 -0400571 ip_rt_get_source(&optptr[optptr[2]-5], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 opt->is_changed = 1;
573 }
574 if (opt->srr_is_hit) {
575 int srrptr, srrspace;
576
577 optptr = raw + opt->srr;
578
Weilong Chena22318e2013-12-23 14:37:26 +0800579 for ( srrptr = optptr[2], srrspace = optptr[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 srrptr <= srrspace;
581 srrptr += 4
582 ) {
583 if (srrptr + 3 > srrspace)
584 break;
Li Weiac8a4812011-11-22 23:33:10 +0000585 if (memcmp(&opt->nexthop, &optptr[srrptr-1], 4) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 break;
587 }
588 if (srrptr + 3 <= srrspace) {
589 opt->is_changed = 1;
Li Weiac8a4812011-11-22 23:33:10 +0000590 ip_hdr(skb)->daddr = opt->nexthop;
Li Wei5dc78832012-02-09 21:15:25 +0000591 ip_rt_get_source(&optptr[srrptr-1], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 optptr[2] = srrptr+4;
Joe Perchese87cc472012-05-13 21:56:26 +0000593 } else {
594 net_crit_ratelimited("%s(): Argh! Destination lost!\n",
595 __func__);
596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (opt->ts_needaddr) {
598 optptr = raw + opt->ts;
David S. Miller8e363602011-05-13 17:29:41 -0400599 ip_rt_get_source(&optptr[optptr[2]-9], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 opt->is_changed = 1;
601 }
602 }
603 if (opt->is_changed) {
604 opt->is_changed = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700605 ip_send_check(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
607}
608
609int ip_options_rcv_srr(struct sk_buff *skb)
610{
611 struct ip_options *opt = &(IPCB(skb)->opt);
612 int srrspace, srrptr;
Al Viro9e12bb22006-09-26 21:25:20 -0700613 __be32 nexthop;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700614 struct iphdr *iph = ip_hdr(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700615 unsigned char *optptr = skb_network_header(skb) + opt->srr;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000616 struct rtable *rt = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct rtable *rt2;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000618 unsigned long orefdst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 int err;
620
David S. Miller10949552011-05-12 19:26:57 -0400621 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return 0;
623
624 if (skb->pkt_type != PACKET_HOST)
625 return -EINVAL;
626 if (rt->rt_type == RTN_UNICAST) {
627 if (!opt->is_strictroute)
628 return 0;
629 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl(16<<24));
630 return -EINVAL;
631 }
632 if (rt->rt_type != RTN_LOCAL)
633 return -EINVAL;
634
Weilong Chena22318e2013-12-23 14:37:26 +0800635 for (srrptr = optptr[2], srrspace = optptr[1]; srrptr <= srrspace; srrptr += 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (srrptr + 3 > srrspace) {
637 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((opt->srr+2)<<24));
638 return -EINVAL;
639 }
640 memcpy(&nexthop, &optptr[srrptr-1], 4);
641
Eric Dumazet7fee2262010-05-11 23:19:48 +0000642 orefdst = skb->_skb_refdst;
Eric Dumazetadf30902009-06-02 05:19:30 +0000643 skb_dst_set(skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 err = ip_route_input(skb, nexthop, iph->saddr, iph->tos, skb->dev);
Eric Dumazet511c3f92009-06-02 05:14:27 +0000645 rt2 = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (err || (rt2->rt_type != RTN_UNICAST && rt2->rt_type != RTN_LOCAL)) {
Eric Dumazet7fee2262010-05-11 23:19:48 +0000647 skb_dst_drop(skb);
648 skb->_skb_refdst = orefdst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return -EINVAL;
650 }
Eric Dumazet7fee2262010-05-11 23:19:48 +0000651 refdst_drop(orefdst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (rt2->rt_type != RTN_LOCAL)
653 break;
654 /* Superfast 8) loopback forward */
David S. Millerc30883b2011-05-12 19:30:58 -0400655 iph->daddr = nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 opt->is_changed = 1;
657 }
658 if (srrptr <= srrspace) {
659 opt->srr_is_hit = 1;
Li Weiac8a4812011-11-22 23:33:10 +0000660 opt->nexthop = nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 opt->is_changed = 1;
662 }
663 return 0;
664}
Bandan Das462fb2a2010-09-19 09:34:33 +0000665EXPORT_SYMBOL(ip_options_rcv_srr);