netfilter: xtables: move extension arguments into compound structure (1/6)
[linux-2.6-block.git] / net / bridge / netfilter / ebtables.c
CommitLineData
1da177e4
LT
1/*
2 * ebtables
3 *
4 * Author:
5 * Bart De Schuymer <bdschuym@pandora.be>
6 *
7 * ebtables.c,v 2.0, July, 2002
8 *
9 * This code is stongly inspired on the iptables code which is
10 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 */
17
1da177e4
LT
18
19#include <linux/kmod.h>
20#include <linux/module.h>
21#include <linux/vmalloc.h>
18219d3f 22#include <linux/netfilter/x_tables.h>
1da177e4
LT
23#include <linux/netfilter_bridge/ebtables.h>
24#include <linux/spinlock.h>
df0933dc 25#include <linux/mutex.h>
1da177e4
LT
26#include <asm/uaccess.h>
27#include <linux/smp.h>
c8923c6b 28#include <linux/cpumask.h>
1da177e4
LT
29#include <net/sock.h>
30/* needed for logical [in,out]-dev filtering */
31#include "../br_private.h"
32
1da177e4 33#define BUGPRINT(format, args...) printk("kernel msg: ebtables bug: please "\
9d6f229f 34 "report to author: "format, ## args)
1da177e4 35/* #define BUGPRINT(format, args...) */
1da177e4 36#define MEMPRINT(format, args...) printk("kernel msg: ebtables "\
9d6f229f 37 ": out of memory: "format, ## args)
1da177e4
LT
38/* #define MEMPRINT(format, args...) */
39
40
41
42/*
43 * Each cpu has its own set of counters, so there is no need for write_lock in
44 * the softirq
45 * For reading or updating the counters, the user context needs to
46 * get a write_lock
47 */
48
49/* The size of each set of counters is altered to get cache alignment */
50#define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
51#define COUNTER_OFFSET(n) (SMP_ALIGN(n * sizeof(struct ebt_counter)))
52#define COUNTER_BASE(c, n, cpu) ((struct ebt_counter *)(((char *)c) + \
53 COUNTER_OFFSET(n) * cpu))
54
55
56
57b47a53 57static DEFINE_MUTEX(ebt_mutex);
1da177e4 58static LIST_HEAD(ebt_tables);
1da177e4 59
043ef46c 60static struct xt_target ebt_standard_target = {
001a18d3
JE
61 .name = "standard",
62 .revision = 0,
63 .family = NFPROTO_BRIDGE,
043ef46c 64 .targetsize = sizeof(int),
18219d3f 65};
1da177e4
LT
66
67static inline int ebt_do_watcher (struct ebt_entry_watcher *w,
2d06d4a5 68 struct sk_buff *skb, unsigned int hooknr, const struct net_device *in,
1da177e4
LT
69 const struct net_device *out)
70{
043ef46c 71 w->u.watcher->target(skb, in, out, hooknr, w->u.watcher, w->data);
1da177e4
LT
72 /* watchers don't give a verdict */
73 return 0;
74}
75
76static inline int ebt_do_match (struct ebt_entry_match *m,
f7108a20 77 const struct sk_buff *skb, struct xt_match_param *par)
1da177e4 78{
f7108a20
JE
79 par->match = m->u.match;
80 par->matchinfo = m->data;
81 return m->u.match->match(skb, par);
1da177e4
LT
82}
83
84static inline int ebt_dev_check(char *entry, const struct net_device *device)
85{
86 int i = 0;
6f5b7ef6 87 const char *devname = device->name;
1da177e4
LT
88
89 if (*entry == '\0')
90 return 0;
91 if (!device)
92 return 1;
93 /* 1 is the wildcard token */
94 while (entry[i] != '\0' && entry[i] != 1 && entry[i] == devname[i])
95 i++;
96 return (devname[i] != entry[i] && entry[i] != 1);
97}
98
99#define FWINV2(bool,invflg) ((bool) ^ !!(e->invflags & invflg))
100/* process standard matches */
101static inline int ebt_basic_match(struct ebt_entry *e, struct ethhdr *h,
102 const struct net_device *in, const struct net_device *out)
103{
104 int verdict, i;
105
106 if (e->bitmask & EBT_802_3) {
107 if (FWINV2(ntohs(h->h_proto) >= 1536, EBT_IPROTO))
108 return 1;
109 } else if (!(e->bitmask & EBT_NOPROTO) &&
110 FWINV2(e->ethproto != h->h_proto, EBT_IPROTO))
111 return 1;
112
113 if (FWINV2(ebt_dev_check(e->in, in), EBT_IIN))
114 return 1;
115 if (FWINV2(ebt_dev_check(e->out, out), EBT_IOUT))
116 return 1;
117 if ((!in || !in->br_port) ? 0 : FWINV2(ebt_dev_check(
118 e->logical_in, in->br_port->br->dev), EBT_ILOGICALIN))
119 return 1;
120 if ((!out || !out->br_port) ? 0 : FWINV2(ebt_dev_check(
121 e->logical_out, out->br_port->br->dev), EBT_ILOGICALOUT))
122 return 1;
123
124 if (e->bitmask & EBT_SOURCEMAC) {
125 verdict = 0;
126 for (i = 0; i < 6; i++)
127 verdict |= (h->h_source[i] ^ e->sourcemac[i]) &
128 e->sourcemsk[i];
129 if (FWINV2(verdict != 0, EBT_ISOURCE) )
130 return 1;
131 }
132 if (e->bitmask & EBT_DESTMAC) {
133 verdict = 0;
134 for (i = 0; i < 6; i++)
135 verdict |= (h->h_dest[i] ^ e->destmac[i]) &
136 e->destmsk[i];
137 if (FWINV2(verdict != 0, EBT_IDEST) )
138 return 1;
139 }
140 return 0;
141}
142
143/* Do some firewalling */
3db05fea 144unsigned int ebt_do_table (unsigned int hook, struct sk_buff *skb,
1da177e4
LT
145 const struct net_device *in, const struct net_device *out,
146 struct ebt_table *table)
147{
148 int i, nentries;
149 struct ebt_entry *point;
150 struct ebt_counter *counter_base, *cb_base;
151 struct ebt_entry_target *t;
152 int verdict, sp = 0;
153 struct ebt_chainstack *cs;
154 struct ebt_entries *chaininfo;
155 char *base;
156 struct ebt_table_info *private;
5365f802 157 bool hotdrop = false;
f7108a20
JE
158 struct xt_match_param mtpar;
159
160 mtpar.in = in;
161 mtpar.out = out;
162 mtpar.hotdrop = &hotdrop;
1da177e4
LT
163
164 read_lock_bh(&table->lock);
165 private = table->private;
166 cb_base = COUNTER_BASE(private->counters, private->nentries,
167 smp_processor_id());
168 if (private->chainstack)
169 cs = private->chainstack[smp_processor_id()];
170 else
171 cs = NULL;
172 chaininfo = private->hook_entry[hook];
173 nentries = private->hook_entry[hook]->nentries;
174 point = (struct ebt_entry *)(private->hook_entry[hook]->data);
175 counter_base = cb_base + private->hook_entry[hook]->counter_offset;
176 /* base for chain jumps */
177 base = private->entries;
178 i = 0;
179 while (i < nentries) {
3db05fea 180 if (ebt_basic_match(point, eth_hdr(skb), in, out))
1da177e4
LT
181 goto letscontinue;
182
f7108a20 183 if (EBT_MATCH_ITERATE(point, ebt_do_match, skb, &mtpar) != 0)
1da177e4 184 goto letscontinue;
5365f802
JE
185 if (hotdrop) {
186 read_unlock_bh(&table->lock);
187 return NF_DROP;
188 }
1da177e4
LT
189
190 /* increase counter */
191 (*(counter_base + i)).pcnt++;
3db05fea 192 (*(counter_base + i)).bcnt += skb->len;
1da177e4
LT
193
194 /* these should only watch: not modify, nor tell us
195 what to do with the packet */
3db05fea 196 EBT_WATCHER_ITERATE(point, ebt_do_watcher, skb, hook, in,
1da177e4
LT
197 out);
198
199 t = (struct ebt_entry_target *)
200 (((char *)point) + point->target_offset);
201 /* standard target */
202 if (!t->u.target->target)
203 verdict = ((struct ebt_standard_target *)t)->verdict;
204 else
2d06d4a5 205 verdict = t->u.target->target(skb, in, out, hook,
043ef46c 206 t->u.target, t->data);
1da177e4
LT
207 if (verdict == EBT_ACCEPT) {
208 read_unlock_bh(&table->lock);
209 return NF_ACCEPT;
210 }
211 if (verdict == EBT_DROP) {
212 read_unlock_bh(&table->lock);
213 return NF_DROP;
214 }
215 if (verdict == EBT_RETURN) {
216letsreturn:
217#ifdef CONFIG_NETFILTER_DEBUG
218 if (sp == 0) {
219 BUGPRINT("RETURN on base chain");
220 /* act like this is EBT_CONTINUE */
221 goto letscontinue;
222 }
223#endif
224 sp--;
225 /* put all the local variables right */
226 i = cs[sp].n;
227 chaininfo = cs[sp].chaininfo;
228 nentries = chaininfo->nentries;
229 point = cs[sp].e;
230 counter_base = cb_base +
231 chaininfo->counter_offset;
232 continue;
233 }
234 if (verdict == EBT_CONTINUE)
235 goto letscontinue;
236#ifdef CONFIG_NETFILTER_DEBUG
237 if (verdict < 0) {
238 BUGPRINT("bogus standard verdict\n");
239 read_unlock_bh(&table->lock);
240 return NF_DROP;
241 }
242#endif
243 /* jump to a udc */
244 cs[sp].n = i + 1;
245 cs[sp].chaininfo = chaininfo;
246 cs[sp].e = (struct ebt_entry *)
247 (((char *)point) + point->next_offset);
248 i = 0;
249 chaininfo = (struct ebt_entries *) (base + verdict);
250#ifdef CONFIG_NETFILTER_DEBUG
251 if (chaininfo->distinguisher) {
252 BUGPRINT("jump to non-chain\n");
253 read_unlock_bh(&table->lock);
254 return NF_DROP;
255 }
256#endif
257 nentries = chaininfo->nentries;
258 point = (struct ebt_entry *)chaininfo->data;
259 counter_base = cb_base + chaininfo->counter_offset;
260 sp++;
261 continue;
262letscontinue:
263 point = (struct ebt_entry *)
264 (((char *)point) + point->next_offset);
265 i++;
266 }
267
268 /* I actually like this :) */
269 if (chaininfo->policy == EBT_RETURN)
270 goto letsreturn;
271 if (chaininfo->policy == EBT_ACCEPT) {
272 read_unlock_bh(&table->lock);
273 return NF_ACCEPT;
274 }
275 read_unlock_bh(&table->lock);
276 return NF_DROP;
277}
278
279/* If it succeeds, returns element and locks mutex */
280static inline void *
281find_inlist_lock_noload(struct list_head *head, const char *name, int *error,
57b47a53 282 struct mutex *mutex)
1da177e4 283{
df0933dc
PM
284 struct {
285 struct list_head list;
286 char name[EBT_FUNCTION_MAXNAMELEN];
287 } *e;
1da177e4 288
57b47a53 289 *error = mutex_lock_interruptible(mutex);
1da177e4
LT
290 if (*error != 0)
291 return NULL;
292
df0933dc
PM
293 list_for_each_entry(e, head, list) {
294 if (strcmp(e->name, name) == 0)
295 return e;
1da177e4 296 }
df0933dc
PM
297 *error = -ENOENT;
298 mutex_unlock(mutex);
299 return NULL;
1da177e4
LT
300}
301
302#ifndef CONFIG_KMOD
303#define find_inlist_lock(h,n,p,e,m) find_inlist_lock_noload((h),(n),(e),(m))
304#else
305static void *
306find_inlist_lock(struct list_head *head, const char *name, const char *prefix,
57b47a53 307 int *error, struct mutex *mutex)
1da177e4
LT
308{
309 void *ret;
310
311 ret = find_inlist_lock_noload(head, name, error, mutex);
312 if (!ret) {
313 request_module("%s%s", prefix, name);
314 ret = find_inlist_lock_noload(head, name, error, mutex);
315 }
316 return ret;
317}
318#endif
319
320static inline struct ebt_table *
57b47a53 321find_table_lock(const char *name, int *error, struct mutex *mutex)
1da177e4
LT
322{
323 return find_inlist_lock(&ebt_tables, name, "ebtable_", error, mutex);
324}
325
1da177e4
LT
326static inline int
327ebt_check_match(struct ebt_entry_match *m, struct ebt_entry *e,
328 const char *name, unsigned int hookmask, unsigned int *cnt)
329{
043ef46c 330 struct xt_match *match;
14197d54 331 size_t left = ((char *)e + e->watchers_offset) - (char *)m;
1da177e4
LT
332 int ret;
333
14197d54
AV
334 if (left < sizeof(struct ebt_entry_match) ||
335 left - sizeof(struct ebt_entry_match) < m->match_size)
1da177e4 336 return -EINVAL;
043ef46c
JE
337
338 match = try_then_request_module(xt_find_match(NFPROTO_BRIDGE,
339 m->u.name, 0), "ebt_%s", m->u.name);
340 if (IS_ERR(match))
341 return PTR_ERR(match);
342 if (match == NULL)
1da177e4 343 return -ENOENT;
043ef46c
JE
344 m->u.match = match;
345
346 ret = xt_check_match(match, NFPROTO_BRIDGE, m->match_size,
367c6790
JE
347 name, hookmask, e->ethproto, e->invflags & EBT_IPROTO,
348 e, m->data);
043ef46c
JE
349 if (ret < 0) {
350 module_put(match->me);
351 return ret;
1da177e4 352 }
043ef46c 353
1da177e4
LT
354 (*cnt)++;
355 return 0;
356}
357
358static inline int
359ebt_check_watcher(struct ebt_entry_watcher *w, struct ebt_entry *e,
360 const char *name, unsigned int hookmask, unsigned int *cnt)
361{
043ef46c 362 struct xt_target *watcher;
14197d54 363 size_t left = ((char *)e + e->target_offset) - (char *)w;
1da177e4
LT
364 int ret;
365
14197d54
AV
366 if (left < sizeof(struct ebt_entry_watcher) ||
367 left - sizeof(struct ebt_entry_watcher) < w->watcher_size)
1da177e4 368 return -EINVAL;
043ef46c
JE
369
370 watcher = try_then_request_module(
371 xt_find_target(NFPROTO_BRIDGE, w->u.name, 0),
372 "ebt_%s", w->u.name);
373 if (IS_ERR(watcher))
374 return PTR_ERR(watcher);
375 if (watcher == NULL)
1da177e4 376 return -ENOENT;
043ef46c
JE
377 w->u.watcher = watcher;
378
379 ret = xt_check_target(watcher, NFPROTO_BRIDGE, w->watcher_size,
367c6790
JE
380 name, hookmask, e->ethproto, e->invflags & EBT_IPROTO,
381 e, w->data);
043ef46c
JE
382 if (ret < 0) {
383 module_put(watcher->me);
384 return ret;
1da177e4 385 }
043ef46c 386
1da177e4
LT
387 (*cnt)++;
388 return 0;
389}
390
70fe9af4
AV
391static int ebt_verify_pointers(struct ebt_replace *repl,
392 struct ebt_table_info *newinfo)
1da177e4 393{
70fe9af4
AV
394 unsigned int limit = repl->entries_size;
395 unsigned int valid_hooks = repl->valid_hooks;
396 unsigned int offset = 0;
1da177e4
LT
397 int i;
398
e4fd77de
AV
399 for (i = 0; i < NF_BR_NUMHOOKS; i++)
400 newinfo->hook_entry[i] = NULL;
401
402 newinfo->entries_size = repl->entries_size;
403 newinfo->nentries = repl->nentries;
404
70fe9af4
AV
405 while (offset < limit) {
406 size_t left = limit - offset;
407 struct ebt_entry *e = (void *)newinfo->entries + offset;
bb2ef25c 408
70fe9af4 409 if (left < sizeof(unsigned int))
1da177e4 410 break;
70fe9af4
AV
411
412 for (i = 0; i < NF_BR_NUMHOOKS; i++) {
413 if ((valid_hooks & (1 << i)) == 0)
414 continue;
1e419cd9
AV
415 if ((char __user *)repl->hook_entry[i] ==
416 repl->entries + offset)
70fe9af4
AV
417 break;
418 }
419
420 if (i != NF_BR_NUMHOOKS || !(e->bitmask & EBT_ENTRY_OR_ENTRIES)) {
421 if (e->bitmask != 0) {
422 /* we make userspace set this right,
423 so there is no misunderstanding */
424 BUGPRINT("EBT_ENTRY_OR_ENTRIES shouldn't be set "
425 "in distinguisher\n");
426 return -EINVAL;
427 }
428 if (i != NF_BR_NUMHOOKS)
429 newinfo->hook_entry[i] = (struct ebt_entries *)e;
430 if (left < sizeof(struct ebt_entries))
431 break;
432 offset += sizeof(struct ebt_entries);
433 } else {
434 if (left < sizeof(struct ebt_entry))
435 break;
436 if (left < e->next_offset)
437 break;
438 offset += e->next_offset;
1da177e4 439 }
22b440bf 440 }
70fe9af4
AV
441 if (offset != limit) {
442 BUGPRINT("entries_size too small\n");
443 return -EINVAL;
444 }
e4fd77de
AV
445
446 /* check if all valid hooks have a chain */
447 for (i = 0; i < NF_BR_NUMHOOKS; i++) {
448 if (!newinfo->hook_entry[i] &&
449 (valid_hooks & (1 << i))) {
450 BUGPRINT("Valid hook without chain\n");
451 return -EINVAL;
452 }
453 }
22b440bf 454 return 0;
22b440bf
AV
455}
456
457/*
458 * this one is very careful, as it is the first function
459 * to parse the userspace data
460 */
461static inline int
462ebt_check_entry_size_and_hooks(struct ebt_entry *e,
0e795531
AV
463 struct ebt_table_info *newinfo,
464 unsigned int *n, unsigned int *cnt,
465 unsigned int *totalcnt, unsigned int *udc_cnt)
22b440bf 466{
22b440bf
AV
467 int i;
468
469 for (i = 0; i < NF_BR_NUMHOOKS; i++) {
0e795531 470 if ((void *)e == (void *)newinfo->hook_entry[i])
22b440bf
AV
471 break;
472 }
473 /* beginning of a new chain
474 if i == NF_BR_NUMHOOKS it must be a user defined chain */
475 if (i != NF_BR_NUMHOOKS || !e->bitmask) {
1da177e4
LT
476 /* this checks if the previous chain has as many entries
477 as it said it has */
478 if (*n != *cnt) {
479 BUGPRINT("nentries does not equal the nr of entries "
9d6f229f 480 "in the chain\n");
1da177e4
LT
481 return -EINVAL;
482 }
1da177e4
LT
483 if (((struct ebt_entries *)e)->policy != EBT_DROP &&
484 ((struct ebt_entries *)e)->policy != EBT_ACCEPT) {
485 /* only RETURN from udc */
486 if (i != NF_BR_NUMHOOKS ||
487 ((struct ebt_entries *)e)->policy != EBT_RETURN) {
488 BUGPRINT("bad policy\n");
489 return -EINVAL;
490 }
491 }
492 if (i == NF_BR_NUMHOOKS) /* it's a user defined chain */
493 (*udc_cnt)++;
1da177e4
LT
494 if (((struct ebt_entries *)e)->counter_offset != *totalcnt) {
495 BUGPRINT("counter_offset != totalcnt");
496 return -EINVAL;
497 }
498 *n = ((struct ebt_entries *)e)->nentries;
499 *cnt = 0;
500 return 0;
501 }
502 /* a plain old entry, heh */
503 if (sizeof(struct ebt_entry) > e->watchers_offset ||
504 e->watchers_offset > e->target_offset ||
505 e->target_offset >= e->next_offset) {
506 BUGPRINT("entry offsets not in right order\n");
507 return -EINVAL;
508 }
509 /* this is not checked anywhere else */
510 if (e->next_offset - e->target_offset < sizeof(struct ebt_entry_target)) {
511 BUGPRINT("target size too small\n");
512 return -EINVAL;
513 }
1da177e4
LT
514 (*cnt)++;
515 (*totalcnt)++;
516 return 0;
517}
518
519struct ebt_cl_stack
520{
521 struct ebt_chainstack cs;
522 int from;
523 unsigned int hookmask;
524};
525
526/*
527 * we need these positions to check that the jumps to a different part of the
528 * entries is a jump to the beginning of a new chain.
529 */
530static inline int
531ebt_get_udc_positions(struct ebt_entry *e, struct ebt_table_info *newinfo,
177abc34 532 unsigned int *n, struct ebt_cl_stack *udc)
1da177e4
LT
533{
534 int i;
535
536 /* we're only interested in chain starts */
40642f95 537 if (e->bitmask)
1da177e4
LT
538 return 0;
539 for (i = 0; i < NF_BR_NUMHOOKS; i++) {
1da177e4
LT
540 if (newinfo->hook_entry[i] == (struct ebt_entries *)e)
541 break;
542 }
543 /* only care about udc */
544 if (i != NF_BR_NUMHOOKS)
545 return 0;
546
547 udc[*n].cs.chaininfo = (struct ebt_entries *)e;
548 /* these initialisations are depended on later in check_chainloops() */
549 udc[*n].cs.n = 0;
550 udc[*n].hookmask = 0;
551
552 (*n)++;
553 return 0;
554}
555
556static inline int
557ebt_cleanup_match(struct ebt_entry_match *m, unsigned int *i)
558{
559 if (i && (*i)-- == 0)
560 return 1;
561 if (m->u.match->destroy)
043ef46c 562 m->u.match->destroy(m->u.match, m->data);
1da177e4
LT
563 module_put(m->u.match->me);
564
565 return 0;
566}
567
568static inline int
569ebt_cleanup_watcher(struct ebt_entry_watcher *w, unsigned int *i)
570{
571 if (i && (*i)-- == 0)
572 return 1;
573 if (w->u.watcher->destroy)
043ef46c 574 w->u.watcher->destroy(w->u.watcher, w->data);
1da177e4
LT
575 module_put(w->u.watcher->me);
576
577 return 0;
578}
579
580static inline int
581ebt_cleanup_entry(struct ebt_entry *e, unsigned int *cnt)
582{
583 struct ebt_entry_target *t;
584
40642f95 585 if (e->bitmask == 0)
1da177e4
LT
586 return 0;
587 /* we're done */
588 if (cnt && (*cnt)-- == 0)
589 return 1;
590 EBT_WATCHER_ITERATE(e, ebt_cleanup_watcher, NULL);
591 EBT_MATCH_ITERATE(e, ebt_cleanup_match, NULL);
592 t = (struct ebt_entry_target *)(((char *)e) + e->target_offset);
593 if (t->u.target->destroy)
043ef46c 594 t->u.target->destroy(t->u.target, t->data);
1da177e4
LT
595 module_put(t->u.target->me);
596
597 return 0;
598}
599
600static inline int
601ebt_check_entry(struct ebt_entry *e, struct ebt_table_info *newinfo,
f7da79d9 602 const char *name, unsigned int *cnt,
1da177e4
LT
603 struct ebt_cl_stack *cl_s, unsigned int udc_cnt)
604{
605 struct ebt_entry_target *t;
043ef46c 606 struct xt_target *target;
1da177e4 607 unsigned int i, j, hook = 0, hookmask = 0;
44f9a2fd 608 size_t gap;
1da177e4
LT
609 int ret;
610
611 /* don't mess with the struct ebt_entries */
40642f95 612 if (e->bitmask == 0)
1da177e4
LT
613 return 0;
614
615 if (e->bitmask & ~EBT_F_MASK) {
616 BUGPRINT("Unknown flag for bitmask\n");
617 return -EINVAL;
618 }
619 if (e->invflags & ~EBT_INV_MASK) {
620 BUGPRINT("Unknown flag for inv bitmask\n");
621 return -EINVAL;
622 }
623 if ( (e->bitmask & EBT_NOPROTO) && (e->bitmask & EBT_802_3) ) {
624 BUGPRINT("NOPROTO & 802_3 not allowed\n");
625 return -EINVAL;
626 }
627 /* what hook do we belong to? */
628 for (i = 0; i < NF_BR_NUMHOOKS; i++) {
f7da79d9 629 if (!newinfo->hook_entry[i])
1da177e4
LT
630 continue;
631 if ((char *)newinfo->hook_entry[i] < (char *)e)
632 hook = i;
633 else
634 break;
635 }
636 /* (1 << NF_BR_NUMHOOKS) tells the check functions the rule is on
637 a base chain */
638 if (i < NF_BR_NUMHOOKS)
639 hookmask = (1 << hook) | (1 << NF_BR_NUMHOOKS);
640 else {
641 for (i = 0; i < udc_cnt; i++)
642 if ((char *)(cl_s[i].cs.chaininfo) > (char *)e)
643 break;
644 if (i == 0)
645 hookmask = (1 << hook) | (1 << NF_BR_NUMHOOKS);
646 else
647 hookmask = cl_s[i - 1].hookmask;
648 }
649 i = 0;
650 ret = EBT_MATCH_ITERATE(e, ebt_check_match, e, name, hookmask, &i);
651 if (ret != 0)
652 goto cleanup_matches;
653 j = 0;
654 ret = EBT_WATCHER_ITERATE(e, ebt_check_watcher, e, name, hookmask, &j);
655 if (ret != 0)
656 goto cleanup_watchers;
657 t = (struct ebt_entry_target *)(((char *)e) + e->target_offset);
44f9a2fd 658 gap = e->next_offset - e->target_offset;
1da177e4 659
043ef46c
JE
660 target = try_then_request_module(
661 xt_find_target(NFPROTO_BRIDGE, t->u.name, 0),
662 "ebt_%s", t->u.name);
663 if (IS_ERR(target)) {
664 ret = PTR_ERR(target);
001a18d3 665 goto cleanup_watchers;
043ef46c
JE
666 } else if (target == NULL) {
667 ret = -ENOENT;
001a18d3
JE
668 goto cleanup_watchers;
669 }
670
1da177e4
LT
671 t->u.target = target;
672 if (t->u.target == &ebt_standard_target) {
14197d54 673 if (gap < sizeof(struct ebt_standard_target)) {
1da177e4
LT
674 BUGPRINT("Standard target size too big\n");
675 ret = -EFAULT;
676 goto cleanup_watchers;
677 }
678 if (((struct ebt_standard_target *)t)->verdict <
679 -NUM_STANDARD_TARGETS) {
680 BUGPRINT("Invalid standard target\n");
681 ret = -EFAULT;
682 goto cleanup_watchers;
683 }
18219d3f
JE
684 } else if (t->target_size > gap - sizeof(struct ebt_entry_target)) {
685 module_put(t->u.target->me);
686 ret = -EFAULT;
687 goto cleanup_watchers;
043ef46c
JE
688 }
689
690 ret = xt_check_target(target, NFPROTO_BRIDGE, t->target_size,
367c6790
JE
691 name, hookmask, e->ethproto, e->invflags & EBT_IPROTO,
692 e, t->data);
043ef46c
JE
693 if (ret < 0) {
694 module_put(target->me);
18219d3f 695 goto cleanup_watchers;
1da177e4
LT
696 }
697 (*cnt)++;
698 return 0;
699cleanup_watchers:
700 EBT_WATCHER_ITERATE(e, ebt_cleanup_watcher, &j);
701cleanup_matches:
702 EBT_MATCH_ITERATE(e, ebt_cleanup_match, &i);
703 return ret;
704}
705
706/*
707 * checks for loops and sets the hook mask for udc
708 * the hook mask for udc tells us from which base chains the udc can be
709 * accessed. This mask is a parameter to the check() functions of the extensions
710 */
711static int check_chainloops(struct ebt_entries *chain, struct ebt_cl_stack *cl_s,
712 unsigned int udc_cnt, unsigned int hooknr, char *base)
713{
714 int i, chain_nr = -1, pos = 0, nentries = chain->nentries, verdict;
715 struct ebt_entry *e = (struct ebt_entry *)chain->data;
716 struct ebt_entry_target *t;
717
718 while (pos < nentries || chain_nr != -1) {
719 /* end of udc, go back one 'recursion' step */
720 if (pos == nentries) {
721 /* put back values of the time when this chain was called */
722 e = cl_s[chain_nr].cs.e;
723 if (cl_s[chain_nr].from != -1)
724 nentries =
725 cl_s[cl_s[chain_nr].from].cs.chaininfo->nentries;
726 else
727 nentries = chain->nentries;
728 pos = cl_s[chain_nr].cs.n;
729 /* make sure we won't see a loop that isn't one */
730 cl_s[chain_nr].cs.n = 0;
731 chain_nr = cl_s[chain_nr].from;
732 if (pos == nentries)
733 continue;
734 }
735 t = (struct ebt_entry_target *)
736 (((char *)e) + e->target_offset);
737 if (strcmp(t->u.name, EBT_STANDARD_TARGET))
738 goto letscontinue;
739 if (e->target_offset + sizeof(struct ebt_standard_target) >
740 e->next_offset) {
741 BUGPRINT("Standard target size too big\n");
742 return -1;
743 }
744 verdict = ((struct ebt_standard_target *)t)->verdict;
745 if (verdict >= 0) { /* jump to another chain */
746 struct ebt_entries *hlp2 =
747 (struct ebt_entries *)(base + verdict);
748 for (i = 0; i < udc_cnt; i++)
749 if (hlp2 == cl_s[i].cs.chaininfo)
750 break;
751 /* bad destination or loop */
752 if (i == udc_cnt) {
753 BUGPRINT("bad destination\n");
754 return -1;
755 }
756 if (cl_s[i].cs.n) {
757 BUGPRINT("loop\n");
758 return -1;
759 }
98a0824a
AV
760 if (cl_s[i].hookmask & (1 << hooknr))
761 goto letscontinue;
762 /* this can't be 0, so the loop test is correct */
1da177e4
LT
763 cl_s[i].cs.n = pos + 1;
764 pos = 0;
765 cl_s[i].cs.e = ((void *)e + e->next_offset);
766 e = (struct ebt_entry *)(hlp2->data);
767 nentries = hlp2->nentries;
768 cl_s[i].from = chain_nr;
769 chain_nr = i;
770 /* this udc is accessible from the base chain for hooknr */
771 cl_s[i].hookmask |= (1 << hooknr);
772 continue;
773 }
774letscontinue:
775 e = (void *)e + e->next_offset;
776 pos++;
777 }
778 return 0;
779}
780
781/* do the parsing of the table/chains/entries/matches/watchers/targets, heh */
1bc2326c 782static int translate_table(char *name, struct ebt_table_info *newinfo)
1da177e4
LT
783{
784 unsigned int i, j, k, udc_cnt;
785 int ret;
786 struct ebt_cl_stack *cl_s = NULL; /* used in the checking for chain loops */
787
788 i = 0;
1f072c96 789 while (i < NF_BR_NUMHOOKS && !newinfo->hook_entry[i])
1da177e4
LT
790 i++;
791 if (i == NF_BR_NUMHOOKS) {
792 BUGPRINT("No valid hooks specified\n");
793 return -EINVAL;
794 }
1f072c96 795 if (newinfo->hook_entry[i] != (struct ebt_entries *)newinfo->entries) {
1da177e4
LT
796 BUGPRINT("Chains don't start at beginning\n");
797 return -EINVAL;
798 }
799 /* make sure chains are ordered after each other in same order
800 as their corresponding hooks */
801 for (j = i + 1; j < NF_BR_NUMHOOKS; j++) {
1f072c96 802 if (!newinfo->hook_entry[j])
1da177e4 803 continue;
1f072c96 804 if (newinfo->hook_entry[j] <= newinfo->hook_entry[i]) {
1da177e4
LT
805 BUGPRINT("Hook order must be followed\n");
806 return -EINVAL;
807 }
808 i = j;
809 }
810
1da177e4
LT
811 /* do some early checkings and initialize some things */
812 i = 0; /* holds the expected nr. of entries for the chain */
813 j = 0; /* holds the up to now counted entries for the chain */
814 k = 0; /* holds the total nr. of entries, should equal
9d6f229f 815 newinfo->nentries afterwards */
1da177e4
LT
816 udc_cnt = 0; /* will hold the nr. of user defined chains (udc) */
817 ret = EBT_ENTRY_ITERATE(newinfo->entries, newinfo->entries_size,
0e795531
AV
818 ebt_check_entry_size_and_hooks, newinfo,
819 &i, &j, &k, &udc_cnt);
1da177e4
LT
820
821 if (ret != 0)
822 return ret;
823
824 if (i != j) {
825 BUGPRINT("nentries does not equal the nr of entries in the "
9d6f229f 826 "(last) chain\n");
1da177e4
LT
827 return -EINVAL;
828 }
829 if (k != newinfo->nentries) {
830 BUGPRINT("Total nentries is wrong\n");
831 return -EINVAL;
832 }
833
1da177e4
LT
834 /* get the location of the udc, put them in an array
835 while we're at it, allocate the chainstack */
836 if (udc_cnt) {
837 /* this will get free'd in do_replace()/ebt_register_table()
838 if an error occurs */
7ad4d2f6 839 newinfo->chainstack =
53b8a315 840 vmalloc(nr_cpu_ids * sizeof(*(newinfo->chainstack)));
1da177e4
LT
841 if (!newinfo->chainstack)
842 return -ENOMEM;
6f912042 843 for_each_possible_cpu(i) {
1da177e4 844 newinfo->chainstack[i] =
18bc89aa 845 vmalloc(udc_cnt * sizeof(*(newinfo->chainstack[0])));
1da177e4
LT
846 if (!newinfo->chainstack[i]) {
847 while (i)
848 vfree(newinfo->chainstack[--i]);
849 vfree(newinfo->chainstack);
850 newinfo->chainstack = NULL;
851 return -ENOMEM;
852 }
853 }
854
18bc89aa 855 cl_s = vmalloc(udc_cnt * sizeof(*cl_s));
1da177e4
LT
856 if (!cl_s)
857 return -ENOMEM;
858 i = 0; /* the i'th udc */
859 EBT_ENTRY_ITERATE(newinfo->entries, newinfo->entries_size,
177abc34 860 ebt_get_udc_positions, newinfo, &i, cl_s);
1da177e4
LT
861 /* sanity check */
862 if (i != udc_cnt) {
863 BUGPRINT("i != udc_cnt\n");
864 vfree(cl_s);
865 return -EFAULT;
866 }
867 }
868
869 /* Check for loops */
870 for (i = 0; i < NF_BR_NUMHOOKS; i++)
1f072c96 871 if (newinfo->hook_entry[i])
1da177e4
LT
872 if (check_chainloops(newinfo->hook_entry[i],
873 cl_s, udc_cnt, i, newinfo->entries)) {
68d31872 874 vfree(cl_s);
1da177e4
LT
875 return -EINVAL;
876 }
877
96de0e25 878 /* we now know the following (along with E=mc²):
1da177e4
LT
879 - the nr of entries in each chain is right
880 - the size of the allocated space is right
881 - all valid hooks have a corresponding chain
882 - there are no loops
883 - wrong data can still be on the level of a single entry
884 - could be there are jumps to places that are not the
885 beginning of a chain. This can only occur in chains that
886 are not accessible from any base chains, so we don't care. */
887
888 /* used to know what we need to clean up if something goes wrong */
889 i = 0;
890 ret = EBT_ENTRY_ITERATE(newinfo->entries, newinfo->entries_size,
1bc2326c 891 ebt_check_entry, newinfo, name, &i, cl_s, udc_cnt);
1da177e4
LT
892 if (ret != 0) {
893 EBT_ENTRY_ITERATE(newinfo->entries, newinfo->entries_size,
894 ebt_cleanup_entry, &i);
895 }
68d31872 896 vfree(cl_s);
1da177e4
LT
897 return ret;
898}
899
900/* called under write_lock */
901static void get_counters(struct ebt_counter *oldcounters,
902 struct ebt_counter *counters, unsigned int nentries)
903{
904 int i, cpu;
905 struct ebt_counter *counter_base;
906
907 /* counters of cpu 0 */
908 memcpy(counters, oldcounters,
c8923c6b
DM
909 sizeof(struct ebt_counter) * nentries);
910
1da177e4 911 /* add other counters to those of cpu 0 */
6f912042 912 for_each_possible_cpu(cpu) {
c8923c6b
DM
913 if (cpu == 0)
914 continue;
1da177e4
LT
915 counter_base = COUNTER_BASE(oldcounters, nentries, cpu);
916 for (i = 0; i < nentries; i++) {
917 counters[i].pcnt += counter_base[i].pcnt;
918 counters[i].bcnt += counter_base[i].bcnt;
919 }
920 }
921}
922
923/* replace the table */
924static int do_replace(void __user *user, unsigned int len)
925{
926 int ret, i, countersize;
927 struct ebt_table_info *newinfo;
928 struct ebt_replace tmp;
929 struct ebt_table *t;
930 struct ebt_counter *counterstmp = NULL;
931 /* used to be able to unlock earlier */
932 struct ebt_table_info *table;
933
934 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
935 return -EFAULT;
936
937 if (len != sizeof(tmp) + tmp.entries_size) {
938 BUGPRINT("Wrong len argument\n");
939 return -EINVAL;
940 }
941
942 if (tmp.entries_size == 0) {
943 BUGPRINT("Entries_size never zero\n");
944 return -EINVAL;
945 }
ee4bb818
KK
946 /* overflow check */
947 if (tmp.nentries >= ((INT_MAX - sizeof(struct ebt_table_info)) / NR_CPUS -
948 SMP_CACHE_BYTES) / sizeof(struct ebt_counter))
949 return -ENOMEM;
950 if (tmp.num_counters >= INT_MAX / sizeof(struct ebt_counter))
951 return -ENOMEM;
952
53b8a315 953 countersize = COUNTER_OFFSET(tmp.nentries) * nr_cpu_ids;
18bc89aa 954 newinfo = vmalloc(sizeof(*newinfo) + countersize);
1da177e4
LT
955 if (!newinfo)
956 return -ENOMEM;
957
958 if (countersize)
959 memset(newinfo->counters, 0, countersize);
960
8b3a7005 961 newinfo->entries = vmalloc(tmp.entries_size);
1da177e4
LT
962 if (!newinfo->entries) {
963 ret = -ENOMEM;
964 goto free_newinfo;
965 }
966 if (copy_from_user(
967 newinfo->entries, tmp.entries, tmp.entries_size) != 0) {
968 BUGPRINT("Couldn't copy entries from userspace\n");
969 ret = -EFAULT;
970 goto free_entries;
971 }
972
973 /* the user wants counters back
974 the check on the size is done later, when we have the lock */
975 if (tmp.num_counters) {
18bc89aa 976 counterstmp = vmalloc(tmp.num_counters * sizeof(*counterstmp));
1da177e4
LT
977 if (!counterstmp) {
978 ret = -ENOMEM;
979 goto free_entries;
980 }
981 }
982 else
983 counterstmp = NULL;
984
985 /* this can get initialized by translate_table() */
986 newinfo->chainstack = NULL;
1bc2326c
AV
987 ret = ebt_verify_pointers(&tmp, newinfo);
988 if (ret != 0)
989 goto free_counterstmp;
990
991 ret = translate_table(tmp.name, newinfo);
1da177e4
LT
992
993 if (ret != 0)
994 goto free_counterstmp;
995
996 t = find_table_lock(tmp.name, &ret, &ebt_mutex);
997 if (!t) {
998 ret = -ENOENT;
999 goto free_iterate;
1000 }
1001
1002 /* the table doesn't like it */
1003 if (t->check && (ret = t->check(newinfo, tmp.valid_hooks)))
1004 goto free_unlock;
1005
1006 if (tmp.num_counters && tmp.num_counters != t->private->nentries) {
1007 BUGPRINT("Wrong nr. of counters requested\n");
1008 ret = -EINVAL;
1009 goto free_unlock;
1010 }
1011
1012 /* we have the mutex lock, so no danger in reading this pointer */
1013 table = t->private;
1014 /* make sure the table can only be rmmod'ed if it contains no rules */
1015 if (!table->nentries && newinfo->nentries && !try_module_get(t->me)) {
1016 ret = -ENOENT;
1017 goto free_unlock;
1018 } else if (table->nentries && !newinfo->nentries)
1019 module_put(t->me);
1020 /* we need an atomic snapshot of the counters */
1021 write_lock_bh(&t->lock);
1022 if (tmp.num_counters)
1023 get_counters(t->private->counters, counterstmp,
1024 t->private->nentries);
1025
1026 t->private = newinfo;
1027 write_unlock_bh(&t->lock);
57b47a53 1028 mutex_unlock(&ebt_mutex);
1da177e4
LT
1029 /* so, a user can change the chains while having messed up her counter
1030 allocation. Only reason why this is done is because this way the lock
1031 is held only once, while this doesn't bring the kernel into a
1032 dangerous state. */
1033 if (tmp.num_counters &&
1034 copy_to_user(tmp.counters, counterstmp,
1035 tmp.num_counters * sizeof(struct ebt_counter))) {
1036 BUGPRINT("Couldn't copy counters to userspace\n");
1037 ret = -EFAULT;
1038 }
1039 else
1040 ret = 0;
1041
1042 /* decrease module count and free resources */
1043 EBT_ENTRY_ITERATE(table->entries, table->entries_size,
1044 ebt_cleanup_entry, NULL);
1045
1046 vfree(table->entries);
1047 if (table->chainstack) {
6f912042 1048 for_each_possible_cpu(i)
1da177e4
LT
1049 vfree(table->chainstack[i]);
1050 vfree(table->chainstack);
1051 }
1052 vfree(table);
1053
68d31872 1054 vfree(counterstmp);
1da177e4
LT
1055 return ret;
1056
1057free_unlock:
57b47a53 1058 mutex_unlock(&ebt_mutex);
1da177e4
LT
1059free_iterate:
1060 EBT_ENTRY_ITERATE(newinfo->entries, newinfo->entries_size,
1061 ebt_cleanup_entry, NULL);
1062free_counterstmp:
68d31872 1063 vfree(counterstmp);
1da177e4
LT
1064 /* can be initialized in translate_table() */
1065 if (newinfo->chainstack) {
6f912042 1066 for_each_possible_cpu(i)
1da177e4
LT
1067 vfree(newinfo->chainstack[i]);
1068 vfree(newinfo->chainstack);
1069 }
1070free_entries:
68d31872 1071 vfree(newinfo->entries);
1da177e4 1072free_newinfo:
68d31872 1073 vfree(newinfo);
1da177e4
LT
1074 return ret;
1075}
1076
1da177e4
LT
1077int ebt_register_table(struct ebt_table *table)
1078{
1079 struct ebt_table_info *newinfo;
df0933dc 1080 struct ebt_table *t;
1e419cd9 1081 struct ebt_replace_kernel *repl;
1da177e4 1082 int ret, i, countersize;
df07a81e 1083 void *p;
1da177e4 1084
df07a81e
AV
1085 if (!table || !(repl = table->table) || !repl->entries ||
1086 repl->entries_size == 0 ||
1087 repl->counters || table->private) {
1da177e4
LT
1088 BUGPRINT("Bad table data for ebt_register_table!!!\n");
1089 return -EINVAL;
1090 }
1091
53b8a315 1092 countersize = COUNTER_OFFSET(repl->nentries) * nr_cpu_ids;
18bc89aa 1093 newinfo = vmalloc(sizeof(*newinfo) + countersize);
1da177e4
LT
1094 ret = -ENOMEM;
1095 if (!newinfo)
1096 return -ENOMEM;
1097
df07a81e
AV
1098 p = vmalloc(repl->entries_size);
1099 if (!p)
1da177e4
LT
1100 goto free_newinfo;
1101
df07a81e
AV
1102 memcpy(p, repl->entries, repl->entries_size);
1103 newinfo->entries = p;
1104
1105 newinfo->entries_size = repl->entries_size;
1106 newinfo->nentries = repl->nentries;
1da177e4
LT
1107
1108 if (countersize)
1109 memset(newinfo->counters, 0, countersize);
1110
1111 /* fill in newinfo and parse the entries */
1112 newinfo->chainstack = NULL;
df07a81e
AV
1113 for (i = 0; i < NF_BR_NUMHOOKS; i++) {
1114 if ((repl->valid_hooks & (1 << i)) == 0)
1115 newinfo->hook_entry[i] = NULL;
1116 else
1117 newinfo->hook_entry[i] = p +
1118 ((char *)repl->hook_entry[i] - repl->entries);
1119 }
1120 ret = translate_table(repl->name, newinfo);
1da177e4
LT
1121 if (ret != 0) {
1122 BUGPRINT("Translate_table failed\n");
1123 goto free_chainstack;
1124 }
1125
1126 if (table->check && table->check(newinfo, table->valid_hooks)) {
1127 BUGPRINT("The table doesn't like its own initial data, lol\n");
1128 return -EINVAL;
1129 }
1130
1131 table->private = newinfo;
1132 rwlock_init(&table->lock);
57b47a53 1133 ret = mutex_lock_interruptible(&ebt_mutex);
1da177e4
LT
1134 if (ret != 0)
1135 goto free_chainstack;
1136
df0933dc
PM
1137 list_for_each_entry(t, &ebt_tables, list) {
1138 if (strcmp(t->name, table->name) == 0) {
1139 ret = -EEXIST;
1140 BUGPRINT("Table name already exists\n");
1141 goto free_unlock;
1142 }
1da177e4
LT
1143 }
1144
1145 /* Hold a reference count if the chains aren't empty */
1146 if (newinfo->nentries && !try_module_get(table->me)) {
1147 ret = -ENOENT;
1148 goto free_unlock;
1149 }
df0933dc 1150 list_add(&table->list, &ebt_tables);
57b47a53 1151 mutex_unlock(&ebt_mutex);
1da177e4
LT
1152 return 0;
1153free_unlock:
57b47a53 1154 mutex_unlock(&ebt_mutex);
1da177e4
LT
1155free_chainstack:
1156 if (newinfo->chainstack) {
6f912042 1157 for_each_possible_cpu(i)
1da177e4
LT
1158 vfree(newinfo->chainstack[i]);
1159 vfree(newinfo->chainstack);
1160 }
1161 vfree(newinfo->entries);
1162free_newinfo:
1163 vfree(newinfo);
1164 return ret;
1165}
1166
1167void ebt_unregister_table(struct ebt_table *table)
1168{
1169 int i;
1170
1171 if (!table) {
1172 BUGPRINT("Request to unregister NULL table!!!\n");
1173 return;
1174 }
57b47a53 1175 mutex_lock(&ebt_mutex);
df0933dc 1176 list_del(&table->list);
57b47a53 1177 mutex_unlock(&ebt_mutex);
68d31872 1178 vfree(table->private->entries);
1da177e4 1179 if (table->private->chainstack) {
6f912042 1180 for_each_possible_cpu(i)
1da177e4
LT
1181 vfree(table->private->chainstack[i]);
1182 vfree(table->private->chainstack);
1183 }
1184 vfree(table->private);
1185}
1186
1187/* userspace just supplied us with counters */
1188static int update_counters(void __user *user, unsigned int len)
1189{
1190 int i, ret;
1191 struct ebt_counter *tmp;
1192 struct ebt_replace hlp;
1193 struct ebt_table *t;
1194
1195 if (copy_from_user(&hlp, user, sizeof(hlp)))
1196 return -EFAULT;
1197
1198 if (len != sizeof(hlp) + hlp.num_counters * sizeof(struct ebt_counter))
1199 return -EINVAL;
1200 if (hlp.num_counters == 0)
1201 return -EINVAL;
1202
18bc89aa 1203 if (!(tmp = vmalloc(hlp.num_counters * sizeof(*tmp)))) {
1da177e4
LT
1204 MEMPRINT("Update_counters && nomemory\n");
1205 return -ENOMEM;
1206 }
1207
1208 t = find_table_lock(hlp.name, &ret, &ebt_mutex);
1209 if (!t)
1210 goto free_tmp;
1211
1212 if (hlp.num_counters != t->private->nentries) {
1213 BUGPRINT("Wrong nr of counters\n");
1214 ret = -EINVAL;
1215 goto unlock_mutex;
1216 }
1217
1218 if ( copy_from_user(tmp, hlp.counters,
1219 hlp.num_counters * sizeof(struct ebt_counter)) ) {
1220 BUGPRINT("Updata_counters && !cfu\n");
1221 ret = -EFAULT;
1222 goto unlock_mutex;
1223 }
1224
1225 /* we want an atomic add of the counters */
1226 write_lock_bh(&t->lock);
1227
1228 /* we add to the counters of the first cpu */
1229 for (i = 0; i < hlp.num_counters; i++) {
1230 t->private->counters[i].pcnt += tmp[i].pcnt;
1231 t->private->counters[i].bcnt += tmp[i].bcnt;
1232 }
1233
1234 write_unlock_bh(&t->lock);
1235 ret = 0;
1236unlock_mutex:
57b47a53 1237 mutex_unlock(&ebt_mutex);
1da177e4
LT
1238free_tmp:
1239 vfree(tmp);
1240 return ret;
1241}
1242
1243static inline int ebt_make_matchname(struct ebt_entry_match *m,
1e419cd9 1244 char *base, char __user *ubase)
1da177e4 1245{
1e419cd9 1246 char __user *hlp = ubase + ((char *)m - base);
1da177e4
LT
1247 if (copy_to_user(hlp, m->u.match->name, EBT_FUNCTION_MAXNAMELEN))
1248 return -EFAULT;
1249 return 0;
1250}
1251
1252static inline int ebt_make_watchername(struct ebt_entry_watcher *w,
1e419cd9 1253 char *base, char __user *ubase)
1da177e4 1254{
1e419cd9 1255 char __user *hlp = ubase + ((char *)w - base);
1da177e4
LT
1256 if (copy_to_user(hlp , w->u.watcher->name, EBT_FUNCTION_MAXNAMELEN))
1257 return -EFAULT;
1258 return 0;
1259}
1260
1e419cd9 1261static inline int ebt_make_names(struct ebt_entry *e, char *base, char __user *ubase)
1da177e4
LT
1262{
1263 int ret;
1e419cd9 1264 char __user *hlp;
1da177e4
LT
1265 struct ebt_entry_target *t;
1266
40642f95 1267 if (e->bitmask == 0)
1da177e4
LT
1268 return 0;
1269
1e419cd9 1270 hlp = ubase + (((char *)e + e->target_offset) - base);
1da177e4 1271 t = (struct ebt_entry_target *)(((char *)e) + e->target_offset);
9d6f229f 1272
1da177e4
LT
1273 ret = EBT_MATCH_ITERATE(e, ebt_make_matchname, base, ubase);
1274 if (ret != 0)
1275 return ret;
1276 ret = EBT_WATCHER_ITERATE(e, ebt_make_watchername, base, ubase);
1277 if (ret != 0)
1278 return ret;
1279 if (copy_to_user(hlp, t->u.target->name, EBT_FUNCTION_MAXNAMELEN))
1280 return -EFAULT;
1281 return 0;
1282}
1283
57b47a53 1284/* called with ebt_mutex locked */
1da177e4
LT
1285static int copy_everything_to_user(struct ebt_table *t, void __user *user,
1286 int *len, int cmd)
1287{
1288 struct ebt_replace tmp;
1289 struct ebt_counter *counterstmp, *oldcounters;
1290 unsigned int entries_size, nentries;
1291 char *entries;
1292
1293 if (cmd == EBT_SO_GET_ENTRIES) {
1294 entries_size = t->private->entries_size;
1295 nentries = t->private->nentries;
1296 entries = t->private->entries;
1297 oldcounters = t->private->counters;
1298 } else {
1299 entries_size = t->table->entries_size;
1300 nentries = t->table->nentries;
1301 entries = t->table->entries;
1302 oldcounters = t->table->counters;
1303 }
1304
1305 if (copy_from_user(&tmp, user, sizeof(tmp))) {
1306 BUGPRINT("Cfu didn't work\n");
1307 return -EFAULT;
1308 }
1309
1310 if (*len != sizeof(struct ebt_replace) + entries_size +
1311 (tmp.num_counters? nentries * sizeof(struct ebt_counter): 0)) {
1312 BUGPRINT("Wrong size\n");
1313 return -EINVAL;
1314 }
1315
1316 if (tmp.nentries != nentries) {
1317 BUGPRINT("Nentries wrong\n");
1318 return -EINVAL;
1319 }
1320
1321 if (tmp.entries_size != entries_size) {
1322 BUGPRINT("Wrong size\n");
1323 return -EINVAL;
1324 }
1325
1326 /* userspace might not need the counters */
1327 if (tmp.num_counters) {
1328 if (tmp.num_counters != nentries) {
1329 BUGPRINT("Num_counters wrong\n");
1330 return -EINVAL;
1331 }
18bc89aa 1332 counterstmp = vmalloc(nentries * sizeof(*counterstmp));
1da177e4
LT
1333 if (!counterstmp) {
1334 MEMPRINT("Couldn't copy counters, out of memory\n");
1335 return -ENOMEM;
1336 }
1337 write_lock_bh(&t->lock);
1338 get_counters(oldcounters, counterstmp, nentries);
1339 write_unlock_bh(&t->lock);
1340
1341 if (copy_to_user(tmp.counters, counterstmp,
1342 nentries * sizeof(struct ebt_counter))) {
1343 BUGPRINT("Couldn't copy counters to userspace\n");
1344 vfree(counterstmp);
1345 return -EFAULT;
1346 }
1347 vfree(counterstmp);
1348 }
1349
1350 if (copy_to_user(tmp.entries, entries, entries_size)) {
1351 BUGPRINT("Couldn't copy entries to userspace\n");
1352 return -EFAULT;
1353 }
1354 /* set the match/watcher/target names right */
1355 return EBT_ENTRY_ITERATE(entries, entries_size,
1356 ebt_make_names, entries, tmp.entries);
1357}
1358
1359static int do_ebt_set_ctl(struct sock *sk,
1360 int cmd, void __user *user, unsigned int len)
1361{
1362 int ret;
1363
1364 switch(cmd) {
1365 case EBT_SO_SET_ENTRIES:
1366 ret = do_replace(user, len);
1367 break;
1368 case EBT_SO_SET_COUNTERS:
1369 ret = update_counters(user, len);
1370 break;
1371 default:
1372 ret = -EINVAL;
1373 }
1374 return ret;
1375}
1376
1377static int do_ebt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1378{
1379 int ret;
1380 struct ebt_replace tmp;
1381 struct ebt_table *t;
1382
1383 if (copy_from_user(&tmp, user, sizeof(tmp)))
1384 return -EFAULT;
1385
1386 t = find_table_lock(tmp.name, &ret, &ebt_mutex);
1387 if (!t)
1388 return ret;
1389
1390 switch(cmd) {
1391 case EBT_SO_GET_INFO:
1392 case EBT_SO_GET_INIT_INFO:
1393 if (*len != sizeof(struct ebt_replace)){
1394 ret = -EINVAL;
57b47a53 1395 mutex_unlock(&ebt_mutex);
1da177e4
LT
1396 break;
1397 }
1398 if (cmd == EBT_SO_GET_INFO) {
1399 tmp.nentries = t->private->nentries;
1400 tmp.entries_size = t->private->entries_size;
1401 tmp.valid_hooks = t->valid_hooks;
1402 } else {
1403 tmp.nentries = t->table->nentries;
1404 tmp.entries_size = t->table->entries_size;
1405 tmp.valid_hooks = t->table->valid_hooks;
1406 }
57b47a53 1407 mutex_unlock(&ebt_mutex);
1da177e4
LT
1408 if (copy_to_user(user, &tmp, *len) != 0){
1409 BUGPRINT("c2u Didn't work\n");
1410 ret = -EFAULT;
1411 break;
1412 }
1413 ret = 0;
1414 break;
1415
1416 case EBT_SO_GET_ENTRIES:
1417 case EBT_SO_GET_INIT_ENTRIES:
1418 ret = copy_everything_to_user(t, user, len, cmd);
57b47a53 1419 mutex_unlock(&ebt_mutex);
1da177e4
LT
1420 break;
1421
1422 default:
57b47a53 1423 mutex_unlock(&ebt_mutex);
1da177e4
LT
1424 ret = -EINVAL;
1425 }
1426
1427 return ret;
1428}
1429
1430static struct nf_sockopt_ops ebt_sockopts =
74ca4e5a
AM
1431{
1432 .pf = PF_INET,
1433 .set_optmin = EBT_BASE_CTL,
1434 .set_optmax = EBT_SO_SET_MAX + 1,
1435 .set = do_ebt_set_ctl,
1436 .get_optmin = EBT_BASE_CTL,
1437 .get_optmax = EBT_SO_GET_MAX + 1,
1438 .get = do_ebt_get_ctl,
16fcec35 1439 .owner = THIS_MODULE,
1da177e4
LT
1440};
1441
65b4b4e8 1442static int __init ebtables_init(void)
1da177e4
LT
1443{
1444 int ret;
1445
043ef46c
JE
1446 ret = xt_register_target(&ebt_standard_target);
1447 if (ret < 0)
1da177e4 1448 return ret;
043ef46c
JE
1449 ret = nf_register_sockopt(&ebt_sockopts);
1450 if (ret < 0) {
1451 xt_unregister_target(&ebt_standard_target);
1452 return ret;
1453 }
1da177e4 1454
a887c1c1 1455 printk(KERN_INFO "Ebtables v2.0 registered\n");
1da177e4
LT
1456 return 0;
1457}
1458
65b4b4e8 1459static void __exit ebtables_fini(void)
1da177e4
LT
1460{
1461 nf_unregister_sockopt(&ebt_sockopts);
043ef46c 1462 xt_unregister_target(&ebt_standard_target);
a887c1c1 1463 printk(KERN_INFO "Ebtables v2.0 unregistered\n");
1da177e4
LT
1464}
1465
1466EXPORT_SYMBOL(ebt_register_table);
1467EXPORT_SYMBOL(ebt_unregister_table);
1da177e4 1468EXPORT_SYMBOL(ebt_do_table);
65b4b4e8
AM
1469module_init(ebtables_init);
1470module_exit(ebtables_fini);
1da177e4 1471MODULE_LICENSE("GPL");