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>
31 #include <linux/slab.h>
33 #include <net/netfilter/nf_log.h>
34 #include <net/netfilter/nfnetlink_log.h>
36 #include <asm/atomic.h>
38 #ifdef CONFIG_BRIDGE_NETFILTER
39 #include "../bridge/br_private.h"
42 #define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
43 #define NFULNL_TIMEOUT_DEFAULT 100 /* every second */
44 #define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
45 #define NFULNL_COPY_RANGE_MAX 0xFFFF /* max packet size is limited by 16-bit struct nfattr nfa_len field */
47 #define PRINTR(x, args...) do { if (net_ratelimit()) \
48 printk(x, ## args); } while (0);
50 struct nfulnl_instance
{
51 struct hlist_node hlist
; /* global list of instances */
53 atomic_t use
; /* use count */
55 unsigned int qlen
; /* number of nlmsgs in skb */
56 struct sk_buff
*skb
; /* pre-allocatd skb */
57 struct timer_list timer
;
58 int peer_pid
; /* PID of the peer process */
60 /* configurable parameters */
61 unsigned int flushtimeout
; /* timeout until queue flush */
62 unsigned int nlbufsiz
; /* netlink buffer allocation size */
63 unsigned int qthreshold
; /* threshold of the queue */
65 u_int32_t seq
; /* instance-local sequential counter */
66 u_int16_t group_num
; /* number of this queue */
71 static DEFINE_RWLOCK(instances_lock
);
72 static atomic_t global_seq
;
74 #define INSTANCE_BUCKETS 16
75 static struct hlist_head instance_table
[INSTANCE_BUCKETS
];
76 static unsigned int hash_init
;
78 static inline u_int8_t
instance_hashfn(u_int16_t group_num
)
80 return ((group_num
& 0xff) % INSTANCE_BUCKETS
);
83 static struct nfulnl_instance
*
84 __instance_lookup(u_int16_t group_num
)
86 struct hlist_head
*head
;
87 struct hlist_node
*pos
;
88 struct nfulnl_instance
*inst
;
90 head
= &instance_table
[instance_hashfn(group_num
)];
91 hlist_for_each_entry(inst
, pos
, head
, hlist
) {
92 if (inst
->group_num
== group_num
)
99 instance_get(struct nfulnl_instance
*inst
)
101 atomic_inc(&inst
->use
);
104 static struct nfulnl_instance
*
105 instance_lookup_get(u_int16_t group_num
)
107 struct nfulnl_instance
*inst
;
109 read_lock_bh(&instances_lock
);
110 inst
= __instance_lookup(group_num
);
113 read_unlock_bh(&instances_lock
);
119 instance_put(struct nfulnl_instance
*inst
)
121 if (inst
&& atomic_dec_and_test(&inst
->use
)) {
123 module_put(THIS_MODULE
);
127 static void nfulnl_timer(unsigned long data
);
129 static struct nfulnl_instance
*
130 instance_create(u_int16_t group_num
, int pid
)
132 struct nfulnl_instance
*inst
;
135 write_lock_bh(&instances_lock
);
136 if (__instance_lookup(group_num
)) {
141 inst
= kzalloc(sizeof(*inst
), GFP_ATOMIC
);
147 if (!try_module_get(THIS_MODULE
)) {
153 INIT_HLIST_NODE(&inst
->hlist
);
154 spin_lock_init(&inst
->lock
);
155 /* needs to be two, since we _put() after creation */
156 atomic_set(&inst
->use
, 2);
158 setup_timer(&inst
->timer
, nfulnl_timer
, (unsigned long)inst
);
160 inst
->peer_pid
= pid
;
161 inst
->group_num
= group_num
;
163 inst
->qthreshold
= NFULNL_QTHRESH_DEFAULT
;
164 inst
->flushtimeout
= NFULNL_TIMEOUT_DEFAULT
;
165 inst
->nlbufsiz
= NFULNL_NLBUFSIZ_DEFAULT
;
166 inst
->copy_mode
= NFULNL_COPY_PACKET
;
167 inst
->copy_range
= NFULNL_COPY_RANGE_MAX
;
169 hlist_add_head(&inst
->hlist
,
170 &instance_table
[instance_hashfn(group_num
)]);
172 write_unlock_bh(&instances_lock
);
177 write_unlock_bh(&instances_lock
);
181 static void __nfulnl_flush(struct nfulnl_instance
*inst
);
184 __instance_destroy(struct nfulnl_instance
*inst
)
186 /* first pull it out of the global list */
187 hlist_del(&inst
->hlist
);
189 /* then flush all pending packets from skb */
191 spin_lock_bh(&inst
->lock
);
193 __nfulnl_flush(inst
);
194 spin_unlock_bh(&inst
->lock
);
196 /* and finally put the refcount */
201 instance_destroy(struct nfulnl_instance
*inst
)
203 write_lock_bh(&instances_lock
);
204 __instance_destroy(inst
);
205 write_unlock_bh(&instances_lock
);
209 nfulnl_set_mode(struct nfulnl_instance
*inst
, u_int8_t mode
,
214 spin_lock_bh(&inst
->lock
);
217 case NFULNL_COPY_NONE
:
218 case NFULNL_COPY_META
:
219 inst
->copy_mode
= mode
;
220 inst
->copy_range
= 0;
223 case NFULNL_COPY_PACKET
:
224 inst
->copy_mode
= mode
;
225 inst
->copy_range
= min_t(unsigned int,
226 range
, NFULNL_COPY_RANGE_MAX
);
234 spin_unlock_bh(&inst
->lock
);
240 nfulnl_set_nlbufsiz(struct nfulnl_instance
*inst
, u_int32_t nlbufsiz
)
244 spin_lock_bh(&inst
->lock
);
245 if (nlbufsiz
< NFULNL_NLBUFSIZ_DEFAULT
)
247 else if (nlbufsiz
> 131072)
250 inst
->nlbufsiz
= nlbufsiz
;
253 spin_unlock_bh(&inst
->lock
);
259 nfulnl_set_timeout(struct nfulnl_instance
*inst
, u_int32_t timeout
)
261 spin_lock_bh(&inst
->lock
);
262 inst
->flushtimeout
= timeout
;
263 spin_unlock_bh(&inst
->lock
);
269 nfulnl_set_qthresh(struct nfulnl_instance
*inst
, u_int32_t qthresh
)
271 spin_lock_bh(&inst
->lock
);
272 inst
->qthreshold
= qthresh
;
273 spin_unlock_bh(&inst
->lock
);
279 nfulnl_set_flags(struct nfulnl_instance
*inst
, u_int16_t flags
)
281 spin_lock_bh(&inst
->lock
);
283 spin_unlock_bh(&inst
->lock
);
288 static struct sk_buff
*
289 nfulnl_alloc_skb(unsigned int inst_size
, unsigned int pkt_size
)
294 /* alloc skb which should be big enough for a whole multipart
295 * message. WARNING: has to be <= 128k due to slab restrictions */
297 n
= max(inst_size
, pkt_size
);
298 skb
= alloc_skb(n
, GFP_ATOMIC
);
300 PRINTR("nfnetlink_log: can't alloc whole buffer (%u bytes)\n",
304 /* try to allocate only as much as we need for current
307 skb
= alloc_skb(pkt_size
, GFP_ATOMIC
);
309 PRINTR("nfnetlink_log: can't even alloc %u "
310 "bytes\n", pkt_size
);
318 __nfulnl_send(struct nfulnl_instance
*inst
)
323 NLMSG_PUT(inst
->skb
, 0, 0,
325 sizeof(struct nfgenmsg
));
327 status
= nfnetlink_unicast(inst
->skb
, &init_net
, inst
->peer_pid
,
338 __nfulnl_flush(struct nfulnl_instance
*inst
)
340 /* timer holds a reference */
341 if (del_timer(&inst
->timer
))
348 nfulnl_timer(unsigned long data
)
350 struct nfulnl_instance
*inst
= (struct nfulnl_instance
*)data
;
352 spin_lock_bh(&inst
->lock
);
355 spin_unlock_bh(&inst
->lock
);
359 /* This is an inline function, we don't really care about a long
360 * list of arguments */
362 __build_packet_message(struct nfulnl_instance
*inst
,
363 const struct sk_buff
*skb
,
364 unsigned int data_len
,
366 unsigned int hooknum
,
367 const struct net_device
*indev
,
368 const struct net_device
*outdev
,
369 const struct nf_loginfo
*li
,
370 const char *prefix
, unsigned int plen
)
372 struct nfulnl_msg_packet_hdr pmsg
;
373 struct nlmsghdr
*nlh
;
374 struct nfgenmsg
*nfmsg
;
376 sk_buff_data_t old_tail
= inst
->skb
->tail
;
378 nlh
= NLMSG_PUT(inst
->skb
, 0, 0,
379 NFNL_SUBSYS_ULOG
<< 8 | NFULNL_MSG_PACKET
,
380 sizeof(struct nfgenmsg
));
381 nfmsg
= NLMSG_DATA(nlh
);
382 nfmsg
->nfgen_family
= pf
;
383 nfmsg
->version
= NFNETLINK_V0
;
384 nfmsg
->res_id
= htons(inst
->group_num
);
386 pmsg
.hw_protocol
= skb
->protocol
;
389 NLA_PUT(inst
->skb
, NFULA_PACKET_HDR
, sizeof(pmsg
), &pmsg
);
392 NLA_PUT(inst
->skb
, NFULA_PREFIX
, plen
, prefix
);
395 #ifndef CONFIG_BRIDGE_NETFILTER
396 NLA_PUT_BE32(inst
->skb
, NFULA_IFINDEX_INDEV
,
397 htonl(indev
->ifindex
));
399 if (pf
== PF_BRIDGE
) {
400 /* Case 1: outdev is physical input device, we need to
401 * look for bridge group (when called from
402 * netfilter_bridge) */
403 NLA_PUT_BE32(inst
->skb
, NFULA_IFINDEX_PHYSINDEV
,
404 htonl(indev
->ifindex
));
405 /* this is the bridge group "brX" */
406 NLA_PUT_BE32(inst
->skb
, NFULA_IFINDEX_INDEV
,
407 htonl(indev
->br_port
->br
->dev
->ifindex
));
409 /* Case 2: indev is bridge group, we need to look for
410 * physical device (when called from ipv4) */
411 NLA_PUT_BE32(inst
->skb
, NFULA_IFINDEX_INDEV
,
412 htonl(indev
->ifindex
));
413 if (skb
->nf_bridge
&& skb
->nf_bridge
->physindev
)
414 NLA_PUT_BE32(inst
->skb
, NFULA_IFINDEX_PHYSINDEV
,
415 htonl(skb
->nf_bridge
->physindev
->ifindex
));
421 tmp_uint
= htonl(outdev
->ifindex
);
422 #ifndef CONFIG_BRIDGE_NETFILTER
423 NLA_PUT_BE32(inst
->skb
, NFULA_IFINDEX_OUTDEV
,
424 htonl(outdev
->ifindex
));
426 if (pf
== PF_BRIDGE
) {
427 /* Case 1: outdev is physical output device, we need to
428 * look for bridge group (when called from
429 * netfilter_bridge) */
430 NLA_PUT_BE32(inst
->skb
, NFULA_IFINDEX_PHYSOUTDEV
,
431 htonl(outdev
->ifindex
));
432 /* this is the bridge group "brX" */
433 NLA_PUT_BE32(inst
->skb
, NFULA_IFINDEX_OUTDEV
,
434 htonl(outdev
->br_port
->br
->dev
->ifindex
));
436 /* Case 2: indev is a bridge group, we need to look
437 * for physical device (when called from ipv4) */
438 NLA_PUT_BE32(inst
->skb
, NFULA_IFINDEX_OUTDEV
,
439 htonl(outdev
->ifindex
));
440 if (skb
->nf_bridge
&& skb
->nf_bridge
->physoutdev
)
441 NLA_PUT_BE32(inst
->skb
, NFULA_IFINDEX_PHYSOUTDEV
,
442 htonl(skb
->nf_bridge
->physoutdev
->ifindex
));
448 NLA_PUT_BE32(inst
->skb
, NFULA_MARK
, htonl(skb
->mark
));
450 if (indev
&& skb
->dev
) {
451 struct nfulnl_msg_packet_hw phw
;
452 int len
= dev_parse_header(skb
, phw
.hw_addr
);
454 phw
.hw_addrlen
= htons(len
);
455 NLA_PUT(inst
->skb
, NFULA_HWADDR
, sizeof(phw
), &phw
);
459 if (indev
&& skb_mac_header_was_set(skb
)) {
460 NLA_PUT_BE16(inst
->skb
, NFULA_HWTYPE
, htons(skb
->dev
->type
));
461 NLA_PUT_BE16(inst
->skb
, NFULA_HWLEN
,
462 htons(skb
->dev
->hard_header_len
));
463 NLA_PUT(inst
->skb
, NFULA_HWHEADER
, skb
->dev
->hard_header_len
,
464 skb_mac_header(skb
));
467 if (skb
->tstamp
.tv64
) {
468 struct nfulnl_msg_packet_timestamp ts
;
469 struct timeval tv
= ktime_to_timeval(skb
->tstamp
);
470 ts
.sec
= cpu_to_be64(tv
.tv_sec
);
471 ts
.usec
= cpu_to_be64(tv
.tv_usec
);
473 NLA_PUT(inst
->skb
, NFULA_TIMESTAMP
, sizeof(ts
), &ts
);
478 read_lock_bh(&skb
->sk
->sk_callback_lock
);
479 if (skb
->sk
->sk_socket
&& skb
->sk
->sk_socket
->file
) {
480 struct file
*file
= skb
->sk
->sk_socket
->file
;
481 __be32 uid
= htonl(file
->f_cred
->fsuid
);
482 __be32 gid
= htonl(file
->f_cred
->fsgid
);
483 /* need to unlock here since NLA_PUT may goto */
484 read_unlock_bh(&skb
->sk
->sk_callback_lock
);
485 NLA_PUT_BE32(inst
->skb
, NFULA_UID
, uid
);
486 NLA_PUT_BE32(inst
->skb
, NFULA_GID
, gid
);
488 read_unlock_bh(&skb
->sk
->sk_callback_lock
);
491 /* local sequence number */
492 if (inst
->flags
& NFULNL_CFG_F_SEQ
)
493 NLA_PUT_BE32(inst
->skb
, NFULA_SEQ
, htonl(inst
->seq
++));
495 /* global sequence number */
496 if (inst
->flags
& NFULNL_CFG_F_SEQ_GLOBAL
)
497 NLA_PUT_BE32(inst
->skb
, NFULA_SEQ_GLOBAL
,
498 htonl(atomic_inc_return(&global_seq
)));
502 int size
= nla_attr_size(data_len
);
504 if (skb_tailroom(inst
->skb
) < nla_total_size(data_len
)) {
505 printk(KERN_WARNING
"nfnetlink_log: no tailroom!\n");
509 nla
= (struct nlattr
*)skb_put(inst
->skb
, nla_total_size(data_len
));
510 nla
->nla_type
= NFULA_PAYLOAD
;
513 if (skb_copy_bits(skb
, 0, nla_data(nla
), data_len
))
517 nlh
->nlmsg_len
= inst
->skb
->tail
- old_tail
;
522 PRINTR(KERN_ERR
"nfnetlink_log: error creating log nlmsg\n");
526 #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
528 static struct nf_loginfo default_loginfo
= {
529 .type
= NF_LOG_TYPE_ULOG
,
539 /* log handler for internal netfilter logging api */
541 nfulnl_log_packet(u_int8_t pf
,
542 unsigned int hooknum
,
543 const struct sk_buff
*skb
,
544 const struct net_device
*in
,
545 const struct net_device
*out
,
546 const struct nf_loginfo
*li_user
,
549 unsigned int size
, data_len
;
550 struct nfulnl_instance
*inst
;
551 const struct nf_loginfo
*li
;
552 unsigned int qthreshold
;
555 if (li_user
&& li_user
->type
== NF_LOG_TYPE_ULOG
)
558 li
= &default_loginfo
;
560 inst
= instance_lookup_get(li
->u
.ulog
.group
);
566 plen
= strlen(prefix
) + 1;
568 /* FIXME: do we want to make the size calculation conditional based on
569 * what is actually present? way more branches and checks, but more
570 * memory efficient... */
571 size
= NLMSG_SPACE(sizeof(struct nfgenmsg
))
572 + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr
))
573 + nla_total_size(sizeof(u_int32_t
)) /* ifindex */
574 + nla_total_size(sizeof(u_int32_t
)) /* ifindex */
575 #ifdef CONFIG_BRIDGE_NETFILTER
576 + nla_total_size(sizeof(u_int32_t
)) /* ifindex */
577 + nla_total_size(sizeof(u_int32_t
)) /* ifindex */
579 + nla_total_size(sizeof(u_int32_t
)) /* mark */
580 + nla_total_size(sizeof(u_int32_t
)) /* uid */
581 + nla_total_size(sizeof(u_int32_t
)) /* gid */
582 + nla_total_size(plen
) /* prefix */
583 + nla_total_size(sizeof(struct nfulnl_msg_packet_hw
))
584 + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp
));
586 if (in
&& skb_mac_header_was_set(skb
)) {
587 size
+= nla_total_size(skb
->dev
->hard_header_len
)
588 + nla_total_size(sizeof(u_int16_t
)) /* hwtype */
589 + nla_total_size(sizeof(u_int16_t
)); /* hwlen */
592 spin_lock_bh(&inst
->lock
);
594 if (inst
->flags
& NFULNL_CFG_F_SEQ
)
595 size
+= nla_total_size(sizeof(u_int32_t
));
596 if (inst
->flags
& NFULNL_CFG_F_SEQ_GLOBAL
)
597 size
+= nla_total_size(sizeof(u_int32_t
));
599 qthreshold
= inst
->qthreshold
;
600 /* per-rule qthreshold overrides per-instance */
601 if (li
->u
.ulog
.qthreshold
)
602 if (qthreshold
> li
->u
.ulog
.qthreshold
)
603 qthreshold
= li
->u
.ulog
.qthreshold
;
606 switch (inst
->copy_mode
) {
607 case NFULNL_COPY_META
:
608 case NFULNL_COPY_NONE
:
612 case NFULNL_COPY_PACKET
:
613 if (inst
->copy_range
== 0
614 || inst
->copy_range
> skb
->len
)
617 data_len
= inst
->copy_range
;
619 size
+= nla_total_size(data_len
);
623 goto unlock_and_release
;
627 size
> skb_tailroom(inst
->skb
) - sizeof(struct nfgenmsg
)) {
628 /* either the queue len is too high or we don't have
629 * enough room in the skb left. flush to userspace. */
630 __nfulnl_flush(inst
);
634 inst
->skb
= nfulnl_alloc_skb(inst
->nlbufsiz
, size
);
641 __build_packet_message(inst
, skb
, data_len
, pf
,
642 hooknum
, in
, out
, li
, prefix
, plen
);
644 if (inst
->qlen
>= qthreshold
)
645 __nfulnl_flush(inst
);
646 /* timer_pending always called within inst->lock, so there
647 * is no chance of a race here */
648 else if (!timer_pending(&inst
->timer
)) {
650 inst
->timer
.expires
= jiffies
+ (inst
->flushtimeout
*HZ
/100);
651 add_timer(&inst
->timer
);
655 spin_unlock_bh(&inst
->lock
);
660 /* FIXME: statistics */
661 goto unlock_and_release
;
663 EXPORT_SYMBOL_GPL(nfulnl_log_packet
);
666 nfulnl_rcv_nl_event(struct notifier_block
*this,
667 unsigned long event
, void *ptr
)
669 struct netlink_notify
*n
= ptr
;
671 if (event
== NETLINK_URELEASE
&& n
->protocol
== NETLINK_NETFILTER
) {
674 /* destroy all instances for this pid */
675 write_lock_bh(&instances_lock
);
676 for (i
= 0; i
< INSTANCE_BUCKETS
; i
++) {
677 struct hlist_node
*tmp
, *t2
;
678 struct nfulnl_instance
*inst
;
679 struct hlist_head
*head
= &instance_table
[i
];
681 hlist_for_each_entry_safe(inst
, tmp
, t2
, head
, hlist
) {
682 if ((net_eq(n
->net
, &init_net
)) &&
683 (n
->pid
== inst
->peer_pid
))
684 __instance_destroy(inst
);
687 write_unlock_bh(&instances_lock
);
692 static struct notifier_block nfulnl_rtnl_notifier
= {
693 .notifier_call
= nfulnl_rcv_nl_event
,
697 nfulnl_recv_unsupp(struct sock
*ctnl
, struct sk_buff
*skb
,
698 const struct nlmsghdr
*nlh
,
699 const struct nlattr
* const nfqa
[])
704 static struct nf_logger nfulnl_logger __read_mostly
= {
705 .name
= "nfnetlink_log",
706 .logfn
= &nfulnl_log_packet
,
710 static const struct nla_policy nfula_cfg_policy
[NFULA_CFG_MAX
+1] = {
711 [NFULA_CFG_CMD
] = { .len
= sizeof(struct nfulnl_msg_config_cmd
) },
712 [NFULA_CFG_MODE
] = { .len
= sizeof(struct nfulnl_msg_config_mode
) },
713 [NFULA_CFG_TIMEOUT
] = { .type
= NLA_U32
},
714 [NFULA_CFG_QTHRESH
] = { .type
= NLA_U32
},
715 [NFULA_CFG_NLBUFSIZ
] = { .type
= NLA_U32
},
716 [NFULA_CFG_FLAGS
] = { .type
= NLA_U16
},
720 nfulnl_recv_config(struct sock
*ctnl
, struct sk_buff
*skb
,
721 const struct nlmsghdr
*nlh
,
722 const struct nlattr
* const nfula
[])
724 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
725 u_int16_t group_num
= ntohs(nfmsg
->res_id
);
726 struct nfulnl_instance
*inst
;
727 struct nfulnl_msg_config_cmd
*cmd
= NULL
;
730 if (nfula
[NFULA_CFG_CMD
]) {
731 u_int8_t pf
= nfmsg
->nfgen_family
;
732 cmd
= nla_data(nfula
[NFULA_CFG_CMD
]);
734 /* Commands without queue context */
735 switch (cmd
->command
) {
736 case NFULNL_CFG_CMD_PF_BIND
:
737 return nf_log_bind_pf(pf
, &nfulnl_logger
);
738 case NFULNL_CFG_CMD_PF_UNBIND
:
739 nf_log_unbind_pf(pf
);
744 inst
= instance_lookup_get(group_num
);
745 if (inst
&& inst
->peer_pid
!= NETLINK_CB(skb
).pid
) {
751 switch (cmd
->command
) {
752 case NFULNL_CFG_CMD_BIND
:
758 inst
= instance_create(group_num
,
759 NETLINK_CB(skb
).pid
);
765 case NFULNL_CFG_CMD_UNBIND
:
771 instance_destroy(inst
);
779 if (nfula
[NFULA_CFG_MODE
]) {
780 struct nfulnl_msg_config_mode
*params
;
781 params
= nla_data(nfula
[NFULA_CFG_MODE
]);
787 nfulnl_set_mode(inst
, params
->copy_mode
,
788 ntohl(params
->copy_range
));
791 if (nfula
[NFULA_CFG_TIMEOUT
]) {
792 __be32 timeout
= nla_get_be32(nfula
[NFULA_CFG_TIMEOUT
]);
798 nfulnl_set_timeout(inst
, ntohl(timeout
));
801 if (nfula
[NFULA_CFG_NLBUFSIZ
]) {
802 __be32 nlbufsiz
= nla_get_be32(nfula
[NFULA_CFG_NLBUFSIZ
]);
808 nfulnl_set_nlbufsiz(inst
, ntohl(nlbufsiz
));
811 if (nfula
[NFULA_CFG_QTHRESH
]) {
812 __be32 qthresh
= nla_get_be32(nfula
[NFULA_CFG_QTHRESH
]);
818 nfulnl_set_qthresh(inst
, ntohl(qthresh
));
821 if (nfula
[NFULA_CFG_FLAGS
]) {
822 __be16 flags
= nla_get_be16(nfula
[NFULA_CFG_FLAGS
]);
828 nfulnl_set_flags(inst
, ntohs(flags
));
837 static const struct nfnl_callback nfulnl_cb
[NFULNL_MSG_MAX
] = {
838 [NFULNL_MSG_PACKET
] = { .call
= nfulnl_recv_unsupp
,
839 .attr_count
= NFULA_MAX
, },
840 [NFULNL_MSG_CONFIG
] = { .call
= nfulnl_recv_config
,
841 .attr_count
= NFULA_CFG_MAX
,
842 .policy
= nfula_cfg_policy
},
845 static const struct nfnetlink_subsystem nfulnl_subsys
= {
847 .subsys_id
= NFNL_SUBSYS_ULOG
,
848 .cb_count
= NFULNL_MSG_MAX
,
852 #ifdef CONFIG_PROC_FS
857 static struct hlist_node
*get_first(struct iter_state
*st
)
862 for (st
->bucket
= 0; st
->bucket
< INSTANCE_BUCKETS
; st
->bucket
++) {
863 if (!hlist_empty(&instance_table
[st
->bucket
]))
864 return instance_table
[st
->bucket
].first
;
869 static struct hlist_node
*get_next(struct iter_state
*st
, struct hlist_node
*h
)
873 if (++st
->bucket
>= INSTANCE_BUCKETS
)
876 h
= instance_table
[st
->bucket
].first
;
881 static struct hlist_node
*get_idx(struct iter_state
*st
, loff_t pos
)
883 struct hlist_node
*head
;
884 head
= get_first(st
);
887 while (pos
&& (head
= get_next(st
, head
)))
889 return pos
? NULL
: head
;
892 static void *seq_start(struct seq_file
*seq
, loff_t
*pos
)
893 __acquires(instances_lock
)
895 read_lock_bh(&instances_lock
);
896 return get_idx(seq
->private, *pos
);
899 static void *seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
902 return get_next(s
->private, v
);
905 static void seq_stop(struct seq_file
*s
, void *v
)
906 __releases(instances_lock
)
908 read_unlock_bh(&instances_lock
);
911 static int seq_show(struct seq_file
*s
, void *v
)
913 const struct nfulnl_instance
*inst
= v
;
915 return seq_printf(s
, "%5d %6d %5d %1d %5d %6d %2d\n",
917 inst
->peer_pid
, inst
->qlen
,
918 inst
->copy_mode
, inst
->copy_range
,
919 inst
->flushtimeout
, atomic_read(&inst
->use
));
922 static const struct seq_operations nful_seq_ops
= {
929 static int nful_open(struct inode
*inode
, struct file
*file
)
931 return seq_open_private(file
, &nful_seq_ops
,
932 sizeof(struct iter_state
));
935 static const struct file_operations nful_file_ops
= {
936 .owner
= THIS_MODULE
,
940 .release
= seq_release_private
,
945 static int __init
nfnetlink_log_init(void)
947 int i
, status
= -ENOMEM
;
949 for (i
= 0; i
< INSTANCE_BUCKETS
; i
++)
950 INIT_HLIST_HEAD(&instance_table
[i
]);
952 /* it's not really all that important to have a random value, so
953 * we can do this from the init function, even if there hasn't
954 * been that much entropy yet */
955 get_random_bytes(&hash_init
, sizeof(hash_init
));
957 netlink_register_notifier(&nfulnl_rtnl_notifier
);
958 status
= nfnetlink_subsys_register(&nfulnl_subsys
);
960 printk(KERN_ERR
"log: failed to create netlink socket\n");
961 goto cleanup_netlink_notifier
;
964 status
= nf_log_register(NFPROTO_UNSPEC
, &nfulnl_logger
);
966 printk(KERN_ERR
"log: failed to register logger\n");
970 #ifdef CONFIG_PROC_FS
971 if (!proc_create("nfnetlink_log", 0440,
972 proc_net_netfilter
, &nful_file_ops
))
977 #ifdef CONFIG_PROC_FS
979 nf_log_unregister(&nfulnl_logger
);
982 nfnetlink_subsys_unregister(&nfulnl_subsys
);
983 cleanup_netlink_notifier
:
984 netlink_unregister_notifier(&nfulnl_rtnl_notifier
);
988 static void __exit
nfnetlink_log_fini(void)
990 nf_log_unregister(&nfulnl_logger
);
991 #ifdef CONFIG_PROC_FS
992 remove_proc_entry("nfnetlink_log", proc_net_netfilter
);
994 nfnetlink_subsys_unregister(&nfulnl_subsys
);
995 netlink_unregister_notifier(&nfulnl_rtnl_notifier
);
998 MODULE_DESCRIPTION("netfilter userspace logging");
999 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1000 MODULE_LICENSE("GPL");
1001 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG
);
1003 module_init(nfnetlink_log_init
);
1004 module_exit(nfnetlink_log_fini
);