blob: da1b5038bdfd047e2bacd03bd289a51579bd69f2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * The options processing module for ip.c
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Authors: A.N.Kuznetsov
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Joe Perchesafd465032012-03-12 07:03:32 +000013#define pr_fmt(fmt) "IPv4: " fmt
14
Randy Dunlap4fc268d2006-01-11 12:17:47 -080015#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/types.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080019#include <linux/uaccess.h>
Chris Metcalf48bdf0722011-05-29 10:55:44 +000020#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/skbuff.h>
22#include <linux/ip.h>
23#include <linux/icmp.h>
24#include <linux/netdevice.h>
25#include <linux/rtnetlink.h>
26#include <net/sock.h>
27#include <net/ip.h>
28#include <net/icmp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020029#include <net/route.h>
Paul Moore11a03f72006-08-03 16:46:20 -070030#include <net/cipso_ipv4.h>
David S. Miller35ebf652012-06-28 03:59:11 -070031#include <net/ip_fib.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090033/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 * Write options to IP header, record destination address to
35 * source route option, address of outgoing interface
36 * (we should already know it, so that this function is allowed be
37 * called only after routing decision) and timestamp,
38 * if we originate this datagram.
39 *
40 * daddr is real destination address, next hop is recorded in IP header.
41 * saddr is address of outgoing interface.
42 */
43
Eric Dumazetf6d8bd02011-04-21 09:45:37 +000044void ip_options_build(struct sk_buff *skb, struct ip_options *opt,
David S. Miller8e363602011-05-13 17:29:41 -040045 __be32 daddr, struct rtable *rt, int is_frag)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -070047 unsigned char *iph = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 memcpy(&(IPCB(skb)->opt), opt, sizeof(struct ip_options));
Miaohe Lin343d8c62020-08-25 08:32:11 -040050 memcpy(iph + sizeof(struct iphdr), opt->__data, opt->optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 opt = &(IPCB(skb)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 if (opt->srr)
Miaohe Lin343d8c62020-08-25 08:32:11 -040054 memcpy(iph + opt->srr + iph[opt->srr + 1] - 4, &daddr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 if (!is_frag) {
57 if (opt->rr_needaddr)
Miaohe Lin343d8c62020-08-25 08:32:11 -040058 ip_rt_get_source(iph + opt->rr + iph[opt->rr + 2] - 5, skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 if (opt->ts_needaddr)
Miaohe Lin343d8c62020-08-25 08:32:11 -040060 ip_rt_get_source(iph + opt->ts + iph[opt->ts + 2] - 9, skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 if (opt->ts_needtime) {
Al Viroe25d2ca2006-09-27 18:28:47 -070062 __be32 midtime;
Deepa Dinamani822c8682016-02-27 00:32:15 -080063
64 midtime = inet_current_timestamp();
Miaohe Lin343d8c62020-08-25 08:32:11 -040065 memcpy(iph + opt->ts + iph[opt->ts + 2] - 5, &midtime, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 }
67 return;
68 }
69 if (opt->rr) {
Miaohe Lin343d8c62020-08-25 08:32:11 -040070 memset(iph + opt->rr, IPOPT_NOP, iph[opt->rr + 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 opt->rr = 0;
72 opt->rr_needaddr = 0;
73 }
74 if (opt->ts) {
Miaohe Lin343d8c62020-08-25 08:32:11 -040075 memset(iph + opt->ts, IPOPT_NOP, iph[opt->ts + 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 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
Paolo Abeni91ed1e62017-08-03 18:07:06 +020090int __ip_options_echo(struct net *net, struct ip_options *dopt,
91 struct sk_buff *skb, const struct ip_options *sopt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
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
Eric Dumazetf6d8bd02011-04-21 09:45:37 +000099 if (sopt->optlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700102 sptr = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 dptr = dopt->__data;
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (sopt->rr) {
106 optlen = sptr[sopt->rr+1];
107 soffset = sptr[sopt->rr+2];
108 dopt->rr = dopt->optlen + sizeof(struct iphdr);
109 memcpy(dptr, sptr+sopt->rr, optlen);
110 if (sopt->rr_needaddr && soffset <= optlen) {
111 if (soffset + 3 > optlen)
112 return -EINVAL;
113 dptr[2] = soffset + 4;
114 dopt->rr_needaddr = 1;
115 }
116 dptr += optlen;
117 dopt->optlen += optlen;
118 }
119 if (sopt->ts) {
120 optlen = sptr[sopt->ts+1];
121 soffset = sptr[sopt->ts+2];
122 dopt->ts = dopt->optlen + sizeof(struct iphdr);
123 memcpy(dptr, sptr+sopt->ts, optlen);
124 if (soffset <= optlen) {
125 if (sopt->ts_needaddr) {
126 if (soffset + 3 > optlen)
127 return -EINVAL;
128 dopt->ts_needaddr = 1;
129 soffset += 4;
130 }
131 if (sopt->ts_needtime) {
132 if (soffset + 3 > optlen)
133 return -EINVAL;
134 if ((dptr[3]&0xF) != IPOPT_TS_PRESPEC) {
135 dopt->ts_needtime = 1;
136 soffset += 4;
137 } else {
138 dopt->ts_needtime = 0;
139
Jan Luebbe8628bd82011-03-24 07:44:22 +0000140 if (soffset + 7 <= optlen) {
Al Virofd683222006-09-26 22:17:51 -0700141 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Jan Luebbe8628bd82011-03-24 07:44:22 +0000143 memcpy(&addr, dptr+soffset-1, 4);
Paolo Abeni91ed1e62017-08-03 18:07:06 +0200144 if (inet_addr_type(net, addr) != RTN_UNICAST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 dopt->ts_needtime = 1;
146 soffset += 8;
147 }
148 }
149 }
150 }
151 dptr[2] = soffset;
152 }
153 dptr += optlen;
154 dopt->optlen += optlen;
155 }
156 if (sopt->srr) {
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000157 unsigned char *start = sptr+sopt->srr;
Al Viro3ca3c682006-09-27 18:28:07 -0700158 __be32 faddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 optlen = start[1];
161 soffset = start[2];
162 doffset = 0;
163 if (soffset > optlen)
164 soffset = optlen + 1;
165 soffset -= 4;
166 if (soffset > 3) {
167 memcpy(&faddr, &start[soffset-1], 4);
Weilong Chena22318e2013-12-23 14:37:26 +0800168 for (soffset -= 4, doffset = 4; soffset > 3; soffset -= 4, doffset += 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 memcpy(&dptr[doffset-1], &start[soffset-1], 4);
170 /*
171 * RFC1812 requires to fix illegal source routes.
172 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700173 if (memcmp(&ip_hdr(skb)->saddr,
174 &start[soffset + 3], 4) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 doffset -= 4;
176 }
177 if (doffset > 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 dopt->faddr = faddr;
179 dptr[0] = start[0];
180 dptr[1] = doffset+3;
181 dptr[2] = 4;
182 dptr += doffset+3;
183 dopt->srr = dopt->optlen + sizeof(struct iphdr);
184 dopt->optlen += doffset+3;
185 dopt->is_strictroute = sopt->is_strictroute;
186 }
187 }
Paul Moore11a03f72006-08-03 16:46:20 -0700188 if (sopt->cipso) {
189 optlen = sptr[sopt->cipso+1];
190 dopt->cipso = dopt->optlen+sizeof(struct iphdr);
191 memcpy(dptr, sptr+sopt->cipso, optlen);
192 dptr += optlen;
193 dopt->optlen += optlen;
194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 while (dopt->optlen & 3) {
196 *dptr++ = IPOPT_END;
197 dopt->optlen++;
198 }
199 return 0;
200}
201
202/*
203 * Options "fragmenting", just fill options not
204 * allowed in fragments with NOOPs.
205 * Simple and stupid 8), but the most efficient way.
206 */
207
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000208void ip_options_fragment(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700210 unsigned char *optptr = skb_network_header(skb) + sizeof(struct iphdr);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000211 struct ip_options *opt = &(IPCB(skb)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 int l = opt->optlen;
213 int optlen;
214
215 while (l > 0) {
216 switch (*optptr) {
217 case IPOPT_END:
218 return;
219 case IPOPT_NOOP:
220 l--;
221 optptr++;
222 continue;
223 }
224 optlen = optptr[1];
Weilong Chena22318e2013-12-23 14:37:26 +0800225 if (optlen < 2 || optlen > l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return;
227 if (!IPOPT_COPIED(*optptr))
228 memset(optptr, IPOPT_NOOP, optlen);
229 l -= optlen;
230 optptr += optlen;
231 }
232 opt->ts = 0;
233 opt->rr = 0;
234 opt->rr_needaddr = 0;
235 opt->ts_needaddr = 0;
236 opt->ts_needtime = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000239/* helper used by ip_options_compile() to call fib_compute_spec_dst()
240 * at most one time.
241 */
242static void spec_dst_fill(__be32 *spec_dst, struct sk_buff *skb)
243{
244 if (*spec_dst == htonl(INADDR_ANY))
245 *spec_dst = fib_compute_spec_dst(skb);
246}
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248/*
249 * Verify options and fill pointers in struct options.
250 * Caller should clear *opt, and set opt->data.
251 * If opt == NULL, then skb->data should point to IP header.
252 */
253
Nazarov Sergey3da1ed72019-02-25 19:27:15 +0300254int __ip_options_compile(struct net *net,
255 struct ip_options *opt, struct sk_buff *skb,
256 __be32 *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000258 __be32 spec_dst = htonl(INADDR_ANY);
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000259 unsigned char *pp_ptr = NULL;
David S. Miller11604722012-07-04 16:13:17 -0700260 struct rtable *rt = NULL;
David S. Miller35ebf652012-06-28 03:59:11 -0700261 unsigned char *optptr;
262 unsigned char *iph;
263 int optlen, l;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Ian Morris00db4122015-04-03 09:17:27 +0100265 if (skb) {
David S. Miller11604722012-07-04 16:13:17 -0700266 rt = skb_rtable(skb);
Denis V. Lunev22aba382008-03-22 16:36:20 -0700267 optptr = (unsigned char *)&(ip_hdr(skb)[1]);
268 } else
Denis V. Lunev10fe7d82008-03-22 16:35:00 -0700269 optptr = opt->__data;
Denis V. Lunev22aba382008-03-22 16:36:20 -0700270 iph = optptr - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 for (l = opt->optlen; l > 0; ) {
273 switch (*optptr) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800274 case IPOPT_END:
Weilong Chena22318e2013-12-23 14:37:26 +0800275 for (optptr++, l--; l > 0; optptr++, l--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (*optptr != IPOPT_END) {
277 *optptr = IPOPT_END;
278 opt->is_changed = 1;
279 }
280 }
281 goto eol;
Weilong Chendd9b4552013-12-31 15:11:28 +0800282 case IPOPT_NOOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 l--;
284 optptr++;
285 continue;
286 }
Eric Dumazet10ec9472014-07-21 07:17:42 +0200287 if (unlikely(l < 2)) {
288 pp_ptr = optptr;
289 goto error;
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 optlen = optptr[1];
Weilong Chena22318e2013-12-23 14:37:26 +0800292 if (optlen < 2 || optlen > l) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 pp_ptr = optptr;
294 goto error;
295 }
296 switch (*optptr) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800297 case IPOPT_SSRR:
298 case IPOPT_LSRR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (optlen < 3) {
300 pp_ptr = optptr + 1;
301 goto error;
302 }
303 if (optptr[2] < 4) {
304 pp_ptr = optptr + 2;
305 goto error;
306 }
307 /* NB: cf RFC-1812 5.2.4.1 */
308 if (opt->srr) {
309 pp_ptr = optptr;
310 goto error;
311 }
312 if (!skb) {
313 if (optptr[2] != 4 || optlen < 7 || ((optlen-3) & 3)) {
314 pp_ptr = optptr + 1;
315 goto error;
316 }
317 memcpy(&opt->faddr, &optptr[3], 4);
318 if (optlen > 7)
319 memmove(&optptr[3], &optptr[7], optlen-7);
320 }
321 opt->is_strictroute = (optptr[0] == IPOPT_SSRR);
322 opt->srr = optptr - iph;
323 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800324 case IPOPT_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (opt->rr) {
326 pp_ptr = optptr;
327 goto error;
328 }
329 if (optlen < 3) {
330 pp_ptr = optptr + 1;
331 goto error;
332 }
333 if (optptr[2] < 4) {
334 pp_ptr = optptr + 2;
335 goto error;
336 }
337 if (optptr[2] <= optlen) {
338 if (optptr[2]+3 > optlen) {
339 pp_ptr = optptr + 2;
340 goto error;
341 }
David S. Miller11604722012-07-04 16:13:17 -0700342 if (rt) {
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000343 spec_dst_fill(&spec_dst, skb);
David S. Miller35ebf652012-06-28 03:59:11 -0700344 memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 opt->is_changed = 1;
346 }
347 optptr[2] += 4;
348 opt->rr_needaddr = 1;
349 }
350 opt->rr = optptr - iph;
351 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800352 case IPOPT_TIMESTAMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (opt->ts) {
354 pp_ptr = optptr;
355 goto error;
356 }
357 if (optlen < 4) {
358 pp_ptr = optptr + 1;
359 goto error;
360 }
361 if (optptr[2] < 5) {
362 pp_ptr = optptr + 2;
363 goto error;
364 }
365 if (optptr[2] <= optlen) {
Chris Metcalf48bdf0722011-05-29 10:55:44 +0000366 unsigned char *timeptr = NULL;
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900367 if (optptr[2]+3 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 pp_ptr = optptr + 2;
369 goto error;
370 }
371 switch (optptr[3]&0xF) {
Weilong Chendd9b4552013-12-31 15:11:28 +0800372 case IPOPT_TS_TSONLY:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900373 if (skb)
Chris Metcalf48bdf0722011-05-29 10:55:44 +0000374 timeptr = &optptr[optptr[2]-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 opt->ts_needtime = 1;
376 optptr[2] += 4;
377 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800378 case IPOPT_TS_TSANDADDR:
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900379 if (optptr[2]+7 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 pp_ptr = optptr + 2;
381 goto error;
382 }
David S. Miller11604722012-07-04 16:13:17 -0700383 if (rt) {
Eric Dumazetbf5e53e2012-07-04 22:30:09 +0000384 spec_dst_fill(&spec_dst, skb);
David S. Miller35ebf652012-06-28 03:59:11 -0700385 memcpy(&optptr[optptr[2]-1], &spec_dst, 4);
Chris Metcalf48bdf0722011-05-29 10:55:44 +0000386 timeptr = &optptr[optptr[2]+3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388 opt->ts_needaddr = 1;
389 opt->ts_needtime = 1;
390 optptr[2] += 8;
391 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800392 case IPOPT_TS_PRESPEC:
Hisao Tanabe5a2b6462014-04-27 19:03:45 +0900393 if (optptr[2]+7 > optlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 pp_ptr = optptr + 2;
395 goto error;
396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 {
Al Virofd683222006-09-26 22:17:51 -0700398 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 memcpy(&addr, &optptr[optptr[2]-1], 4);
Denis V. Lunev0e6bd4a2008-03-24 15:29:23 -0700400 if (inet_addr_type(net, addr) == RTN_UNICAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 break;
402 if (skb)
Chris Metcalf48bdf0722011-05-29 10:55:44 +0000403 timeptr = &optptr[optptr[2]+3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405 opt->ts_needtime = 1;
406 optptr[2] += 8;
407 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800408 default:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000409 if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 pp_ptr = optptr + 3;
411 goto error;
412 }
413 break;
414 }
415 if (timeptr) {
Deepa Dinamani822c8682016-02-27 00:32:15 -0800416 __be32 midtime;
417
418 midtime = inet_current_timestamp();
419 memcpy(timeptr, &midtime, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 opt->is_changed = 1;
421 }
David Wardfa2b04f2013-03-05 17:06:32 +0000422 } else if ((optptr[3]&0xF) != IPOPT_TS_PRESPEC) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000423 unsigned int overflow = optptr[3]>>4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (overflow == 15) {
425 pp_ptr = optptr + 3;
426 goto error;
427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (skb) {
429 optptr[3] = (optptr[3]&0xF)|((overflow+1)<<4);
430 opt->is_changed = 1;
431 }
432 }
David Ward4660c7f2013-03-11 10:43:39 +0000433 opt->ts = optptr - iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800435 case IPOPT_RA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (optlen < 4) {
437 pp_ptr = optptr + 1;
438 goto error;
439 }
440 if (optptr[2] == 0 && optptr[3] == 0)
441 opt->router_alert = optptr - iph;
442 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800443 case IPOPT_CIPSO:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000444 if ((!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) || opt->cipso) {
Paul Moore11a03f72006-08-03 16:46:20 -0700445 pp_ptr = optptr;
446 goto error;
447 }
448 opt->cipso = optptr - iph;
Paul Moore15c45f72008-10-10 10:16:34 -0400449 if (cipso_v4_validate(skb, &optptr)) {
Paul Moore11a03f72006-08-03 16:46:20 -0700450 pp_ptr = optptr;
451 goto error;
452 }
453 break;
Weilong Chendd9b4552013-12-31 15:11:28 +0800454 case IPOPT_SEC:
455 case IPOPT_SID:
456 default:
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000457 if (!skb && !ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 pp_ptr = optptr;
459 goto error;
460 }
461 break;
462 }
463 l -= optlen;
464 optptr += optlen;
465 }
466
467eol:
468 if (!pp_ptr)
469 return 0;
470
471error:
Nazarov Sergey3da1ed72019-02-25 19:27:15 +0300472 if (info)
473 *info = htonl((pp_ptr-iph)<<24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return -EINVAL;
475}
Stephen Suryaputradbb52812019-06-20 12:19:59 -0400476EXPORT_SYMBOL(__ip_options_compile);
Nazarov Sergey3da1ed72019-02-25 19:27:15 +0300477
478int ip_options_compile(struct net *net,
479 struct ip_options *opt, struct sk_buff *skb)
480{
481 int ret;
482 __be32 info;
483
484 ret = __ip_options_compile(net, opt, skb, &info);
485 if (ret != 0 && skb)
486 icmp_send(skb, ICMP_PARAMETERPROB, 0, info);
487 return ret;
488}
Bandan Das462fb2a2010-09-19 09:34:33 +0000489EXPORT_SYMBOL(ip_options_compile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491/*
492 * Undo all the changes done by ip_options_compile().
493 */
494
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000495void ip_options_undo(struct ip_options *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
497 if (opt->srr) {
Miaohe Lin343d8c62020-08-25 08:32:11 -0400498 unsigned char *optptr = opt->__data + opt->srr - sizeof(struct iphdr);
499
500 memmove(optptr + 7, optptr + 3, optptr[1] - 7);
501 memcpy(optptr + 3, &opt->faddr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503 if (opt->rr_needaddr) {
Miaohe Lin343d8c62020-08-25 08:32:11 -0400504 unsigned char *optptr = opt->__data + opt->rr - sizeof(struct iphdr);
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 optptr[2] -= 4;
Miaohe Lin343d8c62020-08-25 08:32:11 -0400507 memset(&optptr[optptr[2] - 1], 0, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509 if (opt->ts) {
Miaohe Lin343d8c62020-08-25 08:32:11 -0400510 unsigned char *optptr = opt->__data + opt->ts - sizeof(struct iphdr);
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (opt->ts_needtime) {
513 optptr[2] -= 4;
Miaohe Lin343d8c62020-08-25 08:32:11 -0400514 memset(&optptr[optptr[2] - 1], 0, 4);
515 if ((optptr[3] & 0xF) == IPOPT_TS_PRESPEC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 optptr[2] -= 4;
517 }
518 if (opt->ts_needaddr) {
519 optptr[2] -= 4;
Miaohe Lin343d8c62020-08-25 08:32:11 -0400520 memset(&optptr[optptr[2] - 1], 0, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522 }
523}
524
Christoph Hellwigde40a3e2020-07-23 08:08:57 +0200525int ip_options_get(struct net *net, struct ip_options_rcu **optp,
526 sockptr_t data, int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Christoph Hellwigde40a3e2020-07-23 08:08:57 +0200528 struct ip_options_rcu *opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Christoph Hellwigde40a3e2020-07-23 08:08:57 +0200530 opt = kzalloc(sizeof(struct ip_options_rcu) + ((optlen + 3) & ~3),
531 GFP_KERNEL);
532 if (!opt)
533 return -ENOMEM;
534 if (optlen && copy_from_sockptr(opt->opt.__data, data, optlen)) {
535 kfree(opt);
536 return -EFAULT;
537 }
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 while (optlen & 3)
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000540 opt->opt.__data[optlen++] = IPOPT_END;
541 opt->opt.optlen = optlen;
542 if (optlen && ip_options_compile(net, &opt->opt, NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 kfree(opt);
544 return -EINVAL;
545 }
Jesper Juhla51482b2005-11-08 09:41:34 -0800546 kfree(*optp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 *optp = opt;
548 return 0;
549}
550
551void ip_forward_options(struct sk_buff *skb)
552{
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000553 struct ip_options *opt = &(IPCB(skb)->opt);
554 unsigned char *optptr;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000555 struct rtable *rt = skb_rtable(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700556 unsigned char *raw = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 if (opt->rr_needaddr) {
559 optptr = (unsigned char *)raw + opt->rr;
David S. Miller8e363602011-05-13 17:29:41 -0400560 ip_rt_get_source(&optptr[optptr[2]-5], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 opt->is_changed = 1;
562 }
563 if (opt->srr_is_hit) {
564 int srrptr, srrspace;
565
566 optptr = raw + opt->srr;
567
Weilong Chena22318e2013-12-23 14:37:26 +0800568 for ( srrptr = optptr[2], srrspace = optptr[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 srrptr <= srrspace;
570 srrptr += 4
571 ) {
572 if (srrptr + 3 > srrspace)
573 break;
Li Weiac8a4812011-11-22 23:33:10 +0000574 if (memcmp(&opt->nexthop, &optptr[srrptr-1], 4) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 break;
576 }
577 if (srrptr + 3 <= srrspace) {
578 opt->is_changed = 1;
Li Weiac8a4812011-11-22 23:33:10 +0000579 ip_hdr(skb)->daddr = opt->nexthop;
Li Wei5dc78832012-02-09 21:15:25 +0000580 ip_rt_get_source(&optptr[srrptr-1], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 optptr[2] = srrptr+4;
Joe Perchese87cc472012-05-13 21:56:26 +0000582 } else {
583 net_crit_ratelimited("%s(): Argh! Destination lost!\n",
584 __func__);
585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (opt->ts_needaddr) {
587 optptr = raw + opt->ts;
David S. Miller8e363602011-05-13 17:29:41 -0400588 ip_rt_get_source(&optptr[optptr[2]-9], skb, rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 opt->is_changed = 1;
590 }
591 }
592 if (opt->is_changed) {
593 opt->is_changed = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700594 ip_send_check(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596}
597
Stephen Suryaputra8c83f2d2019-04-01 09:17:32 -0400598int ip_options_rcv_srr(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
600 struct ip_options *opt = &(IPCB(skb)->opt);
601 int srrspace, srrptr;
Al Viro9e12bb22006-09-26 21:25:20 -0700602 __be32 nexthop;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700603 struct iphdr *iph = ip_hdr(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700604 unsigned char *optptr = skb_network_header(skb) + opt->srr;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000605 struct rtable *rt = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 struct rtable *rt2;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000607 unsigned long orefdst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 int err;
609
David S. Miller10949552011-05-12 19:26:57 -0400610 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return 0;
612
613 if (skb->pkt_type != PACKET_HOST)
614 return -EINVAL;
615 if (rt->rt_type == RTN_UNICAST) {
616 if (!opt->is_strictroute)
617 return 0;
618 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl(16<<24));
619 return -EINVAL;
620 }
621 if (rt->rt_type != RTN_LOCAL)
622 return -EINVAL;
623
Weilong Chena22318e2013-12-23 14:37:26 +0800624 for (srrptr = optptr[2], srrspace = optptr[1]; srrptr <= srrspace; srrptr += 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (srrptr + 3 > srrspace) {
626 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((opt->srr+2)<<24));
627 return -EINVAL;
628 }
629 memcpy(&nexthop, &optptr[srrptr-1], 4);
630
Eric Dumazet7fee2262010-05-11 23:19:48 +0000631 orefdst = skb->_skb_refdst;
Eric Dumazetadf30902009-06-02 05:19:30 +0000632 skb_dst_set(skb, NULL);
Stephen Suryaputra8c83f2d2019-04-01 09:17:32 -0400633 err = ip_route_input(skb, nexthop, iph->saddr, iph->tos, dev);
Eric Dumazet511c3f92009-06-02 05:14:27 +0000634 rt2 = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (err || (rt2->rt_type != RTN_UNICAST && rt2->rt_type != RTN_LOCAL)) {
Eric Dumazet7fee2262010-05-11 23:19:48 +0000636 skb_dst_drop(skb);
637 skb->_skb_refdst = orefdst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return -EINVAL;
639 }
Eric Dumazet7fee2262010-05-11 23:19:48 +0000640 refdst_drop(orefdst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (rt2->rt_type != RTN_LOCAL)
642 break;
643 /* Superfast 8) loopback forward */
David S. Millerc30883b2011-05-12 19:30:58 -0400644 iph->daddr = nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 opt->is_changed = 1;
646 }
647 if (srrptr <= srrspace) {
648 opt->srr_is_hit = 1;
Li Weiac8a4812011-11-22 23:33:10 +0000649 opt->nexthop = nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 opt->is_changed = 1;
651 }
652 return 0;
653}
Bandan Das462fb2a2010-09-19 09:34:33 +0000654EXPORT_SYMBOL(ip_options_rcv_srr);