2 * This is a module which is used for queueing IPv6 packets and
3 * communicating with userspace via netlink.
5 * (C) 2001 Fernando Anton, this code is GPL.
6 * IPv64 Project - Work based in IPv64 draft by Arturo Azcorra.
7 * Universidad Carlos III de Madrid - Leganes (Madrid) - Spain
8 * Universidad Politecnica de Alcala de Henares - Alcala de H. (Madrid) - Spain
9 * email: fanton@it.uc3m.es
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
15 #include <linux/module.h>
16 #include <linux/skbuff.h>
17 #include <linux/init.h>
18 #include <linux/ipv6.h>
19 #include <linux/notifier.h>
20 #include <linux/netdevice.h>
21 #include <linux/netfilter.h>
22 #include <linux/netlink.h>
23 #include <linux/spinlock.h>
24 #include <linux/sysctl.h>
25 #include <linux/proc_fs.h>
26 #include <linux/seq_file.h>
27 #include <linux/mutex.h>
28 #include <net/net_namespace.h>
31 #include <net/ip6_route.h>
32 #include <net/netfilter/nf_queue.h>
33 #include <linux/netfilter_ipv4/ip_queue.h>
34 #include <linux/netfilter_ipv4/ip_tables.h>
35 #include <linux/netfilter_ipv6/ip6_tables.h>
37 #define IPQ_QMAX_DEFAULT 1024
38 #define IPQ_PROC_FS_NAME "ip6_queue"
39 #define NET_IPQ_QMAX_NAME "ip6_queue_maxlen"
41 typedef int (*ipq_cmpfn
)(struct nf_queue_entry
*, unsigned long);
43 static unsigned char copy_mode __read_mostly
= IPQ_COPY_NONE
;
44 static unsigned int queue_maxlen __read_mostly
= IPQ_QMAX_DEFAULT
;
45 static DEFINE_RWLOCK(queue_lock
);
46 static int peer_pid __read_mostly
;
47 static unsigned int copy_range __read_mostly
;
48 static unsigned int queue_total
;
49 static unsigned int queue_dropped
= 0;
50 static unsigned int queue_user_dropped
= 0;
51 static struct sock
*ipqnl __read_mostly
;
52 static LIST_HEAD(queue_list
);
53 static DEFINE_MUTEX(ipqnl_mutex
);
56 __ipq_enqueue_entry(struct nf_queue_entry
*entry
)
58 list_add_tail(&entry
->list
, &queue_list
);
63 __ipq_set_mode(unsigned char mode
, unsigned int range
)
77 if (copy_range
> 0xFFFF)
88 static void __ipq_flush(ipq_cmpfn cmpfn
, unsigned long data
);
94 net_disable_timestamp();
95 __ipq_set_mode(IPQ_COPY_NONE
, 0);
99 static struct nf_queue_entry
*
100 ipq_find_dequeue_entry(unsigned long id
)
102 struct nf_queue_entry
*entry
= NULL
, *i
;
104 write_lock_bh(&queue_lock
);
106 list_for_each_entry(i
, &queue_list
, list
) {
107 if ((unsigned long)i
== id
) {
114 list_del(&entry
->list
);
118 write_unlock_bh(&queue_lock
);
123 __ipq_flush(ipq_cmpfn cmpfn
, unsigned long data
)
125 struct nf_queue_entry
*entry
, *next
;
127 list_for_each_entry_safe(entry
, next
, &queue_list
, list
) {
128 if (!cmpfn
|| cmpfn(entry
, data
)) {
129 list_del(&entry
->list
);
131 nf_reinject(entry
, NF_DROP
);
137 ipq_flush(ipq_cmpfn cmpfn
, unsigned long data
)
139 write_lock_bh(&queue_lock
);
140 __ipq_flush(cmpfn
, data
);
141 write_unlock_bh(&queue_lock
);
144 static struct sk_buff
*
145 ipq_build_packet_message(struct nf_queue_entry
*entry
, int *errp
)
147 sk_buff_data_t old_tail
;
151 struct ipq_packet_msg
*pmsg
;
152 struct nlmsghdr
*nlh
;
155 read_lock_bh(&queue_lock
);
160 size
= NLMSG_SPACE(sizeof(*pmsg
));
163 case IPQ_COPY_PACKET
:
164 if ((entry
->skb
->ip_summed
== CHECKSUM_PARTIAL
||
165 entry
->skb
->ip_summed
== CHECKSUM_COMPLETE
) &&
166 (*errp
= skb_checksum_help(entry
->skb
))) {
167 read_unlock_bh(&queue_lock
);
170 if (copy_range
== 0 || copy_range
> entry
->skb
->len
)
171 data_len
= entry
->skb
->len
;
173 data_len
= copy_range
;
175 size
= NLMSG_SPACE(sizeof(*pmsg
) + data_len
);
180 read_unlock_bh(&queue_lock
);
184 read_unlock_bh(&queue_lock
);
186 skb
= alloc_skb(size
, GFP_ATOMIC
);
190 old_tail
= skb
->tail
;
191 nlh
= NLMSG_PUT(skb
, 0, 0, IPQM_PACKET
, size
- sizeof(*nlh
));
192 pmsg
= NLMSG_DATA(nlh
);
193 memset(pmsg
, 0, sizeof(*pmsg
));
195 pmsg
->packet_id
= (unsigned long )entry
;
196 pmsg
->data_len
= data_len
;
197 tv
= ktime_to_timeval(entry
->skb
->tstamp
);
198 pmsg
->timestamp_sec
= tv
.tv_sec
;
199 pmsg
->timestamp_usec
= tv
.tv_usec
;
200 pmsg
->mark
= entry
->skb
->mark
;
201 pmsg
->hook
= entry
->hook
;
202 pmsg
->hw_protocol
= entry
->skb
->protocol
;
205 strcpy(pmsg
->indev_name
, entry
->indev
->name
);
207 pmsg
->indev_name
[0] = '\0';
210 strcpy(pmsg
->outdev_name
, entry
->outdev
->name
);
212 pmsg
->outdev_name
[0] = '\0';
214 if (entry
->indev
&& entry
->skb
->dev
) {
215 pmsg
->hw_type
= entry
->skb
->dev
->type
;
216 pmsg
->hw_addrlen
= dev_parse_header(entry
->skb
, pmsg
->hw_addr
);
220 if (skb_copy_bits(entry
->skb
, 0, pmsg
->payload
, data_len
))
223 nlh
->nlmsg_len
= skb
->tail
- old_tail
;
228 printk(KERN_ERR
"ip6_queue: error creating packet message\n");
233 ipq_enqueue_packet(struct nf_queue_entry
*entry
, unsigned int queuenum
)
235 int status
= -EINVAL
;
236 struct sk_buff
*nskb
;
238 if (copy_mode
== IPQ_COPY_NONE
)
241 nskb
= ipq_build_packet_message(entry
, &status
);
245 write_lock_bh(&queue_lock
);
248 goto err_out_free_nskb
;
250 if (queue_total
>= queue_maxlen
) {
254 printk (KERN_WARNING
"ip6_queue: fill at %d entries, "
255 "dropping packet(s). Dropped: %d\n", queue_total
,
257 goto err_out_free_nskb
;
260 /* netlink_unicast will either free the nskb or attach it to a socket */
261 status
= netlink_unicast(ipqnl
, nskb
, peer_pid
, MSG_DONTWAIT
);
263 queue_user_dropped
++;
267 __ipq_enqueue_entry(entry
);
269 write_unlock_bh(&queue_lock
);
276 write_unlock_bh(&queue_lock
);
281 ipq_mangle_ipv6(ipq_verdict_msg_t
*v
, struct nf_queue_entry
*e
)
284 struct ipv6hdr
*user_iph
= (struct ipv6hdr
*)v
->payload
;
285 struct sk_buff
*nskb
;
287 if (v
->data_len
< sizeof(*user_iph
))
289 diff
= v
->data_len
- e
->skb
->len
;
291 if (pskb_trim(e
->skb
, v
->data_len
))
293 } else if (diff
> 0) {
294 if (v
->data_len
> 0xFFFF)
296 if (diff
> skb_tailroom(e
->skb
)) {
297 nskb
= skb_copy_expand(e
->skb
, skb_headroom(e
->skb
),
300 printk(KERN_WARNING
"ip6_queue: OOM "
301 "in mangle, dropping packet\n");
307 skb_put(e
->skb
, diff
);
309 if (!skb_make_writable(e
->skb
, v
->data_len
))
311 skb_copy_to_linear_data(e
->skb
, v
->payload
, v
->data_len
);
312 e
->skb
->ip_summed
= CHECKSUM_NONE
;
318 ipq_set_verdict(struct ipq_verdict_msg
*vmsg
, unsigned int len
)
320 struct nf_queue_entry
*entry
;
322 if (vmsg
->value
> NF_MAX_VERDICT
)
325 entry
= ipq_find_dequeue_entry(vmsg
->id
);
329 int verdict
= vmsg
->value
;
331 if (vmsg
->data_len
&& vmsg
->data_len
== len
)
332 if (ipq_mangle_ipv6(vmsg
, entry
) < 0)
335 nf_reinject(entry
, verdict
);
341 ipq_set_mode(unsigned char mode
, unsigned int range
)
345 write_lock_bh(&queue_lock
);
346 status
= __ipq_set_mode(mode
, range
);
347 write_unlock_bh(&queue_lock
);
352 ipq_receive_peer(struct ipq_peer_msg
*pmsg
,
353 unsigned char type
, unsigned int len
)
357 if (len
< sizeof(*pmsg
))
362 status
= ipq_set_mode(pmsg
->msg
.mode
.value
,
363 pmsg
->msg
.mode
.range
);
367 if (pmsg
->msg
.verdict
.value
> NF_MAX_VERDICT
)
370 status
= ipq_set_verdict(&pmsg
->msg
.verdict
,
371 len
- sizeof(*pmsg
));
380 dev_cmp(struct nf_queue_entry
*entry
, unsigned long ifindex
)
383 if (entry
->indev
->ifindex
== ifindex
)
387 if (entry
->outdev
->ifindex
== ifindex
)
389 #ifdef CONFIG_BRIDGE_NETFILTER
390 if (entry
->skb
->nf_bridge
) {
391 if (entry
->skb
->nf_bridge
->physindev
&&
392 entry
->skb
->nf_bridge
->physindev
->ifindex
== ifindex
)
394 if (entry
->skb
->nf_bridge
->physoutdev
&&
395 entry
->skb
->nf_bridge
->physoutdev
->ifindex
== ifindex
)
403 ipq_dev_drop(int ifindex
)
405 ipq_flush(dev_cmp
, ifindex
);
408 #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
411 __ipq_rcv_skb(struct sk_buff
*skb
)
413 int status
, type
, pid
, flags
, nlmsglen
, skblen
;
414 struct nlmsghdr
*nlh
;
417 if (skblen
< sizeof(*nlh
))
420 nlh
= nlmsg_hdr(skb
);
421 nlmsglen
= nlh
->nlmsg_len
;
422 if (nlmsglen
< sizeof(*nlh
) || skblen
< nlmsglen
)
425 pid
= nlh
->nlmsg_pid
;
426 flags
= nlh
->nlmsg_flags
;
428 if(pid
<= 0 || !(flags
& NLM_F_REQUEST
) || flags
& NLM_F_MULTI
)
429 RCV_SKB_FAIL(-EINVAL
);
431 if (flags
& MSG_TRUNC
)
432 RCV_SKB_FAIL(-ECOMM
);
434 type
= nlh
->nlmsg_type
;
435 if (type
< NLMSG_NOOP
|| type
>= IPQM_MAX
)
436 RCV_SKB_FAIL(-EINVAL
);
438 if (type
<= IPQM_BASE
)
441 if (security_netlink_recv(skb
, CAP_NET_ADMIN
))
442 RCV_SKB_FAIL(-EPERM
);
444 write_lock_bh(&queue_lock
);
447 if (peer_pid
!= pid
) {
448 write_unlock_bh(&queue_lock
);
449 RCV_SKB_FAIL(-EBUSY
);
452 net_enable_timestamp();
456 write_unlock_bh(&queue_lock
);
458 status
= ipq_receive_peer(NLMSG_DATA(nlh
), type
,
459 nlmsglen
- NLMSG_LENGTH(0));
461 RCV_SKB_FAIL(status
);
463 if (flags
& NLM_F_ACK
)
464 netlink_ack(skb
, nlh
, 0);
469 ipq_rcv_skb(struct sk_buff
*skb
)
471 mutex_lock(&ipqnl_mutex
);
473 mutex_unlock(&ipqnl_mutex
);
477 ipq_rcv_dev_event(struct notifier_block
*this,
478 unsigned long event
, void *ptr
)
480 struct net_device
*dev
= ptr
;
482 if (!net_eq(dev_net(dev
), &init_net
))
485 /* Drop any packets associated with the downed device */
486 if (event
== NETDEV_DOWN
)
487 ipq_dev_drop(dev
->ifindex
);
491 static struct notifier_block ipq_dev_notifier
= {
492 .notifier_call
= ipq_rcv_dev_event
,
496 ipq_rcv_nl_event(struct notifier_block
*this,
497 unsigned long event
, void *ptr
)
499 struct netlink_notify
*n
= ptr
;
501 if (event
== NETLINK_URELEASE
&& n
->protocol
== NETLINK_IP6_FW
) {
502 write_lock_bh(&queue_lock
);
503 if ((net_eq(n
->net
, &init_net
)) && (n
->pid
== peer_pid
))
505 write_unlock_bh(&queue_lock
);
510 static struct notifier_block ipq_nl_notifier
= {
511 .notifier_call
= ipq_rcv_nl_event
,
515 static struct ctl_table_header
*ipq_sysctl_header
;
517 static ctl_table ipq_table
[] = {
519 .procname
= NET_IPQ_QMAX_NAME
,
520 .data
= &queue_maxlen
,
521 .maxlen
= sizeof(queue_maxlen
),
523 .proc_handler
= proc_dointvec
529 #ifdef CONFIG_PROC_FS
530 static int ip6_queue_show(struct seq_file
*m
, void *v
)
532 read_lock_bh(&queue_lock
);
538 "Queue length : %u\n"
539 "Queue max. length : %u\n"
540 "Queue dropped : %u\n"
541 "Netfilter dropped : %u\n",
550 read_unlock_bh(&queue_lock
);
554 static int ip6_queue_open(struct inode
*inode
, struct file
*file
)
556 return single_open(file
, ip6_queue_show
, NULL
);
559 static const struct file_operations ip6_queue_proc_fops
= {
560 .open
= ip6_queue_open
,
563 .release
= single_release
,
564 .owner
= THIS_MODULE
,
568 static const struct nf_queue_handler nfqh
= {
570 .outfn
= &ipq_enqueue_packet
,
573 static int __init
ip6_queue_init(void)
575 int status
= -ENOMEM
;
576 struct proc_dir_entry
*proc __maybe_unused
;
578 netlink_register_notifier(&ipq_nl_notifier
);
579 ipqnl
= netlink_kernel_create(&init_net
, NETLINK_IP6_FW
, 0,
580 ipq_rcv_skb
, NULL
, THIS_MODULE
);
582 printk(KERN_ERR
"ip6_queue: failed to create netlink socket\n");
583 goto cleanup_netlink_notifier
;
586 #ifdef CONFIG_PROC_FS
587 proc
= proc_create(IPQ_PROC_FS_NAME
, 0, init_net
.proc_net
,
588 &ip6_queue_proc_fops
);
590 printk(KERN_ERR
"ip6_queue: failed to create proc entry\n");
594 register_netdevice_notifier(&ipq_dev_notifier
);
596 ipq_sysctl_header
= register_sysctl_paths(net_ipv6_ctl_path
, ipq_table
);
598 status
= nf_register_queue_handler(NFPROTO_IPV6
, &nfqh
);
600 printk(KERN_ERR
"ip6_queue: failed to register queue handler\n");
607 unregister_sysctl_table(ipq_sysctl_header
);
609 unregister_netdevice_notifier(&ipq_dev_notifier
);
610 proc_net_remove(&init_net
, IPQ_PROC_FS_NAME
);
612 cleanup_ipqnl
: __maybe_unused
613 netlink_kernel_release(ipqnl
);
614 mutex_lock(&ipqnl_mutex
);
615 mutex_unlock(&ipqnl_mutex
);
617 cleanup_netlink_notifier
:
618 netlink_unregister_notifier(&ipq_nl_notifier
);
622 static void __exit
ip6_queue_fini(void)
624 nf_unregister_queue_handlers(&nfqh
);
629 unregister_sysctl_table(ipq_sysctl_header
);
631 unregister_netdevice_notifier(&ipq_dev_notifier
);
632 proc_net_remove(&init_net
, IPQ_PROC_FS_NAME
);
634 netlink_kernel_release(ipqnl
);
635 mutex_lock(&ipqnl_mutex
);
636 mutex_unlock(&ipqnl_mutex
);
638 netlink_unregister_notifier(&ipq_nl_notifier
);
641 MODULE_DESCRIPTION("IPv6 packet queue handler");
642 MODULE_LICENSE("GPL");
643 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_IP6_FW
);
645 module_init(ip6_queue_init
);
646 module_exit(ip6_queue_fini
);