lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Mon, 22 Aug 2022 23:21:59 +0200
From:   Mickaël Salaün <mic@...ikod.net>
To:     Günther Noack <gnoack3000@...il.com>,
        Casey Schaufler <casey@...aufler-ca.com>
Cc:     Xiu Jianfeng <xiujianfeng@...wei.com>, paul@...l-moore.com,
        jmorris@...ei.org, serge@...lyn.com, shuah@...nel.org,
        corbet@....net, linux-security-module@...r.kernel.org,
        linux-kernel@...r.kernel.org, linux-kselftest@...r.kernel.org,
        linux-doc@...r.kernel.org
Subject: Re: [PATCH -next 0/5] landlock: add chmod and chown support



On 22/08/2022 23:18, Günther Noack wrote:
> On Mon, Aug 22, 2022 at 12:35:18PM -0700, Casey Schaufler wrote:
>> On 8/22/2022 12:17 PM, Günther Noack wrote:
>>> Hi!
>>>
>>> Very exciting to see! Thank you for sending this! :)
>>>
>>> I'm just throwing in some comments based on the very similar truncate
>>> patch set, in the hope that it helps. (But obviously, Mickaël Salaün
>>> has the last word on this code.)
>>>
>>> Slightly higher level question: Should we start to group the
>>> functionality of multiple LSM hooks under one Landlock flag? (Will it
>>> be harder to change the LSM hook interface in the future if we
>>> continue to add one flag per hook? Or is this structure already
>>> exposed to userspace by other LSMs?)
>>
>> I'm not a landlock expert. The question is nonsensical, yet somewhat
>> frightening nonetheless. Could you put just a touch more context into
>> what you're asking for?
> 
> By "Landlock flags", I meant the integer that Landlock uses to
> represent the set of possible operations on a file hierarchy:
> 
> Landlock's file system access rights (access_mode_t on the kernel
> side) are defined with an integer with flags (LANDLOCK_ACCESS_FS_*)
> for different operations that one might do with files. They get used
> from userspace to control what is permitted on which parts of the file
> system. (Docs: https://docs.kernel.org/userspace-api/landlock.html)
> 
> Currently most of the available Landlock flags map pretty closely to
> one of the file- and path-related LSM hooks. (See various hook
> implementations in security/landlock/fs.c)
> 
> The file system operations that Landlock doesn't cover yet (as of
> kernel 5.19) are listed below, and there are potentially a few more
> that might be missing. I suspect/hope that there will be more patches
> in the style of the truncate/chmod/chown patches, which will add that
> coverage.
> 
> The question is basically:
> When these patches get added, how should the userspace-exposed
> Landlock file system access rights map to the LSM hooks for these
> upcoming Landlock features? Should each of the newly covered
> operations have its own flag, or is it better to group them?
> 
> (It's well possible that the right answer is "one flag per feature",
> but I feel it still makes sense to ask this before all these patches
> get written?)

Landlock is not strictly tied to the current LSM hooks, but they fit 
well (because they are designed to be flexible enough to be use by 
multiple access control systems). In fact, Landlock already uses 
orthogonal access rights such as LANDLOCK_ACCESS_FS_REFER (using the 
path_link or path_rename hooks), LANDLOCK_ACCESS_FS_MAKE_* (using the 
path_mknod and path_mkdir hooks)…

Anyway, the LSM framework is evolving, we can add new hooks and modify 
others (e.g. see the security_path_rename hook modification for 
FS_REFER) as long as mainline access control systems don't break and 
subsystem maintainers are OK with such changes. Like any kernel API, the 
LSM API is not stable, but this is not an issue for mainline code.

Landlock's goal is to find the sweet spot between flexibility for 
different sandboxing use cases and an understandable/simple-enough 
access control system. The access rights should then be meaningful for 
users, which are already familiar with the UAPI/syscalls, hence the 
current Landlock access rights (which are not very original, and that is 
a good thing). This is why I'm wondering if it is worth it to 
differentiate between chmod and chgrp (and add a dedicated access right 
per action or only one for both).


> 
> —Günther
> 
>>> For example, some of the "missing" operations listed on the Landlock
>>> documentation could also be grouped roughly as:
>>>
>>> Modifying files:
>>>   - truncate
>>>
>>> Modifying file metadata:
>>>   - chmod
>>>   - chown
>>>   - setxattr
>>>   - utime
>>>
>>> Observing files (check presence and file metadata):
>>>   - access
>>>   - stat
>>>   - readlink, following links (can observe symlink presence)
>>>   - chdir (can observe dir presence and 'x' attribute)
>>>
>>> Ungrouped:
>>>   - flock
>>>   - ioctl
>>>   - fcntl
>>>
>>> Do you have opinions on this?

That could indeed help users identifying currently missing pieces for 
their use case.


>>>
>>> —Günther
>>>
>>> On Mon, Aug 22, 2022 at 07:46:56PM +0800, Xiu Jianfeng wrote:
>>>> hi,
>>>>    this patchset adds chmod and chown support for landlock
>>>>
>>>> Xiu Jianfeng (5):
>>>>    landlock: expand access_mask_t to u32 type
>>>>    landlock: add chmod and chown support
>>>>    landlock/selftests: add selftests for chmod and chown
>>>>    landlock/samples: add chmod and chown support
>>>>    landlock: update chmod and chown support in document
>>>>
>>>>   Documentation/userspace-api/landlock.rst     |   8 +-
>>>>   include/uapi/linux/landlock.h                |   8 +-
>>>>   samples/landlock/sandboxer.c                 |  12 +-
>>>>   security/landlock/fs.c                       |  16 +-
>>>>   security/landlock/limits.h                   |   2 +-
>>>>   security/landlock/ruleset.h                  |   2 +-
>>>>   security/landlock/syscalls.c                 |   2 +-
>>>>   tools/testing/selftests/landlock/base_test.c |   2 +-
>>>>   tools/testing/selftests/landlock/fs_test.c   | 234 ++++++++++++++++++-
>>>>   9 files changed, 274 insertions(+), 12 deletions(-)
>>>>
>>>> --
>>>> 2.17.1
>>>>
>>> --
> 
> --

Powered by blists - more mailing lists