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.
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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("segsleft_match:%c 0x%x <= 0x%x <= 0x%x\n",
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
, struct xt_action_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
)));
96 (segsleft_match(rtinfo
->segsleft
[0], rtinfo
->segsleft
[1],
98 !!(rtinfo
->invflags
& IP6T_RT_INV_SGS
))) &&
99 (!(rtinfo
->flags
& IP6T_RT_LEN
) ||
100 ((rtinfo
->hdrlen
== hdrlen
) ^
101 !!(rtinfo
->invflags
& IP6T_RT_INV_LEN
))) &&
102 (!(rtinfo
->flags
& IP6T_RT_TYP
) ||
103 ((rtinfo
->rt_type
== rh
->type
) ^
104 !!(rtinfo
->invflags
& IP6T_RT_INV_TYP
)));
106 if (ret
&& (rtinfo
->flags
& IP6T_RT_RES
)) {
109 rp
= skb_header_pointer(skb
,
110 ptr
+ offsetof(struct rt0_hdr
,
118 pr_debug("#%d ", rtinfo
->addrnr
);
119 if (!(rtinfo
->flags
& IP6T_RT_FST
)) {
121 } else if (rtinfo
->flags
& IP6T_RT_FST_NSTRICT
) {
122 pr_debug("Not strict ");
123 if (rtinfo
->addrnr
> (unsigned int)((hdrlen
- 8) / 16)) {
124 pr_debug("There isn't enough space\n");
129 pr_debug("#%d ", rtinfo
->addrnr
);
131 temp
< (unsigned int)((hdrlen
- 8) / 16);
133 ap
= skb_header_pointer(skb
,
135 + sizeof(struct rt0_hdr
)
136 + temp
* sizeof(_addr
),
142 if (ipv6_addr_equal(ap
, &rtinfo
->addrs
[i
])) {
143 pr_debug("i=%d temp=%d;\n", i
, temp
);
146 if (i
== rtinfo
->addrnr
)
149 pr_debug("i=%d #%d\n", i
, rtinfo
->addrnr
);
150 if (i
== rtinfo
->addrnr
)
157 if (rtinfo
->addrnr
> (unsigned int)((hdrlen
- 8) / 16)) {
158 pr_debug("There isn't enough space\n");
161 pr_debug("#%d ", rtinfo
->addrnr
);
162 for (temp
= 0; temp
< rtinfo
->addrnr
; temp
++) {
163 ap
= skb_header_pointer(skb
,
165 + sizeof(struct rt0_hdr
)
166 + temp
* sizeof(_addr
),
171 if (!ipv6_addr_equal(ap
, &rtinfo
->addrs
[temp
]))
174 pr_debug("temp=%d #%d\n", temp
, rtinfo
->addrnr
);
175 if (temp
== rtinfo
->addrnr
&&
176 temp
== (unsigned int)((hdrlen
- 8) / 16))
186 static int rt_mt6_check(const struct xt_mtchk_param
*par
)
188 const struct ip6t_rt
*rtinfo
= par
->matchinfo
;
190 if (rtinfo
->invflags
& ~IP6T_RT_INV_MASK
) {
191 pr_debug("unknown flags %X\n", rtinfo
->invflags
);
194 if ((rtinfo
->flags
& (IP6T_RT_RES
| IP6T_RT_FST_MASK
)) &&
195 (!(rtinfo
->flags
& IP6T_RT_TYP
) ||
196 (rtinfo
->rt_type
!= 0) ||
197 (rtinfo
->invflags
& IP6T_RT_INV_TYP
))) {
198 pr_debug("`--rt-type 0' required before `--rt-0-*'");
205 static struct xt_match rt_mt6_reg __read_mostly
= {
207 .family
= NFPROTO_IPV6
,
209 .matchsize
= sizeof(struct ip6t_rt
),
210 .checkentry
= rt_mt6_check
,
214 static int __init
rt_mt6_init(void)
216 return xt_register_match(&rt_mt6_reg
);
219 static void __exit
rt_mt6_exit(void)
221 xt_unregister_match(&rt_mt6_reg
);
224 module_init(rt_mt6_init
);
225 module_exit(rt_mt6_exit
);