1 /* Kernel module to match ROUTING parameters. */
3 /* (C) 2001-2002 Andras Kis-Szabo <kisza@sch.bme.hu>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/module.h>
11 #include <linux/skbuff.h>
12 #include <linux/ipv6.h>
13 #include <linux/types.h>
14 #include <net/checksum.h>
17 #include <asm/byteorder.h>
19 #include <linux/netfilter/x_tables.h>
20 #include <linux/netfilter_ipv6/ip6_tables.h>
21 #include <linux/netfilter_ipv6/ip6t_rt.h>
23 MODULE_LICENSE("GPL");
24 MODULE_DESCRIPTION("Xtables: IPv6 Routing Header match");
25 MODULE_AUTHOR("Andras Kis-Szabo <kisza@sch.bme.hu>");
27 /* Returns 1 if the id is matched by the range, 0 otherwise */
29 segsleft_match(u_int32_t min
, u_int32_t max
, u_int32_t id
, bool invert
)
32 pr_debug("rt segsleft_match:%c 0x%x <= 0x%x <= 0x%x",
33 invert
? '!' : ' ', min
, id
, max
);
34 r
= (id
>= min
&& id
<= max
) ^ invert
;
35 pr_debug(" result %s\n", r
? "PASS" : "FAILED");
39 static bool rt_mt6(const struct sk_buff
*skb
, const struct xt_match_param
*par
)
41 struct ipv6_rt_hdr _route
;
42 const struct ipv6_rt_hdr
*rh
;
43 const struct ip6t_rt
*rtinfo
= par
->matchinfo
;
46 unsigned int hdrlen
= 0;
48 struct in6_addr _addr
;
49 const struct in6_addr
*ap
;
52 err
= ipv6_find_hdr(skb
, &ptr
, NEXTHDR_ROUTING
, NULL
);
59 rh
= skb_header_pointer(skb
, ptr
, sizeof(_route
), &_route
);
65 hdrlen
= ipv6_optlen(rh
);
66 if (skb
->len
- ptr
< hdrlen
) {
67 /* Pcket smaller than its length field */
71 pr_debug("IPv6 RT LEN %u %u ", hdrlen
, rh
->hdrlen
);
72 pr_debug("TYPE %04X ", rh
->type
);
73 pr_debug("SGS_LEFT %u %02X\n", rh
->segments_left
, rh
->segments_left
);
75 pr_debug("IPv6 RT segsleft %02X ",
76 segsleft_match(rtinfo
->segsleft
[0], rtinfo
->segsleft
[1],
78 !!(rtinfo
->invflags
& IP6T_RT_INV_SGS
)));
79 pr_debug("type %02X %02X %02X ",
80 rtinfo
->rt_type
, rh
->type
,
81 (!(rtinfo
->flags
& IP6T_RT_TYP
) ||
82 ((rtinfo
->rt_type
== rh
->type
) ^
83 !!(rtinfo
->invflags
& IP6T_RT_INV_TYP
))));
84 pr_debug("len %02X %04X %02X ",
85 rtinfo
->hdrlen
, hdrlen
,
86 !(rtinfo
->flags
& IP6T_RT_LEN
) ||
87 ((rtinfo
->hdrlen
== hdrlen
) ^
88 !!(rtinfo
->invflags
& IP6T_RT_INV_LEN
)));
89 pr_debug("res %02X %02X %02X ",
90 rtinfo
->flags
& IP6T_RT_RES
,
91 ((const struct rt0_hdr
*)rh
)->reserved
,
92 !((rtinfo
->flags
& IP6T_RT_RES
) &&
93 (((const struct rt0_hdr
*)rh
)->reserved
)));
97 (segsleft_match(rtinfo
->segsleft
[0], rtinfo
->segsleft
[1],
99 !!(rtinfo
->invflags
& IP6T_RT_INV_SGS
)))
101 (!(rtinfo
->flags
& IP6T_RT_LEN
) ||
102 ((rtinfo
->hdrlen
== hdrlen
) ^
103 !!(rtinfo
->invflags
& IP6T_RT_INV_LEN
)))
105 (!(rtinfo
->flags
& IP6T_RT_TYP
) ||
106 ((rtinfo
->rt_type
== rh
->type
) ^
107 !!(rtinfo
->invflags
& IP6T_RT_INV_TYP
)));
109 if (ret
&& (rtinfo
->flags
& IP6T_RT_RES
)) {
112 rp
= skb_header_pointer(skb
,
113 ptr
+ offsetof(struct rt0_hdr
,
121 pr_debug("#%d ", rtinfo
->addrnr
);
122 if (!(rtinfo
->flags
& IP6T_RT_FST
)) {
124 } else if (rtinfo
->flags
& IP6T_RT_FST_NSTRICT
) {
125 pr_debug("Not strict ");
126 if (rtinfo
->addrnr
> (unsigned int)((hdrlen
- 8) / 16)) {
127 pr_debug("There isn't enough space\n");
132 pr_debug("#%d ", rtinfo
->addrnr
);
134 temp
< (unsigned int)((hdrlen
- 8) / 16);
136 ap
= skb_header_pointer(skb
,
138 + sizeof(struct rt0_hdr
)
139 + temp
* sizeof(_addr
),
145 if (ipv6_addr_equal(ap
, &rtinfo
->addrs
[i
])) {
146 pr_debug("i=%d temp=%d;\n", i
, temp
);
149 if (i
== rtinfo
->addrnr
)
152 pr_debug("i=%d #%d\n", i
, rtinfo
->addrnr
);
153 if (i
== rtinfo
->addrnr
)
160 if (rtinfo
->addrnr
> (unsigned int)((hdrlen
- 8) / 16)) {
161 pr_debug("There isn't enough space\n");
164 pr_debug("#%d ", rtinfo
->addrnr
);
165 for (temp
= 0; temp
< rtinfo
->addrnr
; temp
++) {
166 ap
= skb_header_pointer(skb
,
168 + sizeof(struct rt0_hdr
)
169 + temp
* sizeof(_addr
),
174 if (!ipv6_addr_equal(ap
, &rtinfo
->addrs
[temp
]))
177 pr_debug("temp=%d #%d\n", temp
, rtinfo
->addrnr
);
178 if (temp
== rtinfo
->addrnr
&&
179 temp
== (unsigned int)((hdrlen
- 8) / 16))
189 static bool rt_mt6_check(const struct xt_mtchk_param
*par
)
191 const struct ip6t_rt
*rtinfo
= par
->matchinfo
;
193 if (rtinfo
->invflags
& ~IP6T_RT_INV_MASK
) {
194 pr_debug("ip6t_rt: unknown flags %X\n", rtinfo
->invflags
);
197 if ((rtinfo
->flags
& (IP6T_RT_RES
| IP6T_RT_FST_MASK
)) &&
198 (!(rtinfo
->flags
& IP6T_RT_TYP
) ||
199 (rtinfo
->rt_type
!= 0) ||
200 (rtinfo
->invflags
& IP6T_RT_INV_TYP
))) {
201 pr_debug("`--rt-type 0' required before `--rt-0-*'");
208 static struct xt_match rt_mt6_reg __read_mostly
= {
210 .family
= NFPROTO_IPV6
,
212 .matchsize
= sizeof(struct ip6t_rt
),
213 .checkentry
= rt_mt6_check
,
217 static int __init
rt_mt6_init(void)
219 return xt_register_match(&rt_mt6_reg
);
222 static void __exit
rt_mt6_exit(void)
224 xt_unregister_match(&rt_mt6_reg
);
227 module_init(rt_mt6_init
);
228 module_exit(rt_mt6_exit
);