ip_options.c revision 241480
1/*
2 * Copyright (c) 1982, 1986, 1988, 1993
3 *      The Regents of the University of California.
4 * Copyright (c) 2005 Andre Oppermann, Internet Business Solutions AG.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 * 4. Neither the name of the University nor the names of its contributors
16 *    may be used to endorse or promote products derived from this software
17 *    without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/netinet/ip_options.c 241480 2012-10-12 09:24:24Z glebius $");
34
35#include "opt_ipstealth.h"
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/mbuf.h>
40#include <sys/domain.h>
41#include <sys/protosw.h>
42#include <sys/socket.h>
43#include <sys/time.h>
44#include <sys/kernel.h>
45#include <sys/syslog.h>
46#include <sys/sysctl.h>
47
48#include <net/if.h>
49#include <net/if_types.h>
50#include <net/if_var.h>
51#include <net/if_dl.h>
52#include <net/route.h>
53#include <net/netisr.h>
54#include <net/vnet.h>
55
56#include <netinet/in.h>
57#include <netinet/in_systm.h>
58#include <netinet/in_var.h>
59#include <netinet/ip.h>
60#include <netinet/in_pcb.h>
61#include <netinet/ip_var.h>
62#include <netinet/ip_options.h>
63#include <netinet/ip_icmp.h>
64#include <machine/in_cksum.h>
65
66#include <sys/socketvar.h>
67
68static int	ip_dosourceroute = 0;
69SYSCTL_INT(_net_inet_ip, IPCTL_SOURCEROUTE, sourceroute, CTLFLAG_RW,
70    &ip_dosourceroute, 0, "Enable forwarding source routed IP packets");
71
72static int	ip_acceptsourceroute = 0;
73SYSCTL_INT(_net_inet_ip, IPCTL_ACCEPTSOURCEROUTE, accept_sourceroute,
74    CTLFLAG_RW, &ip_acceptsourceroute, 0,
75    "Enable accepting source routed IP packets");
76
77int		ip_doopts = 1;	/* 0 = ignore, 1 = process, 2 = reject */
78SYSCTL_INT(_net_inet_ip, OID_AUTO, process_options, CTLFLAG_RW,
79    &ip_doopts, 0, "Enable IP options processing ([LS]SRR, RR, TS)");
80
81static void	save_rte(struct mbuf *m, u_char *, struct in_addr);
82
83/*
84 * Do option processing on a datagram, possibly discarding it if bad options
85 * are encountered, or forwarding it if source-routed.
86 *
87 * The pass argument is used when operating in the IPSTEALTH mode to tell
88 * what options to process: [LS]SRR (pass 0) or the others (pass 1).  The
89 * reason for as many as two passes is that when doing IPSTEALTH, non-routing
90 * options should be processed only if the packet is for us.
91 *
92 * Returns 1 if packet has been forwarded/freed, 0 if the packet should be
93 * processed further.
94 */
95int
96ip_dooptions(struct mbuf *m, int pass)
97{
98	struct ip *ip = mtod(m, struct ip *);
99	u_char *cp;
100	struct in_ifaddr *ia;
101	int opt, optlen, cnt, off, code, type = ICMP_PARAMPROB, forward = 0;
102	struct in_addr *sin, dst;
103	uint32_t ntime;
104	struct	sockaddr_in ipaddr = { sizeof(ipaddr), AF_INET };
105
106	/* Ignore or reject packets with IP options. */
107	if (ip_doopts == 0)
108		return 0;
109	else if (ip_doopts == 2) {
110		type = ICMP_UNREACH;
111		code = ICMP_UNREACH_FILTER_PROHIB;
112		goto bad;
113	}
114
115	dst = ip->ip_dst;
116	cp = (u_char *)(ip + 1);
117	cnt = (ip->ip_hl << 2) - sizeof (struct ip);
118	for (; cnt > 0; cnt -= optlen, cp += optlen) {
119		opt = cp[IPOPT_OPTVAL];
120		if (opt == IPOPT_EOL)
121			break;
122		if (opt == IPOPT_NOP)
123			optlen = 1;
124		else {
125			if (cnt < IPOPT_OLEN + sizeof(*cp)) {
126				code = &cp[IPOPT_OLEN] - (u_char *)ip;
127				goto bad;
128			}
129			optlen = cp[IPOPT_OLEN];
130			if (optlen < IPOPT_OLEN + sizeof(*cp) || optlen > cnt) {
131				code = &cp[IPOPT_OLEN] - (u_char *)ip;
132				goto bad;
133			}
134		}
135		switch (opt) {
136
137		default:
138			break;
139
140		/*
141		 * Source routing with record.  Find interface with current
142		 * destination address.  If none on this machine then drop if
143		 * strictly routed, or do nothing if loosely routed.  Record
144		 * interface address and bring up next address component.  If
145		 * strictly routed make sure next address is on directly
146		 * accessible net.
147		 */
148		case IPOPT_LSRR:
149		case IPOPT_SSRR:
150#ifdef IPSTEALTH
151			if (V_ipstealth && pass > 0)
152				break;
153#endif
154			if (optlen < IPOPT_OFFSET + sizeof(*cp)) {
155				code = &cp[IPOPT_OLEN] - (u_char *)ip;
156				goto bad;
157			}
158			if ((off = cp[IPOPT_OFFSET]) < IPOPT_MINOFF) {
159				code = &cp[IPOPT_OFFSET] - (u_char *)ip;
160				goto bad;
161			}
162			ipaddr.sin_addr = ip->ip_dst;
163			if (ifa_ifwithaddr_check((struct sockaddr *)&ipaddr)
164			    == 0) {
165				if (opt == IPOPT_SSRR) {
166					type = ICMP_UNREACH;
167					code = ICMP_UNREACH_SRCFAIL;
168					goto bad;
169				}
170				if (!ip_dosourceroute)
171					goto nosourcerouting;
172				/*
173				 * Loose routing, and not at next destination
174				 * yet; nothing to do except forward.
175				 */
176				break;
177			}
178			off--;			/* 0 origin */
179			if (off > optlen - (int)sizeof(struct in_addr)) {
180				/*
181				 * End of source route.  Should be for us.
182				 */
183				if (!ip_acceptsourceroute)
184					goto nosourcerouting;
185				save_rte(m, cp, ip->ip_src);
186				break;
187			}
188#ifdef IPSTEALTH
189			if (V_ipstealth)
190				goto dropit;
191#endif
192			if (!ip_dosourceroute) {
193				if (V_ipforwarding) {
194					char buf[16]; /* aaa.bbb.ccc.ddd\0 */
195					/*
196					 * Acting as a router, so generate
197					 * ICMP
198					 */
199nosourcerouting:
200					strcpy(buf, inet_ntoa(ip->ip_dst));
201					log(LOG_WARNING,
202					    "attempted source route from %s to %s\n",
203					    inet_ntoa(ip->ip_src), buf);
204					type = ICMP_UNREACH;
205					code = ICMP_UNREACH_SRCFAIL;
206					goto bad;
207				} else {
208					/*
209					 * Not acting as a router, so
210					 * silently drop.
211					 */
212#ifdef IPSTEALTH
213dropit:
214#endif
215					IPSTAT_INC(ips_cantforward);
216					m_freem(m);
217					return (1);
218				}
219			}
220
221			/*
222			 * locate outgoing interface
223			 */
224			(void)memcpy(&ipaddr.sin_addr, cp + off,
225			    sizeof(ipaddr.sin_addr));
226
227			if (opt == IPOPT_SSRR) {
228#define	INA	struct in_ifaddr *
229#define	SA	struct sockaddr *
230			    if ((ia = (INA)ifa_ifwithdstaddr((SA)&ipaddr)) == NULL)
231				    ia = (INA)ifa_ifwithnet((SA)&ipaddr, 0);
232			} else
233/* XXX MRT 0 for routing */
234				ia = ip_rtaddr(ipaddr.sin_addr, M_GETFIB(m));
235			if (ia == NULL) {
236				type = ICMP_UNREACH;
237				code = ICMP_UNREACH_SRCFAIL;
238				goto bad;
239			}
240			ip->ip_dst = ipaddr.sin_addr;
241			(void)memcpy(cp + off, &(IA_SIN(ia)->sin_addr),
242			    sizeof(struct in_addr));
243			ifa_free(&ia->ia_ifa);
244			cp[IPOPT_OFFSET] += sizeof(struct in_addr);
245			/*
246			 * Let ip_intr's mcast routing check handle mcast pkts
247			 */
248			forward = !IN_MULTICAST(ntohl(ip->ip_dst.s_addr));
249			break;
250
251		case IPOPT_RR:
252#ifdef IPSTEALTH
253			if (V_ipstealth && pass == 0)
254				break;
255#endif
256			if (optlen < IPOPT_OFFSET + sizeof(*cp)) {
257				code = &cp[IPOPT_OFFSET] - (u_char *)ip;
258				goto bad;
259			}
260			if ((off = cp[IPOPT_OFFSET]) < IPOPT_MINOFF) {
261				code = &cp[IPOPT_OFFSET] - (u_char *)ip;
262				goto bad;
263			}
264			/*
265			 * If no space remains, ignore.
266			 */
267			off--;			/* 0 origin */
268			if (off > optlen - (int)sizeof(struct in_addr))
269				break;
270			(void)memcpy(&ipaddr.sin_addr, &ip->ip_dst,
271			    sizeof(ipaddr.sin_addr));
272			/*
273			 * Locate outgoing interface; if we're the
274			 * destination, use the incoming interface (should be
275			 * same).
276			 */
277			if ((ia = (INA)ifa_ifwithaddr((SA)&ipaddr)) == NULL &&
278			    (ia = ip_rtaddr(ipaddr.sin_addr, M_GETFIB(m))) == NULL) {
279				type = ICMP_UNREACH;
280				code = ICMP_UNREACH_HOST;
281				goto bad;
282			}
283			(void)memcpy(cp + off, &(IA_SIN(ia)->sin_addr),
284			    sizeof(struct in_addr));
285			ifa_free(&ia->ia_ifa);
286			cp[IPOPT_OFFSET] += sizeof(struct in_addr);
287			break;
288
289		case IPOPT_TS:
290#ifdef IPSTEALTH
291			if (V_ipstealth && pass == 0)
292				break;
293#endif
294			code = cp - (u_char *)ip;
295			if (optlen < 4 || optlen > 40) {
296				code = &cp[IPOPT_OLEN] - (u_char *)ip;
297				goto bad;
298			}
299			if ((off = cp[IPOPT_OFFSET]) < 5) {
300				code = &cp[IPOPT_OLEN] - (u_char *)ip;
301				goto bad;
302			}
303			if (off > optlen - (int)sizeof(int32_t)) {
304				cp[IPOPT_OFFSET + 1] += (1 << 4);
305				if ((cp[IPOPT_OFFSET + 1] & 0xf0) == 0) {
306					code = &cp[IPOPT_OFFSET] - (u_char *)ip;
307					goto bad;
308				}
309				break;
310			}
311			off--;				/* 0 origin */
312			sin = (struct in_addr *)(cp + off);
313			switch (cp[IPOPT_OFFSET + 1] & 0x0f) {
314
315			case IPOPT_TS_TSONLY:
316				break;
317
318			case IPOPT_TS_TSANDADDR:
319				if (off + sizeof(uint32_t) +
320				    sizeof(struct in_addr) > optlen) {
321					code = &cp[IPOPT_OFFSET] - (u_char *)ip;
322					goto bad;
323				}
324				ipaddr.sin_addr = dst;
325				ia = (INA)ifaof_ifpforaddr((SA)&ipaddr,
326							    m->m_pkthdr.rcvif);
327				if (ia == NULL)
328					continue;
329				(void)memcpy(sin, &IA_SIN(ia)->sin_addr,
330				    sizeof(struct in_addr));
331				ifa_free(&ia->ia_ifa);
332				cp[IPOPT_OFFSET] += sizeof(struct in_addr);
333				off += sizeof(struct in_addr);
334				break;
335
336			case IPOPT_TS_PRESPEC:
337				if (off + sizeof(uint32_t) +
338				    sizeof(struct in_addr) > optlen) {
339					code = &cp[IPOPT_OFFSET] - (u_char *)ip;
340					goto bad;
341				}
342				(void)memcpy(&ipaddr.sin_addr, sin,
343				    sizeof(struct in_addr));
344				if (ifa_ifwithaddr_check((SA)&ipaddr) == 0)
345					continue;
346				cp[IPOPT_OFFSET] += sizeof(struct in_addr);
347				off += sizeof(struct in_addr);
348				break;
349
350			default:
351				code = &cp[IPOPT_OFFSET + 1] - (u_char *)ip;
352				goto bad;
353			}
354			ntime = iptime();
355			(void)memcpy(cp + off, &ntime, sizeof(uint32_t));
356			cp[IPOPT_OFFSET] += sizeof(uint32_t);
357		}
358	}
359	if (forward && V_ipforwarding) {
360		ip_forward(m, 1);
361		return (1);
362	}
363	return (0);
364bad:
365	icmp_error(m, type, code, 0, 0);
366	IPSTAT_INC(ips_badoptions);
367	return (1);
368}
369
370/*
371 * Save incoming source route for use in replies, to be picked up later by
372 * ip_srcroute if the receiver is interested.
373 */
374static void
375save_rte(struct mbuf *m, u_char *option, struct in_addr dst)
376{
377	unsigned olen;
378	struct ipopt_tag *opts;
379
380	opts = (struct ipopt_tag *)m_tag_get(PACKET_TAG_IPOPTIONS,
381	    sizeof(struct ipopt_tag), M_NOWAIT);
382	if (opts == NULL)
383		return;
384
385	olen = option[IPOPT_OLEN];
386	if (olen > sizeof(opts->ip_srcrt) - (1 + sizeof(dst))) {
387		m_tag_free((struct m_tag *)opts);
388		return;
389	}
390	bcopy(option, opts->ip_srcrt.srcopt, olen);
391	opts->ip_nhops = (olen - IPOPT_OFFSET - 1) / sizeof(struct in_addr);
392	opts->ip_srcrt.dst = dst;
393	m_tag_prepend(m, (struct m_tag *)opts);
394}
395
396/*
397 * Retrieve incoming source route for use in replies, in the same form used
398 * by setsockopt.  The first hop is placed before the options, will be
399 * removed later.
400 */
401struct mbuf *
402ip_srcroute(struct mbuf *m0)
403{
404	struct in_addr *p, *q;
405	struct mbuf *m;
406	struct ipopt_tag *opts;
407
408	opts = (struct ipopt_tag *)m_tag_find(m0, PACKET_TAG_IPOPTIONS, NULL);
409	if (opts == NULL)
410		return (NULL);
411
412	if (opts->ip_nhops == 0)
413		return (NULL);
414	m = m_get(M_DONTWAIT, MT_DATA);
415	if (m == NULL)
416		return (NULL);
417
418#define OPTSIZ	(sizeof(opts->ip_srcrt.nop) + sizeof(opts->ip_srcrt.srcopt))
419
420	/* length is (nhops+1)*sizeof(addr) + sizeof(nop + srcrt header) */
421	m->m_len = opts->ip_nhops * sizeof(struct in_addr) +
422	    sizeof(struct in_addr) + OPTSIZ;
423
424	/*
425	 * First, save first hop for return route.
426	 */
427	p = &(opts->ip_srcrt.route[opts->ip_nhops - 1]);
428	*(mtod(m, struct in_addr *)) = *p--;
429
430	/*
431	 * Copy option fields and padding (nop) to mbuf.
432	 */
433	opts->ip_srcrt.nop = IPOPT_NOP;
434	opts->ip_srcrt.srcopt[IPOPT_OFFSET] = IPOPT_MINOFF;
435	(void)memcpy(mtod(m, caddr_t) + sizeof(struct in_addr),
436	    &(opts->ip_srcrt.nop), OPTSIZ);
437	q = (struct in_addr *)(mtod(m, caddr_t) +
438	    sizeof(struct in_addr) + OPTSIZ);
439#undef OPTSIZ
440	/*
441	 * Record return path as an IP source route, reversing the path
442	 * (pointers are now aligned).
443	 */
444	while (p >= opts->ip_srcrt.route) {
445		*q++ = *p--;
446	}
447	/*
448	 * Last hop goes to final destination.
449	 */
450	*q = opts->ip_srcrt.dst;
451	m_tag_delete(m0, (struct m_tag *)opts);
452	return (m);
453}
454
455/*
456 * Strip out IP options, at higher level protocol in the kernel.
457 */
458void
459ip_stripoptions(struct mbuf *m)
460{
461	int i;
462	struct ip *ip = mtod(m, struct ip *);
463	caddr_t opts;
464	int olen;
465
466	olen = (ip->ip_hl << 2) - sizeof (struct ip);
467	opts = (caddr_t)(ip + 1);
468	i = m->m_len - (sizeof (struct ip) + olen);
469	bcopy(opts + olen, opts, (unsigned)i);
470	m->m_len -= olen;
471	if (m->m_flags & M_PKTHDR)
472		m->m_pkthdr.len -= olen;
473	ip->ip_v = IPVERSION;
474	ip->ip_hl = sizeof(struct ip) >> 2;
475	ip->ip_len -= olen;
476}
477
478/*
479 * Insert IP options into preformed packet.  Adjust IP destination as
480 * required for IP source routing, as indicated by a non-zero in_addr at the
481 * start of the options.
482 *
483 * XXX This routine assumes that the packet has no options in place.
484 */
485struct mbuf *
486ip_insertoptions(struct mbuf *m, struct mbuf *opt, int *phlen)
487{
488	struct ipoption *p = mtod(opt, struct ipoption *);
489	struct mbuf *n;
490	struct ip *ip = mtod(m, struct ip *);
491	unsigned optlen;
492
493	optlen = opt->m_len - sizeof(p->ipopt_dst);
494	if (optlen + ip->ip_len > IP_MAXPACKET) {
495		*phlen = 0;
496		return (m);		/* XXX should fail */
497	}
498	if (p->ipopt_dst.s_addr)
499		ip->ip_dst = p->ipopt_dst;
500	if (m->m_flags & M_EXT || m->m_data - optlen < m->m_pktdat) {
501		MGETHDR(n, M_DONTWAIT, MT_DATA);
502		if (n == NULL) {
503			*phlen = 0;
504			return (m);
505		}
506		M_MOVE_PKTHDR(n, m);
507		n->m_pkthdr.rcvif = NULL;
508		n->m_pkthdr.len += optlen;
509		m->m_len -= sizeof(struct ip);
510		m->m_data += sizeof(struct ip);
511		n->m_next = m;
512		m = n;
513		m->m_len = optlen + sizeof(struct ip);
514		m->m_data += max_linkhdr;
515		bcopy(ip, mtod(m, void *), sizeof(struct ip));
516	} else {
517		m->m_data -= optlen;
518		m->m_len += optlen;
519		m->m_pkthdr.len += optlen;
520		bcopy(ip, mtod(m, void *), sizeof(struct ip));
521	}
522	ip = mtod(m, struct ip *);
523	bcopy(p->ipopt_list, ip + 1, optlen);
524	*phlen = sizeof(struct ip) + optlen;
525	ip->ip_v = IPVERSION;
526	ip->ip_hl = *phlen >> 2;
527	ip->ip_len += optlen;
528	return (m);
529}
530
531/*
532 * Copy options from ip to jp, omitting those not copied during
533 * fragmentation.
534 */
535int
536ip_optcopy(struct ip *ip, struct ip *jp)
537{
538	u_char *cp, *dp;
539	int opt, optlen, cnt;
540
541	cp = (u_char *)(ip + 1);
542	dp = (u_char *)(jp + 1);
543	cnt = (ip->ip_hl << 2) - sizeof (struct ip);
544	for (; cnt > 0; cnt -= optlen, cp += optlen) {
545		opt = cp[0];
546		if (opt == IPOPT_EOL)
547			break;
548		if (opt == IPOPT_NOP) {
549			/* Preserve for IP mcast tunnel's LSRR alignment. */
550			*dp++ = IPOPT_NOP;
551			optlen = 1;
552			continue;
553		}
554
555		KASSERT(cnt >= IPOPT_OLEN + sizeof(*cp),
556		    ("ip_optcopy: malformed ipv4 option"));
557		optlen = cp[IPOPT_OLEN];
558		KASSERT(optlen >= IPOPT_OLEN + sizeof(*cp) && optlen <= cnt,
559		    ("ip_optcopy: malformed ipv4 option"));
560
561		/* Bogus lengths should have been caught by ip_dooptions. */
562		if (optlen > cnt)
563			optlen = cnt;
564		if (IPOPT_COPIED(opt)) {
565			bcopy(cp, dp, optlen);
566			dp += optlen;
567		}
568	}
569	for (optlen = dp - (u_char *)(jp+1); optlen & 0x3; optlen++)
570		*dp++ = IPOPT_EOL;
571	return (optlen);
572}
573
574/*
575 * Set up IP options in pcb for insertion in output packets.  Store in mbuf
576 * with pointer in pcbopt, adding pseudo-option with destination address if
577 * source routed.
578 */
579int
580ip_pcbopts(struct inpcb *inp, int optname, struct mbuf *m)
581{
582	int cnt, optlen;
583	u_char *cp;
584	struct mbuf **pcbopt;
585	u_char opt;
586
587	INP_WLOCK_ASSERT(inp);
588
589	pcbopt = &inp->inp_options;
590
591	/* turn off any old options */
592	if (*pcbopt)
593		(void)m_free(*pcbopt);
594	*pcbopt = 0;
595	if (m == NULL || m->m_len == 0) {
596		/*
597		 * Only turning off any previous options.
598		 */
599		if (m != NULL)
600			(void)m_free(m);
601		return (0);
602	}
603
604	if (m->m_len % sizeof(int32_t))
605		goto bad;
606	/*
607	 * IP first-hop destination address will be stored before actual
608	 * options; move other options back and clear it when none present.
609	 */
610	if (m->m_data + m->m_len + sizeof(struct in_addr) >= &m->m_dat[MLEN])
611		goto bad;
612	cnt = m->m_len;
613	m->m_len += sizeof(struct in_addr);
614	cp = mtod(m, u_char *) + sizeof(struct in_addr);
615	bcopy(mtod(m, void *), cp, (unsigned)cnt);
616	bzero(mtod(m, void *), sizeof(struct in_addr));
617
618	for (; cnt > 0; cnt -= optlen, cp += optlen) {
619		opt = cp[IPOPT_OPTVAL];
620		if (opt == IPOPT_EOL)
621			break;
622		if (opt == IPOPT_NOP)
623			optlen = 1;
624		else {
625			if (cnt < IPOPT_OLEN + sizeof(*cp))
626				goto bad;
627			optlen = cp[IPOPT_OLEN];
628			if (optlen < IPOPT_OLEN + sizeof(*cp) || optlen > cnt)
629				goto bad;
630		}
631		switch (opt) {
632
633		default:
634			break;
635
636		case IPOPT_LSRR:
637		case IPOPT_SSRR:
638			/*
639			 * User process specifies route as:
640			 *
641			 *	->A->B->C->D
642			 *
643			 * D must be our final destination (but we can't
644			 * check that since we may not have connected yet).
645			 * A is first hop destination, which doesn't appear
646			 * in actual IP option, but is stored before the
647			 * options.
648			 */
649			/* XXX-BZ PRIV_NETINET_SETHDROPTS? */
650			if (optlen < IPOPT_MINOFF - 1 + sizeof(struct in_addr))
651				goto bad;
652			m->m_len -= sizeof(struct in_addr);
653			cnt -= sizeof(struct in_addr);
654			optlen -= sizeof(struct in_addr);
655			cp[IPOPT_OLEN] = optlen;
656			/*
657			 * Move first hop before start of options.
658			 */
659			bcopy((caddr_t)&cp[IPOPT_OFFSET+1], mtod(m, caddr_t),
660			    sizeof(struct in_addr));
661			/*
662			 * Then copy rest of options back
663			 * to close up the deleted entry.
664			 */
665			bcopy((&cp[IPOPT_OFFSET+1] + sizeof(struct in_addr)),
666			    &cp[IPOPT_OFFSET+1],
667			    (unsigned)cnt - (IPOPT_MINOFF - 1));
668			break;
669		}
670	}
671	if (m->m_len > MAX_IPOPTLEN + sizeof(struct in_addr))
672		goto bad;
673	*pcbopt = m;
674	return (0);
675
676bad:
677	(void)m_free(m);
678	return (EINVAL);
679}
680
681/*
682 * Check for the presence of the IP Router Alert option [RFC2113]
683 * in the header of an IPv4 datagram.
684 *
685 * This call is not intended for use from the forwarding path; it is here
686 * so that protocol domains may check for the presence of the option.
687 * Given how FreeBSD's IPv4 stack is currently structured, the Router Alert
688 * option does not have much relevance to the implementation, though this
689 * may change in future.
690 * Router alert options SHOULD be passed if running in IPSTEALTH mode and
691 * we are not the endpoint.
692 * Length checks on individual options should already have been peformed
693 * by ip_dooptions() therefore they are folded under INVARIANTS here.
694 *
695 * Return zero if not present or options are invalid, non-zero if present.
696 */
697int
698ip_checkrouteralert(struct mbuf *m)
699{
700	struct ip *ip = mtod(m, struct ip *);
701	u_char *cp;
702	int opt, optlen, cnt, found_ra;
703
704	found_ra = 0;
705	cp = (u_char *)(ip + 1);
706	cnt = (ip->ip_hl << 2) - sizeof (struct ip);
707	for (; cnt > 0; cnt -= optlen, cp += optlen) {
708		opt = cp[IPOPT_OPTVAL];
709		if (opt == IPOPT_EOL)
710			break;
711		if (opt == IPOPT_NOP)
712			optlen = 1;
713		else {
714#ifdef INVARIANTS
715			if (cnt < IPOPT_OLEN + sizeof(*cp))
716				break;
717#endif
718			optlen = cp[IPOPT_OLEN];
719#ifdef INVARIANTS
720			if (optlen < IPOPT_OLEN + sizeof(*cp) || optlen > cnt)
721				break;
722#endif
723		}
724		switch (opt) {
725		case IPOPT_RA:
726#ifdef INVARIANTS
727			if (optlen != IPOPT_OFFSET + sizeof(uint16_t) ||
728			    (*((uint16_t *)&cp[IPOPT_OFFSET]) != 0))
729			    break;
730			else
731#endif
732			found_ra = 1;
733			break;
734		default:
735			break;
736		}
737	}
738
739	return (found_ra);
740}
741