MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / net / netfilter / nfnetlink_log.c
blobe23fcc663b0733f7db0d6c42b85c1d6695688b4e
1 /*
2 * This is a module which is used for logging packets to userspace via
3 * nfetlink.
5 * (C) 2005 by Harald Welte <laforge@netfilter.org>
7 * Based on the old ipv4-only ipt_ULOG.c:
8 * (C) 2000-2004 by Harald Welte <laforge@netfilter.org>
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.
14 * 2006-01-26 Harald Welte <laforge@netfilter.org>
15 * - Add optional local and global sequence number to detect lost
16 * events from userspace
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>
38 #include <asm/atomic.h>
40 #ifdef CONFIG_BRIDGE_NETFILTER
41 #include "../bridge/br_private.h"
42 #endif
44 #define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
45 #define NFULNL_TIMEOUT_DEFAULT 100 /* every second */
46 #define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
48 #define PRINTR(x, args...) do { if (net_ratelimit()) \
49 printk(x, ## args); } while (0);
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
59 struct nfulnl_instance {
60 struct hlist_node hlist; /* global list of instances */
61 spinlock_t lock;
62 atomic_t use; /* use count */
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 */
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;
75 u_int32_t seq; /* instance-local sequential counter */
76 u_int16_t group_num; /* number of this queue */
77 u_int16_t flags;
78 u_int8_t copy_mode;
81 static DEFINE_RWLOCK(instances_lock);
82 static atomic_t global_seq;
84 #define INSTANCE_BUCKETS 16
85 static struct hlist_head instance_table[INSTANCE_BUCKETS];
86 static unsigned int hash_init;
88 static inline u_int8_t instance_hashfn(u_int16_t group_num)
90 return ((group_num & 0xff) % INSTANCE_BUCKETS);
93 static struct nfulnl_instance *
94 __instance_lookup(u_int16_t group_num)
96 struct hlist_head *head;
97 struct hlist_node *pos;
98 struct nfulnl_instance *inst;
100 UDEBUG("entering (group_num=%u)\n", group_num);
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;
107 return NULL;
110 static inline void
111 instance_get(struct nfulnl_instance *inst)
113 atomic_inc(&inst->use);
116 static struct nfulnl_instance *
117 instance_lookup_get(u_int16_t group_num)
119 struct nfulnl_instance *inst;
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);
127 return inst;
130 static void
131 instance_put(struct nfulnl_instance *inst)
133 if (inst && atomic_dec_and_test(&inst->use)) {
134 UDEBUG("kfree(inst=%p)\n", inst);
135 kfree(inst);
139 static void nfulnl_timer(unsigned long data);
141 static struct nfulnl_instance *
142 instance_create(u_int16_t group_num, int pid)
144 struct nfulnl_instance *inst;
146 UDEBUG("entering (group_num=%u, pid=%d)\n", group_num,
147 pid);
149 write_lock_bh(&instances_lock);
150 if (__instance_lookup(group_num)) {
151 inst = NULL;
152 UDEBUG("aborting, instance already exists\n");
153 goto out_unlock;
156 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
157 if (!inst)
158 goto out_unlock;
160 INIT_HLIST_NODE(&inst->hlist);
161 spin_lock_init(&inst->lock);
162 /* needs to be two, since we _put() after creation */
163 atomic_set(&inst->use, 2);
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 */
170 inst->peer_pid = pid;
171 inst->group_num = group_num;
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;
179 if (!try_module_get(THIS_MODULE))
180 goto out_free;
182 hlist_add_head(&inst->hlist,
183 &instance_table[instance_hashfn(group_num)]);
185 UDEBUG("newly added node: %p, next=%p\n", &inst->hlist,
186 inst->hlist.next);
188 write_unlock_bh(&instances_lock);
190 return inst;
192 out_free:
193 instance_put(inst);
194 out_unlock:
195 write_unlock_bh(&instances_lock);
196 return NULL;
199 static int __nfulnl_send(struct nfulnl_instance *inst);
201 static void
202 _instance_destroy2(struct nfulnl_instance *inst, int lock)
204 /* first pull it out of the global list */
205 if (lock)
206 write_lock_bh(&instances_lock);
208 UDEBUG("removing instance %p (queuenum=%u) from hash\n",
209 inst, inst->group_num);
211 hlist_del(&inst->hlist);
213 if (lock)
214 write_unlock_bh(&instances_lock);
216 /* then flush all pending packets from skb */
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;
227 spin_unlock_bh(&inst->lock);
229 /* and finally put the refcount */
230 instance_put(inst);
232 module_put(THIS_MODULE);
235 static inline void
236 __instance_destroy(struct nfulnl_instance *inst)
238 _instance_destroy2(inst, 0);
241 static inline void
242 instance_destroy(struct nfulnl_instance *inst)
244 _instance_destroy2(inst, 1);
247 static int
248 nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
249 unsigned int range)
251 int status = 0;
253 spin_lock_bh(&inst->lock);
255 switch (mode) {
256 case NFULNL_COPY_NONE:
257 case NFULNL_COPY_META:
258 inst->copy_mode = mode;
259 inst->copy_range = 0;
260 break;
262 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;
271 default:
272 status = -EINVAL;
273 break;
276 spin_unlock_bh(&inst->lock);
278 return status;
281 static int
282 nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
284 int status;
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;
295 spin_unlock_bh(&inst->lock);
297 return status;
300 static int
301 nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
303 spin_lock_bh(&inst->lock);
304 inst->flushtimeout = timeout;
305 spin_unlock_bh(&inst->lock);
307 return 0;
310 static int
311 nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
313 spin_lock_bh(&inst->lock);
314 inst->qthreshold = qthresh;
315 spin_unlock_bh(&inst->lock);
317 return 0;
320 static int
321 nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
323 spin_lock_bh(&inst->lock);
324 inst->flags = flags;
325 spin_unlock_bh(&inst->lock);
327 return 0;
330 static struct sk_buff *nfulnl_alloc_skb(unsigned int inst_size,
331 unsigned int pkt_size)
333 struct sk_buff *skb;
334 unsigned int n;
336 UDEBUG("entered (%u, %u)\n", inst_size, pkt_size);
338 /* alloc skb which should be big enough for a whole multipart
339 * message. WARNING: has to be <= 128k due to slab restrictions */
341 n = max(inst_size, pkt_size);
342 skb = alloc_skb(n, GFP_ATOMIC);
343 if (!skb) {
344 PRINTR("nfnetlink_log: can't alloc whole buffer (%u bytes)\n",
345 inst_size);
347 if (n > pkt_size) {
348 /* try to allocate only as much as we need for current
349 * packet */
351 skb = alloc_skb(pkt_size, GFP_ATOMIC);
352 if (!skb)
353 PRINTR("nfnetlink_log: can't even alloc %u "
354 "bytes\n", pkt_size);
358 return skb;
361 static int
362 __nfulnl_send(struct nfulnl_instance *inst)
364 int status;
366 if (timer_pending(&inst->timer))
367 del_timer(&inst->timer);
369 if (!inst->skb)
370 return 0;
372 if (inst->qlen > 1)
373 inst->lastnlh->nlmsg_type = NLMSG_DONE;
375 status = nfnetlink_unicast(inst->skb, inst->peer_pid, MSG_DONTWAIT);
376 if (status < 0) {
377 UDEBUG("netlink_unicast() failed\n");
378 /* FIXME: statistics */
381 inst->qlen = 0;
382 inst->skb = NULL;
383 inst->lastnlh = NULL;
385 return status;
388 static void nfulnl_timer(unsigned long data)
390 struct nfulnl_instance *inst = (struct nfulnl_instance *)data;
392 UDEBUG("timer function called, flushing buffer\n");
394 spin_lock_bh(&inst->lock);
395 __nfulnl_send(inst);
396 instance_put(inst);
397 spin_unlock_bh(&inst->lock);
400 /* This is an inline function, we don't really care about a long
401 * list of arguments */
402 static inline int
403 __build_packet_message(struct nfulnl_instance *inst,
404 const struct sk_buff *skb,
405 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,
411 const char *prefix,
412 unsigned int prefix_len)
414 unsigned char *old_tail;
415 struct nfulnl_msg_packet_hdr pmsg;
416 struct nlmsghdr *nlh;
417 struct nfgenmsg *nfmsg;
418 u_int32_t tmp_uint;
420 UDEBUG("entered\n");
422 old_tail = inst->skb->tail;
423 nlh = NLMSG_PUT(inst->skb, 0, 0,
424 NFNL_SUBSYS_ULOG << 8 | NFULNL_MSG_PACKET,
425 sizeof(struct nfgenmsg));
426 nfmsg = NLMSG_DATA(nlh);
427 nfmsg->nfgen_family = pf;
428 nfmsg->version = NFNETLINK_V0;
429 nfmsg->res_id = htons(inst->group_num);
431 pmsg.hw_protocol = skb->protocol;
432 pmsg.hook = hooknum;
434 NFA_PUT(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg);
436 if (prefix)
437 NFA_PUT(inst->skb, NFULA_PREFIX, prefix_len, prefix);
439 if (indev) {
440 tmp_uint = htonl(indev->ifindex);
441 #ifndef CONFIG_BRIDGE_NETFILTER
442 NFA_PUT(inst->skb, NFULA_IFINDEX_INDEV, sizeof(tmp_uint),
443 &tmp_uint);
444 #else
445 if (pf == PF_BRIDGE) {
446 /* Case 1: outdev is physical input device, we need to
447 * look for bridge group (when called from
448 * netfilter_bridge) */
449 NFA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV,
450 sizeof(tmp_uint), &tmp_uint);
451 /* this is the bridge group "brX" */
452 tmp_uint = htonl(indev->br_port->br->dev->ifindex);
453 NFA_PUT(inst->skb, NFULA_IFINDEX_INDEV,
454 sizeof(tmp_uint), &tmp_uint);
455 } else {
456 /* Case 2: indev is bridge group, we need to look for
457 * physical device (when called from ipv4) */
458 NFA_PUT(inst->skb, NFULA_IFINDEX_INDEV,
459 sizeof(tmp_uint), &tmp_uint);
460 if (skb->nf_bridge && skb->nf_bridge->physindev) {
461 tmp_uint =
462 htonl(skb->nf_bridge->physindev->ifindex);
463 NFA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV,
464 sizeof(tmp_uint), &tmp_uint);
467 #endif
470 if (outdev) {
471 tmp_uint = htonl(outdev->ifindex);
472 #ifndef CONFIG_BRIDGE_NETFILTER
473 NFA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV, sizeof(tmp_uint),
474 &tmp_uint);
475 #else
476 if (pf == PF_BRIDGE) {
477 /* Case 1: outdev is physical output device, we need to
478 * look for bridge group (when called from
479 * netfilter_bridge) */
480 NFA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
481 sizeof(tmp_uint), &tmp_uint);
482 /* this is the bridge group "brX" */
483 tmp_uint = htonl(outdev->br_port->br->dev->ifindex);
484 NFA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV,
485 sizeof(tmp_uint), &tmp_uint);
486 } else {
487 /* Case 2: indev is a bridge group, we need to look
488 * for physical device (when called from ipv4) */
489 NFA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV,
490 sizeof(tmp_uint), &tmp_uint);
491 if (skb->nf_bridge) {
492 tmp_uint =
493 htonl(skb->nf_bridge->physoutdev->ifindex);
494 NFA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
495 sizeof(tmp_uint), &tmp_uint);
498 #endif
501 if (skb->nfmark) {
502 tmp_uint = htonl(skb->nfmark);
503 NFA_PUT(inst->skb, NFULA_MARK, sizeof(tmp_uint), &tmp_uint);
506 if (indev && skb->dev && skb->dev->hard_header_parse) {
507 struct nfulnl_msg_packet_hw phw;
509 phw.hw_addrlen =
510 skb->dev->hard_header_parse((struct sk_buff *)skb,
511 phw.hw_addr);
512 phw.hw_addrlen = htons(phw.hw_addrlen);
513 NFA_PUT(inst->skb, NFULA_HWADDR, sizeof(phw), &phw);
516 if (skb->tstamp.off_sec) {
517 struct nfulnl_msg_packet_timestamp ts;
519 ts.sec = cpu_to_be64(skb->tstamp.off_sec);
520 ts.usec = cpu_to_be64(skb->tstamp.off_usec);
522 NFA_PUT(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts);
525 /* UID */
526 if (skb->sk) {
527 read_lock_bh(&skb->sk->sk_callback_lock);
528 if (skb->sk->sk_socket && skb->sk->sk_socket->file) {
529 u_int32_t uid = htonl(skb->sk->sk_socket->file->f_uid);
530 /* need to unlock here since NFA_PUT may goto */
531 read_unlock_bh(&skb->sk->sk_callback_lock);
532 NFA_PUT(inst->skb, NFULA_UID, sizeof(uid), &uid);
533 } else
534 read_unlock_bh(&skb->sk->sk_callback_lock);
537 /* local sequence number */
538 if (inst->flags & NFULNL_CFG_F_SEQ) {
539 tmp_uint = htonl(inst->seq++);
540 NFA_PUT(inst->skb, NFULA_SEQ, sizeof(tmp_uint), &tmp_uint);
542 /* global sequence number */
543 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) {
544 tmp_uint = htonl(atomic_inc_return(&global_seq));
545 NFA_PUT(inst->skb, NFULA_SEQ_GLOBAL, sizeof(tmp_uint), &tmp_uint);
548 if (data_len) {
549 struct nfattr *nfa;
550 int size = NFA_LENGTH(data_len);
552 if (skb_tailroom(inst->skb) < (int)NFA_SPACE(data_len)) {
553 printk(KERN_WARNING "nfnetlink_log: no tailroom!\n");
554 goto nlmsg_failure;
557 nfa = (struct nfattr *)skb_put(inst->skb, NFA_ALIGN(size));
558 nfa->nfa_type = NFULA_PAYLOAD;
559 nfa->nfa_len = size;
561 if (skb_copy_bits(skb, 0, NFA_DATA(nfa), data_len))
562 BUG();
565 nlh->nlmsg_len = inst->skb->tail - old_tail;
566 return 0;
568 nlmsg_failure:
569 UDEBUG("nlmsg_failure\n");
570 nfattr_failure:
571 PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
572 return -1;
575 #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
577 static struct nf_loginfo default_loginfo = {
578 .type = NF_LOG_TYPE_ULOG,
579 .u = {
580 .ulog = {
581 .copy_len = 0xffff,
582 .group = 0,
583 .qthreshold = 1,
588 /* log handler for internal netfilter logging api */
589 static void
590 nfulnl_log_packet(unsigned int pf,
591 unsigned int hooknum,
592 const struct sk_buff *skb,
593 const struct net_device *in,
594 const struct net_device *out,
595 const struct nf_loginfo *li_user,
596 const char *prefix)
598 unsigned int size, data_len, prefix_len;
599 struct nfulnl_instance *inst;
600 const struct nf_loginfo *li;
601 unsigned int qthreshold;
602 unsigned int nlbufsiz;
604 if (li_user && li_user->type == NF_LOG_TYPE_ULOG)
605 li = li_user;
606 else
607 li = &default_loginfo;
609 inst = instance_lookup_get(li->u.ulog.group);
610 if (!inst)
611 inst = instance_lookup_get(0);
612 if (!inst) {
613 PRINTR("nfnetlink_log: trying to log packet, "
614 "but no instance for group %u\n", li->u.ulog.group);
615 return;
618 /* all macros expand to constant values at compile time */
619 /* FIXME: do we want to make the size calculation conditional based on
620 * what is actually present? way more branches and checks, but more
621 * memory efficient... */
622 size = NLMSG_SPACE(sizeof(struct nfgenmsg))
623 + NFA_SPACE(sizeof(struct nfulnl_msg_packet_hdr))
624 + NFA_SPACE(sizeof(u_int32_t)) /* ifindex */
625 + NFA_SPACE(sizeof(u_int32_t)) /* ifindex */
626 #ifdef CONFIG_BRIDGE_NETFILTER
627 + NFA_SPACE(sizeof(u_int32_t)) /* ifindex */
628 + NFA_SPACE(sizeof(u_int32_t)) /* ifindex */
629 #endif
630 + NFA_SPACE(sizeof(u_int32_t)) /* mark */
631 + NFA_SPACE(sizeof(u_int32_t)) /* uid */
632 + NFA_SPACE(sizeof(struct nfulnl_msg_packet_hw))
633 + NFA_SPACE(sizeof(struct nfulnl_msg_packet_timestamp));
635 if (prefix) {
636 prefix_len = strlen(prefix) + 1;
637 size += NFA_SPACE(prefix_len);
638 } else
639 prefix_len = 0;
641 UDEBUG("initial size=%u\n", size);
643 spin_lock_bh(&inst->lock);
645 if (inst->flags & NFULNL_CFG_F_SEQ)
646 size += NFA_SPACE(sizeof(u_int32_t));
647 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
648 size += NFA_SPACE(sizeof(u_int32_t));
650 qthreshold = inst->qthreshold;
651 /* per-rule qthreshold overrides per-instance */
652 if (qthreshold > li->u.ulog.qthreshold)
653 qthreshold = li->u.ulog.qthreshold;
655 switch (inst->copy_mode) {
656 case NFULNL_COPY_META:
657 case NFULNL_COPY_NONE:
658 data_len = 0;
659 break;
661 case NFULNL_COPY_PACKET:
662 if (inst->copy_range == 0
663 || inst->copy_range > skb->len)
664 data_len = skb->len;
665 else
666 data_len = inst->copy_range;
668 size += NFA_SPACE(data_len);
669 UDEBUG("copy_packet, therefore size now %u\n", size);
670 break;
672 default:
673 spin_unlock_bh(&inst->lock);
674 instance_put(inst);
675 return;
678 if (size > inst->nlbufsiz)
679 nlbufsiz = size;
680 else
681 nlbufsiz = inst->nlbufsiz;
683 if (!inst->skb) {
684 if (!(inst->skb = nfulnl_alloc_skb(nlbufsiz, size))) {
685 UDEBUG("error in nfulnl_alloc_skb(%u, %u)\n",
686 inst->nlbufsiz, size);
687 goto alloc_failure;
689 } else if (inst->qlen >= qthreshold ||
690 size > skb_tailroom(inst->skb)) {
691 /* either the queue len is too high or we don't have
692 * enough room in the skb left. flush to userspace. */
693 UDEBUG("flushing old skb\n");
695 __nfulnl_send(inst);
697 if (!(inst->skb = nfulnl_alloc_skb(nlbufsiz, size))) {
698 UDEBUG("error in nfulnl_alloc_skb(%u, %u)\n",
699 inst->nlbufsiz, size);
700 goto alloc_failure;
704 UDEBUG("qlen %d, qthreshold %d\n", inst->qlen, qthreshold);
705 inst->qlen++;
707 __build_packet_message(inst, skb, data_len, pf,
708 hooknum, in, out, li, prefix, prefix_len);
710 /* timer_pending always called within inst->lock, so there
711 * is no chance of a race here */
712 if (!timer_pending(&inst->timer)) {
713 instance_get(inst);
714 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
715 add_timer(&inst->timer);
717 spin_unlock_bh(&inst->lock);
719 return;
721 alloc_failure:
722 spin_unlock_bh(&inst->lock);
723 instance_put(inst);
724 UDEBUG("error allocating skb\n");
725 /* FIXME: statistics */
728 static int
729 nfulnl_rcv_nl_event(struct notifier_block *this,
730 unsigned long event, void *ptr)
732 struct netlink_notify *n = ptr;
734 if (event == NETLINK_URELEASE &&
735 n->protocol == NETLINK_NETFILTER && n->pid) {
736 int i;
738 /* destroy all instances for this pid */
739 write_lock_bh(&instances_lock);
740 for (i = 0; i < INSTANCE_BUCKETS; i++) {
741 struct hlist_node *tmp, *t2;
742 struct nfulnl_instance *inst;
743 struct hlist_head *head = &instance_table[i];
745 hlist_for_each_entry_safe(inst, tmp, t2, head, hlist) {
746 UDEBUG("node = %p\n", inst);
747 if (n->pid == inst->peer_pid)
748 __instance_destroy(inst);
751 write_unlock_bh(&instances_lock);
753 return NOTIFY_DONE;
756 static struct notifier_block nfulnl_rtnl_notifier = {
757 .notifier_call = nfulnl_rcv_nl_event,
760 static int
761 nfulnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
762 struct nlmsghdr *nlh, struct nfattr *nfqa[], int *errp)
764 return -ENOTSUPP;
767 static struct nf_logger nfulnl_logger = {
768 .name = "nfnetlink_log",
769 .logfn = &nfulnl_log_packet,
770 .me = THIS_MODULE,
773 static const int nfula_min[NFULA_MAX] = {
774 [NFULA_PACKET_HDR-1] = sizeof(struct nfulnl_msg_packet_hdr),
775 [NFULA_MARK-1] = sizeof(u_int32_t),
776 [NFULA_TIMESTAMP-1] = sizeof(struct nfulnl_msg_packet_timestamp),
777 [NFULA_IFINDEX_INDEV-1] = sizeof(u_int32_t),
778 [NFULA_IFINDEX_OUTDEV-1]= sizeof(u_int32_t),
779 [NFULA_IFINDEX_PHYSINDEV-1] = sizeof(u_int32_t),
780 [NFULA_IFINDEX_PHYSOUTDEV-1] = sizeof(u_int32_t),
781 [NFULA_HWADDR-1] = sizeof(struct nfulnl_msg_packet_hw),
782 [NFULA_PAYLOAD-1] = 0,
783 [NFULA_PREFIX-1] = 0,
784 [NFULA_UID-1] = sizeof(u_int32_t),
785 [NFULA_SEQ-1] = sizeof(u_int32_t),
786 [NFULA_SEQ_GLOBAL-1] = sizeof(u_int32_t),
789 static const int nfula_cfg_min[NFULA_CFG_MAX] = {
790 [NFULA_CFG_CMD-1] = sizeof(struct nfulnl_msg_config_cmd),
791 [NFULA_CFG_MODE-1] = sizeof(struct nfulnl_msg_config_mode),
792 [NFULA_CFG_TIMEOUT-1] = sizeof(u_int32_t),
793 [NFULA_CFG_QTHRESH-1] = sizeof(u_int32_t),
794 [NFULA_CFG_NLBUFSIZ-1] = sizeof(u_int32_t),
795 [NFULA_CFG_FLAGS-1] = sizeof(u_int16_t),
798 static int
799 nfulnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
800 struct nlmsghdr *nlh, struct nfattr *nfula[], int *errp)
802 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
803 u_int16_t group_num = ntohs(nfmsg->res_id);
804 struct nfulnl_instance *inst;
805 int ret = 0;
807 UDEBUG("entering for msg %u\n", NFNL_MSG_TYPE(nlh->nlmsg_type));
809 if (nfattr_bad_size(nfula, NFULA_CFG_MAX, nfula_cfg_min)) {
810 UDEBUG("bad attribute size\n");
811 return -EINVAL;
814 inst = instance_lookup_get(group_num);
815 if (nfula[NFULA_CFG_CMD-1]) {
816 u_int8_t pf = nfmsg->nfgen_family;
817 struct nfulnl_msg_config_cmd *cmd;
818 cmd = NFA_DATA(nfula[NFULA_CFG_CMD-1]);
819 UDEBUG("found CFG_CMD for\n");
821 switch (cmd->command) {
822 case NFULNL_CFG_CMD_BIND:
823 if (inst) {
824 ret = -EBUSY;
825 goto out_put;
828 inst = instance_create(group_num,
829 NETLINK_CB(skb).pid);
830 if (!inst) {
831 ret = -EINVAL;
832 goto out_put;
834 break;
835 case NFULNL_CFG_CMD_UNBIND:
836 if (!inst) {
837 ret = -ENODEV;
838 goto out_put;
841 if (inst->peer_pid != NETLINK_CB(skb).pid) {
842 ret = -EPERM;
843 goto out_put;
846 instance_destroy(inst);
847 break;
848 case NFULNL_CFG_CMD_PF_BIND:
849 UDEBUG("registering log handler for pf=%u\n", pf);
850 ret = nf_log_register(pf, &nfulnl_logger);
851 break;
852 case NFULNL_CFG_CMD_PF_UNBIND:
853 UDEBUG("unregistering log handler for pf=%u\n", pf);
854 /* This is a bug and a feature. We cannot unregister
855 * other handlers, like nfnetlink_inst can */
856 nf_log_unregister_pf(pf);
857 break;
858 default:
859 ret = -EINVAL;
860 break;
862 } else {
863 if (!inst) {
864 UDEBUG("no config command, and no instance for "
865 "group=%u pid=%u =>ENOENT\n",
866 group_num, NETLINK_CB(skb).pid);
867 ret = -ENOENT;
868 goto out_put;
871 if (inst->peer_pid != NETLINK_CB(skb).pid) {
872 UDEBUG("no config command, and wrong pid\n");
873 ret = -EPERM;
874 goto out_put;
878 if (nfula[NFULA_CFG_MODE-1]) {
879 struct nfulnl_msg_config_mode *params;
880 params = NFA_DATA(nfula[NFULA_CFG_MODE-1]);
882 nfulnl_set_mode(inst, params->copy_mode,
883 ntohl(params->copy_range));
886 if (nfula[NFULA_CFG_TIMEOUT-1]) {
887 u_int32_t timeout =
888 *(u_int32_t *)NFA_DATA(nfula[NFULA_CFG_TIMEOUT-1]);
890 nfulnl_set_timeout(inst, ntohl(timeout));
893 if (nfula[NFULA_CFG_NLBUFSIZ-1]) {
894 u_int32_t nlbufsiz =
895 *(u_int32_t *)NFA_DATA(nfula[NFULA_CFG_NLBUFSIZ-1]);
897 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
900 if (nfula[NFULA_CFG_QTHRESH-1]) {
901 __be32 qthresh =
902 *(__be32 *)NFA_DATA(nfula[NFULA_CFG_QTHRESH-1]);
904 nfulnl_set_qthresh(inst, ntohl(qthresh));
907 if (nfula[NFULA_CFG_FLAGS-1]) {
908 u_int16_t flags =
909 *(u_int16_t *)NFA_DATA(nfula[NFULA_CFG_FLAGS-1]);
910 nfulnl_set_flags(inst, ntohs(flags));
913 out_put:
914 instance_put(inst);
915 return ret;
918 static struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
919 [NFULNL_MSG_PACKET] = { .call = nfulnl_recv_unsupp,
920 .attr_count = NFULA_MAX, },
921 [NFULNL_MSG_CONFIG] = { .call = nfulnl_recv_config,
922 .attr_count = NFULA_CFG_MAX, },
925 static struct nfnetlink_subsystem nfulnl_subsys = {
926 .name = "log",
927 .subsys_id = NFNL_SUBSYS_ULOG,
928 .cb_count = NFULNL_MSG_MAX,
929 .cb = nfulnl_cb,
932 #ifdef CONFIG_PROC_FS
933 struct iter_state {
934 unsigned int bucket;
937 static struct hlist_node *get_first(struct seq_file *seq)
939 struct iter_state *st = seq->private;
941 if (!st)
942 return NULL;
944 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
945 if (!hlist_empty(&instance_table[st->bucket]))
946 return instance_table[st->bucket].first;
948 return NULL;
951 static struct hlist_node *get_next(struct seq_file *seq, struct hlist_node *h)
953 struct iter_state *st = seq->private;
955 h = h->next;
956 while (!h) {
957 if (++st->bucket >= INSTANCE_BUCKETS)
958 return NULL;
960 h = instance_table[st->bucket].first;
962 return h;
965 static struct hlist_node *get_idx(struct seq_file *seq, loff_t pos)
967 struct hlist_node *head;
968 head = get_first(seq);
970 if (head)
971 while (pos && (head = get_next(seq, head)))
972 pos--;
973 return pos ? NULL : head;
976 static void *seq_start(struct seq_file *seq, loff_t *pos)
978 read_lock_bh(&instances_lock);
979 return get_idx(seq, *pos);
982 static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
984 (*pos)++;
985 return get_next(s, v);
988 static void seq_stop(struct seq_file *s, void *v)
990 read_unlock_bh(&instances_lock);
993 static int seq_show(struct seq_file *s, void *v)
995 const struct nfulnl_instance *inst = v;
997 return seq_printf(s, "%5d %6d %5d %1d %5d %6d %2d\n",
998 inst->group_num,
999 inst->peer_pid, inst->qlen,
1000 inst->copy_mode, inst->copy_range,
1001 inst->flushtimeout, atomic_read(&inst->use));
1004 static struct seq_operations nful_seq_ops = {
1005 .start = seq_start,
1006 .next = seq_next,
1007 .stop = seq_stop,
1008 .show = seq_show,
1011 static int nful_open(struct inode *inode, struct file *file)
1013 struct seq_file *seq;
1014 struct iter_state *is;
1015 int ret;
1017 is = kzalloc(sizeof(*is), GFP_KERNEL);
1018 if (!is)
1019 return -ENOMEM;
1020 ret = seq_open(file, &nful_seq_ops);
1021 if (ret < 0)
1022 goto out_free;
1023 seq = file->private_data;
1024 seq->private = is;
1025 return ret;
1026 out_free:
1027 kfree(is);
1028 return ret;
1031 static struct file_operations nful_file_ops = {
1032 .owner = THIS_MODULE,
1033 .open = nful_open,
1034 .read = seq_read,
1035 .llseek = seq_lseek,
1036 .release = seq_release_private,
1039 #endif /* PROC_FS */
1041 static int __init nfnetlink_log_init(void)
1043 int i, status = -ENOMEM;
1044 #ifdef CONFIG_PROC_FS
1045 struct proc_dir_entry *proc_nful;
1046 #endif
1048 for (i = 0; i < INSTANCE_BUCKETS; i++)
1049 INIT_HLIST_HEAD(&instance_table[i]);
1051 /* it's not really all that important to have a random value, so
1052 * we can do this from the init function, even if there hasn't
1053 * been that much entropy yet */
1054 get_random_bytes(&hash_init, sizeof(hash_init));
1056 netlink_register_notifier(&nfulnl_rtnl_notifier);
1057 status = nfnetlink_subsys_register(&nfulnl_subsys);
1058 if (status < 0) {
1059 printk(KERN_ERR "log: failed to create netlink socket\n");
1060 goto cleanup_netlink_notifier;
1063 #ifdef CONFIG_PROC_FS
1064 proc_nful = create_proc_entry("nfnetlink_log", 0440,
1065 proc_net_netfilter);
1066 if (!proc_nful)
1067 goto cleanup_subsys;
1068 proc_nful->proc_fops = &nful_file_ops;
1069 #endif
1070 return status;
1072 #ifdef CONFIG_PROC_FS
1073 cleanup_subsys:
1074 nfnetlink_subsys_unregister(&nfulnl_subsys);
1075 #endif
1076 cleanup_netlink_notifier:
1077 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1078 return status;
1081 static void __exit nfnetlink_log_fini(void)
1083 nf_log_unregister_logger(&nfulnl_logger);
1084 #ifdef CONFIG_PROC_FS
1085 remove_proc_entry("nfnetlink_log", proc_net_netfilter);
1086 #endif
1087 nfnetlink_subsys_unregister(&nfulnl_subsys);
1088 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1091 MODULE_DESCRIPTION("netfilter userspace logging");
1092 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1093 MODULE_LICENSE("GPL");
1094 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
1096 module_init(nfnetlink_log_init);
1097 module_exit(nfnetlink_log_fini);