blob: 1302b475abcbe0c6c2f7c93d416635005ae9b91f [file] [log] [blame]
Jan Engelhardt0265ab42007-12-04 23:27:38 -08001/*
2 * Kernel module to match various things tied to sockets associated with
3 * locally generated outgoing packets.
4 *
5 * (C) 2000 Marc Boucher <marc@mbsi.ca>
6 *
Jan Engelhardtedc26f72008-01-31 04:06:38 -08007 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
Jan Engelhardt0265ab42007-12-04 23:27:38 -08008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/file.h>
16#include <net/sock.h>
Eric Dumazetfdd723e2015-11-08 10:54:09 -080017#include <net/inet_sock.h>
Jan Engelhardt0265ab42007-12-04 23:27:38 -080018#include <linux/netfilter/x_tables.h>
19#include <linux/netfilter/xt_owner.h>
Jan Engelhardt0265ab42007-12-04 23:27:38 -080020
Eric W. Biederman26711a72012-02-02 17:33:59 -080021static int owner_check(const struct xt_mtchk_param *par)
22{
23 struct xt_owner_match_info *info = par->matchinfo;
24
25 /* For now only allow adding matches from the initial user namespace */
26 if ((info->match & (XT_OWNER_UID|XT_OWNER_GID)) &&
27 (current_user_ns() != &init_user_ns))
28 return -EINVAL;
29 return 0;
30}
31
Jan Engelhardt0265ab42007-12-04 23:27:38 -080032static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +020033owner_mt(const struct sk_buff *skb, struct xt_action_param *par)
Jan Engelhardt0265ab42007-12-04 23:27:38 -080034{
Jan Engelhardtf7108a22008-10-08 11:35:18 +020035 const struct xt_owner_match_info *info = par->matchinfo;
Jan Engelhardt0265ab42007-12-04 23:27:38 -080036 const struct file *filp;
Eric Dumazetfdd723e2015-11-08 10:54:09 -080037 struct sock *sk = skb_to_full_sk(skb);
Jan Engelhardt0265ab42007-12-04 23:27:38 -080038
Eric Dumazetfdd723e2015-11-08 10:54:09 -080039 if (sk == NULL || sk->sk_socket == NULL)
Jan Engelhardt0265ab42007-12-04 23:27:38 -080040 return (info->match ^ info->invert) == 0;
41 else if (info->match & info->invert & XT_OWNER_SOCKET)
42 /*
43 * Socket exists but user wanted ! --socket-exists.
44 * (Single ampersands intended.)
45 */
46 return false;
47
Eric Dumazetfdd723e2015-11-08 10:54:09 -080048 filp = sk->sk_socket->file;
Jan Engelhardt0265ab42007-12-04 23:27:38 -080049 if (filp == NULL)
50 return ((info->match ^ info->invert) &
51 (XT_OWNER_UID | XT_OWNER_GID)) == 0;
52
Eric W. Biederman26711a72012-02-02 17:33:59 -080053 if (info->match & XT_OWNER_UID) {
54 kuid_t uid_min = make_kuid(&init_user_ns, info->uid_min);
55 kuid_t uid_max = make_kuid(&init_user_ns, info->uid_max);
56 if ((uid_gte(filp->f_cred->fsuid, uid_min) &&
57 uid_lte(filp->f_cred->fsuid, uid_max)) ^
Jan Engelhardtedc26f72008-01-31 04:06:38 -080058 !(info->invert & XT_OWNER_UID))
Jan Engelhardt0265ab42007-12-04 23:27:38 -080059 return false;
Eric W. Biederman26711a72012-02-02 17:33:59 -080060 }
Jan Engelhardt0265ab42007-12-04 23:27:38 -080061
Eric W. Biederman26711a72012-02-02 17:33:59 -080062 if (info->match & XT_OWNER_GID) {
63 kgid_t gid_min = make_kgid(&init_user_ns, info->gid_min);
64 kgid_t gid_max = make_kgid(&init_user_ns, info->gid_max);
65 if ((gid_gte(filp->f_cred->fsgid, gid_min) &&
66 gid_lte(filp->f_cred->fsgid, gid_max)) ^
Jan Engelhardtedc26f72008-01-31 04:06:38 -080067 !(info->invert & XT_OWNER_GID))
Jan Engelhardt0265ab42007-12-04 23:27:38 -080068 return false;
Eric W. Biederman26711a72012-02-02 17:33:59 -080069 }
Jan Engelhardt0265ab42007-12-04 23:27:38 -080070
71 return true;
72}
73
Jan Engelhardt6461cae2009-06-12 19:46:26 +020074static struct xt_match owner_mt_reg __read_mostly = {
75 .name = "owner",
76 .revision = 1,
77 .family = NFPROTO_UNSPEC,
Eric W. Biederman26711a72012-02-02 17:33:59 -080078 .checkentry = owner_check,
Jan Engelhardt6461cae2009-06-12 19:46:26 +020079 .match = owner_mt,
80 .matchsize = sizeof(struct xt_owner_match_info),
81 .hooks = (1 << NF_INET_LOCAL_OUT) |
82 (1 << NF_INET_POST_ROUTING),
83 .me = THIS_MODULE,
Jan Engelhardt0265ab42007-12-04 23:27:38 -080084};
85
86static int __init owner_mt_init(void)
87{
Jan Engelhardt6461cae2009-06-12 19:46:26 +020088 return xt_register_match(&owner_mt_reg);
Jan Engelhardt0265ab42007-12-04 23:27:38 -080089}
90
91static void __exit owner_mt_exit(void)
92{
Jan Engelhardt6461cae2009-06-12 19:46:26 +020093 xt_unregister_match(&owner_mt_reg);
Jan Engelhardt0265ab42007-12-04 23:27:38 -080094}
95
96module_init(owner_mt_init);
97module_exit(owner_mt_exit);
Jan Engelhardt6461cae2009-06-12 19:46:26 +020098MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080099MODULE_DESCRIPTION("Xtables: socket owner matching");
Jan Engelhardt0265ab42007-12-04 23:27:38 -0800100MODULE_LICENSE("GPL");
101MODULE_ALIAS("ipt_owner");
102MODULE_ALIAS("ip6t_owner");