blob: b4a4532823e84ed8fb93fd0e9deceb8cdc07ec96 [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>
Harald Weltef9e815b2005-08-09 19:30:24 -070021#include <linux/string.h>
22#include <linux/sockios.h>
23#include <linux/net.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070024#include <linux/skbuff.h>
25#include <asm/uaccess.h>
26#include <asm/system.h>
27#include <net/sock.h>
Patrick McHardya3c50292007-03-14 16:39:25 -070028#include <net/netlink.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070029#include <linux/init.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070030
Harald Weltef9e815b2005-08-09 19:30:24 -070031#include <linux/netlink.h>
32#include <linux/netfilter/nfnetlink.h>
33
34MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -070035MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
36MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER);
Harald Weltef9e815b2005-08-09 19:30:24 -070037
38static char __initdata nfversion[] = "0.30";
39
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070040static const struct nfnetlink_subsystem *subsys_table[NFNL_SUBSYS_COUNT];
Patrick McHardya3c50292007-03-14 16:39:25 -070041static DEFINE_MUTEX(nfnl_mutex);
Harald Weltef9e815b2005-08-09 19:30:24 -070042
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070043void nfnl_lock(void)
Harald Weltef9e815b2005-08-09 19:30:24 -070044{
Patrick McHardya3c50292007-03-14 16:39:25 -070045 mutex_lock(&nfnl_mutex);
Harald Weltef9e815b2005-08-09 19:30:24 -070046}
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070047EXPORT_SYMBOL_GPL(nfnl_lock);
Harald Weltef9e815b2005-08-09 19:30:24 -070048
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070049void nfnl_unlock(void)
Patrick McHardya3c50292007-03-14 16:39:25 -070050{
51 mutex_unlock(&nfnl_mutex);
52}
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070053EXPORT_SYMBOL_GPL(nfnl_unlock);
Patrick McHardya3c50292007-03-14 16:39:25 -070054
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070055int nfnetlink_subsys_register(const struct nfnetlink_subsystem *n)
Harald Weltef9e815b2005-08-09 19:30:24 -070056{
Harald Weltef9e815b2005-08-09 19:30:24 -070057 nfnl_lock();
Harald Welte0ab43f82005-08-09 19:43:44 -070058 if (subsys_table[n->subsys_id]) {
59 nfnl_unlock();
60 return -EBUSY;
61 }
Harald Weltef9e815b2005-08-09 19:30:24 -070062 subsys_table[n->subsys_id] = n;
63 nfnl_unlock();
64
65 return 0;
66}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -070067EXPORT_SYMBOL_GPL(nfnetlink_subsys_register);
Harald Weltef9e815b2005-08-09 19:30:24 -070068
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070069int nfnetlink_subsys_unregister(const struct nfnetlink_subsystem *n)
Harald Weltef9e815b2005-08-09 19:30:24 -070070{
Harald Weltef9e815b2005-08-09 19:30:24 -070071 nfnl_lock();
72 subsys_table[n->subsys_id] = NULL;
73 nfnl_unlock();
74
75 return 0;
76}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -070077EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister);
Harald Weltef9e815b2005-08-09 19:30:24 -070078
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070079static inline const struct nfnetlink_subsystem *nfnetlink_get_subsys(u_int16_t type)
Harald Weltef9e815b2005-08-09 19:30:24 -070080{
81 u_int8_t subsys_id = NFNL_SUBSYS_ID(type);
82
Pablo Neira Ayusoac0f1d92007-03-14 16:41:28 -070083 if (subsys_id >= NFNL_SUBSYS_COUNT)
Harald Weltef9e815b2005-08-09 19:30:24 -070084 return NULL;
85
86 return subsys_table[subsys_id];
87}
88
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070089static inline const struct nfnl_callback *
90nfnetlink_find_client(u_int16_t type, const struct nfnetlink_subsystem *ss)
Harald Weltef9e815b2005-08-09 19:30:24 -070091{
92 u_int8_t cb_id = NFNL_MSG_TYPE(type);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080093
Pablo Neira Ayuso67ca3962007-03-14 16:40:38 -070094 if (cb_id >= ss->cb_count)
Harald Weltef9e815b2005-08-09 19:30:24 -070095 return NULL;
Harald Weltef9e815b2005-08-09 19:30:24 -070096
97 return &ss->cb[cb_id];
98}
99
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100100int nfnetlink_has_listeners(struct net *net, unsigned int group)
Patrick McHardya2427692006-03-20 18:03:59 -0800101{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100102 return netlink_has_listeners(net->nfnl, group);
Patrick McHardya2427692006-03-20 18:03:59 -0800103}
104EXPORT_SYMBOL_GPL(nfnetlink_has_listeners);
105
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100106int nfnetlink_send(struct sk_buff *skb, struct net *net, u32 pid,
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200107 unsigned group, int echo, gfp_t flags)
Harald Weltef9e815b2005-08-09 19:30:24 -0700108{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100109 return nlmsg_notify(net->nfnl, skb, pid, group, echo, flags);
Harald Weltef9e815b2005-08-09 19:30:24 -0700110}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -0700111EXPORT_SYMBOL_GPL(nfnetlink_send);
Harald Weltef9e815b2005-08-09 19:30:24 -0700112
Pablo Neira Ayuso37b7ef72010-03-16 13:30:21 +0000113int nfnetlink_set_err(struct net *net, u32 pid, u32 group, int error)
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +0100114{
Pablo Neira Ayuso37b7ef72010-03-16 13:30:21 +0000115 return netlink_set_err(net->nfnl, pid, group, error);
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +0100116}
117EXPORT_SYMBOL_GPL(nfnetlink_set_err);
118
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100119int nfnetlink_unicast(struct sk_buff *skb, struct net *net, u_int32_t pid, int flags)
Harald Weltef9e815b2005-08-09 19:30:24 -0700120{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100121 return netlink_unicast(net->nfnl, skb, pid, flags);
Harald Weltef9e815b2005-08-09 19:30:24 -0700122}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -0700123EXPORT_SYMBOL_GPL(nfnetlink_unicast);
Harald Weltef9e815b2005-08-09 19:30:24 -0700124
125/* Process one complete nfnetlink message. */
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700126static int nfnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Harald Weltef9e815b2005-08-09 19:30:24 -0700127{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100128 struct net *net = sock_net(skb->sk);
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700129 const struct nfnl_callback *nc;
130 const struct nfnetlink_subsystem *ss;
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700131 int type, err;
Harald Weltef9e815b2005-08-09 19:30:24 -0700132
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700133 if (security_netlink_recv(skb, CAP_NET_ADMIN))
134 return -EPERM;
Harald Welte37d2e7a2005-11-14 15:24:59 -0800135
Harald Weltef9e815b2005-08-09 19:30:24 -0700136 /* All the messages must at least contain nfgenmsg */
Pablo Neira Ayusof49c8572009-06-02 20:03:33 +0200137 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct nfgenmsg)))
Harald Weltef9e815b2005-08-09 19:30:24 -0700138 return 0;
Harald Weltef9e815b2005-08-09 19:30:24 -0700139
140 type = nlh->nlmsg_type;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -0700141replay:
Harald Weltef9e815b2005-08-09 19:30:24 -0700142 ss = nfnetlink_get_subsys(type);
Harald Welte0ab43f82005-08-09 19:43:44 -0700143 if (!ss) {
Johannes Berg95a5afc2008-10-16 15:24:51 -0700144#ifdef CONFIG_MODULES
Denis V. Lunev3b715352007-10-10 21:13:32 -0700145 nfnl_unlock();
Harald Welte37d2e7a2005-11-14 15:24:59 -0800146 request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type));
Patrick McHardya3c50292007-03-14 16:39:25 -0700147 nfnl_lock();
Harald Welte37d2e7a2005-11-14 15:24:59 -0800148 ss = nfnetlink_get_subsys(type);
Harald Welte0ab43f82005-08-09 19:43:44 -0700149 if (!ss)
150#endif
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700151 return -EINVAL;
Harald Welte0ab43f82005-08-09 19:43:44 -0700152 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700153
154 nc = nfnetlink_find_client(type, ss);
Pablo Neira Ayuso67ca3962007-03-14 16:40:38 -0700155 if (!nc)
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700156 return -EINVAL;
Harald Weltef9e815b2005-08-09 19:30:24 -0700157
Harald Weltef9e815b2005-08-09 19:30:24 -0700158 {
Patrick McHardye3730572007-09-28 14:38:52 -0700159 int min_len = NLMSG_SPACE(sizeof(struct nfgenmsg));
160 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
Pablo Neira Ayusof49c8572009-06-02 20:03:33 +0200161 struct nlattr *cda[ss->cb[cb_id].attr_count + 1];
162 struct nlattr *attr = (void *)nlh + min_len;
163 int attrlen = nlh->nlmsg_len - min_len;
Harald Weltef9e815b2005-08-09 19:30:24 -0700164
Pablo Neira Ayusof49c8572009-06-02 20:03:33 +0200165 err = nla_parse(cda, ss->cb[cb_id].attr_count,
166 attr, attrlen, ss->cb[cb_id].policy);
167 if (err < 0)
168 return err;
Patrick McHardye3730572007-09-28 14:38:52 -0700169
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100170 err = nc->call(net->nfnl, skb, nlh, (const struct nlattr **)cda);
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -0700171 if (err == -EAGAIN)
172 goto replay;
173 return err;
Harald Weltef9e815b2005-08-09 19:30:24 -0700174 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700175}
176
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700177static void nfnetlink_rcv(struct sk_buff *skb)
Harald Weltef9e815b2005-08-09 19:30:24 -0700178{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700179 nfnl_lock();
180 netlink_rcv_skb(skb, &nfnetlink_rcv_msg);
181 nfnl_unlock();
Harald Weltef9e815b2005-08-09 19:30:24 -0700182}
183
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100184static int __net_init nfnetlink_net_init(struct net *net)
Harald Weltef9e815b2005-08-09 19:30:24 -0700185{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100186 struct sock *nfnl;
187
188 nfnl = netlink_kernel_create(net, NETLINK_NETFILTER, NFNLGRP_MAX,
189 nfnetlink_rcv, NULL, THIS_MODULE);
190 if (!nfnl)
191 return -ENOMEM;
192 net->nfnl_stash = nfnl;
193 rcu_assign_pointer(net->nfnl, nfnl);
194 return 0;
Harald Weltef9e815b2005-08-09 19:30:24 -0700195}
196
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100197static void __net_exit nfnetlink_net_exit_batch(struct list_head *net_exit_list)
198{
199 struct net *net;
200
201 list_for_each_entry(net, net_exit_list, exit_list)
202 rcu_assign_pointer(net->nfnl, NULL);
203 synchronize_net();
204 list_for_each_entry(net, net_exit_list, exit_list)
205 netlink_kernel_release(net->nfnl_stash);
206}
207
208static struct pernet_operations nfnetlink_net_ops = {
209 .init = nfnetlink_net_init,
210 .exit_batch = nfnetlink_net_exit_batch,
211};
212
Adrian Bunk395dde22005-09-05 18:06:45 -0700213static int __init nfnetlink_init(void)
Harald Weltef9e815b2005-08-09 19:30:24 -0700214{
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200215 pr_info("Netfilter messages via NETLINK v%s.\n", nfversion);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100216 return register_pernet_subsys(&nfnetlink_net_ops);
Harald Weltef9e815b2005-08-09 19:30:24 -0700217}
218
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100219static void __exit nfnetlink_exit(void)
220{
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200221 pr_info("Removing netfilter NETLINK layer.\n");
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100222 unregister_pernet_subsys(&nfnetlink_net_ops);
223}
Harald Weltef9e815b2005-08-09 19:30:24 -0700224module_init(nfnetlink_init);
225module_exit(nfnetlink_exit);