]> git.ipfire.org Git - thirdparty/linux.git/blame - net/netfilter/nfnetlink.c
netlink: add netlink_kernel_cfg parameter to netlink_kernel_create
[thirdparty/linux.git] / net / netfilter / nfnetlink.c
CommitLineData
f9e815b3
HW
1/* 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>
67ca3966 6 * (C) 2005,2007 by Pablo Neira Ayuso <pablo@netfilter.org>
f9e815b3
HW
7 *
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
f9e815b3
HW
17#include <linux/module.h>
18#include <linux/types.h>
19#include <linux/socket.h>
20#include <linux/kernel.h>
f9e815b3
HW
21#include <linux/string.h>
22#include <linux/sockios.h>
23#include <linux/net.h>
f9e815b3
HW
24#include <linux/skbuff.h>
25#include <asm/uaccess.h>
f9e815b3 26#include <net/sock.h>
a3c5029c 27#include <net/netlink.h>
f9e815b3 28#include <linux/init.h>
f9e815b3 29
f9e815b3
HW
30#include <linux/netlink.h>
31#include <linux/netfilter/nfnetlink.h>
32
33MODULE_LICENSE("GPL");
4fdb3bb7
HW
34MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
35MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER);
f9e815b3
HW
36
37static char __initdata nfversion[] = "0.30";
38
6b75e3e8 39static const struct nfnetlink_subsystem __rcu *subsys_table[NFNL_SUBSYS_COUNT];
a3c5029c 40static DEFINE_MUTEX(nfnl_mutex);
f9e815b3 41
e6a7d3c0 42void nfnl_lock(void)
f9e815b3 43{
a3c5029c 44 mutex_lock(&nfnl_mutex);
f9e815b3 45}
e6a7d3c0 46EXPORT_SYMBOL_GPL(nfnl_lock);
f9e815b3 47
e6a7d3c0 48void nfnl_unlock(void)
a3c5029c
PM
49{
50 mutex_unlock(&nfnl_mutex);
f9e815b3 51}
e6a7d3c0 52EXPORT_SYMBOL_GPL(nfnl_unlock);
f9e815b3 53
7c8d4cb4 54int nfnetlink_subsys_register(const struct nfnetlink_subsystem *n)
f9e815b3 55{
f9e815b3 56 nfnl_lock();
0ab43f84
HW
57 if (subsys_table[n->subsys_id]) {
58 nfnl_unlock();
59 return -EBUSY;
60 }
cf778b00 61 rcu_assign_pointer(subsys_table[n->subsys_id], n);
f9e815b3
HW
62 nfnl_unlock();
63
64 return 0;
65}
f4bc177f 66EXPORT_SYMBOL_GPL(nfnetlink_subsys_register);
f9e815b3 67
7c8d4cb4 68int nfnetlink_subsys_unregister(const struct nfnetlink_subsystem *n)
f9e815b3 69{
f9e815b3
HW
70 nfnl_lock();
71 subsys_table[n->subsys_id] = NULL;
72 nfnl_unlock();
6b75e3e8 73 synchronize_rcu();
f9e815b3
HW
74 return 0;
75}
f4bc177f 76EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister);
f9e815b3 77
7c8d4cb4 78static inline const struct nfnetlink_subsystem *nfnetlink_get_subsys(u_int16_t type)
f9e815b3
HW
79{
80 u_int8_t subsys_id = NFNL_SUBSYS_ID(type);
81
ac0f1d98 82 if (subsys_id >= NFNL_SUBSYS_COUNT)
f9e815b3
HW
83 return NULL;
84
6b75e3e8 85 return rcu_dereference(subsys_table[subsys_id]);
f9e815b3
HW
86}
87
7c8d4cb4
PM
88static inline const struct nfnl_callback *
89nfnetlink_find_client(u_int16_t type, const struct nfnetlink_subsystem *ss)
f9e815b3
HW
90{
91 u_int8_t cb_id = NFNL_MSG_TYPE(type);
601e68e1 92
67ca3966 93 if (cb_id >= ss->cb_count)
f9e815b3 94 return NULL;
f9e815b3
HW
95
96 return &ss->cb[cb_id];
97}
98
cd8c20b6 99int nfnetlink_has_listeners(struct net *net, unsigned int group)
a2427692 100{
cd8c20b6 101 return netlink_has_listeners(net->nfnl, group);
a2427692
PM
102}
103EXPORT_SYMBOL_GPL(nfnetlink_has_listeners);
104
cd8c20b6 105int nfnetlink_send(struct sk_buff *skb, struct net *net, u32 pid,
95c96174 106 unsigned int group, int echo, gfp_t flags)
f9e815b3 107{
cd8c20b6 108 return nlmsg_notify(net->nfnl, skb, pid, group, echo, flags);
f9e815b3 109}
f4bc177f 110EXPORT_SYMBOL_GPL(nfnetlink_send);
f9e815b3 111
37b7ef72 112int nfnetlink_set_err(struct net *net, u32 pid, u32 group, int error)
dd5b6ce6 113{
37b7ef72 114 return netlink_set_err(net->nfnl, pid, group, error);
dd5b6ce6
PNA
115}
116EXPORT_SYMBOL_GPL(nfnetlink_set_err);
117
cd8c20b6 118int nfnetlink_unicast(struct sk_buff *skb, struct net *net, u_int32_t pid, int flags)
f9e815b3 119{
cd8c20b6 120 return netlink_unicast(net->nfnl, skb, pid, flags);
f9e815b3 121}
f4bc177f 122EXPORT_SYMBOL_GPL(nfnetlink_unicast);
f9e815b3
HW
123
124/* Process one complete nfnetlink message. */
1d00a4eb 125static int nfnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
f9e815b3 126{
cd8c20b6 127 struct net *net = sock_net(skb->sk);
7c8d4cb4
PM
128 const struct nfnl_callback *nc;
129 const struct nfnetlink_subsystem *ss;
1d00a4eb 130 int type, err;
f9e815b3 131
fd778461 132 if (!capable(CAP_NET_ADMIN))
1d00a4eb 133 return -EPERM;
37d2e7a2 134
f9e815b3 135 /* All the messages must at least contain nfgenmsg */
f49c857f 136 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct nfgenmsg)))
f9e815b3 137 return 0;
f9e815b3
HW
138
139 type = nlh->nlmsg_type;
e6a7d3c0 140replay:
6b75e3e8 141 rcu_read_lock();
f9e815b3 142 ss = nfnetlink_get_subsys(type);
0ab43f84 143 if (!ss) {
95a5afca 144#ifdef CONFIG_MODULES
6b75e3e8 145 rcu_read_unlock();
37d2e7a2 146 request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type));
6b75e3e8 147 rcu_read_lock();
37d2e7a2 148 ss = nfnetlink_get_subsys(type);
0ab43f84
HW
149 if (!ss)
150#endif
6b75e3e8
ED
151 {
152 rcu_read_unlock();
1d00a4eb 153 return -EINVAL;
6b75e3e8 154 }
0ab43f84 155 }
f9e815b3
HW
156
157 nc = nfnetlink_find_client(type, ss);
6b75e3e8
ED
158 if (!nc) {
159 rcu_read_unlock();
1d00a4eb 160 return -EINVAL;
6b75e3e8 161 }
f9e815b3 162
f9e815b3 163 {
e3730578
PM
164 int min_len = NLMSG_SPACE(sizeof(struct nfgenmsg));
165 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
f49c857f
PNA
166 struct nlattr *cda[ss->cb[cb_id].attr_count + 1];
167 struct nlattr *attr = (void *)nlh + min_len;
168 int attrlen = nlh->nlmsg_len - min_len;
169
170 err = nla_parse(cda, ss->cb[cb_id].attr_count,
171 attr, attrlen, ss->cb[cb_id].policy);
172 if (err < 0)
173 return err;
601e68e1 174
6b75e3e8
ED
175 if (nc->call_rcu) {
176 err = nc->call_rcu(net->nfnl, skb, nlh,
177 (const struct nlattr **)cda);
178 rcu_read_unlock();
179 } else {
180 rcu_read_unlock();
181 nfnl_lock();
182 if (rcu_dereference_protected(
183 subsys_table[NFNL_SUBSYS_ID(type)],
184 lockdep_is_held(&nfnl_mutex)) != ss ||
185 nfnetlink_find_client(type, ss) != nc)
186 err = -EAGAIN;
187 else
188 err = nc->call(net->nfnl, skb, nlh,
189 (const struct nlattr **)cda);
190 nfnl_unlock();
191 }
e6a7d3c0
PNA
192 if (err == -EAGAIN)
193 goto replay;
194 return err;
f9e815b3 195 }
f9e815b3
HW
196}
197
cd40b7d3 198static void nfnetlink_rcv(struct sk_buff *skb)
f9e815b3 199{
cd40b7d3 200 netlink_rcv_skb(skb, &nfnetlink_rcv_msg);
f9e815b3
HW
201}
202
cd8c20b6 203static int __net_init nfnetlink_net_init(struct net *net)
f9e815b3 204{
cd8c20b6 205 struct sock *nfnl;
a31f2d17
PNA
206 struct netlink_kernel_cfg cfg = {
207 .groups = NFNLGRP_MAX,
208 .input = nfnetlink_rcv,
209 };
cd8c20b6 210
a31f2d17 211 nfnl = netlink_kernel_create(net, NETLINK_NETFILTER, THIS_MODULE, &cfg);
cd8c20b6
AD
212 if (!nfnl)
213 return -ENOMEM;
214 net->nfnl_stash = nfnl;
cf778b00 215 rcu_assign_pointer(net->nfnl, nfnl);
cd8c20b6 216 return 0;
f9e815b3
HW
217}
218
cd8c20b6 219static void __net_exit nfnetlink_net_exit_batch(struct list_head *net_exit_list)
f9e815b3 220{
cd8c20b6 221 struct net *net;
f9e815b3 222
cd8c20b6 223 list_for_each_entry(net, net_exit_list, exit_list)
a9b3cd7f 224 RCU_INIT_POINTER(net->nfnl, NULL);
cd8c20b6
AD
225 synchronize_net();
226 list_for_each_entry(net, net_exit_list, exit_list)
227 netlink_kernel_release(net->nfnl_stash);
228}
f9e815b3 229
cd8c20b6
AD
230static struct pernet_operations nfnetlink_net_ops = {
231 .init = nfnetlink_net_init,
232 .exit_batch = nfnetlink_net_exit_batch,
233};
234
235static int __init nfnetlink_init(void)
236{
654d0fbd 237 pr_info("Netfilter messages via NETLINK v%s.\n", nfversion);
cd8c20b6 238 return register_pernet_subsys(&nfnetlink_net_ops);
f9e815b3
HW
239}
240
cd8c20b6
AD
241static void __exit nfnetlink_exit(void)
242{
654d0fbd 243 pr_info("Removing netfilter NETLINK layer.\n");
cd8c20b6
AD
244 unregister_pernet_subsys(&nfnetlink_net_ops);
245}
f9e815b3
HW
246module_init(nfnetlink_init);
247module_exit(nfnetlink_exit);