blob: 62c3f31cdb97befb4bf9a3deef8591d2ca36aa89 [file] [log] [blame]
Harald Welte0597f262005-08-09 19:58:39 -07001/*
2 * This is a module which is used for logging packets to userspace via
3 * nfetlink.
4 *
5 * (C) 2005 by Harald Welte <laforge@netfilter.org>
6 *
7 * Based on the old ipv4-only ipt_ULOG.c:
8 * (C) 2000-2004 by Harald Welte <laforge@netfilter.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
Harald Welte0af5f6c2006-03-20 17:15:11 -080014 * 2006-01-26 Harald Welte <laforge@netfilter.org>
15 * - Add optional local and global sequence number to detect lost
16 * events from userspace
17 *
Harald Welte0597f262005-08-09 19:58:39 -070018 */
19#include <linux/module.h>
20#include <linux/skbuff.h>
21#include <linux/init.h>
22#include <linux/ip.h>
23#include <linux/ipv6.h>
24#include <linux/netdevice.h>
25#include <linux/netfilter.h>
26#include <linux/netlink.h>
27#include <linux/netfilter/nfnetlink.h>
28#include <linux/netfilter/nfnetlink_log.h>
29#include <linux/spinlock.h>
30#include <linux/sysctl.h>
31#include <linux/proc_fs.h>
32#include <linux/security.h>
33#include <linux/list.h>
34#include <linux/jhash.h>
35#include <linux/random.h>
36#include <net/sock.h>
37
38#include <asm/atomic.h>
39
Harald Weltefbcd9232005-08-09 20:22:10 -070040#ifdef CONFIG_BRIDGE_NETFILTER
41#include "../bridge/br_private.h"
42#endif
43
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080044#define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
Harald Welte0597f262005-08-09 19:58:39 -070045#define NFULNL_TIMEOUT_DEFAULT 100 /* every second */
46#define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
47
48#define PRINTR(x, args...) do { if (net_ratelimit()) \
49 printk(x, ## args); } while (0);
50
51#if 0
52#define UDEBUG(x, args ...) printk(KERN_DEBUG "%s(%d):%s(): " x, \
53 __FILE__, __LINE__, __FUNCTION__, \
54 ## args)
55#else
56#define UDEBUG(x, ...)
57#endif
58
59struct nfulnl_instance {
60 struct hlist_node hlist; /* global list of instances */
61 spinlock_t lock;
62 atomic_t use; /* use count */
63
64 unsigned int qlen; /* number of nlmsgs in skb */
65 struct sk_buff *skb; /* pre-allocatd skb */
66 struct nlmsghdr *lastnlh; /* netlink header of last msg in skb */
67 struct timer_list timer;
68 int peer_pid; /* PID of the peer process */
69
70 /* configurable parameters */
71 unsigned int flushtimeout; /* timeout until queue flush */
72 unsigned int nlbufsiz; /* netlink buffer allocation size */
73 unsigned int qthreshold; /* threshold of the queue */
74 u_int32_t copy_range;
Harald Welte0af5f6c2006-03-20 17:15:11 -080075 u_int32_t seq; /* instance-local sequential counter */
Harald Welte0597f262005-08-09 19:58:39 -070076 u_int16_t group_num; /* number of this queue */
Harald Welte0af5f6c2006-03-20 17:15:11 -080077 u_int16_t flags;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080078 u_int8_t copy_mode;
Harald Welte0597f262005-08-09 19:58:39 -070079};
80
81static DEFINE_RWLOCK(instances_lock);
Harald Welte0af5f6c2006-03-20 17:15:11 -080082static atomic_t global_seq;
Harald Welte0597f262005-08-09 19:58:39 -070083
84#define INSTANCE_BUCKETS 16
85static struct hlist_head instance_table[INSTANCE_BUCKETS];
86static unsigned int hash_init;
87
88static inline u_int8_t instance_hashfn(u_int16_t group_num)
89{
90 return ((group_num & 0xff) % INSTANCE_BUCKETS);
91}
92
93static struct nfulnl_instance *
94__instance_lookup(u_int16_t group_num)
95{
96 struct hlist_head *head;
97 struct hlist_node *pos;
98 struct nfulnl_instance *inst;
99
100 UDEBUG("entering (group_num=%u)\n", group_num);
101
102 head = &instance_table[instance_hashfn(group_num)];
103 hlist_for_each_entry(inst, pos, head, hlist) {
104 if (inst->group_num == group_num)
105 return inst;
106 }
107 return NULL;
108}
109
110static inline void
111instance_get(struct nfulnl_instance *inst)
112{
113 atomic_inc(&inst->use);
114}
115
116static struct nfulnl_instance *
117instance_lookup_get(u_int16_t group_num)
118{
119 struct nfulnl_instance *inst;
120
121 read_lock_bh(&instances_lock);
122 inst = __instance_lookup(group_num);
123 if (inst)
124 instance_get(inst);
125 read_unlock_bh(&instances_lock);
126
127 return inst;
128}
129
130static void
131instance_put(struct nfulnl_instance *inst)
132{
133 if (inst && atomic_dec_and_test(&inst->use)) {
134 UDEBUG("kfree(inst=%p)\n", inst);
135 kfree(inst);
136 }
137}
138
139static void nfulnl_timer(unsigned long data);
140
141static struct nfulnl_instance *
142instance_create(u_int16_t group_num, int pid)
143{
144 struct nfulnl_instance *inst;
145
146 UDEBUG("entering (group_num=%u, pid=%d)\n", group_num,
147 pid);
148
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800149 write_lock_bh(&instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700150 if (__instance_lookup(group_num)) {
151 inst = NULL;
152 UDEBUG("aborting, instance already exists\n");
153 goto out_unlock;
154 }
155
Harald Welte10dfdc62005-11-03 19:20:07 +0100156 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
Harald Welte0597f262005-08-09 19:58:39 -0700157 if (!inst)
158 goto out_unlock;
159
Harald Welte0597f262005-08-09 19:58:39 -0700160 INIT_HLIST_NODE(&inst->hlist);
YOSHIFUJI Hideaki181a46a2006-01-04 13:56:54 -0800161 spin_lock_init(&inst->lock);
Harald Welte0597f262005-08-09 19:58:39 -0700162 /* needs to be two, since we _put() after creation */
163 atomic_set(&inst->use, 2);
164
165 init_timer(&inst->timer);
166 inst->timer.function = nfulnl_timer;
167 inst->timer.data = (unsigned long)inst;
168 /* don't start timer yet. (re)start it with every packet */
169
170 inst->peer_pid = pid;
171 inst->group_num = group_num;
172
173 inst->qthreshold = NFULNL_QTHRESH_DEFAULT;
174 inst->flushtimeout = NFULNL_TIMEOUT_DEFAULT;
175 inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT;
176 inst->copy_mode = NFULNL_COPY_PACKET;
177 inst->copy_range = 0xffff;
178
179 if (!try_module_get(THIS_MODULE))
180 goto out_free;
181
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800182 hlist_add_head(&inst->hlist,
Harald Welte0597f262005-08-09 19:58:39 -0700183 &instance_table[instance_hashfn(group_num)]);
184
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800185 UDEBUG("newly added node: %p, next=%p\n", &inst->hlist,
Harald Welte0597f262005-08-09 19:58:39 -0700186 inst->hlist.next);
187
188 write_unlock_bh(&instances_lock);
189
190 return inst;
191
192out_free:
193 instance_put(inst);
194out_unlock:
195 write_unlock_bh(&instances_lock);
196 return NULL;
197}
198
199static int __nfulnl_send(struct nfulnl_instance *inst);
200
201static void
202_instance_destroy2(struct nfulnl_instance *inst, int lock)
203{
204 /* first pull it out of the global list */
205 if (lock)
206 write_lock_bh(&instances_lock);
207
208 UDEBUG("removing instance %p (queuenum=%u) from hash\n",
209 inst, inst->group_num);
210
211 hlist_del(&inst->hlist);
212
213 if (lock)
214 write_unlock_bh(&instances_lock);
215
216 /* then flush all pending packets from skb */
217
218 spin_lock_bh(&inst->lock);
219 if (inst->skb) {
220 if (inst->qlen)
221 __nfulnl_send(inst);
222 if (inst->skb) {
223 kfree_skb(inst->skb);
224 inst->skb = NULL;
225 }
226 }
227 spin_unlock_bh(&inst->lock);
228
229 /* and finally put the refcount */
230 instance_put(inst);
231
232 module_put(THIS_MODULE);
233}
234
235static inline void
236__instance_destroy(struct nfulnl_instance *inst)
237{
238 _instance_destroy2(inst, 0);
239}
240
241static inline void
242instance_destroy(struct nfulnl_instance *inst)
243{
244 _instance_destroy2(inst, 1);
245}
246
247static int
248nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
249 unsigned int range)
250{
251 int status = 0;
252
253 spin_lock_bh(&inst->lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800254
Harald Welte0597f262005-08-09 19:58:39 -0700255 switch (mode) {
256 case NFULNL_COPY_NONE:
257 case NFULNL_COPY_META:
258 inst->copy_mode = mode;
259 inst->copy_range = 0;
260 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800261
Harald Welte0597f262005-08-09 19:58:39 -0700262 case NFULNL_COPY_PACKET:
263 inst->copy_mode = mode;
264 /* we're using struct nfattr which has 16bit nfa_len */
265 if (range > 0xffff)
266 inst->copy_range = 0xffff;
267 else
268 inst->copy_range = range;
269 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800270
Harald Welte0597f262005-08-09 19:58:39 -0700271 default:
272 status = -EINVAL;
273 break;
274 }
275
276 spin_unlock_bh(&inst->lock);
277
278 return status;
279}
280
281static int
282nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
283{
284 int status;
285
286 spin_lock_bh(&inst->lock);
287 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
288 status = -ERANGE;
289 else if (nlbufsiz > 131072)
290 status = -ERANGE;
291 else {
292 inst->nlbufsiz = nlbufsiz;
293 status = 0;
294 }
295 spin_unlock_bh(&inst->lock);
296
297 return status;
298}
299
300static int
301nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
302{
303 spin_lock_bh(&inst->lock);
304 inst->flushtimeout = timeout;
305 spin_unlock_bh(&inst->lock);
306
307 return 0;
308}
309
310static int
311nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
312{
313 spin_lock_bh(&inst->lock);
314 inst->qthreshold = qthresh;
315 spin_unlock_bh(&inst->lock);
316
317 return 0;
318}
319
Harald Welte0af5f6c2006-03-20 17:15:11 -0800320static int
321nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
322{
323 spin_lock_bh(&inst->lock);
Patrick McHardyee433532006-05-19 02:17:18 -0700324 inst->flags = flags;
Harald Welte0af5f6c2006-03-20 17:15:11 -0800325 spin_unlock_bh(&inst->lock);
326
327 return 0;
328}
329
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800330static struct sk_buff *nfulnl_alloc_skb(unsigned int inst_size,
Harald Welte0597f262005-08-09 19:58:39 -0700331 unsigned int pkt_size)
332{
333 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800334 unsigned int n;
Harald Welte0597f262005-08-09 19:58:39 -0700335
336 UDEBUG("entered (%u, %u)\n", inst_size, pkt_size);
337
338 /* alloc skb which should be big enough for a whole multipart
339 * message. WARNING: has to be <= 128k due to slab restrictions */
340
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800341 n = max(inst_size, pkt_size);
342 skb = alloc_skb(n, GFP_ATOMIC);
Harald Welte0597f262005-08-09 19:58:39 -0700343 if (!skb) {
344 PRINTR("nfnetlink_log: can't alloc whole buffer (%u bytes)\n",
345 inst_size);
346
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800347 if (n > pkt_size) {
348 /* try to allocate only as much as we need for current
349 * packet */
Harald Welte0597f262005-08-09 19:58:39 -0700350
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800351 skb = alloc_skb(pkt_size, GFP_ATOMIC);
352 if (!skb)
353 PRINTR("nfnetlink_log: can't even alloc %u "
354 "bytes\n", pkt_size);
355 }
Harald Welte0597f262005-08-09 19:58:39 -0700356 }
357
358 return skb;
359}
360
361static int
362__nfulnl_send(struct nfulnl_instance *inst)
363{
364 int status;
365
366 if (timer_pending(&inst->timer))
367 del_timer(&inst->timer);
368
Mark Huangdcb7cd92006-08-13 18:57:54 -0700369 if (!inst->skb)
370 return 0;
371
Harald Welte0597f262005-08-09 19:58:39 -0700372 if (inst->qlen > 1)
373 inst->lastnlh->nlmsg_type = NLMSG_DONE;
374
375 status = nfnetlink_unicast(inst->skb, inst->peer_pid, MSG_DONTWAIT);
376 if (status < 0) {
377 UDEBUG("netlink_unicast() failed\n");
378 /* FIXME: statistics */
379 }
380
381 inst->qlen = 0;
382 inst->skb = NULL;
383 inst->lastnlh = NULL;
384
385 return status;
386}
387
388static void nfulnl_timer(unsigned long data)
389{
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800390 struct nfulnl_instance *inst = (struct nfulnl_instance *)data;
Harald Welte0597f262005-08-09 19:58:39 -0700391
392 UDEBUG("timer function called, flushing buffer\n");
393
394 spin_lock_bh(&inst->lock);
395 __nfulnl_send(inst);
396 instance_put(inst);
397 spin_unlock_bh(&inst->lock);
398}
399
Harald Welte0af5f6c2006-03-20 17:15:11 -0800400/* This is an inline function, we don't really care about a long
401 * list of arguments */
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800402static inline int
Harald Welte0597f262005-08-09 19:58:39 -0700403__build_packet_message(struct nfulnl_instance *inst,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800404 const struct sk_buff *skb,
Harald Welte0597f262005-08-09 19:58:39 -0700405 unsigned int data_len,
406 unsigned int pf,
407 unsigned int hooknum,
408 const struct net_device *indev,
409 const struct net_device *outdev,
410 const struct nf_loginfo *li,
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100411 const char *prefix, unsigned int plen)
Harald Welte0597f262005-08-09 19:58:39 -0700412{
413 unsigned char *old_tail;
414 struct nfulnl_msg_packet_hdr pmsg;
415 struct nlmsghdr *nlh;
416 struct nfgenmsg *nfmsg;
Al Viro98a4a862006-11-08 00:26:51 -0800417 __be32 tmp_uint;
Harald Welte0597f262005-08-09 19:58:39 -0700418
419 UDEBUG("entered\n");
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800420
Harald Welte0597f262005-08-09 19:58:39 -0700421 old_tail = inst->skb->tail;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800422 nlh = NLMSG_PUT(inst->skb, 0, 0,
Harald Welte0597f262005-08-09 19:58:39 -0700423 NFNL_SUBSYS_ULOG << 8 | NFULNL_MSG_PACKET,
424 sizeof(struct nfgenmsg));
425 nfmsg = NLMSG_DATA(nlh);
426 nfmsg->nfgen_family = pf;
427 nfmsg->version = NFNETLINK_V0;
428 nfmsg->res_id = htons(inst->group_num);
429
Al Virofebf0a42006-11-03 00:59:17 -0800430 pmsg.hw_protocol = skb->protocol;
Harald Welte0597f262005-08-09 19:58:39 -0700431 pmsg.hook = hooknum;
432
433 NFA_PUT(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg);
434
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100435 if (prefix)
436 NFA_PUT(inst->skb, NFULA_PREFIX, plen, prefix);
Harald Welte0597f262005-08-09 19:58:39 -0700437
438 if (indev) {
439 tmp_uint = htonl(indev->ifindex);
Harald Weltefbcd9232005-08-09 20:22:10 -0700440#ifndef CONFIG_BRIDGE_NETFILTER
Harald Welte0597f262005-08-09 19:58:39 -0700441 NFA_PUT(inst->skb, NFULA_IFINDEX_INDEV, sizeof(tmp_uint),
442 &tmp_uint);
Harald Weltefbcd9232005-08-09 20:22:10 -0700443#else
444 if (pf == PF_BRIDGE) {
445 /* Case 1: outdev is physical input device, we need to
446 * look for bridge group (when called from
447 * netfilter_bridge) */
448 NFA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV,
449 sizeof(tmp_uint), &tmp_uint);
450 /* this is the bridge group "brX" */
451 tmp_uint = htonl(indev->br_port->br->dev->ifindex);
452 NFA_PUT(inst->skb, NFULA_IFINDEX_INDEV,
453 sizeof(tmp_uint), &tmp_uint);
454 } else {
455 /* Case 2: indev is bridge group, we need to look for
456 * physical device (when called from ipv4) */
457 NFA_PUT(inst->skb, NFULA_IFINDEX_INDEV,
458 sizeof(tmp_uint), &tmp_uint);
459 if (skb->nf_bridge && skb->nf_bridge->physindev) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800460 tmp_uint =
Harald Weltefbcd9232005-08-09 20:22:10 -0700461 htonl(skb->nf_bridge->physindev->ifindex);
462 NFA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV,
463 sizeof(tmp_uint), &tmp_uint);
464 }
465 }
466#endif
Harald Welte0597f262005-08-09 19:58:39 -0700467 }
468
469 if (outdev) {
470 tmp_uint = htonl(outdev->ifindex);
Harald Weltefbcd9232005-08-09 20:22:10 -0700471#ifndef CONFIG_BRIDGE_NETFILTER
Harald Welte0597f262005-08-09 19:58:39 -0700472 NFA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV, sizeof(tmp_uint),
473 &tmp_uint);
Harald Weltefbcd9232005-08-09 20:22:10 -0700474#else
475 if (pf == PF_BRIDGE) {
476 /* Case 1: outdev is physical output device, we need to
477 * look for bridge group (when called from
478 * netfilter_bridge) */
479 NFA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
480 sizeof(tmp_uint), &tmp_uint);
481 /* this is the bridge group "brX" */
482 tmp_uint = htonl(outdev->br_port->br->dev->ifindex);
483 NFA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV,
484 sizeof(tmp_uint), &tmp_uint);
485 } else {
486 /* Case 2: indev is a bridge group, we need to look
487 * for physical device (when called from ipv4) */
488 NFA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV,
489 sizeof(tmp_uint), &tmp_uint);
490 if (skb->nf_bridge) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800491 tmp_uint =
Harald Weltefbcd9232005-08-09 20:22:10 -0700492 htonl(skb->nf_bridge->physoutdev->ifindex);
493 NFA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
494 sizeof(tmp_uint), &tmp_uint);
495 }
496 }
497#endif
Harald Welte0597f262005-08-09 19:58:39 -0700498 }
499
Thomas Graf82e91ff2006-11-09 15:19:14 -0800500 if (skb->mark) {
501 tmp_uint = htonl(skb->mark);
Harald Welte0597f262005-08-09 19:58:39 -0700502 NFA_PUT(inst->skb, NFULA_MARK, sizeof(tmp_uint), &tmp_uint);
503 }
504
505 if (indev && skb->dev && skb->dev->hard_header_parse) {
506 struct nfulnl_msg_packet_hw phw;
Al Viro98a4a862006-11-08 00:26:51 -0800507 int len = skb->dev->hard_header_parse((struct sk_buff *)skb,
Harald Welte0597f262005-08-09 19:58:39 -0700508 phw.hw_addr);
Al Viro98a4a862006-11-08 00:26:51 -0800509 phw.hw_addrlen = htons(len);
Harald Welte0597f262005-08-09 19:58:39 -0700510 NFA_PUT(inst->skb, NFULA_HWADDR, sizeof(phw), &phw);
511 }
512
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700513 if (skb->tstamp.off_sec) {
Harald Welte0597f262005-08-09 19:58:39 -0700514 struct nfulnl_msg_packet_timestamp ts;
515
Herbert Xu325ed822005-10-03 13:57:23 -0700516 ts.sec = cpu_to_be64(skb->tstamp.off_sec);
517 ts.usec = cpu_to_be64(skb->tstamp.off_usec);
Harald Welte0597f262005-08-09 19:58:39 -0700518
519 NFA_PUT(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts);
520 }
521
522 /* UID */
523 if (skb->sk) {
524 read_lock_bh(&skb->sk->sk_callback_lock);
525 if (skb->sk->sk_socket && skb->sk->sk_socket->file) {
Al Viro98a4a862006-11-08 00:26:51 -0800526 __be32 uid = htonl(skb->sk->sk_socket->file->f_uid);
Harald Welte0597f262005-08-09 19:58:39 -0700527 /* need to unlock here since NFA_PUT may goto */
528 read_unlock_bh(&skb->sk->sk_callback_lock);
529 NFA_PUT(inst->skb, NFULA_UID, sizeof(uid), &uid);
530 } else
531 read_unlock_bh(&skb->sk->sk_callback_lock);
532 }
533
Harald Welte0af5f6c2006-03-20 17:15:11 -0800534 /* local sequence number */
535 if (inst->flags & NFULNL_CFG_F_SEQ) {
536 tmp_uint = htonl(inst->seq++);
537 NFA_PUT(inst->skb, NFULA_SEQ, sizeof(tmp_uint), &tmp_uint);
538 }
539 /* global sequence number */
540 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) {
Patrick McHardy7fdeaf62006-11-14 19:47:09 -0800541 tmp_uint = htonl(atomic_inc_return(&global_seq));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800542 NFA_PUT(inst->skb, NFULA_SEQ_GLOBAL, sizeof(tmp_uint), &tmp_uint);
543 }
544
Harald Welte0597f262005-08-09 19:58:39 -0700545 if (data_len) {
546 struct nfattr *nfa;
547 int size = NFA_LENGTH(data_len);
548
549 if (skb_tailroom(inst->skb) < (int)NFA_SPACE(data_len)) {
550 printk(KERN_WARNING "nfnetlink_log: no tailroom!\n");
551 goto nlmsg_failure;
552 }
553
554 nfa = (struct nfattr *)skb_put(inst->skb, NFA_ALIGN(size));
555 nfa->nfa_type = NFULA_PAYLOAD;
556 nfa->nfa_len = size;
557
558 if (skb_copy_bits(skb, 0, NFA_DATA(nfa), data_len))
559 BUG();
560 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800561
Harald Welte0597f262005-08-09 19:58:39 -0700562 nlh->nlmsg_len = inst->skb->tail - old_tail;
563 return 0;
564
565nlmsg_failure:
566 UDEBUG("nlmsg_failure\n");
567nfattr_failure:
568 PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
569 return -1;
570}
571
572#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
573
574static struct nf_loginfo default_loginfo = {
575 .type = NF_LOG_TYPE_ULOG,
576 .u = {
577 .ulog = {
578 .copy_len = 0xffff,
579 .group = 0,
580 .qthreshold = 1,
581 },
582 },
583};
584
585/* log handler for internal netfilter logging api */
586static void
587nfulnl_log_packet(unsigned int pf,
588 unsigned int hooknum,
589 const struct sk_buff *skb,
590 const struct net_device *in,
591 const struct net_device *out,
592 const struct nf_loginfo *li_user,
593 const char *prefix)
594{
595 unsigned int size, data_len;
596 struct nfulnl_instance *inst;
597 const struct nf_loginfo *li;
598 unsigned int qthreshold;
599 unsigned int nlbufsiz;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100600 unsigned int plen;
Harald Welte0597f262005-08-09 19:58:39 -0700601
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800602 if (li_user && li_user->type == NF_LOG_TYPE_ULOG)
Harald Welte0597f262005-08-09 19:58:39 -0700603 li = li_user;
604 else
605 li = &default_loginfo;
606
607 inst = instance_lookup_get(li->u.ulog.group);
608 if (!inst)
609 inst = instance_lookup_get(0);
610 if (!inst) {
611 PRINTR("nfnetlink_log: trying to log packet, "
612 "but no instance for group %u\n", li->u.ulog.group);
613 return;
614 }
615
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100616 plen = 0;
617 if (prefix)
618 plen = strlen(prefix);
619
Harald Welte0597f262005-08-09 19:58:39 -0700620 /* all macros expand to constant values at compile time */
621 /* FIXME: do we want to make the size calculation conditional based on
622 * what is actually present? way more branches and checks, but more
623 * memory efficient... */
624 size = NLMSG_SPACE(sizeof(struct nfgenmsg))
625 + NFA_SPACE(sizeof(struct nfulnl_msg_packet_hdr))
626 + NFA_SPACE(sizeof(u_int32_t)) /* ifindex */
627 + NFA_SPACE(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700628#ifdef CONFIG_BRIDGE_NETFILTER
629 + NFA_SPACE(sizeof(u_int32_t)) /* ifindex */
630 + NFA_SPACE(sizeof(u_int32_t)) /* ifindex */
631#endif
Harald Welte0597f262005-08-09 19:58:39 -0700632 + NFA_SPACE(sizeof(u_int32_t)) /* mark */
633 + NFA_SPACE(sizeof(u_int32_t)) /* uid */
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100634 + NFA_SPACE(plen) /* prefix */
Harald Welte0597f262005-08-09 19:58:39 -0700635 + NFA_SPACE(sizeof(struct nfulnl_msg_packet_hw))
636 + NFA_SPACE(sizeof(struct nfulnl_msg_packet_timestamp));
637
638 UDEBUG("initial size=%u\n", size);
639
640 spin_lock_bh(&inst->lock);
641
Harald Welte0af5f6c2006-03-20 17:15:11 -0800642 if (inst->flags & NFULNL_CFG_F_SEQ)
643 size += NFA_SPACE(sizeof(u_int32_t));
644 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
645 size += NFA_SPACE(sizeof(u_int32_t));
646
Harald Welte0597f262005-08-09 19:58:39 -0700647 qthreshold = inst->qthreshold;
648 /* per-rule qthreshold overrides per-instance */
649 if (qthreshold > li->u.ulog.qthreshold)
650 qthreshold = li->u.ulog.qthreshold;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800651
Harald Welte0597f262005-08-09 19:58:39 -0700652 switch (inst->copy_mode) {
653 case NFULNL_COPY_META:
654 case NFULNL_COPY_NONE:
655 data_len = 0;
656 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800657
Harald Welte0597f262005-08-09 19:58:39 -0700658 case NFULNL_COPY_PACKET:
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800659 if (inst->copy_range == 0
Harald Welte0597f262005-08-09 19:58:39 -0700660 || inst->copy_range > skb->len)
661 data_len = skb->len;
662 else
663 data_len = inst->copy_range;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800664
Harald Welte0597f262005-08-09 19:58:39 -0700665 size += NFA_SPACE(data_len);
666 UDEBUG("copy_packet, therefore size now %u\n", size);
667 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800668
Harald Welte0597f262005-08-09 19:58:39 -0700669 default:
670 spin_unlock_bh(&inst->lock);
671 instance_put(inst);
672 return;
673 }
674
675 if (size > inst->nlbufsiz)
676 nlbufsiz = size;
677 else
678 nlbufsiz = inst->nlbufsiz;
679
680 if (!inst->skb) {
681 if (!(inst->skb = nfulnl_alloc_skb(nlbufsiz, size))) {
682 UDEBUG("error in nfulnl_alloc_skb(%u, %u)\n",
683 inst->nlbufsiz, size);
684 goto alloc_failure;
685 }
686 } else if (inst->qlen >= qthreshold ||
687 size > skb_tailroom(inst->skb)) {
688 /* either the queue len is too high or we don't have
689 * enough room in the skb left. flush to userspace. */
690 UDEBUG("flushing old skb\n");
691
692 __nfulnl_send(inst);
693
694 if (!(inst->skb = nfulnl_alloc_skb(nlbufsiz, size))) {
695 UDEBUG("error in nfulnl_alloc_skb(%u, %u)\n",
696 inst->nlbufsiz, size);
697 goto alloc_failure;
698 }
699 }
700
701 UDEBUG("qlen %d, qthreshold %d\n", inst->qlen, qthreshold);
702 inst->qlen++;
703
704 __build_packet_message(inst, skb, data_len, pf,
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100705 hooknum, in, out, li, prefix, plen);
Harald Welte0597f262005-08-09 19:58:39 -0700706
707 /* timer_pending always called within inst->lock, so there
708 * is no chance of a race here */
709 if (!timer_pending(&inst->timer)) {
710 instance_get(inst);
711 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
712 add_timer(&inst->timer);
713 }
Harald Welte0597f262005-08-09 19:58:39 -0700714
Michal Miroslawed32abe2007-03-04 15:58:15 -0800715unlock_and_release:
716 spin_unlock_bh(&inst->lock);
717 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700718 return;
719
720alloc_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700721 UDEBUG("error allocating skb\n");
722 /* FIXME: statistics */
Michal Miroslawed32abe2007-03-04 15:58:15 -0800723 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700724}
725
726static int
727nfulnl_rcv_nl_event(struct notifier_block *this,
728 unsigned long event, void *ptr)
729{
730 struct netlink_notify *n = ptr;
731
732 if (event == NETLINK_URELEASE &&
733 n->protocol == NETLINK_NETFILTER && n->pid) {
734 int i;
735
736 /* destroy all instances for this pid */
737 write_lock_bh(&instances_lock);
738 for (i = 0; i < INSTANCE_BUCKETS; i++) {
739 struct hlist_node *tmp, *t2;
740 struct nfulnl_instance *inst;
741 struct hlist_head *head = &instance_table[i];
742
743 hlist_for_each_entry_safe(inst, tmp, t2, head, hlist) {
744 UDEBUG("node = %p\n", inst);
745 if (n->pid == inst->peer_pid)
746 __instance_destroy(inst);
747 }
748 }
749 write_unlock_bh(&instances_lock);
750 }
751 return NOTIFY_DONE;
752}
753
754static struct notifier_block nfulnl_rtnl_notifier = {
755 .notifier_call = nfulnl_rcv_nl_event,
756};
757
758static int
759nfulnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
760 struct nlmsghdr *nlh, struct nfattr *nfqa[], int *errp)
761{
762 return -ENOTSUPP;
763}
764
765static struct nf_logger nfulnl_logger = {
766 .name = "nfnetlink_log",
767 .logfn = &nfulnl_log_packet,
768 .me = THIS_MODULE,
769};
770
771static const int nfula_min[NFULA_MAX] = {
772 [NFULA_PACKET_HDR-1] = sizeof(struct nfulnl_msg_packet_hdr),
773 [NFULA_MARK-1] = sizeof(u_int32_t),
774 [NFULA_TIMESTAMP-1] = sizeof(struct nfulnl_msg_packet_timestamp),
775 [NFULA_IFINDEX_INDEV-1] = sizeof(u_int32_t),
776 [NFULA_IFINDEX_OUTDEV-1]= sizeof(u_int32_t),
Harald Welte0af5f6c2006-03-20 17:15:11 -0800777 [NFULA_IFINDEX_PHYSINDEV-1] = sizeof(u_int32_t),
778 [NFULA_IFINDEX_PHYSOUTDEV-1] = sizeof(u_int32_t),
Harald Welte0597f262005-08-09 19:58:39 -0700779 [NFULA_HWADDR-1] = sizeof(struct nfulnl_msg_packet_hw),
780 [NFULA_PAYLOAD-1] = 0,
781 [NFULA_PREFIX-1] = 0,
782 [NFULA_UID-1] = sizeof(u_int32_t),
Harald Welte0af5f6c2006-03-20 17:15:11 -0800783 [NFULA_SEQ-1] = sizeof(u_int32_t),
784 [NFULA_SEQ_GLOBAL-1] = sizeof(u_int32_t),
Harald Welte0597f262005-08-09 19:58:39 -0700785};
786
787static const int nfula_cfg_min[NFULA_CFG_MAX] = {
788 [NFULA_CFG_CMD-1] = sizeof(struct nfulnl_msg_config_cmd),
789 [NFULA_CFG_MODE-1] = sizeof(struct nfulnl_msg_config_mode),
790 [NFULA_CFG_TIMEOUT-1] = sizeof(u_int32_t),
791 [NFULA_CFG_QTHRESH-1] = sizeof(u_int32_t),
792 [NFULA_CFG_NLBUFSIZ-1] = sizeof(u_int32_t),
Harald Welte0af5f6c2006-03-20 17:15:11 -0800793 [NFULA_CFG_FLAGS-1] = sizeof(u_int16_t),
Harald Welte0597f262005-08-09 19:58:39 -0700794};
795
796static int
797nfulnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
798 struct nlmsghdr *nlh, struct nfattr *nfula[], int *errp)
799{
800 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
801 u_int16_t group_num = ntohs(nfmsg->res_id);
802 struct nfulnl_instance *inst;
803 int ret = 0;
804
805 UDEBUG("entering for msg %u\n", NFNL_MSG_TYPE(nlh->nlmsg_type));
806
807 if (nfattr_bad_size(nfula, NFULA_CFG_MAX, nfula_cfg_min)) {
808 UDEBUG("bad attribute size\n");
809 return -EINVAL;
810 }
811
812 inst = instance_lookup_get(group_num);
813 if (nfula[NFULA_CFG_CMD-1]) {
814 u_int8_t pf = nfmsg->nfgen_family;
815 struct nfulnl_msg_config_cmd *cmd;
816 cmd = NFA_DATA(nfula[NFULA_CFG_CMD-1]);
817 UDEBUG("found CFG_CMD for\n");
818
819 switch (cmd->command) {
820 case NFULNL_CFG_CMD_BIND:
821 if (inst) {
822 ret = -EBUSY;
823 goto out_put;
824 }
825
826 inst = instance_create(group_num,
827 NETLINK_CB(skb).pid);
828 if (!inst) {
829 ret = -EINVAL;
830 goto out_put;
831 }
832 break;
833 case NFULNL_CFG_CMD_UNBIND:
834 if (!inst) {
835 ret = -ENODEV;
836 goto out_put;
837 }
838
839 if (inst->peer_pid != NETLINK_CB(skb).pid) {
840 ret = -EPERM;
841 goto out_put;
842 }
843
844 instance_destroy(inst);
845 break;
846 case NFULNL_CFG_CMD_PF_BIND:
847 UDEBUG("registering log handler for pf=%u\n", pf);
848 ret = nf_log_register(pf, &nfulnl_logger);
849 break;
850 case NFULNL_CFG_CMD_PF_UNBIND:
851 UDEBUG("unregistering log handler for pf=%u\n", pf);
852 /* This is a bug and a feature. We cannot unregister
853 * other handlers, like nfnetlink_inst can */
854 nf_log_unregister_pf(pf);
855 break;
856 default:
857 ret = -EINVAL;
858 break;
859 }
860 } else {
861 if (!inst) {
862 UDEBUG("no config command, and no instance for "
863 "group=%u pid=%u =>ENOENT\n",
864 group_num, NETLINK_CB(skb).pid);
865 ret = -ENOENT;
866 goto out_put;
867 }
868
869 if (inst->peer_pid != NETLINK_CB(skb).pid) {
870 UDEBUG("no config command, and wrong pid\n");
871 ret = -EPERM;
872 goto out_put;
873 }
874 }
875
876 if (nfula[NFULA_CFG_MODE-1]) {
877 struct nfulnl_msg_config_mode *params;
878 params = NFA_DATA(nfula[NFULA_CFG_MODE-1]);
879
880 nfulnl_set_mode(inst, params->copy_mode,
Al Virod1208b92006-11-03 00:58:41 -0800881 ntohl(params->copy_range));
Harald Welte0597f262005-08-09 19:58:39 -0700882 }
883
884 if (nfula[NFULA_CFG_TIMEOUT-1]) {
Al Viro98a4a862006-11-08 00:26:51 -0800885 __be32 timeout =
886 *(__be32 *)NFA_DATA(nfula[NFULA_CFG_TIMEOUT-1]);
Harald Welte0597f262005-08-09 19:58:39 -0700887
888 nfulnl_set_timeout(inst, ntohl(timeout));
889 }
890
891 if (nfula[NFULA_CFG_NLBUFSIZ-1]) {
Al Viro98a4a862006-11-08 00:26:51 -0800892 __be32 nlbufsiz =
893 *(__be32 *)NFA_DATA(nfula[NFULA_CFG_NLBUFSIZ-1]);
Harald Welte0597f262005-08-09 19:58:39 -0700894
895 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
896 }
897
898 if (nfula[NFULA_CFG_QTHRESH-1]) {
Al Viro7ac00a22006-11-03 00:58:17 -0800899 __be32 qthresh =
900 *(__be32 *)NFA_DATA(nfula[NFULA_CFG_QTHRESH-1]);
Harald Welte0597f262005-08-09 19:58:39 -0700901
902 nfulnl_set_qthresh(inst, ntohl(qthresh));
903 }
904
Harald Welte0af5f6c2006-03-20 17:15:11 -0800905 if (nfula[NFULA_CFG_FLAGS-1]) {
Al Viro98a4a862006-11-08 00:26:51 -0800906 __be16 flags =
907 *(__be16 *)NFA_DATA(nfula[NFULA_CFG_FLAGS-1]);
Patrick McHardyee433532006-05-19 02:17:18 -0700908 nfulnl_set_flags(inst, ntohs(flags));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800909 }
910
Harald Welte0597f262005-08-09 19:58:39 -0700911out_put:
912 instance_put(inst);
913 return ret;
914}
915
916static struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
917 [NFULNL_MSG_PACKET] = { .call = nfulnl_recv_unsupp,
Harald Welte37d2e7a2005-11-14 15:24:59 -0800918 .attr_count = NFULA_MAX, },
Harald Welte0597f262005-08-09 19:58:39 -0700919 [NFULNL_MSG_CONFIG] = { .call = nfulnl_recv_config,
Harald Welte37d2e7a2005-11-14 15:24:59 -0800920 .attr_count = NFULA_CFG_MAX, },
Harald Welte0597f262005-08-09 19:58:39 -0700921};
922
923static struct nfnetlink_subsystem nfulnl_subsys = {
924 .name = "log",
925 .subsys_id = NFNL_SUBSYS_ULOG,
926 .cb_count = NFULNL_MSG_MAX,
Harald Welte0597f262005-08-09 19:58:39 -0700927 .cb = nfulnl_cb,
928};
929
930#ifdef CONFIG_PROC_FS
931struct iter_state {
932 unsigned int bucket;
933};
934
935static struct hlist_node *get_first(struct seq_file *seq)
936{
937 struct iter_state *st = seq->private;
938
939 if (!st)
940 return NULL;
941
942 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
943 if (!hlist_empty(&instance_table[st->bucket]))
944 return instance_table[st->bucket].first;
945 }
946 return NULL;
947}
948
949static struct hlist_node *get_next(struct seq_file *seq, struct hlist_node *h)
950{
951 struct iter_state *st = seq->private;
952
953 h = h->next;
954 while (!h) {
955 if (++st->bucket >= INSTANCE_BUCKETS)
956 return NULL;
957
958 h = instance_table[st->bucket].first;
959 }
960 return h;
961}
962
963static struct hlist_node *get_idx(struct seq_file *seq, loff_t pos)
964{
965 struct hlist_node *head;
966 head = get_first(seq);
967
968 if (head)
969 while (pos && (head = get_next(seq, head)))
970 pos--;
971 return pos ? NULL : head;
972}
973
974static void *seq_start(struct seq_file *seq, loff_t *pos)
975{
976 read_lock_bh(&instances_lock);
977 return get_idx(seq, *pos);
978}
979
980static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
981{
982 (*pos)++;
983 return get_next(s, v);
984}
985
986static void seq_stop(struct seq_file *s, void *v)
987{
988 read_unlock_bh(&instances_lock);
989}
990
991static int seq_show(struct seq_file *s, void *v)
992{
993 const struct nfulnl_instance *inst = v;
994
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800995 return seq_printf(s, "%5d %6d %5d %1d %5d %6d %2d\n",
Harald Welte0597f262005-08-09 19:58:39 -0700996 inst->group_num,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800997 inst->peer_pid, inst->qlen,
Harald Welte0597f262005-08-09 19:58:39 -0700998 inst->copy_mode, inst->copy_range,
999 inst->flushtimeout, atomic_read(&inst->use));
1000}
1001
1002static struct seq_operations nful_seq_ops = {
1003 .start = seq_start,
1004 .next = seq_next,
1005 .stop = seq_stop,
1006 .show = seq_show,
1007};
1008
1009static int nful_open(struct inode *inode, struct file *file)
1010{
1011 struct seq_file *seq;
1012 struct iter_state *is;
1013 int ret;
1014
Harald Welte10dfdc62005-11-03 19:20:07 +01001015 is = kzalloc(sizeof(*is), GFP_KERNEL);
Harald Welte0597f262005-08-09 19:58:39 -07001016 if (!is)
1017 return -ENOMEM;
Harald Welte0597f262005-08-09 19:58:39 -07001018 ret = seq_open(file, &nful_seq_ops);
1019 if (ret < 0)
1020 goto out_free;
1021 seq = file->private_data;
1022 seq->private = is;
1023 return ret;
1024out_free:
1025 kfree(is);
1026 return ret;
1027}
1028
Arjan van de Venda7071d2007-02-12 00:55:36 -08001029static const struct file_operations nful_file_ops = {
Harald Welte0597f262005-08-09 19:58:39 -07001030 .owner = THIS_MODULE,
1031 .open = nful_open,
1032 .read = seq_read,
1033 .llseek = seq_lseek,
1034 .release = seq_release_private,
1035};
1036
1037#endif /* PROC_FS */
1038
Patrick McHardy32292a72006-04-06 14:11:30 -07001039static int __init nfnetlink_log_init(void)
Harald Welte0597f262005-08-09 19:58:39 -07001040{
1041 int i, status = -ENOMEM;
1042#ifdef CONFIG_PROC_FS
1043 struct proc_dir_entry *proc_nful;
1044#endif
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001045
Harald Welte0597f262005-08-09 19:58:39 -07001046 for (i = 0; i < INSTANCE_BUCKETS; i++)
1047 INIT_HLIST_HEAD(&instance_table[i]);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001048
Harald Welte0597f262005-08-09 19:58:39 -07001049 /* it's not really all that important to have a random value, so
1050 * we can do this from the init function, even if there hasn't
1051 * been that much entropy yet */
1052 get_random_bytes(&hash_init, sizeof(hash_init));
1053
1054 netlink_register_notifier(&nfulnl_rtnl_notifier);
1055 status = nfnetlink_subsys_register(&nfulnl_subsys);
1056 if (status < 0) {
1057 printk(KERN_ERR "log: failed to create netlink socket\n");
1058 goto cleanup_netlink_notifier;
1059 }
1060
1061#ifdef CONFIG_PROC_FS
1062 proc_nful = create_proc_entry("nfnetlink_log", 0440,
1063 proc_net_netfilter);
1064 if (!proc_nful)
1065 goto cleanup_subsys;
1066 proc_nful->proc_fops = &nful_file_ops;
1067#endif
Harald Welte0597f262005-08-09 19:58:39 -07001068 return status;
1069
Harald Welte0597f262005-08-09 19:58:39 -07001070#ifdef CONFIG_PROC_FS
Harald Welte0597f262005-08-09 19:58:39 -07001071cleanup_subsys:
Harald Welte0597f262005-08-09 19:58:39 -07001072 nfnetlink_subsys_unregister(&nfulnl_subsys);
Patrick McHardy32292a72006-04-06 14:11:30 -07001073#endif
Harald Welte0597f262005-08-09 19:58:39 -07001074cleanup_netlink_notifier:
1075 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1076 return status;
1077}
1078
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001079static void __exit nfnetlink_log_fini(void)
Harald Welte0597f262005-08-09 19:58:39 -07001080{
Patrick McHardye92ad992007-02-12 11:11:55 -08001081 nf_log_unregister(&nfulnl_logger);
Patrick McHardy32292a72006-04-06 14:11:30 -07001082#ifdef CONFIG_PROC_FS
1083 remove_proc_entry("nfnetlink_log", proc_net_netfilter);
1084#endif
1085 nfnetlink_subsys_unregister(&nfulnl_subsys);
1086 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
Harald Welte0597f262005-08-09 19:58:39 -07001087}
1088
1089MODULE_DESCRIPTION("netfilter userspace logging");
1090MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1091MODULE_LICENSE("GPL");
Harald Weltef682fae2005-08-09 20:20:34 -07001092MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
Harald Welte0597f262005-08-09 19:58:39 -07001093
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001094module_init(nfnetlink_log_init);
1095module_exit(nfnetlink_log_fini);