netfilter: remove unnecessary returns from void function()s
[safe/jmp/linux-2.6] / net / ipv6 / netfilter / ip6_queue.c
1 /*
2  * This is a module which is used for queueing IPv6 packets and
3  * communicating with userspace via netlink.
4  *
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
10  *
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.
14  */
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 <linux/slab.h>
29 #include <net/net_namespace.h>
30 #include <net/sock.h>
31 #include <net/ipv6.h>
32 #include <net/ip6_route.h>
33 #include <net/netfilter/nf_queue.h>
34 #include <linux/netfilter_ipv4/ip_queue.h>
35 #include <linux/netfilter_ipv4/ip_tables.h>
36 #include <linux/netfilter_ipv6/ip6_tables.h>
37
38 #define IPQ_QMAX_DEFAULT 1024
39 #define IPQ_PROC_FS_NAME "ip6_queue"
40 #define NET_IPQ_QMAX_NAME "ip6_queue_maxlen"
41
42 typedef int (*ipq_cmpfn)(struct nf_queue_entry *, unsigned long);
43
44 static unsigned char copy_mode __read_mostly = IPQ_COPY_NONE;
45 static unsigned int queue_maxlen __read_mostly = IPQ_QMAX_DEFAULT;
46 static DEFINE_RWLOCK(queue_lock);
47 static int peer_pid __read_mostly;
48 static unsigned int copy_range __read_mostly;
49 static unsigned int queue_total;
50 static unsigned int queue_dropped = 0;
51 static unsigned int queue_user_dropped = 0;
52 static struct sock *ipqnl __read_mostly;
53 static LIST_HEAD(queue_list);
54 static DEFINE_MUTEX(ipqnl_mutex);
55
56 static inline void
57 __ipq_enqueue_entry(struct nf_queue_entry *entry)
58 {
59        list_add_tail(&entry->list, &queue_list);
60        queue_total++;
61 }
62
63 static inline int
64 __ipq_set_mode(unsigned char mode, unsigned int range)
65 {
66         int status = 0;
67
68         switch(mode) {
69         case IPQ_COPY_NONE:
70         case IPQ_COPY_META:
71                 copy_mode = mode;
72                 copy_range = 0;
73                 break;
74
75         case IPQ_COPY_PACKET:
76                 copy_mode = mode;
77                 copy_range = range;
78                 if (copy_range > 0xFFFF)
79                         copy_range = 0xFFFF;
80                 break;
81
82         default:
83                 status = -EINVAL;
84
85         }
86         return status;
87 }
88
89 static void __ipq_flush(ipq_cmpfn cmpfn, unsigned long data);
90
91 static inline void
92 __ipq_reset(void)
93 {
94         peer_pid = 0;
95         net_disable_timestamp();
96         __ipq_set_mode(IPQ_COPY_NONE, 0);
97         __ipq_flush(NULL, 0);
98 }
99
100 static struct nf_queue_entry *
101 ipq_find_dequeue_entry(unsigned long id)
102 {
103         struct nf_queue_entry *entry = NULL, *i;
104
105         write_lock_bh(&queue_lock);
106
107         list_for_each_entry(i, &queue_list, list) {
108                 if ((unsigned long)i == id) {
109                         entry = i;
110                         break;
111                 }
112         }
113
114         if (entry) {
115                 list_del(&entry->list);
116                 queue_total--;
117         }
118
119         write_unlock_bh(&queue_lock);
120         return entry;
121 }
122
123 static void
124 __ipq_flush(ipq_cmpfn cmpfn, unsigned long data)
125 {
126         struct nf_queue_entry *entry, *next;
127
128         list_for_each_entry_safe(entry, next, &queue_list, list) {
129                 if (!cmpfn || cmpfn(entry, data)) {
130                         list_del(&entry->list);
131                         queue_total--;
132                         nf_reinject(entry, NF_DROP);
133                 }
134         }
135 }
136
137 static void
138 ipq_flush(ipq_cmpfn cmpfn, unsigned long data)
139 {
140         write_lock_bh(&queue_lock);
141         __ipq_flush(cmpfn, data);
142         write_unlock_bh(&queue_lock);
143 }
144
145 static struct sk_buff *
146 ipq_build_packet_message(struct nf_queue_entry *entry, int *errp)
147 {
148         sk_buff_data_t old_tail;
149         size_t size = 0;
150         size_t data_len = 0;
151         struct sk_buff *skb;
152         struct ipq_packet_msg *pmsg;
153         struct nlmsghdr *nlh;
154         struct timeval tv;
155
156         read_lock_bh(&queue_lock);
157
158         switch (copy_mode) {
159         case IPQ_COPY_META:
160         case IPQ_COPY_NONE:
161                 size = NLMSG_SPACE(sizeof(*pmsg));
162                 break;
163
164         case IPQ_COPY_PACKET:
165                 if (entry->skb->ip_summed == CHECKSUM_PARTIAL &&
166                     (*errp = skb_checksum_help(entry->skb))) {
167                         read_unlock_bh(&queue_lock);
168                         return NULL;
169                 }
170                 if (copy_range == 0 || copy_range > entry->skb->len)
171                         data_len = entry->skb->len;
172                 else
173                         data_len = copy_range;
174
175                 size = NLMSG_SPACE(sizeof(*pmsg) + data_len);
176                 break;
177
178         default:
179                 *errp = -EINVAL;
180                 read_unlock_bh(&queue_lock);
181                 return NULL;
182         }
183
184         read_unlock_bh(&queue_lock);
185
186         skb = alloc_skb(size, GFP_ATOMIC);
187         if (!skb)
188                 goto nlmsg_failure;
189
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));
194
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;
203
204         if (entry->indev)
205                 strcpy(pmsg->indev_name, entry->indev->name);
206         else
207                 pmsg->indev_name[0] = '\0';
208
209         if (entry->outdev)
210                 strcpy(pmsg->outdev_name, entry->outdev->name);
211         else
212                 pmsg->outdev_name[0] = '\0';
213
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);
217         }
218
219         if (data_len)
220                 if (skb_copy_bits(entry->skb, 0, pmsg->payload, data_len))
221                         BUG();
222
223         nlh->nlmsg_len = skb->tail - old_tail;
224         return skb;
225
226 nlmsg_failure:
227         *errp = -EINVAL;
228         printk(KERN_ERR "ip6_queue: error creating packet message\n");
229         return NULL;
230 }
231
232 static int
233 ipq_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum)
234 {
235         int status = -EINVAL;
236         struct sk_buff *nskb;
237
238         if (copy_mode == IPQ_COPY_NONE)
239                 return -EAGAIN;
240
241         nskb = ipq_build_packet_message(entry, &status);
242         if (nskb == NULL)
243                 return status;
244
245         write_lock_bh(&queue_lock);
246
247         if (!peer_pid)
248                 goto err_out_free_nskb;
249
250         if (queue_total >= queue_maxlen) {
251                 queue_dropped++;
252                 status = -ENOSPC;
253                 if (net_ratelimit())
254                         printk (KERN_WARNING "ip6_queue: fill at %d entries, "
255                                 "dropping packet(s).  Dropped: %d\n", queue_total,
256                                 queue_dropped);
257                 goto err_out_free_nskb;
258         }
259
260         /* netlink_unicast will either free the nskb or attach it to a socket */
261         status = netlink_unicast(ipqnl, nskb, peer_pid, MSG_DONTWAIT);
262         if (status < 0) {
263                 queue_user_dropped++;
264                 goto err_out_unlock;
265         }
266
267         __ipq_enqueue_entry(entry);
268
269         write_unlock_bh(&queue_lock);
270         return status;
271
272 err_out_free_nskb:
273         kfree_skb(nskb);
274
275 err_out_unlock:
276         write_unlock_bh(&queue_lock);
277         return status;
278 }
279
280 static int
281 ipq_mangle_ipv6(ipq_verdict_msg_t *v, struct nf_queue_entry *e)
282 {
283         int diff;
284         struct ipv6hdr *user_iph = (struct ipv6hdr *)v->payload;
285         struct sk_buff *nskb;
286
287         if (v->data_len < sizeof(*user_iph))
288                 return 0;
289         diff = v->data_len - e->skb->len;
290         if (diff < 0) {
291                 if (pskb_trim(e->skb, v->data_len))
292                         return -ENOMEM;
293         } else if (diff > 0) {
294                 if (v->data_len > 0xFFFF)
295                         return -EINVAL;
296                 if (diff > skb_tailroom(e->skb)) {
297                         nskb = skb_copy_expand(e->skb, skb_headroom(e->skb),
298                                                diff, GFP_ATOMIC);
299                         if (!nskb) {
300                                 printk(KERN_WARNING "ip6_queue: OOM "
301                                       "in mangle, dropping packet\n");
302                                 return -ENOMEM;
303                         }
304                         kfree_skb(e->skb);
305                         e->skb = nskb;
306                 }
307                 skb_put(e->skb, diff);
308         }
309         if (!skb_make_writable(e->skb, v->data_len))
310                 return -ENOMEM;
311         skb_copy_to_linear_data(e->skb, v->payload, v->data_len);
312         e->skb->ip_summed = CHECKSUM_NONE;
313
314         return 0;
315 }
316
317 static int
318 ipq_set_verdict(struct ipq_verdict_msg *vmsg, unsigned int len)
319 {
320         struct nf_queue_entry *entry;
321
322         if (vmsg->value > NF_MAX_VERDICT)
323                 return -EINVAL;
324
325         entry = ipq_find_dequeue_entry(vmsg->id);
326         if (entry == NULL)
327                 return -ENOENT;
328         else {
329                 int verdict = vmsg->value;
330
331                 if (vmsg->data_len && vmsg->data_len == len)
332                         if (ipq_mangle_ipv6(vmsg, entry) < 0)
333                                 verdict = NF_DROP;
334
335                 nf_reinject(entry, verdict);
336                 return 0;
337         }
338 }
339
340 static int
341 ipq_set_mode(unsigned char mode, unsigned int range)
342 {
343         int status;
344
345         write_lock_bh(&queue_lock);
346         status = __ipq_set_mode(mode, range);
347         write_unlock_bh(&queue_lock);
348         return status;
349 }
350
351 static int
352 ipq_receive_peer(struct ipq_peer_msg *pmsg,
353                  unsigned char type, unsigned int len)
354 {
355         int status = 0;
356
357         if (len < sizeof(*pmsg))
358                 return -EINVAL;
359
360         switch (type) {
361         case IPQM_MODE:
362                 status = ipq_set_mode(pmsg->msg.mode.value,
363                                       pmsg->msg.mode.range);
364                 break;
365
366         case IPQM_VERDICT:
367                 if (pmsg->msg.verdict.value > NF_MAX_VERDICT)
368                         status = -EINVAL;
369                 else
370                         status = ipq_set_verdict(&pmsg->msg.verdict,
371                                                  len - sizeof(*pmsg));
372                         break;
373         default:
374                 status = -EINVAL;
375         }
376         return status;
377 }
378
379 static int
380 dev_cmp(struct nf_queue_entry *entry, unsigned long ifindex)
381 {
382         if (entry->indev)
383                 if (entry->indev->ifindex == ifindex)
384                         return 1;
385
386         if (entry->outdev)
387                 if (entry->outdev->ifindex == ifindex)
388                         return 1;
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)
393                         return 1;
394                 if (entry->skb->nf_bridge->physoutdev &&
395                     entry->skb->nf_bridge->physoutdev->ifindex == ifindex)
396                         return 1;
397         }
398 #endif
399         return 0;
400 }
401
402 static void
403 ipq_dev_drop(int ifindex)
404 {
405         ipq_flush(dev_cmp, ifindex);
406 }
407
408 #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
409
410 static inline void
411 __ipq_rcv_skb(struct sk_buff *skb)
412 {
413         int status, type, pid, flags, nlmsglen, skblen;
414         struct nlmsghdr *nlh;
415
416         skblen = skb->len;
417         if (skblen < sizeof(*nlh))
418                 return;
419
420         nlh = nlmsg_hdr(skb);
421         nlmsglen = nlh->nlmsg_len;
422         if (nlmsglen < sizeof(*nlh) || skblen < nlmsglen)
423                 return;
424
425         pid = nlh->nlmsg_pid;
426         flags = nlh->nlmsg_flags;
427
428         if(pid <= 0 || !(flags & NLM_F_REQUEST) || flags & NLM_F_MULTI)
429                 RCV_SKB_FAIL(-EINVAL);
430
431         if (flags & MSG_TRUNC)
432                 RCV_SKB_FAIL(-ECOMM);
433
434         type = nlh->nlmsg_type;
435         if (type < NLMSG_NOOP || type >= IPQM_MAX)
436                 RCV_SKB_FAIL(-EINVAL);
437
438         if (type <= IPQM_BASE)
439                 return;
440
441         if (security_netlink_recv(skb, CAP_NET_ADMIN))
442                 RCV_SKB_FAIL(-EPERM);
443
444         write_lock_bh(&queue_lock);
445
446         if (peer_pid) {
447                 if (peer_pid != pid) {
448                         write_unlock_bh(&queue_lock);
449                         RCV_SKB_FAIL(-EBUSY);
450                 }
451         } else {
452                 net_enable_timestamp();
453                 peer_pid = pid;
454         }
455
456         write_unlock_bh(&queue_lock);
457
458         status = ipq_receive_peer(NLMSG_DATA(nlh), type,
459                                   nlmsglen - NLMSG_LENGTH(0));
460         if (status < 0)
461                 RCV_SKB_FAIL(status);
462
463         if (flags & NLM_F_ACK)
464                 netlink_ack(skb, nlh, 0);
465 }
466
467 static void
468 ipq_rcv_skb(struct sk_buff *skb)
469 {
470         mutex_lock(&ipqnl_mutex);
471         __ipq_rcv_skb(skb);
472         mutex_unlock(&ipqnl_mutex);
473 }
474
475 static int
476 ipq_rcv_dev_event(struct notifier_block *this,
477                   unsigned long event, void *ptr)
478 {
479         struct net_device *dev = ptr;
480
481         if (!net_eq(dev_net(dev), &init_net))
482                 return NOTIFY_DONE;
483
484         /* Drop any packets associated with the downed device */
485         if (event == NETDEV_DOWN)
486                 ipq_dev_drop(dev->ifindex);
487         return NOTIFY_DONE;
488 }
489
490 static struct notifier_block ipq_dev_notifier = {
491         .notifier_call  = ipq_rcv_dev_event,
492 };
493
494 static int
495 ipq_rcv_nl_event(struct notifier_block *this,
496                  unsigned long event, void *ptr)
497 {
498         struct netlink_notify *n = ptr;
499
500         if (event == NETLINK_URELEASE && n->protocol == NETLINK_IP6_FW) {
501                 write_lock_bh(&queue_lock);
502                 if ((net_eq(n->net, &init_net)) && (n->pid == peer_pid))
503                         __ipq_reset();
504                 write_unlock_bh(&queue_lock);
505         }
506         return NOTIFY_DONE;
507 }
508
509 static struct notifier_block ipq_nl_notifier = {
510         .notifier_call  = ipq_rcv_nl_event,
511 };
512
513 #ifdef CONFIG_SYSCTL
514 static struct ctl_table_header *ipq_sysctl_header;
515
516 static ctl_table ipq_table[] = {
517         {
518                 .procname       = NET_IPQ_QMAX_NAME,
519                 .data           = &queue_maxlen,
520                 .maxlen         = sizeof(queue_maxlen),
521                 .mode           = 0644,
522                 .proc_handler   = proc_dointvec
523         },
524         { }
525 };
526 #endif
527
528 #ifdef CONFIG_PROC_FS
529 static int ip6_queue_show(struct seq_file *m, void *v)
530 {
531         read_lock_bh(&queue_lock);
532
533         seq_printf(m,
534                       "Peer PID          : %d\n"
535                       "Copy mode         : %hu\n"
536                       "Copy range        : %u\n"
537                       "Queue length      : %u\n"
538                       "Queue max. length : %u\n"
539                       "Queue dropped     : %u\n"
540                       "Netfilter dropped : %u\n",
541                       peer_pid,
542                       copy_mode,
543                       copy_range,
544                       queue_total,
545                       queue_maxlen,
546                       queue_dropped,
547                       queue_user_dropped);
548
549         read_unlock_bh(&queue_lock);
550         return 0;
551 }
552
553 static int ip6_queue_open(struct inode *inode, struct file *file)
554 {
555         return single_open(file, ip6_queue_show, NULL);
556 }
557
558 static const struct file_operations ip6_queue_proc_fops = {
559         .open           = ip6_queue_open,
560         .read           = seq_read,
561         .llseek         = seq_lseek,
562         .release        = single_release,
563         .owner          = THIS_MODULE,
564 };
565 #endif
566
567 static const struct nf_queue_handler nfqh = {
568         .name   = "ip6_queue",
569         .outfn  = &ipq_enqueue_packet,
570 };
571
572 static int __init ip6_queue_init(void)
573 {
574         int status = -ENOMEM;
575         struct proc_dir_entry *proc __maybe_unused;
576
577         netlink_register_notifier(&ipq_nl_notifier);
578         ipqnl = netlink_kernel_create(&init_net, NETLINK_IP6_FW, 0,
579                                       ipq_rcv_skb, NULL, THIS_MODULE);
580         if (ipqnl == NULL) {
581                 printk(KERN_ERR "ip6_queue: failed to create netlink socket\n");
582                 goto cleanup_netlink_notifier;
583         }
584
585 #ifdef CONFIG_PROC_FS
586         proc = proc_create(IPQ_PROC_FS_NAME, 0, init_net.proc_net,
587                            &ip6_queue_proc_fops);
588         if (!proc) {
589                 printk(KERN_ERR "ip6_queue: failed to create proc entry\n");
590                 goto cleanup_ipqnl;
591         }
592 #endif
593         register_netdevice_notifier(&ipq_dev_notifier);
594 #ifdef CONFIG_SYSCTL
595         ipq_sysctl_header = register_sysctl_paths(net_ipv6_ctl_path, ipq_table);
596 #endif
597         status = nf_register_queue_handler(NFPROTO_IPV6, &nfqh);
598         if (status < 0) {
599                 printk(KERN_ERR "ip6_queue: failed to register queue handler\n");
600                 goto cleanup_sysctl;
601         }
602         return status;
603
604 cleanup_sysctl:
605 #ifdef CONFIG_SYSCTL
606         unregister_sysctl_table(ipq_sysctl_header);
607 #endif
608         unregister_netdevice_notifier(&ipq_dev_notifier);
609         proc_net_remove(&init_net, IPQ_PROC_FS_NAME);
610
611 cleanup_ipqnl: __maybe_unused
612         netlink_kernel_release(ipqnl);
613         mutex_lock(&ipqnl_mutex);
614         mutex_unlock(&ipqnl_mutex);
615
616 cleanup_netlink_notifier:
617         netlink_unregister_notifier(&ipq_nl_notifier);
618         return status;
619 }
620
621 static void __exit ip6_queue_fini(void)
622 {
623         nf_unregister_queue_handlers(&nfqh);
624
625         ipq_flush(NULL, 0);
626
627 #ifdef CONFIG_SYSCTL
628         unregister_sysctl_table(ipq_sysctl_header);
629 #endif
630         unregister_netdevice_notifier(&ipq_dev_notifier);
631         proc_net_remove(&init_net, IPQ_PROC_FS_NAME);
632
633         netlink_kernel_release(ipqnl);
634         mutex_lock(&ipqnl_mutex);
635         mutex_unlock(&ipqnl_mutex);
636
637         netlink_unregister_notifier(&ipq_nl_notifier);
638 }
639
640 MODULE_DESCRIPTION("IPv6 packet queue handler");
641 MODULE_LICENSE("GPL");
642 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_IP6_FW);
643
644 module_init(ip6_queue_init);
645 module_exit(ip6_queue_fini);