[NETFILTER]: Fix undersized skb allocation in ipt_ULOG/ebt_ulog/nfnetlink_log
[deliverable/linux.git] / net / ipv4 / netfilter / ipt_ULOG.c
CommitLineData
1da177e4
LT
1/*
2 * netfilter module for userspace packet logging daemons
3 *
4 * (C) 2000-2004 by Harald Welte <laforge@netfilter.org>
5 *
6 * 2000/09/22 ulog-cprange feature added
7 * 2001/01/04 in-kernel queue as proposed by Sebastian Zander
8 * <zander@fokus.gmd.de>
9 * 2001/01/30 per-rule nlgroup conflicts with global queue.
10 * nlgroup now global (sysctl)
11 * 2001/04/19 ulog-queue reworked, now fixed buffer size specified at
12 * module loadtime -HW
13 * 2002/07/07 remove broken nflog_rcv() function -HW
14 * 2002/08/29 fix shifted/unshifted nlgroup bug -HW
15 * 2002/10/30 fix uninitialized mac_len field - <Anders K. Pedersen>
16 * 2004/10/25 fix erroneous calculation of 'len' parameter to NLMSG_PUT
17 * resulting in bogus 'error during NLMSG_PUT' messages.
18 *
19 * (C) 1999-2001 Paul `Rusty' Russell
20 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
21 *
22 * This program is free software; you can redistribute it and/or modify
23 * it under the terms of the GNU General Public License version 2 as
24 * published by the Free Software Foundation.
25 *
26 * This module accepts two parameters:
27 *
28 * nlbufsiz:
29 * The parameter specifies how big the buffer for each netlink multicast
30 * group is. e.g. If you say nlbufsiz=8192, up to eight kb of packets will
31 * get accumulated in the kernel until they are sent to userspace. It is
32 * NOT possible to allocate more than 128kB, and it is strongly discouraged,
33 * because atomically allocating 128kB inside the network rx softirq is not
34 * reliable. Please also keep in mind that this buffer size is allocated for
35 * each nlgroup you are using, so the total kernel memory usage increases
36 * by that factor.
37 *
c2db2924
HE
38 * Actually you should use nlbufsiz a bit smaller than PAGE_SIZE, since
39 * nlbufsiz is used with alloc_skb, which adds another
40 * sizeof(struct skb_shared_info). Use NLMSG_GOODSIZE instead.
41 *
1da177e4
LT
42 * flushtimeout:
43 * Specify, after how many hundredths of a second the queue should be
44 * flushed even if it is not full yet.
45 *
46 * ipt_ULOG.c,v 1.22 2002/10/30 09:07:31 laforge Exp
47 */
48
49#include <linux/module.h>
50#include <linux/config.h>
51#include <linux/spinlock.h>
52#include <linux/socket.h>
53#include <linux/skbuff.h>
54#include <linux/kernel.h>
55#include <linux/timer.h>
56#include <linux/netlink.h>
57#include <linux/netdevice.h>
58#include <linux/mm.h>
59#include <linux/moduleparam.h>
60#include <linux/netfilter.h>
61#include <linux/netfilter_ipv4/ip_tables.h>
62#include <linux/netfilter_ipv4/ipt_ULOG.h>
1da177e4
LT
63#include <net/sock.h>
64#include <linux/bitops.h>
65
66MODULE_LICENSE("GPL");
67MODULE_AUTHOR("Harald Welte <laforge@gnumonks.org>");
68MODULE_DESCRIPTION("iptables userspace logging module");
4fdb3bb7 69MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NFLOG);
1da177e4
LT
70
71#define ULOG_NL_EVENT 111 /* Harald's favorite number */
72#define ULOG_MAXNLGROUPS 32 /* numer of nlgroups */
73
74#if 0
75#define DEBUGP(format, args...) printk("%s:%s:" format, \
76 __FILE__, __FUNCTION__ , ## args)
77#else
78#define DEBUGP(format, args...)
79#endif
80
81#define PRINTR(format, args...) do { if (net_ratelimit()) printk(format , ## args); } while (0)
82
c2db2924 83static unsigned int nlbufsiz = NLMSG_GOODSIZE;
e7be6994 84module_param(nlbufsiz, uint, 0400);
1da177e4
LT
85MODULE_PARM_DESC(nlbufsiz, "netlink buffer size");
86
87static unsigned int flushtimeout = 10;
e7be6994 88module_param(flushtimeout, uint, 0600);
1da177e4
LT
89MODULE_PARM_DESC(flushtimeout, "buffer flush timeout (hundredths of a second)");
90
e7be6994
PM
91static int nflog = 1;
92module_param(nflog, bool, 0400);
1da177e4
LT
93MODULE_PARM_DESC(nflog, "register as internal netfilter logging module");
94
95/* global data structures */
96
97typedef struct {
98 unsigned int qlen; /* number of nlmsgs' in the skb */
99 struct nlmsghdr *lastnlh; /* netlink header of last msg in skb */
100 struct sk_buff *skb; /* the pre-allocated skb */
101 struct timer_list timer; /* the timer function */
102} ulog_buff_t;
103
104static ulog_buff_t ulog_buffers[ULOG_MAXNLGROUPS]; /* array of buffers */
105
e45b1be8
PM
106static struct sock *nflognl; /* our socket */
107static DEFINE_SPINLOCK(ulog_lock); /* spinlock */
1da177e4
LT
108
109/* send one ulog_buff_t to userspace */
110static void ulog_send(unsigned int nlgroupnum)
111{
112 ulog_buff_t *ub = &ulog_buffers[nlgroupnum];
113
114 if (timer_pending(&ub->timer)) {
115 DEBUGP("ipt_ULOG: ulog_send: timer was pending, deleting\n");
116 del_timer(&ub->timer);
117 }
118
119 /* last nlmsg needs NLMSG_DONE */
120 if (ub->qlen > 1)
121 ub->lastnlh->nlmsg_type = NLMSG_DONE;
122
ac6d439d
PM
123 NETLINK_CB(ub->skb).dst_group = nlgroupnum + 1;
124 DEBUGP("ipt_ULOG: throwing %d packets to netlink group %u\n",
125 ub->qlen, nlgroupnum + 1);
126 netlink_broadcast(nflognl, ub->skb, 0, nlgroupnum + 1, GFP_ATOMIC);
1da177e4
LT
127
128 ub->qlen = 0;
129 ub->skb = NULL;
130 ub->lastnlh = NULL;
131
132}
133
134
135/* timer function to flush queue in flushtimeout time */
136static void ulog_timer(unsigned long data)
137{
138 DEBUGP("ipt_ULOG: timer function called, calling ulog_send\n");
139
140 /* lock to protect against somebody modifying our structure
141 * from ipt_ulog_target at the same time */
e45b1be8 142 spin_lock_bh(&ulog_lock);
1da177e4 143 ulog_send(data);
e45b1be8 144 spin_unlock_bh(&ulog_lock);
1da177e4
LT
145}
146
147static struct sk_buff *ulog_alloc_skb(unsigned int size)
148{
149 struct sk_buff *skb;
ad2ad0f9 150 unsigned int n;
1da177e4
LT
151
152 /* alloc skb which should be big enough for a whole
153 * multipart message. WARNING: has to be <= 131000
154 * due to slab allocator restrictions */
155
ad2ad0f9
PM
156 n = max(size, nlbufsiz);
157 skb = alloc_skb(n, GFP_ATOMIC);
1da177e4 158 if (!skb) {
ad2ad0f9 159 PRINTR("ipt_ULOG: can't alloc whole buffer %ub!\n", n);
1da177e4 160
ad2ad0f9
PM
161 if (n > size) {
162 /* try to allocate only as much as we need for
163 * current packet */
1da177e4 164
ad2ad0f9
PM
165 skb = alloc_skb(size, GFP_ATOMIC);
166 if (!skb)
167 PRINTR("ipt_ULOG: can't even allocate %ub\n",
168 size);
169 }
1da177e4
LT
170 }
171
172 return skb;
173}
174
175static void ipt_ulog_packet(unsigned int hooknum,
176 const struct sk_buff *skb,
177 const struct net_device *in,
178 const struct net_device *out,
179 const struct ipt_ulog_info *loginfo,
180 const char *prefix)
181{
182 ulog_buff_t *ub;
183 ulog_packet_msg_t *pm;
184 size_t size, copy_len;
185 struct nlmsghdr *nlh;
186
187 /* ffs == find first bit set, necessary because userspace
188 * is already shifting groupnumber, but we need unshifted.
189 * ffs() returns [1..32], we need [0..31] */
190 unsigned int groupnum = ffs(loginfo->nl_group) - 1;
191
192 /* calculate the size of the skb needed */
193 if ((loginfo->copy_range == 0) ||
194 (loginfo->copy_range > skb->len)) {
195 copy_len = skb->len;
196 } else {
197 copy_len = loginfo->copy_range;
198 }
199
200 size = NLMSG_SPACE(sizeof(*pm) + copy_len);
201
202 ub = &ulog_buffers[groupnum];
203
e45b1be8 204 spin_lock_bh(&ulog_lock);
1da177e4
LT
205
206 if (!ub->skb) {
207 if (!(ub->skb = ulog_alloc_skb(size)))
208 goto alloc_failure;
209 } else if (ub->qlen >= loginfo->qthreshold ||
210 size > skb_tailroom(ub->skb)) {
211 /* either the queue len is too high or we don't have
212 * enough room in nlskb left. send it to userspace. */
213
214 ulog_send(groupnum);
215
216 if (!(ub->skb = ulog_alloc_skb(size)))
217 goto alloc_failure;
218 }
219
220 DEBUGP("ipt_ULOG: qlen %d, qthreshold %d\n", ub->qlen,
221 loginfo->qthreshold);
222
223 /* NLMSG_PUT contains a hidden goto nlmsg_failure !!! */
224 nlh = NLMSG_PUT(ub->skb, 0, ub->qlen, ULOG_NL_EVENT,
225 sizeof(*pm)+copy_len);
226 ub->qlen++;
227
228 pm = NLMSG_DATA(nlh);
229
230 /* We might not have a timestamp, get one */
a61bbcf2
PM
231 if (skb->tstamp.off_sec == 0)
232 __net_timestamp((struct sk_buff *)skb);
1da177e4
LT
233
234 /* copy hook, prefix, timestamp, payload, etc. */
235 pm->data_len = copy_len;
325ed823
HX
236 pm->timestamp_sec = skb->tstamp.off_sec;
237 pm->timestamp_usec = skb->tstamp.off_usec;
1da177e4
LT
238 pm->mark = skb->nfmark;
239 pm->hook = hooknum;
240 if (prefix != NULL)
241 strncpy(pm->prefix, prefix, sizeof(pm->prefix));
242 else if (loginfo->prefix[0] != '\0')
243 strncpy(pm->prefix, loginfo->prefix, sizeof(pm->prefix));
244 else
245 *(pm->prefix) = '\0';
246
247 if (in && in->hard_header_len > 0
248 && skb->mac.raw != (void *) skb->nh.iph
249 && in->hard_header_len <= ULOG_MAC_LEN) {
250 memcpy(pm->mac, skb->mac.raw, in->hard_header_len);
251 pm->mac_len = in->hard_header_len;
252 } else
253 pm->mac_len = 0;
254
255 if (in)
256 strncpy(pm->indev_name, in->name, sizeof(pm->indev_name));
257 else
258 pm->indev_name[0] = '\0';
259
260 if (out)
261 strncpy(pm->outdev_name, out->name, sizeof(pm->outdev_name));
262 else
263 pm->outdev_name[0] = '\0';
264
265 /* copy_len <= skb->len, so can't fail. */
266 if (skb_copy_bits(skb, 0, pm->payload, copy_len) < 0)
267 BUG();
268
269 /* check if we are building multi-part messages */
270 if (ub->qlen > 1) {
271 ub->lastnlh->nlmsg_flags |= NLM_F_MULTI;
272 }
273
274 ub->lastnlh = nlh;
275
276 /* if timer isn't already running, start it */
277 if (!timer_pending(&ub->timer)) {
278 ub->timer.expires = jiffies + flushtimeout * HZ / 100;
279 add_timer(&ub->timer);
280 }
281
282 /* if threshold is reached, send message to userspace */
283 if (ub->qlen >= loginfo->qthreshold) {
284 if (loginfo->qthreshold > 1)
285 nlh->nlmsg_type = NLMSG_DONE;
286 ulog_send(groupnum);
287 }
288
e45b1be8 289 spin_unlock_bh(&ulog_lock);
1da177e4
LT
290
291 return;
292
293nlmsg_failure:
294 PRINTR("ipt_ULOG: error during NLMSG_PUT\n");
295
296alloc_failure:
297 PRINTR("ipt_ULOG: Error building netlink message\n");
298
e45b1be8 299 spin_unlock_bh(&ulog_lock);
1da177e4
LT
300}
301
302static unsigned int ipt_ulog_target(struct sk_buff **pskb,
303 const struct net_device *in,
304 const struct net_device *out,
305 unsigned int hooknum,
306 const void *targinfo, void *userinfo)
307{
308 struct ipt_ulog_info *loginfo = (struct ipt_ulog_info *) targinfo;
309
310 ipt_ulog_packet(hooknum, *pskb, in, out, loginfo, NULL);
311
312 return IPT_CONTINUE;
313}
314
608c8e4f
HW
315static void ipt_logfn(unsigned int pf,
316 unsigned int hooknum,
1da177e4
LT
317 const struct sk_buff *skb,
318 const struct net_device *in,
319 const struct net_device *out,
608c8e4f 320 const struct nf_loginfo *li,
1da177e4
LT
321 const char *prefix)
322{
608c8e4f
HW
323 struct ipt_ulog_info loginfo;
324
325 if (!li || li->type != NF_LOG_TYPE_ULOG) {
326 loginfo.nl_group = ULOG_DEFAULT_NLGROUP;
327 loginfo.copy_range = 0;
328 loginfo.qthreshold = ULOG_DEFAULT_QTHRESHOLD;
329 loginfo.prefix[0] = '\0';
330 } else {
331 loginfo.nl_group = li->u.ulog.group;
332 loginfo.copy_range = li->u.ulog.copy_len;
333 loginfo.qthreshold = li->u.ulog.qthreshold;
334 strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix));
335 }
1da177e4
LT
336
337 ipt_ulog_packet(hooknum, skb, in, out, &loginfo, prefix);
338}
339
340static int ipt_ulog_checkentry(const char *tablename,
2e4e6a17 341 const void *e,
1da177e4
LT
342 void *targinfo,
343 unsigned int targinfosize,
344 unsigned int hookmask)
345{
346 struct ipt_ulog_info *loginfo = (struct ipt_ulog_info *) targinfo;
347
348 if (targinfosize != IPT_ALIGN(sizeof(struct ipt_ulog_info))) {
349 DEBUGP("ipt_ULOG: targinfosize %u != 0\n", targinfosize);
350 return 0;
351 }
352
353 if (loginfo->prefix[sizeof(loginfo->prefix) - 1] != '\0') {
354 DEBUGP("ipt_ULOG: prefix term %i\n",
355 loginfo->prefix[sizeof(loginfo->prefix) - 1]);
356 return 0;
357 }
358
359 if (loginfo->qthreshold > ULOG_MAX_QLEN) {
360 DEBUGP("ipt_ULOG: queue threshold %i > MAX_QLEN\n",
361 loginfo->qthreshold);
362 return 0;
363 }
364
365 return 1;
366}
367
368static struct ipt_target ipt_ulog_reg = {
369 .name = "ULOG",
370 .target = ipt_ulog_target,
371 .checkentry = ipt_ulog_checkentry,
372 .me = THIS_MODULE,
373};
374
608c8e4f
HW
375static struct nf_logger ipt_ulog_logger = {
376 .name = "ipt_ULOG",
377 .logfn = &ipt_logfn,
378 .me = THIS_MODULE,
379};
380
1da177e4
LT
381static int __init init(void)
382{
383 int i;
384
385 DEBUGP("ipt_ULOG: init module\n");
386
e7be6994 387 if (nlbufsiz > 128*1024) {
1da177e4
LT
388 printk("Netlink buffer has to be <= 128kB\n");
389 return -EINVAL;
390 }
391
392 /* initialize ulog_buffers */
393 for (i = 0; i < ULOG_MAXNLGROUPS; i++) {
394 init_timer(&ulog_buffers[i].timer);
395 ulog_buffers[i].timer.function = ulog_timer;
396 ulog_buffers[i].timer.data = i;
397 }
398
06628607
PM
399 nflognl = netlink_kernel_create(NETLINK_NFLOG, ULOG_MAXNLGROUPS, NULL,
400 THIS_MODULE);
1da177e4
LT
401 if (!nflognl)
402 return -ENOMEM;
403
404 if (ipt_register_target(&ipt_ulog_reg) != 0) {
405 sock_release(nflognl->sk_socket);
406 return -EINVAL;
407 }
408 if (nflog)
608c8e4f 409 nf_log_register(PF_INET, &ipt_ulog_logger);
1da177e4
LT
410
411 return 0;
412}
413
414static void __exit fini(void)
415{
416 ulog_buff_t *ub;
417 int i;
418
419 DEBUGP("ipt_ULOG: cleanup_module\n");
420
421 if (nflog)
608c8e4f 422 nf_log_unregister_logger(&ipt_ulog_logger);
1da177e4
LT
423 ipt_unregister_target(&ipt_ulog_reg);
424 sock_release(nflognl->sk_socket);
425
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)) {
430 DEBUGP("timer was pending, deleting\n");
431 del_timer(&ub->timer);
432 }
433
434 if (ub->skb) {
435 kfree_skb(ub->skb);
436 ub->skb = NULL;
437 }
438 }
439
440}
441
442module_init(init);
443module_exit(fini);
This page took 0.131089 seconds and 5 git commands to generate.