]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
SELinux: if sel_make_bools errors don't leave inconsistent state
authorEric Paris <eparis@redhat.com>
Wed, 4 Apr 2012 17:47:11 +0000 (13:47 -0400)
committerBen Hutchings <ben@decadent.org.uk>
Wed, 30 May 2012 23:43:21 +0000 (00:43 +0100)
commit 154c50ca4eb9ae472f50b6a481213e21ead4457d upstream.

We reset the bool names and values array to NULL, but do not reset the
number of entries in these arrays to 0.  If we error out and then get back
into this function we will walk these NULL pointers based on the belief
that they are non-zero length.

Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
security/selinux/selinuxfs.c

index f46658722c78d2b798a2d77634a08df968b2d0da..b4f802d2c1d472b3ac32e9c2f3ce53e81f640b49 100644 (file)
@@ -1238,6 +1238,7 @@ static int sel_make_bools(void)
                kfree(bool_pending_names[i]);
        kfree(bool_pending_names);
        kfree(bool_pending_values);
+       bool_num = 0;
        bool_pending_names = NULL;
        bool_pending_values = NULL;