blob: 2b7e1781d34da3fa56d6dd82c0eae5380ded8c56 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* IP tables module for matching the routing realm
2 *
3 * $Id: ipt_realm.c,v 1.3 2004/03/05 13:25:40 laforge Exp $
4 *
5 * (C) 2003 by Sampsa Ranta <sampsa@netsonic.fi>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/module.h>
13#include <linux/skbuff.h>
14#include <linux/netdevice.h>
15#include <net/route.h>
16
Harald Welte2e4e6a12006-01-12 13:30:04 -080017#include <linux/netfilter_ipv4.h>
18#include <linux/netfilter/xt_realm.h>
19#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21MODULE_AUTHOR("Sampsa Ranta <sampsa@netsonic.fi>");
22MODULE_LICENSE("GPL");
Harald Welte2e4e6a12006-01-12 13:30:04 -080023MODULE_DESCRIPTION("X_tables realm match");
24MODULE_ALIAS("ipt_realm");
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26static int
27match(const struct sk_buff *skb,
28 const struct net_device *in,
29 const struct net_device *out,
30 const void *matchinfo,
31 int offset,
Harald Welte2e4e6a12006-01-12 13:30:04 -080032 unsigned int protoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 int *hotdrop)
34{
Harald Welte2e4e6a12006-01-12 13:30:04 -080035 const struct xt_realm_info *info = matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 struct dst_entry *dst = skb->dst;
37
38 return (info->id == (dst->tclassid & info->mask)) ^ info->invert;
39}
40
41static int check(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -080042 const void *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 void *matchinfo,
44 unsigned int matchsize,
45 unsigned int hook_mask)
46{
47 if (hook_mask
48 & ~((1 << NF_IP_POST_ROUTING) | (1 << NF_IP_FORWARD) |
49 (1 << NF_IP_LOCAL_OUT) | (1 << NF_IP_LOCAL_IN))) {
Harald Welte2e4e6a12006-01-12 13:30:04 -080050 printk("xt_realm: only valid for POST_ROUTING, LOCAL_OUT, "
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 "LOCAL_IN or FORWARD.\n");
52 return 0;
53 }
Harald Welte2e4e6a12006-01-12 13:30:04 -080054 if (matchsize != XT_ALIGN(sizeof(struct xt_realm_info))) {
55 printk("xt_realm: invalid matchsize.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 return 0;
57 }
58 return 1;
59}
60
Harald Welte2e4e6a12006-01-12 13:30:04 -080061static struct xt_match realm_match = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 .name = "realm",
63 .match = match,
64 .checkentry = check,
65 .me = THIS_MODULE
66};
67
68static int __init init(void)
69{
Harald Welte2e4e6a12006-01-12 13:30:04 -080070 return xt_register_match(AF_INET, &realm_match);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
73static void __exit fini(void)
74{
Harald Welte2e4e6a12006-01-12 13:30:04 -080075 xt_unregister_match(AF_INET, &realm_match);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
78module_init(init);
79module_exit(fini);