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 * Authors: A.N.Kuznetsov
12 #define pr_fmt(fmt) "IPv4: " fmt
14 #include <linux/capability.h>
15 #include <linux/module.h>
16 #include <linux/slab.h>
17 #include <linux/types.h>
18 #include <asm/uaccess.h>
19 #include <asm/unaligned.h>
20 #include <linux/skbuff.h>
22 #include <linux/icmp.h>
23 #include <linux/netdevice.h>
24 #include <linux/rtnetlink.h>
28 #include <net/route.h>
29 #include <net/cipso_ipv4.h>
30 #include <net/ip_fib.h>
33 * 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.
39 * daddr is real destination address, next hop is recorded in IP header.
40 * saddr is address of outgoing interface.
43 void ip_options_build(struct sk_buff
*skb
, struct ip_options
*opt
,
44 __be32 daddr
, struct rtable
*rt
, int is_frag
)
46 unsigned char *iph
= skb_network_header(skb
);
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
);
53 memcpy(iph
+opt
->srr
+iph
[opt
->srr
+1]-4, &daddr
, 4);
57 ip_rt_get_source(iph
+opt
->rr
+iph
[opt
->rr
+2]-5, skb
, rt
);
59 ip_rt_get_source(iph
+opt
->ts
+iph
[opt
->ts
+2]-9, skb
, rt
);
60 if (opt
->ts_needtime
) {
63 midtime
= inet_current_timestamp();
64 memcpy(iph
+opt
->ts
+iph
[opt
->ts
+2]-5, &midtime
, 4);
69 memset(iph
+opt
->rr
, IPOPT_NOP
, iph
[opt
->rr
+1]);
74 memset(iph
+opt
->ts
, IPOPT_NOP
, iph
[opt
->ts
+1]);
76 opt
->ts_needaddr
= opt
->ts_needtime
= 0;
81 * 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.
86 * NOTE: dopt cannot point to skb.
89 int __ip_options_echo(struct ip_options
*dopt
, struct sk_buff
*skb
,
90 const struct ip_options
*sopt
)
92 unsigned char *sptr
, *dptr
;
96 memset(dopt
, 0, sizeof(struct ip_options
));
98 if (sopt
->optlen
== 0)
101 sptr
= skb_network_header(skb
);
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
)
112 dptr
[2] = soffset
+ 4;
113 dopt
->rr_needaddr
= 1;
116 dopt
->optlen
+= optlen
;
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
)
127 dopt
->ts_needaddr
= 1;
130 if (sopt
->ts_needtime
) {
131 if (soffset
+ 3 > optlen
)
133 if ((dptr
[3]&0xF) != IPOPT_TS_PRESPEC
) {
134 dopt
->ts_needtime
= 1;
137 dopt
->ts_needtime
= 0;
139 if (soffset
+ 7 <= optlen
) {
142 memcpy(&addr
, dptr
+soffset
-1, 4);
143 if (inet_addr_type(dev_net(skb_dst(skb
)->dev
), addr
) != RTN_UNICAST
) {
144 dopt
->ts_needtime
= 1;
153 dopt
->optlen
+= optlen
;
156 unsigned char *start
= sptr
+sopt
->srr
;
162 if (soffset
> optlen
)
163 soffset
= optlen
+ 1;
166 memcpy(&faddr
, &start
[soffset
-1], 4);
167 for (soffset
-= 4, doffset
= 4; soffset
> 3; soffset
-= 4, doffset
+= 4)
168 memcpy(&dptr
[doffset
-1], &start
[soffset
-1], 4);
170 * RFC1812 requires to fix illegal source routes.
172 if (memcmp(&ip_hdr(skb
)->saddr
,
173 &start
[soffset
+ 3], 4) == 0)
177 __be32 daddr
= fib_compute_spec_dst(skb
);
179 memcpy(&start
[doffset
-1], &daddr
, 4);
185 dopt
->srr
= dopt
->optlen
+ sizeof(struct iphdr
);
186 dopt
->optlen
+= doffset
+3;
187 dopt
->is_strictroute
= sopt
->is_strictroute
;
191 optlen
= sptr
[sopt
->cipso
+1];
192 dopt
->cipso
= dopt
->optlen
+sizeof(struct iphdr
);
193 memcpy(dptr
, sptr
+sopt
->cipso
, optlen
);
195 dopt
->optlen
+= optlen
;
197 while (dopt
->optlen
& 3) {
205 * Options "fragmenting", just fill options not
206 * allowed in fragments with NOOPs.
207 * Simple and stupid 8), but the most efficient way.
210 void ip_options_fragment(struct sk_buff
*skb
)
212 unsigned char *optptr
= skb_network_header(skb
) + sizeof(struct iphdr
);
213 struct ip_options
*opt
= &(IPCB(skb
)->opt
);
227 if (optlen
< 2 || optlen
> l
)
229 if (!IPOPT_COPIED(*optptr
))
230 memset(optptr
, IPOPT_NOOP
, optlen
);
236 opt
->rr_needaddr
= 0;
237 opt
->ts_needaddr
= 0;
238 opt
->ts_needtime
= 0;
241 /* helper used by ip_options_compile() to call fib_compute_spec_dst()
244 static void spec_dst_fill(__be32
*spec_dst
, struct sk_buff
*skb
)
246 if (*spec_dst
== htonl(INADDR_ANY
))
247 *spec_dst
= fib_compute_spec_dst(skb
);
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.
256 int __ip_options_compile(struct net
*net
,
257 struct ip_options
*opt
, struct sk_buff
*skb
,
260 __be32 spec_dst
= htonl(INADDR_ANY
);
261 unsigned char *pp_ptr
= NULL
;
262 struct rtable
*rt
= NULL
;
263 unsigned char *optptr
;
268 rt
= skb_rtable(skb
);
269 optptr
= (unsigned char *)&(ip_hdr(skb
)[1]);
271 optptr
= opt
->__data
;
272 iph
= optptr
- sizeof(struct iphdr
);
274 for (l
= opt
->optlen
; l
> 0; ) {
277 for (optptr
++, l
--; l
> 0; optptr
++, l
--) {
278 if (*optptr
!= IPOPT_END
) {
289 if (unlikely(l
< 2)) {
294 if (optlen
< 2 || optlen
> l
) {
309 /* NB: cf RFC-1812 5.2.4.1 */
315 if (optptr
[2] != 4 || optlen
< 7 || ((optlen
-3) & 3)) {
319 memcpy(&opt
->faddr
, &optptr
[3], 4);
321 memmove(&optptr
[3], &optptr
[7], optlen
-7);
323 opt
->is_strictroute
= (optptr
[0] == IPOPT_SSRR
);
324 opt
->srr
= optptr
- iph
;
339 if (optptr
[2] <= optlen
) {
340 if (optptr
[2]+3 > optlen
) {
345 spec_dst_fill(&spec_dst
, skb
);
346 memcpy(&optptr
[optptr
[2]-1], &spec_dst
, 4);
350 opt
->rr_needaddr
= 1;
352 opt
->rr
= optptr
- iph
;
354 case IPOPT_TIMESTAMP
:
367 if (optptr
[2] <= optlen
) {
368 unsigned char *timeptr
= NULL
;
369 if (optptr
[2]+3 > optlen
) {
373 switch (optptr
[3]&0xF) {
374 case IPOPT_TS_TSONLY
:
376 timeptr
= &optptr
[optptr
[2]-1];
377 opt
->ts_needtime
= 1;
380 case IPOPT_TS_TSANDADDR
:
381 if (optptr
[2]+7 > optlen
) {
386 spec_dst_fill(&spec_dst
, skb
);
387 memcpy(&optptr
[optptr
[2]-1], &spec_dst
, 4);
388 timeptr
= &optptr
[optptr
[2]+3];
390 opt
->ts_needaddr
= 1;
391 opt
->ts_needtime
= 1;
394 case IPOPT_TS_PRESPEC
:
395 if (optptr
[2]+7 > optlen
) {
401 memcpy(&addr
, &optptr
[optptr
[2]-1], 4);
402 if (inet_addr_type(net
, addr
) == RTN_UNICAST
)
405 timeptr
= &optptr
[optptr
[2]+3];
407 opt
->ts_needtime
= 1;
411 if (!skb
&& !ns_capable(net
->user_ns
, CAP_NET_RAW
)) {
420 midtime
= inet_current_timestamp();
421 memcpy(timeptr
, &midtime
, 4);
424 } else if ((optptr
[3]&0xF) != IPOPT_TS_PRESPEC
) {
425 unsigned int overflow
= optptr
[3]>>4;
426 if (overflow
== 15) {
431 optptr
[3] = (optptr
[3]&0xF)|((overflow
+1)<<4);
435 opt
->ts
= optptr
- iph
;
442 if (optptr
[2] == 0 && optptr
[3] == 0)
443 opt
->router_alert
= optptr
- iph
;
446 if ((!skb
&& !ns_capable(net
->user_ns
, CAP_NET_RAW
)) || opt
->cipso
) {
450 opt
->cipso
= optptr
- iph
;
451 if (cipso_v4_validate(skb
, &optptr
)) {
459 if (!skb
&& !ns_capable(net
->user_ns
, CAP_NET_RAW
)) {
475 *info
= htonl((pp_ptr
-iph
)<<24);
479 int ip_options_compile(struct net
*net
,
480 struct ip_options
*opt
, struct sk_buff
*skb
)
485 ret
= __ip_options_compile(net
, opt
, skb
, &info
);
487 icmp_send(skb
, ICMP_PARAMETERPROB
, 0, info
);
490 EXPORT_SYMBOL(ip_options_compile
);
493 * Undo all the changes done by ip_options_compile().
496 void ip_options_undo(struct ip_options
*opt
)
499 unsigned char *optptr
= opt
->__data
+opt
->srr
-sizeof(struct iphdr
);
500 memmove(optptr
+7, optptr
+3, optptr
[1]-7);
501 memcpy(optptr
+3, &opt
->faddr
, 4);
503 if (opt
->rr_needaddr
) {
504 unsigned char *optptr
= opt
->__data
+opt
->rr
-sizeof(struct iphdr
);
506 memset(&optptr
[optptr
[2]-1], 0, 4);
509 unsigned char *optptr
= opt
->__data
+opt
->ts
-sizeof(struct iphdr
);
510 if (opt
->ts_needtime
) {
512 memset(&optptr
[optptr
[2]-1], 0, 4);
513 if ((optptr
[3]&0xF) == IPOPT_TS_PRESPEC
)
516 if (opt
->ts_needaddr
) {
518 memset(&optptr
[optptr
[2]-1], 0, 4);
523 static struct ip_options_rcu
*ip_options_get_alloc(const int optlen
)
525 return kzalloc(sizeof(struct ip_options_rcu
) + ((optlen
+ 3) & ~3),
529 static int ip_options_get_finish(struct net
*net
, struct ip_options_rcu
**optp
,
530 struct ip_options_rcu
*opt
, int optlen
)
533 opt
->opt
.__data
[optlen
++] = IPOPT_END
;
534 opt
->opt
.optlen
= optlen
;
535 if (optlen
&& ip_options_compile(net
, &opt
->opt
, NULL
)) {
544 int ip_options_get_from_user(struct net
*net
, struct ip_options_rcu
**optp
,
545 unsigned char __user
*data
, int optlen
)
547 struct ip_options_rcu
*opt
= ip_options_get_alloc(optlen
);
551 if (optlen
&& copy_from_user(opt
->opt
.__data
, data
, optlen
)) {
555 return ip_options_get_finish(net
, optp
, opt
, optlen
);
558 int ip_options_get(struct net
*net
, struct ip_options_rcu
**optp
,
559 unsigned char *data
, int optlen
)
561 struct ip_options_rcu
*opt
= ip_options_get_alloc(optlen
);
566 memcpy(opt
->opt
.__data
, data
, optlen
);
567 return ip_options_get_finish(net
, optp
, opt
, optlen
);
570 void ip_forward_options(struct sk_buff
*skb
)
572 struct ip_options
*opt
= &(IPCB(skb
)->opt
);
573 unsigned char *optptr
;
574 struct rtable
*rt
= skb_rtable(skb
);
575 unsigned char *raw
= skb_network_header(skb
);
577 if (opt
->rr_needaddr
) {
578 optptr
= (unsigned char *)raw
+ opt
->rr
;
579 ip_rt_get_source(&optptr
[optptr
[2]-5], skb
, rt
);
582 if (opt
->srr_is_hit
) {
583 int srrptr
, srrspace
;
585 optptr
= raw
+ opt
->srr
;
587 for ( srrptr
= optptr
[2], srrspace
= optptr
[1];
591 if (srrptr
+ 3 > srrspace
)
593 if (memcmp(&opt
->nexthop
, &optptr
[srrptr
-1], 4) == 0)
596 if (srrptr
+ 3 <= srrspace
) {
598 ip_hdr(skb
)->daddr
= opt
->nexthop
;
599 ip_rt_get_source(&optptr
[srrptr
-1], skb
, rt
);
600 optptr
[2] = srrptr
+4;
602 net_crit_ratelimited("%s(): Argh! Destination lost!\n",
605 if (opt
->ts_needaddr
) {
606 optptr
= raw
+ opt
->ts
;
607 ip_rt_get_source(&optptr
[optptr
[2]-9], skb
, rt
);
611 if (opt
->is_changed
) {
613 ip_send_check(ip_hdr(skb
));
617 int ip_options_rcv_srr(struct sk_buff
*skb
, struct net_device
*dev
)
619 struct ip_options
*opt
= &(IPCB(skb
)->opt
);
620 int srrspace
, srrptr
;
622 struct iphdr
*iph
= ip_hdr(skb
);
623 unsigned char *optptr
= skb_network_header(skb
) + opt
->srr
;
624 struct rtable
*rt
= skb_rtable(skb
);
626 unsigned long orefdst
;
632 if (skb
->pkt_type
!= PACKET_HOST
)
634 if (rt
->rt_type
== RTN_UNICAST
) {
635 if (!opt
->is_strictroute
)
637 icmp_send(skb
, ICMP_PARAMETERPROB
, 0, htonl(16<<24));
640 if (rt
->rt_type
!= RTN_LOCAL
)
643 for (srrptr
= optptr
[2], srrspace
= optptr
[1]; srrptr
<= srrspace
; srrptr
+= 4) {
644 if (srrptr
+ 3 > srrspace
) {
645 icmp_send(skb
, ICMP_PARAMETERPROB
, 0, htonl((opt
->srr
+2)<<24));
648 memcpy(&nexthop
, &optptr
[srrptr
-1], 4);
650 orefdst
= skb
->_skb_refdst
;
651 skb_dst_set(skb
, NULL
);
652 err
= ip_route_input(skb
, nexthop
, iph
->saddr
, iph
->tos
, dev
);
653 rt2
= skb_rtable(skb
);
654 if (err
|| (rt2
->rt_type
!= RTN_UNICAST
&& rt2
->rt_type
!= RTN_LOCAL
)) {
656 skb
->_skb_refdst
= orefdst
;
659 refdst_drop(orefdst
);
660 if (rt2
->rt_type
!= RTN_LOCAL
)
662 /* Superfast 8) loopback forward */
663 iph
->daddr
= nexthop
;
666 if (srrptr
<= srrspace
) {
668 opt
->nexthop
= nexthop
;
673 EXPORT_SYMBOL(ip_options_rcv_srr
);