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_ipv6/ip6_tables.h>
20 #include <linux/netfilter_ipv6/ip6t_rt.h>
22 MODULE_LICENSE("GPL");
23 MODULE_DESCRIPTION("IPv6 RT match");
24 MODULE_AUTHOR("Andras Kis-Szabo <kisza@sch.bme.hu>");
29 #define DEBUGP(format, args...)
32 /* Returns 1 if the id is matched by the range, 0 otherwise */
34 segsleft_match(u_int32_t min, u_int32_t max, u_int32_t id, int invert)
37 DEBUGP("rt segsleft_match:%c 0x%x <= 0x%x <= 0x%x",
38 invert ? '!' : ' ', min, id, max);
39 r = (id >= min && id <= max) ^ invert;
40 DEBUGP(" result %s\n", r ? "PASS" : "FAILED");
45 match(const struct sk_buff *skb,
46 const struct net_device *in,
47 const struct net_device *out,
48 const void *matchinfo,
53 struct ipv6_rt_hdr _route, *rh;
54 const struct ip6t_rt *rtinfo = matchinfo;
57 unsigned int hdrlen = 0;
59 struct in6_addr *ap, _addr;
61 if (ipv6_find_hdr(skb, &ptr, NEXTHDR_ROUTING, NULL) < 0)
64 rh = skb_header_pointer(skb, ptr, sizeof(_route), &_route);
70 hdrlen = ipv6_optlen(rh);
71 if (skb->len - ptr < hdrlen) {
72 /* Pcket smaller than its length field */
76 DEBUGP("IPv6 RT LEN %u %u ", hdrlen, rh->hdrlen);
77 DEBUGP("TYPE %04X ", rh->type);
78 DEBUGP("SGS_LEFT %u %02X\n", rh->segments_left, rh->segments_left);
80 DEBUGP("IPv6 RT segsleft %02X ",
81 (segsleft_match(rtinfo->segsleft[0], rtinfo->segsleft[1],
83 !!(rtinfo->invflags & IP6T_RT_INV_SGS))));
84 DEBUGP("type %02X %02X %02X ",
85 rtinfo->rt_type, rh->type,
86 (!(rtinfo->flags & IP6T_RT_TYP) ||
87 ((rtinfo->rt_type == rh->type) ^
88 !!(rtinfo->invflags & IP6T_RT_INV_TYP))));
89 DEBUGP("len %02X %04X %02X ",
90 rtinfo->hdrlen, hdrlen,
91 (!(rtinfo->flags & IP6T_RT_LEN) ||
92 ((rtinfo->hdrlen == hdrlen) ^
93 !!(rtinfo->invflags & IP6T_RT_INV_LEN))));
94 DEBUGP("res %02X %02X %02X ",
95 (rtinfo->flags & IP6T_RT_RES),
96 ((struct rt0_hdr *)rh)->reserved,
97 !((rtinfo->flags & IP6T_RT_RES) &&
98 (((struct rt0_hdr *)rh)->reserved)));
102 (segsleft_match(rtinfo->segsleft[0], rtinfo->segsleft[1],
104 !!(rtinfo->invflags & IP6T_RT_INV_SGS)))
106 (!(rtinfo->flags & IP6T_RT_LEN) ||
107 ((rtinfo->hdrlen == hdrlen) ^
108 !!(rtinfo->invflags & IP6T_RT_INV_LEN)))
110 (!(rtinfo->flags & IP6T_RT_TYP) ||
111 ((rtinfo->rt_type == rh->type) ^
112 !!(rtinfo->invflags & IP6T_RT_INV_TYP)));
114 if (ret && (rtinfo->flags & IP6T_RT_RES)) {
115 u_int32_t *rp, _reserved;
116 rp = skb_header_pointer(skb,
117 ptr + offsetof(struct rt0_hdr,
125 DEBUGP("#%d ", rtinfo->addrnr);
126 if (!(rtinfo->flags & IP6T_RT_FST)) {
128 } else if (rtinfo->flags & IP6T_RT_FST_NSTRICT) {
129 DEBUGP("Not strict ");
130 if (rtinfo->addrnr > (unsigned int)((hdrlen - 8) / 16)) {
131 DEBUGP("There isn't enough space\n");
136 DEBUGP("#%d ", rtinfo->addrnr);
138 temp < (unsigned int)((hdrlen - 8) / 16);
140 ap = skb_header_pointer(skb,
142 + sizeof(struct rt0_hdr)
143 + temp * sizeof(_addr),
149 if (ipv6_addr_equal(ap, &rtinfo->addrs[i])) {
150 DEBUGP("i=%d temp=%d;\n", i, temp);
153 if (i == rtinfo->addrnr)
156 DEBUGP("i=%d #%d\n", i, rtinfo->addrnr);
157 if (i == rtinfo->addrnr)
164 if (rtinfo->addrnr > (unsigned int)((hdrlen - 8) / 16)) {
165 DEBUGP("There isn't enough space\n");
168 DEBUGP("#%d ", rtinfo->addrnr);
169 for (temp = 0; temp < rtinfo->addrnr; temp++) {
170 ap = skb_header_pointer(skb,
172 + sizeof(struct rt0_hdr)
173 + temp * sizeof(_addr),
178 if (!ipv6_addr_equal(ap, &rtinfo->addrs[temp]))
181 DEBUGP("temp=%d #%d\n", temp, rtinfo->addrnr);
182 if ((temp == rtinfo->addrnr) &&
183 (temp == (unsigned int)((hdrlen - 8) / 16)))
193 /* Called when user tries to insert an entry of this type. */
195 checkentry(const char *tablename,
198 unsigned int matchinfosize,
199 unsigned int hook_mask)
201 const struct ip6t_rt *rtinfo = matchinfo;
203 if (matchinfosize != IP6T_ALIGN(sizeof(struct ip6t_rt))) {
204 DEBUGP("ip6t_rt: matchsize %u != %u\n",
205 matchinfosize, IP6T_ALIGN(sizeof(struct ip6t_rt)));
208 if (rtinfo->invflags & ~IP6T_RT_INV_MASK) {
209 DEBUGP("ip6t_rt: unknown flags %X\n", rtinfo->invflags);
212 if ((rtinfo->flags & (IP6T_RT_RES | IP6T_RT_FST_MASK)) &&
213 (!(rtinfo->flags & IP6T_RT_TYP) ||
214 (rtinfo->rt_type != 0) ||
215 (rtinfo->invflags & IP6T_RT_INV_TYP))) {
216 DEBUGP("`--rt-type 0' required before `--rt-0-*'");
223 static struct ip6t_match rt_match = {
226 .checkentry = &checkentry,
230 static int __init init(void)
232 return ip6t_register_match(&rt_match);
235 static void __exit cleanup(void)
237 ip6t_unregister_match(&rt_match);
241 module_exit(cleanup);