Blame view

net/netfilter/x_tables.c 33.1 KB
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1
2
3
4
  /*
   * x_tables core - Backend for {ip,ip6,arp}_tables
   *
   * Copyright (C) 2006-2006 Harald Welte <laforge@netfilter.org>
f229f6ce4   Patrick McHardy   netfilter: add my...
5
   * Copyright (C) 2006-2012 Patrick McHardy <kaber@trash.net>
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
6
7
8
9
10
11
12
13
14
15
   *
   * Based on existing ip_tables code which is
   *   Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
   *   Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   *
   */
be91fd5e3   Jan Engelhardt   netfilter: xtable...
16
  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
17
  #include <linux/kernel.h>
3a9a231d9   Paul Gortmaker   net: Fix files ex...
18
  #include <linux/module.h>
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
19
20
21
22
23
24
  #include <linux/socket.h>
  #include <linux/net.h>
  #include <linux/proc_fs.h>
  #include <linux/seq_file.h>
  #include <linux/string.h>
  #include <linux/vmalloc.h>
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
25
  #include <linux/mutex.h>
d7fe0f241   Al Viro   [PATCH] severing ...
26
  #include <linux/mm.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
27
  #include <linux/slab.h>
fbabf31e4   Thomas Graf   netfilter: create...
28
  #include <linux/audit.h>
457c4cbc5   Eric W. Biederman   [NET]: Make /proc...
29
  #include <net/net_namespace.h>
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
30
31
32
  
  #include <linux/netfilter/x_tables.h>
  #include <linux/netfilter_arp.h>
e3eaa9910   Jan Engelhardt   netfilter: xtable...
33
34
35
  #include <linux/netfilter_ipv4/ip_tables.h>
  #include <linux/netfilter_ipv6/ip6_tables.h>
  #include <linux/netfilter_arp/arp_tables.h>
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
36

2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
37
38
  MODULE_LICENSE("GPL");
  MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
043ef46c7   Jan Engelhardt   netfilter: move E...
39
  MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
40
41
  
  #define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
42
  struct compat_delta {
255d0dc34   Eric Dumazet   netfilter: x_tabl...
43
44
  	unsigned int offset; /* offset in kernel */
  	int delta; /* delta in 32bit user land */
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
45
  };
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
46
  struct xt_af {
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
47
  	struct mutex mutex;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
48
49
  	struct list_head match;
  	struct list_head target;
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
50
  #ifdef CONFIG_COMPAT
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
51
  	struct mutex compat_mutex;
255d0dc34   Eric Dumazet   netfilter: x_tabl...
52
53
54
  	struct compat_delta *compat_tab;
  	unsigned int number; /* number of slots in compat_tab[] */
  	unsigned int cur; /* number of used slots in compat_tab[] */
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
55
  #endif
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
56
57
58
  };
  
  static struct xt_af *xt;
7e9c6eeb1   Jan Engelhardt   netfilter: Introd...
59
60
61
62
63
64
  static const char *const xt_prefix[NFPROTO_NUMPROTO] = {
  	[NFPROTO_UNSPEC] = "x",
  	[NFPROTO_IPV4]   = "ip",
  	[NFPROTO_ARP]    = "arp",
  	[NFPROTO_BRIDGE] = "eb",
  	[NFPROTO_IPV6]   = "ip6",
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
65
  };
f3c5c1bfd   Jan Engelhardt   netfilter: xtable...
66
67
  /* Allow this many total (re)entries. */
  static const unsigned int xt_jumpstack_multiplier = 2;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
68
69
  /* Registration hooks for targets. */
  int
a45049c51   Pablo Neira Ayuso   [NETFILTER]: x_ta...
70
  xt_register_target(struct xt_target *target)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
71
  {
76108cea0   Jan Engelhardt   netfilter: Use un...
72
73
  	u_int8_t af = target->family;
  	int ret;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
74

9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
75
  	ret = mutex_lock_interruptible(&xt[af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
76
77
78
  	if (ret != 0)
  		return ret;
  	list_add(&target->list, &xt[af].target);
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
79
  	mutex_unlock(&xt[af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
80
81
82
83
84
  	return ret;
  }
  EXPORT_SYMBOL(xt_register_target);
  
  void
a45049c51   Pablo Neira Ayuso   [NETFILTER]: x_ta...
85
  xt_unregister_target(struct xt_target *target)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
86
  {
76108cea0   Jan Engelhardt   netfilter: Use un...
87
  	u_int8_t af = target->family;
a45049c51   Pablo Neira Ayuso   [NETFILTER]: x_ta...
88

9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
89
  	mutex_lock(&xt[af].mutex);
df0933dcb   Patrick McHardy   [NETFILTER]: kill...
90
  	list_del(&target->list);
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
91
  	mutex_unlock(&xt[af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
92
93
94
95
  }
  EXPORT_SYMBOL(xt_unregister_target);
  
  int
52d9c42ef   Patrick McHardy   [NETFILTER]: x_ta...
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
  xt_register_targets(struct xt_target *target, unsigned int n)
  {
  	unsigned int i;
  	int err = 0;
  
  	for (i = 0; i < n; i++) {
  		err = xt_register_target(&target[i]);
  		if (err)
  			goto err;
  	}
  	return err;
  
  err:
  	if (i > 0)
  		xt_unregister_targets(target, i);
  	return err;
  }
  EXPORT_SYMBOL(xt_register_targets);
  
  void
  xt_unregister_targets(struct xt_target *target, unsigned int n)
  {
f68c53015   Changli Gao   netfilter: unregi...
118
119
  	while (n-- > 0)
  		xt_unregister_target(&target[n]);
52d9c42ef   Patrick McHardy   [NETFILTER]: x_ta...
120
121
122
123
  }
  EXPORT_SYMBOL(xt_unregister_targets);
  
  int
a45049c51   Pablo Neira Ayuso   [NETFILTER]: x_ta...
124
  xt_register_match(struct xt_match *match)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
125
  {
76108cea0   Jan Engelhardt   netfilter: Use un...
126
127
  	u_int8_t af = match->family;
  	int ret;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
128

9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
129
  	ret = mutex_lock_interruptible(&xt[af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
130
131
132
133
  	if (ret != 0)
  		return ret;
  
  	list_add(&match->list, &xt[af].match);
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
134
  	mutex_unlock(&xt[af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
135
136
137
138
139
140
  
  	return ret;
  }
  EXPORT_SYMBOL(xt_register_match);
  
  void
a45049c51   Pablo Neira Ayuso   [NETFILTER]: x_ta...
141
  xt_unregister_match(struct xt_match *match)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
142
  {
76108cea0   Jan Engelhardt   netfilter: Use un...
143
  	u_int8_t af = match->family;
a45049c51   Pablo Neira Ayuso   [NETFILTER]: x_ta...
144

9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
145
  	mutex_lock(&xt[af].mutex);
df0933dcb   Patrick McHardy   [NETFILTER]: kill...
146
  	list_del(&match->list);
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
147
  	mutex_unlock(&xt[af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
148
149
  }
  EXPORT_SYMBOL(xt_unregister_match);
52d9c42ef   Patrick McHardy   [NETFILTER]: x_ta...
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
  int
  xt_register_matches(struct xt_match *match, unsigned int n)
  {
  	unsigned int i;
  	int err = 0;
  
  	for (i = 0; i < n; i++) {
  		err = xt_register_match(&match[i]);
  		if (err)
  			goto err;
  	}
  	return err;
  
  err:
  	if (i > 0)
  		xt_unregister_matches(match, i);
  	return err;
  }
  EXPORT_SYMBOL(xt_register_matches);
  
  void
  xt_unregister_matches(struct xt_match *match, unsigned int n)
  {
f68c53015   Changli Gao   netfilter: unregi...
173
174
  	while (n-- > 0)
  		xt_unregister_match(&match[n]);
52d9c42ef   Patrick McHardy   [NETFILTER]: x_ta...
175
176
  }
  EXPORT_SYMBOL(xt_unregister_matches);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
177
178
179
180
  
  /*
   * These are weird, but module loading must not be done with mutex
   * held (since they will register), and we have to have a single
adb00ae2e   Stephen Hemminger   netfilter: x_tabl...
181
   * function to use.
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
182
183
184
   */
  
  /* Find match, grabs ref.  Returns ERR_PTR() on error. */
76108cea0   Jan Engelhardt   netfilter: Use un...
185
  struct xt_match *xt_find_match(u8 af, const char *name, u8 revision)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
186
187
  {
  	struct xt_match *m;
42046e2e4   Patrick McHardy   netfilter: x_tabl...
188
  	int err = -ENOENT;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
189

9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
190
  	if (mutex_lock_interruptible(&xt[af].mutex) != 0)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
191
192
193
194
195
196
  		return ERR_PTR(-EINTR);
  
  	list_for_each_entry(m, &xt[af].match, list) {
  		if (strcmp(m->name, name) == 0) {
  			if (m->revision == revision) {
  				if (try_module_get(m->me)) {
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
197
  					mutex_unlock(&xt[af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
198
199
200
201
202
203
  					return m;
  				}
  			} else
  				err = -EPROTOTYPE; /* Found something. */
  		}
  	}
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
204
  	mutex_unlock(&xt[af].mutex);
55b69e910   Jan Engelhardt   netfilter: implem...
205
206
207
208
  
  	if (af != NFPROTO_UNSPEC)
  		/* Try searching again in the family-independent list */
  		return xt_find_match(NFPROTO_UNSPEC, name, revision);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
209
210
211
  	return ERR_PTR(err);
  }
  EXPORT_SYMBOL(xt_find_match);
fd0ec0e62   Jan Engelhardt   netfilter: xtable...
212
213
214
215
  struct xt_match *
  xt_request_find_match(uint8_t nfproto, const char *name, uint8_t revision)
  {
  	struct xt_match *match;
adb00ae2e   Stephen Hemminger   netfilter: x_tabl...
216
217
218
219
220
221
222
  	match = xt_find_match(nfproto, name, revision);
  	if (IS_ERR(match)) {
  		request_module("%st_%s", xt_prefix[nfproto], name);
  		match = xt_find_match(nfproto, name, revision);
  	}
  
  	return match;
fd0ec0e62   Jan Engelhardt   netfilter: xtable...
223
224
  }
  EXPORT_SYMBOL_GPL(xt_request_find_match);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
225
  /* Find target, grabs ref.  Returns ERR_PTR() on error. */
76108cea0   Jan Engelhardt   netfilter: Use un...
226
  struct xt_target *xt_find_target(u8 af, const char *name, u8 revision)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
227
228
  {
  	struct xt_target *t;
42046e2e4   Patrick McHardy   netfilter: x_tabl...
229
  	int err = -ENOENT;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
230

9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
231
  	if (mutex_lock_interruptible(&xt[af].mutex) != 0)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
232
233
234
235
236
237
  		return ERR_PTR(-EINTR);
  
  	list_for_each_entry(t, &xt[af].target, list) {
  		if (strcmp(t->name, name) == 0) {
  			if (t->revision == revision) {
  				if (try_module_get(t->me)) {
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
238
  					mutex_unlock(&xt[af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
239
240
241
242
243
244
  					return t;
  				}
  			} else
  				err = -EPROTOTYPE; /* Found something. */
  		}
  	}
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
245
  	mutex_unlock(&xt[af].mutex);
55b69e910   Jan Engelhardt   netfilter: implem...
246
247
248
249
  
  	if (af != NFPROTO_UNSPEC)
  		/* Try searching again in the family-independent list */
  		return xt_find_target(NFPROTO_UNSPEC, name, revision);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
250
251
252
  	return ERR_PTR(err);
  }
  EXPORT_SYMBOL(xt_find_target);
76108cea0   Jan Engelhardt   netfilter: Use un...
253
  struct xt_target *xt_request_find_target(u8 af, const char *name, u8 revision)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
254
255
  {
  	struct xt_target *target;
adb00ae2e   Stephen Hemminger   netfilter: x_tabl...
256
257
258
259
260
261
262
  	target = xt_find_target(af, name, revision);
  	if (IS_ERR(target)) {
  		request_module("%st_%s", xt_prefix[af], name);
  		target = xt_find_target(af, name, revision);
  	}
  
  	return target;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
263
264
  }
  EXPORT_SYMBOL_GPL(xt_request_find_target);
76108cea0   Jan Engelhardt   netfilter: Use un...
265
  static int match_revfn(u8 af, const char *name, u8 revision, int *bestp)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
266
  {
5452e425a   Jan Engelhardt   [NETFILTER]: anno...
267
  	const struct xt_match *m;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
268
269
270
271
272
273
274
275
276
277
  	int have_rev = 0;
  
  	list_for_each_entry(m, &xt[af].match, list) {
  		if (strcmp(m->name, name) == 0) {
  			if (m->revision > *bestp)
  				*bestp = m->revision;
  			if (m->revision == revision)
  				have_rev = 1;
  		}
  	}
656caff20   Patrick McHardy   netfilter 04/09: ...
278
279
280
  
  	if (af != NFPROTO_UNSPEC && !have_rev)
  		return match_revfn(NFPROTO_UNSPEC, name, revision, bestp);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
281
282
  	return have_rev;
  }
76108cea0   Jan Engelhardt   netfilter: Use un...
283
  static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
284
  {
5452e425a   Jan Engelhardt   [NETFILTER]: anno...
285
  	const struct xt_target *t;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
286
287
288
289
290
291
292
293
294
295
  	int have_rev = 0;
  
  	list_for_each_entry(t, &xt[af].target, list) {
  		if (strcmp(t->name, name) == 0) {
  			if (t->revision > *bestp)
  				*bestp = t->revision;
  			if (t->revision == revision)
  				have_rev = 1;
  		}
  	}
656caff20   Patrick McHardy   netfilter 04/09: ...
296
297
298
  
  	if (af != NFPROTO_UNSPEC && !have_rev)
  		return target_revfn(NFPROTO_UNSPEC, name, revision, bestp);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
299
300
301
302
  	return have_rev;
  }
  
  /* Returns true or false (if no such extension at all) */
76108cea0   Jan Engelhardt   netfilter: Use un...
303
  int xt_find_revision(u8 af, const char *name, u8 revision, int target,
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
304
305
306
  		     int *err)
  {
  	int have_rev, best = -1;
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
307
  	if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
308
309
310
311
312
313
314
  		*err = -EINTR;
  		return 1;
  	}
  	if (target == 1)
  		have_rev = target_revfn(af, name, revision, &best);
  	else
  		have_rev = match_revfn(af, name, revision, &best);
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
315
  	mutex_unlock(&xt[af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
316
317
318
319
320
321
322
323
324
325
326
327
328
  
  	/* Nothing at all?  Return 0 to try loading module. */
  	if (best == -1) {
  		*err = -ENOENT;
  		return 0;
  	}
  
  	*err = best;
  	if (!have_rev)
  		*err = -EPROTONOSUPPORT;
  	return 1;
  }
  EXPORT_SYMBOL_GPL(xt_find_revision);
5b76c4948   Jan Engelhardt   netfilter: x_tabl...
329
330
  static char *
  textify_hooks(char *buf, size_t size, unsigned int mask, uint8_t nfproto)
451853645   Jan Engelhardt   netfilter: xtable...
331
  {
5b76c4948   Jan Engelhardt   netfilter: x_tabl...
332
  	static const char *const inetbr_names[] = {
451853645   Jan Engelhardt   netfilter: xtable...
333
334
335
  		"PREROUTING", "INPUT", "FORWARD",
  		"OUTPUT", "POSTROUTING", "BROUTING",
  	};
5b76c4948   Jan Engelhardt   netfilter: x_tabl...
336
337
338
339
340
  	static const char *const arp_names[] = {
  		"INPUT", "FORWARD", "OUTPUT",
  	};
  	const char *const *names;
  	unsigned int i, max;
451853645   Jan Engelhardt   netfilter: xtable...
341
342
343
  	char *p = buf;
  	bool np = false;
  	int res;
5b76c4948   Jan Engelhardt   netfilter: x_tabl...
344
345
346
  	names = (nfproto == NFPROTO_ARP) ? arp_names : inetbr_names;
  	max   = (nfproto == NFPROTO_ARP) ? ARRAY_SIZE(arp_names) :
  	                                   ARRAY_SIZE(inetbr_names);
451853645   Jan Engelhardt   netfilter: xtable...
347
  	*p = '\0';
5b76c4948   Jan Engelhardt   netfilter: x_tabl...
348
  	for (i = 0; i < max; ++i) {
451853645   Jan Engelhardt   netfilter: xtable...
349
350
351
352
353
354
355
356
357
358
359
360
  		if (!(mask & (1 << i)))
  			continue;
  		res = snprintf(p, size, "%s%s", np ? "/" : "", names[i]);
  		if (res > 0) {
  			size -= res;
  			p += res;
  		}
  		np = true;
  	}
  
  	return buf;
  }
916a917df   Jan Engelhardt   netfilter: xtable...
361
  int xt_check_match(struct xt_mtchk_param *par,
9b4fce7a3   Jan Engelhardt   netfilter: xtable...
362
  		   unsigned int size, u_int8_t proto, bool inv_proto)
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
363
  {
bd414ee60   Jan Engelhardt   netfilter: xtable...
364
  	int ret;
9b4fce7a3   Jan Engelhardt   netfilter: xtable...
365
366
  	if (XT_ALIGN(par->match->matchsize) != size &&
  	    par->match->matchsize != -1) {
043ef46c7   Jan Engelhardt   netfilter: move E...
367
368
369
370
  		/*
  		 * ebt_among is exempt from centralized matchsize checking
  		 * because it uses a dynamic-size data set.
  		 */
b402405d7   Jan Engelhardt   netfilter: xtable...
371
372
373
  		pr_err("%s_tables: %s.%u match: invalid size "
  		       "%u (kernel) != (user) %u
  ",
916a917df   Jan Engelhardt   netfilter: xtable...
374
  		       xt_prefix[par->family], par->match->name,
b402405d7   Jan Engelhardt   netfilter: xtable...
375
  		       par->match->revision,
9b4fce7a3   Jan Engelhardt   netfilter: xtable...
376
  		       XT_ALIGN(par->match->matchsize), size);
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
377
378
  		return -EINVAL;
  	}
9b4fce7a3   Jan Engelhardt   netfilter: xtable...
379
380
  	if (par->match->table != NULL &&
  	    strcmp(par->match->table, par->table) != 0) {
3dd5d7e3b   Joe Perches   x_tables: Convert...
381
382
  		pr_err("%s_tables: %s match: only valid in %s table, not %s
  ",
916a917df   Jan Engelhardt   netfilter: xtable...
383
  		       xt_prefix[par->family], par->match->name,
9b4fce7a3   Jan Engelhardt   netfilter: xtable...
384
  		       par->match->table, par->table);
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
385
386
  		return -EINVAL;
  	}
9b4fce7a3   Jan Engelhardt   netfilter: xtable...
387
  	if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) {
451853645   Jan Engelhardt   netfilter: xtable...
388
  		char used[64], allow[64];
3dd5d7e3b   Joe Perches   x_tables: Convert...
389
  		pr_err("%s_tables: %s match: used from hooks %s, but only "
451853645   Jan Engelhardt   netfilter: xtable...
390
391
  		       "valid from %s
  ",
916a917df   Jan Engelhardt   netfilter: xtable...
392
  		       xt_prefix[par->family], par->match->name,
5b76c4948   Jan Engelhardt   netfilter: x_tabl...
393
394
395
396
  		       textify_hooks(used, sizeof(used), par->hook_mask,
  		                     par->family),
  		       textify_hooks(allow, sizeof(allow), par->match->hooks,
  		                     par->family));
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
397
398
  		return -EINVAL;
  	}
9b4fce7a3   Jan Engelhardt   netfilter: xtable...
399
  	if (par->match->proto && (par->match->proto != proto || inv_proto)) {
3dd5d7e3b   Joe Perches   x_tables: Convert...
400
401
  		pr_err("%s_tables: %s match: only valid for protocol %u
  ",
916a917df   Jan Engelhardt   netfilter: xtable...
402
403
  		       xt_prefix[par->family], par->match->name,
  		       par->match->proto);
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
404
405
  		return -EINVAL;
  	}
bd414ee60   Jan Engelhardt   netfilter: xtable...
406
407
408
409
410
411
412
413
  	if (par->match->checkentry != NULL) {
  		ret = par->match->checkentry(par);
  		if (ret < 0)
  			return ret;
  		else if (ret > 0)
  			/* Flag up potential errors. */
  			return -EIO;
  	}
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
414
415
416
  	return 0;
  }
  EXPORT_SYMBOL_GPL(xt_check_match);
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
417
  #ifdef CONFIG_COMPAT
255d0dc34   Eric Dumazet   netfilter: x_tabl...
418
  int xt_compat_add_offset(u_int8_t af, unsigned int offset, int delta)
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
419
  {
255d0dc34   Eric Dumazet   netfilter: x_tabl...
420
  	struct xt_af *xp = &xt[af];
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
421

255d0dc34   Eric Dumazet   netfilter: x_tabl...
422
423
424
425
426
427
428
429
  	if (!xp->compat_tab) {
  		if (!xp->number)
  			return -EINVAL;
  		xp->compat_tab = vmalloc(sizeof(struct compat_delta) * xp->number);
  		if (!xp->compat_tab)
  			return -ENOMEM;
  		xp->cur = 0;
  	}
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
430

255d0dc34   Eric Dumazet   netfilter: x_tabl...
431
432
  	if (xp->cur >= xp->number)
  		return -EINVAL;
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
433

255d0dc34   Eric Dumazet   netfilter: x_tabl...
434
435
436
437
438
  	if (xp->cur)
  		delta += xp->compat_tab[xp->cur - 1].delta;
  	xp->compat_tab[xp->cur].offset = offset;
  	xp->compat_tab[xp->cur].delta = delta;
  	xp->cur++;
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
439
440
441
  	return 0;
  }
  EXPORT_SYMBOL_GPL(xt_compat_add_offset);
76108cea0   Jan Engelhardt   netfilter: Use un...
442
  void xt_compat_flush_offsets(u_int8_t af)
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
443
  {
255d0dc34   Eric Dumazet   netfilter: x_tabl...
444
445
446
447
  	if (xt[af].compat_tab) {
  		vfree(xt[af].compat_tab);
  		xt[af].compat_tab = NULL;
  		xt[af].number = 0;
5a6351eec   Eric Dumazet   netfilter: fix eb...
448
  		xt[af].cur = 0;
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
449
450
451
  	}
  }
  EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
3e5e524ff   Florian Westphal   netfilter: CONFIG...
452
  int xt_compat_calc_jump(u_int8_t af, unsigned int offset)
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
453
  {
255d0dc34   Eric Dumazet   netfilter: x_tabl...
454
455
456
457
458
459
460
461
462
463
464
465
  	struct compat_delta *tmp = xt[af].compat_tab;
  	int mid, left = 0, right = xt[af].cur - 1;
  
  	while (left <= right) {
  		mid = (left + right) >> 1;
  		if (offset > tmp[mid].offset)
  			left = mid + 1;
  		else if (offset < tmp[mid].offset)
  			right = mid - 1;
  		else
  			return mid ? tmp[mid - 1].delta : 0;
  	}
5a6351eec   Eric Dumazet   netfilter: fix eb...
466
  	return left ? tmp[left - 1].delta : 0;
b386d9f59   Patrick McHardy   [NETFILTER]: ip_t...
467
468
  }
  EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
255d0dc34   Eric Dumazet   netfilter: x_tabl...
469
470
471
472
473
474
  void xt_compat_init_offsets(u_int8_t af, unsigned int number)
  {
  	xt[af].number = number;
  	xt[af].cur = 0;
  }
  EXPORT_SYMBOL(xt_compat_init_offsets);
5452e425a   Jan Engelhardt   [NETFILTER]: anno...
475
  int xt_compat_match_offset(const struct xt_match *match)
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
476
  {
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
477
478
479
480
  	u_int16_t csize = match->compatsize ? : match->matchsize;
  	return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
  }
  EXPORT_SYMBOL_GPL(xt_compat_match_offset);
895669513   Patrick McHardy   [NETFILTER]: x_ta...
481
  int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
b0a6363c2   Patrick McHardy   [NETFILTER]: {ip,...
482
  			      unsigned int *size)
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
483
  {
5452e425a   Jan Engelhardt   [NETFILTER]: anno...
484
  	const struct xt_match *match = m->u.kernel.match;
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
  	struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
  	int pad, off = xt_compat_match_offset(match);
  	u_int16_t msize = cm->u.user.match_size;
  
  	m = *dstptr;
  	memcpy(m, cm, sizeof(*cm));
  	if (match->compat_from_user)
  		match->compat_from_user(m->data, cm->data);
  	else
  		memcpy(m->data, cm->data, msize - sizeof(*cm));
  	pad = XT_ALIGN(match->matchsize) - match->matchsize;
  	if (pad > 0)
  		memset(m->data + match->matchsize, 0, pad);
  
  	msize += off;
  	m->u.user.match_size = msize;
  
  	*size += off;
  	*dstptr += msize;
895669513   Patrick McHardy   [NETFILTER]: x_ta...
504
  	return 0;
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
505
506
  }
  EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
739674fb7   Jan Engelhardt   netfilter: xtable...
507
508
  int xt_compat_match_to_user(const struct xt_entry_match *m,
  			    void __user **dstptr, unsigned int *size)
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
509
  {
5452e425a   Jan Engelhardt   [NETFILTER]: anno...
510
  	const struct xt_match *match = m->u.kernel.match;
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
511
512
513
514
515
  	struct compat_xt_entry_match __user *cm = *dstptr;
  	int off = xt_compat_match_offset(match);
  	u_int16_t msize = m->u.user.match_size - off;
  
  	if (copy_to_user(cm, m, sizeof(*cm)) ||
a18aa31b7   Patrick McHardy   [NETFILTER]: ip_t...
516
517
518
  	    put_user(msize, &cm->u.user.match_size) ||
  	    copy_to_user(cm->u.user.name, m->u.kernel.match->name,
  			 strlen(m->u.kernel.match->name) + 1))
601e68e10   YOSHIFUJI Hideaki   [NETFILTER]: Fix ...
519
  		return -EFAULT;
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
520
521
522
523
524
525
526
  
  	if (match->compat_to_user) {
  		if (match->compat_to_user((void __user *)cm->data, m->data))
  			return -EFAULT;
  	} else {
  		if (copy_to_user(cm->data, m->data, msize - sizeof(*cm)))
  			return -EFAULT;
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
527
  	}
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
528
529
530
531
  
  	*size -= off;
  	*dstptr += msize;
  	return 0;
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
532
  }
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
533
534
  EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
  #endif /* CONFIG_COMPAT */
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
535

916a917df   Jan Engelhardt   netfilter: xtable...
536
  int xt_check_target(struct xt_tgchk_param *par,
af5d6dc20   Jan Engelhardt   netfilter: xtable...
537
  		    unsigned int size, u_int8_t proto, bool inv_proto)
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
538
  {
d6b00a534   Jan Engelhardt   netfilter: xtable...
539
  	int ret;
af5d6dc20   Jan Engelhardt   netfilter: xtable...
540
  	if (XT_ALIGN(par->target->targetsize) != size) {
b402405d7   Jan Engelhardt   netfilter: xtable...
541
542
543
  		pr_err("%s_tables: %s.%u target: invalid size "
  		       "%u (kernel) != (user) %u
  ",
916a917df   Jan Engelhardt   netfilter: xtable...
544
  		       xt_prefix[par->family], par->target->name,
b402405d7   Jan Engelhardt   netfilter: xtable...
545
  		       par->target->revision,
af5d6dc20   Jan Engelhardt   netfilter: xtable...
546
  		       XT_ALIGN(par->target->targetsize), size);
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
547
548
  		return -EINVAL;
  	}
af5d6dc20   Jan Engelhardt   netfilter: xtable...
549
550
  	if (par->target->table != NULL &&
  	    strcmp(par->target->table, par->table) != 0) {
3dd5d7e3b   Joe Perches   x_tables: Convert...
551
552
  		pr_err("%s_tables: %s target: only valid in %s table, not %s
  ",
916a917df   Jan Engelhardt   netfilter: xtable...
553
  		       xt_prefix[par->family], par->target->name,
af5d6dc20   Jan Engelhardt   netfilter: xtable...
554
  		       par->target->table, par->table);
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
555
556
  		return -EINVAL;
  	}
af5d6dc20   Jan Engelhardt   netfilter: xtable...
557
  	if (par->target->hooks && (par->hook_mask & ~par->target->hooks) != 0) {
451853645   Jan Engelhardt   netfilter: xtable...
558
  		char used[64], allow[64];
3dd5d7e3b   Joe Perches   x_tables: Convert...
559
  		pr_err("%s_tables: %s target: used from hooks %s, but only "
451853645   Jan Engelhardt   netfilter: xtable...
560
561
  		       "usable from %s
  ",
916a917df   Jan Engelhardt   netfilter: xtable...
562
  		       xt_prefix[par->family], par->target->name,
5b76c4948   Jan Engelhardt   netfilter: x_tabl...
563
564
565
566
  		       textify_hooks(used, sizeof(used), par->hook_mask,
  		                     par->family),
  		       textify_hooks(allow, sizeof(allow), par->target->hooks,
  		                     par->family));
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
567
568
  		return -EINVAL;
  	}
af5d6dc20   Jan Engelhardt   netfilter: xtable...
569
  	if (par->target->proto && (par->target->proto != proto || inv_proto)) {
3dd5d7e3b   Joe Perches   x_tables: Convert...
570
571
  		pr_err("%s_tables: %s target: only valid for protocol %u
  ",
916a917df   Jan Engelhardt   netfilter: xtable...
572
  		       xt_prefix[par->family], par->target->name,
af5d6dc20   Jan Engelhardt   netfilter: xtable...
573
  		       par->target->proto);
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
574
575
  		return -EINVAL;
  	}
d6b00a534   Jan Engelhardt   netfilter: xtable...
576
577
578
579
580
581
582
583
  	if (par->target->checkentry != NULL) {
  		ret = par->target->checkentry(par);
  		if (ret < 0)
  			return ret;
  		else if (ret > 0)
  			/* Flag up potential errors. */
  			return -EIO;
  	}
37f9f7334   Patrick McHardy   [NETFILTER]: xt_t...
584
585
586
  	return 0;
  }
  EXPORT_SYMBOL_GPL(xt_check_target);
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
587
  #ifdef CONFIG_COMPAT
5452e425a   Jan Engelhardt   [NETFILTER]: anno...
588
  int xt_compat_target_offset(const struct xt_target *target)
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
589
  {
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
590
591
592
593
594
595
  	u_int16_t csize = target->compatsize ? : target->targetsize;
  	return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
  }
  EXPORT_SYMBOL_GPL(xt_compat_target_offset);
  
  void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
b0a6363c2   Patrick McHardy   [NETFILTER]: {ip,...
596
  				unsigned int *size)
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
597
  {
5452e425a   Jan Engelhardt   [NETFILTER]: anno...
598
  	const struct xt_target *target = t->u.kernel.target;
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
  	struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
  	int pad, off = xt_compat_target_offset(target);
  	u_int16_t tsize = ct->u.user.target_size;
  
  	t = *dstptr;
  	memcpy(t, ct, sizeof(*ct));
  	if (target->compat_from_user)
  		target->compat_from_user(t->data, ct->data);
  	else
  		memcpy(t->data, ct->data, tsize - sizeof(*ct));
  	pad = XT_ALIGN(target->targetsize) - target->targetsize;
  	if (pad > 0)
  		memset(t->data + target->targetsize, 0, pad);
  
  	tsize += off;
  	t->u.user.target_size = tsize;
  
  	*size += off;
  	*dstptr += tsize;
  }
  EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
739674fb7   Jan Engelhardt   netfilter: xtable...
620
621
  int xt_compat_target_to_user(const struct xt_entry_target *t,
  			     void __user **dstptr, unsigned int *size)
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
622
  {
5452e425a   Jan Engelhardt   [NETFILTER]: anno...
623
  	const struct xt_target *target = t->u.kernel.target;
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
624
625
626
627
628
  	struct compat_xt_entry_target __user *ct = *dstptr;
  	int off = xt_compat_target_offset(target);
  	u_int16_t tsize = t->u.user.target_size - off;
  
  	if (copy_to_user(ct, t, sizeof(*ct)) ||
a18aa31b7   Patrick McHardy   [NETFILTER]: ip_t...
629
630
631
  	    put_user(tsize, &ct->u.user.target_size) ||
  	    copy_to_user(ct->u.user.name, t->u.kernel.target->name,
  			 strlen(t->u.kernel.target->name) + 1))
601e68e10   YOSHIFUJI Hideaki   [NETFILTER]: Fix ...
632
  		return -EFAULT;
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
633
634
635
636
637
638
639
  
  	if (target->compat_to_user) {
  		if (target->compat_to_user((void __user *)ct->data, t->data))
  			return -EFAULT;
  	} else {
  		if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct)))
  			return -EFAULT;
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
640
  	}
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
641
642
643
644
  
  	*size -= off;
  	*dstptr += tsize;
  	return 0;
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
645
  }
9fa492cdc   Patrick McHardy   [NETFILTER]: x_ta...
646
  EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
647
  #endif
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
648
649
650
651
652
653
  struct xt_table_info *xt_alloc_table_info(unsigned int size)
  {
  	struct xt_table_info *newinfo;
  	int cpu;
  
  	/* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
4481374ce   Jan Beulich   mm: replace vario...
654
  	if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > totalram_pages)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
655
  		return NULL;
259d4e41f   Eric Dumazet   [NETFILTER]: x_ta...
656
  	newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
657
658
659
660
  	if (!newinfo)
  		return NULL;
  
  	newinfo->size = size;
6f9120422   KAMEZAWA Hiroyuki   [PATCH] for_each_...
661
  	for_each_possible_cpu(cpu) {
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
  		if (size <= PAGE_SIZE)
  			newinfo->entries[cpu] = kmalloc_node(size,
  							GFP_KERNEL,
  							cpu_to_node(cpu));
  		else
  			newinfo->entries[cpu] = vmalloc_node(size,
  							cpu_to_node(cpu));
  
  		if (newinfo->entries[cpu] == NULL) {
  			xt_free_table_info(newinfo);
  			return NULL;
  		}
  	}
  
  	return newinfo;
  }
  EXPORT_SYMBOL(xt_alloc_table_info);
  
  void xt_free_table_info(struct xt_table_info *info)
  {
  	int cpu;
6f9120422   KAMEZAWA Hiroyuki   [PATCH] for_each_...
683
  	for_each_possible_cpu(cpu) {
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
684
685
686
687
688
  		if (info->size <= PAGE_SIZE)
  			kfree(info->entries[cpu]);
  		else
  			vfree(info->entries[cpu]);
  	}
f3c5c1bfd   Jan Engelhardt   netfilter: xtable...
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
  
  	if (info->jumpstack != NULL) {
  		if (sizeof(void *) * info->stacksize > PAGE_SIZE) {
  			for_each_possible_cpu(cpu)
  				vfree(info->jumpstack[cpu]);
  		} else {
  			for_each_possible_cpu(cpu)
  				kfree(info->jumpstack[cpu]);
  		}
  	}
  
  	if (sizeof(void **) * nr_cpu_ids > PAGE_SIZE)
  		vfree(info->jumpstack);
  	else
  		kfree(info->jumpstack);
7489aec8e   Eric Dumazet   netfilter: xtable...
704
705
  
  	free_percpu(info->stackptr);
f3c5c1bfd   Jan Engelhardt   netfilter: xtable...
706

2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
707
708
709
710
711
  	kfree(info);
  }
  EXPORT_SYMBOL(xt_free_table_info);
  
  /* Find table by name, grabs mutex & ref.  Returns ERR_PTR() on error. */
76108cea0   Jan Engelhardt   netfilter: Use un...
712
713
  struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
  				    const char *name)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
714
715
  {
  	struct xt_table *t;
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
716
  	if (mutex_lock_interruptible(&xt[af].mutex) != 0)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
717
  		return ERR_PTR(-EINTR);
8d8700520   Alexey Dobriyan   [NETFILTER]: x_ta...
718
  	list_for_each_entry(t, &net->xt.tables[af], list)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
719
720
  		if (strcmp(t->name, name) == 0 && try_module_get(t->me))
  			return t;
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
721
  	mutex_unlock(&xt[af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
722
723
724
725
726
727
  	return NULL;
  }
  EXPORT_SYMBOL_GPL(xt_find_table_lock);
  
  void xt_table_unlock(struct xt_table *table)
  {
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
728
  	mutex_unlock(&xt[table->af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
729
730
  }
  EXPORT_SYMBOL_GPL(xt_table_unlock);
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
731
  #ifdef CONFIG_COMPAT
76108cea0   Jan Engelhardt   netfilter: Use un...
732
  void xt_compat_lock(u_int8_t af)
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
733
734
735
736
  {
  	mutex_lock(&xt[af].compat_mutex);
  }
  EXPORT_SYMBOL_GPL(xt_compat_lock);
76108cea0   Jan Engelhardt   netfilter: Use un...
737
  void xt_compat_unlock(u_int8_t af)
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
738
739
740
741
742
  {
  	mutex_unlock(&xt[af].compat_mutex);
  }
  EXPORT_SYMBOL_GPL(xt_compat_unlock);
  #endif
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
743

7f5c6d4f6   Eric Dumazet   netfilter: get ri...
744
745
  DEFINE_PER_CPU(seqcount_t, xt_recseq);
  EXPORT_PER_CPU_SYMBOL_GPL(xt_recseq);
942e4a2bd   Stephen Hemminger   netfilter: revise...
746

f3c5c1bfd   Jan Engelhardt   netfilter: xtable...
747
748
749
750
  static int xt_jumpstack_alloc(struct xt_table_info *i)
  {
  	unsigned int size;
  	int cpu;
7489aec8e   Eric Dumazet   netfilter: xtable...
751
  	i->stackptr = alloc_percpu(unsigned int);
f3c5c1bfd   Jan Engelhardt   netfilter: xtable...
752
753
  	if (i->stackptr == NULL)
  		return -ENOMEM;
f3c5c1bfd   Jan Engelhardt   netfilter: xtable...
754
755
756
  
  	size = sizeof(void **) * nr_cpu_ids;
  	if (size > PAGE_SIZE)
3dbd44398   Joe Perches   net: Convert vmal...
757
  		i->jumpstack = vzalloc(size);
f3c5c1bfd   Jan Engelhardt   netfilter: xtable...
758
  	else
3dbd44398   Joe Perches   net: Convert vmal...
759
  		i->jumpstack = kzalloc(size, GFP_KERNEL);
f3c5c1bfd   Jan Engelhardt   netfilter: xtable...
760
761
  	if (i->jumpstack == NULL)
  		return -ENOMEM;
f3c5c1bfd   Jan Engelhardt   netfilter: xtable...
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
  
  	i->stacksize *= xt_jumpstack_multiplier;
  	size = sizeof(void *) * i->stacksize;
  	for_each_possible_cpu(cpu) {
  		if (size > PAGE_SIZE)
  			i->jumpstack[cpu] = vmalloc_node(size,
  				cpu_to_node(cpu));
  		else
  			i->jumpstack[cpu] = kmalloc_node(size,
  				GFP_KERNEL, cpu_to_node(cpu));
  		if (i->jumpstack[cpu] == NULL)
  			/*
  			 * Freeing will be done later on by the callers. The
  			 * chain is: xt_replace_table -> __do_replace ->
  			 * do_replace -> xt_free_table_info.
  			 */
  			return -ENOMEM;
  	}
  
  	return 0;
  }
942e4a2bd   Stephen Hemminger   netfilter: revise...
783

2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
784
785
786
787
788
789
  struct xt_table_info *
  xt_replace_table(struct xt_table *table,
  	      unsigned int num_counters,
  	      struct xt_table_info *newinfo,
  	      int *error)
  {
942e4a2bd   Stephen Hemminger   netfilter: revise...
790
  	struct xt_table_info *private;
f3c5c1bfd   Jan Engelhardt   netfilter: xtable...
791
  	int ret;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
792

d97a9e47b   Jan Engelhardt   netfilter: x_tabl...
793
794
795
796
797
  	ret = xt_jumpstack_alloc(newinfo);
  	if (ret < 0) {
  		*error = ret;
  		return NULL;
  	}
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
798
  	/* Do the substitution. */
942e4a2bd   Stephen Hemminger   netfilter: revise...
799
  	local_bh_disable();
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
800
  	private = table->private;
942e4a2bd   Stephen Hemminger   netfilter: revise...
801

2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
802
803
  	/* Check inside lock: is the old number correct? */
  	if (num_counters != private->number) {
be91fd5e3   Jan Engelhardt   netfilter: xtable...
804
805
  		pr_debug("num_counters != table->private->number (%u/%u)
  ",
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
806
  			 num_counters, private->number);
942e4a2bd   Stephen Hemminger   netfilter: revise...
807
  		local_bh_enable();
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
808
809
810
  		*error = -EAGAIN;
  		return NULL;
  	}
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
811

942e4a2bd   Stephen Hemminger   netfilter: revise...
812
813
814
815
816
817
818
819
820
821
  	table->private = newinfo;
  	newinfo->initial_entries = private->initial_entries;
  
  	/*
  	 * Even though table entries have now been swapped, other CPU's
  	 * may still be using the old entries. This is okay, because
  	 * resynchronization happens because of the locking done
  	 * during the get_counters() routine.
  	 */
  	local_bh_enable();
fbabf31e4   Thomas Graf   netfilter: create...
822
823
824
825
826
827
828
829
830
831
832
833
834
835
  #ifdef CONFIG_AUDIT
  	if (audit_enabled) {
  		struct audit_buffer *ab;
  
  		ab = audit_log_start(current->audit_context, GFP_KERNEL,
  				     AUDIT_NETFILTER_CFG);
  		if (ab) {
  			audit_log_format(ab, "table=%s family=%u entries=%u",
  					 table->name, table->af,
  					 private->number);
  			audit_log_end(ab);
  		}
  	}
  #endif
942e4a2bd   Stephen Hemminger   netfilter: revise...
836
  	return private;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
837
838
  }
  EXPORT_SYMBOL_GPL(xt_replace_table);
35aad0ffd   Jan Engelhardt   netfilter: xtable...
839
840
  struct xt_table *xt_register_table(struct net *net,
  				   const struct xt_table *input_table,
a98da11d8   Alexey Dobriyan   [NETFILTER]: x_ta...
841
842
  				   struct xt_table_info *bootstrap,
  				   struct xt_table_info *newinfo)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
843
844
845
  {
  	int ret;
  	struct xt_table_info *private;
35aad0ffd   Jan Engelhardt   netfilter: xtable...
846
  	struct xt_table *t, *table;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
847

44d34e721   Alexey Dobriyan   [NETFILTER]: x_ta...
848
  	/* Don't add one object to multiple lists. */
35aad0ffd   Jan Engelhardt   netfilter: xtable...
849
  	table = kmemdup(input_table, sizeof(struct xt_table), GFP_KERNEL);
44d34e721   Alexey Dobriyan   [NETFILTER]: x_ta...
850
851
852
853
  	if (!table) {
  		ret = -ENOMEM;
  		goto out;
  	}
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
854
  	ret = mutex_lock_interruptible(&xt[table->af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
855
  	if (ret != 0)
44d34e721   Alexey Dobriyan   [NETFILTER]: x_ta...
856
  		goto out_free;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
857
858
  
  	/* Don't autoload: we'd eat our tail... */
8d8700520   Alexey Dobriyan   [NETFILTER]: x_ta...
859
  	list_for_each_entry(t, &net->xt.tables[table->af], list) {
df0933dcb   Patrick McHardy   [NETFILTER]: kill...
860
861
862
863
  		if (strcmp(t->name, table->name) == 0) {
  			ret = -EEXIST;
  			goto unlock;
  		}
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
864
865
866
867
  	}
  
  	/* Simplifies replace_table code. */
  	table->private = bootstrap;
784544739   Stephen Hemminger   netfilter: iptabl...
868

2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
869
870
871
872
  	if (!xt_replace_table(table, 0, newinfo, &ret))
  		goto unlock;
  
  	private = table->private;
be91fd5e3   Jan Engelhardt   netfilter: xtable...
873
874
  	pr_debug("table->private->number = %u
  ", private->number);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
875
876
877
  
  	/* save number of initial entries */
  	private->initial_entries = private->number;
8d8700520   Alexey Dobriyan   [NETFILTER]: x_ta...
878
  	list_add(&table->list, &net->xt.tables[table->af]);
a98da11d8   Alexey Dobriyan   [NETFILTER]: x_ta...
879
880
  	mutex_unlock(&xt[table->af].mutex);
  	return table;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
881

2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
882
   unlock:
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
883
  	mutex_unlock(&xt[table->af].mutex);
44d34e721   Alexey Dobriyan   [NETFILTER]: x_ta...
884
885
  out_free:
  	kfree(table);
a98da11d8   Alexey Dobriyan   [NETFILTER]: x_ta...
886
887
  out:
  	return ERR_PTR(ret);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
888
889
890
891
892
893
  }
  EXPORT_SYMBOL_GPL(xt_register_table);
  
  void *xt_unregister_table(struct xt_table *table)
  {
  	struct xt_table_info *private;
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
894
  	mutex_lock(&xt[table->af].mutex);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
895
  	private = table->private;
df0933dcb   Patrick McHardy   [NETFILTER]: kill...
896
  	list_del(&table->list);
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
897
  	mutex_unlock(&xt[table->af].mutex);
44d34e721   Alexey Dobriyan   [NETFILTER]: x_ta...
898
  	kfree(table);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
899
900
901
902
903
904
  
  	return private;
  }
  EXPORT_SYMBOL_GPL(xt_unregister_table);
  
  #ifdef CONFIG_PROC_FS
715cf35ac   Alexey Dobriyan   [NETFILTER]: x_ta...
905
906
  struct xt_names_priv {
  	struct seq_net_private p;
76108cea0   Jan Engelhardt   netfilter: Use un...
907
  	u_int8_t af;
715cf35ac   Alexey Dobriyan   [NETFILTER]: x_ta...
908
  };
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
909
  static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
910
  {
715cf35ac   Alexey Dobriyan   [NETFILTER]: x_ta...
911
  	struct xt_names_priv *priv = seq->private;
1218854af   YOSHIFUJI Hideaki   [NET] NETNS: Omit...
912
  	struct net *net = seq_file_net(seq);
76108cea0   Jan Engelhardt   netfilter: Use un...
913
  	u_int8_t af = priv->af;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
914

025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
915
  	mutex_lock(&xt[af].mutex);
715cf35ac   Alexey Dobriyan   [NETFILTER]: x_ta...
916
  	return seq_list_start(&net->xt.tables[af], *pos);
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
917
  }
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
918

025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
919
920
  static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
  {
715cf35ac   Alexey Dobriyan   [NETFILTER]: x_ta...
921
  	struct xt_names_priv *priv = seq->private;
1218854af   YOSHIFUJI Hideaki   [NET] NETNS: Omit...
922
  	struct net *net = seq_file_net(seq);
76108cea0   Jan Engelhardt   netfilter: Use un...
923
  	u_int8_t af = priv->af;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
924

715cf35ac   Alexey Dobriyan   [NETFILTER]: x_ta...
925
  	return seq_list_next(v, &net->xt.tables[af], pos);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
926
  }
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
927
  static void xt_table_seq_stop(struct seq_file *seq, void *v)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
928
  {
715cf35ac   Alexey Dobriyan   [NETFILTER]: x_ta...
929
  	struct xt_names_priv *priv = seq->private;
76108cea0   Jan Engelhardt   netfilter: Use un...
930
  	u_int8_t af = priv->af;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
931

025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
932
933
  	mutex_unlock(&xt[af].mutex);
  }
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
934

025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
935
936
937
  static int xt_table_seq_show(struct seq_file *seq, void *v)
  {
  	struct xt_table *table = list_entry(v, struct xt_table, list);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
938

025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
939
940
941
942
943
944
  	if (strlen(table->name))
  		return seq_printf(seq, "%s
  ", table->name);
  	else
  		return 0;
  }
601e68e10   YOSHIFUJI Hideaki   [NETFILTER]: Fix ...
945

025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
946
947
948
949
950
951
952
953
954
955
  static const struct seq_operations xt_table_seq_ops = {
  	.start	= xt_table_seq_start,
  	.next	= xt_table_seq_next,
  	.stop	= xt_table_seq_stop,
  	.show	= xt_table_seq_show,
  };
  
  static int xt_table_open(struct inode *inode, struct file *file)
  {
  	int ret;
715cf35ac   Alexey Dobriyan   [NETFILTER]: x_ta...
956
  	struct xt_names_priv *priv;
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
957

715cf35ac   Alexey Dobriyan   [NETFILTER]: x_ta...
958
959
  	ret = seq_open_net(inode, file, &xt_table_seq_ops,
  			   sizeof(struct xt_names_priv));
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
960
  	if (!ret) {
715cf35ac   Alexey Dobriyan   [NETFILTER]: x_ta...
961
  		priv = ((struct seq_file *)file->private_data)->private;
d9dda78ba   Al Viro   procfs: new helpe...
962
  		priv->af = (unsigned long)PDE_DATA(inode);
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
963
964
  	}
  	return ret;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
965
  }
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
966
967
968
969
970
  static const struct file_operations xt_table_ops = {
  	.owner	 = THIS_MODULE,
  	.open	 = xt_table_open,
  	.read	 = seq_read,
  	.llseek	 = seq_lseek,
0e93bb945   Pavel Emelyanov   netfilter: x_tabl...
971
  	.release = seq_release_net,
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
972
  };
eb132205c   Jan Engelhardt   netfilter: make p...
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
  /*
   * Traverse state for ip{,6}_{tables,matches} for helping crossing
   * the multi-AF mutexes.
   */
  struct nf_mttg_trav {
  	struct list_head *head, *curr;
  	uint8_t class, nfproto;
  };
  
  enum {
  	MTTG_TRAV_INIT,
  	MTTG_TRAV_NFP_UNSPEC,
  	MTTG_TRAV_NFP_SPEC,
  	MTTG_TRAV_DONE,
  };
  
  static void *xt_mttg_seq_next(struct seq_file *seq, void *v, loff_t *ppos,
      bool is_target)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
991
  {
eb132205c   Jan Engelhardt   netfilter: make p...
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
  	static const uint8_t next_class[] = {
  		[MTTG_TRAV_NFP_UNSPEC] = MTTG_TRAV_NFP_SPEC,
  		[MTTG_TRAV_NFP_SPEC]   = MTTG_TRAV_DONE,
  	};
  	struct nf_mttg_trav *trav = seq->private;
  
  	switch (trav->class) {
  	case MTTG_TRAV_INIT:
  		trav->class = MTTG_TRAV_NFP_UNSPEC;
  		mutex_lock(&xt[NFPROTO_UNSPEC].mutex);
  		trav->head = trav->curr = is_target ?
  			&xt[NFPROTO_UNSPEC].target : &xt[NFPROTO_UNSPEC].match;
   		break;
  	case MTTG_TRAV_NFP_UNSPEC:
  		trav->curr = trav->curr->next;
  		if (trav->curr != trav->head)
  			break;
  		mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
  		mutex_lock(&xt[trav->nfproto].mutex);
  		trav->head = trav->curr = is_target ?
  			&xt[trav->nfproto].target : &xt[trav->nfproto].match;
  		trav->class = next_class[trav->class];
  		break;
  	case MTTG_TRAV_NFP_SPEC:
  		trav->curr = trav->curr->next;
  		if (trav->curr != trav->head)
  			break;
  		/* fallthru, _stop will unlock */
  	default:
  		return NULL;
  	}
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1023

eb132205c   Jan Engelhardt   netfilter: make p...
1024
1025
1026
  	if (ppos != NULL)
  		++*ppos;
  	return trav;
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1027
  }
601e68e10   YOSHIFUJI Hideaki   [NETFILTER]: Fix ...
1028

eb132205c   Jan Engelhardt   netfilter: make p...
1029
1030
  static void *xt_mttg_seq_start(struct seq_file *seq, loff_t *pos,
      bool is_target)
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1031
  {
eb132205c   Jan Engelhardt   netfilter: make p...
1032
1033
  	struct nf_mttg_trav *trav = seq->private;
  	unsigned int j;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1034

eb132205c   Jan Engelhardt   netfilter: make p...
1035
1036
1037
1038
1039
  	trav->class = MTTG_TRAV_INIT;
  	for (j = 0; j < *pos; ++j)
  		if (xt_mttg_seq_next(seq, NULL, NULL, is_target) == NULL)
  			return NULL;
  	return trav;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1040
  }
eb132205c   Jan Engelhardt   netfilter: make p...
1041
  static void xt_mttg_seq_stop(struct seq_file *seq, void *v)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1042
  {
eb132205c   Jan Engelhardt   netfilter: make p...
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
  	struct nf_mttg_trav *trav = seq->private;
  
  	switch (trav->class) {
  	case MTTG_TRAV_NFP_UNSPEC:
  		mutex_unlock(&xt[NFPROTO_UNSPEC].mutex);
  		break;
  	case MTTG_TRAV_NFP_SPEC:
  		mutex_unlock(&xt[trav->nfproto].mutex);
  		break;
  	}
  }
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1054

eb132205c   Jan Engelhardt   netfilter: make p...
1055
1056
1057
  static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
  {
  	return xt_mttg_seq_start(seq, pos, false);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1058
  }
eb132205c   Jan Engelhardt   netfilter: make p...
1059
  static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1060
  {
eb132205c   Jan Engelhardt   netfilter: make p...
1061
1062
  	return xt_mttg_seq_next(seq, v, ppos, false);
  }
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1063

eb132205c   Jan Engelhardt   netfilter: make p...
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
  static int xt_match_seq_show(struct seq_file *seq, void *v)
  {
  	const struct nf_mttg_trav *trav = seq->private;
  	const struct xt_match *match;
  
  	switch (trav->class) {
  	case MTTG_TRAV_NFP_UNSPEC:
  	case MTTG_TRAV_NFP_SPEC:
  		if (trav->curr == trav->head)
  			return 0;
  		match = list_entry(trav->curr, struct xt_match, list);
  		return (*match->name == '\0') ? 0 :
  		       seq_printf(seq, "%s
  ", match->name);
  	}
  	return 0;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1080
  }
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1081
1082
1083
  static const struct seq_operations xt_match_seq_ops = {
  	.start	= xt_match_seq_start,
  	.next	= xt_match_seq_next,
eb132205c   Jan Engelhardt   netfilter: make p...
1084
  	.stop	= xt_mttg_seq_stop,
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1085
  	.show	= xt_match_seq_show,
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1086
  };
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1087
  static int xt_match_open(struct inode *inode, struct file *file)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1088
  {
eb132205c   Jan Engelhardt   netfilter: make p...
1089
1090
  	struct seq_file *seq;
  	struct nf_mttg_trav *trav;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1091
  	int ret;
eb132205c   Jan Engelhardt   netfilter: make p...
1092
1093
1094
  	trav = kmalloc(sizeof(*trav), GFP_KERNEL);
  	if (trav == NULL)
  		return -ENOMEM;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1095

eb132205c   Jan Engelhardt   netfilter: make p...
1096
1097
1098
1099
  	ret = seq_open(file, &xt_match_seq_ops);
  	if (ret < 0) {
  		kfree(trav);
  		return ret;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1100
  	}
eb132205c   Jan Engelhardt   netfilter: make p...
1101
1102
1103
  
  	seq = file->private_data;
  	seq->private = trav;
d9dda78ba   Al Viro   procfs: new helpe...
1104
  	trav->nfproto = (unsigned long)PDE_DATA(inode);
eb132205c   Jan Engelhardt   netfilter: make p...
1105
  	return 0;
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1106
1107
1108
1109
1110
1111
1112
  }
  
  static const struct file_operations xt_match_ops = {
  	.owner	 = THIS_MODULE,
  	.open	 = xt_match_open,
  	.read	 = seq_read,
  	.llseek	 = seq_lseek,
eb132205c   Jan Engelhardt   netfilter: make p...
1113
  	.release = seq_release_private,
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1114
  };
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1115

025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1116
1117
  static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
  {
eb132205c   Jan Engelhardt   netfilter: make p...
1118
  	return xt_mttg_seq_start(seq, pos, true);
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1119
  }
eb132205c   Jan Engelhardt   netfilter: make p...
1120
  static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *ppos)
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1121
  {
eb132205c   Jan Engelhardt   netfilter: make p...
1122
  	return xt_mttg_seq_next(seq, v, ppos, true);
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1123
1124
1125
1126
  }
  
  static int xt_target_seq_show(struct seq_file *seq, void *v)
  {
eb132205c   Jan Engelhardt   netfilter: make p...
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
  	const struct nf_mttg_trav *trav = seq->private;
  	const struct xt_target *target;
  
  	switch (trav->class) {
  	case MTTG_TRAV_NFP_UNSPEC:
  	case MTTG_TRAV_NFP_SPEC:
  		if (trav->curr == trav->head)
  			return 0;
  		target = list_entry(trav->curr, struct xt_target, list);
  		return (*target->name == '\0') ? 0 :
  		       seq_printf(seq, "%s
  ", target->name);
  	}
  	return 0;
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1141
1142
1143
1144
1145
  }
  
  static const struct seq_operations xt_target_seq_ops = {
  	.start	= xt_target_seq_start,
  	.next	= xt_target_seq_next,
eb132205c   Jan Engelhardt   netfilter: make p...
1146
  	.stop	= xt_mttg_seq_stop,
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1147
1148
1149
1150
1151
  	.show	= xt_target_seq_show,
  };
  
  static int xt_target_open(struct inode *inode, struct file *file)
  {
eb132205c   Jan Engelhardt   netfilter: make p...
1152
1153
  	struct seq_file *seq;
  	struct nf_mttg_trav *trav;
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1154
  	int ret;
eb132205c   Jan Engelhardt   netfilter: make p...
1155
1156
1157
  	trav = kmalloc(sizeof(*trav), GFP_KERNEL);
  	if (trav == NULL)
  		return -ENOMEM;
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1158

eb132205c   Jan Engelhardt   netfilter: make p...
1159
1160
1161
1162
  	ret = seq_open(file, &xt_target_seq_ops);
  	if (ret < 0) {
  		kfree(trav);
  		return ret;
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1163
  	}
eb132205c   Jan Engelhardt   netfilter: make p...
1164
1165
1166
  
  	seq = file->private_data;
  	seq->private = trav;
d9dda78ba   Al Viro   procfs: new helpe...
1167
  	trav->nfproto = (unsigned long)PDE_DATA(inode);
eb132205c   Jan Engelhardt   netfilter: make p...
1168
  	return 0;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1169
  }
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1170
  static const struct file_operations xt_target_ops = {
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1171
  	.owner	 = THIS_MODULE,
025d93d14   Alexey Dobriyan   [NETFILTER]: x_ta...
1172
  	.open	 = xt_target_open,
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1173
1174
  	.read	 = seq_read,
  	.llseek	 = seq_lseek,
eb132205c   Jan Engelhardt   netfilter: make p...
1175
  	.release = seq_release_private,
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1176
1177
1178
1179
1180
1181
1182
  };
  
  #define FORMAT_TABLES	"_tables_names"
  #define	FORMAT_MATCHES	"_tables_matches"
  #define FORMAT_TARGETS 	"_tables_targets"
  
  #endif /* CONFIG_PROC_FS */
2b95efe7f   Jan Engelhardt   netfilter: xtable...
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
  /**
   * xt_hook_link - set up hooks for a new table
   * @table:	table with metadata needed to set up hooks
   * @fn:		Hook function
   *
   * This function will take care of creating and registering the necessary
   * Netfilter hooks for XT tables.
   */
  struct nf_hook_ops *xt_hook_link(const struct xt_table *table, nf_hookfn *fn)
  {
  	unsigned int hook_mask = table->valid_hooks;
  	uint8_t i, num_hooks = hweight32(hook_mask);
  	uint8_t hooknum;
  	struct nf_hook_ops *ops;
  	int ret;
  
  	ops = kmalloc(sizeof(*ops) * num_hooks, GFP_KERNEL);
  	if (ops == NULL)
  		return ERR_PTR(-ENOMEM);
  
  	for (i = 0, hooknum = 0; i < num_hooks && hook_mask != 0;
  	     hook_mask >>= 1, ++hooknum) {
  		if (!(hook_mask & 1))
  			continue;
  		ops[i].hook     = fn;
  		ops[i].owner    = table->me;
  		ops[i].pf       = table->af;
  		ops[i].hooknum  = hooknum;
  		ops[i].priority = table->priority;
  		++i;
  	}
  
  	ret = nf_register_hooks(ops, num_hooks);
  	if (ret < 0) {
  		kfree(ops);
  		return ERR_PTR(ret);
  	}
  
  	return ops;
  }
  EXPORT_SYMBOL_GPL(xt_hook_link);
  
  /**
   * xt_hook_unlink - remove hooks for a table
   * @ops:	nf_hook_ops array as returned by nf_hook_link
   * @hook_mask:	the very same mask that was passed to nf_hook_link
   */
  void xt_hook_unlink(const struct xt_table *table, struct nf_hook_ops *ops)
  {
  	nf_unregister_hooks(ops, hweight32(table->valid_hooks));
  	kfree(ops);
  }
  EXPORT_SYMBOL_GPL(xt_hook_unlink);
76108cea0   Jan Engelhardt   netfilter: Use un...
1236
  int xt_proto_init(struct net *net, u_int8_t af)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1237
1238
1239
1240
1241
  {
  #ifdef CONFIG_PROC_FS
  	char buf[XT_FUNCTION_MAXNAMELEN];
  	struct proc_dir_entry *proc;
  #endif
7e9c6eeb1   Jan Engelhardt   netfilter: Introd...
1242
  	if (af >= ARRAY_SIZE(xt_prefix))
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1243
1244
1245
1246
  		return -EINVAL;
  
  
  #ifdef CONFIG_PROC_FS
ce18afe57   Tobias Klauser   [NETFILTER]: x_ta...
1247
  	strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1248
  	strlcat(buf, FORMAT_TABLES, sizeof(buf));
8b169240e   Denis V. Lunev   netfilter: assign...
1249
1250
  	proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
  				(void *)(unsigned long)af);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1251
1252
  	if (!proc)
  		goto out;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1253

ce18afe57   Tobias Klauser   [NETFILTER]: x_ta...
1254
  	strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1255
  	strlcat(buf, FORMAT_MATCHES, sizeof(buf));
8b169240e   Denis V. Lunev   netfilter: assign...
1256
1257
  	proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
  				(void *)(unsigned long)af);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1258
1259
  	if (!proc)
  		goto out_remove_tables;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1260

ce18afe57   Tobias Klauser   [NETFILTER]: x_ta...
1261
  	strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1262
  	strlcat(buf, FORMAT_TARGETS, sizeof(buf));
8b169240e   Denis V. Lunev   netfilter: assign...
1263
1264
  	proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
  				(void *)(unsigned long)af);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1265
1266
  	if (!proc)
  		goto out_remove_matches;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1267
1268
1269
1270
1271
1272
  #endif
  
  	return 0;
  
  #ifdef CONFIG_PROC_FS
  out_remove_matches:
ce18afe57   Tobias Klauser   [NETFILTER]: x_ta...
1273
  	strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1274
  	strlcat(buf, FORMAT_MATCHES, sizeof(buf));
ece31ffd5   Gao feng   net: proc: change...
1275
  	remove_proc_entry(buf, net->proc_net);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1276
1277
  
  out_remove_tables:
ce18afe57   Tobias Klauser   [NETFILTER]: x_ta...
1278
  	strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1279
  	strlcat(buf, FORMAT_TABLES, sizeof(buf));
ece31ffd5   Gao feng   net: proc: change...
1280
  	remove_proc_entry(buf, net->proc_net);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1281
1282
1283
1284
1285
  out:
  	return -1;
  #endif
  }
  EXPORT_SYMBOL_GPL(xt_proto_init);
76108cea0   Jan Engelhardt   netfilter: Use un...
1286
  void xt_proto_fini(struct net *net, u_int8_t af)
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1287
1288
1289
  {
  #ifdef CONFIG_PROC_FS
  	char buf[XT_FUNCTION_MAXNAMELEN];
ce18afe57   Tobias Klauser   [NETFILTER]: x_ta...
1290
  	strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1291
  	strlcat(buf, FORMAT_TABLES, sizeof(buf));
ece31ffd5   Gao feng   net: proc: change...
1292
  	remove_proc_entry(buf, net->proc_net);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1293

ce18afe57   Tobias Klauser   [NETFILTER]: x_ta...
1294
  	strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1295
  	strlcat(buf, FORMAT_TARGETS, sizeof(buf));
ece31ffd5   Gao feng   net: proc: change...
1296
  	remove_proc_entry(buf, net->proc_net);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1297

ce18afe57   Tobias Klauser   [NETFILTER]: x_ta...
1298
  	strlcpy(buf, xt_prefix[af], sizeof(buf));
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1299
  	strlcat(buf, FORMAT_MATCHES, sizeof(buf));
ece31ffd5   Gao feng   net: proc: change...
1300
  	remove_proc_entry(buf, net->proc_net);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1301
1302
1303
  #endif /*CONFIG_PROC_FS*/
  }
  EXPORT_SYMBOL_GPL(xt_proto_fini);
8d8700520   Alexey Dobriyan   [NETFILTER]: x_ta...
1304
1305
1306
  static int __net_init xt_net_init(struct net *net)
  {
  	int i;
7e9c6eeb1   Jan Engelhardt   netfilter: Introd...
1307
  	for (i = 0; i < NFPROTO_NUMPROTO; i++)
8d8700520   Alexey Dobriyan   [NETFILTER]: x_ta...
1308
1309
1310
1311
1312
1313
1314
  		INIT_LIST_HEAD(&net->xt.tables[i]);
  	return 0;
  }
  
  static struct pernet_operations xt_net_ops = {
  	.init = xt_net_init,
  };
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1315
1316
1317
  
  static int __init xt_init(void)
  {
942e4a2bd   Stephen Hemminger   netfilter: revise...
1318
1319
1320
1321
  	unsigned int i;
  	int rv;
  
  	for_each_possible_cpu(i) {
7f5c6d4f6   Eric Dumazet   netfilter: get ri...
1322
  		seqcount_init(&per_cpu(xt_recseq, i));
942e4a2bd   Stephen Hemminger   netfilter: revise...
1323
  	}
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1324

7e9c6eeb1   Jan Engelhardt   netfilter: Introd...
1325
  	xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1326
1327
  	if (!xt)
  		return -ENOMEM;
7e9c6eeb1   Jan Engelhardt   netfilter: Introd...
1328
  	for (i = 0; i < NFPROTO_NUMPROTO; i++) {
9e19bb6d7   Ingo Molnar   [NETFILTER] x_tab...
1329
  		mutex_init(&xt[i].mutex);
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
1330
1331
  #ifdef CONFIG_COMPAT
  		mutex_init(&xt[i].compat_mutex);
255d0dc34   Eric Dumazet   netfilter: x_tabl...
1332
  		xt[i].compat_tab = NULL;
2722971cb   Dmitry Mishin   [NETFILTER]: ipta...
1333
  #endif
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1334
1335
  		INIT_LIST_HEAD(&xt[i].target);
  		INIT_LIST_HEAD(&xt[i].match);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1336
  	}
8d8700520   Alexey Dobriyan   [NETFILTER]: x_ta...
1337
1338
1339
1340
  	rv = register_pernet_subsys(&xt_net_ops);
  	if (rv < 0)
  		kfree(xt);
  	return rv;
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1341
1342
1343
1344
  }
  
  static void __exit xt_fini(void)
  {
8d8700520   Alexey Dobriyan   [NETFILTER]: x_ta...
1345
  	unregister_pernet_subsys(&xt_net_ops);
2e4e6a17a   Harald Welte   [NETFILTER] x_tab...
1346
1347
1348
1349
1350
  	kfree(xt);
  }
  
  module_init(xt_init);
  module_exit(xt_fini);