[NETFILTER]: attribute count is an attribute of message type, not subsytem
[linux-2.6.git] / net / netfilter / nfnetlink.c
blob578e4fe40945aa600e6f5bfb381cc4830c186181
1 /* Netfilter messages via netlink socket. Allows for user space
2 * protocol helpers and general trouble making from userspace.
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>
8 * Initial netfilter messages via netlink development funded and
9 * generally made possible by Network Robots, Inc. (www.networkrobots.com)
11 * Further development of this code funded by Astaro AG (http://www.astaro.com)
13 * This software may be used and distributed according to the terms
14 * of the GNU General Public License, incorporated herein by reference.
17 #include <linux/config.h>
18 #include <linux/module.h>
19 #include <linux/types.h>
20 #include <linux/socket.h>
21 #include <linux/kernel.h>
22 #include <linux/major.h>
23 #include <linux/sched.h>
24 #include <linux/timer.h>
25 #include <linux/string.h>
26 #include <linux/sockios.h>
27 #include <linux/net.h>
28 #include <linux/fcntl.h>
29 #include <linux/skbuff.h>
30 #include <asm/uaccess.h>
31 #include <asm/system.h>
32 #include <net/sock.h>
33 #include <linux/init.h>
34 #include <linux/spinlock.h>
36 #include <linux/netfilter.h>
37 #include <linux/netlink.h>
38 #include <linux/netfilter/nfnetlink.h>
40 MODULE_LICENSE("GPL");
41 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
42 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER);
44 static char __initdata nfversion[] = "0.30";
46 #if 0
47 #define DEBUGP(format, args...) \
48 printk(KERN_DEBUG "%s(%d):%s(): " format, __FILE__, \
49 __LINE__, __FUNCTION__, ## args)
50 #else
51 #define DEBUGP(format, args...)
52 #endif
54 static struct sock *nfnl = NULL;
55 static struct nfnetlink_subsystem *subsys_table[NFNL_SUBSYS_COUNT];
56 DECLARE_MUTEX(nfnl_sem);
58 void nfnl_lock(void)
60 nfnl_shlock();
63 void nfnl_unlock(void)
65 nfnl_shunlock();
68 int nfnetlink_subsys_register(struct nfnetlink_subsystem *n)
70 DEBUGP("registering subsystem ID %u\n", n->subsys_id);
72 nfnl_lock();
73 if (subsys_table[n->subsys_id]) {
74 nfnl_unlock();
75 return -EBUSY;
77 subsys_table[n->subsys_id] = n;
78 nfnl_unlock();
80 return 0;
83 int nfnetlink_subsys_unregister(struct nfnetlink_subsystem *n)
85 DEBUGP("unregistering subsystem ID %u\n", n->subsys_id);
87 nfnl_lock();
88 subsys_table[n->subsys_id] = NULL;
89 nfnl_unlock();
91 return 0;
94 static inline struct nfnetlink_subsystem *nfnetlink_get_subsys(u_int16_t type)
96 u_int8_t subsys_id = NFNL_SUBSYS_ID(type);
98 if (subsys_id >= NFNL_SUBSYS_COUNT
99 || subsys_table[subsys_id] == NULL)
100 return NULL;
102 return subsys_table[subsys_id];
105 static inline struct nfnl_callback *
106 nfnetlink_find_client(u_int16_t type, struct nfnetlink_subsystem *ss)
108 u_int8_t cb_id = NFNL_MSG_TYPE(type);
110 if (cb_id >= ss->cb_count) {
111 DEBUGP("msgtype %u >= %u, returning\n", type, ss->cb_count);
112 return NULL;
115 return &ss->cb[cb_id];
118 void __nfa_fill(struct sk_buff *skb, int attrtype, int attrlen,
119 const void *data)
121 struct nfattr *nfa;
122 int size = NFA_LENGTH(attrlen);
124 nfa = (struct nfattr *)skb_put(skb, NFA_ALIGN(size));
125 nfa->nfa_type = attrtype;
126 nfa->nfa_len = size;
127 memcpy(NFA_DATA(nfa), data, attrlen);
128 memset(NFA_DATA(nfa) + attrlen, 0, NFA_ALIGN(size) - size);
131 int nfattr_parse(struct nfattr *tb[], int maxattr, struct nfattr *nfa, int len)
133 memset(tb, 0, sizeof(struct nfattr *) * maxattr);
135 while (NFA_OK(nfa, len)) {
136 unsigned flavor = nfa->nfa_type;
137 if (flavor && flavor <= maxattr)
138 tb[flavor-1] = nfa;
139 nfa = NFA_NEXT(nfa, len);
142 return 0;
146 * nfnetlink_check_attributes - check and parse nfnetlink attributes
148 * subsys: nfnl subsystem for which this message is to be parsed
149 * nlmsghdr: netlink message to be checked/parsed
150 * cda: array of pointers, needs to be at least subsys->attr_count big
153 static int
154 nfnetlink_check_attributes(struct nfnetlink_subsystem *subsys,
155 struct nlmsghdr *nlh, struct nfattr *cda[])
157 int min_len;
158 u_int16_t attr_count;
159 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
161 if (unlikely(cb_id >= subsys->cb_count)) {
162 DEBUGP("msgtype %u >= %u, returning\n",
163 cb_id, subsys->cb_count);
164 return -EINVAL;
167 attr_count = subsys->cb[cb_id].attr_count;
169 memset(cda, 0, sizeof(struct nfattr *) * attr_count);
171 /* check attribute lengths. */
172 min_len = NLMSG_ALIGN(sizeof(struct nfgenmsg));
173 if (nlh->nlmsg_len < min_len)
174 return -EINVAL;
176 if (nlh->nlmsg_len > min_len) {
177 struct nfattr *attr = NFM_NFA(NLMSG_DATA(nlh));
178 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
180 while (NFA_OK(attr, attrlen)) {
181 unsigned flavor = attr->nfa_type;
182 if (flavor) {
183 if (flavor > attr_count)
184 return -EINVAL;
185 cda[flavor - 1] = attr;
187 attr = NFA_NEXT(attr, attrlen);
189 } else
190 return -EINVAL;
192 return 0;
195 int nfnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo)
197 int allocation = in_interrupt() ? GFP_ATOMIC : GFP_KERNEL;
198 int err = 0;
200 NETLINK_CB(skb).dst_groups = group;
201 if (echo)
202 atomic_inc(&skb->users);
203 netlink_broadcast(nfnl, skb, pid, group, allocation);
204 if (echo)
205 err = netlink_unicast(nfnl, skb, pid, MSG_DONTWAIT);
207 return err;
210 int nfnetlink_unicast(struct sk_buff *skb, u_int32_t pid, int flags)
212 return netlink_unicast(nfnl, skb, pid, flags);
215 /* Process one complete nfnetlink message. */
216 static inline int nfnetlink_rcv_msg(struct sk_buff *skb,
217 struct nlmsghdr *nlh, int *errp)
219 struct nfnl_callback *nc;
220 struct nfnetlink_subsystem *ss;
221 int type, err = 0;
223 DEBUGP("entered; subsys=%u, msgtype=%u\n",
224 NFNL_SUBSYS_ID(nlh->nlmsg_type),
225 NFNL_MSG_TYPE(nlh->nlmsg_type));
227 /* Only requests are handled by kernel now. */
228 if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) {
229 DEBUGP("received non-request message\n");
230 return 0;
233 /* All the messages must at least contain nfgenmsg */
234 if (nlh->nlmsg_len <
235 NLMSG_LENGTH(NLMSG_ALIGN(sizeof(struct nfgenmsg)))) {
236 DEBUGP("received message was too short\n");
237 return 0;
240 type = nlh->nlmsg_type;
241 ss = nfnetlink_get_subsys(type);
242 if (!ss) {
243 #ifdef CONFIG_KMOD
244 /* don't call nfnl_shunlock, since it would reenter
245 * with further packet processing */
246 up(&nfnl_sem);
247 request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type));
248 nfnl_shlock();
249 ss = nfnetlink_get_subsys(type);
250 if (!ss)
251 #endif
252 goto err_inval;
255 nc = nfnetlink_find_client(type, ss);
256 if (!nc) {
257 DEBUGP("unable to find client for type %d\n", type);
258 goto err_inval;
261 if (nc->cap_required &&
262 !cap_raised(NETLINK_CB(skb).eff_cap, nc->cap_required)) {
263 DEBUGP("permission denied for type %d\n", type);
264 *errp = -EPERM;
265 return -1;
269 u_int16_t attr_count =
270 ss->cb[NFNL_MSG_TYPE(nlh->nlmsg_type)].attr_count;
271 struct nfattr *cda[attr_count];
273 memset(cda, 0, sizeof(struct nfattr *) * attr_count);
275 err = nfnetlink_check_attributes(ss, nlh, cda);
276 if (err < 0)
277 goto err_inval;
279 DEBUGP("calling handler\n");
280 err = nc->call(nfnl, skb, nlh, cda, errp);
281 *errp = err;
282 return err;
285 err_inval:
286 DEBUGP("returning -EINVAL\n");
287 *errp = -EINVAL;
288 return -1;
291 /* Process one packet of messages. */
292 static inline int nfnetlink_rcv_skb(struct sk_buff *skb)
294 int err;
295 struct nlmsghdr *nlh;
297 while (skb->len >= NLMSG_SPACE(0)) {
298 u32 rlen;
300 nlh = (struct nlmsghdr *)skb->data;
301 if (nlh->nlmsg_len < sizeof(struct nlmsghdr)
302 || skb->len < nlh->nlmsg_len)
303 return 0;
304 rlen = NLMSG_ALIGN(nlh->nlmsg_len);
305 if (rlen > skb->len)
306 rlen = skb->len;
307 if (nfnetlink_rcv_msg(skb, nlh, &err)) {
308 if (!err)
309 return -1;
310 netlink_ack(skb, nlh, err);
311 } else
312 if (nlh->nlmsg_flags & NLM_F_ACK)
313 netlink_ack(skb, nlh, 0);
314 skb_pull(skb, rlen);
317 return 0;
320 static void nfnetlink_rcv(struct sock *sk, int len)
322 do {
323 struct sk_buff *skb;
325 if (nfnl_shlock_nowait())
326 return;
328 while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) {
329 if (nfnetlink_rcv_skb(skb)) {
330 if (skb->len)
331 skb_queue_head(&sk->sk_receive_queue,
332 skb);
333 else
334 kfree_skb(skb);
335 break;
337 kfree_skb(skb);
340 /* don't call nfnl_shunlock, since it would reenter
341 * with further packet processing */
342 up(&nfnl_sem);
343 } while(nfnl && nfnl->sk_receive_queue.qlen);
346 void __exit nfnetlink_exit(void)
348 printk("Removing netfilter NETLINK layer.\n");
349 sock_release(nfnl->sk_socket);
350 return;
353 int __init nfnetlink_init(void)
355 printk("Netfilter messages via NETLINK v%s.\n", nfversion);
357 nfnl = netlink_kernel_create(NETLINK_NETFILTER, nfnetlink_rcv,
358 THIS_MODULE);
359 if (!nfnl) {
360 printk(KERN_ERR "cannot initialize nfnetlink!\n");
361 return -1;
364 return 0;
367 module_init(nfnetlink_init);
368 module_exit(nfnetlink_exit);
370 EXPORT_SYMBOL_GPL(nfnetlink_subsys_register);
371 EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister);
372 EXPORT_SYMBOL_GPL(nfnetlink_send);
373 EXPORT_SYMBOL_GPL(nfnetlink_unicast);
374 EXPORT_SYMBOL_GPL(nfattr_parse);
375 EXPORT_SYMBOL_GPL(__nfa_fill);