qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] slirp: goto bad in udp_input if sosendto fails


From: Jan Kiszka
Subject: Re: [Qemu-devel] [PATCH] slirp: goto bad in udp_input if sosendto fails
Date: Thu, 12 Jun 2014 07:47:25 +0200
User-agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.8.1.12) Gecko/20080226 SUSE/2.0.0.12-1.1 Thunderbird/2.0.0.12 Mnenhy/0.7.5.666

On 2014-06-11 10:55, Samuel Thibault wrote:
> Before this patch, if sosendto fails, udp_input is executed as if the
> packet was sent. This could cause memory leak.

Cannot follow yet how this could leak (not saying I fully got what it
should NOT leak - nasty code). Can you elaborate on the before/after?

Jan

> This patch adds a goto bad to cut the execution of this function.
> 
> Signed-off-by: Guillaume Subiron <address@hidden>
> ---
>  slirp/udp.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/slirp/udp.c b/slirp/udp.c
> index 8cc6cb6..fd2446a 100644
> --- a/slirp/udp.c
> +++ b/slirp/udp.c
> @@ -218,6 +218,7 @@ udp_input(register struct mbuf *m, int iphlen)
>         *ip=save_ip;
>         DEBUG_MISC((dfd,"udp tx errno = %d-%s\n",errno,strerror(errno)));
>         icmp_error(m, ICMP_UNREACH,ICMP_UNREACH_NET, 0,strerror(errno));
> +       goto bad;
>       }
>  
>       m_free(so->so_m);   /* used for ICMP if error on sorecvfrom */
> 

-- 
Siemens AG, Corporate Technology, CT RTC ITP SES-DE
Corporate Competence Center Embedded Linux



reply via email to

[Prev in Thread] Current Thread [Next in Thread]