mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
selinux: fix double free of cond_list on error paths
commit 186edf7e36 upstream.
On error path from cond_read_list() and duplicate_policydb_cond_list()
the cond_list_destroy() gets called a second time in caller functions,
resulting in NULL pointer deref. Fix this by resetting the
cond_list_len to 0 in cond_list_destroy(), making subsequent calls a
noop.
Also consistently reset the cond_list pointer to NULL after freeing.
Cc: stable@vger.kernel.org
Signed-off-by: Vratislav Bendel <vbendel@redhat.com>
[PM: fix line lengths in the description]
Signed-off-by: Paul Moore <paul@paul-moore.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
12a0a56cba
commit
f446089a26
|
|
@ -152,6 +152,8 @@ static void cond_list_destroy(struct policydb *p)
|
||||||
for (i = 0; i < p->cond_list_len; i++)
|
for (i = 0; i < p->cond_list_len; i++)
|
||||||
cond_node_destroy(&p->cond_list[i]);
|
cond_node_destroy(&p->cond_list[i]);
|
||||||
kfree(p->cond_list);
|
kfree(p->cond_list);
|
||||||
|
p->cond_list = NULL;
|
||||||
|
p->cond_list_len = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void cond_policydb_destroy(struct policydb *p)
|
void cond_policydb_destroy(struct policydb *p)
|
||||||
|
|
@ -440,7 +442,6 @@ int cond_read_list(struct policydb *p, void *fp)
|
||||||
return 0;
|
return 0;
|
||||||
err:
|
err:
|
||||||
cond_list_destroy(p);
|
cond_list_destroy(p);
|
||||||
p->cond_list = NULL;
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user