[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAJ2a_DfkMvh7EdOA6k+omxhi18-oVbSXSGzXnpU1tXPD55B2qw@mail.gmail.com>
Date: Fri, 19 Aug 2022 20:05:31 +0200
From: Christian Göttsche <cgzones@...glemail.com>
To: Aleksa Sarai <cyphar@...har.com>
Cc: Amir Goldstein <amir73il@...il.com>,
Christian Brauner <brauner@...nel.org>,
SElinux list <selinux@...r.kernel.org>,
Miklos Szeredi <mszeredi@...hat.com>,
Linux API <linux-api@...r.kernel.org>,
linux-man <linux-man@...r.kernel.org>,
Alexander Viro <viro@...iv.linux.org.uk>,
linux-fsdevel <linux-fsdevel@...r.kernel.org>,
linux-kernel <linux-kernel@...r.kernel.org>
Subject: Re: [RFC PATCH] f*xattr: allow O_PATH descriptors
On Wed, 22 Jun 2022 at 04:57, Aleksa Sarai <cyphar@...har.com> wrote:
>
> On 2022-06-20, Amir Goldstein <amir73il@...il.com> wrote:
> > To be a reasonable reaction to the currently broken API is
> > to either accept the patch as is or request that setxattrat()
> > will be added to provide the new functionality.
>
> Since the current functionality cannot be retroactively disabled as it
> is being used already through /proc/self/fd/$n, adding
> *xattrat(AT_EMPTY_PATH) doesn't really change what is currently possible
> by userspace.
>
> I would say we should add *xattrat(2) and then we can add an upgrade
> mask blocking it (and other operations) later.
>
It seems setxattrat() is the preferred way to continue.
fsetxattr() would have one advantage though (w.r.t. SELinux):
The steps to label a file are:
1. get the type of the file (via stat(2) family)
2. lookup the desired label from the label database via selabel_lookup(3)
3. assign the retrieved label to the file
The label is sensitive to the file type, e.g.
$ matchpathcon -m file /etc/shadow
/etc/shadow system_u:object_r:shadow_t:s0
$ matchpathcon -m lnk_file /etc/shadow
/etc/shadow system_u:object_r:etc_t:s0
Using the *at() family the file type could change between step 1. and 3.,
which operating on an O_PATH file descriptor would prevent.
Powered by blists - more mailing lists