2 * This is a module which is used for logging packets to userspace via
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 #include <linux/module.h>
15 #include <linux/skbuff.h>
16 #include <linux/init.h>
18 #include <linux/ipv6.h>
19 #include <linux/netdevice.h>
20 #include <linux/netfilter.h>
21 #include <linux/netlink.h>
22 #include <linux/netfilter/nfnetlink.h>
23 #include <linux/netfilter/nfnetlink_log.h>
24 #include <linux/spinlock.h>
25 #include <linux/sysctl.h>
26 #include <linux/proc_fs.h>
27 #include <linux/security.h>
28 #include <linux/list.h>
29 #include <linux/jhash.h>
30 #include <linux/random.h>
32 #include <net/netfilter/nf_log.h>
34 #include <asm/atomic.h>
36 #ifdef CONFIG_BRIDGE_NETFILTER
37 #include "../bridge/br_private.h"
40 #define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
41 #define NFULNL_TIMEOUT_DEFAULT HZ /* every second */
42 #define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
43 #define NFULNL_COPY_RANGE_MAX 0xFFFF /* max packet size is limited by 16-bit struct nfattr nfa_len field */
45 #define PRINTR(x, args...) do { if (net_ratelimit()) \
46 printk(x, ## args); } while (0);
49 #define UDEBUG(x, args ...) printk(KERN_DEBUG "%s(%d):%s(): " x, \
50 __FILE__, __LINE__, __FUNCTION__, \
53 #define UDEBUG(x, ...)
56 struct nfulnl_instance {
57 struct hlist_node hlist; /* global list of instances */
59 atomic_t use; /* use count */
61 unsigned int qlen; /* number of nlmsgs in skb */
62 struct sk_buff *skb; /* pre-allocatd skb */
63 struct timer_list timer;
64 int peer_pid; /* PID of the peer process */
66 /* configurable parameters */
67 unsigned int flushtimeout; /* timeout until queue flush */
68 unsigned int nlbufsiz; /* netlink buffer allocation size */
69 unsigned int qthreshold; /* threshold of the queue */
71 u_int32_t seq; /* instance-local sequential counter */
72 u_int16_t group_num; /* number of this queue */
77 static DEFINE_RWLOCK(instances_lock);
78 static atomic_t global_seq;
80 #define INSTANCE_BUCKETS 16
81 static struct hlist_head instance_table[INSTANCE_BUCKETS];
82 static unsigned int hash_init;
84 static inline u_int8_t instance_hashfn(u_int16_t group_num)
86 return ((group_num & 0xff) % INSTANCE_BUCKETS);
89 static struct nfulnl_instance *
90 __instance_lookup(u_int16_t group_num)
92 struct hlist_head *head;
93 struct hlist_node *pos;
94 struct nfulnl_instance *inst;
96 UDEBUG("entering (group_num=%u)\n", group_num);
98 head = &instance_table[instance_hashfn(group_num)];
99 hlist_for_each_entry(inst, pos, head, hlist) {
100 if (inst->group_num == group_num)
107 instance_get(struct nfulnl_instance *inst)
109 atomic_inc(&inst->use);
112 static struct nfulnl_instance *
113 instance_lookup_get(u_int16_t group_num)
115 struct nfulnl_instance *inst;
117 read_lock_bh(&instances_lock);
118 inst = __instance_lookup(group_num);
121 read_unlock_bh(&instances_lock);
127 instance_put(struct nfulnl_instance *inst)
129 if (inst && atomic_dec_and_test(&inst->use)) {
130 UDEBUG("kfree(inst=%p)\n", inst);
132 module_put(THIS_MODULE);
136 static void nfulnl_timer(unsigned long data);
138 static struct nfulnl_instance *
139 instance_create(u_int16_t group_num, int pid)
141 struct nfulnl_instance *inst;
143 UDEBUG("entering (group_num=%u, pid=%d)\n", group_num,
146 write_lock_bh(&instances_lock);
147 if (__instance_lookup(group_num)) {
149 UDEBUG("aborting, instance already exists\n");
153 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
157 if (!try_module_get(THIS_MODULE)) {
162 INIT_HLIST_NODE(&inst->hlist);
163 spin_lock_init(&inst->lock);
164 /* needs to be two, since we _put() after creation */
165 atomic_set(&inst->use, 2);
167 setup_timer(&inst->timer, nfulnl_timer, (unsigned long)inst);
169 inst->peer_pid = pid;
170 inst->group_num = group_num;
172 inst->qthreshold = NFULNL_QTHRESH_DEFAULT;
173 inst->flushtimeout = NFULNL_TIMEOUT_DEFAULT;
174 inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT;
175 inst->copy_mode = NFULNL_COPY_PACKET;
176 inst->copy_range = NFULNL_COPY_RANGE_MAX;
178 hlist_add_head(&inst->hlist,
179 &instance_table[instance_hashfn(group_num)]);
181 UDEBUG("newly added node: %p, next=%p\n", &inst->hlist,
184 write_unlock_bh(&instances_lock);
189 write_unlock_bh(&instances_lock);
193 static void __nfulnl_flush(struct nfulnl_instance *inst);
196 __instance_destroy(struct nfulnl_instance *inst)
198 /* first pull it out of the global list */
199 UDEBUG("removing instance %p (queuenum=%u) from hash\n",
200 inst, inst->group_num);
202 hlist_del(&inst->hlist);
204 /* then flush all pending packets from skb */
206 spin_lock_bh(&inst->lock);
208 __nfulnl_flush(inst);
209 spin_unlock_bh(&inst->lock);
211 /* and finally put the refcount */
216 instance_destroy(struct nfulnl_instance *inst)
218 write_lock_bh(&instances_lock);
219 __instance_destroy(inst);
220 write_unlock_bh(&instances_lock);
224 nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
229 spin_lock_bh(&inst->lock);
232 case NFULNL_COPY_NONE:
233 case NFULNL_COPY_META:
234 inst->copy_mode = mode;
235 inst->copy_range = 0;
238 case NFULNL_COPY_PACKET:
239 inst->copy_mode = mode;
240 inst->copy_range = min_t(unsigned int,
241 range, NFULNL_COPY_RANGE_MAX);
249 spin_unlock_bh(&inst->lock);
255 nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
259 spin_lock_bh(&inst->lock);
260 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
262 else if (nlbufsiz > 131072)
265 inst->nlbufsiz = nlbufsiz;
268 spin_unlock_bh(&inst->lock);
274 nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
276 spin_lock_bh(&inst->lock);
277 inst->flushtimeout = timeout;
278 spin_unlock_bh(&inst->lock);
284 nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
286 spin_lock_bh(&inst->lock);
287 inst->qthreshold = qthresh;
288 spin_unlock_bh(&inst->lock);
294 nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
296 spin_lock_bh(&inst->lock);
298 spin_unlock_bh(&inst->lock);
303 static struct sk_buff *
304 nfulnl_alloc_skb(unsigned int inst_size, unsigned int pkt_size)
309 UDEBUG("entered (%u, %u)\n", inst_size, pkt_size);
311 /* alloc skb which should be big enough for a whole multipart
312 * message. WARNING: has to be <= 128k due to slab restrictions */
314 n = max(inst_size, pkt_size);
315 skb = alloc_skb(n, GFP_ATOMIC);
317 PRINTR("nfnetlink_log: can't alloc whole buffer (%u bytes)\n",
321 /* try to allocate only as much as we need for current
324 skb = alloc_skb(pkt_size, GFP_ATOMIC);
326 PRINTR("nfnetlink_log: can't even alloc %u "
327 "bytes\n", pkt_size);
335 __nfulnl_send(struct nfulnl_instance *inst)
340 NLMSG_PUT(inst->skb, 0, 0,
342 sizeof(struct nfgenmsg));
344 status = nfnetlink_unicast(inst->skb, inst->peer_pid, MSG_DONTWAIT);
346 UDEBUG("netlink_unicast() failed\n");
347 /* FIXME: statistics */
358 __nfulnl_flush(struct nfulnl_instance *inst)
360 /* timer holds a reference */
361 if (del_timer(&inst->timer))
368 nfulnl_timer(unsigned long data)
370 struct nfulnl_instance *inst = (struct nfulnl_instance *)data;
372 UDEBUG("timer function called, flushing buffer\n");
374 spin_lock_bh(&inst->lock);
377 spin_unlock_bh(&inst->lock);
381 /* This is an inline function, we don't really care about a long
382 * list of arguments */
384 __build_packet_message(struct nfulnl_instance *inst,
385 const struct sk_buff *skb,
386 unsigned int data_len,
388 unsigned int hooknum,
389 const struct net_device *indev,
390 const struct net_device *outdev,
391 const struct nf_loginfo *li,
392 const char *prefix, unsigned int plen)
394 struct nfulnl_msg_packet_hdr pmsg;
395 struct nlmsghdr *nlh;
396 struct nfgenmsg *nfmsg;
398 sk_buff_data_t old_tail = inst->skb->tail;
402 nlh = NLMSG_PUT(inst->skb, 0, 0,
403 NFNL_SUBSYS_ULOG << 8 | NFULNL_MSG_PACKET,
404 sizeof(struct nfgenmsg));
405 nfmsg = NLMSG_DATA(nlh);
406 nfmsg->nfgen_family = pf;
407 nfmsg->version = NFNETLINK_V0;
408 nfmsg->res_id = htons(inst->group_num);
410 pmsg.hw_protocol = skb->protocol;
413 NLA_PUT(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg);
416 NLA_PUT(inst->skb, NFULA_PREFIX, plen, prefix);
419 tmp_uint = htonl(indev->ifindex);
420 #ifndef CONFIG_BRIDGE_NETFILTER
421 NLA_PUT(inst->skb, NFULA_IFINDEX_INDEV, sizeof(tmp_uint),
424 if (pf == PF_BRIDGE) {
425 /* Case 1: outdev is physical input device, we need to
426 * look for bridge group (when called from
427 * netfilter_bridge) */
428 NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV,
429 sizeof(tmp_uint), &tmp_uint);
430 /* this is the bridge group "brX" */
431 tmp_uint = htonl(indev->br_port->br->dev->ifindex);
432 NLA_PUT(inst->skb, NFULA_IFINDEX_INDEV,
433 sizeof(tmp_uint), &tmp_uint);
435 /* Case 2: indev is bridge group, we need to look for
436 * physical device (when called from ipv4) */
437 NLA_PUT(inst->skb, NFULA_IFINDEX_INDEV,
438 sizeof(tmp_uint), &tmp_uint);
439 if (skb->nf_bridge && skb->nf_bridge->physindev) {
441 htonl(skb->nf_bridge->physindev->ifindex);
442 NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV,
443 sizeof(tmp_uint), &tmp_uint);
450 tmp_uint = htonl(outdev->ifindex);
451 #ifndef CONFIG_BRIDGE_NETFILTER
452 NLA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV, sizeof(tmp_uint),
455 if (pf == PF_BRIDGE) {
456 /* Case 1: outdev is physical output device, we need to
457 * look for bridge group (when called from
458 * netfilter_bridge) */
459 NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
460 sizeof(tmp_uint), &tmp_uint);
461 /* this is the bridge group "brX" */
462 tmp_uint = htonl(outdev->br_port->br->dev->ifindex);
463 NLA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV,
464 sizeof(tmp_uint), &tmp_uint);
466 /* Case 2: indev is a bridge group, we need to look
467 * for physical device (when called from ipv4) */
468 NLA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV,
469 sizeof(tmp_uint), &tmp_uint);
470 if (skb->nf_bridge && skb->nf_bridge->physoutdev) {
472 htonl(skb->nf_bridge->physoutdev->ifindex);
473 NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
474 sizeof(tmp_uint), &tmp_uint);
481 tmp_uint = htonl(skb->mark);
482 NLA_PUT(inst->skb, NFULA_MARK, sizeof(tmp_uint), &tmp_uint);
485 if (indev && skb->dev) {
486 struct nfulnl_msg_packet_hw phw;
487 int len = dev_parse_header(skb, phw.hw_addr);
489 phw.hw_addrlen = htons(len);
490 NLA_PUT(inst->skb, NFULA_HWADDR, sizeof(phw), &phw);
494 if (skb->tstamp.tv64) {
495 struct nfulnl_msg_packet_timestamp ts;
496 struct timeval tv = ktime_to_timeval(skb->tstamp);
497 ts.sec = cpu_to_be64(tv.tv_sec);
498 ts.usec = cpu_to_be64(tv.tv_usec);
500 NLA_PUT(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts);
505 read_lock_bh(&skb->sk->sk_callback_lock);
506 if (skb->sk->sk_socket && skb->sk->sk_socket->file) {
507 __be32 uid = htonl(skb->sk->sk_socket->file->f_uid);
508 /* need to unlock here since NLA_PUT may goto */
509 read_unlock_bh(&skb->sk->sk_callback_lock);
510 NLA_PUT(inst->skb, NFULA_UID, sizeof(uid), &uid);
512 read_unlock_bh(&skb->sk->sk_callback_lock);
515 /* local sequence number */
516 if (inst->flags & NFULNL_CFG_F_SEQ) {
517 tmp_uint = htonl(inst->seq++);
518 NLA_PUT(inst->skb, NFULA_SEQ, sizeof(tmp_uint), &tmp_uint);
520 /* global sequence number */
521 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) {
522 tmp_uint = htonl(atomic_inc_return(&global_seq));
523 NLA_PUT(inst->skb, NFULA_SEQ_GLOBAL, sizeof(tmp_uint), &tmp_uint);
528 int size = nla_attr_size(data_len);
530 if (skb_tailroom(inst->skb) < nla_total_size(data_len)) {
531 printk(KERN_WARNING "nfnetlink_log: no tailroom!\n");
535 nla = (struct nlattr *)skb_put(inst->skb, nla_total_size(data_len));
536 nla->nla_type = NFULA_PAYLOAD;
539 if (skb_copy_bits(skb, 0, nla_data(nla), data_len))
543 nlh->nlmsg_len = inst->skb->tail - old_tail;
547 UDEBUG("nlmsg_failure\n");
549 PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
553 #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
555 static struct nf_loginfo default_loginfo = {
556 .type = NF_LOG_TYPE_ULOG,
566 /* log handler for internal netfilter logging api */
568 nfulnl_log_packet(unsigned int pf,
569 unsigned int hooknum,
570 const struct sk_buff *skb,
571 const struct net_device *in,
572 const struct net_device *out,
573 const struct nf_loginfo *li_user,
576 unsigned int size, data_len;
577 struct nfulnl_instance *inst;
578 const struct nf_loginfo *li;
579 unsigned int qthreshold;
582 if (li_user && li_user->type == NF_LOG_TYPE_ULOG)
585 li = &default_loginfo;
587 inst = instance_lookup_get(li->u.ulog.group);
593 plen = strlen(prefix) + 1;
595 /* FIXME: do we want to make the size calculation conditional based on
596 * what is actually present? way more branches and checks, but more
597 * memory efficient... */
598 size = NLMSG_ALIGN(sizeof(struct nfgenmsg))
599 + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr))
600 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
601 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
602 #ifdef CONFIG_BRIDGE_NETFILTER
603 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
604 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
606 + nla_total_size(sizeof(u_int32_t)) /* mark */
607 + nla_total_size(sizeof(u_int32_t)) /* uid */
608 + nla_total_size(plen) /* prefix */
609 + nla_total_size(sizeof(struct nfulnl_msg_packet_hw))
610 + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp));
612 UDEBUG("initial size=%u\n", size);
614 spin_lock_bh(&inst->lock);
616 if (inst->flags & NFULNL_CFG_F_SEQ)
617 size += nla_total_size(sizeof(u_int32_t));
618 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
619 size += nla_total_size(sizeof(u_int32_t));
621 qthreshold = inst->qthreshold;
622 /* per-rule qthreshold overrides per-instance */
623 if (qthreshold > li->u.ulog.qthreshold)
624 qthreshold = li->u.ulog.qthreshold;
626 switch (inst->copy_mode) {
627 case NFULNL_COPY_META:
628 case NFULNL_COPY_NONE:
632 case NFULNL_COPY_PACKET:
633 if (inst->copy_range == 0
634 || inst->copy_range > skb->len)
637 data_len = inst->copy_range;
639 size += nla_total_size(data_len);
640 UDEBUG("copy_packet, therefore size now %u\n", size);
644 goto unlock_and_release;
648 size > skb_tailroom(inst->skb) - sizeof(struct nfgenmsg)) {
649 /* either the queue len is too high or we don't have
650 * enough room in the skb left. flush to userspace. */
651 UDEBUG("flushing old skb\n");
653 __nfulnl_flush(inst);
657 inst->skb = nfulnl_alloc_skb(inst->nlbufsiz, size);
662 UDEBUG("qlen %d, qthreshold %d\n", inst->qlen, qthreshold);
665 __build_packet_message(inst, skb, data_len, pf,
666 hooknum, in, out, li, prefix, plen);
668 if (inst->qlen >= qthreshold)
669 __nfulnl_flush(inst);
670 /* timer_pending always called within inst->lock, so there
671 * is no chance of a race here */
672 else if (!timer_pending(&inst->timer)) {
674 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
675 add_timer(&inst->timer);
679 spin_unlock_bh(&inst->lock);
684 UDEBUG("error allocating skb\n");
685 /* FIXME: statistics */
686 goto unlock_and_release;
690 nfulnl_rcv_nl_event(struct notifier_block *this,
691 unsigned long event, void *ptr)
693 struct netlink_notify *n = ptr;
695 if (event == NETLINK_URELEASE &&
696 n->protocol == NETLINK_NETFILTER && n->pid) {
699 /* destroy all instances for this pid */
700 write_lock_bh(&instances_lock);
701 for (i = 0; i < INSTANCE_BUCKETS; i++) {
702 struct hlist_node *tmp, *t2;
703 struct nfulnl_instance *inst;
704 struct hlist_head *head = &instance_table[i];
706 hlist_for_each_entry_safe(inst, tmp, t2, head, hlist) {
707 UDEBUG("node = %p\n", inst);
708 if ((n->net == &init_net) &&
709 (n->pid == inst->peer_pid))
710 __instance_destroy(inst);
713 write_unlock_bh(&instances_lock);
718 static struct notifier_block nfulnl_rtnl_notifier = {
719 .notifier_call = nfulnl_rcv_nl_event,
723 nfulnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
724 struct nlmsghdr *nlh, struct nlattr *nfqa[])
729 static const struct nf_logger nfulnl_logger = {
730 .name = "nfnetlink_log",
731 .logfn = &nfulnl_log_packet,
735 static const struct nla_policy nfula_cfg_policy[NFULA_CFG_MAX+1] = {
736 [NFULA_CFG_CMD] = { .len = sizeof(struct nfulnl_msg_config_cmd) },
737 [NFULA_CFG_MODE] = { .len = sizeof(struct nfulnl_msg_config_mode) },
738 [NFULA_CFG_TIMEOUT] = { .type = NLA_U32 },
739 [NFULA_CFG_QTHRESH] = { .type = NLA_U32 },
740 [NFULA_CFG_NLBUFSIZ] = { .type = NLA_U32 },
741 [NFULA_CFG_FLAGS] = { .type = NLA_U16 },
745 nfulnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
746 struct nlmsghdr *nlh, struct nlattr *nfula[])
748 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
749 u_int16_t group_num = ntohs(nfmsg->res_id);
750 struct nfulnl_instance *inst;
753 UDEBUG("entering for msg %u\n", NFNL_MSG_TYPE(nlh->nlmsg_type));
755 inst = instance_lookup_get(group_num);
756 if (inst && inst->peer_pid != NETLINK_CB(skb).pid) {
761 if (nfula[NFULA_CFG_CMD]) {
762 u_int8_t pf = nfmsg->nfgen_family;
763 struct nfulnl_msg_config_cmd *cmd;
765 cmd = nla_data(nfula[NFULA_CFG_CMD]);
766 UDEBUG("found CFG_CMD for\n");
768 switch (cmd->command) {
769 case NFULNL_CFG_CMD_BIND:
775 inst = instance_create(group_num,
776 NETLINK_CB(skb).pid);
782 case NFULNL_CFG_CMD_UNBIND:
788 instance_destroy(inst);
790 case NFULNL_CFG_CMD_PF_BIND:
791 UDEBUG("registering log handler for pf=%u\n", pf);
792 ret = nf_log_register(pf, &nfulnl_logger);
794 case NFULNL_CFG_CMD_PF_UNBIND:
795 UDEBUG("unregistering log handler for pf=%u\n", pf);
796 /* This is a bug and a feature. We cannot unregister
797 * other handlers, like nfnetlink_inst can */
798 nf_log_unregister_pf(pf);
806 if (nfula[NFULA_CFG_MODE]) {
807 struct nfulnl_msg_config_mode *params;
808 params = nla_data(nfula[NFULA_CFG_MODE]);
814 nfulnl_set_mode(inst, params->copy_mode,
815 ntohl(params->copy_range));
818 if (nfula[NFULA_CFG_TIMEOUT]) {
820 *(__be32 *)nla_data(nfula[NFULA_CFG_TIMEOUT]);
826 nfulnl_set_timeout(inst, ntohl(timeout));
829 if (nfula[NFULA_CFG_NLBUFSIZ]) {
831 *(__be32 *)nla_data(nfula[NFULA_CFG_NLBUFSIZ]);
837 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
840 if (nfula[NFULA_CFG_QTHRESH]) {
842 *(__be32 *)nla_data(nfula[NFULA_CFG_QTHRESH]);
848 nfulnl_set_qthresh(inst, ntohl(qthresh));
851 if (nfula[NFULA_CFG_FLAGS]) {
853 *(__be16 *)nla_data(nfula[NFULA_CFG_FLAGS]);
859 nfulnl_set_flags(inst, ntohs(flags));
868 static const struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
869 [NFULNL_MSG_PACKET] = { .call = nfulnl_recv_unsupp,
870 .attr_count = NFULA_MAX, },
871 [NFULNL_MSG_CONFIG] = { .call = nfulnl_recv_config,
872 .attr_count = NFULA_CFG_MAX,
873 .policy = nfula_cfg_policy },
876 static const struct nfnetlink_subsystem nfulnl_subsys = {
878 .subsys_id = NFNL_SUBSYS_ULOG,
879 .cb_count = NFULNL_MSG_MAX,
883 #ifdef CONFIG_PROC_FS
888 static struct hlist_node *get_first(struct iter_state *st)
893 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
894 if (!hlist_empty(&instance_table[st->bucket]))
895 return instance_table[st->bucket].first;
900 static struct hlist_node *get_next(struct iter_state *st, struct hlist_node *h)
904 if (++st->bucket >= INSTANCE_BUCKETS)
907 h = instance_table[st->bucket].first;
912 static struct hlist_node *get_idx(struct iter_state *st, loff_t pos)
914 struct hlist_node *head;
915 head = get_first(st);
918 while (pos && (head = get_next(st, head)))
920 return pos ? NULL : head;
923 static void *seq_start(struct seq_file *seq, loff_t *pos)
925 read_lock_bh(&instances_lock);
926 return get_idx(seq->private, *pos);
929 static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
932 return get_next(s->private, v);
935 static void seq_stop(struct seq_file *s, void *v)
937 read_unlock_bh(&instances_lock);
940 static int seq_show(struct seq_file *s, void *v)
942 const struct nfulnl_instance *inst = v;
944 return seq_printf(s, "%5d %6d %5d %1d %5d %6d %2d\n",
946 inst->peer_pid, inst->qlen,
947 inst->copy_mode, inst->copy_range,
948 inst->flushtimeout, atomic_read(&inst->use));
951 static const struct seq_operations nful_seq_ops = {
958 static int nful_open(struct inode *inode, struct file *file)
960 return seq_open_private(file, &nful_seq_ops,
961 sizeof(struct iter_state));
964 static const struct file_operations nful_file_ops = {
965 .owner = THIS_MODULE,
969 .release = seq_release_private,
974 static int __init nfnetlink_log_init(void)
976 int i, status = -ENOMEM;
977 #ifdef CONFIG_PROC_FS
978 struct proc_dir_entry *proc_nful;
981 for (i = 0; i < INSTANCE_BUCKETS; i++)
982 INIT_HLIST_HEAD(&instance_table[i]);
984 /* it's not really all that important to have a random value, so
985 * we can do this from the init function, even if there hasn't
986 * been that much entropy yet */
987 get_random_bytes(&hash_init, sizeof(hash_init));
989 netlink_register_notifier(&nfulnl_rtnl_notifier);
990 status = nfnetlink_subsys_register(&nfulnl_subsys);
992 printk(KERN_ERR "log: failed to create netlink socket\n");
993 goto cleanup_netlink_notifier;
996 #ifdef CONFIG_PROC_FS
997 proc_nful = create_proc_entry("nfnetlink_log", 0440,
1000 goto cleanup_subsys;
1001 proc_nful->proc_fops = &nful_file_ops;
1005 #ifdef CONFIG_PROC_FS
1007 nfnetlink_subsys_unregister(&nfulnl_subsys);
1009 cleanup_netlink_notifier:
1010 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1014 static void __exit nfnetlink_log_fini(void)
1016 nf_log_unregister(&nfulnl_logger);
1017 #ifdef CONFIG_PROC_FS
1018 remove_proc_entry("nfnetlink_log", proc_net_netfilter);
1020 nfnetlink_subsys_unregister(&nfulnl_subsys);
1021 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1024 MODULE_DESCRIPTION("netfilter userspace logging");
1025 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1026 MODULE_LICENSE("GPL");
1027 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
1029 module_init(nfnetlink_log_init);
1030 module_exit(nfnetlink_log_fini);