blob: 1ac01b1286219475cde625bb921887fc3645d7a3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Packet matching code for ARP packets.
3 *
4 * Based heavily, if not almost entirely, upon ip_tables.c framework.
5 *
6 * Some ARP specific bits are:
7 *
8 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
9 *
10 */
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +020011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel.h>
13#include <linux/skbuff.h>
14#include <linux/netdevice.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080015#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/if_arp.h>
17#include <linux/kmod.h>
18#include <linux/vmalloc.h>
19#include <linux/proc_fs.h>
20#include <linux/module.h>
21#include <linux/init.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080022#include <linux/mutex.h>
Patrick McHardyd6a2ba02007-12-17 22:26:54 -080023#include <linux/err.h>
24#include <net/compat.h>
Alexey Dobriyan79df3412008-01-31 04:04:32 -080025#include <net/sock.h>
Patrick McHardyd6a2ba02007-12-17 22:26:54 -080026#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Harald Welte2e4e6a12006-01-12 13:30:04 -080028#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/netfilter_arp/arp_tables.h>
Jan Engelhardte3eaa992009-06-17 22:14:54 +020030#include "../../netfilter/xt_repldata.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32MODULE_LICENSE("GPL");
33MODULE_AUTHOR("David S. Miller <davem@redhat.com>");
34MODULE_DESCRIPTION("arptables core");
35
36/*#define DEBUG_ARP_TABLES*/
37/*#define DEBUG_ARP_TABLES_USER*/
38
39#ifdef DEBUG_ARP_TABLES
40#define dprintf(format, args...) printk(format , ## args)
41#else
42#define dprintf(format, args...)
43#endif
44
45#ifdef DEBUG_ARP_TABLES_USER
46#define duprintf(format, args...) printk(format , ## args)
47#else
48#define duprintf(format, args...)
49#endif
50
51#ifdef CONFIG_NETFILTER_DEBUG
Stephen Hemmingeraf567602010-05-13 15:00:20 +020052#define ARP_NF_ASSERT(x) WARN_ON(!(x))
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#else
54#define ARP_NF_ASSERT(x)
55#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Jan Engelhardte3eaa992009-06-17 22:14:54 +020057void *arpt_alloc_initial_table(const struct xt_table *info)
58{
59 return xt_alloc_initial_table(arpt, ARPT);
60}
61EXPORT_SYMBOL_GPL(arpt_alloc_initial_table);
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static inline int arp_devaddr_compare(const struct arpt_devaddr_info *ap,
Jan Engelhardt5452e422008-04-14 11:15:35 +020064 const char *hdr_addr, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 int i, ret;
67
68 if (len > ARPT_DEV_ADDR_LEN_MAX)
69 len = ARPT_DEV_ADDR_LEN_MAX;
70
71 ret = 0;
72 for (i = 0; i < len; i++)
73 ret |= (hdr_addr[i] ^ ap->addr[i]) & ap->mask[i];
74
75 return (ret != 0);
76}
77
Eric Dumazetddc214c2009-02-18 17:47:50 +010078/*
79 * Unfortunatly, _b and _mask are not aligned to an int (or long int)
80 * Some arches dont care, unrolling the loop is a win on them.
Eric Dumazet35c7f6d2009-03-24 14:15:22 -070081 * For other arches, we only have a 16bit alignement.
Eric Dumazetddc214c2009-02-18 17:47:50 +010082 */
83static unsigned long ifname_compare(const char *_a, const char *_b, const char *_mask)
84{
85#ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Eric Dumazetb8dfe492009-03-25 17:31:52 +010086 unsigned long ret = ifname_compare_aligned(_a, _b, _mask);
Eric Dumazetddc214c2009-02-18 17:47:50 +010087#else
88 unsigned long ret = 0;
Eric Dumazet35c7f6d2009-03-24 14:15:22 -070089 const u16 *a = (const u16 *)_a;
90 const u16 *b = (const u16 *)_b;
91 const u16 *mask = (const u16 *)_mask;
Eric Dumazetddc214c2009-02-18 17:47:50 +010092 int i;
93
Eric Dumazet35c7f6d2009-03-24 14:15:22 -070094 for (i = 0; i < IFNAMSIZ/sizeof(u16); i++)
95 ret |= (a[i] ^ b[i]) & mask[i];
Eric Dumazetddc214c2009-02-18 17:47:50 +010096#endif
97 return ret;
98}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/* Returns whether packet matches rule or not. */
101static inline int arp_packet_match(const struct arphdr *arphdr,
102 struct net_device *dev,
103 const char *indev,
104 const char *outdev,
105 const struct arpt_arp *arpinfo)
106{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200107 const char *arpptr = (char *)(arphdr + 1);
108 const char *src_devaddr, *tgt_devaddr;
Al Viro59b8bfd2006-09-28 14:21:07 -0700109 __be32 src_ipaddr, tgt_ipaddr;
Eric Dumazetddc214c2009-02-18 17:47:50 +0100110 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Jan Engelhardte79ec502007-12-17 22:44:06 -0800112#define FWINV(bool, invflg) ((bool) ^ !!(arpinfo->invflags & (invflg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 if (FWINV((arphdr->ar_op & arpinfo->arpop_mask) != arpinfo->arpop,
115 ARPT_INV_ARPOP)) {
116 dprintf("ARP operation field mismatch.\n");
117 dprintf("ar_op: %04x info->arpop: %04x info->arpop_mask: %04x\n",
118 arphdr->ar_op, arpinfo->arpop, arpinfo->arpop_mask);
119 return 0;
120 }
121
122 if (FWINV((arphdr->ar_hrd & arpinfo->arhrd_mask) != arpinfo->arhrd,
123 ARPT_INV_ARPHRD)) {
124 dprintf("ARP hardware address format mismatch.\n");
125 dprintf("ar_hrd: %04x info->arhrd: %04x info->arhrd_mask: %04x\n",
126 arphdr->ar_hrd, arpinfo->arhrd, arpinfo->arhrd_mask);
127 return 0;
128 }
129
130 if (FWINV((arphdr->ar_pro & arpinfo->arpro_mask) != arpinfo->arpro,
131 ARPT_INV_ARPPRO)) {
132 dprintf("ARP protocol address format mismatch.\n");
133 dprintf("ar_pro: %04x info->arpro: %04x info->arpro_mask: %04x\n",
134 arphdr->ar_pro, arpinfo->arpro, arpinfo->arpro_mask);
135 return 0;
136 }
137
138 if (FWINV((arphdr->ar_hln & arpinfo->arhln_mask) != arpinfo->arhln,
139 ARPT_INV_ARPHLN)) {
140 dprintf("ARP hardware address length mismatch.\n");
141 dprintf("ar_hln: %02x info->arhln: %02x info->arhln_mask: %02x\n",
142 arphdr->ar_hln, arpinfo->arhln, arpinfo->arhln_mask);
143 return 0;
144 }
145
146 src_devaddr = arpptr;
147 arpptr += dev->addr_len;
148 memcpy(&src_ipaddr, arpptr, sizeof(u32));
149 arpptr += sizeof(u32);
150 tgt_devaddr = arpptr;
151 arpptr += dev->addr_len;
152 memcpy(&tgt_ipaddr, arpptr, sizeof(u32));
153
154 if (FWINV(arp_devaddr_compare(&arpinfo->src_devaddr, src_devaddr, dev->addr_len),
155 ARPT_INV_SRCDEVADDR) ||
156 FWINV(arp_devaddr_compare(&arpinfo->tgt_devaddr, tgt_devaddr, dev->addr_len),
157 ARPT_INV_TGTDEVADDR)) {
158 dprintf("Source or target device address mismatch.\n");
159
160 return 0;
161 }
162
163 if (FWINV((src_ipaddr & arpinfo->smsk.s_addr) != arpinfo->src.s_addr,
164 ARPT_INV_SRCIP) ||
165 FWINV(((tgt_ipaddr & arpinfo->tmsk.s_addr) != arpinfo->tgt.s_addr),
166 ARPT_INV_TGTIP)) {
167 dprintf("Source or target IP address mismatch.\n");
168
Harvey Harrisoncffee382008-10-31 00:53:08 -0700169 dprintf("SRC: %pI4. Mask: %pI4. Target: %pI4.%s\n",
170 &src_ipaddr,
171 &arpinfo->smsk.s_addr,
172 &arpinfo->src.s_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 arpinfo->invflags & ARPT_INV_SRCIP ? " (INV)" : "");
Harvey Harrisoncffee382008-10-31 00:53:08 -0700174 dprintf("TGT: %pI4 Mask: %pI4 Target: %pI4.%s\n",
175 &tgt_ipaddr,
176 &arpinfo->tmsk.s_addr,
177 &arpinfo->tgt.s_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 arpinfo->invflags & ARPT_INV_TGTIP ? " (INV)" : "");
179 return 0;
180 }
181
182 /* Look for ifname matches. */
Eric Dumazetddc214c2009-02-18 17:47:50 +0100183 ret = ifname_compare(indev, arpinfo->iniface, arpinfo->iniface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 if (FWINV(ret != 0, ARPT_INV_VIA_IN)) {
186 dprintf("VIA in mismatch (%s vs %s).%s\n",
187 indev, arpinfo->iniface,
188 arpinfo->invflags&ARPT_INV_VIA_IN ?" (INV)":"");
189 return 0;
190 }
191
Eric Dumazetddc214c2009-02-18 17:47:50 +0100192 ret = ifname_compare(outdev, arpinfo->outiface, arpinfo->outiface_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 if (FWINV(ret != 0, ARPT_INV_VIA_OUT)) {
195 dprintf("VIA out mismatch (%s vs %s).%s\n",
196 outdev, arpinfo->outiface,
197 arpinfo->invflags&ARPT_INV_VIA_OUT ?" (INV)":"");
198 return 0;
199 }
200
201 return 1;
Jan Engelhardte79ec502007-12-17 22:44:06 -0800202#undef FWINV
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205static inline int arp_checkentry(const struct arpt_arp *arp)
206{
207 if (arp->flags & ~ARPT_F_MASK) {
208 duprintf("Unknown flag bits set: %08X\n",
209 arp->flags & ~ARPT_F_MASK);
210 return 0;
211 }
212 if (arp->invflags & ~ARPT_INV_MASK) {
213 duprintf("Unknown invflag bits set: %08X\n",
214 arp->invflags & ~ARPT_INV_MASK);
215 return 0;
216 }
217
218 return 1;
219}
220
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200221static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200222arpt_error(struct sk_buff *skb, const struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 if (net_ratelimit())
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200225 pr_err("arp_tables: error: '%s'\n",
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200226 (const char *)par->targinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 return NF_DROP;
229}
230
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200231static inline const struct arpt_entry_target *
232arpt_get_target_c(const struct arpt_entry *e)
233{
234 return arpt_get_target((struct arpt_entry *)e);
235}
236
237static inline struct arpt_entry *
238get_entry(const void *base, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
240 return (struct arpt_entry *)(base + offset);
241}
242
Jan Engelhardt98e86402009-04-15 21:06:05 +0200243static inline __pure
244struct arpt_entry *arpt_next_entry(const struct arpt_entry *entry)
245{
246 return (void *)entry + entry->next_offset;
247}
248
Herbert Xu3db05fe2007-10-15 00:53:15 -0700249unsigned int arpt_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 unsigned int hook,
251 const struct net_device *in,
252 const struct net_device *out,
Jan Engelhardt4abff072008-04-14 11:15:43 +0200253 struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Eric Dumazetddc214c2009-02-18 17:47:50 +0100255 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 unsigned int verdict = NF_DROP;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200257 const struct arphdr *arp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 struct arpt_entry *e, *back;
259 const char *indev, *outdev;
260 void *table_base;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200261 const struct xt_table_info *private;
Jan Engelhardtde74c162009-07-05 18:26:37 +0200262 struct xt_action_param acpar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Pavel Emelyanov988b7052008-03-03 12:20:57 -0800264 if (!pskb_may_pull(skb, arp_hdr_len(skb->dev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return NF_DROP;
266
267 indev = in ? in->name : nulldevname;
268 outdev = out ? out->name : nulldevname;
269
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700270 xt_info_rdlock_bh();
271 private = table->private;
272 table_base = private->entries[smp_processor_id()];
Stephen Hemminger78454472009-02-20 10:35:32 +0100273
Harald Welte2e4e6a12006-01-12 13:30:04 -0800274 e = get_entry(table_base, private->hook_entry[hook]);
275 back = get_entry(table_base, private->underflow[hook]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Jan Engelhardtde74c162009-07-05 18:26:37 +0200277 acpar.in = in;
278 acpar.out = out;
279 acpar.hooknum = hook;
280 acpar.family = NFPROTO_ARP;
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200281 acpar.hotdrop = false;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200282
Herbert Xu3db05fe2007-10-15 00:53:15 -0700283 arp = arp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 do {
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200285 const struct arpt_entry_target *t;
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200286 int hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200288 if (!arp_packet_match(arp, skb->dev, indev, outdev, &e->arp)) {
Jan Engelhardt98e86402009-04-15 21:06:05 +0200289 e = arpt_next_entry(e);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200290 continue;
291 }
292
293 hdr_len = sizeof(*arp) + (2 * sizeof(struct in_addr)) +
294 (2 * skb->dev->addr_len);
295 ADD_COUNTER(e->counters, hdr_len, 1);
296
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200297 t = arpt_get_target_c(e);
Jan Engelhardta1ff4ac2009-04-15 21:28:39 +0200298
299 /* Standard target? */
300 if (!t->u.kernel.target->target) {
301 int v;
302
303 v = ((struct arpt_standard_target *)t)->verdict;
304 if (v < 0) {
305 /* Pop from stack? */
306 if (v != ARPT_RETURN) {
307 verdict = (unsigned)(-v) - 1;
308 break;
309 }
310 e = back;
311 back = get_entry(table_base, back->comefrom);
312 continue;
313 }
314 if (table_base + v
315 != arpt_next_entry(e)) {
316 /* Save old back ptr in next entry */
317 struct arpt_entry *next = arpt_next_entry(e);
318 next->comefrom = (void *)back - table_base;
319
320 /* set back pointer to next entry */
321 back = next;
322 }
323
324 e = get_entry(table_base, v);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200325 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200327
328 /* Targets which reenter must return
329 * abs. verdicts
330 */
Jan Engelhardtde74c162009-07-05 18:26:37 +0200331 acpar.target = t->u.kernel.target;
332 acpar.targinfo = t->data;
333 verdict = t->u.kernel.target->target(skb, &acpar);
Jan Engelhardt7a6b1c42009-04-15 21:35:33 +0200334
335 /* Target might have changed stuff. */
336 arp = arp_hdr(skb);
337
338 if (verdict == ARPT_CONTINUE)
339 e = arpt_next_entry(e);
340 else
341 /* Verdict */
342 break;
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200343 } while (!acpar.hotdrop);
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700344 xt_info_rdunlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Jan Engelhardtb4ba2612009-07-07 20:54:30 +0200346 if (acpar.hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return NF_DROP;
348 else
349 return verdict;
350}
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352/* All zeroes == unconditional rule. */
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200353static inline bool unconditional(const struct arpt_arp *arp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200355 static const struct arpt_arp uncond;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Jan Engelhardt47901dc2009-07-09 23:00:19 +0200357 return memcmp(arp, &uncond, sizeof(uncond)) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
360/* Figures out from what hook each rule can be called: returns 0 if
361 * there are loops. Puts hook bitmask in comefrom.
362 */
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200363static int mark_source_chains(const struct xt_table_info *newinfo,
Eric Dumazet31836062005-12-13 23:13:48 -0800364 unsigned int valid_hooks, void *entry0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 unsigned int hook;
367
368 /* No recursion; use packet counter to save back ptrs (reset
369 * to 0 as we leave), and comefrom to save source hook bitmask.
370 */
371 for (hook = 0; hook < NF_ARP_NUMHOOKS; hook++) {
372 unsigned int pos = newinfo->hook_entry[hook];
373 struct arpt_entry *e
Eric Dumazet31836062005-12-13 23:13:48 -0800374 = (struct arpt_entry *)(entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 if (!(valid_hooks & (1 << hook)))
377 continue;
378
379 /* Set initial back pointer. */
380 e->counters.pcnt = pos;
381
382 for (;;) {
Jan Engelhardt5452e422008-04-14 11:15:35 +0200383 const struct arpt_standard_target *t
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200384 = (void *)arpt_get_target_c(e);
Al Viroe1b4b9f2006-12-12 00:29:52 -0800385 int visited = e->comefrom & (1 << hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 if (e->comefrom & (1 << NF_ARP_NUMHOOKS)) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200388 pr_notice("arptables: loop hook %u pos %u %08X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 hook, pos, e->comefrom);
390 return 0;
391 }
392 e->comefrom
393 |= ((1 << hook) | (1 << NF_ARP_NUMHOOKS));
394
395 /* Unconditional return/END. */
Joe Perches3666ed12009-11-23 23:17:06 +0100396 if ((e->target_offset == sizeof(struct arpt_entry) &&
397 (strcmp(t->target.u.user.name,
398 ARPT_STANDARD_TARGET) == 0) &&
399 t->verdict < 0 && unconditional(&e->arp)) ||
400 visited) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 unsigned int oldpos, size;
402
Patrick McHardy1f9352a2009-03-25 19:26:35 +0100403 if ((strcmp(t->target.u.user.name,
404 ARPT_STANDARD_TARGET) == 0) &&
405 t->verdict < -NF_MAX_VERDICT - 1) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800406 duprintf("mark_source_chains: bad "
407 "negative verdict (%i)\n",
408 t->verdict);
409 return 0;
410 }
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /* Return: backtrack through the last
413 * big jump.
414 */
415 do {
416 e->comefrom ^= (1<<NF_ARP_NUMHOOKS);
417 oldpos = pos;
418 pos = e->counters.pcnt;
419 e->counters.pcnt = 0;
420
421 /* We're at the start. */
422 if (pos == oldpos)
423 goto next;
424
425 e = (struct arpt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800426 (entry0 + pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 } while (oldpos == pos + e->next_offset);
428
429 /* Move along one */
430 size = e->next_offset;
431 e = (struct arpt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800432 (entry0 + pos + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 e->counters.pcnt = pos;
434 pos += size;
435 } else {
436 int newpos = t->verdict;
437
438 if (strcmp(t->target.u.user.name,
Joe Perches3666ed12009-11-23 23:17:06 +0100439 ARPT_STANDARD_TARGET) == 0 &&
440 newpos >= 0) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800441 if (newpos > newinfo->size -
442 sizeof(struct arpt_entry)) {
443 duprintf("mark_source_chains: "
444 "bad verdict (%i)\n",
445 newpos);
446 return 0;
447 }
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 /* This a jump; chase it. */
450 duprintf("Jump rule %u -> %u\n",
451 pos, newpos);
452 } else {
453 /* ... this is a fallthru */
454 newpos = pos + e->next_offset;
455 }
456 e = (struct arpt_entry *)
Eric Dumazet31836062005-12-13 23:13:48 -0800457 (entry0 + newpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 e->counters.pcnt = pos;
459 pos = newpos;
460 }
461 }
462 next:
463 duprintf("Finished chain %u\n", hook);
464 }
465 return 1;
466}
467
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200468static inline int check_entry(const struct arpt_entry *e, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Jan Engelhardt5452e422008-04-14 11:15:35 +0200470 const struct arpt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 if (!arp_checkentry(&e->arp)) {
473 duprintf("arp_tables: arp check failed %p %s.\n", e, name);
474 return -EINVAL;
475 }
476
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800477 if (e->target_offset + sizeof(struct arpt_entry_target) > e->next_offset)
478 return -EINVAL;
479
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200480 t = arpt_get_target_c(e);
Dmitry Mishin590bdf72006-10-30 15:12:55 -0800481 if (e->target_offset + t->u.target_size > e->next_offset)
482 return -EINVAL;
483
Patrick McHardyfb5b6092007-12-17 21:56:33 -0800484 return 0;
485}
486
487static inline int check_target(struct arpt_entry *e, const char *name)
488{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200489 struct arpt_entry_target *t = arpt_get_target(e);
Patrick McHardyfb5b6092007-12-17 21:56:33 -0800490 int ret;
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200491 struct xt_tgchk_param par = {
492 .table = name,
493 .entryinfo = e,
494 .target = t->u.kernel.target,
495 .targinfo = t->data,
496 .hook_mask = e->comefrom,
Jan Engelhardt916a9172008-10-08 11:35:20 +0200497 .family = NFPROTO_ARP,
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200498 };
Patrick McHardyfb5b6092007-12-17 21:56:33 -0800499
Jan Engelhardt916a9172008-10-08 11:35:20 +0200500 ret = xt_check_target(&par, t->u.target_size - sizeof(*t), 0, false);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200501 if (ret < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 duprintf("arp_tables: check failed for `%s'.\n",
503 t->u.kernel.target->name);
Jan Engelhardt367c6792008-10-08 11:35:17 +0200504 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
Jan Engelhardt367c6792008-10-08 11:35:17 +0200506 return 0;
Patrick McHardyfb5b6092007-12-17 21:56:33 -0800507}
508
509static inline int
Jan Engelhardt05595182010-02-24 18:33:43 +0100510find_check_entry(struct arpt_entry *e, const char *name, unsigned int size)
Patrick McHardyfb5b6092007-12-17 21:56:33 -0800511{
512 struct arpt_entry_target *t;
Jan Engelhardt95eea852008-04-14 11:15:43 +0200513 struct xt_target *target;
Patrick McHardyfb5b6092007-12-17 21:56:33 -0800514 int ret;
515
516 ret = check_entry(e, name);
517 if (ret)
518 return ret;
519
520 t = arpt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200521 target = xt_request_find_target(NFPROTO_ARP, t->u.user.name,
522 t->u.user.revision);
523 if (IS_ERR(target)) {
Patrick McHardyfb5b6092007-12-17 21:56:33 -0800524 duprintf("find_check_entry: `%s' not found\n", t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +0200525 ret = PTR_ERR(target);
Patrick McHardyfb5b6092007-12-17 21:56:33 -0800526 goto out;
527 }
528 t->u.kernel.target = target;
529
530 ret = check_target(e, name);
531 if (ret)
532 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return 0;
Patrick McHardy3cdc7c92006-03-20 18:00:36 -0800534err:
535 module_put(t->u.kernel.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536out:
537 return ret;
538}
539
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200540static bool check_underflow(const struct arpt_entry *e)
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200541{
542 const struct arpt_entry_target *t;
543 unsigned int verdict;
544
545 if (!unconditional(&e->arp))
546 return false;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200547 t = arpt_get_target_c(e);
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200548 if (strcmp(t->u.user.name, XT_STANDARD_TARGET) != 0)
549 return false;
550 verdict = ((struct arpt_standard_target *)t)->verdict;
551 verdict = -verdict - 1;
552 return verdict == NF_DROP || verdict == NF_ACCEPT;
553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555static inline int check_entry_size_and_hooks(struct arpt_entry *e,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800556 struct xt_table_info *newinfo,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200557 const unsigned char *base,
558 const unsigned char *limit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 const unsigned int *hook_entries,
560 const unsigned int *underflows,
Jan Engelhardt05595182010-02-24 18:33:43 +0100561 unsigned int valid_hooks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 unsigned int h;
564
Joe Perches3666ed12009-11-23 23:17:06 +0100565 if ((unsigned long)e % __alignof__(struct arpt_entry) != 0 ||
566 (unsigned char *)e + sizeof(struct arpt_entry) >= limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 duprintf("Bad offset %p\n", e);
568 return -EINVAL;
569 }
570
571 if (e->next_offset
572 < sizeof(struct arpt_entry) + sizeof(struct arpt_entry_target)) {
573 duprintf("checking: element %p size %u\n",
574 e, e->next_offset);
575 return -EINVAL;
576 }
577
578 /* Check hooks & underflows */
579 for (h = 0; h < NF_ARP_NUMHOOKS; h++) {
Jan Engelhardta7d51732009-07-18 14:52:58 +0200580 if (!(valid_hooks & (1 << h)))
581 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if ((unsigned char *)e - base == hook_entries[h])
583 newinfo->hook_entry[h] = hook_entries[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200584 if ((unsigned char *)e - base == underflows[h]) {
Jan Engelhardte2fe35c2009-07-18 15:22:30 +0200585 if (!check_underflow(e)) {
586 pr_err("Underflows must be unconditional and "
587 "use the STANDARD target with "
588 "ACCEPT/DROP\n");
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200589 return -EINVAL;
590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 newinfo->underflow[h] = underflows[h];
Jan Engelhardt90e7d4a2009-07-09 22:54:53 +0200592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 /* Clear counters and comefrom */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800596 e->counters = ((struct xt_counters) { 0, 0 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 e->comefrom = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return 0;
599}
600
Jan Engelhardt05595182010-02-24 18:33:43 +0100601static inline void cleanup_entry(struct arpt_entry *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200603 struct xt_tgdtor_param par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 struct arpt_entry_target *t;
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 t = arpt_get_target(e);
Jan Engelhardta2df1642008-10-08 11:35:19 +0200607 par.target = t->u.kernel.target;
608 par.targinfo = t->data;
Jan Engelhardt916a9172008-10-08 11:35:20 +0200609 par.family = NFPROTO_ARP;
Jan Engelhardta2df1642008-10-08 11:35:19 +0200610 if (par.target->destroy != NULL)
611 par.target->destroy(&par);
612 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
615/* Checks and translates the user-supplied table segment (held in
616 * newinfo).
617 */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100618static int translate_table(struct xt_table_info *newinfo, void *entry0,
619 const struct arpt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100621 struct arpt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 unsigned int i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100623 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Jan Engelhardt0f234212010-02-24 18:36:04 +0100625 newinfo->size = repl->size;
626 newinfo->number = repl->num_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 /* Init all hooks to impossible value. */
629 for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
630 newinfo->hook_entry[i] = 0xFFFFFFFF;
631 newinfo->underflow[i] = 0xFFFFFFFF;
632 }
633
634 duprintf("translate_table: size %u\n", newinfo->size);
635 i = 0;
636
637 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100638 xt_entry_foreach(iter, entry0, newinfo->size) {
639 ret = check_entry_size_and_hooks(iter, newinfo, entry0,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100640 entry0 + repl->size,
641 repl->hook_entry,
642 repl->underflow,
643 repl->valid_hooks);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100644 if (ret != 0)
645 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100646 ++i;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +0200647 if (strcmp(arpt_get_target(iter)->u.user.name,
648 XT_ERROR_TARGET) == 0)
649 ++newinfo->stacksize;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 duprintf("translate_table: ARPT_ENTRY_ITERATE gives %d\n", ret);
652 if (ret != 0)
653 return ret;
654
Jan Engelhardt0f234212010-02-24 18:36:04 +0100655 if (i != repl->num_entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 duprintf("translate_table: %u not %u entries\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100657 i, repl->num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return -EINVAL;
659 }
660
661 /* Check hooks all assigned */
662 for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
663 /* Only hooks which are valid */
Jan Engelhardt0f234212010-02-24 18:36:04 +0100664 if (!(repl->valid_hooks & (1 << i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 continue;
666 if (newinfo->hook_entry[i] == 0xFFFFFFFF) {
667 duprintf("Invalid hook entry %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100668 i, repl->hook_entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return -EINVAL;
670 }
671 if (newinfo->underflow[i] == 0xFFFFFFFF) {
672 duprintf("Invalid underflow %u %u\n",
Jan Engelhardt0f234212010-02-24 18:36:04 +0100673 i, repl->underflow[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return -EINVAL;
675 }
676 }
677
Jan Engelhardt0f234212010-02-24 18:36:04 +0100678 if (!mark_source_chains(newinfo, repl->valid_hooks, entry0)) {
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800679 duprintf("Looping hook\n");
680 return -ELOOP;
681 }
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 /* Finally, each sanity check must pass */
684 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100685 xt_entry_foreach(iter, entry0, newinfo->size) {
Jan Engelhardt0f234212010-02-24 18:36:04 +0100686 ret = find_check_entry(iter, repl->name, repl->size);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100687 if (ret != 0)
688 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100689 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800692 if (ret != 0) {
Jan Engelhardt05595182010-02-24 18:33:43 +0100693 xt_entry_foreach(iter, entry0, newinfo->size) {
694 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100695 break;
Jan Engelhardt05595182010-02-24 18:33:43 +0100696 cleanup_entry(iter);
697 }
Dmitry Mishin74c9c0c2006-12-05 13:43:50 -0800698 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
700
701 /* And one copy for every other CPU */
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700702 for_each_possible_cpu(i) {
Eric Dumazet31836062005-12-13 23:13:48 -0800703 if (newinfo->entries[i] && newinfo->entries[i] != entry0)
704 memcpy(newinfo->entries[i], entry0, newinfo->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
706
707 return ret;
708}
709
Harald Welte2e4e6a12006-01-12 13:30:04 -0800710static void get_counters(const struct xt_table_info *t,
711 struct xt_counters counters[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100713 struct arpt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 unsigned int cpu;
715 unsigned int i;
Eric Dumazet31836062005-12-13 23:13:48 -0800716 unsigned int curcpu;
717
718 /* Instead of clearing (by a previous call to memset())
719 * the counters and using adds, we set the counters
720 * with data used by 'current' CPU
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700721 *
722 * Bottom half has to be disabled to prevent deadlock
723 * if new softirq were to run and call ipt_do_table
Eric Dumazet31836062005-12-13 23:13:48 -0800724 */
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700725 local_bh_disable();
726 curcpu = smp_processor_id();
Eric Dumazet31836062005-12-13 23:13:48 -0800727
728 i = 0;
Jan Engelhardt05595182010-02-24 18:33:43 +0100729 xt_entry_foreach(iter, t->entries[curcpu], t->size) {
730 SET_COUNTER(counters[i], iter->counters.bcnt,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100731 iter->counters.pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100732 ++i;
733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700735 for_each_possible_cpu(cpu) {
Eric Dumazet31836062005-12-13 23:13:48 -0800736 if (cpu == curcpu)
737 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 i = 0;
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700739 xt_info_wrlock(cpu);
Jan Engelhardt05595182010-02-24 18:33:43 +0100740 xt_entry_foreach(iter, t->entries[cpu], t->size) {
741 ADD_COUNTER(counters[i], iter->counters.bcnt,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +0100742 iter->counters.pcnt);
Jan Engelhardt05595182010-02-24 18:33:43 +0100743 ++i;
744 }
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700745 xt_info_wrunlock(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
Stephen Hemminger78454472009-02-20 10:35:32 +0100747 local_bh_enable();
748}
749
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200750static struct xt_counters *alloc_counters(const struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Patrick McHardy27e2c262007-12-17 21:56:48 -0800752 unsigned int countersize;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800753 struct xt_counters *counters;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200754 const struct xt_table_info *private = table->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 /* We need atomic snapshot of counters: rest doesn't change
757 * (other than comefrom, which userspace doesn't care
758 * about).
759 */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800760 countersize = sizeof(struct xt_counters) * private->number;
761 counters = vmalloc_node(countersize, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 if (counters == NULL)
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700764 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Stephen Hemminger942e4a22009-04-28 22:36:33 -0700766 get_counters(private, counters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Patrick McHardy27e2c262007-12-17 21:56:48 -0800768 return counters;
769}
770
771static int copy_entries_to_user(unsigned int total_size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200772 const struct xt_table *table,
Patrick McHardy27e2c262007-12-17 21:56:48 -0800773 void __user *userptr)
774{
775 unsigned int off, num;
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200776 const struct arpt_entry *e;
Patrick McHardy27e2c262007-12-17 21:56:48 -0800777 struct xt_counters *counters;
Jan Engelhardt4abff072008-04-14 11:15:43 +0200778 struct xt_table_info *private = table->private;
Patrick McHardy27e2c262007-12-17 21:56:48 -0800779 int ret = 0;
780 void *loc_cpu_entry;
781
782 counters = alloc_counters(table);
783 if (IS_ERR(counters))
784 return PTR_ERR(counters);
785
Harald Welte2e4e6a12006-01-12 13:30:04 -0800786 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Eric Dumazet31836062005-12-13 23:13:48 -0800787 /* ... then copy entire thing ... */
788 if (copy_to_user(userptr, loc_cpu_entry, total_size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 ret = -EFAULT;
790 goto free_counters;
791 }
792
793 /* FIXME: use iterator macros --RR */
794 /* ... then go back and fix counters and names */
795 for (off = 0, num = 0; off < total_size; off += e->next_offset, num++){
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200796 const struct arpt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Eric Dumazet31836062005-12-13 23:13:48 -0800798 e = (struct arpt_entry *)(loc_cpu_entry + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (copy_to_user(userptr + off
800 + offsetof(struct arpt_entry, counters),
801 &counters[num],
802 sizeof(counters[num])) != 0) {
803 ret = -EFAULT;
804 goto free_counters;
805 }
806
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200807 t = arpt_get_target_c(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (copy_to_user(userptr + off + e->target_offset
809 + offsetof(struct arpt_entry_target,
810 u.user.name),
811 t->u.kernel.target->name,
812 strlen(t->u.kernel.target->name)+1) != 0) {
813 ret = -EFAULT;
814 goto free_counters;
815 }
816 }
817
818 free_counters:
819 vfree(counters);
820 return ret;
821}
822
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800823#ifdef CONFIG_COMPAT
Jan Engelhardt739674f2009-06-26 08:23:19 +0200824static void compat_standard_from_user(void *dst, const void *src)
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800825{
826 int v = *(compat_int_t *)src;
827
828 if (v > 0)
Jan Engelhardtee999d82008-10-08 11:35:01 +0200829 v += xt_compat_calc_jump(NFPROTO_ARP, v);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800830 memcpy(dst, &v, sizeof(v));
831}
832
Jan Engelhardt739674f2009-06-26 08:23:19 +0200833static int compat_standard_to_user(void __user *dst, const void *src)
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800834{
835 compat_int_t cv = *(int *)src;
836
837 if (cv > 0)
Jan Engelhardtee999d82008-10-08 11:35:01 +0200838 cv -= xt_compat_calc_jump(NFPROTO_ARP, cv);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800839 return copy_to_user(dst, &cv, sizeof(cv)) ? -EFAULT : 0;
840}
841
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200842static int compat_calc_entry(const struct arpt_entry *e,
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800843 const struct xt_table_info *info,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200844 const void *base, struct xt_table_info *newinfo)
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800845{
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200846 const struct arpt_entry_target *t;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800847 unsigned int entry_offset;
848 int off, i, ret;
849
850 off = sizeof(struct arpt_entry) - sizeof(struct compat_arpt_entry);
851 entry_offset = (void *)e - base;
852
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200853 t = arpt_get_target_c(e);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800854 off += xt_compat_target_offset(t->u.kernel.target);
855 newinfo->size -= off;
Jan Engelhardtee999d82008-10-08 11:35:01 +0200856 ret = xt_compat_add_offset(NFPROTO_ARP, entry_offset, off);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800857 if (ret)
858 return ret;
859
860 for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
861 if (info->hook_entry[i] &&
862 (e < (struct arpt_entry *)(base + info->hook_entry[i])))
863 newinfo->hook_entry[i] -= off;
864 if (info->underflow[i] &&
865 (e < (struct arpt_entry *)(base + info->underflow[i])))
866 newinfo->underflow[i] -= off;
867 }
868 return 0;
869}
870
871static int compat_table_info(const struct xt_table_info *info,
872 struct xt_table_info *newinfo)
873{
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100874 struct arpt_entry *iter;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800875 void *loc_cpu_entry;
Jan Engelhardt05595182010-02-24 18:33:43 +0100876 int ret;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800877
878 if (!newinfo || !info)
879 return -EINVAL;
880
881 /* we dont care about newinfo->entries[] */
882 memcpy(newinfo, info, offsetof(struct xt_table_info, entries));
883 newinfo->initial_entries = 0;
884 loc_cpu_entry = info->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100885 xt_entry_foreach(iter, loc_cpu_entry, info->size) {
886 ret = compat_calc_entry(iter, info, loc_cpu_entry, newinfo);
887 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +0100888 return ret;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +0100889 }
Jan Engelhardt05595182010-02-24 18:33:43 +0100890 return 0;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800891}
892#endif
893
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200894static int get_info(struct net *net, void __user *user,
895 const int *len, int compat)
Patrick McHardy41acd972007-12-17 22:26:24 -0800896{
897 char name[ARPT_TABLE_MAXNAMELEN];
Jan Engelhardt4abff072008-04-14 11:15:43 +0200898 struct xt_table *t;
Patrick McHardy41acd972007-12-17 22:26:24 -0800899 int ret;
900
901 if (*len != sizeof(struct arpt_getinfo)) {
902 duprintf("length %u != %Zu\n", *len,
903 sizeof(struct arpt_getinfo));
904 return -EINVAL;
905 }
906
907 if (copy_from_user(name, user, sizeof(name)) != 0)
908 return -EFAULT;
909
910 name[ARPT_TABLE_MAXNAMELEN-1] = '\0';
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800911#ifdef CONFIG_COMPAT
912 if (compat)
Jan Engelhardtee999d82008-10-08 11:35:01 +0200913 xt_compat_lock(NFPROTO_ARP);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800914#endif
Jan Engelhardtee999d82008-10-08 11:35:01 +0200915 t = try_then_request_module(xt_find_table_lock(net, NFPROTO_ARP, name),
Patrick McHardy41acd972007-12-17 22:26:24 -0800916 "arptable_%s", name);
917 if (t && !IS_ERR(t)) {
918 struct arpt_getinfo info;
Jan Engelhardt5452e422008-04-14 11:15:35 +0200919 const struct xt_table_info *private = t->private;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800920#ifdef CONFIG_COMPAT
Alexey Dobriyan14c7dbe2010-02-08 11:17:43 -0800921 struct xt_table_info tmp;
922
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800923 if (compat) {
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800924 ret = compat_table_info(private, &tmp);
Jan Engelhardtee999d82008-10-08 11:35:01 +0200925 xt_compat_flush_offsets(NFPROTO_ARP);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800926 private = &tmp;
927 }
928#endif
Patrick McHardy41acd972007-12-17 22:26:24 -0800929 info.valid_hooks = t->valid_hooks;
930 memcpy(info.hook_entry, private->hook_entry,
931 sizeof(info.hook_entry));
932 memcpy(info.underflow, private->underflow,
933 sizeof(info.underflow));
934 info.num_entries = private->number;
935 info.size = private->size;
936 strcpy(info.name, name);
937
938 if (copy_to_user(user, &info, *len) != 0)
939 ret = -EFAULT;
940 else
941 ret = 0;
942 xt_table_unlock(t);
943 module_put(t->me);
944 } else
945 ret = t ? PTR_ERR(t) : -ENOENT;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800946#ifdef CONFIG_COMPAT
947 if (compat)
Jan Engelhardtee999d82008-10-08 11:35:01 +0200948 xt_compat_unlock(NFPROTO_ARP);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800949#endif
Patrick McHardy41acd972007-12-17 22:26:24 -0800950 return ret;
951}
952
Alexey Dobriyan79df3412008-01-31 04:04:32 -0800953static int get_entries(struct net *net, struct arpt_get_entries __user *uptr,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +0200954 const int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956 int ret;
Patrick McHardy11f6dff2007-12-17 22:26:38 -0800957 struct arpt_get_entries get;
Jan Engelhardt4abff072008-04-14 11:15:43 +0200958 struct xt_table *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Patrick McHardy11f6dff2007-12-17 22:26:38 -0800960 if (*len < sizeof(get)) {
961 duprintf("get_entries: %u < %Zu\n", *len, sizeof(get));
962 return -EINVAL;
963 }
964 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
965 return -EFAULT;
966 if (*len != sizeof(struct arpt_get_entries) + get.size) {
967 duprintf("get_entries: %u != %Zu\n", *len,
968 sizeof(struct arpt_get_entries) + get.size);
969 return -EINVAL;
970 }
971
Jan Engelhardtee999d82008-10-08 11:35:01 +0200972 t = xt_find_table_lock(net, NFPROTO_ARP, get.name);
Patrick McHardy31fe4d32006-03-12 20:40:43 -0800973 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +0200974 const struct xt_table_info *private = t->private;
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 duprintf("t->private->number = %u\n",
Harald Welte2e4e6a12006-01-12 13:30:04 -0800977 private->number);
Patrick McHardy11f6dff2007-12-17 22:26:38 -0800978 if (get.size == private->size)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800979 ret = copy_entries_to_user(private->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 t, uptr->entrytable);
981 else {
982 duprintf("get_entries: I've got %u not %u!\n",
Patrick McHardy11f6dff2007-12-17 22:26:38 -0800983 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +0200984 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
Harald Welte6b7d31f2005-10-26 09:34:24 +0200986 module_put(t->me);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800987 xt_table_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 } else
Harald Welte6b7d31f2005-10-26 09:34:24 +0200989 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 return ret;
992}
993
Alexey Dobriyan79df3412008-01-31 04:04:32 -0800994static int __do_replace(struct net *net, const char *name,
995 unsigned int valid_hooks,
Patrick McHardyd6a2ba02007-12-17 22:26:54 -0800996 struct xt_table_info *newinfo,
997 unsigned int num_counters,
998 void __user *counters_ptr)
999{
1000 int ret;
Jan Engelhardt4abff072008-04-14 11:15:43 +02001001 struct xt_table *t;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001002 struct xt_table_info *oldinfo;
1003 struct xt_counters *counters;
1004 void *loc_cpu_old_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001005 struct arpt_entry *iter;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001006
1007 ret = 0;
1008 counters = vmalloc_node(num_counters * sizeof(struct xt_counters),
1009 numa_node_id());
1010 if (!counters) {
1011 ret = -ENOMEM;
1012 goto out;
1013 }
1014
Jan Engelhardtee999d82008-10-08 11:35:01 +02001015 t = try_then_request_module(xt_find_table_lock(net, NFPROTO_ARP, name),
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001016 "arptable_%s", name);
1017 if (!t || IS_ERR(t)) {
1018 ret = t ? PTR_ERR(t) : -ENOENT;
1019 goto free_newinfo_counters_untrans;
1020 }
1021
1022 /* You lied! */
1023 if (valid_hooks != t->valid_hooks) {
1024 duprintf("Valid hook crap: %08X vs %08X\n",
1025 valid_hooks, t->valid_hooks);
1026 ret = -EINVAL;
1027 goto put_module;
1028 }
1029
1030 oldinfo = xt_replace_table(t, num_counters, newinfo, &ret);
1031 if (!oldinfo)
1032 goto put_module;
1033
1034 /* Update module usage count based on number of rules */
1035 duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n",
1036 oldinfo->number, oldinfo->initial_entries, newinfo->number);
1037 if ((oldinfo->number > oldinfo->initial_entries) ||
1038 (newinfo->number <= oldinfo->initial_entries))
1039 module_put(t->me);
1040 if ((oldinfo->number > oldinfo->initial_entries) &&
1041 (newinfo->number <= oldinfo->initial_entries))
1042 module_put(t->me);
1043
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001044 /* Get the old counters, and synchronize with replace */
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001045 get_counters(oldinfo, counters);
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001046
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001047 /* Decrease module usage counts and free resource */
1048 loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001049 xt_entry_foreach(iter, loc_cpu_old_entry, oldinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001050 cleanup_entry(iter);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001051
1052 xt_free_table_info(oldinfo);
1053 if (copy_to_user(counters_ptr, counters,
1054 sizeof(struct xt_counters) * num_counters) != 0)
1055 ret = -EFAULT;
1056 vfree(counters);
1057 xt_table_unlock(t);
1058 return ret;
1059
1060 put_module:
1061 module_put(t->me);
1062 xt_table_unlock(t);
1063 free_newinfo_counters_untrans:
1064 vfree(counters);
1065 out:
1066 return ret;
1067}
1068
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001069static int do_replace(struct net *net, const void __user *user,
1070 unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
1072 int ret;
1073 struct arpt_replace tmp;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001074 struct xt_table_info *newinfo;
1075 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001076 struct arpt_entry *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1079 return -EFAULT;
1080
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001081 /* overflow check */
Kirill Korotaevee4bb812006-02-04 02:16:56 -08001082 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1083 return -ENOMEM;
1084
Harald Welte2e4e6a12006-01-12 13:30:04 -08001085 newinfo = xt_alloc_table_info(tmp.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (!newinfo)
1087 return -ENOMEM;
1088
Eric Dumazet31836062005-12-13 23:13:48 -08001089 /* choose the copy that is on our node/cpu */
1090 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1091 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 tmp.size) != 0) {
1093 ret = -EFAULT;
1094 goto free_newinfo;
1095 }
1096
Jan Engelhardt0f234212010-02-24 18:36:04 +01001097 ret = translate_table(newinfo, loc_cpu_entry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (ret != 0)
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001099 goto free_newinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 duprintf("arp_tables: Translated table\n");
1102
Alexey Dobriyan79df3412008-01-31 04:04:32 -08001103 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001104 tmp.num_counters, tmp.counters);
1105 if (ret)
1106 goto free_newinfo_untrans;
1107 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001109 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001110 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001111 cleanup_entry(iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 free_newinfo:
Harald Welte2e4e6a12006-01-12 13:30:04 -08001113 xt_free_table_info(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 return ret;
1115}
1116
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001117static int do_add_counters(struct net *net, const void __user *user,
1118 unsigned int len, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001120 unsigned int i, curcpu;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001121 struct xt_counters_info tmp;
1122 struct xt_counters *paddc;
1123 unsigned int num_counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001124 const char *name;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001125 int size;
1126 void *ptmp;
Jan Engelhardt4abff072008-04-14 11:15:43 +02001127 struct xt_table *t;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001128 const struct xt_table_info *private;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001129 int ret = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001130 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001131 struct arpt_entry *iter;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001132#ifdef CONFIG_COMPAT
1133 struct compat_xt_counters_info compat_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001135 if (compat) {
1136 ptmp = &compat_tmp;
1137 size = sizeof(struct compat_xt_counters_info);
1138 } else
1139#endif
1140 {
1141 ptmp = &tmp;
1142 size = sizeof(struct xt_counters_info);
1143 }
1144
1145 if (copy_from_user(ptmp, user, size) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 return -EFAULT;
1147
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001148#ifdef CONFIG_COMPAT
1149 if (compat) {
1150 num_counters = compat_tmp.num_counters;
1151 name = compat_tmp.name;
1152 } else
1153#endif
1154 {
1155 num_counters = tmp.num_counters;
1156 name = tmp.name;
1157 }
1158
1159 if (len != size + num_counters * sizeof(struct xt_counters))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 return -EINVAL;
1161
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001162 paddc = vmalloc_node(len - size, numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 if (!paddc)
1164 return -ENOMEM;
1165
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001166 if (copy_from_user(paddc, user + size, len - size) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 ret = -EFAULT;
1168 goto free;
1169 }
1170
Jan Engelhardtee999d82008-10-08 11:35:01 +02001171 t = xt_find_table_lock(net, NFPROTO_ARP, name);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001172 if (!t || IS_ERR(t)) {
1173 ret = t ? PTR_ERR(t) : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 goto free;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001177 local_bh_disable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001178 private = t->private;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001179 if (private->number != num_counters) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 ret = -EINVAL;
1181 goto unlock_up_free;
1182 }
1183
1184 i = 0;
Eric Dumazet31836062005-12-13 23:13:48 -08001185 /* Choose the copy that is on our node */
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001186 curcpu = smp_processor_id();
1187 loc_cpu_entry = private->entries[curcpu];
1188 xt_info_wrlock(curcpu);
Jan Engelhardt05595182010-02-24 18:33:43 +01001189 xt_entry_foreach(iter, loc_cpu_entry, private->size) {
1190 ADD_COUNTER(iter->counters, paddc[i].bcnt, paddc[i].pcnt);
1191 ++i;
1192 }
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001193 xt_info_wrunlock(curcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 unlock_up_free:
Stephen Hemminger942e4a22009-04-28 22:36:33 -07001195 local_bh_enable();
Harald Welte2e4e6a12006-01-12 13:30:04 -08001196 xt_table_unlock(t);
Harald Welte6b7d31f2005-10-26 09:34:24 +02001197 module_put(t->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 free:
1199 vfree(paddc);
1200
1201 return ret;
1202}
1203
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001204#ifdef CONFIG_COMPAT
Jan Engelhardt05595182010-02-24 18:33:43 +01001205static inline void compat_release_entry(struct compat_arpt_entry *e)
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001206{
1207 struct arpt_entry_target *t;
1208
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001209 t = compat_arpt_get_target(e);
1210 module_put(t->u.kernel.target->me);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001211}
1212
1213static inline int
1214check_compat_entry_size_and_hooks(struct compat_arpt_entry *e,
1215 struct xt_table_info *newinfo,
1216 unsigned int *size,
Jan Engelhardtd5d1baa2009-06-26 07:51:59 +02001217 const unsigned char *base,
1218 const unsigned char *limit,
1219 const unsigned int *hook_entries,
1220 const unsigned int *underflows,
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001221 const char *name)
1222{
1223 struct arpt_entry_target *t;
1224 struct xt_target *target;
1225 unsigned int entry_offset;
1226 int ret, off, h;
1227
1228 duprintf("check_compat_entry_size_and_hooks %p\n", e);
Joe Perches3666ed12009-11-23 23:17:06 +01001229 if ((unsigned long)e % __alignof__(struct compat_arpt_entry) != 0 ||
1230 (unsigned char *)e + sizeof(struct compat_arpt_entry) >= limit) {
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001231 duprintf("Bad offset %p, limit = %p\n", e, limit);
1232 return -EINVAL;
1233 }
1234
1235 if (e->next_offset < sizeof(struct compat_arpt_entry) +
1236 sizeof(struct compat_xt_entry_target)) {
1237 duprintf("checking: element %p size %u\n",
1238 e, e->next_offset);
1239 return -EINVAL;
1240 }
1241
1242 /* For purposes of check_entry casting the compat entry is fine */
1243 ret = check_entry((struct arpt_entry *)e, name);
1244 if (ret)
1245 return ret;
1246
1247 off = sizeof(struct arpt_entry) - sizeof(struct compat_arpt_entry);
1248 entry_offset = (void *)e - (void *)base;
1249
1250 t = compat_arpt_get_target(e);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001251 target = xt_request_find_target(NFPROTO_ARP, t->u.user.name,
1252 t->u.user.revision);
1253 if (IS_ERR(target)) {
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001254 duprintf("check_compat_entry_size_and_hooks: `%s' not found\n",
1255 t->u.user.name);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +02001256 ret = PTR_ERR(target);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001257 goto out;
1258 }
1259 t->u.kernel.target = target;
1260
1261 off += xt_compat_target_offset(target);
1262 *size += off;
Jan Engelhardtee999d82008-10-08 11:35:01 +02001263 ret = xt_compat_add_offset(NFPROTO_ARP, entry_offset, off);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001264 if (ret)
1265 goto release_target;
1266
1267 /* Check hooks & underflows */
1268 for (h = 0; h < NF_ARP_NUMHOOKS; h++) {
1269 if ((unsigned char *)e - base == hook_entries[h])
1270 newinfo->hook_entry[h] = hook_entries[h];
1271 if ((unsigned char *)e - base == underflows[h])
1272 newinfo->underflow[h] = underflows[h];
1273 }
1274
1275 /* Clear counters and comefrom */
1276 memset(&e->counters, 0, sizeof(e->counters));
1277 e->comefrom = 0;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001278 return 0;
1279
1280release_target:
1281 module_put(t->u.kernel.target->me);
1282out:
1283 return ret;
1284}
1285
1286static int
1287compat_copy_entry_from_user(struct compat_arpt_entry *e, void **dstptr,
1288 unsigned int *size, const char *name,
1289 struct xt_table_info *newinfo, unsigned char *base)
1290{
1291 struct arpt_entry_target *t;
1292 struct xt_target *target;
1293 struct arpt_entry *de;
1294 unsigned int origsize;
1295 int ret, h;
1296
1297 ret = 0;
1298 origsize = *size;
1299 de = (struct arpt_entry *)*dstptr;
1300 memcpy(de, e, sizeof(struct arpt_entry));
1301 memcpy(&de->counters, &e->counters, sizeof(e->counters));
1302
1303 *dstptr += sizeof(struct arpt_entry);
1304 *size += sizeof(struct arpt_entry) - sizeof(struct compat_arpt_entry);
1305
1306 de->target_offset = e->target_offset - (origsize - *size);
1307 t = compat_arpt_get_target(e);
1308 target = t->u.kernel.target;
1309 xt_compat_target_from_user(t, dstptr, size);
1310
1311 de->next_offset = e->next_offset - (origsize - *size);
1312 for (h = 0; h < NF_ARP_NUMHOOKS; h++) {
1313 if ((unsigned char *)de - base < newinfo->hook_entry[h])
1314 newinfo->hook_entry[h] -= origsize - *size;
1315 if ((unsigned char *)de - base < newinfo->underflow[h])
1316 newinfo->underflow[h] -= origsize - *size;
1317 }
1318 return ret;
1319}
1320
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001321static int translate_compat_table(const char *name,
1322 unsigned int valid_hooks,
1323 struct xt_table_info **pinfo,
1324 void **pentry0,
1325 unsigned int total_size,
1326 unsigned int number,
1327 unsigned int *hook_entries,
1328 unsigned int *underflows)
1329{
1330 unsigned int i, j;
1331 struct xt_table_info *newinfo, *info;
1332 void *pos, *entry0, *entry1;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001333 struct compat_arpt_entry *iter0;
1334 struct arpt_entry *iter1;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001335 unsigned int size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001336 int ret = 0;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001337
1338 info = *pinfo;
1339 entry0 = *pentry0;
1340 size = total_size;
1341 info->number = number;
1342
1343 /* Init all hooks to impossible value. */
1344 for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
1345 info->hook_entry[i] = 0xFFFFFFFF;
1346 info->underflow[i] = 0xFFFFFFFF;
1347 }
1348
1349 duprintf("translate_compat_table: size %u\n", info->size);
1350 j = 0;
Jan Engelhardtee999d82008-10-08 11:35:01 +02001351 xt_compat_lock(NFPROTO_ARP);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001352 /* Walk through entries, checking offsets. */
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001353 xt_entry_foreach(iter0, entry0, total_size) {
1354 ret = check_compat_entry_size_and_hooks(iter0, info, &size,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001355 entry0,
1356 entry0 + total_size,
1357 hook_entries,
1358 underflows,
1359 name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001360 if (ret != 0)
Jan Engelhardt05595182010-02-24 18:33:43 +01001361 goto out_unlock;
1362 ++j;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001363 }
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001364
1365 ret = -EINVAL;
1366 if (j != number) {
1367 duprintf("translate_compat_table: %u not %u entries\n",
1368 j, number);
1369 goto out_unlock;
1370 }
1371
1372 /* Check hooks all assigned */
1373 for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
1374 /* Only hooks which are valid */
1375 if (!(valid_hooks & (1 << i)))
1376 continue;
1377 if (info->hook_entry[i] == 0xFFFFFFFF) {
1378 duprintf("Invalid hook entry %u %u\n",
1379 i, hook_entries[i]);
1380 goto out_unlock;
1381 }
1382 if (info->underflow[i] == 0xFFFFFFFF) {
1383 duprintf("Invalid underflow %u %u\n",
1384 i, underflows[i]);
1385 goto out_unlock;
1386 }
1387 }
1388
1389 ret = -ENOMEM;
1390 newinfo = xt_alloc_table_info(size);
1391 if (!newinfo)
1392 goto out_unlock;
1393
1394 newinfo->number = number;
1395 for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
1396 newinfo->hook_entry[i] = info->hook_entry[i];
1397 newinfo->underflow[i] = info->underflow[i];
1398 }
1399 entry1 = newinfo->entries[raw_smp_processor_id()];
1400 pos = entry1;
1401 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001402 xt_entry_foreach(iter0, entry0, total_size) {
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001403 ret = compat_copy_entry_from_user(iter0, &pos, &size,
1404 name, newinfo, entry1);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001405 if (ret != 0)
1406 break;
1407 }
Jan Engelhardtee999d82008-10-08 11:35:01 +02001408 xt_compat_flush_offsets(NFPROTO_ARP);
1409 xt_compat_unlock(NFPROTO_ARP);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001410 if (ret)
1411 goto free_newinfo;
1412
1413 ret = -ELOOP;
1414 if (!mark_source_chains(newinfo, valid_hooks, entry1))
1415 goto free_newinfo;
1416
1417 i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001418 xt_entry_foreach(iter1, entry1, newinfo->size) {
Jan Engelhardt05595182010-02-24 18:33:43 +01001419 ret = check_target(iter1, name);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001420 if (ret != 0)
1421 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001422 ++i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001423 }
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001424 if (ret) {
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001425 /*
1426 * The first i matches need cleanup_entry (calls ->destroy)
1427 * because they had called ->check already. The other j-i
1428 * entries need only release.
1429 */
1430 int skip = i;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001431 j -= i;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001432 xt_entry_foreach(iter0, entry0, newinfo->size) {
1433 if (skip-- > 0)
1434 continue;
Jan Engelhardt05595182010-02-24 18:33:43 +01001435 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001436 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001437 compat_release_entry(iter0);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001438 }
Jan Engelhardt05595182010-02-24 18:33:43 +01001439 xt_entry_foreach(iter1, entry1, newinfo->size) {
1440 if (i-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001441 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001442 cleanup_entry(iter1);
1443 }
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001444 xt_free_table_info(newinfo);
1445 return ret;
1446 }
1447
1448 /* And one copy for every other CPU */
1449 for_each_possible_cpu(i)
1450 if (newinfo->entries[i] && newinfo->entries[i] != entry1)
1451 memcpy(newinfo->entries[i], entry1, newinfo->size);
1452
1453 *pinfo = newinfo;
1454 *pentry0 = entry1;
1455 xt_free_table_info(info);
1456 return 0;
1457
1458free_newinfo:
1459 xt_free_table_info(newinfo);
1460out:
Jan Engelhardt05595182010-02-24 18:33:43 +01001461 xt_entry_foreach(iter0, entry0, total_size) {
1462 if (j-- == 0)
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001463 break;
Jan Engelhardt05595182010-02-24 18:33:43 +01001464 compat_release_entry(iter0);
1465 }
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001466 return ret;
1467out_unlock:
Jan Engelhardtee999d82008-10-08 11:35:01 +02001468 xt_compat_flush_offsets(NFPROTO_ARP);
1469 xt_compat_unlock(NFPROTO_ARP);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001470 goto out;
1471}
1472
1473struct compat_arpt_replace {
1474 char name[ARPT_TABLE_MAXNAMELEN];
1475 u32 valid_hooks;
1476 u32 num_entries;
1477 u32 size;
1478 u32 hook_entry[NF_ARP_NUMHOOKS];
1479 u32 underflow[NF_ARP_NUMHOOKS];
1480 u32 num_counters;
1481 compat_uptr_t counters;
1482 struct compat_arpt_entry entries[0];
1483};
1484
Alexey Dobriyan79df3412008-01-31 04:04:32 -08001485static int compat_do_replace(struct net *net, void __user *user,
1486 unsigned int len)
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001487{
1488 int ret;
1489 struct compat_arpt_replace tmp;
1490 struct xt_table_info *newinfo;
1491 void *loc_cpu_entry;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001492 struct arpt_entry *iter;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001493
1494 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0)
1495 return -EFAULT;
1496
1497 /* overflow check */
1498 if (tmp.size >= INT_MAX / num_possible_cpus())
1499 return -ENOMEM;
1500 if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
1501 return -ENOMEM;
1502
1503 newinfo = xt_alloc_table_info(tmp.size);
1504 if (!newinfo)
1505 return -ENOMEM;
1506
1507 /* choose the copy that is on our node/cpu */
1508 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1509 if (copy_from_user(loc_cpu_entry, user + sizeof(tmp), tmp.size) != 0) {
1510 ret = -EFAULT;
1511 goto free_newinfo;
1512 }
1513
1514 ret = translate_compat_table(tmp.name, tmp.valid_hooks,
1515 &newinfo, &loc_cpu_entry, tmp.size,
1516 tmp.num_entries, tmp.hook_entry,
1517 tmp.underflow);
1518 if (ret != 0)
1519 goto free_newinfo;
1520
1521 duprintf("compat_do_replace: Translated table\n");
1522
Alexey Dobriyan79df3412008-01-31 04:04:32 -08001523 ret = __do_replace(net, tmp.name, tmp.valid_hooks, newinfo,
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001524 tmp.num_counters, compat_ptr(tmp.counters));
1525 if (ret)
1526 goto free_newinfo_untrans;
1527 return 0;
1528
1529 free_newinfo_untrans:
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001530 xt_entry_foreach(iter, loc_cpu_entry, newinfo->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001531 cleanup_entry(iter);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001532 free_newinfo:
1533 xt_free_table_info(newinfo);
1534 return ret;
1535}
1536
1537static int compat_do_arpt_set_ctl(struct sock *sk, int cmd, void __user *user,
1538 unsigned int len)
1539{
1540 int ret;
1541
1542 if (!capable(CAP_NET_ADMIN))
1543 return -EPERM;
1544
1545 switch (cmd) {
1546 case ARPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001547 ret = compat_do_replace(sock_net(sk), user, len);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001548 break;
1549
1550 case ARPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001551 ret = do_add_counters(sock_net(sk), user, len, 1);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001552 break;
1553
1554 default:
1555 duprintf("do_arpt_set_ctl: unknown request %i\n", cmd);
1556 ret = -EINVAL;
1557 }
1558
1559 return ret;
1560}
1561
1562static int compat_copy_entry_to_user(struct arpt_entry *e, void __user **dstptr,
1563 compat_uint_t *size,
1564 struct xt_counters *counters,
Jan Engelhardt05595182010-02-24 18:33:43 +01001565 unsigned int i)
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001566{
1567 struct arpt_entry_target *t;
1568 struct compat_arpt_entry __user *ce;
1569 u_int16_t target_offset, next_offset;
1570 compat_uint_t origsize;
1571 int ret;
1572
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001573 origsize = *size;
1574 ce = (struct compat_arpt_entry __user *)*dstptr;
Jan Engelhardt05595182010-02-24 18:33:43 +01001575 if (copy_to_user(ce, e, sizeof(struct arpt_entry)) != 0 ||
1576 copy_to_user(&ce->counters, &counters[i],
1577 sizeof(counters[i])) != 0)
1578 return -EFAULT;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001579
1580 *dstptr += sizeof(struct compat_arpt_entry);
1581 *size -= sizeof(struct arpt_entry) - sizeof(struct compat_arpt_entry);
1582
1583 target_offset = e->target_offset - (origsize - *size);
1584
1585 t = arpt_get_target(e);
1586 ret = xt_compat_target_to_user(t, dstptr, size);
1587 if (ret)
Jan Engelhardt05595182010-02-24 18:33:43 +01001588 return ret;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001589 next_offset = e->next_offset - (origsize - *size);
Jan Engelhardt05595182010-02-24 18:33:43 +01001590 if (put_user(target_offset, &ce->target_offset) != 0 ||
1591 put_user(next_offset, &ce->next_offset) != 0)
1592 return -EFAULT;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001593 return 0;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001594}
1595
1596static int compat_copy_entries_to_user(unsigned int total_size,
Jan Engelhardt4abff072008-04-14 11:15:43 +02001597 struct xt_table *table,
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001598 void __user *userptr)
1599{
1600 struct xt_counters *counters;
Jan Engelhardt5452e422008-04-14 11:15:35 +02001601 const struct xt_table_info *private = table->private;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001602 void __user *pos;
1603 unsigned int size;
1604 int ret = 0;
1605 void *loc_cpu_entry;
1606 unsigned int i = 0;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001607 struct arpt_entry *iter;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001608
1609 counters = alloc_counters(table);
1610 if (IS_ERR(counters))
1611 return PTR_ERR(counters);
1612
1613 /* choose the copy on our node/cpu */
1614 loc_cpu_entry = private->entries[raw_smp_processor_id()];
1615 pos = userptr;
1616 size = total_size;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001617 xt_entry_foreach(iter, loc_cpu_entry, total_size) {
1618 ret = compat_copy_entry_to_user(iter, &pos,
Jan Engelhardt6b4ff2d2010-02-26 17:53:31 +01001619 &size, counters, i++);
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001620 if (ret != 0)
1621 break;
1622 }
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001623 vfree(counters);
1624 return ret;
1625}
1626
1627struct compat_arpt_get_entries {
1628 char name[ARPT_TABLE_MAXNAMELEN];
1629 compat_uint_t size;
1630 struct compat_arpt_entry entrytable[0];
1631};
1632
Alexey Dobriyan79df3412008-01-31 04:04:32 -08001633static int compat_get_entries(struct net *net,
1634 struct compat_arpt_get_entries __user *uptr,
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001635 int *len)
1636{
1637 int ret;
1638 struct compat_arpt_get_entries get;
Jan Engelhardt4abff072008-04-14 11:15:43 +02001639 struct xt_table *t;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001640
1641 if (*len < sizeof(get)) {
1642 duprintf("compat_get_entries: %u < %zu\n", *len, sizeof(get));
1643 return -EINVAL;
1644 }
1645 if (copy_from_user(&get, uptr, sizeof(get)) != 0)
1646 return -EFAULT;
1647 if (*len != sizeof(struct compat_arpt_get_entries) + get.size) {
1648 duprintf("compat_get_entries: %u != %zu\n",
1649 *len, sizeof(get) + get.size);
1650 return -EINVAL;
1651 }
1652
Jan Engelhardtee999d82008-10-08 11:35:01 +02001653 xt_compat_lock(NFPROTO_ARP);
1654 t = xt_find_table_lock(net, NFPROTO_ARP, get.name);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001655 if (t && !IS_ERR(t)) {
Jan Engelhardt5452e422008-04-14 11:15:35 +02001656 const struct xt_table_info *private = t->private;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001657 struct xt_table_info info;
1658
1659 duprintf("t->private->number = %u\n", private->number);
1660 ret = compat_table_info(private, &info);
1661 if (!ret && get.size == info.size) {
1662 ret = compat_copy_entries_to_user(private->size,
1663 t, uptr->entrytable);
1664 } else if (!ret) {
1665 duprintf("compat_get_entries: I've got %u not %u!\n",
1666 private->size, get.size);
Patrick McHardy544473c2008-04-14 11:15:45 +02001667 ret = -EAGAIN;
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001668 }
Jan Engelhardtee999d82008-10-08 11:35:01 +02001669 xt_compat_flush_offsets(NFPROTO_ARP);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001670 module_put(t->me);
1671 xt_table_unlock(t);
1672 } else
1673 ret = t ? PTR_ERR(t) : -ENOENT;
1674
Jan Engelhardtee999d82008-10-08 11:35:01 +02001675 xt_compat_unlock(NFPROTO_ARP);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001676 return ret;
1677}
1678
1679static int do_arpt_get_ctl(struct sock *, int, void __user *, int *);
1680
1681static int compat_do_arpt_get_ctl(struct sock *sk, int cmd, void __user *user,
1682 int *len)
1683{
1684 int ret;
1685
1686 if (!capable(CAP_NET_ADMIN))
1687 return -EPERM;
1688
1689 switch (cmd) {
1690 case ARPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001691 ret = get_info(sock_net(sk), user, len, 1);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001692 break;
1693 case ARPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001694 ret = compat_get_entries(sock_net(sk), user, len);
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001695 break;
1696 default:
1697 ret = do_arpt_get_ctl(sk, cmd, user, len);
1698 }
1699 return ret;
1700}
1701#endif
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703static int do_arpt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
1704{
1705 int ret;
1706
1707 if (!capable(CAP_NET_ADMIN))
1708 return -EPERM;
1709
1710 switch (cmd) {
1711 case ARPT_SO_SET_REPLACE:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001712 ret = do_replace(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 break;
1714
1715 case ARPT_SO_SET_ADD_COUNTERS:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001716 ret = do_add_counters(sock_net(sk), user, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 break;
1718
1719 default:
1720 duprintf("do_arpt_set_ctl: unknown request %i\n", cmd);
1721 ret = -EINVAL;
1722 }
1723
1724 return ret;
1725}
1726
1727static int do_arpt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
1728{
1729 int ret;
1730
1731 if (!capable(CAP_NET_ADMIN))
1732 return -EPERM;
1733
1734 switch (cmd) {
Patrick McHardy41acd972007-12-17 22:26:24 -08001735 case ARPT_SO_GET_INFO:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001736 ret = get_info(sock_net(sk), user, len, 0);
Patrick McHardy41acd972007-12-17 22:26:24 -08001737 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Patrick McHardy11f6dff2007-12-17 22:26:38 -08001739 case ARPT_SO_GET_ENTRIES:
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001740 ret = get_entries(sock_net(sk), user, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Harald Welte6b7d31f2005-10-26 09:34:24 +02001743 case ARPT_SO_GET_REVISION_TARGET: {
Harald Welte2e4e6a12006-01-12 13:30:04 -08001744 struct xt_get_revision rev;
Harald Welte6b7d31f2005-10-26 09:34:24 +02001745
1746 if (*len != sizeof(rev)) {
1747 ret = -EINVAL;
1748 break;
1749 }
1750 if (copy_from_user(&rev, user, sizeof(rev)) != 0) {
1751 ret = -EFAULT;
1752 break;
1753 }
1754
Jan Engelhardtee999d82008-10-08 11:35:01 +02001755 try_then_request_module(xt_find_revision(NFPROTO_ARP, rev.name,
Harald Welte2e4e6a12006-01-12 13:30:04 -08001756 rev.revision, 1, &ret),
Harald Welte6b7d31f2005-10-26 09:34:24 +02001757 "arpt_%s", rev.name);
1758 break;
1759 }
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 default:
1762 duprintf("do_arpt_get_ctl: unknown request %i\n", cmd);
1763 ret = -EINVAL;
1764 }
1765
1766 return ret;
1767}
1768
Jan Engelhardt35aad0f2009-08-24 14:56:30 +02001769struct xt_table *arpt_register_table(struct net *net,
1770 const struct xt_table *table,
Jan Engelhardt4abff072008-04-14 11:15:43 +02001771 const struct arpt_replace *repl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
1773 int ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001774 struct xt_table_info *newinfo;
Jan Engelhardtf3c5c1b2010-04-19 16:05:10 +02001775 struct xt_table_info bootstrap = {0};
Eric Dumazet31836062005-12-13 23:13:48 -08001776 void *loc_cpu_entry;
Alexey Dobriyana98da112008-01-31 04:01:49 -08001777 struct xt_table *new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Harald Welte2e4e6a12006-01-12 13:30:04 -08001779 newinfo = xt_alloc_table_info(repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 if (!newinfo) {
1781 ret = -ENOMEM;
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08001782 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
Eric Dumazet31836062005-12-13 23:13:48 -08001784
1785 /* choose the copy on our node/cpu */
1786 loc_cpu_entry = newinfo->entries[raw_smp_processor_id()];
1787 memcpy(loc_cpu_entry, repl->entries, repl->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Jan Engelhardt0f234212010-02-24 18:36:04 +01001789 ret = translate_table(newinfo, loc_cpu_entry, repl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 duprintf("arpt_register_table: translate table gives %d\n", ret);
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08001791 if (ret != 0)
1792 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Alexey Dobriyan79df3412008-01-31 04:04:32 -08001794 new_table = xt_register_table(net, table, &bootstrap, newinfo);
Alexey Dobriyana98da112008-01-31 04:01:49 -08001795 if (IS_ERR(new_table)) {
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08001796 ret = PTR_ERR(new_table);
1797 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08001799 return new_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Alexey Dobriyan44d34e72008-01-31 04:02:44 -08001801out_free:
1802 xt_free_table_info(newinfo);
1803out:
1804 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
Jan Engelhardt4abff072008-04-14 11:15:43 +02001807void arpt_unregister_table(struct xt_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
Harald Welte2e4e6a12006-01-12 13:30:04 -08001809 struct xt_table_info *private;
Eric Dumazet31836062005-12-13 23:13:48 -08001810 void *loc_cpu_entry;
Alexey Dobriyandf200962008-01-31 04:05:34 -08001811 struct module *table_owner = table->me;
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001812 struct arpt_entry *iter;
Eric Dumazet31836062005-12-13 23:13:48 -08001813
Harald Welte2e4e6a12006-01-12 13:30:04 -08001814 private = xt_unregister_table(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
1816 /* Decrease module usage counts and free resources */
Harald Welte2e4e6a12006-01-12 13:30:04 -08001817 loc_cpu_entry = private->entries[raw_smp_processor_id()];
Jan Engelhardt72b2b1d2010-02-24 18:32:59 +01001818 xt_entry_foreach(iter, loc_cpu_entry, private->size)
Jan Engelhardt05595182010-02-24 18:33:43 +01001819 cleanup_entry(iter);
Alexey Dobriyandf200962008-01-31 04:05:34 -08001820 if (private->number > private->initial_entries)
1821 module_put(table_owner);
Harald Welte2e4e6a12006-01-12 13:30:04 -08001822 xt_free_table_info(private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823}
1824
1825/* The built-in targets: standard (NULL) and error. */
Jan Engelhardt45385062009-07-04 12:50:00 +02001826static struct xt_target arpt_builtin_tg[] __read_mostly = {
1827 {
1828 .name = ARPT_STANDARD_TARGET,
1829 .targetsize = sizeof(int),
1830 .family = NFPROTO_ARP,
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001831#ifdef CONFIG_COMPAT
Jan Engelhardt45385062009-07-04 12:50:00 +02001832 .compatsize = sizeof(compat_int_t),
1833 .compat_from_user = compat_standard_from_user,
1834 .compat_to_user = compat_standard_to_user,
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001835#endif
Jan Engelhardt45385062009-07-04 12:50:00 +02001836 },
1837 {
1838 .name = ARPT_ERROR_TARGET,
1839 .target = arpt_error,
1840 .targetsize = ARPT_FUNCTION_MAXNAMELEN,
1841 .family = NFPROTO_ARP,
1842 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843};
1844
1845static struct nf_sockopt_ops arpt_sockopts = {
1846 .pf = PF_INET,
1847 .set_optmin = ARPT_BASE_CTL,
1848 .set_optmax = ARPT_SO_SET_MAX+1,
1849 .set = do_arpt_set_ctl,
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001850#ifdef CONFIG_COMPAT
1851 .compat_set = compat_do_arpt_set_ctl,
1852#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 .get_optmin = ARPT_BASE_CTL,
1854 .get_optmax = ARPT_SO_GET_MAX+1,
1855 .get = do_arpt_get_ctl,
Patrick McHardyd6a2ba02007-12-17 22:26:54 -08001856#ifdef CONFIG_COMPAT
1857 .compat_get = compat_do_arpt_get_ctl,
1858#endif
Neil Horman16fcec32007-09-11 11:28:26 +02001859 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860};
1861
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001862static int __net_init arp_tables_net_init(struct net *net)
1863{
Jan Engelhardtee999d82008-10-08 11:35:01 +02001864 return xt_proto_init(net, NFPROTO_ARP);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001865}
1866
1867static void __net_exit arp_tables_net_exit(struct net *net)
1868{
Jan Engelhardtee999d82008-10-08 11:35:01 +02001869 xt_proto_fini(net, NFPROTO_ARP);
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001870}
1871
1872static struct pernet_operations arp_tables_net_ops = {
1873 .init = arp_tables_net_init,
1874 .exit = arp_tables_net_exit,
1875};
1876
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001877static int __init arp_tables_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
1879 int ret;
1880
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001881 ret = register_pernet_subsys(&arp_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07001882 if (ret < 0)
1883 goto err1;
Harald Welte2e4e6a12006-01-12 13:30:04 -08001884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 /* Noone else will be downing sem now, so we won't sleep */
Jan Engelhardt45385062009-07-04 12:50:00 +02001886 ret = xt_register_targets(arpt_builtin_tg, ARRAY_SIZE(arpt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07001887 if (ret < 0)
1888 goto err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890 /* Register setsockopt */
1891 ret = nf_register_sockopt(&arpt_sockopts);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07001892 if (ret < 0)
1893 goto err4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Patrick McHardya887c1c2007-07-14 20:46:15 -07001895 printk(KERN_INFO "arp_tables: (C) 2002 David S. Miller\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 return 0;
Patrick McHardy0eff66e2006-08-13 18:57:28 -07001897
1898err4:
Jan Engelhardt45385062009-07-04 12:50:00 +02001899 xt_unregister_targets(arpt_builtin_tg, ARRAY_SIZE(arpt_builtin_tg));
Patrick McHardy0eff66e2006-08-13 18:57:28 -07001900err2:
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001901 unregister_pernet_subsys(&arp_tables_net_ops);
Patrick McHardy0eff66e2006-08-13 18:57:28 -07001902err1:
1903 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
1905
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001906static void __exit arp_tables_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907{
1908 nf_unregister_sockopt(&arpt_sockopts);
Jan Engelhardt45385062009-07-04 12:50:00 +02001909 xt_unregister_targets(arpt_builtin_tg, ARRAY_SIZE(arpt_builtin_tg));
Alexey Dobriyan3cb609d2008-01-31 04:49:35 -08001910 unregister_pernet_subsys(&arp_tables_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911}
1912
1913EXPORT_SYMBOL(arpt_register_table);
1914EXPORT_SYMBOL(arpt_unregister_table);
1915EXPORT_SYMBOL(arpt_do_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001917module_init(arp_tables_init);
1918module_exit(arp_tables_fini);