Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1363030

Re: [PATCH] selinux: fix memory leak on node_ptr on error return path

From Paul Moore <paul@paul-moore.com>
Newsgroups linux.kernel
Subject Re: [PATCH] selinux: fix memory leak on node_ptr on error return path
Date 2016-03-22 22:40 +0100
Message-ID <rfCbU-20m-11@gated-at.bofh.it> (permalink)
References <rfh7s-45t-15@gated-at.bofh.it> <rfB6b-1hK-51@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Tue, Mar 22, 2016 at 4:28 PM, Serge E. Hallyn <serge@hallyn.com> wrote:
> Quoting Colin King (colin.king@canonical.com):
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> node_ptr is not being free'd if the list allocation fails, fix
>> this by kfree'ing it before exiting on the error path.
>>
>> Signed-off-by: Colin Ian King <colin.king@canonical.com>
>
> Hi,
>
> I'm not very familiar with this code any more, but are you sure
> this is needed and doesn't cause a new bug?  It *looks* like
> the avtab_insert_nonunique() actually inserts the node_ptr
> into the policydb, and the policydb is the one that should
> eventually free it.

Exactly.  cond_insertf() calls avtab_insert_nonunique() which calls
avtab_insert_node() which adds the node to the avtab.  The avtab will
get cleaned up later by the error handling code in the cond_insertf()
call chain.

-- 
paul moore
www.paul-moore.com

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH] selinux: fix memory leak on node_ptr on error return path Colin King <colin.king@canonical.com> - 2016-03-22 00:10 +0100
  Re: [PATCH] selinux: fix memory leak on node_ptr on error return path "Serge E. Hallyn" <serge@hallyn.com> - 2016-03-22 21:30 +0100
    Re: [PATCH] selinux: fix memory leak on node_ptr on error return path Colin Ian King <colin.king@canonical.com> - 2016-03-22 22:40 +0100
    Re: [PATCH] selinux: fix memory leak on node_ptr on error return path Paul Moore <paul@paul-moore.com> - 2016-03-22 22:40 +0100

csiph-web