blob: 2c7bd2eb0294400ed1175749f41281ed4f7b735b [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>
32
33#include <asm/atomic.h>
34
Harald Weltefbcd9232005-08-09 20:22:10 -070035#ifdef CONFIG_BRIDGE_NETFILTER
36#include "../bridge/br_private.h"
37#endif
38
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080039#define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
Michal Miroslaw6b6ec992007-09-28 14:45:52 -070040#define NFULNL_TIMEOUT_DEFAULT HZ /* every second */
Harald Welte0597f262005-08-09 19:58:39 -070041#define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
Michal Miroslaw6b6ec992007-09-28 14:45:52 -070042#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 -070043
44#define PRINTR(x, args...) do { if (net_ratelimit()) \
45 printk(x, ## args); } while (0);
46
47#if 0
48#define UDEBUG(x, args ...) printk(KERN_DEBUG "%s(%d):%s(): " x, \
49 __FILE__, __LINE__, __FUNCTION__, \
50 ## args)
51#else
52#define UDEBUG(x, ...)
53#endif
54
55struct nfulnl_instance {
56 struct hlist_node hlist; /* global list of instances */
57 spinlock_t lock;
58 atomic_t use; /* use count */
59
60 unsigned int qlen; /* number of nlmsgs in skb */
61 struct sk_buff *skb; /* pre-allocatd skb */
Harald Welte0597f262005-08-09 19:58:39 -070062 struct timer_list timer;
63 int peer_pid; /* PID of the peer process */
64
65 /* configurable parameters */
66 unsigned int flushtimeout; /* timeout until queue flush */
67 unsigned int nlbufsiz; /* netlink buffer allocation size */
68 unsigned int qthreshold; /* threshold of the queue */
69 u_int32_t copy_range;
Harald Welte0af5f6c2006-03-20 17:15:11 -080070 u_int32_t seq; /* instance-local sequential counter */
Harald Welte0597f262005-08-09 19:58:39 -070071 u_int16_t group_num; /* number of this queue */
Harald Welte0af5f6c2006-03-20 17:15:11 -080072 u_int16_t flags;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080073 u_int8_t copy_mode;
Harald Welte0597f262005-08-09 19:58:39 -070074};
75
76static DEFINE_RWLOCK(instances_lock);
Harald Welte0af5f6c2006-03-20 17:15:11 -080077static atomic_t global_seq;
Harald Welte0597f262005-08-09 19:58:39 -070078
79#define INSTANCE_BUCKETS 16
80static struct hlist_head instance_table[INSTANCE_BUCKETS];
81static unsigned int hash_init;
82
83static inline u_int8_t instance_hashfn(u_int16_t group_num)
84{
85 return ((group_num & 0xff) % INSTANCE_BUCKETS);
86}
87
88static struct nfulnl_instance *
89__instance_lookup(u_int16_t group_num)
90{
91 struct hlist_head *head;
92 struct hlist_node *pos;
93 struct nfulnl_instance *inst;
94
95 UDEBUG("entering (group_num=%u)\n", group_num);
96
97 head = &instance_table[instance_hashfn(group_num)];
98 hlist_for_each_entry(inst, pos, head, hlist) {
99 if (inst->group_num == group_num)
100 return inst;
101 }
102 return NULL;
103}
104
105static inline void
106instance_get(struct nfulnl_instance *inst)
107{
108 atomic_inc(&inst->use);
109}
110
111static struct nfulnl_instance *
112instance_lookup_get(u_int16_t group_num)
113{
114 struct nfulnl_instance *inst;
115
116 read_lock_bh(&instances_lock);
117 inst = __instance_lookup(group_num);
118 if (inst)
119 instance_get(inst);
120 read_unlock_bh(&instances_lock);
121
122 return inst;
123}
124
125static void
126instance_put(struct nfulnl_instance *inst)
127{
128 if (inst && atomic_dec_and_test(&inst->use)) {
129 UDEBUG("kfree(inst=%p)\n", inst);
130 kfree(inst);
Patrick McHardy7d90e862007-03-04 15:59:45 -0800131 module_put(THIS_MODULE);
Harald Welte0597f262005-08-09 19:58:39 -0700132 }
133}
134
135static void nfulnl_timer(unsigned long data);
136
137static struct nfulnl_instance *
138instance_create(u_int16_t group_num, int pid)
139{
140 struct nfulnl_instance *inst;
141
142 UDEBUG("entering (group_num=%u, pid=%d)\n", group_num,
143 pid);
144
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800145 write_lock_bh(&instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700146 if (__instance_lookup(group_num)) {
147 inst = NULL;
148 UDEBUG("aborting, instance already exists\n");
149 goto out_unlock;
150 }
151
Harald Welte10dfdc62005-11-03 19:20:07 +0100152 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
Harald Welte0597f262005-08-09 19:58:39 -0700153 if (!inst)
154 goto out_unlock;
155
Michal Miroslawaace57e2007-09-28 14:45:27 -0700156 if (!try_module_get(THIS_MODULE)) {
157 kfree(inst);
158 goto out_unlock;
159 }
160
Harald Welte0597f262005-08-09 19:58:39 -0700161 INIT_HLIST_NODE(&inst->hlist);
YOSHIFUJI Hideaki181a46a2006-01-04 13:56:54 -0800162 spin_lock_init(&inst->lock);
Harald Welte0597f262005-08-09 19:58:39 -0700163 /* needs to be two, since we _put() after creation */
164 atomic_set(&inst->use, 2);
165
Patrick McHardye6f689d2007-03-23 11:16:30 -0700166 setup_timer(&inst->timer, nfulnl_timer, (unsigned long)inst);
Harald Welte0597f262005-08-09 19:58:39 -0700167
168 inst->peer_pid = pid;
169 inst->group_num = group_num;
170
171 inst->qthreshold = NFULNL_QTHRESH_DEFAULT;
172 inst->flushtimeout = NFULNL_TIMEOUT_DEFAULT;
173 inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT;
174 inst->copy_mode = NFULNL_COPY_PACKET;
Michal Miroslaw6b6ec992007-09-28 14:45:52 -0700175 inst->copy_range = NFULNL_COPY_RANGE_MAX;
Harald Welte0597f262005-08-09 19:58:39 -0700176
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800177 hlist_add_head(&inst->hlist,
Harald Welte0597f262005-08-09 19:58:39 -0700178 &instance_table[instance_hashfn(group_num)]);
179
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800180 UDEBUG("newly added node: %p, next=%p\n", &inst->hlist,
Harald Welte0597f262005-08-09 19:58:39 -0700181 inst->hlist.next);
182
183 write_unlock_bh(&instances_lock);
184
185 return inst;
186
Harald Welte0597f262005-08-09 19:58:39 -0700187out_unlock:
188 write_unlock_bh(&instances_lock);
189 return NULL;
190}
191
Michal Miroslawe3567062007-09-28 14:44:21 -0700192static void __nfulnl_flush(struct nfulnl_instance *inst);
Harald Welte0597f262005-08-09 19:58:39 -0700193
194static void
Patrick McHardy9afdb002007-03-23 11:12:50 -0700195__instance_destroy(struct nfulnl_instance *inst)
Harald Welte0597f262005-08-09 19:58:39 -0700196{
197 /* first pull it out of the global list */
Harald Welte0597f262005-08-09 19:58:39 -0700198 UDEBUG("removing instance %p (queuenum=%u) from hash\n",
199 inst, inst->group_num);
200
201 hlist_del(&inst->hlist);
202
Harald Welte0597f262005-08-09 19:58:39 -0700203 /* then flush all pending packets from skb */
204
205 spin_lock_bh(&inst->lock);
Michal Miroslawe3567062007-09-28 14:44:21 -0700206 if (inst->skb)
207 __nfulnl_flush(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700208 spin_unlock_bh(&inst->lock);
209
210 /* and finally put the refcount */
211 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700212}
213
214static inline void
Harald Welte0597f262005-08-09 19:58:39 -0700215instance_destroy(struct nfulnl_instance *inst)
216{
Patrick McHardy9afdb002007-03-23 11:12:50 -0700217 write_lock_bh(&instances_lock);
218 __instance_destroy(inst);
219 write_unlock_bh(&instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700220}
221
222static int
223nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
224 unsigned int range)
225{
226 int status = 0;
227
228 spin_lock_bh(&inst->lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800229
Harald Welte0597f262005-08-09 19:58:39 -0700230 switch (mode) {
231 case NFULNL_COPY_NONE:
232 case NFULNL_COPY_META:
233 inst->copy_mode = mode;
234 inst->copy_range = 0;
235 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800236
Harald Welte0597f262005-08-09 19:58:39 -0700237 case NFULNL_COPY_PACKET:
238 inst->copy_mode = mode;
Michal Miroslaw6b6ec992007-09-28 14:45:52 -0700239 inst->copy_range = min_t(unsigned int,
240 range, NFULNL_COPY_RANGE_MAX);
Harald Welte0597f262005-08-09 19:58:39 -0700241 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800242
Harald Welte0597f262005-08-09 19:58:39 -0700243 default:
244 status = -EINVAL;
245 break;
246 }
247
248 spin_unlock_bh(&inst->lock);
249
250 return status;
251}
252
253static int
254nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
255{
256 int status;
257
258 spin_lock_bh(&inst->lock);
259 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
260 status = -ERANGE;
261 else if (nlbufsiz > 131072)
262 status = -ERANGE;
263 else {
264 inst->nlbufsiz = nlbufsiz;
265 status = 0;
266 }
267 spin_unlock_bh(&inst->lock);
268
269 return status;
270}
271
272static int
273nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
274{
275 spin_lock_bh(&inst->lock);
276 inst->flushtimeout = timeout;
277 spin_unlock_bh(&inst->lock);
278
279 return 0;
280}
281
282static int
283nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
284{
285 spin_lock_bh(&inst->lock);
286 inst->qthreshold = qthresh;
287 spin_unlock_bh(&inst->lock);
288
289 return 0;
290}
291
Harald Welte0af5f6c2006-03-20 17:15:11 -0800292static int
293nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
294{
295 spin_lock_bh(&inst->lock);
Patrick McHardyee433532006-05-19 02:17:18 -0700296 inst->flags = flags;
Harald Welte0af5f6c2006-03-20 17:15:11 -0800297 spin_unlock_bh(&inst->lock);
298
299 return 0;
300}
301
Michal Miroslawc6a8f642007-09-28 14:45:06 -0700302static struct sk_buff *
303nfulnl_alloc_skb(unsigned int inst_size, unsigned int pkt_size)
Harald Welte0597f262005-08-09 19:58:39 -0700304{
305 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800306 unsigned int n;
Harald Welte0597f262005-08-09 19:58:39 -0700307
308 UDEBUG("entered (%u, %u)\n", inst_size, pkt_size);
309
310 /* alloc skb which should be big enough for a whole multipart
311 * message. WARNING: has to be <= 128k due to slab restrictions */
312
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800313 n = max(inst_size, pkt_size);
314 skb = alloc_skb(n, GFP_ATOMIC);
Harald Welte0597f262005-08-09 19:58:39 -0700315 if (!skb) {
316 PRINTR("nfnetlink_log: can't alloc whole buffer (%u bytes)\n",
317 inst_size);
318
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800319 if (n > pkt_size) {
320 /* try to allocate only as much as we need for current
321 * packet */
Harald Welte0597f262005-08-09 19:58:39 -0700322
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800323 skb = alloc_skb(pkt_size, GFP_ATOMIC);
324 if (!skb)
325 PRINTR("nfnetlink_log: can't even alloc %u "
326 "bytes\n", pkt_size);
327 }
Harald Welte0597f262005-08-09 19:58:39 -0700328 }
329
330 return skb;
331}
332
333static int
334__nfulnl_send(struct nfulnl_instance *inst)
335{
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700336 int status = -1;
Harald Welte0597f262005-08-09 19:58:39 -0700337
Harald Welte0597f262005-08-09 19:58:39 -0700338 if (inst->qlen > 1)
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700339 NLMSG_PUT(inst->skb, 0, 0,
340 NLMSG_DONE,
341 sizeof(struct nfgenmsg));
Harald Welte0597f262005-08-09 19:58:39 -0700342
343 status = nfnetlink_unicast(inst->skb, inst->peer_pid, MSG_DONTWAIT);
344 if (status < 0) {
345 UDEBUG("netlink_unicast() failed\n");
346 /* FIXME: statistics */
347 }
348
349 inst->qlen = 0;
350 inst->skb = NULL;
Harald Welte0597f262005-08-09 19:58:39 -0700351
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700352nlmsg_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700353 return status;
354}
355
Michal Miroslawe3567062007-09-28 14:44:21 -0700356static void
357__nfulnl_flush(struct nfulnl_instance *inst)
358{
359 /* timer holds a reference */
360 if (del_timer(&inst->timer))
361 instance_put(inst);
362 if (inst->skb)
363 __nfulnl_send(inst);
364}
365
Michal Miroslawc6a8f642007-09-28 14:45:06 -0700366static void
367nfulnl_timer(unsigned long data)
Harald Welte0597f262005-08-09 19:58:39 -0700368{
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800369 struct nfulnl_instance *inst = (struct nfulnl_instance *)data;
Harald Welte0597f262005-08-09 19:58:39 -0700370
371 UDEBUG("timer function called, flushing buffer\n");
372
373 spin_lock_bh(&inst->lock);
Michal Miroslaw370e6a82007-03-23 11:12:21 -0700374 if (inst->skb)
375 __nfulnl_send(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700376 spin_unlock_bh(&inst->lock);
Michal Miroslaw05f7b7b2007-03-04 15:58:40 -0800377 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700378}
379
Harald Welte0af5f6c2006-03-20 17:15:11 -0800380/* This is an inline function, we don't really care about a long
381 * list of arguments */
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800382static inline int
Harald Welte0597f262005-08-09 19:58:39 -0700383__build_packet_message(struct nfulnl_instance *inst,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800384 const struct sk_buff *skb,
Harald Welte0597f262005-08-09 19:58:39 -0700385 unsigned int data_len,
386 unsigned int pf,
387 unsigned int hooknum,
388 const struct net_device *indev,
389 const struct net_device *outdev,
390 const struct nf_loginfo *li,
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100391 const char *prefix, unsigned int plen)
Harald Welte0597f262005-08-09 19:58:39 -0700392{
Harald Welte0597f262005-08-09 19:58:39 -0700393 struct nfulnl_msg_packet_hdr pmsg;
394 struct nlmsghdr *nlh;
395 struct nfgenmsg *nfmsg;
Al Viro98a4a862006-11-08 00:26:51 -0800396 __be32 tmp_uint;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700397 sk_buff_data_t old_tail = inst->skb->tail;
Harald Welte0597f262005-08-09 19:58:39 -0700398
399 UDEBUG("entered\n");
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800400
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800401 nlh = NLMSG_PUT(inst->skb, 0, 0,
Harald Welte0597f262005-08-09 19:58:39 -0700402 NFNL_SUBSYS_ULOG << 8 | NFULNL_MSG_PACKET,
403 sizeof(struct nfgenmsg));
404 nfmsg = NLMSG_DATA(nlh);
405 nfmsg->nfgen_family = pf;
406 nfmsg->version = NFNETLINK_V0;
407 nfmsg->res_id = htons(inst->group_num);
408
Al Virofebf0a42006-11-03 00:59:17 -0800409 pmsg.hw_protocol = skb->protocol;
Harald Welte0597f262005-08-09 19:58:39 -0700410 pmsg.hook = hooknum;
411
Patrick McHardydf6fb862007-09-28 14:37:03 -0700412 NLA_PUT(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg);
Harald Welte0597f262005-08-09 19:58:39 -0700413
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100414 if (prefix)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700415 NLA_PUT(inst->skb, NFULA_PREFIX, plen, prefix);
Harald Welte0597f262005-08-09 19:58:39 -0700416
417 if (indev) {
418 tmp_uint = htonl(indev->ifindex);
Harald Weltefbcd9232005-08-09 20:22:10 -0700419#ifndef CONFIG_BRIDGE_NETFILTER
Patrick McHardydf6fb862007-09-28 14:37:03 -0700420 NLA_PUT(inst->skb, NFULA_IFINDEX_INDEV, sizeof(tmp_uint),
Harald Welte0597f262005-08-09 19:58:39 -0700421 &tmp_uint);
Harald Weltefbcd9232005-08-09 20:22:10 -0700422#else
423 if (pf == PF_BRIDGE) {
424 /* Case 1: outdev is physical input device, we need to
425 * look for bridge group (when called from
426 * netfilter_bridge) */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700427 NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700428 sizeof(tmp_uint), &tmp_uint);
429 /* this is the bridge group "brX" */
430 tmp_uint = htonl(indev->br_port->br->dev->ifindex);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700431 NLA_PUT(inst->skb, NFULA_IFINDEX_INDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700432 sizeof(tmp_uint), &tmp_uint);
433 } else {
434 /* Case 2: indev is bridge group, we need to look for
435 * physical device (when called from ipv4) */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700436 NLA_PUT(inst->skb, NFULA_IFINDEX_INDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700437 sizeof(tmp_uint), &tmp_uint);
438 if (skb->nf_bridge && skb->nf_bridge->physindev) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800439 tmp_uint =
Harald Weltefbcd9232005-08-09 20:22:10 -0700440 htonl(skb->nf_bridge->physindev->ifindex);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700441 NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700442 sizeof(tmp_uint), &tmp_uint);
443 }
444 }
445#endif
Harald Welte0597f262005-08-09 19:58:39 -0700446 }
447
448 if (outdev) {
449 tmp_uint = htonl(outdev->ifindex);
Harald Weltefbcd9232005-08-09 20:22:10 -0700450#ifndef CONFIG_BRIDGE_NETFILTER
Patrick McHardydf6fb862007-09-28 14:37:03 -0700451 NLA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV, sizeof(tmp_uint),
Harald Welte0597f262005-08-09 19:58:39 -0700452 &tmp_uint);
Harald Weltefbcd9232005-08-09 20:22:10 -0700453#else
454 if (pf == PF_BRIDGE) {
455 /* Case 1: outdev is physical output device, we need to
456 * look for bridge group (when called from
457 * netfilter_bridge) */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700458 NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700459 sizeof(tmp_uint), &tmp_uint);
460 /* this is the bridge group "brX" */
461 tmp_uint = htonl(outdev->br_port->br->dev->ifindex);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700462 NLA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700463 sizeof(tmp_uint), &tmp_uint);
464 } else {
465 /* Case 2: indev is a bridge group, we need to look
466 * for physical device (when called from ipv4) */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700467 NLA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700468 sizeof(tmp_uint), &tmp_uint);
Patrick McHardyba5dcee2007-03-06 20:24:53 -0800469 if (skb->nf_bridge && skb->nf_bridge->physoutdev) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800470 tmp_uint =
Harald Weltefbcd9232005-08-09 20:22:10 -0700471 htonl(skb->nf_bridge->physoutdev->ifindex);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700472 NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
Harald Weltefbcd9232005-08-09 20:22:10 -0700473 sizeof(tmp_uint), &tmp_uint);
474 }
475 }
476#endif
Harald Welte0597f262005-08-09 19:58:39 -0700477 }
478
Thomas Graf82e91ff2006-11-09 15:19:14 -0800479 if (skb->mark) {
480 tmp_uint = htonl(skb->mark);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700481 NLA_PUT(inst->skb, NFULA_MARK, sizeof(tmp_uint), &tmp_uint);
Harald Welte0597f262005-08-09 19:58:39 -0700482 }
483
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700484 if (indev && skb->dev) {
Harald Welte0597f262005-08-09 19:58:39 -0700485 struct nfulnl_msg_packet_hw phw;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700486 int len = dev_parse_header(skb, phw.hw_addr);
487 if (len > 0) {
488 phw.hw_addrlen = htons(len);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700489 NLA_PUT(inst->skb, NFULA_HWADDR, sizeof(phw), &phw);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700490 }
Harald Welte0597f262005-08-09 19:58:39 -0700491 }
492
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700493 if (skb->tstamp.tv64) {
Harald Welte0597f262005-08-09 19:58:39 -0700494 struct nfulnl_msg_packet_timestamp ts;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700495 struct timeval tv = ktime_to_timeval(skb->tstamp);
496 ts.sec = cpu_to_be64(tv.tv_sec);
497 ts.usec = cpu_to_be64(tv.tv_usec);
Harald Welte0597f262005-08-09 19:58:39 -0700498
Patrick McHardydf6fb862007-09-28 14:37:03 -0700499 NLA_PUT(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts);
Harald Welte0597f262005-08-09 19:58:39 -0700500 }
501
502 /* UID */
503 if (skb->sk) {
504 read_lock_bh(&skb->sk->sk_callback_lock);
505 if (skb->sk->sk_socket && skb->sk->sk_socket->file) {
Al Viro98a4a862006-11-08 00:26:51 -0800506 __be32 uid = htonl(skb->sk->sk_socket->file->f_uid);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700507 /* need to unlock here since NLA_PUT may goto */
Harald Welte0597f262005-08-09 19:58:39 -0700508 read_unlock_bh(&skb->sk->sk_callback_lock);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700509 NLA_PUT(inst->skb, NFULA_UID, sizeof(uid), &uid);
Harald Welte0597f262005-08-09 19:58:39 -0700510 } else
511 read_unlock_bh(&skb->sk->sk_callback_lock);
512 }
513
Harald Welte0af5f6c2006-03-20 17:15:11 -0800514 /* local sequence number */
515 if (inst->flags & NFULNL_CFG_F_SEQ) {
516 tmp_uint = htonl(inst->seq++);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700517 NLA_PUT(inst->skb, NFULA_SEQ, sizeof(tmp_uint), &tmp_uint);
Harald Welte0af5f6c2006-03-20 17:15:11 -0800518 }
519 /* global sequence number */
520 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) {
Patrick McHardy7fdeaf62006-11-14 19:47:09 -0800521 tmp_uint = htonl(atomic_inc_return(&global_seq));
Patrick McHardydf6fb862007-09-28 14:37:03 -0700522 NLA_PUT(inst->skb, NFULA_SEQ_GLOBAL, sizeof(tmp_uint), &tmp_uint);
Harald Welte0af5f6c2006-03-20 17:15:11 -0800523 }
524
Harald Welte0597f262005-08-09 19:58:39 -0700525 if (data_len) {
Patrick McHardydf6fb862007-09-28 14:37:03 -0700526 struct nlattr *nla;
527 int size = nla_attr_size(data_len);
Harald Welte0597f262005-08-09 19:58:39 -0700528
Patrick McHardydf6fb862007-09-28 14:37:03 -0700529 if (skb_tailroom(inst->skb) < nla_total_size(data_len)) {
Harald Welte0597f262005-08-09 19:58:39 -0700530 printk(KERN_WARNING "nfnetlink_log: no tailroom!\n");
531 goto nlmsg_failure;
532 }
533
Patrick McHardydf6fb862007-09-28 14:37:03 -0700534 nla = (struct nlattr *)skb_put(inst->skb, nla_total_size(data_len));
535 nla->nla_type = NFULA_PAYLOAD;
536 nla->nla_len = size;
Harald Welte0597f262005-08-09 19:58:39 -0700537
Patrick McHardydf6fb862007-09-28 14:37:03 -0700538 if (skb_copy_bits(skb, 0, nla_data(nla), data_len))
Harald Welte0597f262005-08-09 19:58:39 -0700539 BUG();
540 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800541
Harald Welte0597f262005-08-09 19:58:39 -0700542 nlh->nlmsg_len = inst->skb->tail - old_tail;
543 return 0;
544
545nlmsg_failure:
546 UDEBUG("nlmsg_failure\n");
Patrick McHardydf6fb862007-09-28 14:37:03 -0700547nla_put_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700548 PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
549 return -1;
550}
551
552#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
553
554static struct nf_loginfo default_loginfo = {
555 .type = NF_LOG_TYPE_ULOG,
556 .u = {
557 .ulog = {
558 .copy_len = 0xffff,
559 .group = 0,
560 .qthreshold = 1,
561 },
562 },
563};
564
565/* log handler for internal netfilter logging api */
566static void
567nfulnl_log_packet(unsigned int pf,
568 unsigned int hooknum,
569 const struct sk_buff *skb,
570 const struct net_device *in,
571 const struct net_device *out,
572 const struct nf_loginfo *li_user,
573 const char *prefix)
574{
575 unsigned int size, data_len;
576 struct nfulnl_instance *inst;
577 const struct nf_loginfo *li;
578 unsigned int qthreshold;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100579 unsigned int plen;
Harald Welte0597f262005-08-09 19:58:39 -0700580
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800581 if (li_user && li_user->type == NF_LOG_TYPE_ULOG)
Harald Welte0597f262005-08-09 19:58:39 -0700582 li = li_user;
583 else
584 li = &default_loginfo;
585
586 inst = instance_lookup_get(li->u.ulog.group);
587 if (!inst)
Harald Welte0597f262005-08-09 19:58:39 -0700588 return;
Harald Welte0597f262005-08-09 19:58:39 -0700589
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100590 plen = 0;
591 if (prefix)
Patrick McHardy881dbfe2007-03-06 20:24:35 -0800592 plen = strlen(prefix) + 1;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100593
Harald Welte0597f262005-08-09 19:58:39 -0700594 /* FIXME: do we want to make the size calculation conditional based on
595 * what is actually present? way more branches and checks, but more
596 * memory efficient... */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700597 size = NLMSG_ALIGN(sizeof(struct nfgenmsg))
598 + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr))
599 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
600 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700601#ifdef CONFIG_BRIDGE_NETFILTER
Patrick McHardydf6fb862007-09-28 14:37:03 -0700602 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
603 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700604#endif
Patrick McHardydf6fb862007-09-28 14:37:03 -0700605 + nla_total_size(sizeof(u_int32_t)) /* mark */
606 + nla_total_size(sizeof(u_int32_t)) /* uid */
607 + nla_total_size(plen) /* prefix */
608 + nla_total_size(sizeof(struct nfulnl_msg_packet_hw))
609 + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp));
Harald Welte0597f262005-08-09 19:58:39 -0700610
611 UDEBUG("initial size=%u\n", size);
612
613 spin_lock_bh(&inst->lock);
614
Harald Welte0af5f6c2006-03-20 17:15:11 -0800615 if (inst->flags & NFULNL_CFG_F_SEQ)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700616 size += nla_total_size(sizeof(u_int32_t));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800617 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700618 size += nla_total_size(sizeof(u_int32_t));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800619
Harald Welte0597f262005-08-09 19:58:39 -0700620 qthreshold = inst->qthreshold;
621 /* per-rule qthreshold overrides per-instance */
622 if (qthreshold > li->u.ulog.qthreshold)
623 qthreshold = li->u.ulog.qthreshold;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800624
Harald Welte0597f262005-08-09 19:58:39 -0700625 switch (inst->copy_mode) {
626 case NFULNL_COPY_META:
627 case NFULNL_COPY_NONE:
628 data_len = 0;
629 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800630
Harald Welte0597f262005-08-09 19:58:39 -0700631 case NFULNL_COPY_PACKET:
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800632 if (inst->copy_range == 0
Harald Welte0597f262005-08-09 19:58:39 -0700633 || inst->copy_range > skb->len)
634 data_len = skb->len;
635 else
636 data_len = inst->copy_range;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800637
Patrick McHardydf6fb862007-09-28 14:37:03 -0700638 size += nla_total_size(data_len);
Harald Welte0597f262005-08-09 19:58:39 -0700639 UDEBUG("copy_packet, therefore size now %u\n", size);
640 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800641
Harald Welte0597f262005-08-09 19:58:39 -0700642 default:
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700643 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700644 }
645
Michal Miroslawd63b0432007-09-28 14:44:44 -0700646 if (inst->skb &&
647 size > skb_tailroom(inst->skb) - sizeof(struct nfgenmsg)) {
Harald Welte0597f262005-08-09 19:58:39 -0700648 /* either the queue len is too high or we don't have
649 * enough room in the skb left. flush to userspace. */
650 UDEBUG("flushing old skb\n");
651
Michal Miroslawe3567062007-09-28 14:44:21 -0700652 __nfulnl_flush(inst);
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700653 }
Harald Welte0597f262005-08-09 19:58:39 -0700654
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700655 if (!inst->skb) {
656 inst->skb = nfulnl_alloc_skb(inst->nlbufsiz, size);
657 if (!inst->skb)
Harald Welte0597f262005-08-09 19:58:39 -0700658 goto alloc_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700659 }
660
661 UDEBUG("qlen %d, qthreshold %d\n", inst->qlen, qthreshold);
662 inst->qlen++;
663
664 __build_packet_message(inst, skb, data_len, pf,
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100665 hooknum, in, out, li, prefix, plen);
Harald Welte0597f262005-08-09 19:58:39 -0700666
Michal Miroslawd63b0432007-09-28 14:44:44 -0700667 if (inst->qlen >= qthreshold)
668 __nfulnl_flush(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700669 /* timer_pending always called within inst->lock, so there
670 * is no chance of a race here */
Michal Miroslawd63b0432007-09-28 14:44:44 -0700671 else if (!timer_pending(&inst->timer)) {
Harald Welte0597f262005-08-09 19:58:39 -0700672 instance_get(inst);
673 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
674 add_timer(&inst->timer);
675 }
Harald Welte0597f262005-08-09 19:58:39 -0700676
Michal Miroslawed32abe2007-03-04 15:58:15 -0800677unlock_and_release:
678 spin_unlock_bh(&inst->lock);
679 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700680 return;
681
682alloc_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700683 UDEBUG("error allocating skb\n");
684 /* FIXME: statistics */
Michal Miroslawed32abe2007-03-04 15:58:15 -0800685 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700686}
687
688static int
689nfulnl_rcv_nl_event(struct notifier_block *this,
690 unsigned long event, void *ptr)
691{
692 struct netlink_notify *n = ptr;
693
694 if (event == NETLINK_URELEASE &&
695 n->protocol == NETLINK_NETFILTER && n->pid) {
696 int i;
697
698 /* destroy all instances for this pid */
699 write_lock_bh(&instances_lock);
700 for (i = 0; i < INSTANCE_BUCKETS; i++) {
701 struct hlist_node *tmp, *t2;
702 struct nfulnl_instance *inst;
703 struct hlist_head *head = &instance_table[i];
704
705 hlist_for_each_entry_safe(inst, tmp, t2, head, hlist) {
706 UDEBUG("node = %p\n", inst);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200707 if ((n->net == &init_net) &&
708 (n->pid == inst->peer_pid))
Harald Welte0597f262005-08-09 19:58:39 -0700709 __instance_destroy(inst);
710 }
711 }
712 write_unlock_bh(&instances_lock);
713 }
714 return NOTIFY_DONE;
715}
716
717static struct notifier_block nfulnl_rtnl_notifier = {
718 .notifier_call = nfulnl_rcv_nl_event,
719};
720
721static int
722nfulnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardydf6fb862007-09-28 14:37:03 -0700723 struct nlmsghdr *nlh, struct nlattr *nfqa[])
Harald Welte0597f262005-08-09 19:58:39 -0700724{
725 return -ENOTSUPP;
726}
727
728static struct nf_logger nfulnl_logger = {
729 .name = "nfnetlink_log",
730 .logfn = &nfulnl_log_packet,
731 .me = THIS_MODULE,
732};
733
Patrick McHardyfd8281a2007-09-28 14:39:09 -0700734static const struct nla_policy nfula_cfg_policy[NFULA_CFG_MAX+1] = {
735 [NFULA_CFG_CMD] = { .len = sizeof(struct nfulnl_msg_config_cmd) },
736 [NFULA_CFG_MODE] = { .len = sizeof(struct nfulnl_msg_config_mode) },
737 [NFULA_CFG_TIMEOUT] = { .type = NLA_U32 },
738 [NFULA_CFG_QTHRESH] = { .type = NLA_U32 },
739 [NFULA_CFG_NLBUFSIZ] = { .type = NLA_U32 },
740 [NFULA_CFG_FLAGS] = { .type = NLA_U16 },
Harald Welte0597f262005-08-09 19:58:39 -0700741};
742
743static int
744nfulnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardydf6fb862007-09-28 14:37:03 -0700745 struct nlmsghdr *nlh, struct nlattr *nfula[])
Harald Welte0597f262005-08-09 19:58:39 -0700746{
747 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
748 u_int16_t group_num = ntohs(nfmsg->res_id);
749 struct nfulnl_instance *inst;
750 int ret = 0;
751
752 UDEBUG("entering for msg %u\n", NFNL_MSG_TYPE(nlh->nlmsg_type));
753
Harald Welte0597f262005-08-09 19:58:39 -0700754 inst = instance_lookup_get(group_num);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700755 if (nfula[NFULA_CFG_CMD]) {
Harald Welte0597f262005-08-09 19:58:39 -0700756 u_int8_t pf = nfmsg->nfgen_family;
757 struct nfulnl_msg_config_cmd *cmd;
Patrick McHardydf6fb862007-09-28 14:37:03 -0700758 cmd = nla_data(nfula[NFULA_CFG_CMD]);
Harald Welte0597f262005-08-09 19:58:39 -0700759 UDEBUG("found CFG_CMD for\n");
760
761 switch (cmd->command) {
762 case NFULNL_CFG_CMD_BIND:
763 if (inst) {
764 ret = -EBUSY;
765 goto out_put;
766 }
767
768 inst = instance_create(group_num,
769 NETLINK_CB(skb).pid);
770 if (!inst) {
771 ret = -EINVAL;
Michal Miroslawf414c162007-03-23 11:11:31 -0700772 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700773 }
774 break;
775 case NFULNL_CFG_CMD_UNBIND:
776 if (!inst) {
777 ret = -ENODEV;
Michal Miroslawf414c162007-03-23 11:11:31 -0700778 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700779 }
780
781 if (inst->peer_pid != NETLINK_CB(skb).pid) {
782 ret = -EPERM;
783 goto out_put;
784 }
785
786 instance_destroy(inst);
Michal Miroslaw9a36e8c2007-03-23 11:11:48 -0700787 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700788 case NFULNL_CFG_CMD_PF_BIND:
789 UDEBUG("registering log handler for pf=%u\n", pf);
790 ret = nf_log_register(pf, &nfulnl_logger);
791 break;
792 case NFULNL_CFG_CMD_PF_UNBIND:
793 UDEBUG("unregistering log handler for pf=%u\n", pf);
794 /* This is a bug and a feature. We cannot unregister
795 * other handlers, like nfnetlink_inst can */
796 nf_log_unregister_pf(pf);
797 break;
798 default:
799 ret = -EINVAL;
800 break;
801 }
Michal Miroslawdd167042007-03-04 15:59:20 -0800802
803 if (!inst)
804 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700805 } else {
806 if (!inst) {
807 UDEBUG("no config command, and no instance for "
808 "group=%u pid=%u =>ENOENT\n",
809 group_num, NETLINK_CB(skb).pid);
810 ret = -ENOENT;
Michal Miroslawf414c162007-03-23 11:11:31 -0700811 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700812 }
813
814 if (inst->peer_pid != NETLINK_CB(skb).pid) {
815 UDEBUG("no config command, and wrong pid\n");
816 ret = -EPERM;
817 goto out_put;
818 }
819 }
820
Patrick McHardydf6fb862007-09-28 14:37:03 -0700821 if (nfula[NFULA_CFG_MODE]) {
Harald Welte0597f262005-08-09 19:58:39 -0700822 struct nfulnl_msg_config_mode *params;
Patrick McHardydf6fb862007-09-28 14:37:03 -0700823 params = nla_data(nfula[NFULA_CFG_MODE]);
Harald Welte0597f262005-08-09 19:58:39 -0700824
825 nfulnl_set_mode(inst, params->copy_mode,
Al Virod1208b92006-11-03 00:58:41 -0800826 ntohl(params->copy_range));
Harald Welte0597f262005-08-09 19:58:39 -0700827 }
828
Patrick McHardydf6fb862007-09-28 14:37:03 -0700829 if (nfula[NFULA_CFG_TIMEOUT]) {
Al Viro98a4a862006-11-08 00:26:51 -0800830 __be32 timeout =
Patrick McHardydf6fb862007-09-28 14:37:03 -0700831 *(__be32 *)nla_data(nfula[NFULA_CFG_TIMEOUT]);
Harald Welte0597f262005-08-09 19:58:39 -0700832
833 nfulnl_set_timeout(inst, ntohl(timeout));
834 }
835
Patrick McHardydf6fb862007-09-28 14:37:03 -0700836 if (nfula[NFULA_CFG_NLBUFSIZ]) {
Al Viro98a4a862006-11-08 00:26:51 -0800837 __be32 nlbufsiz =
Patrick McHardydf6fb862007-09-28 14:37:03 -0700838 *(__be32 *)nla_data(nfula[NFULA_CFG_NLBUFSIZ]);
Harald Welte0597f262005-08-09 19:58:39 -0700839
840 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
841 }
842
Patrick McHardydf6fb862007-09-28 14:37:03 -0700843 if (nfula[NFULA_CFG_QTHRESH]) {
Al Viro7ac00a22006-11-03 00:58:17 -0800844 __be32 qthresh =
Patrick McHardydf6fb862007-09-28 14:37:03 -0700845 *(__be32 *)nla_data(nfula[NFULA_CFG_QTHRESH]);
Harald Welte0597f262005-08-09 19:58:39 -0700846
847 nfulnl_set_qthresh(inst, ntohl(qthresh));
848 }
849
Patrick McHardydf6fb862007-09-28 14:37:03 -0700850 if (nfula[NFULA_CFG_FLAGS]) {
Al Viro98a4a862006-11-08 00:26:51 -0800851 __be16 flags =
Patrick McHardydf6fb862007-09-28 14:37:03 -0700852 *(__be16 *)nla_data(nfula[NFULA_CFG_FLAGS]);
Patrick McHardyee433532006-05-19 02:17:18 -0700853 nfulnl_set_flags(inst, ntohs(flags));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800854 }
855
Harald Welte0597f262005-08-09 19:58:39 -0700856out_put:
857 instance_put(inst);
Michal Miroslawdd167042007-03-04 15:59:20 -0800858out:
Harald Welte0597f262005-08-09 19:58:39 -0700859 return ret;
860}
861
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700862static const struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
Harald Welte0597f262005-08-09 19:58:39 -0700863 [NFULNL_MSG_PACKET] = { .call = nfulnl_recv_unsupp,
Harald Welte37d2e7a2005-11-14 15:24:59 -0800864 .attr_count = NFULA_MAX, },
Harald Welte0597f262005-08-09 19:58:39 -0700865 [NFULNL_MSG_CONFIG] = { .call = nfulnl_recv_config,
Patrick McHardyfd8281a2007-09-28 14:39:09 -0700866 .attr_count = NFULA_CFG_MAX,
867 .policy = nfula_cfg_policy },
Harald Welte0597f262005-08-09 19:58:39 -0700868};
869
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700870static const struct nfnetlink_subsystem nfulnl_subsys = {
Harald Welte0597f262005-08-09 19:58:39 -0700871 .name = "log",
872 .subsys_id = NFNL_SUBSYS_ULOG,
873 .cb_count = NFULNL_MSG_MAX,
Harald Welte0597f262005-08-09 19:58:39 -0700874 .cb = nfulnl_cb,
875};
876
877#ifdef CONFIG_PROC_FS
878struct iter_state {
879 unsigned int bucket;
880};
881
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700882static struct hlist_node *get_first(struct iter_state *st)
Harald Welte0597f262005-08-09 19:58:39 -0700883{
Harald Welte0597f262005-08-09 19:58:39 -0700884 if (!st)
885 return NULL;
886
887 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
888 if (!hlist_empty(&instance_table[st->bucket]))
889 return instance_table[st->bucket].first;
890 }
891 return NULL;
892}
893
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700894static struct hlist_node *get_next(struct iter_state *st, struct hlist_node *h)
Harald Welte0597f262005-08-09 19:58:39 -0700895{
Harald Welte0597f262005-08-09 19:58:39 -0700896 h = h->next;
897 while (!h) {
898 if (++st->bucket >= INSTANCE_BUCKETS)
899 return NULL;
900
901 h = instance_table[st->bucket].first;
902 }
903 return h;
904}
905
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700906static struct hlist_node *get_idx(struct iter_state *st, loff_t pos)
Harald Welte0597f262005-08-09 19:58:39 -0700907{
908 struct hlist_node *head;
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700909 head = get_first(st);
Harald Welte0597f262005-08-09 19:58:39 -0700910
911 if (head)
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700912 while (pos && (head = get_next(st, head)))
Harald Welte0597f262005-08-09 19:58:39 -0700913 pos--;
914 return pos ? NULL : head;
915}
916
917static void *seq_start(struct seq_file *seq, loff_t *pos)
918{
919 read_lock_bh(&instances_lock);
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700920 return get_idx(seq->private, *pos);
Harald Welte0597f262005-08-09 19:58:39 -0700921}
922
923static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
924{
925 (*pos)++;
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700926 return get_next(s->private, v);
Harald Welte0597f262005-08-09 19:58:39 -0700927}
928
929static void seq_stop(struct seq_file *s, void *v)
930{
931 read_unlock_bh(&instances_lock);
932}
933
934static int seq_show(struct seq_file *s, void *v)
935{
936 const struct nfulnl_instance *inst = v;
937
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800938 return seq_printf(s, "%5d %6d %5d %1d %5d %6d %2d\n",
Harald Welte0597f262005-08-09 19:58:39 -0700939 inst->group_num,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800940 inst->peer_pid, inst->qlen,
Harald Welte0597f262005-08-09 19:58:39 -0700941 inst->copy_mode, inst->copy_range,
942 inst->flushtimeout, atomic_read(&inst->use));
943}
944
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700945static const struct seq_operations nful_seq_ops = {
Harald Welte0597f262005-08-09 19:58:39 -0700946 .start = seq_start,
947 .next = seq_next,
948 .stop = seq_stop,
949 .show = seq_show,
950};
951
952static int nful_open(struct inode *inode, struct file *file)
953{
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700954 return seq_open_private(file, &nful_seq_ops,
955 sizeof(struct iter_state));
Harald Welte0597f262005-08-09 19:58:39 -0700956}
957
Arjan van de Venda7071d2007-02-12 00:55:36 -0800958static const struct file_operations nful_file_ops = {
Harald Welte0597f262005-08-09 19:58:39 -0700959 .owner = THIS_MODULE,
960 .open = nful_open,
961 .read = seq_read,
962 .llseek = seq_lseek,
963 .release = seq_release_private,
964};
965
966#endif /* PROC_FS */
967
Patrick McHardy32292a72006-04-06 14:11:30 -0700968static int __init nfnetlink_log_init(void)
Harald Welte0597f262005-08-09 19:58:39 -0700969{
970 int i, status = -ENOMEM;
971#ifdef CONFIG_PROC_FS
972 struct proc_dir_entry *proc_nful;
973#endif
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800974
Harald Welte0597f262005-08-09 19:58:39 -0700975 for (i = 0; i < INSTANCE_BUCKETS; i++)
976 INIT_HLIST_HEAD(&instance_table[i]);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800977
Harald Welte0597f262005-08-09 19:58:39 -0700978 /* it's not really all that important to have a random value, so
979 * we can do this from the init function, even if there hasn't
980 * been that much entropy yet */
981 get_random_bytes(&hash_init, sizeof(hash_init));
982
983 netlink_register_notifier(&nfulnl_rtnl_notifier);
984 status = nfnetlink_subsys_register(&nfulnl_subsys);
985 if (status < 0) {
986 printk(KERN_ERR "log: failed to create netlink socket\n");
987 goto cleanup_netlink_notifier;
988 }
989
990#ifdef CONFIG_PROC_FS
991 proc_nful = create_proc_entry("nfnetlink_log", 0440,
992 proc_net_netfilter);
993 if (!proc_nful)
994 goto cleanup_subsys;
995 proc_nful->proc_fops = &nful_file_ops;
996#endif
Harald Welte0597f262005-08-09 19:58:39 -0700997 return status;
998
Harald Welte0597f262005-08-09 19:58:39 -0700999#ifdef CONFIG_PROC_FS
Harald Welte0597f262005-08-09 19:58:39 -07001000cleanup_subsys:
Harald Welte0597f262005-08-09 19:58:39 -07001001 nfnetlink_subsys_unregister(&nfulnl_subsys);
Patrick McHardy32292a72006-04-06 14:11:30 -07001002#endif
Harald Welte0597f262005-08-09 19:58:39 -07001003cleanup_netlink_notifier:
1004 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1005 return status;
1006}
1007
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001008static void __exit nfnetlink_log_fini(void)
Harald Welte0597f262005-08-09 19:58:39 -07001009{
Patrick McHardye92ad992007-02-12 11:11:55 -08001010 nf_log_unregister(&nfulnl_logger);
Patrick McHardy32292a72006-04-06 14:11:30 -07001011#ifdef CONFIG_PROC_FS
1012 remove_proc_entry("nfnetlink_log", proc_net_netfilter);
1013#endif
1014 nfnetlink_subsys_unregister(&nfulnl_subsys);
1015 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
Harald Welte0597f262005-08-09 19:58:39 -07001016}
1017
1018MODULE_DESCRIPTION("netfilter userspace logging");
1019MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1020MODULE_LICENSE("GPL");
Harald Weltef682fae2005-08-09 20:20:34 -07001021MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
Harald Welte0597f262005-08-09 19:58:39 -07001022
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001023module_init(nfnetlink_log_init);
1024module_exit(nfnetlink_log_fini);