blob: 446e0f467a17eed968b7a9cba12b001b05de1154 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * netfilter module for userspace packet logging daemons
3 *
4 * (C) 2000-2004 by Harald Welte <laforge@netfilter.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * (C) 1999-2001 Paul `Rusty' Russell
6 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090012 * This module accepts two parameters:
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * nlbufsiz:
15 * The parameter specifies how big the buffer for each netlink multicast
16 * group is. e.g. If you say nlbufsiz=8192, up to eight kb of packets will
17 * get accumulated in the kernel until they are sent to userspace. It is
18 * NOT possible to allocate more than 128kB, and it is strongly discouraged,
19 * because atomically allocating 128kB inside the network rx softirq is not
20 * reliable. Please also keep in mind that this buffer size is allocated for
21 * each nlgroup you are using, so the total kernel memory usage increases
22 * by that factor.
23 *
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080024 * Actually you should use nlbufsiz a bit smaller than PAGE_SIZE, since
25 * nlbufsiz is used with alloc_skb, which adds another
26 * sizeof(struct skb_shared_info). Use NLMSG_GOODSIZE instead.
27 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * flushtimeout:
29 * Specify, after how many hundredths of a second the queue should be
30 * flushed even if it is not full yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 */
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010032#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/spinlock.h>
35#include <linux/socket.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/skbuff.h>
38#include <linux/kernel.h>
39#include <linux/timer.h>
40#include <linux/netlink.h>
41#include <linux/netdevice.h>
42#include <linux/mm.h>
43#include <linux/moduleparam.h>
44#include <linux/netfilter.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080045#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/netfilter_ipv4/ipt_ULOG.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080047#include <net/netfilter/nf_log.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <net/sock.h>
49#include <linux/bitops.h>
Patrick McHardy01102e72007-04-12 14:27:03 -070050#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52MODULE_LICENSE("GPL");
53MODULE_AUTHOR("Harald Welte <laforge@gnumonks.org>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080054MODULE_DESCRIPTION("Xtables: packet logging to netlink using ULOG");
Harald Welte4fdb3bb2005-08-09 19:40:55 -070055MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NFLOG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#define ULOG_NL_EVENT 111 /* Harald's favorite number */
58#define ULOG_MAXNLGROUPS 32 /* numer of nlgroups */
59
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080060static unsigned int nlbufsiz = NLMSG_GOODSIZE;
Patrick McHardye7be6992006-01-05 12:19:46 -080061module_param(nlbufsiz, uint, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062MODULE_PARM_DESC(nlbufsiz, "netlink buffer size");
63
64static unsigned int flushtimeout = 10;
Patrick McHardye7be6992006-01-05 12:19:46 -080065module_param(flushtimeout, uint, 0600);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066MODULE_PARM_DESC(flushtimeout, "buffer flush timeout (hundredths of a second)");
67
Patrick McHardye7be6992006-01-05 12:19:46 -080068static int nflog = 1;
69module_param(nflog, bool, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070MODULE_PARM_DESC(nflog, "register as internal netfilter logging module");
71
72/* global data structures */
73
74typedef struct {
75 unsigned int qlen; /* number of nlmsgs' in the skb */
76 struct nlmsghdr *lastnlh; /* netlink header of last msg in skb */
77 struct sk_buff *skb; /* the pre-allocated skb */
78 struct timer_list timer; /* the timer function */
79} ulog_buff_t;
80
81static ulog_buff_t ulog_buffers[ULOG_MAXNLGROUPS]; /* array of buffers */
82
Patrick McHardye45b1be2005-06-21 14:01:30 -070083static struct sock *nflognl; /* our socket */
84static DEFINE_SPINLOCK(ulog_lock); /* spinlock */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86/* send one ulog_buff_t to userspace */
87static void ulog_send(unsigned int nlgroupnum)
88{
89 ulog_buff_t *ub = &ulog_buffers[nlgroupnum];
90
91 if (timer_pending(&ub->timer)) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010092 pr_debug("ulog_send: timer was pending, deleting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 del_timer(&ub->timer);
94 }
95
Mark Huangdcb7cd92006-08-13 18:57:54 -070096 if (!ub->skb) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010097 pr_debug("ulog_send: nothing to send\n");
Mark Huangdcb7cd92006-08-13 18:57:54 -070098 return;
99 }
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 /* last nlmsg needs NLMSG_DONE */
102 if (ub->qlen > 1)
103 ub->lastnlh->nlmsg_type = NLMSG_DONE;
104
Patrick McHardyac6d4392005-08-14 19:29:52 -0700105 NETLINK_CB(ub->skb).dst_group = nlgroupnum + 1;
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100106 pr_debug("throwing %d packets to netlink group %u\n",
Patrick McHardy0d537782007-07-07 22:39:38 -0700107 ub->qlen, nlgroupnum + 1);
Patrick McHardyac6d4392005-08-14 19:29:52 -0700108 netlink_broadcast(nflognl, ub->skb, 0, nlgroupnum + 1, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 ub->qlen = 0;
111 ub->skb = NULL;
112 ub->lastnlh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115
116/* timer function to flush queue in flushtimeout time */
117static void ulog_timer(unsigned long data)
118{
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100119 pr_debug("timer function called, calling ulog_send\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 /* lock to protect against somebody modifying our structure
122 * from ipt_ulog_target at the same time */
Patrick McHardye45b1be2005-06-21 14:01:30 -0700123 spin_lock_bh(&ulog_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 ulog_send(data);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700125 spin_unlock_bh(&ulog_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
128static struct sk_buff *ulog_alloc_skb(unsigned int size)
129{
130 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800131 unsigned int n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 /* alloc skb which should be big enough for a whole
134 * multipart message. WARNING: has to be <= 131000
135 * due to slab allocator restrictions */
136
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800137 n = max(size, nlbufsiz);
138 skb = alloc_skb(n, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (!skb) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100140 pr_debug("cannot alloc whole buffer %ub!\n", n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800142 if (n > size) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900143 /* try to allocate only as much as we need for
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800144 * current packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800146 skb = alloc_skb(size, GFP_ATOMIC);
147 if (!skb)
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100148 pr_debug("cannot even allocate %ub\n", size);
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151
152 return skb;
153}
154
155static void ipt_ulog_packet(unsigned int hooknum,
156 const struct sk_buff *skb,
157 const struct net_device *in,
158 const struct net_device *out,
159 const struct ipt_ulog_info *loginfo,
160 const char *prefix)
161{
162 ulog_buff_t *ub;
163 ulog_packet_msg_t *pm;
164 size_t size, copy_len;
165 struct nlmsghdr *nlh;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700166 struct timeval tv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 /* ffs == find first bit set, necessary because userspace
169 * is already shifting groupnumber, but we need unshifted.
170 * ffs() returns [1..32], we need [0..31] */
171 unsigned int groupnum = ffs(loginfo->nl_group) - 1;
172
173 /* calculate the size of the skb needed */
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700174 if (loginfo->copy_range == 0 || loginfo->copy_range > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 copy_len = skb->len;
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700176 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 copy_len = loginfo->copy_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 size = NLMSG_SPACE(sizeof(*pm) + copy_len);
180
181 ub = &ulog_buffers[groupnum];
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900182
Patrick McHardye45b1be2005-06-21 14:01:30 -0700183 spin_lock_bh(&ulog_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 if (!ub->skb) {
186 if (!(ub->skb = ulog_alloc_skb(size)))
187 goto alloc_failure;
188 } else if (ub->qlen >= loginfo->qthreshold ||
189 size > skb_tailroom(ub->skb)) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900190 /* either the queue len is too high or we don't have
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * enough room in nlskb left. send it to userspace. */
192
193 ulog_send(groupnum);
194
195 if (!(ub->skb = ulog_alloc_skb(size)))
196 goto alloc_failure;
197 }
198
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100199 pr_debug("qlen %d, qthreshold %Zu\n", ub->qlen, loginfo->qthreshold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 /* NLMSG_PUT contains a hidden goto nlmsg_failure !!! */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900202 nlh = NLMSG_PUT(ub->skb, 0, ub->qlen, ULOG_NL_EVENT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 sizeof(*pm)+copy_len);
204 ub->qlen++;
205
206 pm = NLMSG_DATA(nlh);
207
208 /* We might not have a timestamp, get one */
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700209 if (skb->tstamp.tv64 == 0)
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700210 __net_timestamp((struct sk_buff *)skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 /* copy hook, prefix, timestamp, payload, etc. */
213 pm->data_len = copy_len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700214 tv = ktime_to_timeval(skb->tstamp);
215 put_unaligned(tv.tv_sec, &pm->timestamp_sec);
216 put_unaligned(tv.tv_usec, &pm->timestamp_usec);
Patrick McHardy01102e72007-04-12 14:27:03 -0700217 put_unaligned(skb->mark, &pm->mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 pm->hook = hooknum;
219 if (prefix != NULL)
220 strncpy(pm->prefix, prefix, sizeof(pm->prefix));
221 else if (loginfo->prefix[0] != '\0')
222 strncpy(pm->prefix, loginfo->prefix, sizeof(pm->prefix));
223 else
224 *(pm->prefix) = '\0';
225
Joe Perches3666ed12009-11-23 23:17:06 +0100226 if (in && in->hard_header_len > 0 &&
227 skb->mac_header != skb->network_header &&
228 in->hard_header_len <= ULOG_MAC_LEN) {
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700229 memcpy(pm->mac, skb_mac_header(skb), in->hard_header_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 pm->mac_len = in->hard_header_len;
231 } else
232 pm->mac_len = 0;
233
234 if (in)
235 strncpy(pm->indev_name, in->name, sizeof(pm->indev_name));
236 else
237 pm->indev_name[0] = '\0';
238
239 if (out)
240 strncpy(pm->outdev_name, out->name, sizeof(pm->outdev_name));
241 else
242 pm->outdev_name[0] = '\0';
243
244 /* copy_len <= skb->len, so can't fail. */
245 if (skb_copy_bits(skb, 0, pm->payload, copy_len) < 0)
246 BUG();
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 /* check if we are building multi-part messages */
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700249 if (ub->qlen > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 ub->lastnlh->nlmsg_flags |= NLM_F_MULTI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 ub->lastnlh = nlh;
253
254 /* if timer isn't already running, start it */
255 if (!timer_pending(&ub->timer)) {
256 ub->timer.expires = jiffies + flushtimeout * HZ / 100;
257 add_timer(&ub->timer);
258 }
259
260 /* if threshold is reached, send message to userspace */
261 if (ub->qlen >= loginfo->qthreshold) {
262 if (loginfo->qthreshold > 1)
263 nlh->nlmsg_type = NLMSG_DONE;
264 ulog_send(groupnum);
265 }
266
Patrick McHardye45b1be2005-06-21 14:01:30 -0700267 spin_unlock_bh(&ulog_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 return;
270
271nlmsg_failure:
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100272 pr_debug("error during NLMSG_PUT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273alloc_failure:
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100274 pr_debug("Error building netlink message\n");
Patrick McHardye45b1be2005-06-21 14:01:30 -0700275 spin_unlock_bh(&ulog_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800278static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200279ulog_tg(struct sk_buff *skb, const struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200281 ipt_ulog_packet(par->hooknum, skb, par->in, par->out,
282 par->targinfo, NULL);
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800283 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900285
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200286static void ipt_logfn(u_int8_t pf,
Harald Welte608c8e42005-08-09 19:58:27 -0700287 unsigned int hooknum,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 const struct sk_buff *skb,
289 const struct net_device *in,
290 const struct net_device *out,
Harald Welte608c8e42005-08-09 19:58:27 -0700291 const struct nf_loginfo *li,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 const char *prefix)
293{
Harald Welte608c8e42005-08-09 19:58:27 -0700294 struct ipt_ulog_info loginfo;
295
296 if (!li || li->type != NF_LOG_TYPE_ULOG) {
297 loginfo.nl_group = ULOG_DEFAULT_NLGROUP;
298 loginfo.copy_range = 0;
299 loginfo.qthreshold = ULOG_DEFAULT_QTHRESHOLD;
300 loginfo.prefix[0] = '\0';
301 } else {
302 loginfo.nl_group = li->u.ulog.group;
303 loginfo.copy_range = li->u.ulog.copy_len;
304 loginfo.qthreshold = li->u.ulog.qthreshold;
305 strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix));
306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 ipt_ulog_packet(hooknum, skb, in, out, &loginfo, prefix);
309}
310
Jan Engelhardt135367b2010-03-19 17:16:42 +0100311static int ulog_tg_check(const struct xt_tgchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200313 const struct ipt_ulog_info *loginfo = par->targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (loginfo->prefix[sizeof(loginfo->prefix) - 1] != '\0') {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100316 pr_debug("prefix not null-terminated\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100317 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (loginfo->qthreshold > ULOG_MAX_QLEN) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100320 pr_debug("queue threshold %Zu > MAX_QLEN\n",
Patrick McHardy0d537782007-07-07 22:39:38 -0700321 loginfo->qthreshold);
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100322 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100324 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Patrick McHardyb076deb2007-04-12 22:17:05 -0700327#ifdef CONFIG_COMPAT
328struct compat_ipt_ulog_info {
329 compat_uint_t nl_group;
330 compat_size_t copy_range;
331 compat_size_t qthreshold;
332 char prefix[ULOG_PREFIX_LEN];
333};
334
Jan Engelhardt739674f2009-06-26 08:23:19 +0200335static void ulog_tg_compat_from_user(void *dst, const void *src)
Patrick McHardyb076deb2007-04-12 22:17:05 -0700336{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700337 const struct compat_ipt_ulog_info *cl = src;
Patrick McHardyb076deb2007-04-12 22:17:05 -0700338 struct ipt_ulog_info l = {
339 .nl_group = cl->nl_group,
340 .copy_range = cl->copy_range,
341 .qthreshold = cl->qthreshold,
342 };
343
344 memcpy(l.prefix, cl->prefix, sizeof(l.prefix));
345 memcpy(dst, &l, sizeof(l));
346}
347
Jan Engelhardt739674f2009-06-26 08:23:19 +0200348static int ulog_tg_compat_to_user(void __user *dst, const void *src)
Patrick McHardyb076deb2007-04-12 22:17:05 -0700349{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700350 const struct ipt_ulog_info *l = src;
Patrick McHardyb076deb2007-04-12 22:17:05 -0700351 struct compat_ipt_ulog_info cl = {
352 .nl_group = l->nl_group,
353 .copy_range = l->copy_range,
354 .qthreshold = l->qthreshold,
355 };
356
357 memcpy(cl.prefix, l->prefix, sizeof(cl.prefix));
358 return copy_to_user(dst, &cl, sizeof(cl)) ? -EFAULT : 0;
359}
360#endif /* CONFIG_COMPAT */
361
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800362static struct xt_target ulog_tg_reg __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 .name = "ULOG",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200364 .family = NFPROTO_IPV4,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800365 .target = ulog_tg,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800366 .targetsize = sizeof(struct ipt_ulog_info),
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800367 .checkentry = ulog_tg_check,
Patrick McHardyb076deb2007-04-12 22:17:05 -0700368#ifdef CONFIG_COMPAT
369 .compatsize = sizeof(struct compat_ipt_ulog_info),
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800370 .compat_from_user = ulog_tg_compat_from_user,
371 .compat_to_user = ulog_tg_compat_to_user,
Patrick McHardyb076deb2007-04-12 22:17:05 -0700372#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 .me = THIS_MODULE,
374};
375
Eric Leblondca735b32009-03-16 14:54:21 +0100376static struct nf_logger ipt_ulog_logger __read_mostly = {
Harald Welte608c8e42005-08-09 19:58:27 -0700377 .name = "ipt_ULOG",
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800378 .logfn = ipt_logfn,
Harald Welte608c8e42005-08-09 19:58:27 -0700379 .me = THIS_MODULE,
380};
381
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800382static int __init ulog_tg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Jan Engelhardte1fd0582007-02-07 15:10:34 -0800384 int ret, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100386 pr_debug("init module\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Patrick McHardye7be6992006-01-05 12:19:46 -0800388 if (nlbufsiz > 128*1024) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100389 pr_warning("Netlink buffer has to be <= 128kB\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return -EINVAL;
391 }
392
393 /* initialize ulog_buffers */
Patrick McHardye6f689d2007-03-23 11:16:30 -0700394 for (i = 0; i < ULOG_MAXNLGROUPS; i++)
395 setup_timer(&ulog_buffers[i].timer, ulog_timer, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200397 nflognl = netlink_kernel_create(&init_net,
398 NETLINK_NFLOG, ULOG_MAXNLGROUPS, NULL,
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700399 NULL, THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (!nflognl)
401 return -ENOMEM;
402
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800403 ret = xt_register_target(&ulog_tg_reg);
Jan Engelhardte1fd0582007-02-07 15:10:34 -0800404 if (ret < 0) {
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -0800405 netlink_kernel_release(nflognl);
Jan Engelhardte1fd0582007-02-07 15:10:34 -0800406 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408 if (nflog)
Jan Engelhardtee999d82008-10-08 11:35:01 +0200409 nf_log_register(NFPROTO_IPV4, &ipt_ulog_logger);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return 0;
412}
413
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800414static void __exit ulog_tg_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 ulog_buff_t *ub;
417 int i;
418
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100419 pr_debug("cleanup_module\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 if (nflog)
Patrick McHardye92ad992007-02-12 11:11:55 -0800422 nf_log_unregister(&ipt_ulog_logger);
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800423 xt_unregister_target(&ulog_tg_reg);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -0800424 netlink_kernel_release(nflognl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 /* remove pending timers and free allocated skb's */
427 for (i = 0; i < ULOG_MAXNLGROUPS; i++) {
428 ub = &ulog_buffers[i];
429 if (timer_pending(&ub->timer)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700430 pr_debug("timer was pending, deleting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 del_timer(&ub->timer);
432 }
433
434 if (ub->skb) {
435 kfree_skb(ub->skb);
436 ub->skb = NULL;
437 }
438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800441module_init(ulog_tg_init);
442module_exit(ulog_tg_exit);