All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ipvsadm: init svc in ipvs_get_service
@ 2013-08-24 10:40 Julian Anastasov
  2013-08-26  7:14 ` Simon Horman
  2013-08-27 17:22 ` Ryan O'Hara
  0 siblings, 2 replies; 3+ messages in thread
From: Julian Anastasov @ 2013-08-24 10:40 UTC (permalink / raw)
  To: Simon Horman; +Cc: lvs-devel

ipvs_get_service() needs to init the allocated svc
for the non-netlink case due to the used CHECK_COMPAT_SVC
macro that includes pe_name[0] check in CHECK_PE. Use
calloc to avoid reading random data.

For the netlink case use malloc as before.

Signed-off-by: Julian Anastasov <ja@ssi.bg>
---
 libipvs/libipvs.c |   25 ++++++++++++++++---------
 1 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/libipvs/libipvs.c b/libipvs/libipvs.c
index 04473fb..d2fec49 100644
--- a/libipvs/libipvs.c
+++ b/libipvs/libipvs.c
@@ -930,22 +930,18 @@ ipvs_get_service(__u32 fwmark, __u16 af, __u16 protocol, union nf_inet_addr addr
 	ipvs_service_entry_t *svc;
 	socklen_t len;
 
-	len = sizeof(*svc);
-	if (!(svc = malloc(len)))
-		return NULL;
-
 	ipvs_func = ipvs_get_service;
 
-	svc->fwmark = fwmark;
-	svc->af = af;
-	svc->protocol = protocol;
-	svc->addr = addr;
-	svc->port = port;
 #ifdef LIBIPVS_USE_NL
 	if (try_nl) {
 		struct ip_vs_get_services *get;
 		struct nl_msg *msg;
 		ipvs_service_t tsvc;
+
+		svc = malloc(sizeof(*svc));
+		if (!svc)
+			return NULL;
+
 		tsvc.fwmark = fwmark;
 		tsvc.af = af;
 		tsvc.protocol= protocol;
@@ -978,6 +974,17 @@ ipvs_get_service_err2:
 	}
 #endif
 
+	len = sizeof(*svc);
+	svc = calloc(1, len);
+	if (!svc)
+		return NULL;
+
+	svc->fwmark = fwmark;
+	svc->af = af;
+	svc->protocol = protocol;
+	svc->addr = addr;
+	svc->port = port;
+
 	CHECK_COMPAT_SVC(svc, NULL);
 	if (getsockopt(sockfd, IPPROTO_IP, IP_VS_SO_GET_SERVICE,
 		       (char *)svc, &len)) {
-- 
1.7.3.4


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

* Re: [PATCH] ipvsadm: init svc in ipvs_get_service
  2013-08-24 10:40 [PATCH] ipvsadm: init svc in ipvs_get_service Julian Anastasov
@ 2013-08-26  7:14 ` Simon Horman
  2013-08-27 17:22 ` Ryan O'Hara
  1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2013-08-26  7:14 UTC (permalink / raw)
  To: Julian Anastasov; +Cc: lvs-devel

On Sat, Aug 24, 2013 at 01:40:53PM +0300, Julian Anastasov wrote:
> ipvs_get_service() needs to init the allocated svc
> for the non-netlink case due to the used CHECK_COMPAT_SVC
> macro that includes pe_name[0] check in CHECK_PE. Use
> calloc to avoid reading random data.
> 
> For the netlink case use malloc as before.
> 
> Signed-off-by: Julian Anastasov <ja@ssi.bg>

Thanks, applied.

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

* Re: [PATCH] ipvsadm: init svc in ipvs_get_service
  2013-08-24 10:40 [PATCH] ipvsadm: init svc in ipvs_get_service Julian Anastasov
  2013-08-26  7:14 ` Simon Horman
@ 2013-08-27 17:22 ` Ryan O'Hara
  1 sibling, 0 replies; 3+ messages in thread
From: Ryan O'Hara @ 2013-08-27 17:22 UTC (permalink / raw)
  To: Julian Anastasov; +Cc: Simon Horman, lvs-devel

Thanks for fixing this.

Ryan

On Sat, Aug 24, 2013 at 01:40:53PM +0300, Julian Anastasov wrote:
> ipvs_get_service() needs to init the allocated svc
> for the non-netlink case due to the used CHECK_COMPAT_SVC
> macro that includes pe_name[0] check in CHECK_PE. Use
> calloc to avoid reading random data.
> 
> For the netlink case use malloc as before.
> 
> Signed-off-by: Julian Anastasov <ja@ssi.bg>
> ---
>  libipvs/libipvs.c |   25 ++++++++++++++++---------
>  1 files changed, 16 insertions(+), 9 deletions(-)
> 
> diff --git a/libipvs/libipvs.c b/libipvs/libipvs.c
> index 04473fb..d2fec49 100644
> --- a/libipvs/libipvs.c
> +++ b/libipvs/libipvs.c
> @@ -930,22 +930,18 @@ ipvs_get_service(__u32 fwmark, __u16 af, __u16 protocol, union nf_inet_addr addr
>  	ipvs_service_entry_t *svc;
>  	socklen_t len;
>  
> -	len = sizeof(*svc);
> -	if (!(svc = malloc(len)))
> -		return NULL;
> -
>  	ipvs_func = ipvs_get_service;
>  
> -	svc->fwmark = fwmark;
> -	svc->af = af;
> -	svc->protocol = protocol;
> -	svc->addr = addr;
> -	svc->port = port;
>  #ifdef LIBIPVS_USE_NL
>  	if (try_nl) {
>  		struct ip_vs_get_services *get;
>  		struct nl_msg *msg;
>  		ipvs_service_t tsvc;
> +
> +		svc = malloc(sizeof(*svc));
> +		if (!svc)
> +			return NULL;
> +
>  		tsvc.fwmark = fwmark;
>  		tsvc.af = af;
>  		tsvc.protocol= protocol;
> @@ -978,6 +974,17 @@ ipvs_get_service_err2:
>  	}
>  #endif
>  
> +	len = sizeof(*svc);
> +	svc = calloc(1, len);
> +	if (!svc)
> +		return NULL;
> +
> +	svc->fwmark = fwmark;
> +	svc->af = af;
> +	svc->protocol = protocol;
> +	svc->addr = addr;
> +	svc->port = port;
> +
>  	CHECK_COMPAT_SVC(svc, NULL);
>  	if (getsockopt(sockfd, IPPROTO_IP, IP_VS_SO_GET_SERVICE,
>  		       (char *)svc, &len)) {
> -- 
> 1.7.3.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe lvs-devel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2013-08-27 17:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-24 10:40 [PATCH] ipvsadm: init svc in ipvs_get_service Julian Anastasov
2013-08-26  7:14 ` Simon Horman
2013-08-27 17:22 ` Ryan O'Hara

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.