1 /* Kernel module to match various things tied to sockets associated with
2 locally generated outgoing packets. */
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.
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
13 #include <linux/file.h>
14 #include <linux/rcupdate.h>
17 #include <linux/netfilter_ipv6/ip6t_owner.h>
18 #include <linux/netfilter_ipv6/ip6_tables.h>
19 #include <linux/netfilter/x_tables.h>
22 MODULE_DESCRIPTION("IP6 tables owner matching module");
23 MODULE_LICENSE("GPL");
27 owner_mt6(const struct sk_buff *skb, const struct net_device *in,
28 const struct net_device *out, const struct xt_match *match,
29 const void *matchinfo, int offset, unsigned int protoff,
32 const struct ip6t_owner_info *info = matchinfo;
34 if (!skb->sk || !skb->sk->sk_socket || !skb->sk->sk_socket->file)
37 if (info->match & IP6T_OWNER_UID)
38 if ((skb->sk->sk_socket->file->f_uid != info->uid) ^
39 !!(info->invert & IP6T_OWNER_UID))
42 if (info->match & IP6T_OWNER_GID)
43 if ((skb->sk->sk_socket->file->f_gid != info->gid) ^
44 !!(info->invert & IP6T_OWNER_GID))
51 owner_mt6_check(const char *tablename, const void *ip,
52 const struct xt_match *match, void *matchinfo,
53 unsigned int hook_mask)
55 const struct ip6t_owner_info *info = matchinfo;
57 if (info->match & (IP6T_OWNER_PID | IP6T_OWNER_SID)) {
58 printk("ipt_owner: pid and sid matching "
59 "not supported anymore\n");
65 static struct xt_match owner_mt6_reg __read_mostly = {
69 .matchsize = sizeof(struct ip6t_owner_info),
70 .hooks = (1 << NF_INET_LOCAL_OUT) |
71 (1 << NF_INET_POST_ROUTING),
72 .checkentry = owner_mt6_check,
76 static int __init owner_mt6_init(void)
78 return xt_register_match(&owner_mt6_reg);
81 static void __exit owner_mt6_exit(void)
83 xt_unregister_match(&owner_mt6_reg);
86 module_init(owner_mt6_init);
87 module_exit(owner_mt6_exit);