All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/3] ipset: Fix malformed output from list/save for ICMP types in port field.
@ 2013-11-07 10:56 Sergey Popovich
  2013-11-11 21:35 ` Jozsef Kadlecsik
  0 siblings, 1 reply; 2+ messages in thread
From: Sergey Popovich @ 2013-11-07 10:56 UTC (permalink / raw)
  To: netfilter-devel

Found with ipset 6.12.1, but upstream version is still affected.

Creating set of dimension three, adding elements to it and then
displaying gives following results:
-----------------------------------

 # ipset create test-1 hash:ip,port,ip
 # ipset add test-1 192.0.2.1,icmp:echo-request,192.0.2.1
 # ipset add test-1 192.0.2.1,icmp:ttl-zero-during-reassembly,192.0.2.1
 # ipset list test-1
 Name: test-1
 Type: hash:ip,port,ip
 Header: family inet hashsize 1024 maxelem 65536
 Size in memory: 16608
 References: 0
 Members:
 192.0.2.1,icmp:ttl-zero-during-reass,192.0.2.1
 192.0.2.1,icmp:echo-re,192.0.2.1

Same results with -output save|xml.

ipset_print_proto_port() from lib/print.c returns incorrect length
of printed string when ICMP/ICMPv6 specified in port field.

Signed-off-by: Sergey Popovich <popovich_sergei@mail.ru>
---
 lib/print.c |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/lib/print.c b/lib/print.c
index abdfd34..6988fdf 100644
--- a/lib/print.c
+++ b/lib/print.c
@@ -709,18 +709,20 @@ ipset_print_proto_port(char *buf, unsigned int len,
 		case IPPROTO_UDPLITE:
 			break;
 		case IPPROTO_ICMP:
-			return ipset_print_icmp(buf + offset, len, data,
+			size = ipset_print_icmp(buf + offset, len, data,
 						IPSET_OPT_PORT, env);
+			goto out;
 		case IPPROTO_ICMPV6:
-			return ipset_print_icmpv6(buf + offset, len, data,
+			size = ipset_print_icmpv6(buf + offset, len, data,
 						  IPSET_OPT_PORT, env);
+			goto out;
 		default:
 			break;
 		}
 	}
 	size = ipset_print_port(buf + offset, len, data, IPSET_OPT_PORT, env);
+out:
 	SNPRINTF_FAILURE(size, len, offset);
-
 	return offset;
 }
 
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 2/3] ipset: Fix malformed output from list/save for ICMP types in port field.
  2013-11-07 10:56 [PATCH 2/3] ipset: Fix malformed output from list/save for ICMP types in port field Sergey Popovich
@ 2013-11-11 21:35 ` Jozsef Kadlecsik
  0 siblings, 0 replies; 2+ messages in thread
From: Jozsef Kadlecsik @ 2013-11-11 21:35 UTC (permalink / raw)
  To: Sergey Popovich; +Cc: netfilter-devel

On Thu, 7 Nov 2013, Sergey Popovich wrote:

> Found with ipset 6.12.1, but upstream version is still affected.
> 
> Creating set of dimension three, adding elements to it and then
> displaying gives following results:
> -----------------------------------
> 
>  # ipset create test-1 hash:ip,port,ip
>  # ipset add test-1 192.0.2.1,icmp:echo-request,192.0.2.1
>  # ipset add test-1 192.0.2.1,icmp:ttl-zero-during-reassembly,192.0.2.1
>  # ipset list test-1
>  Name: test-1
>  Type: hash:ip,port,ip
>  Header: family inet hashsize 1024 maxelem 65536
>  Size in memory: 16608
>  References: 0
>  Members:
>  192.0.2.1,icmp:ttl-zero-during-reass,192.0.2.1
>  192.0.2.1,icmp:echo-re,192.0.2.1
> 
> Same results with -output save|xml.
> 
> ipset_print_proto_port() from lib/print.c returns incorrect length
> of printed string when ICMP/ICMPv6 specified in port field.

Patch is applied, thanks.

Best regards,
Jozsef
-
E-mail  : kadlec@blackhole.kfki.hu, kadlecsik.jozsef@wigner.mta.hu
PGP key : http://www.kfki.hu/~kadlec/pgp_public_key.txt
Address : Wigner Research Centre for Physics, Hungarian Academy of Sciences
          H-1525 Budapest 114, POB. 49, Hungary

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-11-11 21:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-07 10:56 [PATCH 2/3] ipset: Fix malformed output from list/save for ICMP types in port field Sergey Popovich
2013-11-11 21:35 ` Jozsef Kadlecsik

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.