Displaying 3 results from an estimated 3 matches for "xtables_target".
2017 Jan 03
3
[Bug 1110] New: Build failure if --with-xtables
...pects argument of type ‘char *’, but
argument 2 has type ‘int’ [-Wformat=]
printf("%s", xt_xlate_get(xl));
^
xt.c:38:30: warning: unused variable ‘params’ [-Wunused-variable]
struct xt_xlate_mt_params params = {
^
xt.c:56:29: error: ‘struct xtables_target’ has no member named ‘xlate’
} else if (stmt->xt.target->xlate) {
^
xt.c:57:11: error: variable ‘params’ has initializer but incomplete type
struct xt_xlate_tg_params params = {
^
xt.c:58:5: error: unknown field ‘ip’ specified in initializer...
2023 Nov 10
0
[Bug 1723] New: ebtables-nft help output woes
...ed for logging
| --nflog-range range : Number of byte to copy
| --nflog-threshold : Message threshold ofin-kernel queue
| free(): double free detected in tcache 2
| zsh: IOT instruction sudo ../../../install/sbin/ebtables -h nflog
It is caused by nft_fini() freeing 'target->t' in xtables_targets list which
apparently has been freed already by ebt_cs_clean(). Maybe the
xtables_find_target() call is bad?
--
You are receiving this mail because:
You are watching all bug changes.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.netfilter.org/pi...
2011 Jun 15
2
[Bug 724] New: Iptables doesn't delete rules matching if target is RATEEST - patch attached
...he struct
xt_rateest_target_info is used only by kernel:
struct xt_rateest_target_info {
char name[IFNAMSIZ];
__s8 interval;
__u8 ewma_log;
/* Used internally by the kernel */
struct xt_rateest *est __attribute__((aligned(8)));
};
but in struct xtables_target .size and .userspacesize are equals.
Simply correcting this solved the problem.
Here is the diff:
--- iptables-1.4.11.1/extensions/libxt_RATEEST.c 2011-06-08
15:26:17.000000000 +0200
+++ iptables-1.4.11.1-patched/extensions/libxt_RATEEST.c 2011-06-15
02:27:17.021704678 +0200
@@ -197,...