2 * This is a module which is used for queueing packets and communicating with
3 * userspace via nfetlink.
5 * (C) 2005 by Harald Welte <laforge@netfilter.org>
6 * (C) 2007 by Patrick McHardy <kaber@trash.net>
8 * Based on the old ipv4-only ip_queue.c:
9 * (C) 2000-2002 James Morris <jmorris@intercode.com.au>
10 * (C) 2003-2005 Netfilter Core Team <coreteam@netfilter.org>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
17 #include <linux/module.h>
18 #include <linux/skbuff.h>
19 #include <linux/init.h>
20 #include <linux/spinlock.h>
21 #include <linux/notifier.h>
22 #include <linux/netdevice.h>
23 #include <linux/netfilter.h>
24 #include <linux/proc_fs.h>
25 #include <linux/netfilter_ipv4.h>
26 #include <linux/netfilter_ipv6.h>
27 #include <linux/netfilter/nfnetlink.h>
28 #include <linux/netfilter/nfnetlink_queue.h>
29 #include <linux/list.h>
31 #include <net/netfilter/nf_queue.h>
33 #include <asm/atomic.h>
35 #ifdef CONFIG_BRIDGE_NETFILTER
36 #include "../bridge/br_private.h"
39 #define NFQNL_QMAX_DEFAULT 1024
41 struct nfqnl_instance
{
42 struct hlist_node hlist
; /* global list of queues */
46 unsigned int queue_maxlen
;
47 unsigned int copy_range
;
48 unsigned int queue_total
;
49 unsigned int queue_dropped
;
50 unsigned int queue_user_dropped
;
52 unsigned int id_sequence
; /* 'sequence' of pkt ids */
54 u_int16_t queue_num
; /* number of this queue */
59 struct list_head queue_list
; /* packets in queue */
62 typedef int (*nfqnl_cmpfn
)(struct nf_queue_entry
*, unsigned long);
64 static DEFINE_SPINLOCK(instances_lock
);
66 #define INSTANCE_BUCKETS 16
67 static struct hlist_head instance_table
[INSTANCE_BUCKETS
] __read_mostly
;
69 static inline u_int8_t
instance_hashfn(u_int16_t queue_num
)
71 return ((queue_num
>> 8) | queue_num
) % INSTANCE_BUCKETS
;
74 static struct nfqnl_instance
*
75 instance_lookup(u_int16_t queue_num
)
77 struct hlist_head
*head
;
78 struct hlist_node
*pos
;
79 struct nfqnl_instance
*inst
;
81 head
= &instance_table
[instance_hashfn(queue_num
)];
82 hlist_for_each_entry_rcu(inst
, pos
, head
, hlist
) {
83 if (inst
->queue_num
== queue_num
)
89 static struct nfqnl_instance
*
90 instance_create(u_int16_t queue_num
, int pid
)
92 struct nfqnl_instance
*inst
;
96 spin_lock(&instances_lock
);
97 if (instance_lookup(queue_num
)) {
102 inst
= kzalloc(sizeof(*inst
), GFP_ATOMIC
);
108 inst
->queue_num
= queue_num
;
109 inst
->peer_pid
= pid
;
110 inst
->queue_maxlen
= NFQNL_QMAX_DEFAULT
;
111 inst
->copy_range
= 0xfffff;
112 inst
->copy_mode
= NFQNL_COPY_NONE
;
113 spin_lock_init(&inst
->lock
);
114 INIT_LIST_HEAD(&inst
->queue_list
);
115 INIT_RCU_HEAD(&inst
->rcu
);
117 if (!try_module_get(THIS_MODULE
)) {
122 h
= instance_hashfn(queue_num
);
123 hlist_add_head_rcu(&inst
->hlist
, &instance_table
[h
]);
125 spin_unlock(&instances_lock
);
132 spin_unlock(&instances_lock
);
136 static void nfqnl_flush(struct nfqnl_instance
*queue
, nfqnl_cmpfn cmpfn
,
140 instance_destroy_rcu(struct rcu_head
*head
)
142 struct nfqnl_instance
*inst
= container_of(head
, struct nfqnl_instance
,
145 nfqnl_flush(inst
, NULL
, 0);
147 module_put(THIS_MODULE
);
151 __instance_destroy(struct nfqnl_instance
*inst
)
153 hlist_del_rcu(&inst
->hlist
);
154 call_rcu(&inst
->rcu
, instance_destroy_rcu
);
158 instance_destroy(struct nfqnl_instance
*inst
)
160 spin_lock(&instances_lock
);
161 __instance_destroy(inst
);
162 spin_unlock(&instances_lock
);
166 __enqueue_entry(struct nfqnl_instance
*queue
, struct nf_queue_entry
*entry
)
168 list_add_tail(&entry
->list
, &queue
->queue_list
);
169 queue
->queue_total
++;
172 static struct nf_queue_entry
*
173 find_dequeue_entry(struct nfqnl_instance
*queue
, unsigned int id
)
175 struct nf_queue_entry
*entry
= NULL
, *i
;
177 spin_lock_bh(&queue
->lock
);
179 list_for_each_entry(i
, &queue
->queue_list
, list
) {
187 list_del(&entry
->list
);
188 queue
->queue_total
--;
191 spin_unlock_bh(&queue
->lock
);
197 nfqnl_flush(struct nfqnl_instance
*queue
, nfqnl_cmpfn cmpfn
, unsigned long data
)
199 struct nf_queue_entry
*entry
, *next
;
201 spin_lock_bh(&queue
->lock
);
202 list_for_each_entry_safe(entry
, next
, &queue
->queue_list
, list
) {
203 if (!cmpfn
|| cmpfn(entry
, data
)) {
204 list_del(&entry
->list
);
205 queue
->queue_total
--;
206 nf_reinject(entry
, NF_DROP
);
209 spin_unlock_bh(&queue
->lock
);
212 static struct sk_buff
*
213 nfqnl_build_packet_message(struct nfqnl_instance
*queue
,
214 struct nf_queue_entry
*entry
)
216 sk_buff_data_t old_tail
;
220 struct nfqnl_msg_packet_hdr pmsg
;
221 struct nlmsghdr
*nlh
;
222 struct nfgenmsg
*nfmsg
;
223 struct sk_buff
*entskb
= entry
->skb
;
224 struct net_device
*indev
;
225 struct net_device
*outdev
;
227 size
= NLMSG_ALIGN(sizeof(struct nfgenmsg
))
228 + nla_total_size(sizeof(struct nfqnl_msg_packet_hdr
))
229 + nla_total_size(sizeof(u_int32_t
)) /* ifindex */
230 + nla_total_size(sizeof(u_int32_t
)) /* ifindex */
231 #ifdef CONFIG_BRIDGE_NETFILTER
232 + nla_total_size(sizeof(u_int32_t
)) /* ifindex */
233 + nla_total_size(sizeof(u_int32_t
)) /* ifindex */
235 + nla_total_size(sizeof(u_int32_t
)) /* mark */
236 + nla_total_size(sizeof(struct nfqnl_msg_packet_hw
))
237 + nla_total_size(sizeof(struct nfqnl_msg_packet_timestamp
));
239 outdev
= entry
->outdev
;
241 spin_lock_bh(&queue
->lock
);
243 switch ((enum nfqnl_config_mode
)queue
->copy_mode
) {
244 case NFQNL_COPY_META
:
245 case NFQNL_COPY_NONE
:
249 case NFQNL_COPY_PACKET
:
250 if ((entskb
->ip_summed
== CHECKSUM_PARTIAL
||
251 entskb
->ip_summed
== CHECKSUM_COMPLETE
) &&
252 skb_checksum_help(entskb
)) {
253 spin_unlock_bh(&queue
->lock
);
256 if (queue
->copy_range
== 0
257 || queue
->copy_range
> entskb
->len
)
258 data_len
= entskb
->len
;
260 data_len
= queue
->copy_range
;
262 size
+= nla_total_size(data_len
);
266 entry
->id
= queue
->id_sequence
++;
268 spin_unlock_bh(&queue
->lock
);
270 skb
= alloc_skb(size
, GFP_ATOMIC
);
274 old_tail
= skb
->tail
;
275 nlh
= NLMSG_PUT(skb
, 0, 0,
276 NFNL_SUBSYS_QUEUE
<< 8 | NFQNL_MSG_PACKET
,
277 sizeof(struct nfgenmsg
));
278 nfmsg
= NLMSG_DATA(nlh
);
279 nfmsg
->nfgen_family
= entry
->pf
;
280 nfmsg
->version
= NFNETLINK_V0
;
281 nfmsg
->res_id
= htons(queue
->queue_num
);
283 pmsg
.packet_id
= htonl(entry
->id
);
284 pmsg
.hw_protocol
= entskb
->protocol
;
285 pmsg
.hook
= entry
->hook
;
287 NLA_PUT(skb
, NFQA_PACKET_HDR
, sizeof(pmsg
), &pmsg
);
289 indev
= entry
->indev
;
291 #ifndef CONFIG_BRIDGE_NETFILTER
292 NLA_PUT_BE32(skb
, NFQA_IFINDEX_INDEV
, htonl(indev
->ifindex
));
294 if (entry
->pf
== PF_BRIDGE
) {
295 /* Case 1: indev is physical input device, we need to
296 * look for bridge group (when called from
297 * netfilter_bridge) */
298 NLA_PUT_BE32(skb
, NFQA_IFINDEX_PHYSINDEV
,
299 htonl(indev
->ifindex
));
300 /* this is the bridge group "brX" */
301 NLA_PUT_BE32(skb
, NFQA_IFINDEX_INDEV
,
302 htonl(indev
->br_port
->br
->dev
->ifindex
));
304 /* Case 2: indev is bridge group, we need to look for
305 * physical device (when called from ipv4) */
306 NLA_PUT_BE32(skb
, NFQA_IFINDEX_INDEV
,
307 htonl(indev
->ifindex
));
308 if (entskb
->nf_bridge
&& entskb
->nf_bridge
->physindev
)
309 NLA_PUT_BE32(skb
, NFQA_IFINDEX_PHYSINDEV
,
310 htonl(entskb
->nf_bridge
->physindev
->ifindex
));
316 #ifndef CONFIG_BRIDGE_NETFILTER
317 NLA_PUT_BE32(skb
, NFQA_IFINDEX_OUTDEV
, htonl(outdev
->ifindex
));
319 if (entry
->pf
== PF_BRIDGE
) {
320 /* Case 1: outdev is physical output device, we need to
321 * look for bridge group (when called from
322 * netfilter_bridge) */
323 NLA_PUT_BE32(skb
, NFQA_IFINDEX_PHYSOUTDEV
,
324 htonl(outdev
->ifindex
));
325 /* this is the bridge group "brX" */
326 NLA_PUT_BE32(skb
, NFQA_IFINDEX_OUTDEV
,
327 htonl(outdev
->br_port
->br
->dev
->ifindex
));
329 /* Case 2: outdev is bridge group, we need to look for
330 * physical output device (when called from ipv4) */
331 NLA_PUT_BE32(skb
, NFQA_IFINDEX_OUTDEV
,
332 htonl(outdev
->ifindex
));
333 if (entskb
->nf_bridge
&& entskb
->nf_bridge
->physoutdev
)
334 NLA_PUT_BE32(skb
, NFQA_IFINDEX_PHYSOUTDEV
,
335 htonl(entskb
->nf_bridge
->physoutdev
->ifindex
));
341 NLA_PUT_BE32(skb
, NFQA_MARK
, htonl(entskb
->mark
));
343 if (indev
&& entskb
->dev
) {
344 struct nfqnl_msg_packet_hw phw
;
345 int len
= dev_parse_header(entskb
, phw
.hw_addr
);
347 phw
.hw_addrlen
= htons(len
);
348 NLA_PUT(skb
, NFQA_HWADDR
, sizeof(phw
), &phw
);
352 if (entskb
->tstamp
.tv64
) {
353 struct nfqnl_msg_packet_timestamp ts
;
354 struct timeval tv
= ktime_to_timeval(entskb
->tstamp
);
355 ts
.sec
= cpu_to_be64(tv
.tv_sec
);
356 ts
.usec
= cpu_to_be64(tv
.tv_usec
);
358 NLA_PUT(skb
, NFQA_TIMESTAMP
, sizeof(ts
), &ts
);
363 int sz
= nla_attr_size(data_len
);
365 if (skb_tailroom(skb
) < nla_total_size(data_len
)) {
366 printk(KERN_WARNING
"nf_queue: no tailroom!\n");
370 nla
= (struct nlattr
*)skb_put(skb
, nla_total_size(data_len
));
371 nla
->nla_type
= NFQA_PAYLOAD
;
374 if (skb_copy_bits(entskb
, 0, nla_data(nla
), data_len
))
378 nlh
->nlmsg_len
= skb
->tail
- old_tail
;
386 printk(KERN_ERR
"nf_queue: error creating packet message\n");
391 nfqnl_enqueue_packet(struct nf_queue_entry
*entry
, unsigned int queuenum
)
393 struct sk_buff
*nskb
;
394 struct nfqnl_instance
*queue
;
397 /* rcu_read_lock()ed by nf_hook_slow() */
398 queue
= instance_lookup(queuenum
);
402 if (queue
->copy_mode
== NFQNL_COPY_NONE
)
405 nskb
= nfqnl_build_packet_message(queue
, entry
);
409 spin_lock_bh(&queue
->lock
);
411 if (!queue
->peer_pid
)
412 goto err_out_free_nskb
;
414 if (queue
->queue_total
>= queue
->queue_maxlen
) {
415 queue
->queue_dropped
++;
417 printk(KERN_WARNING
"nf_queue: full at %d entries, "
418 "dropping packets(s). Dropped: %d\n",
419 queue
->queue_total
, queue
->queue_dropped
);
420 goto err_out_free_nskb
;
423 /* nfnetlink_unicast will either free the nskb or add it to a socket */
424 err
= nfnetlink_unicast(nskb
, queue
->peer_pid
, MSG_DONTWAIT
);
426 queue
->queue_user_dropped
++;
430 __enqueue_entry(queue
, entry
);
432 spin_unlock_bh(&queue
->lock
);
438 spin_unlock_bh(&queue
->lock
);
444 nfqnl_mangle(void *data
, int data_len
, struct nf_queue_entry
*e
)
449 diff
= data_len
- e
->skb
->len
;
451 if (pskb_trim(e
->skb
, data_len
))
453 } else if (diff
> 0) {
454 if (data_len
> 0xFFFF)
456 if (diff
> skb_tailroom(e
->skb
)) {
457 err
= pskb_expand_head(e
->skb
, 0,
458 diff
- skb_tailroom(e
->skb
),
461 printk(KERN_WARNING
"nf_queue: OOM "
462 "in mangle, dropping packet\n");
466 skb_put(e
->skb
, diff
);
468 if (!skb_make_writable(e
->skb
, data_len
))
470 skb_copy_to_linear_data(e
->skb
, data
, data_len
);
471 e
->skb
->ip_summed
= CHECKSUM_NONE
;
476 nfqnl_set_mode(struct nfqnl_instance
*queue
,
477 unsigned char mode
, unsigned int range
)
481 spin_lock_bh(&queue
->lock
);
483 case NFQNL_COPY_NONE
:
484 case NFQNL_COPY_META
:
485 queue
->copy_mode
= mode
;
486 queue
->copy_range
= 0;
489 case NFQNL_COPY_PACKET
:
490 queue
->copy_mode
= mode
;
491 /* we're using struct nlattr which has 16bit nla_len */
493 queue
->copy_range
= 0xffff;
495 queue
->copy_range
= range
;
502 spin_unlock_bh(&queue
->lock
);
508 dev_cmp(struct nf_queue_entry
*entry
, unsigned long ifindex
)
511 if (entry
->indev
->ifindex
== ifindex
)
514 if (entry
->outdev
->ifindex
== ifindex
)
516 #ifdef CONFIG_BRIDGE_NETFILTER
517 if (entry
->skb
->nf_bridge
) {
518 if (entry
->skb
->nf_bridge
->physindev
&&
519 entry
->skb
->nf_bridge
->physindev
->ifindex
== ifindex
)
521 if (entry
->skb
->nf_bridge
->physoutdev
&&
522 entry
->skb
->nf_bridge
->physoutdev
->ifindex
== ifindex
)
529 /* drop all packets with either indev or outdev == ifindex from all queue
532 nfqnl_dev_drop(int ifindex
)
538 for (i
= 0; i
< INSTANCE_BUCKETS
; i
++) {
539 struct hlist_node
*tmp
;
540 struct nfqnl_instance
*inst
;
541 struct hlist_head
*head
= &instance_table
[i
];
543 hlist_for_each_entry_rcu(inst
, tmp
, head
, hlist
)
544 nfqnl_flush(inst
, dev_cmp
, ifindex
);
550 #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
553 nfqnl_rcv_dev_event(struct notifier_block
*this,
554 unsigned long event
, void *ptr
)
556 struct net_device
*dev
= ptr
;
558 if (dev
->nd_net
!= &init_net
)
561 /* Drop any packets associated with the downed device */
562 if (event
== NETDEV_DOWN
)
563 nfqnl_dev_drop(dev
->ifindex
);
567 static struct notifier_block nfqnl_dev_notifier
= {
568 .notifier_call
= nfqnl_rcv_dev_event
,
572 nfqnl_rcv_nl_event(struct notifier_block
*this,
573 unsigned long event
, void *ptr
)
575 struct netlink_notify
*n
= ptr
;
577 if (event
== NETLINK_URELEASE
&&
578 n
->protocol
== NETLINK_NETFILTER
&& n
->pid
) {
581 /* destroy all instances for this pid */
582 spin_lock(&instances_lock
);
583 for (i
= 0; i
< INSTANCE_BUCKETS
; i
++) {
584 struct hlist_node
*tmp
, *t2
;
585 struct nfqnl_instance
*inst
;
586 struct hlist_head
*head
= &instance_table
[i
];
588 hlist_for_each_entry_safe(inst
, tmp
, t2
, head
, hlist
) {
589 if ((n
->net
== &init_net
) &&
590 (n
->pid
== inst
->peer_pid
))
591 __instance_destroy(inst
);
594 spin_unlock(&instances_lock
);
599 static struct notifier_block nfqnl_rtnl_notifier
= {
600 .notifier_call
= nfqnl_rcv_nl_event
,
603 static const struct nla_policy nfqa_verdict_policy
[NFQA_MAX
+1] = {
604 [NFQA_VERDICT_HDR
] = { .len
= sizeof(struct nfqnl_msg_verdict_hdr
) },
605 [NFQA_MARK
] = { .type
= NLA_U32
},
606 [NFQA_PAYLOAD
] = { .type
= NLA_UNSPEC
},
610 nfqnl_recv_verdict(struct sock
*ctnl
, struct sk_buff
*skb
,
611 struct nlmsghdr
*nlh
, struct nlattr
*nfqa
[])
613 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
614 u_int16_t queue_num
= ntohs(nfmsg
->res_id
);
616 struct nfqnl_msg_verdict_hdr
*vhdr
;
617 struct nfqnl_instance
*queue
;
618 unsigned int verdict
;
619 struct nf_queue_entry
*entry
;
623 queue
= instance_lookup(queue_num
);
629 if (queue
->peer_pid
!= NETLINK_CB(skb
).pid
) {
634 if (!nfqa
[NFQA_VERDICT_HDR
]) {
639 vhdr
= nla_data(nfqa
[NFQA_VERDICT_HDR
]);
640 verdict
= ntohl(vhdr
->verdict
);
642 if ((verdict
& NF_VERDICT_MASK
) > NF_MAX_VERDICT
) {
647 entry
= find_dequeue_entry(queue
, ntohl(vhdr
->id
));
654 if (nfqa
[NFQA_PAYLOAD
]) {
655 if (nfqnl_mangle(nla_data(nfqa
[NFQA_PAYLOAD
]),
656 nla_len(nfqa
[NFQA_PAYLOAD
]), entry
) < 0)
661 entry
->skb
->mark
= ntohl(nla_get_be32(nfqa
[NFQA_MARK
]));
663 nf_reinject(entry
, verdict
);
672 nfqnl_recv_unsupp(struct sock
*ctnl
, struct sk_buff
*skb
,
673 struct nlmsghdr
*nlh
, struct nlattr
*nfqa
[])
678 static const struct nla_policy nfqa_cfg_policy
[NFQA_CFG_MAX
+1] = {
679 [NFQA_CFG_CMD
] = { .len
= sizeof(struct nfqnl_msg_config_cmd
) },
680 [NFQA_CFG_PARAMS
] = { .len
= sizeof(struct nfqnl_msg_config_params
) },
683 static const struct nf_queue_handler nfqh
= {
685 .outfn
= &nfqnl_enqueue_packet
,
689 nfqnl_recv_config(struct sock
*ctnl
, struct sk_buff
*skb
,
690 struct nlmsghdr
*nlh
, struct nlattr
*nfqa
[])
692 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
693 u_int16_t queue_num
= ntohs(nfmsg
->res_id
);
694 struct nfqnl_instance
*queue
;
695 struct nfqnl_msg_config_cmd
*cmd
= NULL
;
698 if (nfqa
[NFQA_CFG_CMD
]) {
699 cmd
= nla_data(nfqa
[NFQA_CFG_CMD
]);
701 /* Commands without queue context - might sleep */
702 switch (cmd
->command
) {
703 case NFQNL_CFG_CMD_PF_BIND
:
704 ret
= nf_register_queue_handler(ntohs(cmd
->pf
),
707 case NFQNL_CFG_CMD_PF_UNBIND
:
708 ret
= nf_unregister_queue_handler(ntohs(cmd
->pf
),
720 queue
= instance_lookup(queue_num
);
721 if (queue
&& queue
->peer_pid
!= NETLINK_CB(skb
).pid
) {
727 switch (cmd
->command
) {
728 case NFQNL_CFG_CMD_BIND
:
733 queue
= instance_create(queue_num
, NETLINK_CB(skb
).pid
);
735 ret
= PTR_ERR(queue
);
739 case NFQNL_CFG_CMD_UNBIND
:
744 instance_destroy(queue
);
746 case NFQNL_CFG_CMD_PF_BIND
:
747 case NFQNL_CFG_CMD_PF_UNBIND
:
755 if (nfqa
[NFQA_CFG_PARAMS
]) {
756 struct nfqnl_msg_config_params
*params
;
762 params
= nla_data(nfqa
[NFQA_CFG_PARAMS
]);
763 nfqnl_set_mode(queue
, params
->copy_mode
,
764 ntohl(params
->copy_range
));
767 if (nfqa
[NFQA_CFG_QUEUE_MAXLEN
]) {
768 __be32
*queue_maxlen
;
774 queue_maxlen
= nla_data(nfqa
[NFQA_CFG_QUEUE_MAXLEN
]);
775 spin_lock_bh(&queue
->lock
);
776 queue
->queue_maxlen
= ntohl(*queue_maxlen
);
777 spin_unlock_bh(&queue
->lock
);
785 static const struct nfnl_callback nfqnl_cb
[NFQNL_MSG_MAX
] = {
786 [NFQNL_MSG_PACKET
] = { .call
= nfqnl_recv_unsupp
,
787 .attr_count
= NFQA_MAX
, },
788 [NFQNL_MSG_VERDICT
] = { .call
= nfqnl_recv_verdict
,
789 .attr_count
= NFQA_MAX
,
790 .policy
= nfqa_verdict_policy
},
791 [NFQNL_MSG_CONFIG
] = { .call
= nfqnl_recv_config
,
792 .attr_count
= NFQA_CFG_MAX
,
793 .policy
= nfqa_cfg_policy
},
796 static const struct nfnetlink_subsystem nfqnl_subsys
= {
798 .subsys_id
= NFNL_SUBSYS_QUEUE
,
799 .cb_count
= NFQNL_MSG_MAX
,
803 #ifdef CONFIG_PROC_FS
808 static struct hlist_node
*get_first(struct seq_file
*seq
)
810 struct iter_state
*st
= seq
->private;
815 for (st
->bucket
= 0; st
->bucket
< INSTANCE_BUCKETS
; st
->bucket
++) {
816 if (!hlist_empty(&instance_table
[st
->bucket
]))
817 return instance_table
[st
->bucket
].first
;
822 static struct hlist_node
*get_next(struct seq_file
*seq
, struct hlist_node
*h
)
824 struct iter_state
*st
= seq
->private;
828 if (++st
->bucket
>= INSTANCE_BUCKETS
)
831 h
= instance_table
[st
->bucket
].first
;
836 static struct hlist_node
*get_idx(struct seq_file
*seq
, loff_t pos
)
838 struct hlist_node
*head
;
839 head
= get_first(seq
);
842 while (pos
&& (head
= get_next(seq
, head
)))
844 return pos
? NULL
: head
;
847 static void *seq_start(struct seq_file
*seq
, loff_t
*pos
)
848 __acquires(instances_lock
)
850 spin_lock(&instances_lock
);
851 return get_idx(seq
, *pos
);
854 static void *seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
857 return get_next(s
, v
);
860 static void seq_stop(struct seq_file
*s
, void *v
)
861 __releases(instances_lock
)
863 spin_unlock(&instances_lock
);
866 static int seq_show(struct seq_file
*s
, void *v
)
868 const struct nfqnl_instance
*inst
= v
;
870 return seq_printf(s
, "%5d %6d %5d %1d %5d %5d %5d %8d %2d\n",
872 inst
->peer_pid
, inst
->queue_total
,
873 inst
->copy_mode
, inst
->copy_range
,
874 inst
->queue_dropped
, inst
->queue_user_dropped
,
875 inst
->id_sequence
, 1);
878 static const struct seq_operations nfqnl_seq_ops
= {
885 static int nfqnl_open(struct inode
*inode
, struct file
*file
)
887 return seq_open_private(file
, &nfqnl_seq_ops
,
888 sizeof(struct iter_state
));
891 static const struct file_operations nfqnl_file_ops
= {
892 .owner
= THIS_MODULE
,
896 .release
= seq_release_private
,
901 static int __init
nfnetlink_queue_init(void)
903 int i
, status
= -ENOMEM
;
904 #ifdef CONFIG_PROC_FS
905 struct proc_dir_entry
*proc_nfqueue
;
908 for (i
= 0; i
< INSTANCE_BUCKETS
; i
++)
909 INIT_HLIST_HEAD(&instance_table
[i
]);
911 netlink_register_notifier(&nfqnl_rtnl_notifier
);
912 status
= nfnetlink_subsys_register(&nfqnl_subsys
);
914 printk(KERN_ERR
"nf_queue: failed to create netlink socket\n");
915 goto cleanup_netlink_notifier
;
918 #ifdef CONFIG_PROC_FS
919 proc_nfqueue
= create_proc_entry("nfnetlink_queue", 0440,
923 proc_nfqueue
->proc_fops
= &nfqnl_file_ops
;
926 register_netdevice_notifier(&nfqnl_dev_notifier
);
929 #ifdef CONFIG_PROC_FS
931 nfnetlink_subsys_unregister(&nfqnl_subsys
);
933 cleanup_netlink_notifier
:
934 netlink_unregister_notifier(&nfqnl_rtnl_notifier
);
938 static void __exit
nfnetlink_queue_fini(void)
940 nf_unregister_queue_handlers(&nfqh
);
941 unregister_netdevice_notifier(&nfqnl_dev_notifier
);
942 #ifdef CONFIG_PROC_FS
943 remove_proc_entry("nfnetlink_queue", proc_net_netfilter
);
945 nfnetlink_subsys_unregister(&nfqnl_subsys
);
946 netlink_unregister_notifier(&nfqnl_rtnl_notifier
);
949 MODULE_DESCRIPTION("netfilter packet queue handler");
950 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
951 MODULE_LICENSE("GPL");
952 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_QUEUE
);
954 module_init(nfnetlink_queue_init
);
955 module_exit(nfnetlink_queue_fini
);