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.
6 * The options processing module for ip.c
8 * Version: $Id: ip_options.c,v 1.21 2001/09/01 00:31:50 davem Exp $
10 * Authors: A.N.Kuznetsov
14 #include <linux/module.h>
15 #include <linux/types.h>
16 #include <asm/uaccess.h>
17 #include <linux/skbuff.h>
19 #include <linux/icmp.h>
20 #include <linux/netdevice.h>
21 #include <linux/rtnetlink.h>
25 #include <net/route.h>
28 * Write options to IP header, record destination address to
29 * source route option, address of outgoing interface
30 * (we should already know it, so that this function is allowed be
31 * called only after routing decision) and timestamp,
32 * if we originate this datagram.
34 * daddr is real destination address, next hop is recorded in IP header.
35 * saddr is address of outgoing interface.
38 void ip_options_build(struct sk_buff * skb, struct ip_options * opt,
39 u32 daddr, struct rtable *rt, int is_frag)
41 unsigned char * iph = skb->nh.raw;
43 memcpy(&(IPCB(skb)->opt), opt, sizeof(struct ip_options));
44 memcpy(iph+sizeof(struct iphdr), opt->__data, opt->optlen);
45 opt = &(IPCB(skb)->opt);
49 memcpy(iph+opt->srr+iph[opt->srr+1]-4, &daddr, 4);
53 ip_rt_get_source(iph+opt->rr+iph[opt->rr+2]-5, rt);
55 ip_rt_get_source(iph+opt->ts+iph[opt->ts+2]-9, rt);
56 if (opt->ts_needtime) {
60 midtime = htonl((tv.tv_sec % 86400) * 1000 + tv.tv_usec / 1000);
61 memcpy(iph+opt->ts+iph[opt->ts+2]-5, &midtime, 4);
66 memset(iph+opt->rr, IPOPT_NOP, iph[opt->rr+1]);
71 memset(iph+opt->ts, IPOPT_NOP, iph[opt->ts+1]);
73 opt->ts_needaddr = opt->ts_needtime = 0;
78 * Provided (sopt, skb) points to received options,
79 * build in dopt compiled option set appropriate for answering.
80 * i.e. invert SRR option, copy anothers,
81 * and grab room in RR/TS options.
83 * NOTE: dopt cannot point to skb.
86 int ip_options_echo(struct ip_options * dopt, struct sk_buff * skb)
88 struct ip_options *sopt;
89 unsigned char *sptr, *dptr;
94 memset(dopt, 0, sizeof(struct ip_options));
98 sopt = &(IPCB(skb)->opt);
100 if (sopt->optlen == 0) {
109 daddr = ((struct rtable*)skb->dst)->rt_spec_dst;
111 daddr = skb->nh.iph->daddr;
114 optlen = sptr[sopt->rr+1];
115 soffset = sptr[sopt->rr+2];
116 dopt->rr = dopt->optlen + sizeof(struct iphdr);
117 memcpy(dptr, sptr+sopt->rr, optlen);
118 if (sopt->rr_needaddr && soffset <= optlen) {
119 if (soffset + 3 > optlen)
121 dptr[2] = soffset + 4;
122 dopt->rr_needaddr = 1;
125 dopt->optlen += optlen;
128 optlen = sptr[sopt->ts+1];
129 soffset = sptr[sopt->ts+2];
130 dopt->ts = dopt->optlen + sizeof(struct iphdr);
131 memcpy(dptr, sptr+sopt->ts, optlen);
132 if (soffset <= optlen) {
133 if (sopt->ts_needaddr) {
134 if (soffset + 3 > optlen)
136 dopt->ts_needaddr = 1;
139 if (sopt->ts_needtime) {
140 if (soffset + 3 > optlen)
142 if ((dptr[3]&0xF) != IPOPT_TS_PRESPEC) {
143 dopt->ts_needtime = 1;
146 dopt->ts_needtime = 0;
148 if (soffset + 8 <= optlen) {
151 memcpy(&addr, sptr+soffset-1, 4);
152 if (inet_addr_type(addr) != RTN_LOCAL) {
153 dopt->ts_needtime = 1;
162 dopt->optlen += optlen;
165 unsigned char * start = sptr+sopt->srr;
171 if (soffset > optlen)
172 soffset = optlen + 1;
175 memcpy(&faddr, &start[soffset-1], 4);
176 for (soffset-=4, doffset=4; soffset > 3; soffset-=4, doffset+=4)
177 memcpy(&dptr[doffset-1], &start[soffset-1], 4);
179 * RFC1812 requires to fix illegal source routes.
181 if (memcmp(&skb->nh.iph->saddr, &start[soffset+3], 4) == 0)
185 memcpy(&start[doffset-1], &daddr, 4);
191 dopt->srr = dopt->optlen + sizeof(struct iphdr);
192 dopt->optlen += doffset+3;
193 dopt->is_strictroute = sopt->is_strictroute;
196 while (dopt->optlen & 3) {
204 * Options "fragmenting", just fill options not
205 * allowed in fragments with NOOPs.
206 * Simple and stupid 8), but the most efficient way.
209 void ip_options_fragment(struct sk_buff * skb)
211 unsigned char * optptr = skb->nh.raw;
212 struct ip_options * opt = &(IPCB(skb)->opt);
226 if (optlen<2 || optlen>l)
228 if (!IPOPT_COPIED(*optptr))
229 memset(optptr, IPOPT_NOOP, optlen);
235 opt->rr_needaddr = 0;
236 opt->ts_needaddr = 0;
237 opt->ts_needtime = 0;
242 * Verify options and fill pointers in struct options.
243 * Caller should clear *opt, and set opt->data.
244 * If opt == NULL, then skb->data should point to IP header.
247 int ip_options_compile(struct ip_options * opt, struct sk_buff * skb)
251 unsigned char * optptr;
253 unsigned char * pp_ptr = NULL;
254 struct rtable *rt = skb ? (struct rtable*)skb->dst : NULL;
257 opt = &(IPCB(skb)->opt);
258 memset(opt, 0, sizeof(struct ip_options));
260 opt->optlen = ((struct iphdr *)iph)->ihl*4 - sizeof(struct iphdr);
261 optptr = iph + sizeof(struct iphdr);
264 optptr = opt->is_data ? opt->__data : (unsigned char*)&(skb->nh.iph[1]);
265 iph = optptr - sizeof(struct iphdr);
268 for (l = opt->optlen; l > 0; ) {
271 for (optptr++, l--; l>0; optptr++, l--) {
272 if (*optptr != IPOPT_END) {
284 if (optlen<2 || optlen>l) {
299 /* NB: cf RFC-1812 5.2.4.1 */
305 if (optptr[2] != 4 || optlen < 7 || ((optlen-3) & 3)) {
309 memcpy(&opt->faddr, &optptr[3], 4);
311 memmove(&optptr[3], &optptr[7], optlen-7);
313 opt->is_strictroute = (optptr[0] == IPOPT_SSRR);
314 opt->srr = optptr - iph;
329 if (optptr[2] <= optlen) {
330 if (optptr[2]+3 > optlen) {
335 memcpy(&optptr[optptr[2]-1], &rt->rt_spec_dst, 4);
339 opt->rr_needaddr = 1;
341 opt->rr = optptr - iph;
343 case IPOPT_TIMESTAMP:
356 if (optptr[2] <= optlen) {
357 __u32 * timeptr = NULL;
358 if (optptr[2]+3 > optptr[1]) {
362 switch (optptr[3]&0xF) {
363 case IPOPT_TS_TSONLY:
364 opt->ts = optptr - iph;
366 timeptr = (__u32*)&optptr[optptr[2]-1];
367 opt->ts_needtime = 1;
370 case IPOPT_TS_TSANDADDR:
371 if (optptr[2]+7 > optptr[1]) {
375 opt->ts = optptr - iph;
377 memcpy(&optptr[optptr[2]-1], &rt->rt_spec_dst, 4);
378 timeptr = (__u32*)&optptr[optptr[2]+3];
380 opt->ts_needaddr = 1;
381 opt->ts_needtime = 1;
384 case IPOPT_TS_PRESPEC:
385 if (optptr[2]+7 > optptr[1]) {
389 opt->ts = optptr - iph;
392 memcpy(&addr, &optptr[optptr[2]-1], 4);
393 if (inet_addr_type(addr) == RTN_UNICAST)
396 timeptr = (__u32*)&optptr[optptr[2]+3];
398 opt->ts_needtime = 1;
402 if (!skb && !capable(CAP_NET_RAW)) {
411 do_gettimeofday(&tv);
412 midtime = htonl((tv.tv_sec % 86400) * 1000 + tv.tv_usec / 1000);
413 memcpy(timeptr, &midtime, sizeof(__u32));
417 unsigned overflow = optptr[3]>>4;
418 if (overflow == 15) {
422 opt->ts = optptr - iph;
424 optptr[3] = (optptr[3]&0xF)|((overflow+1)<<4);
434 if (optptr[2] == 0 && optptr[3] == 0)
435 opt->router_alert = optptr - iph;
440 if (!skb && !capable(CAP_NET_RAW)) {
456 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((pp_ptr-iph)<<24));
463 * Undo all the changes done by ip_options_compile().
466 void ip_options_undo(struct ip_options * opt)
469 unsigned char * optptr = opt->__data+opt->srr-sizeof(struct iphdr);
470 memmove(optptr+7, optptr+3, optptr[1]-7);
471 memcpy(optptr+3, &opt->faddr, 4);
473 if (opt->rr_needaddr) {
474 unsigned char * optptr = opt->__data+opt->rr-sizeof(struct iphdr);
476 memset(&optptr[optptr[2]-1], 0, 4);
479 unsigned char * optptr = opt->__data+opt->ts-sizeof(struct iphdr);
480 if (opt->ts_needtime) {
482 memset(&optptr[optptr[2]-1], 0, 4);
483 if ((optptr[3]&0xF) == IPOPT_TS_PRESPEC)
486 if (opt->ts_needaddr) {
488 memset(&optptr[optptr[2]-1], 0, 4);
493 static struct ip_options *ip_options_get_alloc(const int optlen)
495 struct ip_options *opt = kmalloc(sizeof(*opt) + ((optlen + 3) & ~3),
498 memset(opt, 0, sizeof(*opt));
502 static int ip_options_get_finish(struct ip_options **optp,
503 struct ip_options *opt, int optlen)
506 opt->__data[optlen++] = IPOPT_END;
507 opt->optlen = optlen;
509 opt->is_setbyuser = 1;
510 if (optlen && ip_options_compile(opt, NULL)) {
519 int ip_options_get_from_user(struct ip_options **optp, unsigned char __user *data, int optlen)
521 struct ip_options *opt = ip_options_get_alloc(optlen);
525 if (optlen && copy_from_user(opt->__data, data, optlen)) {
529 return ip_options_get_finish(optp, opt, optlen);
532 int ip_options_get(struct ip_options **optp, unsigned char *data, int optlen)
534 struct ip_options *opt = ip_options_get_alloc(optlen);
539 memcpy(opt->__data, data, optlen);
540 return ip_options_get_finish(optp, opt, optlen);
543 void ip_forward_options(struct sk_buff *skb)
545 struct ip_options * opt = &(IPCB(skb)->opt);
546 unsigned char * optptr;
547 struct rtable *rt = (struct rtable*)skb->dst;
548 unsigned char *raw = skb->nh.raw;
550 if (opt->rr_needaddr) {
551 optptr = (unsigned char *)raw + opt->rr;
552 ip_rt_get_source(&optptr[optptr[2]-5], rt);
555 if (opt->srr_is_hit) {
556 int srrptr, srrspace;
558 optptr = raw + opt->srr;
560 for ( srrptr=optptr[2], srrspace = optptr[1];
564 if (srrptr + 3 > srrspace)
566 if (memcmp(&rt->rt_dst, &optptr[srrptr-1], 4) == 0)
569 if (srrptr + 3 <= srrspace) {
571 ip_rt_get_source(&optptr[srrptr-1], rt);
572 skb->nh.iph->daddr = rt->rt_dst;
573 optptr[2] = srrptr+4;
574 } else if (net_ratelimit())
575 printk(KERN_CRIT "ip_forward(): Argh! Destination lost!\n");
576 if (opt->ts_needaddr) {
577 optptr = raw + opt->ts;
578 ip_rt_get_source(&optptr[optptr[2]-9], rt);
582 if (opt->is_changed) {
584 ip_send_check(skb->nh.iph);
588 int ip_options_rcv_srr(struct sk_buff *skb)
590 struct ip_options *opt = &(IPCB(skb)->opt);
591 int srrspace, srrptr;
593 struct iphdr *iph = skb->nh.iph;
594 unsigned char * optptr = skb->nh.raw + opt->srr;
595 struct rtable *rt = (struct rtable*)skb->dst;
602 if (skb->pkt_type != PACKET_HOST)
604 if (rt->rt_type == RTN_UNICAST) {
605 if (!opt->is_strictroute)
607 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl(16<<24));
610 if (rt->rt_type != RTN_LOCAL)
613 for (srrptr=optptr[2], srrspace = optptr[1]; srrptr <= srrspace; srrptr += 4) {
614 if (srrptr + 3 > srrspace) {
615 icmp_send(skb, ICMP_PARAMETERPROB, 0, htonl((opt->srr+2)<<24));
618 memcpy(&nexthop, &optptr[srrptr-1], 4);
620 rt = (struct rtable*)skb->dst;
622 err = ip_route_input(skb, nexthop, iph->saddr, iph->tos, skb->dev);
623 rt2 = (struct rtable*)skb->dst;
624 if (err || (rt2->rt_type != RTN_UNICAST && rt2->rt_type != RTN_LOCAL)) {
626 skb->dst = &rt->u.dst;
630 if (rt2->rt_type != RTN_LOCAL)
632 /* Superfast 8) loopback forward */
633 memcpy(&iph->daddr, &optptr[srrptr-1], 4);
636 if (srrptr <= srrspace) {