blob: 959a0cb131f1f61c4390c74cc57d0bab62ff3ef3 [file] [log] [blame]
Harald Welte0597f262005-08-09 19:58:39 -07001/*
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.
Harald Welte0597f262005-08-09 19:58:39 -070013 */
14#include <linux/module.h>
15#include <linux/skbuff.h>
16#include <linux/init.h>
17#include <linux/ip.h>
18#include <linux/ipv6.h>
19#include <linux/netdevice.h>
20#include <linux/netfilter.h>
21#include <linux/netlink.h>
22#include <linux/netfilter/nfnetlink.h>
23#include <linux/netfilter/nfnetlink_log.h>
24#include <linux/spinlock.h>
25#include <linux/sysctl.h>
26#include <linux/proc_fs.h>
27#include <linux/security.h>
28#include <linux/list.h>
29#include <linux/jhash.h>
30#include <linux/random.h>
31#include <net/sock.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080032#include <net/netfilter/nf_log.h>
Harald Welte0597f262005-08-09 19:58:39 -070033
34#include <asm/atomic.h>
35
Harald Weltefbcd9232005-08-09 20:22:10 -070036#ifdef CONFIG_BRIDGE_NETFILTER
37#include "../bridge/br_private.h"
38#endif
39
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080040#define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
Michal Miroslaw6b6ec992007-09-28 14:45:52 -070041#define NFULNL_TIMEOUT_DEFAULT HZ /* every second */
Harald Welte0597f262005-08-09 19:58:39 -070042#define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
Michal Miroslaw6b6ec992007-09-28 14:45:52 -070043#define NFULNL_COPY_RANGE_MAX 0xFFFF /* max packet size is limited by 16-bit struct nfattr nfa_len field */
Harald Welte0597f262005-08-09 19:58:39 -070044
45#define PRINTR(x, args...) do { if (net_ratelimit()) \
46 printk(x, ## args); } while (0);
47
48#if 0
49#define UDEBUG(x, args ...) printk(KERN_DEBUG "%s(%d):%s(): " x, \
50 __FILE__, __LINE__, __FUNCTION__, \
51 ## args)
52#else
53#define UDEBUG(x, ...)
54#endif
55
56struct nfulnl_instance {
57 struct hlist_node hlist; /* global list of instances */
58 spinlock_t lock;
59 atomic_t use; /* use count */
60
61 unsigned int qlen; /* number of nlmsgs in skb */
62 struct sk_buff *skb; /* pre-allocatd skb */
Harald Welte0597f262005-08-09 19:58:39 -070063 struct timer_list timer;
64 int peer_pid; /* PID of the peer process */
65
66 /* configurable parameters */
67 unsigned int flushtimeout; /* timeout until queue flush */
68 unsigned int nlbufsiz; /* netlink buffer allocation size */
69 unsigned int qthreshold; /* threshold of the queue */
70 u_int32_t copy_range;
Harald Welte0af5f6c2006-03-20 17:15:11 -080071 u_int32_t seq; /* instance-local sequential counter */
Harald Welte0597f262005-08-09 19:58:39 -070072 u_int16_t group_num; /* number of this queue */
Harald Welte0af5f6c2006-03-20 17:15:11 -080073 u_int16_t flags;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080074 u_int8_t copy_mode;
Harald Welte0597f262005-08-09 19:58:39 -070075};
76
77static DEFINE_RWLOCK(instances_lock);
Harald Welte0af5f6c2006-03-20 17:15:11 -080078static atomic_t global_seq;
Harald Welte0597f262005-08-09 19:58:39 -070079
80#define INSTANCE_BUCKETS 16
81static struct hlist_head instance_table[INSTANCE_BUCKETS];
82static unsigned int hash_init;
83
84static inline u_int8_t instance_hashfn(u_int16_t group_num)
85{
86 return ((group_num & 0xff) % INSTANCE_BUCKETS);
87}
88
89static struct nfulnl_instance *
90__instance_lookup(u_int16_t group_num)
91{
92 struct hlist_head *head;
93 struct hlist_node *pos;
94 struct nfulnl_instance *inst;
95
96 UDEBUG("entering (group_num=%u)\n", group_num);
97
98 head = &instance_table[instance_hashfn(group_num)];
99 hlist_for_each_entry(inst, pos, head, hlist) {
100 if (inst->group_num == group_num)
101 return inst;
102 }
103 return NULL;
104}
105
106static inline void
107instance_get(struct nfulnl_instance *inst)
108{
109 atomic_inc(&inst->use);
110}
111
112static struct nfulnl_instance *
113instance_lookup_get(u_int16_t group_num)
114{
115 struct nfulnl_instance *inst;
116
117 read_lock_bh(&instances_lock);
118 inst = __instance_lookup(group_num);
119 if (inst)
120 instance_get(inst);
121 read_unlock_bh(&instances_lock);
122
123 return inst;
124}
125
126static void
127instance_put(struct nfulnl_instance *inst)
128{
129 if (inst && atomic_dec_and_test(&inst->use)) {
130 UDEBUG("kfree(inst=%p)\n", inst);
131 kfree(inst);
Patrick McHardy7d90e862007-03-04 15:59:45 -0800132 module_put(THIS_MODULE);
Harald Welte0597f262005-08-09 19:58:39 -0700133 }
134}
135
136static void nfulnl_timer(unsigned long data);
137
138static struct nfulnl_instance *
139instance_create(u_int16_t group_num, int pid)
140{
141 struct nfulnl_instance *inst;
142
143 UDEBUG("entering (group_num=%u, pid=%d)\n", group_num,
144 pid);
145
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800146 write_lock_bh(&instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700147 if (__instance_lookup(group_num)) {
148 inst = NULL;
149 UDEBUG("aborting, instance already exists\n");
150 goto out_unlock;
151 }
152
Harald Welte10dfdc62005-11-03 19:20:07 +0100153 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
Harald Welte0597f262005-08-09 19:58:39 -0700154 if (!inst)
155 goto out_unlock;
156
Michal Miroslawaace57e2007-09-28 14:45:27 -0700157 if (!try_module_get(THIS_MODULE)) {
158 kfree(inst);
159 goto out_unlock;
160 }
161
Harald Welte0597f262005-08-09 19:58:39 -0700162 INIT_HLIST_NODE(&inst->hlist);
YOSHIFUJI Hideaki181a46a2006-01-04 13:56:54 -0800163 spin_lock_init(&inst->lock);
Harald Welte0597f262005-08-09 19:58:39 -0700164 /* needs to be two, since we _put() after creation */
165 atomic_set(&inst->use, 2);
166
Patrick McHardye6f689d2007-03-23 11:16:30 -0700167 setup_timer(&inst->timer, nfulnl_timer, (unsigned long)inst);
Harald Welte0597f262005-08-09 19:58:39 -0700168
169 inst->peer_pid = pid;
170 inst->group_num = group_num;
171
172 inst->qthreshold = NFULNL_QTHRESH_DEFAULT;
173 inst->flushtimeout = NFULNL_TIMEOUT_DEFAULT;
174 inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT;
175 inst->copy_mode = NFULNL_COPY_PACKET;
Michal Miroslaw6b6ec992007-09-28 14:45:52 -0700176 inst->copy_range = NFULNL_COPY_RANGE_MAX;
Harald Welte0597f262005-08-09 19:58:39 -0700177
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800178 hlist_add_head(&inst->hlist,
Harald Welte0597f262005-08-09 19:58:39 -0700179 &instance_table[instance_hashfn(group_num)]);
180
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800181 UDEBUG("newly added node: %p, next=%p\n", &inst->hlist,
Harald Welte0597f262005-08-09 19:58:39 -0700182 inst->hlist.next);
183
184 write_unlock_bh(&instances_lock);
185
186 return inst;
187
Harald Welte0597f262005-08-09 19:58:39 -0700188out_unlock:
189 write_unlock_bh(&instances_lock);
190 return NULL;
191}
192
Michal Miroslawe3567062007-09-28 14:44:21 -0700193static void __nfulnl_flush(struct nfulnl_instance *inst);
Harald Welte0597f262005-08-09 19:58:39 -0700194
195static void
Patrick McHardy9afdb002007-03-23 11:12:50 -0700196__instance_destroy(struct nfulnl_instance *inst)
Harald Welte0597f262005-08-09 19:58:39 -0700197{
198 /* first pull it out of the global list */
Harald Welte0597f262005-08-09 19:58:39 -0700199 UDEBUG("removing instance %p (queuenum=%u) from hash\n",
200 inst, inst->group_num);
201
202 hlist_del(&inst->hlist);
203
Harald Welte0597f262005-08-09 19:58:39 -0700204 /* then flush all pending packets from skb */
205
206 spin_lock_bh(&inst->lock);
Michal Miroslawe3567062007-09-28 14:44:21 -0700207 if (inst->skb)
208 __nfulnl_flush(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700209 spin_unlock_bh(&inst->lock);
210
211 /* and finally put the refcount */
212 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700213}
214
215static inline void
Harald Welte0597f262005-08-09 19:58:39 -0700216instance_destroy(struct nfulnl_instance *inst)
217{
Patrick McHardy9afdb002007-03-23 11:12:50 -0700218 write_lock_bh(&instances_lock);
219 __instance_destroy(inst);
220 write_unlock_bh(&instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700221}
222
223static int
224nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
225 unsigned int range)
226{
227 int status = 0;
228
229 spin_lock_bh(&inst->lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800230
Harald Welte0597f262005-08-09 19:58:39 -0700231 switch (mode) {
232 case NFULNL_COPY_NONE:
233 case NFULNL_COPY_META:
234 inst->copy_mode = mode;
235 inst->copy_range = 0;
236 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800237
Harald Welte0597f262005-08-09 19:58:39 -0700238 case NFULNL_COPY_PACKET:
239 inst->copy_mode = mode;
Michal Miroslaw6b6ec992007-09-28 14:45:52 -0700240 inst->copy_range = min_t(unsigned int,
241 range, NFULNL_COPY_RANGE_MAX);
Harald Welte0597f262005-08-09 19:58:39 -0700242 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800243
Harald Welte0597f262005-08-09 19:58:39 -0700244 default:
245 status = -EINVAL;
246 break;
247 }
248
249 spin_unlock_bh(&inst->lock);
250
251 return status;
252}
253
254static int
255nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
256{
257 int status;
258
259 spin_lock_bh(&inst->lock);
260 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
261 status = -ERANGE;
262 else if (nlbufsiz > 131072)
263 status = -ERANGE;
264 else {
265 inst->nlbufsiz = nlbufsiz;
266 status = 0;
267 }
268 spin_unlock_bh(&inst->lock);
269
270 return status;
271}
272
273static int
274nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
275{
276 spin_lock_bh(&inst->lock);
277 inst->flushtimeout = timeout;
278 spin_unlock_bh(&inst->lock);
279
280 return 0;
281}
282
283static int
284nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
285{
286 spin_lock_bh(&inst->lock);
287 inst->qthreshold = qthresh;
288 spin_unlock_bh(&inst->lock);
289
290 return 0;
291}
292
Harald Welte0af5f6c2006-03-20 17:15:11 -0800293static int
294nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
295{
296 spin_lock_bh(&inst->lock);
Patrick McHardyee433532006-05-19 02:17:18 -0700297 inst->flags = flags;
Harald Welte0af5f6c2006-03-20 17:15:11 -0800298 spin_unlock_bh(&inst->lock);
299
300 return 0;
301}
302
Michal Miroslawc6a8f642007-09-28 14:45:06 -0700303static struct sk_buff *
304nfulnl_alloc_skb(unsigned int inst_size, unsigned int pkt_size)
Harald Welte0597f262005-08-09 19:58:39 -0700305{
306 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800307 unsigned int n;
Harald Welte0597f262005-08-09 19:58:39 -0700308
309 UDEBUG("entered (%u, %u)\n", inst_size, pkt_size);
310
311 /* alloc skb which should be big enough for a whole multipart
312 * message. WARNING: has to be <= 128k due to slab restrictions */
313
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800314 n = max(inst_size, pkt_size);
315 skb = alloc_skb(n, GFP_ATOMIC);
Harald Welte0597f262005-08-09 19:58:39 -0700316 if (!skb) {
317 PRINTR("nfnetlink_log: can't alloc whole buffer (%u bytes)\n",
318 inst_size);
319
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800320 if (n > pkt_size) {
321 /* try to allocate only as much as we need for current
322 * packet */
Harald Welte0597f262005-08-09 19:58:39 -0700323
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800324 skb = alloc_skb(pkt_size, GFP_ATOMIC);
325 if (!skb)
326 PRINTR("nfnetlink_log: can't even alloc %u "
327 "bytes\n", pkt_size);
328 }
Harald Welte0597f262005-08-09 19:58:39 -0700329 }
330
331 return skb;
332}
333
334static int
335__nfulnl_send(struct nfulnl_instance *inst)
336{
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700337 int status = -1;
Harald Welte0597f262005-08-09 19:58:39 -0700338
Harald Welte0597f262005-08-09 19:58:39 -0700339 if (inst->qlen > 1)
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700340 NLMSG_PUT(inst->skb, 0, 0,
341 NLMSG_DONE,
342 sizeof(struct nfgenmsg));
Harald Welte0597f262005-08-09 19:58:39 -0700343
344 status = nfnetlink_unicast(inst->skb, inst->peer_pid, MSG_DONTWAIT);
345 if (status < 0) {
346 UDEBUG("netlink_unicast() failed\n");
347 /* FIXME: statistics */
348 }
349
350 inst->qlen = 0;
351 inst->skb = NULL;
Harald Welte0597f262005-08-09 19:58:39 -0700352
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700353nlmsg_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700354 return status;
355}
356
Michal Miroslawe3567062007-09-28 14:44:21 -0700357static void
358__nfulnl_flush(struct nfulnl_instance *inst)
359{
360 /* timer holds a reference */
361 if (del_timer(&inst->timer))
362 instance_put(inst);
363 if (inst->skb)
364 __nfulnl_send(inst);
365}
366
Michal Miroslawc6a8f642007-09-28 14:45:06 -0700367static void
368nfulnl_timer(unsigned long data)
Harald Welte0597f262005-08-09 19:58:39 -0700369{
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800370 struct nfulnl_instance *inst = (struct nfulnl_instance *)data;
Harald Welte0597f262005-08-09 19:58:39 -0700371
372 UDEBUG("timer function called, flushing buffer\n");
373
374 spin_lock_bh(&inst->lock);
Michal Miroslaw370e6a82007-03-23 11:12:21 -0700375 if (inst->skb)
376 __nfulnl_send(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700377 spin_unlock_bh(&inst->lock);
Michal Miroslaw05f7b7b2007-03-04 15:58:40 -0800378 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700379}
380
Harald Welte0af5f6c2006-03-20 17:15:11 -0800381/* This is an inline function, we don't really care about a long
382 * list of arguments */
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800383static inline int
Harald Welte0597f262005-08-09 19:58:39 -0700384__build_packet_message(struct nfulnl_instance *inst,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800385 const struct sk_buff *skb,
Harald Welte0597f262005-08-09 19:58:39 -0700386 unsigned int data_len,
387 unsigned int pf,
388 unsigned int hooknum,
389 const struct net_device *indev,
390 const struct net_device *outdev,
391 const struct nf_loginfo *li,
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100392 const char *prefix, unsigned int plen)
Harald Welte0597f262005-08-09 19:58:39 -0700393{
Harald Welte0597f262005-08-09 19:58:39 -0700394 struct nfulnl_msg_packet_hdr pmsg;
395 struct nlmsghdr *nlh;
396 struct nfgenmsg *nfmsg;
Al Viro98a4a862006-11-08 00:26:51 -0800397 __be32 tmp_uint;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700398 sk_buff_data_t old_tail = inst->skb->tail;
Harald Welte0597f262005-08-09 19:58:39 -0700399
400 UDEBUG("entered\n");
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800401
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800402 nlh = NLMSG_PUT(inst->skb, 0, 0,
Harald Welte0597f262005-08-09 19:58:39 -0700403 NFNL_SUBSYS_ULOG << 8 | NFULNL_MSG_PACKET,
404 sizeof(struct nfgenmsg));
405 nfmsg = NLMSG_DATA(nlh);
406 nfmsg->nfgen_family = pf;
407 nfmsg->version = NFNETLINK_V0;
408 nfmsg->res_id = htons(inst->group_num);
409
Al Virofebf0a42006-11-03 00:59:17 -0800410 pmsg.hw_protocol = skb->protocol;
Harald Welte0597f262005-08-09 19:58:39 -0700411 pmsg.hook = hooknum;
412
Patrick McHardydf6fb862007-09-28 14:37:03 -0700413 NLA_PUT(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg);
Harald Welte0597f262005-08-09 19:58:39 -0700414
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100415 if (prefix)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700416 NLA_PUT(inst->skb, NFULA_PREFIX, plen, prefix);
Harald Welte0597f262005-08-09 19:58:39 -0700417
418 if (indev) {
419 tmp_uint = htonl(indev->ifindex);
Harald Weltefbcd9232005-08-09 20:22:10 -0700420#ifndef CONFIG_BRIDGE_NETFILTER
Patrick McHardydf6fb862007-09-28 14:37:03 -0700421 NLA_PUT(inst->skb, NFULA_IFINDEX_INDEV, sizeof(tmp_uint),
Harald Welte0597f262005-08-09 19:58:39 -0700422 &tmp_uint);
Harald Weltefbcd9232005-08-09 20:22:10 -0700423#else
424 if (pf == PF_BRIDGE) {
425 /* Case 1: outdev is physical input device, we need to
426 * look for bridge group (when called from
427 * netfilter_bridge) */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700428 NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700429 sizeof(tmp_uint), &tmp_uint);
430 /* this is the bridge group "brX" */
431 tmp_uint = htonl(indev->br_port->br->dev->ifindex);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700432 NLA_PUT(inst->skb, NFULA_IFINDEX_INDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700433 sizeof(tmp_uint), &tmp_uint);
434 } else {
435 /* Case 2: indev is bridge group, we need to look for
436 * physical device (when called from ipv4) */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700437 NLA_PUT(inst->skb, NFULA_IFINDEX_INDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700438 sizeof(tmp_uint), &tmp_uint);
439 if (skb->nf_bridge && skb->nf_bridge->physindev) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800440 tmp_uint =
Harald Weltefbcd9232005-08-09 20:22:10 -0700441 htonl(skb->nf_bridge->physindev->ifindex);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700442 NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700443 sizeof(tmp_uint), &tmp_uint);
444 }
445 }
446#endif
Harald Welte0597f262005-08-09 19:58:39 -0700447 }
448
449 if (outdev) {
450 tmp_uint = htonl(outdev->ifindex);
Harald Weltefbcd9232005-08-09 20:22:10 -0700451#ifndef CONFIG_BRIDGE_NETFILTER
Patrick McHardydf6fb862007-09-28 14:37:03 -0700452 NLA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV, sizeof(tmp_uint),
Harald Welte0597f262005-08-09 19:58:39 -0700453 &tmp_uint);
Harald Weltefbcd9232005-08-09 20:22:10 -0700454#else
455 if (pf == PF_BRIDGE) {
456 /* Case 1: outdev is physical output device, we need to
457 * look for bridge group (when called from
458 * netfilter_bridge) */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700459 NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700460 sizeof(tmp_uint), &tmp_uint);
461 /* this is the bridge group "brX" */
462 tmp_uint = htonl(outdev->br_port->br->dev->ifindex);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700463 NLA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700464 sizeof(tmp_uint), &tmp_uint);
465 } else {
466 /* Case 2: indev is a bridge group, we need to look
467 * for physical device (when called from ipv4) */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700468 NLA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700469 sizeof(tmp_uint), &tmp_uint);
Patrick McHardyba5dcee2007-03-06 20:24:53 -0800470 if (skb->nf_bridge && skb->nf_bridge->physoutdev) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800471 tmp_uint =
Harald Weltefbcd9232005-08-09 20:22:10 -0700472 htonl(skb->nf_bridge->physoutdev->ifindex);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700473 NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700474 sizeof(tmp_uint), &tmp_uint);
475 }
476 }
477#endif
Harald Welte0597f262005-08-09 19:58:39 -0700478 }
479
Thomas Graf82e91ff2006-11-09 15:19:14 -0800480 if (skb->mark) {
481 tmp_uint = htonl(skb->mark);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700482 NLA_PUT(inst->skb, NFULA_MARK, sizeof(tmp_uint), &tmp_uint);
Harald Welte0597f262005-08-09 19:58:39 -0700483 }
484
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700485 if (indev && skb->dev) {
Harald Welte0597f262005-08-09 19:58:39 -0700486 struct nfulnl_msg_packet_hw phw;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700487 int len = dev_parse_header(skb, phw.hw_addr);
488 if (len > 0) {
489 phw.hw_addrlen = htons(len);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700490 NLA_PUT(inst->skb, NFULA_HWADDR, sizeof(phw), &phw);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700491 }
Harald Welte0597f262005-08-09 19:58:39 -0700492 }
493
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700494 if (skb->tstamp.tv64) {
Harald Welte0597f262005-08-09 19:58:39 -0700495 struct nfulnl_msg_packet_timestamp ts;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700496 struct timeval tv = ktime_to_timeval(skb->tstamp);
497 ts.sec = cpu_to_be64(tv.tv_sec);
498 ts.usec = cpu_to_be64(tv.tv_usec);
Harald Welte0597f262005-08-09 19:58:39 -0700499
Patrick McHardydf6fb862007-09-28 14:37:03 -0700500 NLA_PUT(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts);
Harald Welte0597f262005-08-09 19:58:39 -0700501 }
502
503 /* UID */
504 if (skb->sk) {
505 read_lock_bh(&skb->sk->sk_callback_lock);
506 if (skb->sk->sk_socket && skb->sk->sk_socket->file) {
Al Viro98a4a862006-11-08 00:26:51 -0800507 __be32 uid = htonl(skb->sk->sk_socket->file->f_uid);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700508 /* need to unlock here since NLA_PUT may goto */
Harald Welte0597f262005-08-09 19:58:39 -0700509 read_unlock_bh(&skb->sk->sk_callback_lock);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700510 NLA_PUT(inst->skb, NFULA_UID, sizeof(uid), &uid);
Harald Welte0597f262005-08-09 19:58:39 -0700511 } else
512 read_unlock_bh(&skb->sk->sk_callback_lock);
513 }
514
Harald Welte0af5f6c2006-03-20 17:15:11 -0800515 /* local sequence number */
516 if (inst->flags & NFULNL_CFG_F_SEQ) {
517 tmp_uint = htonl(inst->seq++);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700518 NLA_PUT(inst->skb, NFULA_SEQ, sizeof(tmp_uint), &tmp_uint);
Harald Welte0af5f6c2006-03-20 17:15:11 -0800519 }
520 /* global sequence number */
521 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) {
Patrick McHardy7fdeaf62006-11-14 19:47:09 -0800522 tmp_uint = htonl(atomic_inc_return(&global_seq));
Patrick McHardydf6fb862007-09-28 14:37:03 -0700523 NLA_PUT(inst->skb, NFULA_SEQ_GLOBAL, sizeof(tmp_uint), &tmp_uint);
Harald Welte0af5f6c2006-03-20 17:15:11 -0800524 }
525
Harald Welte0597f262005-08-09 19:58:39 -0700526 if (data_len) {
Patrick McHardydf6fb862007-09-28 14:37:03 -0700527 struct nlattr *nla;
528 int size = nla_attr_size(data_len);
Harald Welte0597f262005-08-09 19:58:39 -0700529
Patrick McHardydf6fb862007-09-28 14:37:03 -0700530 if (skb_tailroom(inst->skb) < nla_total_size(data_len)) {
Harald Welte0597f262005-08-09 19:58:39 -0700531 printk(KERN_WARNING "nfnetlink_log: no tailroom!\n");
532 goto nlmsg_failure;
533 }
534
Patrick McHardydf6fb862007-09-28 14:37:03 -0700535 nla = (struct nlattr *)skb_put(inst->skb, nla_total_size(data_len));
536 nla->nla_type = NFULA_PAYLOAD;
537 nla->nla_len = size;
Harald Welte0597f262005-08-09 19:58:39 -0700538
Patrick McHardydf6fb862007-09-28 14:37:03 -0700539 if (skb_copy_bits(skb, 0, nla_data(nla), data_len))
Harald Welte0597f262005-08-09 19:58:39 -0700540 BUG();
541 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800542
Harald Welte0597f262005-08-09 19:58:39 -0700543 nlh->nlmsg_len = inst->skb->tail - old_tail;
544 return 0;
545
546nlmsg_failure:
547 UDEBUG("nlmsg_failure\n");
Patrick McHardydf6fb862007-09-28 14:37:03 -0700548nla_put_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700549 PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
550 return -1;
551}
552
553#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
554
555static struct nf_loginfo default_loginfo = {
556 .type = NF_LOG_TYPE_ULOG,
557 .u = {
558 .ulog = {
559 .copy_len = 0xffff,
560 .group = 0,
561 .qthreshold = 1,
562 },
563 },
564};
565
566/* log handler for internal netfilter logging api */
567static void
568nfulnl_log_packet(unsigned int pf,
569 unsigned int hooknum,
570 const struct sk_buff *skb,
571 const struct net_device *in,
572 const struct net_device *out,
573 const struct nf_loginfo *li_user,
574 const char *prefix)
575{
576 unsigned int size, data_len;
577 struct nfulnl_instance *inst;
578 const struct nf_loginfo *li;
579 unsigned int qthreshold;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100580 unsigned int plen;
Harald Welte0597f262005-08-09 19:58:39 -0700581
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800582 if (li_user && li_user->type == NF_LOG_TYPE_ULOG)
Harald Welte0597f262005-08-09 19:58:39 -0700583 li = li_user;
584 else
585 li = &default_loginfo;
586
587 inst = instance_lookup_get(li->u.ulog.group);
588 if (!inst)
Harald Welte0597f262005-08-09 19:58:39 -0700589 return;
Harald Welte0597f262005-08-09 19:58:39 -0700590
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100591 plen = 0;
592 if (prefix)
Patrick McHardy881dbfe2007-03-06 20:24:35 -0800593 plen = strlen(prefix) + 1;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100594
Harald Welte0597f262005-08-09 19:58:39 -0700595 /* FIXME: do we want to make the size calculation conditional based on
596 * what is actually present? way more branches and checks, but more
597 * memory efficient... */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700598 size = NLMSG_ALIGN(sizeof(struct nfgenmsg))
599 + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr))
600 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
601 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700602#ifdef CONFIG_BRIDGE_NETFILTER
Patrick McHardydf6fb862007-09-28 14:37:03 -0700603 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
604 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700605#endif
Patrick McHardydf6fb862007-09-28 14:37:03 -0700606 + nla_total_size(sizeof(u_int32_t)) /* mark */
607 + nla_total_size(sizeof(u_int32_t)) /* uid */
608 + nla_total_size(plen) /* prefix */
609 + nla_total_size(sizeof(struct nfulnl_msg_packet_hw))
610 + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp));
Harald Welte0597f262005-08-09 19:58:39 -0700611
612 UDEBUG("initial size=%u\n", size);
613
614 spin_lock_bh(&inst->lock);
615
Harald Welte0af5f6c2006-03-20 17:15:11 -0800616 if (inst->flags & NFULNL_CFG_F_SEQ)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700617 size += nla_total_size(sizeof(u_int32_t));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800618 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700619 size += nla_total_size(sizeof(u_int32_t));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800620
Harald Welte0597f262005-08-09 19:58:39 -0700621 qthreshold = inst->qthreshold;
622 /* per-rule qthreshold overrides per-instance */
623 if (qthreshold > li->u.ulog.qthreshold)
624 qthreshold = li->u.ulog.qthreshold;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800625
Harald Welte0597f262005-08-09 19:58:39 -0700626 switch (inst->copy_mode) {
627 case NFULNL_COPY_META:
628 case NFULNL_COPY_NONE:
629 data_len = 0;
630 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800631
Harald Welte0597f262005-08-09 19:58:39 -0700632 case NFULNL_COPY_PACKET:
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800633 if (inst->copy_range == 0
Harald Welte0597f262005-08-09 19:58:39 -0700634 || inst->copy_range > skb->len)
635 data_len = skb->len;
636 else
637 data_len = inst->copy_range;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800638
Patrick McHardydf6fb862007-09-28 14:37:03 -0700639 size += nla_total_size(data_len);
Harald Welte0597f262005-08-09 19:58:39 -0700640 UDEBUG("copy_packet, therefore size now %u\n", size);
641 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800642
Harald Welte0597f262005-08-09 19:58:39 -0700643 default:
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700644 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700645 }
646
Michal Miroslawd63b0432007-09-28 14:44:44 -0700647 if (inst->skb &&
648 size > skb_tailroom(inst->skb) - sizeof(struct nfgenmsg)) {
Harald Welte0597f262005-08-09 19:58:39 -0700649 /* either the queue len is too high or we don't have
650 * enough room in the skb left. flush to userspace. */
651 UDEBUG("flushing old skb\n");
652
Michal Miroslawe3567062007-09-28 14:44:21 -0700653 __nfulnl_flush(inst);
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700654 }
Harald Welte0597f262005-08-09 19:58:39 -0700655
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700656 if (!inst->skb) {
657 inst->skb = nfulnl_alloc_skb(inst->nlbufsiz, size);
658 if (!inst->skb)
Harald Welte0597f262005-08-09 19:58:39 -0700659 goto alloc_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700660 }
661
662 UDEBUG("qlen %d, qthreshold %d\n", inst->qlen, qthreshold);
663 inst->qlen++;
664
665 __build_packet_message(inst, skb, data_len, pf,
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100666 hooknum, in, out, li, prefix, plen);
Harald Welte0597f262005-08-09 19:58:39 -0700667
Michal Miroslawd63b0432007-09-28 14:44:44 -0700668 if (inst->qlen >= qthreshold)
669 __nfulnl_flush(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700670 /* timer_pending always called within inst->lock, so there
671 * is no chance of a race here */
Michal Miroslawd63b0432007-09-28 14:44:44 -0700672 else if (!timer_pending(&inst->timer)) {
Harald Welte0597f262005-08-09 19:58:39 -0700673 instance_get(inst);
674 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
675 add_timer(&inst->timer);
676 }
Harald Welte0597f262005-08-09 19:58:39 -0700677
Michal Miroslawed32abe2007-03-04 15:58:15 -0800678unlock_and_release:
679 spin_unlock_bh(&inst->lock);
680 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700681 return;
682
683alloc_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700684 UDEBUG("error allocating skb\n");
685 /* FIXME: statistics */
Michal Miroslawed32abe2007-03-04 15:58:15 -0800686 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700687}
688
689static int
690nfulnl_rcv_nl_event(struct notifier_block *this,
691 unsigned long event, void *ptr)
692{
693 struct netlink_notify *n = ptr;
694
695 if (event == NETLINK_URELEASE &&
696 n->protocol == NETLINK_NETFILTER && n->pid) {
697 int i;
698
699 /* destroy all instances for this pid */
700 write_lock_bh(&instances_lock);
701 for (i = 0; i < INSTANCE_BUCKETS; i++) {
702 struct hlist_node *tmp, *t2;
703 struct nfulnl_instance *inst;
704 struct hlist_head *head = &instance_table[i];
705
706 hlist_for_each_entry_safe(inst, tmp, t2, head, hlist) {
707 UDEBUG("node = %p\n", inst);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200708 if ((n->net == &init_net) &&
709 (n->pid == inst->peer_pid))
Harald Welte0597f262005-08-09 19:58:39 -0700710 __instance_destroy(inst);
711 }
712 }
713 write_unlock_bh(&instances_lock);
714 }
715 return NOTIFY_DONE;
716}
717
718static struct notifier_block nfulnl_rtnl_notifier = {
719 .notifier_call = nfulnl_rcv_nl_event,
720};
721
722static int
723nfulnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardydf6fb862007-09-28 14:37:03 -0700724 struct nlmsghdr *nlh, struct nlattr *nfqa[])
Harald Welte0597f262005-08-09 19:58:39 -0700725{
726 return -ENOTSUPP;
727}
728
729static struct nf_logger nfulnl_logger = {
730 .name = "nfnetlink_log",
731 .logfn = &nfulnl_log_packet,
732 .me = THIS_MODULE,
733};
734
Patrick McHardyfd8281a2007-09-28 14:39:09 -0700735static const struct nla_policy nfula_cfg_policy[NFULA_CFG_MAX+1] = {
736 [NFULA_CFG_CMD] = { .len = sizeof(struct nfulnl_msg_config_cmd) },
737 [NFULA_CFG_MODE] = { .len = sizeof(struct nfulnl_msg_config_mode) },
738 [NFULA_CFG_TIMEOUT] = { .type = NLA_U32 },
739 [NFULA_CFG_QTHRESH] = { .type = NLA_U32 },
740 [NFULA_CFG_NLBUFSIZ] = { .type = NLA_U32 },
741 [NFULA_CFG_FLAGS] = { .type = NLA_U16 },
Harald Welte0597f262005-08-09 19:58:39 -0700742};
743
744static int
745nfulnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardydf6fb862007-09-28 14:37:03 -0700746 struct nlmsghdr *nlh, struct nlattr *nfula[])
Harald Welte0597f262005-08-09 19:58:39 -0700747{
748 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
749 u_int16_t group_num = ntohs(nfmsg->res_id);
750 struct nfulnl_instance *inst;
751 int ret = 0;
752
753 UDEBUG("entering for msg %u\n", NFNL_MSG_TYPE(nlh->nlmsg_type));
754
Harald Welte0597f262005-08-09 19:58:39 -0700755 inst = instance_lookup_get(group_num);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700756 if (nfula[NFULA_CFG_CMD]) {
Harald Welte0597f262005-08-09 19:58:39 -0700757 u_int8_t pf = nfmsg->nfgen_family;
758 struct nfulnl_msg_config_cmd *cmd;
Patrick McHardydf6fb862007-09-28 14:37:03 -0700759 cmd = nla_data(nfula[NFULA_CFG_CMD]);
Harald Welte0597f262005-08-09 19:58:39 -0700760 UDEBUG("found CFG_CMD for\n");
761
762 switch (cmd->command) {
763 case NFULNL_CFG_CMD_BIND:
764 if (inst) {
765 ret = -EBUSY;
766 goto out_put;
767 }
768
769 inst = instance_create(group_num,
770 NETLINK_CB(skb).pid);
771 if (!inst) {
772 ret = -EINVAL;
Michal Miroslawf414c162007-03-23 11:11:31 -0700773 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700774 }
775 break;
776 case NFULNL_CFG_CMD_UNBIND:
777 if (!inst) {
778 ret = -ENODEV;
Michal Miroslawf414c162007-03-23 11:11:31 -0700779 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700780 }
781
782 if (inst->peer_pid != NETLINK_CB(skb).pid) {
783 ret = -EPERM;
784 goto out_put;
785 }
786
787 instance_destroy(inst);
Michal Miroslaw9a36e8c2007-03-23 11:11:48 -0700788 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700789 case NFULNL_CFG_CMD_PF_BIND:
790 UDEBUG("registering log handler for pf=%u\n", pf);
791 ret = nf_log_register(pf, &nfulnl_logger);
792 break;
793 case NFULNL_CFG_CMD_PF_UNBIND:
794 UDEBUG("unregistering log handler for pf=%u\n", pf);
795 /* This is a bug and a feature. We cannot unregister
796 * other handlers, like nfnetlink_inst can */
797 nf_log_unregister_pf(pf);
798 break;
799 default:
800 ret = -EINVAL;
801 break;
802 }
Michal Miroslawdd167042007-03-04 15:59:20 -0800803
804 if (!inst)
805 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700806 } else {
807 if (!inst) {
808 UDEBUG("no config command, and no instance for "
809 "group=%u pid=%u =>ENOENT\n",
810 group_num, NETLINK_CB(skb).pid);
811 ret = -ENOENT;
Michal Miroslawf414c162007-03-23 11:11:31 -0700812 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700813 }
814
815 if (inst->peer_pid != NETLINK_CB(skb).pid) {
816 UDEBUG("no config command, and wrong pid\n");
817 ret = -EPERM;
818 goto out_put;
819 }
820 }
821
Patrick McHardydf6fb862007-09-28 14:37:03 -0700822 if (nfula[NFULA_CFG_MODE]) {
Harald Welte0597f262005-08-09 19:58:39 -0700823 struct nfulnl_msg_config_mode *params;
Patrick McHardydf6fb862007-09-28 14:37:03 -0700824 params = nla_data(nfula[NFULA_CFG_MODE]);
Harald Welte0597f262005-08-09 19:58:39 -0700825
826 nfulnl_set_mode(inst, params->copy_mode,
Al Virod1208b92006-11-03 00:58:41 -0800827 ntohl(params->copy_range));
Harald Welte0597f262005-08-09 19:58:39 -0700828 }
829
Patrick McHardydf6fb862007-09-28 14:37:03 -0700830 if (nfula[NFULA_CFG_TIMEOUT]) {
Al Viro98a4a862006-11-08 00:26:51 -0800831 __be32 timeout =
Patrick McHardydf6fb862007-09-28 14:37:03 -0700832 *(__be32 *)nla_data(nfula[NFULA_CFG_TIMEOUT]);
Harald Welte0597f262005-08-09 19:58:39 -0700833
834 nfulnl_set_timeout(inst, ntohl(timeout));
835 }
836
Patrick McHardydf6fb862007-09-28 14:37:03 -0700837 if (nfula[NFULA_CFG_NLBUFSIZ]) {
Al Viro98a4a862006-11-08 00:26:51 -0800838 __be32 nlbufsiz =
Patrick McHardydf6fb862007-09-28 14:37:03 -0700839 *(__be32 *)nla_data(nfula[NFULA_CFG_NLBUFSIZ]);
Harald Welte0597f262005-08-09 19:58:39 -0700840
841 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
842 }
843
Patrick McHardydf6fb862007-09-28 14:37:03 -0700844 if (nfula[NFULA_CFG_QTHRESH]) {
Al Viro7ac00a22006-11-03 00:58:17 -0800845 __be32 qthresh =
Patrick McHardydf6fb862007-09-28 14:37:03 -0700846 *(__be32 *)nla_data(nfula[NFULA_CFG_QTHRESH]);
Harald Welte0597f262005-08-09 19:58:39 -0700847
848 nfulnl_set_qthresh(inst, ntohl(qthresh));
849 }
850
Patrick McHardydf6fb862007-09-28 14:37:03 -0700851 if (nfula[NFULA_CFG_FLAGS]) {
Al Viro98a4a862006-11-08 00:26:51 -0800852 __be16 flags =
Patrick McHardydf6fb862007-09-28 14:37:03 -0700853 *(__be16 *)nla_data(nfula[NFULA_CFG_FLAGS]);
Patrick McHardyee433532006-05-19 02:17:18 -0700854 nfulnl_set_flags(inst, ntohs(flags));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800855 }
856
Harald Welte0597f262005-08-09 19:58:39 -0700857out_put:
858 instance_put(inst);
Michal Miroslawdd167042007-03-04 15:59:20 -0800859out:
Harald Welte0597f262005-08-09 19:58:39 -0700860 return ret;
861}
862
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700863static const struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
Harald Welte0597f262005-08-09 19:58:39 -0700864 [NFULNL_MSG_PACKET] = { .call = nfulnl_recv_unsupp,
Harald Welte37d2e7a2005-11-14 15:24:59 -0800865 .attr_count = NFULA_MAX, },
Harald Welte0597f262005-08-09 19:58:39 -0700866 [NFULNL_MSG_CONFIG] = { .call = nfulnl_recv_config,
Patrick McHardyfd8281a2007-09-28 14:39:09 -0700867 .attr_count = NFULA_CFG_MAX,
868 .policy = nfula_cfg_policy },
Harald Welte0597f262005-08-09 19:58:39 -0700869};
870
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700871static const struct nfnetlink_subsystem nfulnl_subsys = {
Harald Welte0597f262005-08-09 19:58:39 -0700872 .name = "log",
873 .subsys_id = NFNL_SUBSYS_ULOG,
874 .cb_count = NFULNL_MSG_MAX,
Harald Welte0597f262005-08-09 19:58:39 -0700875 .cb = nfulnl_cb,
876};
877
878#ifdef CONFIG_PROC_FS
879struct iter_state {
880 unsigned int bucket;
881};
882
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700883static struct hlist_node *get_first(struct iter_state *st)
Harald Welte0597f262005-08-09 19:58:39 -0700884{
Harald Welte0597f262005-08-09 19:58:39 -0700885 if (!st)
886 return NULL;
887
888 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
889 if (!hlist_empty(&instance_table[st->bucket]))
890 return instance_table[st->bucket].first;
891 }
892 return NULL;
893}
894
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700895static struct hlist_node *get_next(struct iter_state *st, struct hlist_node *h)
Harald Welte0597f262005-08-09 19:58:39 -0700896{
Harald Welte0597f262005-08-09 19:58:39 -0700897 h = h->next;
898 while (!h) {
899 if (++st->bucket >= INSTANCE_BUCKETS)
900 return NULL;
901
902 h = instance_table[st->bucket].first;
903 }
904 return h;
905}
906
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700907static struct hlist_node *get_idx(struct iter_state *st, loff_t pos)
Harald Welte0597f262005-08-09 19:58:39 -0700908{
909 struct hlist_node *head;
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700910 head = get_first(st);
Harald Welte0597f262005-08-09 19:58:39 -0700911
912 if (head)
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700913 while (pos && (head = get_next(st, head)))
Harald Welte0597f262005-08-09 19:58:39 -0700914 pos--;
915 return pos ? NULL : head;
916}
917
918static void *seq_start(struct seq_file *seq, loff_t *pos)
919{
920 read_lock_bh(&instances_lock);
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700921 return get_idx(seq->private, *pos);
Harald Welte0597f262005-08-09 19:58:39 -0700922}
923
924static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
925{
926 (*pos)++;
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700927 return get_next(s->private, v);
Harald Welte0597f262005-08-09 19:58:39 -0700928}
929
930static void seq_stop(struct seq_file *s, void *v)
931{
932 read_unlock_bh(&instances_lock);
933}
934
935static int seq_show(struct seq_file *s, void *v)
936{
937 const struct nfulnl_instance *inst = v;
938
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800939 return seq_printf(s, "%5d %6d %5d %1d %5d %6d %2d\n",
Harald Welte0597f262005-08-09 19:58:39 -0700940 inst->group_num,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800941 inst->peer_pid, inst->qlen,
Harald Welte0597f262005-08-09 19:58:39 -0700942 inst->copy_mode, inst->copy_range,
943 inst->flushtimeout, atomic_read(&inst->use));
944}
945
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700946static const struct seq_operations nful_seq_ops = {
Harald Welte0597f262005-08-09 19:58:39 -0700947 .start = seq_start,
948 .next = seq_next,
949 .stop = seq_stop,
950 .show = seq_show,
951};
952
953static int nful_open(struct inode *inode, struct file *file)
954{
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700955 return seq_open_private(file, &nful_seq_ops,
956 sizeof(struct iter_state));
Harald Welte0597f262005-08-09 19:58:39 -0700957}
958
Arjan van de Venda7071d2007-02-12 00:55:36 -0800959static const struct file_operations nful_file_ops = {
Harald Welte0597f262005-08-09 19:58:39 -0700960 .owner = THIS_MODULE,
961 .open = nful_open,
962 .read = seq_read,
963 .llseek = seq_lseek,
964 .release = seq_release_private,
965};
966
967#endif /* PROC_FS */
968
Patrick McHardy32292a72006-04-06 14:11:30 -0700969static int __init nfnetlink_log_init(void)
Harald Welte0597f262005-08-09 19:58:39 -0700970{
971 int i, status = -ENOMEM;
972#ifdef CONFIG_PROC_FS
973 struct proc_dir_entry *proc_nful;
974#endif
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800975
Harald Welte0597f262005-08-09 19:58:39 -0700976 for (i = 0; i < INSTANCE_BUCKETS; i++)
977 INIT_HLIST_HEAD(&instance_table[i]);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800978
Harald Welte0597f262005-08-09 19:58:39 -0700979 /* it's not really all that important to have a random value, so
980 * we can do this from the init function, even if there hasn't
981 * been that much entropy yet */
982 get_random_bytes(&hash_init, sizeof(hash_init));
983
984 netlink_register_notifier(&nfulnl_rtnl_notifier);
985 status = nfnetlink_subsys_register(&nfulnl_subsys);
986 if (status < 0) {
987 printk(KERN_ERR "log: failed to create netlink socket\n");
988 goto cleanup_netlink_notifier;
989 }
990
991#ifdef CONFIG_PROC_FS
992 proc_nful = create_proc_entry("nfnetlink_log", 0440,
993 proc_net_netfilter);
994 if (!proc_nful)
995 goto cleanup_subsys;
996 proc_nful->proc_fops = &nful_file_ops;
997#endif
Harald Welte0597f262005-08-09 19:58:39 -0700998 return status;
999
Harald Welte0597f262005-08-09 19:58:39 -07001000#ifdef CONFIG_PROC_FS
Harald Welte0597f262005-08-09 19:58:39 -07001001cleanup_subsys:
Harald Welte0597f262005-08-09 19:58:39 -07001002 nfnetlink_subsys_unregister(&nfulnl_subsys);
Patrick McHardy32292a72006-04-06 14:11:30 -07001003#endif
Harald Welte0597f262005-08-09 19:58:39 -07001004cleanup_netlink_notifier:
1005 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1006 return status;
1007}
1008
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001009static void __exit nfnetlink_log_fini(void)
Harald Welte0597f262005-08-09 19:58:39 -07001010{
Patrick McHardye92ad992007-02-12 11:11:55 -08001011 nf_log_unregister(&nfulnl_logger);
Patrick McHardy32292a72006-04-06 14:11:30 -07001012#ifdef CONFIG_PROC_FS
1013 remove_proc_entry("nfnetlink_log", proc_net_netfilter);
1014#endif
1015 nfnetlink_subsys_unregister(&nfulnl_subsys);
1016 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
Harald Welte0597f262005-08-09 19:58:39 -07001017}
1018
1019MODULE_DESCRIPTION("netfilter userspace logging");
1020MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1021MODULE_LICENSE("GPL");
Harald Weltef682fae2005-08-09 20:20:34 -07001022MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
Harald Welte0597f262005-08-09 19:58:39 -07001023
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001024module_init(nfnetlink_log_init);
1025module_exit(nfnetlink_log_fini);