blob: f42bb1366007ea716780a72a2b851f20a87d75ee [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>
6 * (C) 2005 by Pablo Neira Ayuso <pablo@eurodev.net>
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
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>
22#include <linux/sched.h>
23#include <linux/timer.h>
24#include <linux/string.h>
25#include <linux/sockios.h>
26#include <linux/net.h>
27#include <linux/fcntl.h>
28#include <linux/skbuff.h>
29#include <asm/uaccess.h>
30#include <asm/system.h>
31#include <net/sock.h>
32#include <linux/init.h>
33#include <linux/spinlock.h>
34
35#include <linux/netfilter.h>
36#include <linux/netlink.h>
37#include <linux/netfilter/nfnetlink.h>
38
39MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -070040MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
41MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER);
Harald Weltef9e815b2005-08-09 19:30:24 -070042
43static char __initdata nfversion[] = "0.30";
44
45#if 0
Harald Welte0ab43f82005-08-09 19:43:44 -070046#define DEBUGP(format, args...) \
47 printk(KERN_DEBUG "%s(%d):%s(): " format, __FILE__, \
48 __LINE__, __FUNCTION__, ## args)
Harald Weltef9e815b2005-08-09 19:30:24 -070049#else
50#define DEBUGP(format, args...)
51#endif
52
53static struct sock *nfnl = NULL;
54static struct nfnetlink_subsystem *subsys_table[NFNL_SUBSYS_COUNT];
55DECLARE_MUTEX(nfnl_sem);
56
57void nfnl_lock(void)
58{
59 nfnl_shlock();
60}
61
62void nfnl_unlock(void)
63{
64 nfnl_shunlock();
65}
66
67int nfnetlink_subsys_register(struct nfnetlink_subsystem *n)
68{
69 DEBUGP("registering subsystem ID %u\n", n->subsys_id);
70
Harald Weltef9e815b2005-08-09 19:30:24 -070071 nfnl_lock();
Harald Welte0ab43f82005-08-09 19:43:44 -070072 if (subsys_table[n->subsys_id]) {
73 nfnl_unlock();
74 return -EBUSY;
75 }
Harald Weltef9e815b2005-08-09 19:30:24 -070076 subsys_table[n->subsys_id] = n;
77 nfnl_unlock();
78
79 return 0;
80}
81
82int nfnetlink_subsys_unregister(struct nfnetlink_subsystem *n)
83{
84 DEBUGP("unregistering subsystem ID %u\n", n->subsys_id);
85
86 nfnl_lock();
87 subsys_table[n->subsys_id] = NULL;
88 nfnl_unlock();
89
90 return 0;
91}
92
93static inline struct nfnetlink_subsystem *nfnetlink_get_subsys(u_int16_t type)
94{
95 u_int8_t subsys_id = NFNL_SUBSYS_ID(type);
96
97 if (subsys_id >= NFNL_SUBSYS_COUNT
98 || subsys_table[subsys_id] == NULL)
99 return NULL;
100
101 return subsys_table[subsys_id];
102}
103
104static inline struct nfnl_callback *
105nfnetlink_find_client(u_int16_t type, struct nfnetlink_subsystem *ss)
106{
107 u_int8_t cb_id = NFNL_MSG_TYPE(type);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800108
Harald Weltef9e815b2005-08-09 19:30:24 -0700109 if (cb_id >= ss->cb_count) {
110 DEBUGP("msgtype %u >= %u, returning\n", type, ss->cb_count);
111 return NULL;
112 }
113
114 return &ss->cb[cb_id];
115}
116
117void __nfa_fill(struct sk_buff *skb, int attrtype, int attrlen,
118 const void *data)
119{
120 struct nfattr *nfa;
121 int size = NFA_LENGTH(attrlen);
122
123 nfa = (struct nfattr *)skb_put(skb, NFA_ALIGN(size));
124 nfa->nfa_type = attrtype;
125 nfa->nfa_len = size;
126 memcpy(NFA_DATA(nfa), data, attrlen);
Harald Welte080774a2005-08-09 19:32:58 -0700127 memset(NFA_DATA(nfa) + attrlen, 0, NFA_ALIGN(size) - size);
Harald Weltef9e815b2005-08-09 19:30:24 -0700128}
129
Harald Weltea2506c02005-11-09 12:59:13 -0800130void nfattr_parse(struct nfattr *tb[], int maxattr, struct nfattr *nfa, int len)
Harald Weltef9e815b2005-08-09 19:30:24 -0700131{
132 memset(tb, 0, sizeof(struct nfattr *) * maxattr);
133
134 while (NFA_OK(nfa, len)) {
Harald Welteebe0bbf2005-10-10 20:52:19 -0700135 unsigned flavor = NFA_TYPE(nfa);
Harald Weltef9e815b2005-08-09 19:30:24 -0700136 if (flavor && flavor <= maxattr)
137 tb[flavor-1] = nfa;
138 nfa = NFA_NEXT(nfa, len);
139 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700140}
141
142/**
143 * nfnetlink_check_attributes - check and parse nfnetlink attributes
144 *
145 * subsys: nfnl subsystem for which this message is to be parsed
146 * nlmsghdr: netlink message to be checked/parsed
147 * cda: array of pointers, needs to be at least subsys->attr_count big
148 *
149 */
150static int
151nfnetlink_check_attributes(struct nfnetlink_subsystem *subsys,
152 struct nlmsghdr *nlh, struct nfattr *cda[])
153{
154 int min_len;
Harald Welte927ccbc2005-08-09 20:03:40 -0700155 u_int16_t attr_count;
156 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
Harald Weltef9e815b2005-08-09 19:30:24 -0700157
Harald Welte927ccbc2005-08-09 20:03:40 -0700158 if (unlikely(cb_id >= subsys->cb_count)) {
159 DEBUGP("msgtype %u >= %u, returning\n",
160 cb_id, subsys->cb_count);
161 return -EINVAL;
162 }
Harald Welte927ccbc2005-08-09 20:03:40 -0700163
Yasuyuki Kozakai3ebbe0c2005-12-05 13:33:26 -0800164 min_len = NLMSG_SPACE(sizeof(struct nfgenmsg));
Harald Weltea42827b2005-08-09 20:03:54 -0700165 if (unlikely(nlh->nlmsg_len < min_len))
166 return -EINVAL;
167
168 attr_count = subsys->cb[cb_id].attr_count;
Harald Welte927ccbc2005-08-09 20:03:40 -0700169 memset(cda, 0, sizeof(struct nfattr *) * attr_count);
Harald Weltef9e815b2005-08-09 19:30:24 -0700170
171 /* check attribute lengths. */
Harald Weltea42827b2005-08-09 20:03:54 -0700172 if (likely(nlh->nlmsg_len > min_len)) {
Harald Weltef9e815b2005-08-09 19:30:24 -0700173 struct nfattr *attr = NFM_NFA(NLMSG_DATA(nlh));
174 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
175
176 while (NFA_OK(attr, attrlen)) {
Harald Welteebe0bbf2005-10-10 20:52:19 -0700177 unsigned flavor = NFA_TYPE(attr);
Harald Weltef9e815b2005-08-09 19:30:24 -0700178 if (flavor) {
Harald Welte927ccbc2005-08-09 20:03:40 -0700179 if (flavor > attr_count)
Harald Weltef9e815b2005-08-09 19:30:24 -0700180 return -EINVAL;
181 cda[flavor - 1] = attr;
182 }
183 attr = NFA_NEXT(attr, attrlen);
184 }
Harald Weltea42827b2005-08-09 20:03:54 -0700185 }
186
187 /* implicit: if nlmsg_len == min_len, we return 0, and an empty
188 * (zeroed) cda[] array. The message is valid, but empty. */
Harald Weltef9e815b2005-08-09 19:30:24 -0700189
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800190 return 0;
Harald Weltef9e815b2005-08-09 19:30:24 -0700191}
192
Patrick McHardya2427692006-03-20 18:03:59 -0800193int nfnetlink_has_listeners(unsigned int group)
194{
195 return netlink_has_listeners(nfnl, group);
196}
197EXPORT_SYMBOL_GPL(nfnetlink_has_listeners);
198
Harald Weltef9e815b2005-08-09 19:30:24 -0700199int nfnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo)
200{
Al Virodd0fc662005-10-07 07:46:04 +0100201 gfp_t allocation = in_interrupt() ? GFP_ATOMIC : GFP_KERNEL;
Harald Weltef9e815b2005-08-09 19:30:24 -0700202 int err = 0;
203
Patrick McHardyac6d4392005-08-14 19:29:52 -0700204 NETLINK_CB(skb).dst_group = group;
Harald Weltef9e815b2005-08-09 19:30:24 -0700205 if (echo)
206 atomic_inc(&skb->users);
207 netlink_broadcast(nfnl, skb, pid, group, allocation);
208 if (echo)
209 err = netlink_unicast(nfnl, skb, pid, MSG_DONTWAIT);
210
211 return err;
212}
213
214int nfnetlink_unicast(struct sk_buff *skb, u_int32_t pid, int flags)
215{
216 return netlink_unicast(nfnl, skb, pid, flags);
217}
218
219/* Process one complete nfnetlink message. */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800220static int nfnetlink_rcv_msg(struct sk_buff *skb,
Harald Weltef9e815b2005-08-09 19:30:24 -0700221 struct nlmsghdr *nlh, int *errp)
222{
223 struct nfnl_callback *nc;
224 struct nfnetlink_subsystem *ss;
225 int type, err = 0;
226
227 DEBUGP("entered; subsys=%u, msgtype=%u\n",
228 NFNL_SUBSYS_ID(nlh->nlmsg_type),
229 NFNL_MSG_TYPE(nlh->nlmsg_type));
230
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700231 if (security_netlink_recv(skb, CAP_NET_ADMIN)) {
Harald Welte37d2e7a2005-11-14 15:24:59 -0800232 DEBUGP("missing CAP_NET_ADMIN\n");
233 *errp = -EPERM;
234 return -1;
235 }
236
Harald Weltef9e815b2005-08-09 19:30:24 -0700237 /* Only requests are handled by kernel now. */
238 if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) {
239 DEBUGP("received non-request message\n");
240 return 0;
241 }
242
243 /* All the messages must at least contain nfgenmsg */
Yasuyuki Kozakai3ebbe0c2005-12-05 13:33:26 -0800244 if (nlh->nlmsg_len < NLMSG_SPACE(sizeof(struct nfgenmsg))) {
Harald Weltef9e815b2005-08-09 19:30:24 -0700245 DEBUGP("received message was too short\n");
246 return 0;
247 }
248
249 type = nlh->nlmsg_type;
250 ss = nfnetlink_get_subsys(type);
Harald Welte0ab43f82005-08-09 19:43:44 -0700251 if (!ss) {
252#ifdef CONFIG_KMOD
Harald Welte37d2e7a2005-11-14 15:24:59 -0800253 /* don't call nfnl_shunlock, since it would reenter
254 * with further packet processing */
255 up(&nfnl_sem);
256 request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type));
257 nfnl_shlock();
258 ss = nfnetlink_get_subsys(type);
Harald Welte0ab43f82005-08-09 19:43:44 -0700259 if (!ss)
260#endif
Harald Welteed77de92005-11-09 13:02:16 -0800261 goto err_inval;
Harald Welte0ab43f82005-08-09 19:43:44 -0700262 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700263
264 nc = nfnetlink_find_client(type, ss);
265 if (!nc) {
266 DEBUGP("unable to find client for type %d\n", type);
267 goto err_inval;
268 }
269
Harald Weltef9e815b2005-08-09 19:30:24 -0700270 {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800271 u_int16_t attr_count =
Harald Welte927ccbc2005-08-09 20:03:40 -0700272 ss->cb[NFNL_MSG_TYPE(nlh->nlmsg_type)].attr_count;
273 struct nfattr *cda[attr_count];
Harald Weltef9e815b2005-08-09 19:30:24 -0700274
Harald Welte927ccbc2005-08-09 20:03:40 -0700275 memset(cda, 0, sizeof(struct nfattr *) * attr_count);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800276
Harald Weltef9e815b2005-08-09 19:30:24 -0700277 err = nfnetlink_check_attributes(ss, nlh, cda);
278 if (err < 0)
279 goto err_inval;
280
Harald Welte0ab43f82005-08-09 19:43:44 -0700281 DEBUGP("calling handler\n");
Harald Weltef9e815b2005-08-09 19:30:24 -0700282 err = nc->call(nfnl, skb, nlh, cda, errp);
283 *errp = err;
284 return err;
285 }
286
287err_inval:
Harald Welte0ab43f82005-08-09 19:43:44 -0700288 DEBUGP("returning -EINVAL\n");
Harald Weltef9e815b2005-08-09 19:30:24 -0700289 *errp = -EINVAL;
290 return -1;
291}
292
293/* Process one packet of messages. */
294static inline int nfnetlink_rcv_skb(struct sk_buff *skb)
295{
296 int err;
297 struct nlmsghdr *nlh;
298
299 while (skb->len >= NLMSG_SPACE(0)) {
300 u32 rlen;
301
302 nlh = (struct nlmsghdr *)skb->data;
303 if (nlh->nlmsg_len < sizeof(struct nlmsghdr)
304 || skb->len < nlh->nlmsg_len)
305 return 0;
306 rlen = NLMSG_ALIGN(nlh->nlmsg_len);
307 if (rlen > skb->len)
308 rlen = skb->len;
309 if (nfnetlink_rcv_msg(skb, nlh, &err)) {
310 if (!err)
311 return -1;
312 netlink_ack(skb, nlh, err);
313 } else
314 if (nlh->nlmsg_flags & NLM_F_ACK)
315 netlink_ack(skb, nlh, 0);
316 skb_pull(skb, rlen);
317 }
318
319 return 0;
320}
321
322static void nfnetlink_rcv(struct sock *sk, int len)
323{
324 do {
325 struct sk_buff *skb;
326
327 if (nfnl_shlock_nowait())
328 return;
329
330 while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) {
331 if (nfnetlink_rcv_skb(skb)) {
332 if (skb->len)
333 skb_queue_head(&sk->sk_receive_queue,
334 skb);
335 else
336 kfree_skb(skb);
337 break;
338 }
339 kfree_skb(skb);
340 }
341
Harald Welte0ab43f82005-08-09 19:43:44 -0700342 /* don't call nfnl_shunlock, since it would reenter
343 * with further packet processing */
Harald Weltef9e815b2005-08-09 19:30:24 -0700344 up(&nfnl_sem);
345 } while(nfnl && nfnl->sk_receive_queue.qlen);
346}
347
Adrian Bunk395dde22005-09-05 18:06:45 -0700348static void __exit nfnetlink_exit(void)
Harald Weltef9e815b2005-08-09 19:30:24 -0700349{
350 printk("Removing netfilter NETLINK layer.\n");
351 sock_release(nfnl->sk_socket);
352 return;
353}
354
Adrian Bunk395dde22005-09-05 18:06:45 -0700355static int __init nfnetlink_init(void)
Harald Weltef9e815b2005-08-09 19:30:24 -0700356{
357 printk("Netfilter messages via NETLINK v%s.\n", nfversion);
358
Patrick McHardy06628602005-08-15 12:33:26 -0700359 nfnl = netlink_kernel_create(NETLINK_NETFILTER, NFNLGRP_MAX,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800360 nfnetlink_rcv, THIS_MODULE);
Harald Weltef9e815b2005-08-09 19:30:24 -0700361 if (!nfnl) {
362 printk(KERN_ERR "cannot initialize nfnetlink!\n");
363 return -1;
364 }
365
366 return 0;
367}
368
369module_init(nfnetlink_init);
370module_exit(nfnetlink_exit);
371
372EXPORT_SYMBOL_GPL(nfnetlink_subsys_register);
373EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister);
374EXPORT_SYMBOL_GPL(nfnetlink_send);
375EXPORT_SYMBOL_GPL(nfnetlink_unicast);
376EXPORT_SYMBOL_GPL(nfattr_parse);
377EXPORT_SYMBOL_GPL(__nfa_fill);