media: staging: media: use relevant lock
[linux-2.6-block.git] / net / netfilter / xt_policy.c
CommitLineData
c4b88513
PM
1/* IP tables module for matching IPsec policy
2 *
3 * Copyright (c) 2004,2005 Patrick McHardy, <kaber@trash.net>
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 */
8bee4bad 9#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
c4b88513 10#include <linux/kernel.h>
c4b88513
PM
11#include <linux/module.h>
12#include <linux/skbuff.h>
13#include <linux/init.h>
14#include <net/xfrm.h>
15
917b6fbd 16#include <linux/netfilter.h>
c4b88513
PM
17#include <linux/netfilter/xt_policy.h>
18#include <linux/netfilter/x_tables.h>
19
20MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
2ae15b64 21MODULE_DESCRIPTION("Xtables: IPsec policy match");
c4b88513
PM
22MODULE_LICENSE("GPL");
23
1d93a9cb 24static inline bool
917b6fbd
JE
25xt_addr_cmp(const union nf_inet_addr *a1, const union nf_inet_addr *m,
26 const union nf_inet_addr *a2, unsigned short family)
c4b88513
PM
27{
28 switch (family) {
ee999d8b 29 case NFPROTO_IPV4:
917b6fbd 30 return ((a1->ip ^ a2->ip) & m->ip) == 0;
ee999d8b 31 case NFPROTO_IPV6:
917b6fbd 32 return ipv6_masked_addr_cmp(&a1->in6, &m->in6, &a2->in6) == 0;
c4b88513 33 }
1d93a9cb 34 return false;
c4b88513
PM
35}
36
b9aed455 37static bool
a47362a2 38match_xfrm_state(const struct xfrm_state *x, const struct xt_policy_elem *e,
c4b88513
PM
39 unsigned short family)
40{
41#define MATCH_ADDR(x,y,z) (!e->match.x || \
917b6fbd 42 (xt_addr_cmp(&e->x, &e->y, (const union nf_inet_addr *)(z), family) \
c4b88513
PM
43 ^ e->invert.x))
44#define MATCH(x,y) (!e->match.x || ((e->x == (y)) ^ e->invert.x))
45
917b6fbd
JE
46 return MATCH_ADDR(saddr, smask, &x->props.saddr) &&
47 MATCH_ADDR(daddr, dmask, &x->id.daddr) &&
c4b88513
PM
48 MATCH(proto, x->id.proto) &&
49 MATCH(mode, x->props.mode) &&
50 MATCH(spi, x->id.spi) &&
51 MATCH(reqid, x->props.reqid);
52}
53
54static int
55match_policy_in(const struct sk_buff *skb, const struct xt_policy_info *info,
56 unsigned short family)
57{
58 const struct xt_policy_elem *e;
a47362a2 59 const struct sec_path *sp = skb->sp;
c4b88513
PM
60 int strict = info->flags & XT_POLICY_MATCH_STRICT;
61 int i, pos;
62
63 if (sp == NULL)
64 return -1;
65 if (strict && info->len != sp->len)
66 return 0;
67
68 for (i = sp->len - 1; i >= 0; i--) {
69 pos = strict ? i - sp->len + 1 : 0;
70 if (pos >= info->len)
71 return 0;
72 e = &info->pol[pos];
73
dbe5b4aa 74 if (match_xfrm_state(sp->xvec[i], e, family)) {
c4b88513
PM
75 if (!strict)
76 return 1;
77 } else if (strict)
78 return 0;
79 }
80
81 return strict ? 1 : 0;
82}
83
84static int
85match_policy_out(const struct sk_buff *skb, const struct xt_policy_info *info,
86 unsigned short family)
87{
88 const struct xt_policy_elem *e;
adf30907 89 const struct dst_entry *dst = skb_dst(skb);
c4b88513
PM
90 int strict = info->flags & XT_POLICY_MATCH_STRICT;
91 int i, pos;
92
93 if (dst->xfrm == NULL)
94 return -1;
95
b6ca8bd5
DM
96 for (i = 0; dst && dst->xfrm;
97 dst = ((struct xfrm_dst *)dst)->child, i++) {
c4b88513
PM
98 pos = strict ? i : 0;
99 if (pos >= info->len)
100 return 0;
101 e = &info->pol[pos];
102
103 if (match_xfrm_state(dst->xfrm, e, family)) {
104 if (!strict)
105 return 1;
106 } else if (strict)
107 return 0;
108 }
109
110 return strict ? i == info->len : 0;
111}
112
d3c5ee6d 113static bool
62fc8051 114policy_mt(const struct sk_buff *skb, struct xt_action_param *par)
c4b88513 115{
f7108a20 116 const struct xt_policy_info *info = par->matchinfo;
c4b88513
PM
117 int ret;
118
119 if (info->flags & XT_POLICY_MATCH_IN)
613dbd95 120 ret = match_policy_in(skb, info, xt_family(par));
c4b88513 121 else
613dbd95 122 ret = match_policy_out(skb, info, xt_family(par));
c4b88513
PM
123
124 if (ret < 0)
1d93a9cb 125 ret = info->flags & XT_POLICY_MATCH_NONE ? true : false;
c4b88513 126 else if (info->flags & XT_POLICY_MATCH_NONE)
1d93a9cb 127 ret = false;
c4b88513
PM
128
129 return ret;
130}
131
b0f38452 132static int policy_mt_check(const struct xt_mtchk_param *par)
c4b88513 133{
9b4fce7a 134 const struct xt_policy_info *info = par->matchinfo;
c08e5e1e
FW
135 const char *errmsg = "neither incoming nor outgoing policy selected";
136
137 if (!(info->flags & (XT_POLICY_MATCH_IN|XT_POLICY_MATCH_OUT)))
138 goto err;
c4b88513 139
9b4fce7a
JE
140 if (par->hook_mask & ((1 << NF_INET_PRE_ROUTING) |
141 (1 << NF_INET_LOCAL_IN)) && info->flags & XT_POLICY_MATCH_OUT) {
c08e5e1e
FW
142 errmsg = "output policy not valid in PREROUTING and INPUT";
143 goto err;
c4b88513 144 }
9b4fce7a
JE
145 if (par->hook_mask & ((1 << NF_INET_POST_ROUTING) |
146 (1 << NF_INET_LOCAL_OUT)) && info->flags & XT_POLICY_MATCH_IN) {
c08e5e1e
FW
147 errmsg = "input policy not valid in POSTROUTING and OUTPUT";
148 goto err;
c4b88513
PM
149 }
150 if (info->len > XT_POLICY_MAX_ELEM) {
c08e5e1e
FW
151 errmsg = "too many policy elements";
152 goto err;
c4b88513 153 }
bd414ee6 154 return 0;
c08e5e1e
FW
155err:
156 pr_info_ratelimited("%s\n", errmsg);
157 return -EINVAL;
c4b88513
PM
158}
159
d3c5ee6d 160static struct xt_match policy_mt_reg[] __read_mostly = {
4470bbc7
PM
161 {
162 .name = "policy",
ee999d8b 163 .family = NFPROTO_IPV4,
d3c5ee6d
JE
164 .checkentry = policy_mt_check,
165 .match = policy_mt,
4470bbc7 166 .matchsize = sizeof(struct xt_policy_info),
4470bbc7
PM
167 .me = THIS_MODULE,
168 },
169 {
170 .name = "policy",
ee999d8b 171 .family = NFPROTO_IPV6,
d3c5ee6d
JE
172 .checkentry = policy_mt_check,
173 .match = policy_mt,
4470bbc7 174 .matchsize = sizeof(struct xt_policy_info),
4470bbc7
PM
175 .me = THIS_MODULE,
176 },
c4b88513
PM
177};
178
d3c5ee6d 179static int __init policy_mt_init(void)
c4b88513 180{
d3c5ee6d 181 return xt_register_matches(policy_mt_reg, ARRAY_SIZE(policy_mt_reg));
c4b88513
PM
182}
183
d3c5ee6d 184static void __exit policy_mt_exit(void)
c4b88513 185{
d3c5ee6d 186 xt_unregister_matches(policy_mt_reg, ARRAY_SIZE(policy_mt_reg));
c4b88513
PM
187}
188
d3c5ee6d
JE
189module_init(policy_mt_init);
190module_exit(policy_mt_exit);
c4b88513
PM
191MODULE_ALIAS("ipt_policy");
192MODULE_ALIAS("ip6t_policy");