powerpc/mm: Add SMP support to no-hash TLB handling
[deliverable/linux.git] / net / netfilter / xt_physdev.c
CommitLineData
1da177e4
LT
1/* Kernel module to match the bridge port in and
2 * out device for IP packets coming into contact with a bridge. */
3
4/* (C) 2001-2003 Bart De Schuymer <bdschuym@pandora.be>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/module.h>
12#include <linux/skbuff.h>
deb47c66 13#include <linux/netfilter_bridge.h>
2e4e6a17
HW
14#include <linux/netfilter/xt_physdev.h>
15#include <linux/netfilter/x_tables.h>
1da177e4
LT
16
17MODULE_LICENSE("GPL");
18MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
2ae15b64 19MODULE_DESCRIPTION("Xtables: Bridge physical device match");
2e4e6a17
HW
20MODULE_ALIAS("ipt_physdev");
21MODULE_ALIAS("ip6t_physdev");
1da177e4 22
1d93a9cb 23static bool
f7108a20 24physdev_mt(const struct sk_buff *skb, const struct xt_match_param *par)
1da177e4
LT
25{
26 int i;
27 static const char nulldevname[IFNAMSIZ];
f7108a20 28 const struct xt_physdev_info *info = par->matchinfo;
1d93a9cb 29 bool ret;
1da177e4 30 const char *indev, *outdev;
a47362a2 31 const struct nf_bridge_info *nf_bridge;
1da177e4
LT
32
33 /* Not a bridged IP packet or no info available yet:
34 * LOCAL_OUT/mangle and LOCAL_OUT/nat don't know if
35 * the destination device will be a bridge. */
36 if (!(nf_bridge = skb->nf_bridge)) {
37 /* Return MATCH if the invert flags of the used options are on */
2e4e6a17
HW
38 if ((info->bitmask & XT_PHYSDEV_OP_BRIDGED) &&
39 !(info->invert & XT_PHYSDEV_OP_BRIDGED))
1d93a9cb 40 return false;
2e4e6a17
HW
41 if ((info->bitmask & XT_PHYSDEV_OP_ISIN) &&
42 !(info->invert & XT_PHYSDEV_OP_ISIN))
1d93a9cb 43 return false;
2e4e6a17
HW
44 if ((info->bitmask & XT_PHYSDEV_OP_ISOUT) &&
45 !(info->invert & XT_PHYSDEV_OP_ISOUT))
1d93a9cb 46 return false;
2e4e6a17
HW
47 if ((info->bitmask & XT_PHYSDEV_OP_IN) &&
48 !(info->invert & XT_PHYSDEV_OP_IN))
1d93a9cb 49 return false;
2e4e6a17
HW
50 if ((info->bitmask & XT_PHYSDEV_OP_OUT) &&
51 !(info->invert & XT_PHYSDEV_OP_OUT))
1d93a9cb
JE
52 return false;
53 return true;
1da177e4
LT
54 }
55
56 /* This only makes sense in the FORWARD and POSTROUTING chains */
2e4e6a17 57 if ((info->bitmask & XT_PHYSDEV_OP_BRIDGED) &&
1da177e4 58 (!!(nf_bridge->mask & BRNF_BRIDGED) ^
2e4e6a17 59 !(info->invert & XT_PHYSDEV_OP_BRIDGED)))
1d93a9cb 60 return false;
1da177e4 61
2e4e6a17
HW
62 if ((info->bitmask & XT_PHYSDEV_OP_ISIN &&
63 (!nf_bridge->physindev ^ !!(info->invert & XT_PHYSDEV_OP_ISIN))) ||
64 (info->bitmask & XT_PHYSDEV_OP_ISOUT &&
65 (!nf_bridge->physoutdev ^ !!(info->invert & XT_PHYSDEV_OP_ISOUT))))
1d93a9cb 66 return false;
1da177e4 67
2e4e6a17 68 if (!(info->bitmask & XT_PHYSDEV_OP_IN))
1da177e4
LT
69 goto match_outdev;
70 indev = nf_bridge->physindev ? nf_bridge->physindev->name : nulldevname;
1d93a9cb 71 for (i = 0, ret = false; i < IFNAMSIZ/sizeof(unsigned int); i++) {
1da177e4
LT
72 ret |= (((const unsigned int *)indev)[i]
73 ^ ((const unsigned int *)info->physindev)[i])
74 & ((const unsigned int *)info->in_mask)[i];
75 }
76
1d93a9cb
JE
77 if (!ret ^ !(info->invert & XT_PHYSDEV_OP_IN))
78 return false;
1da177e4
LT
79
80match_outdev:
2e4e6a17 81 if (!(info->bitmask & XT_PHYSDEV_OP_OUT))
1d93a9cb 82 return true;
1da177e4
LT
83 outdev = nf_bridge->physoutdev ?
84 nf_bridge->physoutdev->name : nulldevname;
1d93a9cb 85 for (i = 0, ret = false; i < IFNAMSIZ/sizeof(unsigned int); i++) {
1da177e4
LT
86 ret |= (((const unsigned int *)outdev)[i]
87 ^ ((const unsigned int *)info->physoutdev)[i])
88 & ((const unsigned int *)info->out_mask)[i];
89 }
90
1d93a9cb 91 return ret ^ !(info->invert & XT_PHYSDEV_OP_OUT);
1da177e4
LT
92}
93
9b4fce7a 94static bool physdev_mt_check(const struct xt_mtchk_param *par)
1da177e4 95{
9b4fce7a 96 const struct xt_physdev_info *info = par->matchinfo;
1da177e4 97
2e4e6a17
HW
98 if (!(info->bitmask & XT_PHYSDEV_OP_MASK) ||
99 info->bitmask & ~XT_PHYSDEV_OP_MASK)
ccb79bdc 100 return false;
2bf540b7 101 if (info->bitmask & XT_PHYSDEV_OP_OUT &&
10ea6ac8
PM
102 (!(info->bitmask & XT_PHYSDEV_OP_BRIDGED) ||
103 info->invert & XT_PHYSDEV_OP_BRIDGED) &&
9b4fce7a
JE
104 par->hook_mask & ((1 << NF_INET_LOCAL_OUT) |
105 (1 << NF_INET_FORWARD) | (1 << NF_INET_POST_ROUTING))) {
10ea6ac8
PM
106 printk(KERN_WARNING "physdev match: using --physdev-out in the "
107 "OUTPUT, FORWARD and POSTROUTING chains for non-bridged "
2bf540b7 108 "traffic is not supported anymore.\n");
9b4fce7a 109 if (par->hook_mask & (1 << NF_INET_LOCAL_OUT))
ccb79bdc 110 return false;
10ea6ac8 111 }
ccb79bdc 112 return true;
1da177e4
LT
113}
114
ab4f21e6
JE
115static struct xt_match physdev_mt_reg __read_mostly = {
116 .name = "physdev",
117 .revision = 0,
118 .family = NFPROTO_UNSPEC,
119 .checkentry = physdev_mt_check,
120 .match = physdev_mt,
121 .matchsize = sizeof(struct xt_physdev_info),
122 .me = THIS_MODULE,
1da177e4
LT
123};
124
d3c5ee6d 125static int __init physdev_mt_init(void)
1da177e4 126{
ab4f21e6 127 return xt_register_match(&physdev_mt_reg);
1da177e4
LT
128}
129
d3c5ee6d 130static void __exit physdev_mt_exit(void)
1da177e4 131{
ab4f21e6 132 xt_unregister_match(&physdev_mt_reg);
1da177e4
LT
133}
134
d3c5ee6d
JE
135module_init(physdev_mt_init);
136module_exit(physdev_mt_exit);
This page took 0.41157 seconds and 5 git commands to generate.