]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - net/ipv6/netfilter/ip6t_hbh.c
netfilter: ip6t_{hbh,dst}: Rejects not-strict mode on rule insertion
[linux-2.6-omap-h63xx.git] / net / ipv6 / netfilter / ip6t_hbh.c
1 /* Kernel module to match Hop-by-Hop and Destination parameters. */
2
3 /* (C) 2001-2002 Andras Kis-Szabo <kisza@sch.bme.hu>
4  *
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.
8  */
9
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>
15 #include <net/ipv6.h>
16
17 #include <asm/byteorder.h>
18
19 #include <linux/netfilter/x_tables.h>
20 #include <linux/netfilter_ipv6/ip6_tables.h>
21 #include <linux/netfilter_ipv6/ip6t_opts.h>
22
23 MODULE_LICENSE("GPL");
24 MODULE_DESCRIPTION("Xtables: IPv6 Hop-By-Hop and Destination Header match");
25 MODULE_AUTHOR("Andras Kis-Szabo <kisza@sch.bme.hu>");
26 MODULE_ALIAS("ip6t_dst");
27
28 /*
29  *  (Type & 0xC0) >> 6
30  *      0       -> ignorable
31  *      1       -> must drop the packet
32  *      2       -> send ICMP PARM PROB regardless and drop packet
33  *      3       -> Send ICMP if not a multicast address and drop packet
34  *  (Type & 0x20) >> 5
35  *      0       -> invariant
36  *      1       -> can change the routing
37  *  (Type & 0x1F) Type
38  *      0       -> Pad1 (only 1 byte!)
39  *      1       -> PadN LENGTH info (total length = length + 2)
40  *      C0 | 2  -> JUMBO 4 x x x x ( xxxx > 64k )
41  *      5       -> RTALERT 2 x x
42  */
43
44 static bool
45 hbh_mt6(const struct sk_buff *skb, const struct net_device *in,
46         const struct net_device *out, const struct xt_match *match,
47         const void *matchinfo, int offset, unsigned int protoff,
48         bool *hotdrop)
49 {
50         struct ipv6_opt_hdr _optsh;
51         const struct ipv6_opt_hdr *oh;
52         const struct ip6t_opts *optinfo = matchinfo;
53         unsigned int temp;
54         unsigned int ptr;
55         unsigned int hdrlen = 0;
56         bool ret = false;
57         u8 _opttype;
58         u8 _optlen;
59         const u_int8_t *tp = NULL;
60         const u_int8_t *lp = NULL;
61         unsigned int optlen;
62         int err;
63
64         err = ipv6_find_hdr(skb, &ptr, match->data, NULL);
65         if (err < 0) {
66                 if (err != -ENOENT)
67                         *hotdrop = true;
68                 return false;
69         }
70
71         oh = skb_header_pointer(skb, ptr, sizeof(_optsh), &_optsh);
72         if (oh == NULL) {
73                 *hotdrop = true;
74                 return false;
75         }
76
77         hdrlen = ipv6_optlen(oh);
78         if (skb->len - ptr < hdrlen) {
79                 /* Packet smaller than it's length field */
80                 return false;
81         }
82
83         pr_debug("IPv6 OPTS LEN %u %u ", hdrlen, oh->hdrlen);
84
85         pr_debug("len %02X %04X %02X ",
86                  optinfo->hdrlen, hdrlen,
87                  (!(optinfo->flags & IP6T_OPTS_LEN) ||
88                   ((optinfo->hdrlen == hdrlen) ^
89                    !!(optinfo->invflags & IP6T_OPTS_INV_LEN))));
90
91         ret = (oh != NULL) &&
92               (!(optinfo->flags & IP6T_OPTS_LEN) ||
93                ((optinfo->hdrlen == hdrlen) ^
94                 !!(optinfo->invflags & IP6T_OPTS_INV_LEN)));
95
96         ptr += 2;
97         hdrlen -= 2;
98         if (!(optinfo->flags & IP6T_OPTS_OPTS)) {
99                 return ret;
100         } else {
101                 pr_debug("Strict ");
102                 pr_debug("#%d ", optinfo->optsnr);
103                 for (temp = 0; temp < optinfo->optsnr; temp++) {
104                         /* type field exists ? */
105                         if (hdrlen < 1)
106                                 break;
107                         tp = skb_header_pointer(skb, ptr, sizeof(_opttype),
108                                                 &_opttype);
109                         if (tp == NULL)
110                                 break;
111
112                         /* Type check */
113                         if (*tp != (optinfo->opts[temp] & 0xFF00) >> 8) {
114                                 pr_debug("Tbad %02X %02X\n", *tp,
115                                          (optinfo->opts[temp] & 0xFF00) >> 8);
116                                 return false;
117                         } else {
118                                 pr_debug("Tok ");
119                         }
120                         /* Length check */
121                         if (*tp) {
122                                 u16 spec_len;
123
124                                 /* length field exists ? */
125                                 if (hdrlen < 2)
126                                         break;
127                                 lp = skb_header_pointer(skb, ptr + 1,
128                                                         sizeof(_optlen),
129                                                         &_optlen);
130                                 if (lp == NULL)
131                                         break;
132                                 spec_len = optinfo->opts[temp] & 0x00FF;
133
134                                 if (spec_len != 0x00FF && spec_len != *lp) {
135                                         pr_debug("Lbad %02X %04X\n", *lp,
136                                                  spec_len);
137                                         return false;
138                                 }
139                                 pr_debug("Lok ");
140                                 optlen = *lp + 2;
141                         } else {
142                                 pr_debug("Pad1\n");
143                                 optlen = 1;
144                         }
145
146                         /* Step to the next */
147                         pr_debug("len%04X \n", optlen);
148
149                         if ((ptr > skb->len - optlen || hdrlen < optlen) &&
150                             temp < optinfo->optsnr - 1) {
151                                 pr_debug("new pointer is too large! \n");
152                                 break;
153                         }
154                         ptr += optlen;
155                         hdrlen -= optlen;
156                 }
157                 if (temp == optinfo->optsnr)
158                         return ret;
159                 else
160                         return false;
161         }
162
163         return false;
164 }
165
166 /* Called when user tries to insert an entry of this type. */
167 static bool
168 hbh_mt6_check(const char *tablename, const void *entry,
169               const struct xt_match *match, void *matchinfo,
170               unsigned int hook_mask)
171 {
172         const struct ip6t_opts *optsinfo = matchinfo;
173
174         if (optsinfo->invflags & ~IP6T_OPTS_INV_MASK) {
175                 pr_debug("ip6t_opts: unknown flags %X\n", optsinfo->invflags);
176                 return false;
177         }
178
179         if (optsinfo->flags & IP6T_OPTS_NSTRICT) {
180                 pr_debug("ip6t_opts: Not strict - not implemented");
181                 return false;
182         }
183
184         return true;
185 }
186
187 static struct xt_match hbh_mt6_reg[] __read_mostly = {
188         {
189                 .name           = "hbh",
190                 .family         = AF_INET6,
191                 .match          = hbh_mt6,
192                 .matchsize      = sizeof(struct ip6t_opts),
193                 .checkentry     = hbh_mt6_check,
194                 .me             = THIS_MODULE,
195                 .data           = NEXTHDR_HOP,
196         },
197         {
198                 .name           = "dst",
199                 .family         = AF_INET6,
200                 .match          = hbh_mt6,
201                 .matchsize      = sizeof(struct ip6t_opts),
202                 .checkentry     = hbh_mt6_check,
203                 .me             = THIS_MODULE,
204                 .data           = NEXTHDR_DEST,
205         },
206 };
207
208 static int __init hbh_mt6_init(void)
209 {
210         return xt_register_matches(hbh_mt6_reg, ARRAY_SIZE(hbh_mt6_reg));
211 }
212
213 static void __exit hbh_mt6_exit(void)
214 {
215         xt_unregister_matches(hbh_mt6_reg, ARRAY_SIZE(hbh_mt6_reg));
216 }
217
218 module_init(hbh_mt6_init);
219 module_exit(hbh_mt6_exit);