chiark / gitweb /
label: rework label_fix() implementations (#8583)
authorLennart Poettering <lennart@poettering.net>
Tue, 27 Mar 2018 05:38:26 +0000 (07:38 +0200)
committerSven Eden <yamakuzure@gmx.net>
Fri, 24 Aug 2018 14:47:08 +0000 (16:47 +0200)
commitd3bc5662dd8436ea2ddcd49d18a48e9a4818bb44
treebaccb383396362a65c110d1dacb630b7e659a804
parent33da2d049720dfa17bbbbf70200130fd977bfb33
label: rework label_fix() implementations (#8583)

This reworks the SELinux and SMACK label fixing calls in a number of
ways:

1. The two separate boolean arguments of these functions are converted
   into a flags type LabelFixFlags.

2. The operations are now implemented based on O_PATH. This should
   resolve TTOCTTOU races between determining the label for the file
   system object and applying it, as it it allows to pin the object
   while we are operating on it.

3. When changing a label fails we'll query the label previously set, and
   if matches what we want to set anyway we'll suppress the error.

Also, all calls to label_fix() are now (void)ified, when we ignore the
return values.

Fixes: #8566
src/basic/label.c
src/basic/label.h
src/basic/mkdir-label.c
src/basic/selinux-util.c
src/basic/selinux-util.h
src/basic/smack-util.c
src/basic/smack-util.h
src/core/mount-setup.c
src/login/logind-user.c