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>
33 #include <asm/atomic.h>
35 #ifdef CONFIG_BRIDGE_NETFILTER
36 #include "../bridge/br_private.h"
39 #define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
40 #define NFULNL_TIMEOUT_DEFAULT HZ /* every second */
41 #define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
42 #define NFULNL_COPY_RANGE_MAX 0xFFFF /* max packet size is limited by 16-bit struct nfattr nfa_len field */
44 #define PRINTR(x, args...) do { if (net_ratelimit()) \
45 printk(x, ## args); } while (0);
48 #define UDEBUG(x, args ...) printk(KERN_DEBUG "%s(%d):%s(): " x, \
49 __FILE__, __LINE__, __FUNCTION__, \
52 #define UDEBUG(x, ...)
55 struct nfulnl_instance
{
56 struct hlist_node hlist
; /* global list of instances */
58 atomic_t use
; /* use count */
60 unsigned int qlen
; /* number of nlmsgs in skb */
61 struct sk_buff
*skb
; /* pre-allocatd skb */
62 struct timer_list timer
;
63 int peer_pid
; /* PID of the peer process */
65 /* configurable parameters */
66 unsigned int flushtimeout
; /* timeout until queue flush */
67 unsigned int nlbufsiz
; /* netlink buffer allocation size */
68 unsigned int qthreshold
; /* threshold of the queue */
70 u_int32_t seq
; /* instance-local sequential counter */
71 u_int16_t group_num
; /* number of this queue */
76 static DEFINE_RWLOCK(instances_lock
);
77 static atomic_t global_seq
;
79 #define INSTANCE_BUCKETS 16
80 static struct hlist_head instance_table
[INSTANCE_BUCKETS
];
81 static unsigned int hash_init
;
83 static inline u_int8_t
instance_hashfn(u_int16_t group_num
)
85 return ((group_num
& 0xff) % INSTANCE_BUCKETS
);
88 static struct nfulnl_instance
*
89 __instance_lookup(u_int16_t group_num
)
91 struct hlist_head
*head
;
92 struct hlist_node
*pos
;
93 struct nfulnl_instance
*inst
;
95 UDEBUG("entering (group_num=%u)\n", group_num
);
97 head
= &instance_table
[instance_hashfn(group_num
)];
98 hlist_for_each_entry(inst
, pos
, head
, hlist
) {
99 if (inst
->group_num
== group_num
)
106 instance_get(struct nfulnl_instance
*inst
)
108 atomic_inc(&inst
->use
);
111 static struct nfulnl_instance
*
112 instance_lookup_get(u_int16_t group_num
)
114 struct nfulnl_instance
*inst
;
116 read_lock_bh(&instances_lock
);
117 inst
= __instance_lookup(group_num
);
120 read_unlock_bh(&instances_lock
);
126 instance_put(struct nfulnl_instance
*inst
)
128 if (inst
&& atomic_dec_and_test(&inst
->use
)) {
129 UDEBUG("kfree(inst=%p)\n", inst
);
131 module_put(THIS_MODULE
);
135 static void nfulnl_timer(unsigned long data
);
137 static struct nfulnl_instance
*
138 instance_create(u_int16_t group_num
, int pid
)
140 struct nfulnl_instance
*inst
;
142 UDEBUG("entering (group_num=%u, pid=%d)\n", group_num
,
145 write_lock_bh(&instances_lock
);
146 if (__instance_lookup(group_num
)) {
148 UDEBUG("aborting, instance already exists\n");
152 inst
= kzalloc(sizeof(*inst
), GFP_ATOMIC
);
156 if (!try_module_get(THIS_MODULE
)) {
161 INIT_HLIST_NODE(&inst
->hlist
);
162 spin_lock_init(&inst
->lock
);
163 /* needs to be two, since we _put() after creation */
164 atomic_set(&inst
->use
, 2);
166 setup_timer(&inst
->timer
, nfulnl_timer
, (unsigned long)inst
);
168 inst
->peer_pid
= pid
;
169 inst
->group_num
= group_num
;
171 inst
->qthreshold
= NFULNL_QTHRESH_DEFAULT
;
172 inst
->flushtimeout
= NFULNL_TIMEOUT_DEFAULT
;
173 inst
->nlbufsiz
= NFULNL_NLBUFSIZ_DEFAULT
;
174 inst
->copy_mode
= NFULNL_COPY_PACKET
;
175 inst
->copy_range
= NFULNL_COPY_RANGE_MAX
;
177 hlist_add_head(&inst
->hlist
,
178 &instance_table
[instance_hashfn(group_num
)]);
180 UDEBUG("newly added node: %p, next=%p\n", &inst
->hlist
,
183 write_unlock_bh(&instances_lock
);
188 write_unlock_bh(&instances_lock
);
192 static void __nfulnl_flush(struct nfulnl_instance
*inst
);
195 __instance_destroy(struct nfulnl_instance
*inst
)
197 /* first pull it out of the global list */
198 UDEBUG("removing instance %p (queuenum=%u) from hash\n",
199 inst
, inst
->group_num
);
201 hlist_del(&inst
->hlist
);
203 /* then flush all pending packets from skb */
205 spin_lock_bh(&inst
->lock
);
207 __nfulnl_flush(inst
);
208 spin_unlock_bh(&inst
->lock
);
210 /* and finally put the refcount */
215 instance_destroy(struct nfulnl_instance
*inst
)
217 write_lock_bh(&instances_lock
);
218 __instance_destroy(inst
);
219 write_unlock_bh(&instances_lock
);
223 nfulnl_set_mode(struct nfulnl_instance
*inst
, u_int8_t mode
,
228 spin_lock_bh(&inst
->lock
);
231 case NFULNL_COPY_NONE
:
232 case NFULNL_COPY_META
:
233 inst
->copy_mode
= mode
;
234 inst
->copy_range
= 0;
237 case NFULNL_COPY_PACKET
:
238 inst
->copy_mode
= mode
;
239 inst
->copy_range
= min_t(unsigned int,
240 range
, NFULNL_COPY_RANGE_MAX
);
248 spin_unlock_bh(&inst
->lock
);
254 nfulnl_set_nlbufsiz(struct nfulnl_instance
*inst
, u_int32_t nlbufsiz
)
258 spin_lock_bh(&inst
->lock
);
259 if (nlbufsiz
< NFULNL_NLBUFSIZ_DEFAULT
)
261 else if (nlbufsiz
> 131072)
264 inst
->nlbufsiz
= nlbufsiz
;
267 spin_unlock_bh(&inst
->lock
);
273 nfulnl_set_timeout(struct nfulnl_instance
*inst
, u_int32_t timeout
)
275 spin_lock_bh(&inst
->lock
);
276 inst
->flushtimeout
= timeout
;
277 spin_unlock_bh(&inst
->lock
);
283 nfulnl_set_qthresh(struct nfulnl_instance
*inst
, u_int32_t qthresh
)
285 spin_lock_bh(&inst
->lock
);
286 inst
->qthreshold
= qthresh
;
287 spin_unlock_bh(&inst
->lock
);
293 nfulnl_set_flags(struct nfulnl_instance
*inst
, u_int16_t flags
)
295 spin_lock_bh(&inst
->lock
);
297 spin_unlock_bh(&inst
->lock
);
302 static struct sk_buff
*
303 nfulnl_alloc_skb(unsigned int inst_size
, unsigned int pkt_size
)
308 UDEBUG("entered (%u, %u)\n", inst_size
, pkt_size
);
310 /* alloc skb which should be big enough for a whole multipart
311 * message. WARNING: has to be <= 128k due to slab restrictions */
313 n
= max(inst_size
, pkt_size
);
314 skb
= alloc_skb(n
, GFP_ATOMIC
);
316 PRINTR("nfnetlink_log: can't alloc whole buffer (%u bytes)\n",
320 /* try to allocate only as much as we need for current
323 skb
= alloc_skb(pkt_size
, GFP_ATOMIC
);
325 PRINTR("nfnetlink_log: can't even alloc %u "
326 "bytes\n", pkt_size
);
334 __nfulnl_send(struct nfulnl_instance
*inst
)
339 NLMSG_PUT(inst
->skb
, 0, 0,
341 sizeof(struct nfgenmsg
));
343 status
= nfnetlink_unicast(inst
->skb
, inst
->peer_pid
, MSG_DONTWAIT
);
345 UDEBUG("netlink_unicast() failed\n");
346 /* FIXME: statistics */
357 __nfulnl_flush(struct nfulnl_instance
*inst
)
359 /* timer holds a reference */
360 if (del_timer(&inst
->timer
))
367 nfulnl_timer(unsigned long data
)
369 struct nfulnl_instance
*inst
= (struct nfulnl_instance
*)data
;
371 UDEBUG("timer function called, flushing buffer\n");
373 spin_lock_bh(&inst
->lock
);
376 spin_unlock_bh(&inst
->lock
);
380 /* This is an inline function, we don't really care about a long
381 * list of arguments */
383 __build_packet_message(struct nfulnl_instance
*inst
,
384 const struct sk_buff
*skb
,
385 unsigned int data_len
,
387 unsigned int hooknum
,
388 const struct net_device
*indev
,
389 const struct net_device
*outdev
,
390 const struct nf_loginfo
*li
,
391 const char *prefix
, unsigned int plen
)
393 struct nfulnl_msg_packet_hdr pmsg
;
394 struct nlmsghdr
*nlh
;
395 struct nfgenmsg
*nfmsg
;
397 sk_buff_data_t old_tail
= inst
->skb
->tail
;
401 nlh
= NLMSG_PUT(inst
->skb
, 0, 0,
402 NFNL_SUBSYS_ULOG
<< 8 | NFULNL_MSG_PACKET
,
403 sizeof(struct nfgenmsg
));
404 nfmsg
= NLMSG_DATA(nlh
);
405 nfmsg
->nfgen_family
= pf
;
406 nfmsg
->version
= NFNETLINK_V0
;
407 nfmsg
->res_id
= htons(inst
->group_num
);
409 pmsg
.hw_protocol
= skb
->protocol
;
412 NLA_PUT(inst
->skb
, NFULA_PACKET_HDR
, sizeof(pmsg
), &pmsg
);
415 NLA_PUT(inst
->skb
, NFULA_PREFIX
, plen
, prefix
);
418 tmp_uint
= htonl(indev
->ifindex
);
419 #ifndef CONFIG_BRIDGE_NETFILTER
420 NLA_PUT(inst
->skb
, NFULA_IFINDEX_INDEV
, sizeof(tmp_uint
),
423 if (pf
== PF_BRIDGE
) {
424 /* Case 1: outdev is physical input device, we need to
425 * look for bridge group (when called from
426 * netfilter_bridge) */
427 NLA_PUT(inst
->skb
, NFULA_IFINDEX_PHYSINDEV
,
428 sizeof(tmp_uint
), &tmp_uint
);
429 /* this is the bridge group "brX" */
430 tmp_uint
= htonl(indev
->br_port
->br
->dev
->ifindex
);
431 NLA_PUT(inst
->skb
, NFULA_IFINDEX_INDEV
,
432 sizeof(tmp_uint
), &tmp_uint
);
434 /* Case 2: indev is bridge group, we need to look for
435 * physical device (when called from ipv4) */
436 NLA_PUT(inst
->skb
, NFULA_IFINDEX_INDEV
,
437 sizeof(tmp_uint
), &tmp_uint
);
438 if (skb
->nf_bridge
&& skb
->nf_bridge
->physindev
) {
440 htonl(skb
->nf_bridge
->physindev
->ifindex
);
441 NLA_PUT(inst
->skb
, NFULA_IFINDEX_PHYSINDEV
,
442 sizeof(tmp_uint
), &tmp_uint
);
449 tmp_uint
= htonl(outdev
->ifindex
);
450 #ifndef CONFIG_BRIDGE_NETFILTER
451 NLA_PUT(inst
->skb
, NFULA_IFINDEX_OUTDEV
, sizeof(tmp_uint
),
454 if (pf
== PF_BRIDGE
) {
455 /* Case 1: outdev is physical output device, we need to
456 * look for bridge group (when called from
457 * netfilter_bridge) */
458 NLA_PUT(inst
->skb
, NFULA_IFINDEX_PHYSOUTDEV
,
459 sizeof(tmp_uint
), &tmp_uint
);
460 /* this is the bridge group "brX" */
461 tmp_uint
= htonl(outdev
->br_port
->br
->dev
->ifindex
);
462 NLA_PUT(inst
->skb
, NFULA_IFINDEX_OUTDEV
,
463 sizeof(tmp_uint
), &tmp_uint
);
465 /* Case 2: indev is a bridge group, we need to look
466 * for physical device (when called from ipv4) */
467 NLA_PUT(inst
->skb
, NFULA_IFINDEX_OUTDEV
,
468 sizeof(tmp_uint
), &tmp_uint
);
469 if (skb
->nf_bridge
&& skb
->nf_bridge
->physoutdev
) {
471 htonl(skb
->nf_bridge
->physoutdev
->ifindex
);
472 NLA_PUT(inst
->skb
, NFULA_IFINDEX_PHYSOUTDEV
,
473 sizeof(tmp_uint
), &tmp_uint
);
480 tmp_uint
= htonl(skb
->mark
);
481 NLA_PUT(inst
->skb
, NFULA_MARK
, sizeof(tmp_uint
), &tmp_uint
);
484 if (indev
&& skb
->dev
) {
485 struct nfulnl_msg_packet_hw phw
;
486 int len
= dev_parse_header(skb
, phw
.hw_addr
);
488 phw
.hw_addrlen
= htons(len
);
489 NLA_PUT(inst
->skb
, NFULA_HWADDR
, sizeof(phw
), &phw
);
493 if (skb
->tstamp
.tv64
) {
494 struct nfulnl_msg_packet_timestamp ts
;
495 struct timeval tv
= ktime_to_timeval(skb
->tstamp
);
496 ts
.sec
= cpu_to_be64(tv
.tv_sec
);
497 ts
.usec
= cpu_to_be64(tv
.tv_usec
);
499 NLA_PUT(inst
->skb
, NFULA_TIMESTAMP
, sizeof(ts
), &ts
);
504 read_lock_bh(&skb
->sk
->sk_callback_lock
);
505 if (skb
->sk
->sk_socket
&& skb
->sk
->sk_socket
->file
) {
506 __be32 uid
= htonl(skb
->sk
->sk_socket
->file
->f_uid
);
507 /* need to unlock here since NLA_PUT may goto */
508 read_unlock_bh(&skb
->sk
->sk_callback_lock
);
509 NLA_PUT(inst
->skb
, NFULA_UID
, sizeof(uid
), &uid
);
511 read_unlock_bh(&skb
->sk
->sk_callback_lock
);
514 /* local sequence number */
515 if (inst
->flags
& NFULNL_CFG_F_SEQ
) {
516 tmp_uint
= htonl(inst
->seq
++);
517 NLA_PUT(inst
->skb
, NFULA_SEQ
, sizeof(tmp_uint
), &tmp_uint
);
519 /* global sequence number */
520 if (inst
->flags
& NFULNL_CFG_F_SEQ_GLOBAL
) {
521 tmp_uint
= htonl(atomic_inc_return(&global_seq
));
522 NLA_PUT(inst
->skb
, NFULA_SEQ_GLOBAL
, sizeof(tmp_uint
), &tmp_uint
);
527 int size
= nla_attr_size(data_len
);
529 if (skb_tailroom(inst
->skb
) < nla_total_size(data_len
)) {
530 printk(KERN_WARNING
"nfnetlink_log: no tailroom!\n");
534 nla
= (struct nlattr
*)skb_put(inst
->skb
, nla_total_size(data_len
));
535 nla
->nla_type
= NFULA_PAYLOAD
;
538 if (skb_copy_bits(skb
, 0, nla_data(nla
), data_len
))
542 nlh
->nlmsg_len
= inst
->skb
->tail
- old_tail
;
546 UDEBUG("nlmsg_failure\n");
548 PRINTR(KERN_ERR
"nfnetlink_log: error creating log nlmsg\n");
552 #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
554 static struct nf_loginfo default_loginfo
= {
555 .type
= NF_LOG_TYPE_ULOG
,
565 /* log handler for internal netfilter logging api */
567 nfulnl_log_packet(unsigned int pf
,
568 unsigned int hooknum
,
569 const struct sk_buff
*skb
,
570 const struct net_device
*in
,
571 const struct net_device
*out
,
572 const struct nf_loginfo
*li_user
,
575 unsigned int size
, data_len
;
576 struct nfulnl_instance
*inst
;
577 const struct nf_loginfo
*li
;
578 unsigned int qthreshold
;
581 if (li_user
&& li_user
->type
== NF_LOG_TYPE_ULOG
)
584 li
= &default_loginfo
;
586 inst
= instance_lookup_get(li
->u
.ulog
.group
);
592 plen
= strlen(prefix
) + 1;
594 /* FIXME: do we want to make the size calculation conditional based on
595 * what is actually present? way more branches and checks, but more
596 * memory efficient... */
597 size
= NLMSG_ALIGN(sizeof(struct nfgenmsg
))
598 + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr
))
599 + nla_total_size(sizeof(u_int32_t
)) /* ifindex */
600 + nla_total_size(sizeof(u_int32_t
)) /* ifindex */
601 #ifdef CONFIG_BRIDGE_NETFILTER
602 + nla_total_size(sizeof(u_int32_t
)) /* ifindex */
603 + nla_total_size(sizeof(u_int32_t
)) /* ifindex */
605 + nla_total_size(sizeof(u_int32_t
)) /* mark */
606 + nla_total_size(sizeof(u_int32_t
)) /* uid */
607 + nla_total_size(plen
) /* prefix */
608 + nla_total_size(sizeof(struct nfulnl_msg_packet_hw
))
609 + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp
));
611 UDEBUG("initial size=%u\n", size
);
613 spin_lock_bh(&inst
->lock
);
615 if (inst
->flags
& NFULNL_CFG_F_SEQ
)
616 size
+= nla_total_size(sizeof(u_int32_t
));
617 if (inst
->flags
& NFULNL_CFG_F_SEQ_GLOBAL
)
618 size
+= nla_total_size(sizeof(u_int32_t
));
620 qthreshold
= inst
->qthreshold
;
621 /* per-rule qthreshold overrides per-instance */
622 if (qthreshold
> li
->u
.ulog
.qthreshold
)
623 qthreshold
= li
->u
.ulog
.qthreshold
;
625 switch (inst
->copy_mode
) {
626 case NFULNL_COPY_META
:
627 case NFULNL_COPY_NONE
:
631 case NFULNL_COPY_PACKET
:
632 if (inst
->copy_range
== 0
633 || inst
->copy_range
> skb
->len
)
636 data_len
= inst
->copy_range
;
638 size
+= nla_total_size(data_len
);
639 UDEBUG("copy_packet, therefore size now %u\n", size
);
643 goto unlock_and_release
;
647 size
> skb_tailroom(inst
->skb
) - sizeof(struct nfgenmsg
)) {
648 /* either the queue len is too high or we don't have
649 * enough room in the skb left. flush to userspace. */
650 UDEBUG("flushing old skb\n");
652 __nfulnl_flush(inst
);
656 inst
->skb
= nfulnl_alloc_skb(inst
->nlbufsiz
, size
);
661 UDEBUG("qlen %d, qthreshold %d\n", inst
->qlen
, qthreshold
);
664 __build_packet_message(inst
, skb
, data_len
, pf
,
665 hooknum
, in
, out
, li
, prefix
, plen
);
667 if (inst
->qlen
>= qthreshold
)
668 __nfulnl_flush(inst
);
669 /* timer_pending always called within inst->lock, so there
670 * is no chance of a race here */
671 else if (!timer_pending(&inst
->timer
)) {
673 inst
->timer
.expires
= jiffies
+ (inst
->flushtimeout
*HZ
/100);
674 add_timer(&inst
->timer
);
678 spin_unlock_bh(&inst
->lock
);
683 UDEBUG("error allocating skb\n");
684 /* FIXME: statistics */
685 goto unlock_and_release
;
689 nfulnl_rcv_nl_event(struct notifier_block
*this,
690 unsigned long event
, void *ptr
)
692 struct netlink_notify
*n
= ptr
;
694 if (event
== NETLINK_URELEASE
&&
695 n
->protocol
== NETLINK_NETFILTER
&& n
->pid
) {
698 /* destroy all instances for this pid */
699 write_lock_bh(&instances_lock
);
700 for (i
= 0; i
< INSTANCE_BUCKETS
; i
++) {
701 struct hlist_node
*tmp
, *t2
;
702 struct nfulnl_instance
*inst
;
703 struct hlist_head
*head
= &instance_table
[i
];
705 hlist_for_each_entry_safe(inst
, tmp
, t2
, head
, hlist
) {
706 UDEBUG("node = %p\n", inst
);
707 if ((n
->net
== &init_net
) &&
708 (n
->pid
== inst
->peer_pid
))
709 __instance_destroy(inst
);
712 write_unlock_bh(&instances_lock
);
717 static struct notifier_block nfulnl_rtnl_notifier
= {
718 .notifier_call
= nfulnl_rcv_nl_event
,
722 nfulnl_recv_unsupp(struct sock
*ctnl
, struct sk_buff
*skb
,
723 struct nlmsghdr
*nlh
, struct nlattr
*nfqa
[])
728 static struct nf_logger nfulnl_logger
= {
729 .name
= "nfnetlink_log",
730 .logfn
= &nfulnl_log_packet
,
734 static const struct nla_policy nfula_cfg_policy
[NFULA_CFG_MAX
+1] = {
735 [NFULA_CFG_CMD
] = { .len
= sizeof(struct nfulnl_msg_config_cmd
) },
736 [NFULA_CFG_MODE
] = { .len
= sizeof(struct nfulnl_msg_config_mode
) },
737 [NFULA_CFG_TIMEOUT
] = { .type
= NLA_U32
},
738 [NFULA_CFG_QTHRESH
] = { .type
= NLA_U32
},
739 [NFULA_CFG_NLBUFSIZ
] = { .type
= NLA_U32
},
740 [NFULA_CFG_FLAGS
] = { .type
= NLA_U16
},
744 nfulnl_recv_config(struct sock
*ctnl
, struct sk_buff
*skb
,
745 struct nlmsghdr
*nlh
, struct nlattr
*nfula
[])
747 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
748 u_int16_t group_num
= ntohs(nfmsg
->res_id
);
749 struct nfulnl_instance
*inst
;
752 UDEBUG("entering for msg %u\n", NFNL_MSG_TYPE(nlh
->nlmsg_type
));
754 inst
= instance_lookup_get(group_num
);
755 if (nfula
[NFULA_CFG_CMD
]) {
756 u_int8_t pf
= nfmsg
->nfgen_family
;
757 struct nfulnl_msg_config_cmd
*cmd
;
758 cmd
= nla_data(nfula
[NFULA_CFG_CMD
]);
759 UDEBUG("found CFG_CMD for\n");
761 switch (cmd
->command
) {
762 case NFULNL_CFG_CMD_BIND
:
768 inst
= instance_create(group_num
,
769 NETLINK_CB(skb
).pid
);
775 case NFULNL_CFG_CMD_UNBIND
:
781 if (inst
->peer_pid
!= NETLINK_CB(skb
).pid
) {
786 instance_destroy(inst
);
788 case NFULNL_CFG_CMD_PF_BIND
:
789 UDEBUG("registering log handler for pf=%u\n", pf
);
790 ret
= nf_log_register(pf
, &nfulnl_logger
);
792 case NFULNL_CFG_CMD_PF_UNBIND
:
793 UDEBUG("unregistering log handler for pf=%u\n", pf
);
794 /* This is a bug and a feature. We cannot unregister
795 * other handlers, like nfnetlink_inst can */
796 nf_log_unregister_pf(pf
);
807 UDEBUG("no config command, and no instance for "
808 "group=%u pid=%u =>ENOENT\n",
809 group_num
, NETLINK_CB(skb
).pid
);
814 if (inst
->peer_pid
!= NETLINK_CB(skb
).pid
) {
815 UDEBUG("no config command, and wrong pid\n");
821 if (nfula
[NFULA_CFG_MODE
]) {
822 struct nfulnl_msg_config_mode
*params
;
823 params
= nla_data(nfula
[NFULA_CFG_MODE
]);
825 nfulnl_set_mode(inst
, params
->copy_mode
,
826 ntohl(params
->copy_range
));
829 if (nfula
[NFULA_CFG_TIMEOUT
]) {
831 *(__be32
*)nla_data(nfula
[NFULA_CFG_TIMEOUT
]);
833 nfulnl_set_timeout(inst
, ntohl(timeout
));
836 if (nfula
[NFULA_CFG_NLBUFSIZ
]) {
838 *(__be32
*)nla_data(nfula
[NFULA_CFG_NLBUFSIZ
]);
840 nfulnl_set_nlbufsiz(inst
, ntohl(nlbufsiz
));
843 if (nfula
[NFULA_CFG_QTHRESH
]) {
845 *(__be32
*)nla_data(nfula
[NFULA_CFG_QTHRESH
]);
847 nfulnl_set_qthresh(inst
, ntohl(qthresh
));
850 if (nfula
[NFULA_CFG_FLAGS
]) {
852 *(__be16
*)nla_data(nfula
[NFULA_CFG_FLAGS
]);
853 nfulnl_set_flags(inst
, ntohs(flags
));
862 static const struct nfnl_callback nfulnl_cb
[NFULNL_MSG_MAX
] = {
863 [NFULNL_MSG_PACKET
] = { .call
= nfulnl_recv_unsupp
,
864 .attr_count
= NFULA_MAX
, },
865 [NFULNL_MSG_CONFIG
] = { .call
= nfulnl_recv_config
,
866 .attr_count
= NFULA_CFG_MAX
,
867 .policy
= nfula_cfg_policy
},
870 static const struct nfnetlink_subsystem nfulnl_subsys
= {
872 .subsys_id
= NFNL_SUBSYS_ULOG
,
873 .cb_count
= NFULNL_MSG_MAX
,
877 #ifdef CONFIG_PROC_FS
882 static struct hlist_node
*get_first(struct iter_state
*st
)
887 for (st
->bucket
= 0; st
->bucket
< INSTANCE_BUCKETS
; st
->bucket
++) {
888 if (!hlist_empty(&instance_table
[st
->bucket
]))
889 return instance_table
[st
->bucket
].first
;
894 static struct hlist_node
*get_next(struct iter_state
*st
, struct hlist_node
*h
)
898 if (++st
->bucket
>= INSTANCE_BUCKETS
)
901 h
= instance_table
[st
->bucket
].first
;
906 static struct hlist_node
*get_idx(struct iter_state
*st
, loff_t pos
)
908 struct hlist_node
*head
;
909 head
= get_first(st
);
912 while (pos
&& (head
= get_next(st
, head
)))
914 return pos
? NULL
: head
;
917 static void *seq_start(struct seq_file
*seq
, loff_t
*pos
)
919 read_lock_bh(&instances_lock
);
920 return get_idx(seq
->private, *pos
);
923 static void *seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
926 return get_next(s
->private, v
);
929 static void seq_stop(struct seq_file
*s
, void *v
)
931 read_unlock_bh(&instances_lock
);
934 static int seq_show(struct seq_file
*s
, void *v
)
936 const struct nfulnl_instance
*inst
= v
;
938 return seq_printf(s
, "%5d %6d %5d %1d %5d %6d %2d\n",
940 inst
->peer_pid
, inst
->qlen
,
941 inst
->copy_mode
, inst
->copy_range
,
942 inst
->flushtimeout
, atomic_read(&inst
->use
));
945 static const struct seq_operations nful_seq_ops
= {
952 static int nful_open(struct inode
*inode
, struct file
*file
)
954 return seq_open_private(file
, &nful_seq_ops
,
955 sizeof(struct iter_state
));
958 static const struct file_operations nful_file_ops
= {
959 .owner
= THIS_MODULE
,
963 .release
= seq_release_private
,
968 static int __init
nfnetlink_log_init(void)
970 int i
, status
= -ENOMEM
;
971 #ifdef CONFIG_PROC_FS
972 struct proc_dir_entry
*proc_nful
;
975 for (i
= 0; i
< INSTANCE_BUCKETS
; i
++)
976 INIT_HLIST_HEAD(&instance_table
[i
]);
978 /* it's not really all that important to have a random value, so
979 * we can do this from the init function, even if there hasn't
980 * been that much entropy yet */
981 get_random_bytes(&hash_init
, sizeof(hash_init
));
983 netlink_register_notifier(&nfulnl_rtnl_notifier
);
984 status
= nfnetlink_subsys_register(&nfulnl_subsys
);
986 printk(KERN_ERR
"log: failed to create netlink socket\n");
987 goto cleanup_netlink_notifier
;
990 #ifdef CONFIG_PROC_FS
991 proc_nful
= create_proc_entry("nfnetlink_log", 0440,
995 proc_nful
->proc_fops
= &nful_file_ops
;
999 #ifdef CONFIG_PROC_FS
1001 nfnetlink_subsys_unregister(&nfulnl_subsys
);
1003 cleanup_netlink_notifier
:
1004 netlink_unregister_notifier(&nfulnl_rtnl_notifier
);
1008 static void __exit
nfnetlink_log_fini(void)
1010 nf_log_unregister(&nfulnl_logger
);
1011 #ifdef CONFIG_PROC_FS
1012 remove_proc_entry("nfnetlink_log", proc_net_netfilter
);
1014 nfnetlink_subsys_unregister(&nfulnl_subsys
);
1015 netlink_unregister_notifier(&nfulnl_rtnl_notifier
);
1018 MODULE_DESCRIPTION("netfilter userspace logging");
1019 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1020 MODULE_LICENSE("GPL");
1021 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG
);
1023 module_init(nfnetlink_log_init
);
1024 module_exit(nfnetlink_log_fini
);