]> git.baikalelectronics.ru Git - kernel.git/commit
selinux: fix empty write to keycreate file
authorOndrej Mosnacek <omosnace@redhat.com>
Wed, 12 Jun 2019 08:12:26 +0000 (10:12 +0200)
committerPaul Moore <paul@paul-moore.com>
Wed, 12 Jun 2019 20:04:05 +0000 (16:04 -0400)
commit0b71dc6ad3f0fccb747f1655e850e8acf84dced4
treec00d9804a2c75ee26316361269ddeaa85be9229a
parentec3530ab013286bf060232603721819bf42342c7
selinux: fix empty write to keycreate file

When sid == 0 (we are resetting keycreate_sid to the default value), we
should skip the KEY__CREATE check.

Before this patch, doing a zero-sized write to /proc/self/keycreate
would check if the current task can create unlabeled keys (which would
usually fail with -EACCESS and generate an AVC). Now it skips the check
and correctly sets the task's keycreate_sid to 0.

Bug report: https://bugzilla.redhat.com/show_bug.cgi?id=1719067

Tested using the reproducer from the report above.

Fixes: 74b294abde29 ("[PATCH] keys: add a way to store the appropriate context for newly-created keys")
Reported-by: Kir Kolyshkin <kir@sacred.ru>
Signed-off-by: Ondrej Mosnacek <omosnace@redhat.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
security/selinux/hooks.c