[NETFILTER] xt_policy.c: kill some bloat
[linux-2.6/mini2440.git] / net / netfilter / xt_policy.c
blob45731ca15b7d55f124c780328766afaea9813d1b
1 /* IP tables module for matching IPsec policy
3 * Copyright (c) 2004,2005 Patrick McHardy, <kaber@trash.net>
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 */
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
13 #include <linux/init.h>
14 #include <net/xfrm.h>
16 #include <linux/netfilter/xt_policy.h>
17 #include <linux/netfilter/x_tables.h>
19 MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
20 MODULE_DESCRIPTION("Xtables IPsec policy matching module");
21 MODULE_LICENSE("GPL");
23 static inline bool
24 xt_addr_cmp(const union xt_policy_addr *a1, const union xt_policy_addr *m,
25 const union xt_policy_addr *a2, unsigned short family)
27 switch (family) {
28 case AF_INET:
29 return !((a1->a4.s_addr ^ a2->a4.s_addr) & m->a4.s_addr);
30 case AF_INET6:
31 return !ipv6_masked_addr_cmp(&a1->a6, &m->a6, &a2->a6);
33 return false;
36 static bool
37 match_xfrm_state(const struct xfrm_state *x, const struct xt_policy_elem *e,
38 unsigned short family)
40 #define MATCH_ADDR(x,y,z) (!e->match.x || \
41 (xt_addr_cmp(&e->x, &e->y, (z), family) \
42 ^ e->invert.x))
43 #define MATCH(x,y) (!e->match.x || ((e->x == (y)) ^ e->invert.x))
45 return MATCH_ADDR(saddr, smask, (union xt_policy_addr *)&x->props.saddr) &&
46 MATCH_ADDR(daddr, dmask, (union xt_policy_addr *)&x->id.daddr) &&
47 MATCH(proto, x->id.proto) &&
48 MATCH(mode, x->props.mode) &&
49 MATCH(spi, x->id.spi) &&
50 MATCH(reqid, x->props.reqid);
53 static int
54 match_policy_in(const struct sk_buff *skb, const struct xt_policy_info *info,
55 unsigned short family)
57 const struct xt_policy_elem *e;
58 const struct sec_path *sp = skb->sp;
59 int strict = info->flags & XT_POLICY_MATCH_STRICT;
60 int i, pos;
62 if (sp == NULL)
63 return -1;
64 if (strict && info->len != sp->len)
65 return 0;
67 for (i = sp->len - 1; i >= 0; i--) {
68 pos = strict ? i - sp->len + 1 : 0;
69 if (pos >= info->len)
70 return 0;
71 e = &info->pol[pos];
73 if (match_xfrm_state(sp->xvec[i], e, family)) {
74 if (!strict)
75 return 1;
76 } else if (strict)
77 return 0;
80 return strict ? 1 : 0;
83 static int
84 match_policy_out(const struct sk_buff *skb, const struct xt_policy_info *info,
85 unsigned short family)
87 const struct xt_policy_elem *e;
88 const struct dst_entry *dst = skb->dst;
89 int strict = info->flags & XT_POLICY_MATCH_STRICT;
90 int i, pos;
92 if (dst->xfrm == NULL)
93 return -1;
95 for (i = 0; dst && dst->xfrm; dst = dst->child, i++) {
96 pos = strict ? i : 0;
97 if (pos >= info->len)
98 return 0;
99 e = &info->pol[pos];
101 if (match_xfrm_state(dst->xfrm, e, family)) {
102 if (!strict)
103 return 1;
104 } else if (strict)
105 return 0;
108 return strict ? i == info->len : 0;
111 static bool
112 policy_mt(const struct sk_buff *skb, const struct net_device *in,
113 const struct net_device *out, const struct xt_match *match,
114 const void *matchinfo, int offset, unsigned int protoff,
115 bool *hotdrop)
117 const struct xt_policy_info *info = matchinfo;
118 int ret;
120 if (info->flags & XT_POLICY_MATCH_IN)
121 ret = match_policy_in(skb, info, match->family);
122 else
123 ret = match_policy_out(skb, info, match->family);
125 if (ret < 0)
126 ret = info->flags & XT_POLICY_MATCH_NONE ? true : false;
127 else if (info->flags & XT_POLICY_MATCH_NONE)
128 ret = false;
130 return ret;
133 static bool
134 policy_mt_check(const char *tablename, const void *ip_void,
135 const struct xt_match *match, void *matchinfo,
136 unsigned int hook_mask)
138 struct xt_policy_info *info = matchinfo;
140 if (!(info->flags & (XT_POLICY_MATCH_IN|XT_POLICY_MATCH_OUT))) {
141 printk(KERN_ERR "xt_policy: neither incoming nor "
142 "outgoing policy selected\n");
143 return false;
145 if (hook_mask & (1 << NF_INET_PRE_ROUTING | 1 << NF_INET_LOCAL_IN)
146 && info->flags & XT_POLICY_MATCH_OUT) {
147 printk(KERN_ERR "xt_policy: output policy not valid in "
148 "PRE_ROUTING and INPUT\n");
149 return false;
151 if (hook_mask & (1 << NF_INET_POST_ROUTING | 1 << NF_INET_LOCAL_OUT)
152 && info->flags & XT_POLICY_MATCH_IN) {
153 printk(KERN_ERR "xt_policy: input policy not valid in "
154 "POST_ROUTING and OUTPUT\n");
155 return false;
157 if (info->len > XT_POLICY_MAX_ELEM) {
158 printk(KERN_ERR "xt_policy: too many policy elements\n");
159 return false;
161 return true;
164 static struct xt_match policy_mt_reg[] __read_mostly = {
166 .name = "policy",
167 .family = AF_INET,
168 .checkentry = policy_mt_check,
169 .match = policy_mt,
170 .matchsize = sizeof(struct xt_policy_info),
171 .me = THIS_MODULE,
174 .name = "policy",
175 .family = AF_INET6,
176 .checkentry = policy_mt_check,
177 .match = policy_mt,
178 .matchsize = sizeof(struct xt_policy_info),
179 .me = THIS_MODULE,
183 static int __init policy_mt_init(void)
185 return xt_register_matches(policy_mt_reg, ARRAY_SIZE(policy_mt_reg));
188 static void __exit policy_mt_exit(void)
190 xt_unregister_matches(policy_mt_reg, ARRAY_SIZE(policy_mt_reg));
193 module_init(policy_mt_init);
194 module_exit(policy_mt_exit);
195 MODULE_ALIAS("ipt_policy");
196 MODULE_ALIAS("ip6t_policy");