Revert to Fedora kernel-2.6.17-1.2187_FC5 patched with vs2.0.2.1; there are too many...
[linux-2.6.git] / net / netfilter / nfnetlink_log.c
1 /*
2  * This is a module which is used for logging packets to userspace via
3  * nfetlink.
4  *
5  * (C) 2005 by Harald Welte <laforge@netfilter.org>
6  *
7  * Based on the old ipv4-only ipt_ULOG.c:
8  * (C) 2000-2004 by Harald Welte <laforge@netfilter.org>
9  *
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.
13  *
14  * 2006-01-26 Harald Welte <laforge@netfilter.org>
15  *      - Add optional local and global sequence number to detect lost
16  *        events from userspace
17  *
18  */
19 #include <linux/module.h>
20 #include <linux/skbuff.h>
21 #include <linux/init.h>
22 #include <linux/ip.h>
23 #include <linux/ipv6.h>
24 #include <linux/netdevice.h>
25 #include <linux/netfilter.h>
26 #include <linux/netlink.h>
27 #include <linux/netfilter/nfnetlink.h>
28 #include <linux/netfilter/nfnetlink_log.h>
29 #include <linux/spinlock.h>
30 #include <linux/sysctl.h>
31 #include <linux/proc_fs.h>
32 #include <linux/security.h>
33 #include <linux/list.h>
34 #include <linux/jhash.h>
35 #include <linux/random.h>
36 #include <net/sock.h>
37
38 #include <asm/atomic.h>
39
40 #ifdef CONFIG_BRIDGE_NETFILTER
41 #include "../bridge/br_private.h"
42 #endif
43
44 #define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
45 #define NFULNL_TIMEOUT_DEFAULT  100     /* every second */
46 #define NFULNL_QTHRESH_DEFAULT  100     /* 100 packets */
47
48 #define PRINTR(x, args...)      do { if (net_ratelimit()) \
49                                      printk(x, ## args); } while (0);
50
51 #if 0
52 #define UDEBUG(x, args ...)     printk(KERN_DEBUG "%s(%d):%s(): " x,       \
53                                         __FILE__, __LINE__, __FUNCTION__,  \
54                                         ## args)
55 #else
56 #define UDEBUG(x, ...)
57 #endif
58
59 struct nfulnl_instance {
60         struct hlist_node hlist;        /* global list of instances */
61         spinlock_t lock;
62         atomic_t use;                   /* use count */
63
64         unsigned int qlen;              /* number of nlmsgs in skb */
65         struct sk_buff *skb;            /* pre-allocatd skb */
66         struct nlmsghdr *lastnlh;       /* netlink header of last msg in skb */
67         struct timer_list timer;
68         int peer_pid;                   /* PID of the peer process */
69
70         /* configurable parameters */
71         unsigned int flushtimeout;      /* timeout until queue flush */
72         unsigned int nlbufsiz;          /* netlink buffer allocation size */
73         unsigned int qthreshold;        /* threshold of the queue */
74         u_int32_t copy_range;
75         u_int32_t seq;                  /* instance-local sequential counter */
76         u_int16_t group_num;            /* number of this queue */
77         u_int16_t flags;
78         u_int8_t copy_mode;     
79 };
80
81 static DEFINE_RWLOCK(instances_lock);
82 static atomic_t global_seq;
83
84 #define INSTANCE_BUCKETS        16
85 static struct hlist_head instance_table[INSTANCE_BUCKETS];
86 static unsigned int hash_init;
87
88 static inline u_int8_t instance_hashfn(u_int16_t group_num)
89 {
90         return ((group_num & 0xff) % INSTANCE_BUCKETS);
91 }
92
93 static struct nfulnl_instance *
94 __instance_lookup(u_int16_t group_num)
95 {
96         struct hlist_head *head;
97         struct hlist_node *pos;
98         struct nfulnl_instance *inst;
99
100         UDEBUG("entering (group_num=%u)\n", group_num);
101
102         head = &instance_table[instance_hashfn(group_num)];
103         hlist_for_each_entry(inst, pos, head, hlist) {
104                 if (inst->group_num == group_num)
105                         return inst;
106         }
107         return NULL;
108 }
109
110 static inline void
111 instance_get(struct nfulnl_instance *inst)
112 {
113         atomic_inc(&inst->use);
114 }
115
116 static struct nfulnl_instance *
117 instance_lookup_get(u_int16_t group_num)
118 {
119         struct nfulnl_instance *inst;
120
121         read_lock_bh(&instances_lock);
122         inst = __instance_lookup(group_num);
123         if (inst)
124                 instance_get(inst);
125         read_unlock_bh(&instances_lock);
126
127         return inst;
128 }
129
130 static void
131 instance_put(struct nfulnl_instance *inst)
132 {
133         if (inst && atomic_dec_and_test(&inst->use)) {
134                 UDEBUG("kfree(inst=%p)\n", inst);
135                 kfree(inst);
136         }
137 }
138
139 static void nfulnl_timer(unsigned long data);
140
141 static struct nfulnl_instance *
142 instance_create(u_int16_t group_num, int pid)
143 {
144         struct nfulnl_instance *inst;
145
146         UDEBUG("entering (group_num=%u, pid=%d)\n", group_num,
147                 pid);
148
149         write_lock_bh(&instances_lock); 
150         if (__instance_lookup(group_num)) {
151                 inst = NULL;
152                 UDEBUG("aborting, instance already exists\n");
153                 goto out_unlock;
154         }
155
156         inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
157         if (!inst)
158                 goto out_unlock;
159
160         INIT_HLIST_NODE(&inst->hlist);
161         spin_lock_init(&inst->lock);
162         /* needs to be two, since we _put() after creation */
163         atomic_set(&inst->use, 2);
164
165         init_timer(&inst->timer);
166         inst->timer.function = nfulnl_timer;
167         inst->timer.data = (unsigned long)inst;
168         /* don't start timer yet. (re)start it  with every packet */
169
170         inst->peer_pid = pid;
171         inst->group_num = group_num;
172
173         inst->qthreshold        = NFULNL_QTHRESH_DEFAULT;
174         inst->flushtimeout      = NFULNL_TIMEOUT_DEFAULT;
175         inst->nlbufsiz          = NFULNL_NLBUFSIZ_DEFAULT;
176         inst->copy_mode         = NFULNL_COPY_PACKET;
177         inst->copy_range        = 0xffff;
178
179         if (!try_module_get(THIS_MODULE))
180                 goto out_free;
181
182         hlist_add_head(&inst->hlist, 
183                        &instance_table[instance_hashfn(group_num)]);
184
185         UDEBUG("newly added node: %p, next=%p\n", &inst->hlist, 
186                 inst->hlist.next);
187
188         write_unlock_bh(&instances_lock);
189
190         return inst;
191
192 out_free:
193         instance_put(inst);
194 out_unlock:
195         write_unlock_bh(&instances_lock);
196         return NULL;
197 }
198
199 static int __nfulnl_send(struct nfulnl_instance *inst);
200
201 static void
202 _instance_destroy2(struct nfulnl_instance *inst, int lock)
203 {
204         /* first pull it out of the global list */
205         if (lock)
206                 write_lock_bh(&instances_lock);
207
208         UDEBUG("removing instance %p (queuenum=%u) from hash\n",
209                 inst, inst->group_num);
210
211         hlist_del(&inst->hlist);
212
213         if (lock)
214                 write_unlock_bh(&instances_lock);
215
216         /* then flush all pending packets from skb */
217
218         spin_lock_bh(&inst->lock);
219         if (inst->skb) {
220                 if (inst->qlen)
221                         __nfulnl_send(inst);
222                 if (inst->skb) {
223                         kfree_skb(inst->skb);
224                         inst->skb = NULL;
225                 }
226         }
227         spin_unlock_bh(&inst->lock);
228
229         /* and finally put the refcount */
230         instance_put(inst);
231
232         module_put(THIS_MODULE);
233 }
234
235 static inline void
236 __instance_destroy(struct nfulnl_instance *inst)
237 {
238         _instance_destroy2(inst, 0);
239 }
240
241 static inline void
242 instance_destroy(struct nfulnl_instance *inst)
243 {
244         _instance_destroy2(inst, 1);
245 }
246
247 static int
248 nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
249                   unsigned int range)
250 {
251         int status = 0;
252
253         spin_lock_bh(&inst->lock);
254         
255         switch (mode) {
256         case NFULNL_COPY_NONE:
257         case NFULNL_COPY_META:
258                 inst->copy_mode = mode;
259                 inst->copy_range = 0;
260                 break;
261                 
262         case NFULNL_COPY_PACKET:
263                 inst->copy_mode = mode;
264                 /* we're using struct nfattr which has 16bit nfa_len */
265                 if (range > 0xffff)
266                         inst->copy_range = 0xffff;
267                 else
268                         inst->copy_range = range;
269                 break;
270                 
271         default:
272                 status = -EINVAL;
273                 break;
274         }
275
276         spin_unlock_bh(&inst->lock);
277
278         return status;
279 }
280
281 static int
282 nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
283 {
284         int status;
285
286         spin_lock_bh(&inst->lock);
287         if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
288                 status = -ERANGE;
289         else if (nlbufsiz > 131072)
290                 status = -ERANGE;
291         else {
292                 inst->nlbufsiz = nlbufsiz;
293                 status = 0;
294         }
295         spin_unlock_bh(&inst->lock);
296
297         return status;
298 }
299
300 static int
301 nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
302 {
303         spin_lock_bh(&inst->lock);
304         inst->flushtimeout = timeout;
305         spin_unlock_bh(&inst->lock);
306
307         return 0;
308 }
309
310 static int
311 nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
312 {
313         spin_lock_bh(&inst->lock);
314         inst->qthreshold = qthresh;
315         spin_unlock_bh(&inst->lock);
316
317         return 0;
318 }
319
320 static int
321 nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
322 {
323         spin_lock_bh(&inst->lock);
324         inst->flags = flags;
325         spin_unlock_bh(&inst->lock);
326
327         return 0;
328 }
329
330 static struct sk_buff *nfulnl_alloc_skb(unsigned int inst_size, 
331                                         unsigned int pkt_size)
332 {
333         struct sk_buff *skb;
334         unsigned int n;
335
336         UDEBUG("entered (%u, %u)\n", inst_size, pkt_size);
337
338         /* alloc skb which should be big enough for a whole multipart
339          * message.  WARNING: has to be <= 128k due to slab restrictions */
340
341         n = max(inst_size, pkt_size);
342         skb = alloc_skb(n, GFP_ATOMIC);
343         if (!skb) {
344                 PRINTR("nfnetlink_log: can't alloc whole buffer (%u bytes)\n",
345                         inst_size);
346
347                 if (n > pkt_size) {
348                         /* try to allocate only as much as we need for current
349                          * packet */
350
351                         skb = alloc_skb(pkt_size, GFP_ATOMIC);
352                         if (!skb)
353                                 PRINTR("nfnetlink_log: can't even alloc %u "
354                                        "bytes\n", pkt_size);
355                 }
356         }
357
358         return skb;
359 }
360
361 static int
362 __nfulnl_send(struct nfulnl_instance *inst)
363 {
364         int status;
365
366         if (timer_pending(&inst->timer))
367                 del_timer(&inst->timer);
368
369         if (!inst->skb)
370                 return 0;
371
372         if (inst->qlen > 1)
373                 inst->lastnlh->nlmsg_type = NLMSG_DONE;
374
375         if (!inst->skb)
376                 return 0;
377
378         status = nfnetlink_unicast(inst->skb, inst->peer_pid, MSG_DONTWAIT);
379         if (status < 0) {
380                 UDEBUG("netlink_unicast() failed\n");
381                 /* FIXME: statistics */
382         }
383
384         inst->qlen = 0;
385         inst->skb = NULL;
386         inst->lastnlh = NULL;
387
388         return status;
389 }
390
391 static void nfulnl_timer(unsigned long data)
392 {
393         struct nfulnl_instance *inst = (struct nfulnl_instance *)data; 
394
395         UDEBUG("timer function called, flushing buffer\n");
396
397         spin_lock_bh(&inst->lock);
398         __nfulnl_send(inst);
399         instance_put(inst);
400         spin_unlock_bh(&inst->lock);
401 }
402
403 /* This is an inline function, we don't really care about a long
404  * list of arguments */
405 static inline int 
406 __build_packet_message(struct nfulnl_instance *inst,
407                         const struct sk_buff *skb, 
408                         unsigned int data_len,
409                         unsigned int pf,
410                         unsigned int hooknum,
411                         const struct net_device *indev,
412                         const struct net_device *outdev,
413                         const struct nf_loginfo *li,
414                         const char *prefix)
415 {
416         unsigned char *old_tail;
417         struct nfulnl_msg_packet_hdr pmsg;
418         struct nlmsghdr *nlh;
419         struct nfgenmsg *nfmsg;
420         u_int32_t tmp_uint;
421
422         UDEBUG("entered\n");
423                 
424         old_tail = inst->skb->tail;
425         nlh = NLMSG_PUT(inst->skb, 0, 0, 
426                         NFNL_SUBSYS_ULOG << 8 | NFULNL_MSG_PACKET,
427                         sizeof(struct nfgenmsg));
428         nfmsg = NLMSG_DATA(nlh);
429         nfmsg->nfgen_family = pf;
430         nfmsg->version = NFNETLINK_V0;
431         nfmsg->res_id = htons(inst->group_num);
432
433         pmsg.hw_protocol        = htons(skb->protocol);
434         pmsg.hook               = hooknum;
435
436         NFA_PUT(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg);
437
438         if (prefix) {
439                 int slen = strlen(prefix);
440                 if (slen > NFULNL_PREFIXLEN)
441                         slen = NFULNL_PREFIXLEN;
442                 NFA_PUT(inst->skb, NFULA_PREFIX, slen, prefix);
443         }
444
445         if (indev) {
446                 tmp_uint = htonl(indev->ifindex);
447 #ifndef CONFIG_BRIDGE_NETFILTER
448                 NFA_PUT(inst->skb, NFULA_IFINDEX_INDEV, sizeof(tmp_uint),
449                         &tmp_uint);
450 #else
451                 if (pf == PF_BRIDGE) {
452                         /* Case 1: outdev is physical input device, we need to
453                          * look for bridge group (when called from
454                          * netfilter_bridge) */
455                         NFA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV,
456                                 sizeof(tmp_uint), &tmp_uint);
457                         /* this is the bridge group "brX" */
458                         tmp_uint = htonl(indev->br_port->br->dev->ifindex);
459                         NFA_PUT(inst->skb, NFULA_IFINDEX_INDEV,
460                                 sizeof(tmp_uint), &tmp_uint);
461                 } else {
462                         /* Case 2: indev is bridge group, we need to look for
463                          * physical device (when called from ipv4) */
464                         NFA_PUT(inst->skb, NFULA_IFINDEX_INDEV,
465                                 sizeof(tmp_uint), &tmp_uint);
466                         if (skb->nf_bridge && skb->nf_bridge->physindev) {
467                                 tmp_uint = 
468                                     htonl(skb->nf_bridge->physindev->ifindex);
469                                 NFA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV,
470                                         sizeof(tmp_uint), &tmp_uint);
471                         }
472                 }
473 #endif
474         }
475
476         if (outdev) {
477                 tmp_uint = htonl(outdev->ifindex);
478 #ifndef CONFIG_BRIDGE_NETFILTER
479                 NFA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV, sizeof(tmp_uint),
480                         &tmp_uint);
481 #else
482                 if (pf == PF_BRIDGE) {
483                         /* Case 1: outdev is physical output device, we need to
484                          * look for bridge group (when called from
485                          * netfilter_bridge) */
486                         NFA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
487                                 sizeof(tmp_uint), &tmp_uint);
488                         /* this is the bridge group "brX" */
489                         tmp_uint = htonl(outdev->br_port->br->dev->ifindex);
490                         NFA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV,
491                                 sizeof(tmp_uint), &tmp_uint);
492                 } else {
493                         /* Case 2: indev is a bridge group, we need to look
494                          * for physical device (when called from ipv4) */
495                         NFA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV,
496                                 sizeof(tmp_uint), &tmp_uint);
497                         if (skb->nf_bridge) {
498                                 tmp_uint = 
499                                     htonl(skb->nf_bridge->physoutdev->ifindex);
500                                 NFA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
501                                         sizeof(tmp_uint), &tmp_uint);
502                         }
503                 }
504 #endif
505         }
506
507         if (skb->nfmark) {
508                 tmp_uint = htonl(skb->nfmark);
509                 NFA_PUT(inst->skb, NFULA_MARK, sizeof(tmp_uint), &tmp_uint);
510         }
511
512         if (indev && skb->dev && skb->dev->hard_header_parse) {
513                 struct nfulnl_msg_packet_hw phw;
514
515                 phw.hw_addrlen = 
516                         skb->dev->hard_header_parse((struct sk_buff *)skb, 
517                                                     phw.hw_addr);
518                 phw.hw_addrlen = htons(phw.hw_addrlen);
519                 NFA_PUT(inst->skb, NFULA_HWADDR, sizeof(phw), &phw);
520         }
521
522         if (skb->tstamp.off_sec) {
523                 struct nfulnl_msg_packet_timestamp ts;
524
525                 ts.sec = cpu_to_be64(skb->tstamp.off_sec);
526                 ts.usec = cpu_to_be64(skb->tstamp.off_usec);
527
528                 NFA_PUT(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts);
529         }
530
531         /* UID */
532         if (skb->sk) {
533                 read_lock_bh(&skb->sk->sk_callback_lock);
534                 if (skb->sk->sk_socket && skb->sk->sk_socket->file) {
535                         u_int32_t uid = htonl(skb->sk->sk_socket->file->f_uid);
536                         /* need to unlock here since NFA_PUT may goto */
537                         read_unlock_bh(&skb->sk->sk_callback_lock);
538                         NFA_PUT(inst->skb, NFULA_UID, sizeof(uid), &uid);
539                 } else
540                         read_unlock_bh(&skb->sk->sk_callback_lock);
541         }
542
543         /* local sequence number */
544         if (inst->flags & NFULNL_CFG_F_SEQ) {
545                 tmp_uint = htonl(inst->seq++);
546                 NFA_PUT(inst->skb, NFULA_SEQ, sizeof(tmp_uint), &tmp_uint);
547         }
548         /* global sequence number */
549         if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) {
550                 tmp_uint = atomic_inc_return(&global_seq);
551                 NFA_PUT(inst->skb, NFULA_SEQ_GLOBAL, sizeof(tmp_uint), &tmp_uint);
552         }
553
554         if (data_len) {
555                 struct nfattr *nfa;
556                 int size = NFA_LENGTH(data_len);
557
558                 if (skb_tailroom(inst->skb) < (int)NFA_SPACE(data_len)) {
559                         printk(KERN_WARNING "nfnetlink_log: no tailroom!\n");
560                         goto nlmsg_failure;
561                 }
562
563                 nfa = (struct nfattr *)skb_put(inst->skb, NFA_ALIGN(size));
564                 nfa->nfa_type = NFULA_PAYLOAD;
565                 nfa->nfa_len = size;
566
567                 if (skb_copy_bits(skb, 0, NFA_DATA(nfa), data_len))
568                         BUG();
569         }
570                 
571         nlh->nlmsg_len = inst->skb->tail - old_tail;
572         return 0;
573
574 nlmsg_failure:
575         UDEBUG("nlmsg_failure\n");
576 nfattr_failure:
577         PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
578         return -1;
579 }
580
581 #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
582
583 static struct nf_loginfo default_loginfo = {
584         .type =         NF_LOG_TYPE_ULOG,
585         .u = {
586                 .ulog = {
587                         .copy_len       = 0xffff,
588                         .group          = 0,
589                         .qthreshold     = 1,
590                 },
591         },
592 };
593
594 /* log handler for internal netfilter logging api */
595 static void
596 nfulnl_log_packet(unsigned int pf,
597                   unsigned int hooknum,
598                   const struct sk_buff *skb,
599                   const struct net_device *in,
600                   const struct net_device *out,
601                   const struct nf_loginfo *li_user,
602                   const char *prefix)
603 {
604         unsigned int size, data_len;
605         struct nfulnl_instance *inst;
606         const struct nf_loginfo *li;
607         unsigned int qthreshold;
608         unsigned int nlbufsiz;
609
610         if (li_user && li_user->type == NF_LOG_TYPE_ULOG) 
611                 li = li_user;
612         else
613                 li = &default_loginfo;
614
615         inst = instance_lookup_get(li->u.ulog.group);
616         if (!inst)
617                 inst = instance_lookup_get(0);
618         if (!inst) {
619                 PRINTR("nfnetlink_log: trying to log packet, "
620                         "but no instance for group %u\n", li->u.ulog.group);
621                 return;
622         }
623
624         /* all macros expand to constant values at compile time */
625         /* FIXME: do we want to make the size calculation conditional based on
626          * what is actually present?  way more branches and checks, but more
627          * memory efficient... */
628         size =    NLMSG_SPACE(sizeof(struct nfgenmsg))
629                 + NFA_SPACE(sizeof(struct nfulnl_msg_packet_hdr))
630                 + NFA_SPACE(sizeof(u_int32_t))  /* ifindex */
631                 + NFA_SPACE(sizeof(u_int32_t))  /* ifindex */
632 #ifdef CONFIG_BRIDGE_NETFILTER
633                 + NFA_SPACE(sizeof(u_int32_t))  /* ifindex */
634                 + NFA_SPACE(sizeof(u_int32_t))  /* ifindex */
635 #endif
636                 + NFA_SPACE(sizeof(u_int32_t))  /* mark */
637                 + NFA_SPACE(sizeof(u_int32_t))  /* uid */
638                 + NFA_SPACE(NFULNL_PREFIXLEN)   /* prefix */
639                 + NFA_SPACE(sizeof(struct nfulnl_msg_packet_hw))
640                 + NFA_SPACE(sizeof(struct nfulnl_msg_packet_timestamp));
641
642         UDEBUG("initial size=%u\n", size);
643
644         spin_lock_bh(&inst->lock);
645
646         if (inst->flags & NFULNL_CFG_F_SEQ)
647                 size += NFA_SPACE(sizeof(u_int32_t));
648         if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
649                 size += NFA_SPACE(sizeof(u_int32_t));
650
651         qthreshold = inst->qthreshold;
652         /* per-rule qthreshold overrides per-instance */
653         if (qthreshold > li->u.ulog.qthreshold)
654                 qthreshold = li->u.ulog.qthreshold;
655         
656         switch (inst->copy_mode) {
657         case NFULNL_COPY_META:
658         case NFULNL_COPY_NONE:
659                 data_len = 0;
660                 break;
661         
662         case NFULNL_COPY_PACKET:
663                 if (inst->copy_range == 0 
664                     || inst->copy_range > skb->len)
665                         data_len = skb->len;
666                 else
667                         data_len = inst->copy_range;
668                 
669                 size += NFA_SPACE(data_len);
670                 UDEBUG("copy_packet, therefore size now %u\n", size);
671                 break;
672         
673         default:
674                 spin_unlock_bh(&inst->lock);
675                 instance_put(inst);
676                 return;
677         }
678
679         if (size > inst->nlbufsiz)
680                 nlbufsiz = size;
681         else
682                 nlbufsiz = inst->nlbufsiz;
683
684         if (!inst->skb) {
685                 if (!(inst->skb = nfulnl_alloc_skb(nlbufsiz, size))) {
686                         UDEBUG("error in nfulnl_alloc_skb(%u, %u)\n",
687                                 inst->nlbufsiz, size);
688                         goto alloc_failure;
689                 }
690         } else if (inst->qlen >= qthreshold ||
691                    size > skb_tailroom(inst->skb)) {
692                 /* either the queue len is too high or we don't have
693                  * enough room in the skb left. flush to userspace. */
694                 UDEBUG("flushing old skb\n");
695
696                 __nfulnl_send(inst);
697
698                 if (!(inst->skb = nfulnl_alloc_skb(nlbufsiz, size))) {
699                         UDEBUG("error in nfulnl_alloc_skb(%u, %u)\n",
700                                 inst->nlbufsiz, size);
701                         goto alloc_failure;
702                 }
703         }
704
705         UDEBUG("qlen %d, qthreshold %d\n", inst->qlen, qthreshold);
706         inst->qlen++;
707
708         __build_packet_message(inst, skb, data_len, pf,
709                                 hooknum, in, out, li, prefix);
710
711         /* timer_pending always called within inst->lock, so there
712          * is no chance of a race here */
713         if (!timer_pending(&inst->timer)) {
714                 instance_get(inst);
715                 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
716                 add_timer(&inst->timer);
717         }
718         spin_unlock_bh(&inst->lock);
719
720         return;
721
722 alloc_failure:
723         spin_unlock_bh(&inst->lock);
724         instance_put(inst);
725         UDEBUG("error allocating skb\n");
726         /* FIXME: statistics */
727 }
728
729 static int
730 nfulnl_rcv_nl_event(struct notifier_block *this,
731                    unsigned long event, void *ptr)
732 {
733         struct netlink_notify *n = ptr;
734
735         if (event == NETLINK_URELEASE &&
736             n->protocol == NETLINK_NETFILTER && n->pid) {
737                 int i;
738
739                 /* destroy all instances for this pid */
740                 write_lock_bh(&instances_lock);
741                 for  (i = 0; i < INSTANCE_BUCKETS; i++) {
742                         struct hlist_node *tmp, *t2;
743                         struct nfulnl_instance *inst;
744                         struct hlist_head *head = &instance_table[i];
745
746                         hlist_for_each_entry_safe(inst, tmp, t2, head, hlist) {
747                                 UDEBUG("node = %p\n", inst);
748                                 if (n->pid == inst->peer_pid)
749                                         __instance_destroy(inst);
750                         }
751                 }
752                 write_unlock_bh(&instances_lock);
753         }
754         return NOTIFY_DONE;
755 }
756
757 static struct notifier_block nfulnl_rtnl_notifier = {
758         .notifier_call  = nfulnl_rcv_nl_event,
759 };
760
761 static int
762 nfulnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
763                   struct nlmsghdr *nlh, struct nfattr *nfqa[], int *errp)
764 {
765         return -ENOTSUPP;
766 }
767
768 static struct nf_logger nfulnl_logger = {
769         .name   = "nfnetlink_log",
770         .logfn  = &nfulnl_log_packet,
771         .me     = THIS_MODULE,
772 };
773
774 static const int nfula_min[NFULA_MAX] = {
775         [NFULA_PACKET_HDR-1]    = sizeof(struct nfulnl_msg_packet_hdr),
776         [NFULA_MARK-1]          = sizeof(u_int32_t),
777         [NFULA_TIMESTAMP-1]     = sizeof(struct nfulnl_msg_packet_timestamp),
778         [NFULA_IFINDEX_INDEV-1] = sizeof(u_int32_t),
779         [NFULA_IFINDEX_OUTDEV-1]= sizeof(u_int32_t),
780         [NFULA_IFINDEX_PHYSINDEV-1]     = sizeof(u_int32_t),
781         [NFULA_IFINDEX_PHYSOUTDEV-1]    = sizeof(u_int32_t),
782         [NFULA_HWADDR-1]        = sizeof(struct nfulnl_msg_packet_hw),
783         [NFULA_PAYLOAD-1]       = 0,
784         [NFULA_PREFIX-1]        = 0,
785         [NFULA_UID-1]           = sizeof(u_int32_t),
786         [NFULA_SEQ-1]           = sizeof(u_int32_t),
787         [NFULA_SEQ_GLOBAL-1]    = sizeof(u_int32_t),
788 };
789
790 static const int nfula_cfg_min[NFULA_CFG_MAX] = {
791         [NFULA_CFG_CMD-1]       = sizeof(struct nfulnl_msg_config_cmd),
792         [NFULA_CFG_MODE-1]      = sizeof(struct nfulnl_msg_config_mode),
793         [NFULA_CFG_TIMEOUT-1]   = sizeof(u_int32_t),
794         [NFULA_CFG_QTHRESH-1]   = sizeof(u_int32_t),
795         [NFULA_CFG_NLBUFSIZ-1]  = sizeof(u_int32_t),
796         [NFULA_CFG_FLAGS-1]     = sizeof(u_int16_t),
797 };
798
799 static int
800 nfulnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
801                    struct nlmsghdr *nlh, struct nfattr *nfula[], int *errp)
802 {
803         struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
804         u_int16_t group_num = ntohs(nfmsg->res_id);
805         struct nfulnl_instance *inst;
806         int ret = 0;
807
808         UDEBUG("entering for msg %u\n", NFNL_MSG_TYPE(nlh->nlmsg_type));
809
810         if (nfattr_bad_size(nfula, NFULA_CFG_MAX, nfula_cfg_min)) {
811                 UDEBUG("bad attribute size\n");
812                 return -EINVAL;
813         }
814
815         inst = instance_lookup_get(group_num);
816         if (nfula[NFULA_CFG_CMD-1]) {
817                 u_int8_t pf = nfmsg->nfgen_family;
818                 struct nfulnl_msg_config_cmd *cmd;
819                 cmd = NFA_DATA(nfula[NFULA_CFG_CMD-1]);
820                 UDEBUG("found CFG_CMD for\n");
821
822                 switch (cmd->command) {
823                 case NFULNL_CFG_CMD_BIND:
824                         if (inst) {
825                                 ret = -EBUSY;
826                                 goto out_put;
827                         }
828
829                         inst = instance_create(group_num,
830                                                NETLINK_CB(skb).pid);
831                         if (!inst) {
832                                 ret = -EINVAL;
833                                 goto out_put;
834                         }
835                         break;
836                 case NFULNL_CFG_CMD_UNBIND:
837                         if (!inst) {
838                                 ret = -ENODEV;
839                                 goto out_put;
840                         }
841
842                         if (inst->peer_pid != NETLINK_CB(skb).pid) {
843                                 ret = -EPERM;
844                                 goto out_put;
845                         }
846
847                         instance_destroy(inst);
848                         break;
849                 case NFULNL_CFG_CMD_PF_BIND:
850                         UDEBUG("registering log handler for pf=%u\n", pf);
851                         ret = nf_log_register(pf, &nfulnl_logger);
852                         break;
853                 case NFULNL_CFG_CMD_PF_UNBIND:
854                         UDEBUG("unregistering log handler for pf=%u\n", pf);
855                         /* This is a bug and a feature.  We cannot unregister
856                          * other handlers, like nfnetlink_inst can */
857                         nf_log_unregister_pf(pf);
858                         break;
859                 default:
860                         ret = -EINVAL;
861                         break;
862                 }
863         } else {
864                 if (!inst) {
865                         UDEBUG("no config command, and no instance for "
866                                 "group=%u pid=%u =>ENOENT\n",
867                                 group_num, NETLINK_CB(skb).pid);
868                         ret = -ENOENT;
869                         goto out_put;
870                 }
871
872                 if (inst->peer_pid != NETLINK_CB(skb).pid) {
873                         UDEBUG("no config command, and wrong pid\n");
874                         ret = -EPERM;
875                         goto out_put;
876                 }
877         }
878
879         if (nfula[NFULA_CFG_MODE-1]) {
880                 struct nfulnl_msg_config_mode *params;
881                 params = NFA_DATA(nfula[NFULA_CFG_MODE-1]);
882
883                 nfulnl_set_mode(inst, params->copy_mode,
884                                 ntohs(params->copy_range));
885         }
886
887         if (nfula[NFULA_CFG_TIMEOUT-1]) {
888                 u_int32_t timeout = 
889                         *(u_int32_t *)NFA_DATA(nfula[NFULA_CFG_TIMEOUT-1]);
890
891                 nfulnl_set_timeout(inst, ntohl(timeout));
892         }
893
894         if (nfula[NFULA_CFG_NLBUFSIZ-1]) {
895                 u_int32_t nlbufsiz = 
896                         *(u_int32_t *)NFA_DATA(nfula[NFULA_CFG_NLBUFSIZ-1]);
897
898                 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
899         }
900
901         if (nfula[NFULA_CFG_QTHRESH-1]) {
902                 u_int32_t qthresh = 
903                         *(u_int16_t *)NFA_DATA(nfula[NFULA_CFG_QTHRESH-1]);
904
905                 nfulnl_set_qthresh(inst, ntohl(qthresh));
906         }
907
908         if (nfula[NFULA_CFG_FLAGS-1]) {
909                 u_int16_t flags =
910                         *(u_int16_t *)NFA_DATA(nfula[NFULA_CFG_FLAGS-1]);
911                 nfulnl_set_flags(inst, ntohs(flags));
912         }
913
914 out_put:
915         instance_put(inst);
916         return ret;
917 }
918
919 static struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
920         [NFULNL_MSG_PACKET]     = { .call = nfulnl_recv_unsupp,
921                                     .attr_count = NFULA_MAX, },
922         [NFULNL_MSG_CONFIG]     = { .call = nfulnl_recv_config,
923                                     .attr_count = NFULA_CFG_MAX, },
924 };
925
926 static struct nfnetlink_subsystem nfulnl_subsys = {
927         .name           = "log",
928         .subsys_id      = NFNL_SUBSYS_ULOG,
929         .cb_count       = NFULNL_MSG_MAX,
930         .cb             = nfulnl_cb,
931 };
932
933 #ifdef CONFIG_PROC_FS
934 struct iter_state {
935         unsigned int bucket;
936 };
937
938 static struct hlist_node *get_first(struct seq_file *seq)
939 {
940         struct iter_state *st = seq->private;
941
942         if (!st)
943                 return NULL;
944
945         for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
946                 if (!hlist_empty(&instance_table[st->bucket]))
947                         return instance_table[st->bucket].first;
948         }
949         return NULL;
950 }
951
952 static struct hlist_node *get_next(struct seq_file *seq, struct hlist_node *h)
953 {
954         struct iter_state *st = seq->private;
955
956         h = h->next;
957         while (!h) {
958                 if (++st->bucket >= INSTANCE_BUCKETS)
959                         return NULL;
960
961                 h = instance_table[st->bucket].first;
962         }
963         return h;
964 }
965
966 static struct hlist_node *get_idx(struct seq_file *seq, loff_t pos)
967 {
968         struct hlist_node *head;
969         head = get_first(seq);
970
971         if (head)
972                 while (pos && (head = get_next(seq, head)))
973                         pos--;
974         return pos ? NULL : head;
975 }
976
977 static void *seq_start(struct seq_file *seq, loff_t *pos)
978 {
979         read_lock_bh(&instances_lock);
980         return get_idx(seq, *pos);
981 }
982
983 static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
984 {
985         (*pos)++;
986         return get_next(s, v);
987 }
988
989 static void seq_stop(struct seq_file *s, void *v)
990 {
991         read_unlock_bh(&instances_lock);
992 }
993
994 static int seq_show(struct seq_file *s, void *v)
995 {
996         const struct nfulnl_instance *inst = v;
997
998         return seq_printf(s, "%5d %6d %5d %1d %5d %6d %2d\n", 
999                           inst->group_num,
1000                           inst->peer_pid, inst->qlen, 
1001                           inst->copy_mode, inst->copy_range,
1002                           inst->flushtimeout, atomic_read(&inst->use));
1003 }
1004
1005 static struct seq_operations nful_seq_ops = {
1006         .start  = seq_start,
1007         .next   = seq_next,
1008         .stop   = seq_stop,
1009         .show   = seq_show,
1010 };
1011
1012 static int nful_open(struct inode *inode, struct file *file)
1013 {
1014         struct seq_file *seq;
1015         struct iter_state *is;
1016         int ret;
1017
1018         is = kzalloc(sizeof(*is), GFP_KERNEL);
1019         if (!is)
1020                 return -ENOMEM;
1021         ret = seq_open(file, &nful_seq_ops);
1022         if (ret < 0)
1023                 goto out_free;
1024         seq = file->private_data;
1025         seq->private = is;
1026         return ret;
1027 out_free:
1028         kfree(is);
1029         return ret;
1030 }
1031
1032 static struct file_operations nful_file_ops = {
1033         .owner   = THIS_MODULE,
1034         .open    = nful_open,
1035         .read    = seq_read,
1036         .llseek  = seq_lseek,
1037         .release = seq_release_private,
1038 };
1039
1040 #endif /* PROC_FS */
1041
1042 static int __init nfnetlink_log_init(void)
1043 {
1044         int i, status = -ENOMEM;
1045 #ifdef CONFIG_PROC_FS
1046         struct proc_dir_entry *proc_nful;
1047 #endif
1048         
1049         for (i = 0; i < INSTANCE_BUCKETS; i++)
1050                 INIT_HLIST_HEAD(&instance_table[i]);
1051         
1052         /* it's not really all that important to have a random value, so
1053          * we can do this from the init function, even if there hasn't
1054          * been that much entropy yet */
1055         get_random_bytes(&hash_init, sizeof(hash_init));
1056
1057         netlink_register_notifier(&nfulnl_rtnl_notifier);
1058         status = nfnetlink_subsys_register(&nfulnl_subsys);
1059         if (status < 0) {
1060                 printk(KERN_ERR "log: failed to create netlink socket\n");
1061                 goto cleanup_netlink_notifier;
1062         }
1063
1064 #ifdef CONFIG_PROC_FS
1065         proc_nful = create_proc_entry("nfnetlink_log", 0440,
1066                                       proc_net_netfilter);
1067         if (!proc_nful)
1068                 goto cleanup_subsys;
1069         proc_nful->proc_fops = &nful_file_ops;
1070 #endif
1071         return status;
1072
1073 #ifdef CONFIG_PROC_FS
1074 cleanup_subsys:
1075         nfnetlink_subsys_unregister(&nfulnl_subsys);
1076 #endif
1077 cleanup_netlink_notifier:
1078         netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1079         return status;
1080 }
1081
1082 static void __exit nfnetlink_log_fini(void)
1083 {
1084         nf_log_unregister_logger(&nfulnl_logger);
1085 #ifdef CONFIG_PROC_FS
1086         remove_proc_entry("nfnetlink_log", proc_net_netfilter);
1087 #endif
1088         nfnetlink_subsys_unregister(&nfulnl_subsys);
1089         netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1090 }
1091
1092 MODULE_DESCRIPTION("netfilter userspace logging");
1093 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1094 MODULE_LICENSE("GPL");
1095 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
1096
1097 module_init(nfnetlink_log_init);
1098 module_exit(nfnetlink_log_fini);