blob: 6afa3d52ea5f1d7af8d2be47db8ece008429eeb6 [file] [log] [blame]
Harald Weltef9e815b2005-08-09 19:30:24 -07001/* Netfilter messages via netlink socket. Allows for user space
2 * protocol helpers and general trouble making from userspace.
3 *
4 * (C) 2001 by Jay Schulist <jschlst@samba.org>,
5 * (C) 2002-2005 by Harald Welte <laforge@gnumonks.org>
Pablo Neira Ayuso67ca3962007-03-14 16:40:38 -07006 * (C) 2005,2007 by Pablo Neira Ayuso <pablo@netfilter.org>
Harald Weltef9e815b2005-08-09 19:30:24 -07007 *
8 * Initial netfilter messages via netlink development funded and
9 * generally made possible by Network Robots, Inc. (www.networkrobots.com)
10 *
11 * Further development of this code funded by Astaro AG (http://www.astaro.com)
12 *
13 * This software may be used and distributed according to the terms
14 * of the GNU General Public License, incorporated herein by reference.
15 */
16
Harald Weltef9e815b2005-08-09 19:30:24 -070017#include <linux/module.h>
18#include <linux/types.h>
19#include <linux/socket.h>
20#include <linux/kernel.h>
21#include <linux/major.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070022#include <linux/timer.h>
23#include <linux/string.h>
24#include <linux/sockios.h>
25#include <linux/net.h>
26#include <linux/fcntl.h>
27#include <linux/skbuff.h>
28#include <asm/uaccess.h>
29#include <asm/system.h>
30#include <net/sock.h>
Patrick McHardya3c50292007-03-14 16:39:25 -070031#include <net/netlink.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070032#include <linux/init.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070033
Harald Weltef9e815b2005-08-09 19:30:24 -070034#include <linux/netlink.h>
35#include <linux/netfilter/nfnetlink.h>
36
37MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -070038MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
39MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER);
Harald Weltef9e815b2005-08-09 19:30:24 -070040
41static char __initdata nfversion[] = "0.30";
42
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070043static const struct nfnetlink_subsystem *subsys_table[NFNL_SUBSYS_COUNT];
Patrick McHardya3c50292007-03-14 16:39:25 -070044static DEFINE_MUTEX(nfnl_mutex);
Harald Weltef9e815b2005-08-09 19:30:24 -070045
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070046void nfnl_lock(void)
Harald Weltef9e815b2005-08-09 19:30:24 -070047{
Patrick McHardya3c50292007-03-14 16:39:25 -070048 mutex_lock(&nfnl_mutex);
Harald Weltef9e815b2005-08-09 19:30:24 -070049}
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070050EXPORT_SYMBOL_GPL(nfnl_lock);
Harald Weltef9e815b2005-08-09 19:30:24 -070051
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070052void nfnl_unlock(void)
Patrick McHardya3c50292007-03-14 16:39:25 -070053{
54 mutex_unlock(&nfnl_mutex);
55}
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070056EXPORT_SYMBOL_GPL(nfnl_unlock);
Patrick McHardya3c50292007-03-14 16:39:25 -070057
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070058int nfnetlink_subsys_register(const struct nfnetlink_subsystem *n)
Harald Weltef9e815b2005-08-09 19:30:24 -070059{
Harald Weltef9e815b2005-08-09 19:30:24 -070060 nfnl_lock();
Harald Welte0ab43f82005-08-09 19:43:44 -070061 if (subsys_table[n->subsys_id]) {
62 nfnl_unlock();
63 return -EBUSY;
64 }
Harald Weltef9e815b2005-08-09 19:30:24 -070065 subsys_table[n->subsys_id] = n;
66 nfnl_unlock();
67
68 return 0;
69}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -070070EXPORT_SYMBOL_GPL(nfnetlink_subsys_register);
Harald Weltef9e815b2005-08-09 19:30:24 -070071
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070072int nfnetlink_subsys_unregister(const struct nfnetlink_subsystem *n)
Harald Weltef9e815b2005-08-09 19:30:24 -070073{
Harald Weltef9e815b2005-08-09 19:30:24 -070074 nfnl_lock();
75 subsys_table[n->subsys_id] = NULL;
76 nfnl_unlock();
77
78 return 0;
79}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -070080EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister);
Harald Weltef9e815b2005-08-09 19:30:24 -070081
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070082static inline const struct nfnetlink_subsystem *nfnetlink_get_subsys(u_int16_t type)
Harald Weltef9e815b2005-08-09 19:30:24 -070083{
84 u_int8_t subsys_id = NFNL_SUBSYS_ID(type);
85
Pablo Neira Ayusoac0f1d92007-03-14 16:41:28 -070086 if (subsys_id >= NFNL_SUBSYS_COUNT)
Harald Weltef9e815b2005-08-09 19:30:24 -070087 return NULL;
88
89 return subsys_table[subsys_id];
90}
91
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070092static inline const struct nfnl_callback *
93nfnetlink_find_client(u_int16_t type, const struct nfnetlink_subsystem *ss)
Harald Weltef9e815b2005-08-09 19:30:24 -070094{
95 u_int8_t cb_id = NFNL_MSG_TYPE(type);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080096
Pablo Neira Ayuso67ca3962007-03-14 16:40:38 -070097 if (cb_id >= ss->cb_count)
Harald Weltef9e815b2005-08-09 19:30:24 -070098 return NULL;
Harald Weltef9e815b2005-08-09 19:30:24 -070099
100 return &ss->cb[cb_id];
101}
102
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100103int nfnetlink_has_listeners(struct net *net, unsigned int group)
Patrick McHardya2427692006-03-20 18:03:59 -0800104{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100105 return netlink_has_listeners(net->nfnl, group);
Patrick McHardya2427692006-03-20 18:03:59 -0800106}
107EXPORT_SYMBOL_GPL(nfnetlink_has_listeners);
108
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100109int nfnetlink_send(struct sk_buff *skb, struct net *net, u32 pid,
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200110 unsigned group, int echo, gfp_t flags)
Harald Weltef9e815b2005-08-09 19:30:24 -0700111{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100112 return nlmsg_notify(net->nfnl, skb, pid, group, echo, flags);
Harald Weltef9e815b2005-08-09 19:30:24 -0700113}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -0700114EXPORT_SYMBOL_GPL(nfnetlink_send);
Harald Weltef9e815b2005-08-09 19:30:24 -0700115
Pablo Neira Ayuso37b7ef72010-03-16 13:30:21 +0000116int nfnetlink_set_err(struct net *net, u32 pid, u32 group, int error)
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +0100117{
Pablo Neira Ayuso37b7ef72010-03-16 13:30:21 +0000118 return netlink_set_err(net->nfnl, pid, group, error);
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +0100119}
120EXPORT_SYMBOL_GPL(nfnetlink_set_err);
121
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100122int nfnetlink_unicast(struct sk_buff *skb, struct net *net, u_int32_t pid, int flags)
Harald Weltef9e815b2005-08-09 19:30:24 -0700123{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100124 return netlink_unicast(net->nfnl, skb, pid, flags);
Harald Weltef9e815b2005-08-09 19:30:24 -0700125}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -0700126EXPORT_SYMBOL_GPL(nfnetlink_unicast);
Harald Weltef9e815b2005-08-09 19:30:24 -0700127
128/* Process one complete nfnetlink message. */
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700129static int nfnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Harald Weltef9e815b2005-08-09 19:30:24 -0700130{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100131 struct net *net = sock_net(skb->sk);
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700132 const struct nfnl_callback *nc;
133 const struct nfnetlink_subsystem *ss;
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700134 int type, err;
Harald Weltef9e815b2005-08-09 19:30:24 -0700135
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700136 if (security_netlink_recv(skb, CAP_NET_ADMIN))
137 return -EPERM;
Harald Welte37d2e7a2005-11-14 15:24:59 -0800138
Harald Weltef9e815b2005-08-09 19:30:24 -0700139 /* All the messages must at least contain nfgenmsg */
Pablo Neira Ayusof49c8572009-06-02 20:03:33 +0200140 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct nfgenmsg)))
Harald Weltef9e815b2005-08-09 19:30:24 -0700141 return 0;
Harald Weltef9e815b2005-08-09 19:30:24 -0700142
143 type = nlh->nlmsg_type;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -0700144replay:
Harald Weltef9e815b2005-08-09 19:30:24 -0700145 ss = nfnetlink_get_subsys(type);
Harald Welte0ab43f82005-08-09 19:43:44 -0700146 if (!ss) {
Johannes Berg95a5afc2008-10-16 15:24:51 -0700147#ifdef CONFIG_MODULES
Denis V. Lunev3b715352007-10-10 21:13:32 -0700148 nfnl_unlock();
Harald Welte37d2e7a2005-11-14 15:24:59 -0800149 request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type));
Patrick McHardya3c50292007-03-14 16:39:25 -0700150 nfnl_lock();
Harald Welte37d2e7a2005-11-14 15:24:59 -0800151 ss = nfnetlink_get_subsys(type);
Harald Welte0ab43f82005-08-09 19:43:44 -0700152 if (!ss)
153#endif
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700154 return -EINVAL;
Harald Welte0ab43f82005-08-09 19:43:44 -0700155 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700156
157 nc = nfnetlink_find_client(type, ss);
Pablo Neira Ayuso67ca3962007-03-14 16:40:38 -0700158 if (!nc)
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700159 return -EINVAL;
Harald Weltef9e815b2005-08-09 19:30:24 -0700160
Harald Weltef9e815b2005-08-09 19:30:24 -0700161 {
Patrick McHardye3730572007-09-28 14:38:52 -0700162 int min_len = NLMSG_SPACE(sizeof(struct nfgenmsg));
163 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
Pablo Neira Ayusof49c8572009-06-02 20:03:33 +0200164 struct nlattr *cda[ss->cb[cb_id].attr_count + 1];
165 struct nlattr *attr = (void *)nlh + min_len;
166 int attrlen = nlh->nlmsg_len - min_len;
Harald Weltef9e815b2005-08-09 19:30:24 -0700167
Pablo Neira Ayusof49c8572009-06-02 20:03:33 +0200168 err = nla_parse(cda, ss->cb[cb_id].attr_count,
169 attr, attrlen, ss->cb[cb_id].policy);
170 if (err < 0)
171 return err;
Patrick McHardye3730572007-09-28 14:38:52 -0700172
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100173 err = nc->call(net->nfnl, skb, nlh, (const struct nlattr **)cda);
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -0700174 if (err == -EAGAIN)
175 goto replay;
176 return err;
Harald Weltef9e815b2005-08-09 19:30:24 -0700177 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700178}
179
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700180static void nfnetlink_rcv(struct sk_buff *skb)
Harald Weltef9e815b2005-08-09 19:30:24 -0700181{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700182 nfnl_lock();
183 netlink_rcv_skb(skb, &nfnetlink_rcv_msg);
184 nfnl_unlock();
Harald Weltef9e815b2005-08-09 19:30:24 -0700185}
186
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100187static int __net_init nfnetlink_net_init(struct net *net)
Harald Weltef9e815b2005-08-09 19:30:24 -0700188{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100189 struct sock *nfnl;
190
191 nfnl = netlink_kernel_create(net, NETLINK_NETFILTER, NFNLGRP_MAX,
192 nfnetlink_rcv, NULL, THIS_MODULE);
193 if (!nfnl)
194 return -ENOMEM;
195 net->nfnl_stash = nfnl;
196 rcu_assign_pointer(net->nfnl, nfnl);
197 return 0;
Harald Weltef9e815b2005-08-09 19:30:24 -0700198}
199
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100200static void __net_exit nfnetlink_net_exit_batch(struct list_head *net_exit_list)
201{
202 struct net *net;
203
204 list_for_each_entry(net, net_exit_list, exit_list)
205 rcu_assign_pointer(net->nfnl, NULL);
206 synchronize_net();
207 list_for_each_entry(net, net_exit_list, exit_list)
208 netlink_kernel_release(net->nfnl_stash);
209}
210
211static struct pernet_operations nfnetlink_net_ops = {
212 .init = nfnetlink_net_init,
213 .exit_batch = nfnetlink_net_exit_batch,
214};
215
Adrian Bunk395dde22005-09-05 18:06:45 -0700216static int __init nfnetlink_init(void)
Harald Weltef9e815b2005-08-09 19:30:24 -0700217{
218 printk("Netfilter messages via NETLINK v%s.\n", nfversion);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100219 return register_pernet_subsys(&nfnetlink_net_ops);
Harald Weltef9e815b2005-08-09 19:30:24 -0700220}
221
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100222static void __exit nfnetlink_exit(void)
223{
224 printk("Removing netfilter NETLINK layer.\n");
225 unregister_pernet_subsys(&nfnetlink_net_ops);
226}
Harald Weltef9e815b2005-08-09 19:30:24 -0700227module_init(nfnetlink_init);
228module_exit(nfnetlink_exit);