[PATCH v2 0/6] Landlock: Implement scope control for pathname Unix sockets
Mickaël Salaün
mic at digikod.net
Wed Feb 4 18:28:07 UTC 2026
On Wed, Feb 04, 2026 at 11:36:06AM -0500, Justin Suess wrote:
>
> On 2/4/26 06:44, Günther Noack wrote:
> > On Tue, Feb 03, 2026 at 09:53:11PM +0000, Tingmao Wang wrote:
> >> On 2/3/26 17:54, Günther Noack wrote:
> >>> BTW, regarding the implementation: To have *OR* semantics for "within
> >>> scope" and "allow-listed path", the implementation will be
> >>> non-trivial, and I suspect we won't hit the merge window if we try to
> >>> get them both in for 7.0. But in my mind, a simple UAPI is more
> >>> important than trying to make it in time for the next merge window.
> >>>
> >>> (The implementation is difficult because the path-based and
> >>> scope-based check currently happen in different LSM hooks, and none of
> >>> the two hooks has enough information to make the decision alone. The
> >>> second hook only gets called if the first returns 0. It'll require
> >>> some further discussion to make it work together.)
> >> Right. In that case, would it make sense to pass sk into the new
> >> security_unix_find() hook, perhaps with the new argument named `struct
> >> sock *other`? Then we can use this hook for the scope check as well by
> >> using landlock_cred(other->sk_socket->file->f_cred)->domain etc.
>
> Tingmao,
>
> This seems like the best way to do it. Alternatively, I considered passing in just the
> f_cred to the hook, but I'm leaning towards a more generic implementation like the one you
> have below.
>
> >>
> >> diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
> >> index 227467236930..db9d279b3883 100644
> >> --- a/net/unix/af_unix.c
> >> +++ b/net/unix/af_unix.c
> >> @@ -1223,24 +1223,24 @@ static struct sock *unix_find_bsd(struct sockaddr_un *sunaddr, int addr_len,
> >>
> >> err = -ECONNREFUSED;
> >> inode = d_backing_inode(path.dentry);
> >> if (!S_ISSOCK(inode->i_mode))
> >> goto path_put;
> >>
> >> + err = -ECONNREFUSED;
> >> + sk = unix_find_socket_byinode(inode);
> >> + if (!sk)
> >> + goto path_put;
> >> +
> >> /*
> >> * We call the hook because we know that the inode is a socket
> >> * and we hold a valid reference to it via the path.
> >> */
> >> - err = security_unix_find(&path, type, flags);
> >> + err = security_unix_find(&path, sk, flags);
> >> if (err)
> >> - goto path_put;
> >> -
> >> - err = -ECONNREFUSED;
> >> - sk = unix_find_socket_byinode(inode);
> >> - if (!sk)
> >> - goto path_put;
> >> + goto sock_put;
> >>
> >> err = -EPROTOTYPE;
> >> if (sk->sk_type == type)
> >> touch_atime(&path);
> >> else
> >> goto sock_put;
> >>
> >> By doing this we won't even need to pass `type` separately anymore. The
> >> only change would be that now one can determine if a socket is bound or
> >> not even without being allowed RESOLVE_UNIX access. I'm not sure how much
> >> of an issue this is, but we could also call the hook anyway with a NULL in
> >> place of the new argument, if unix_find_socket_byinode() fails. Other
> >> LSMs can then decide what to do in that case (either return -ECONNREFUSED
> >> or -EPERM).
> I think landlock already allows checking of existence of files even when when the process
> doesn't have rights on them, so there is precedent for this so in my mind this would probably be OK.
I agree, there are a lot of different side channels in Linux. Landlock
is about access control, like most LSMs, so this should not be an issue.
And if an LSM wants to hide this information, it can also return
-ECONNREFUSED or something else.
> > Thank you for the suggestion.
> >
> > Small caveat is that the LSM interface is very central and we should
> > be careful. We have previously gotten the advice from Paul to design
> > the hooks in an LSM-independent way that ideally reflects the
> > arguments to the unix_find_bsd() function, and this would now deviate
> > (slightly) from that, but simplifying the implementation for us. In
> > my personal opinion, this might be worth doing the trade-off, if
> > AppArmor people also agree, but we should double check.
>
> Gunther:
>
> I'd be happy to send you an updated LSM hook patch with the sock parameter.
>
> Just let me know.
>
> >
> > To keep the discussion of implementation and interface separate, I
> > have raised this question in the pathname-restricted-UNIX patch set
> > thread in [1].
> >
> > [1] https://lore.kernel.org/all/aYMenaSmBkAsFowd@google.com/
> >
> >
> >
> >>>> Furthermore, an application / Landlock config etc can always opt to not
> >>>> use the scope bit at all, if it "knows" all the locations where the
> >>>> application's sockets would be placed, and just use RESOLVE_UNIX access
> >>>> right (or nothing if it is not supported).
> >>>>
> >>>> (The following is a bit of a side note, not terribly relevant if we're
> >>>> deciding to go with the patch as is.)
> >>>>
> >>>>>> [...]
> >>>>>> Another way to put it is that, if FS-based and scope-based controls
> >>>>>> interacts in the above proposed way, both mechanisms feel like "poking
> >>>>>> holes" in the other. But as Mickaël said, one can think of the two
> >>>>>> mechanisms not as independent controls, but rather as two interfaces for
> >>>>>> the same control. The socket access control is "enabled" if either the
> >>>>>> LANDLOCK_ACCESS_FS_RESOLVE_UNIX access is handled, or the scope bit
> >>>>>> proposed in this patch is enabled.
> >>>>>>
> >>>>>> With that said, I can think of some alternative ways that might make this
> >>>>>> API look "better" (from a subjective point of view, feedback welcome),
> >>>>>> however it does mean more delays, and specifically, these will depend on
> >>>>>> LANDLOCK_ACCESS_FS_RESOLVE_UNIX:
> >>>>>>
> >>>>>> One possibility is to simply always allow a Landlock domain to connect to
> >>>>>> its own sockets (in the case where LANDLOCK_ACCESS_FS_RESOLVE_UNIX is
> >>>>>> handled, otherwise all sockets are allowed). This might be reasonable, as
> >>>>>> one can only connect to a socket it creates if it has the permission to
> >>>>>> create it in the first place, which is already controlled by
> >>>>>> LANDLOCK_ACCESS_FS_MAKE_SOCK, so we don't really lose any policy
> >>>>>> flexibility here - if for some reason the sandboxer don't want to allow
> >>>>>> access to any (pathname) sockets, even the sandboxed app's own ones, it
> >>>>>> can just not allow LANDLOCK_ACCESS_FS_MAKE_SOCK anywhere.
> >>>>> LANDLOCK_ACCESS_FS_MAKE_SOCK is only required to bind/listen to a
> >>>>> socket, not to connect. I guess you was thinking about
> >>>>> LANDLOCK_ACCESS_FS_RESOLVE_UNIX in this case?
> >>>> In this "allow same-scope connect unconditionally" proposal, the
> >>>> application would still be able to (bind to and) connect to its own
> >>>> sockets, even if LANDLOCK_ACCESS_FS_RESOLVE_UNIX is handled and nothing is
> >>>> allowed to have LANDLOCK_ACCESS_FS_RESOLVE_UNIX access. But a sandboxer
> >>>> which for whatever reason doesn't want this "allow same scope" default can
> >>>> still prevent the use of (pathname) sockets by restricting
> >>>> LANDLOCK_ACCESS_FS_MAKE_SOCK, because if an app can't connect to any
> >>>> sockets it doesn't own, and can't create any sockets itself either, then
> >>>> it effectively can't connect to any sockets at all.
> >>>>
> >>>> (Although on second thought, I guess there could be a case where an app
> >>>> first creates some socket files before doing landlock_restrict_self(),
> >>>> then it might still be able to bind to these even without
> >>>> LANDLOCK_ACCESS_FS_MAKE_SOCK?)
> >>> FWIW, I also really liked Tingmao's first of the two listed
> >>> possibilities in [1], where she proposed to introduce both rights
> >>> together. In my understanding, the arguments we have discussed so far
> >>> for that are:
> >>>
> >>> IN FAVOR:
> >>>
> >>> (pro1) Connecting to a UNIX socket in the same scope is always safe,
> >>> and it makes it possible to use named UNIX sockets between the
> >>> processes within a Landlock domains. (Mickaël convinced me in
> >>> discussion at FOSDEM that this is true.)
> >>>
> >>> If someone absolutely does not want that, they can restrict
> >>> LANDLOCK_ACCESS_FS_MAKE_SOCK and achieve the same effect (as
> >>> Tingmao said above).
> >>>
> >>> (pro2) The implementation of this is simpler.
> >>>
> >>> (I attempted to understand how the "or" semantics would be
> >>> implemented, and I found it non-trivial when you try to do it
> >>> for all layers at once. (Kernighan's Law applies, IMHO))
> >> I think the logic would basically be:
> >>
> >> 1. if any layers deny the access due to handled RESOLVE_UNIX but does not
> >> have the scope bit set, then we will deny rightaway, without calling
> >> domain_is_scoped().
> >>
> >> 2. Call domain_is_scoped() with a bitmask of "rules_covered" layers where
> >> there are RESOLVE_UNIX rules covering the socket being accessed, and
> >> essentially ignore those layers in the scope violation check.
>
> Tingmao:
>
> For connecting a pathname unix socket, the order of the hooks landlock sees is something like:
>
> 1. security_unix_find. (to look up the paths)
>
> 2. security_unix_may_send, security_unix_stream_connect (after the path is looked up)
>
> Which for is called in DGRAM:
>
> unix_dgram_connect OR unix_dgram_sendmsg
>
> and for STREAM:
>
> unix_stream_connect
>
> IIRC, the path lookup only occurs in this order always, so in the logic as you have it the domain_is_scoped()
> would be called twice, once from the security_unix_find when you call it in step two, and once from the
> domain scope hooks. (If access was allowed from security_unix_find)
>
> There are a couple of things to consider.
>
> ---
>
> Audit blockers need special handling:
>
> Here's an example:
>
> 1. Program A enforces a ruleset with RESOLVE_UNIX and the unix pathname scope bit, with no rules with that
> access bit (deny all for RESOLVE_UNIX).
>
> 2. Program A connects to /tmp/mysock.sock ran by program B, which is outside the domain.
>
> 2. security_unix_find is hit to lookup the path, and the RESOLVE_UNIX code doesn't grant access to
> /tmp/mysock.sock, so it calls domain_is_scoped
>
> 3. domain_is_scoped denies it as well, so now we must log an audit record.
>
> When logging the denial, we have to include both blockers "scope.unix_socket" and "fs.resolve_unix" for the
> denial, because it is the absence of both that caused the denial. I think the refer right has similar cases for auditing, so there is precedent for this (multiple blockers for an audit message).
That's a good point, and it would give more informations to diagnose
issues. However, being able to identify if both accesses are denied
would require to check both, whereas the first is enough to know that
Landlock denies the access. So, if we can return both records without
continuing the security checks, that's good, otherwise we should stop
ASAP and return the error.
Anyway, that might not be needed if we end up with my latest proposal
about always setting scope.unix_socket when fs.resolve_unix is set.
>
> ---
>
> Dual lookup for domain_is_scoped. Consider this case:
>
> 1. Program A enforces a ruleset with RESOLVE_UNIX and the unix pathname scope bit, with no rules with that
> access bit (deny all for RESOLVE_UNIX).
>
> 2. Program A connects to Program C's /tmp/foo.sock, which for the purposes of this example is in the domain of program A.
>
> 3. security_unix_find is hit to lookup the path, and the RESOLVE_UNIX code doesn't grant access to
> /tmp/mysock.sock, so it calls domain_is_scoped. Access is granted, and continues. (LSM hook complete)
>
> 4. The connection proceeds past the path lookup stage, and now security_unix_may_send, or security_unix_stream_connect gets called. This requires ANOTHER domain_is_scoped access check.
>
> While I don't THINK this introduces a TOCTOU, it is a little confusing.
>
> This does mean that we look up the domain twice, if this is implemented naively. I think we can then just
> skip the task credential checks then for security_unix_may_send and security_unix_stream_connect **for
> connecting to pathname sockets**, since the domain_is_scoped will already have been called in landlock's
> security_unix_find hook, eliminating the need for handling pathname socket domain checks layer on.
>
> >>
> >> I definitely agree that it is tricky, but making same-scope access be
> >> allowed (i.e. the suggested idea above) would only get rid of step 1,
> >> which I think is the "simpler" bit. The extra logic in step 2 is still
> >> needed.
> >>
> >> I definitely agree with pro1 tho.
> > Yes, you are describing the logic for the variant where
> > LANDLOCK_ACCESS_FS_RESOLVE_UNIX does not implicitly permit access from
> > within the same scope. In that variant, there can be situations where
> > the first hook can deny the action immediately.
> >
> > In the variant where LANDLOCK_ACCESS_FS_RESOLVE_UNIX *does* implicitly
> > allow access from within the same scope, that shortcutting is not
> > possible. On the upside however, there is no need to distinguish
> > whether the scope flag is set when we are in the security_unix_find()
> > hook, because access from within the same scope is always permitted.
> > (That is the simplification I meant.)
> >
> >
> >>> AGAINST:
> >>>
> >>> (con1) It would work differently than the other scoped access rights
> >>> that we already have.
> >>>
> >>> A speculative feature that could potentially be built with the
> >>> scoped access rights is that we could add a rule to permit IPC
> >>> to other Landlock scopes, e.g. introducing a new rule type
> >>>
> >>> struct landlock_scope_attr {
> >>> __u64 allowed_access; /* for "scoped" bits */
> >>> /* some way to identify domains */
> >>> }
> >>>
> >>> so that we could make IPC access to other Landlock domains
> >>> configurable.
> >>>
> >>> If the scoped bit and the FS RESOLVE_UNIX bit were both
> >>> conflated in RESOLVE_UNIX, it would not be possible to make
> >>> UNIX connections configurable in such a way.
> >> This exact API would no longer work, but if we give up the equivalence
> >> between scope bits and the landlock_scope_attr struct, then we can do
> >> something like:
> >>
> >> struct landlock_scope_attr {
> >> __u64 ptrace:1; /* Note that this is not a (user controllable) scope bit! */
> >> __u64 abstract_unix_socket:1;
> >> __u64 pathname_unix_socket:1;
> >> /* ... */
> >>
> >> __u64 allowed_signals;
> >>
> >> /*
> >> * some way to identify domains, maybe we could use the audit domain
> >> * ID, with 0 denoting "allow access to non-Landlocked processes?
> >> */
> >> }
> > Yes, it would be possible to use such a struct for that scenario where
> > IPC access gets allowed for other Landlock scopes. It would mean that
> > we would not need to introduce a scoped flag for the pathname UNIX
> > socket connections. But the relationship between that struct
> > landlock_scope_attr and the flags and access rights in struct
> > landlock_ruleset_attr would become less clear, which is a slight
> > downside, and maybe error prone for users to work with.
> >
> > If we introduced an additional scoped flag, it would also be
> > consistent though.
> >
> > (con1) was written under the assumption that we do not have an
> > additional scoped flag. If that is lacking, it is not possible to
> > express UNIX connect() access to other Landlock domains with that
> > struct. But as outlined in the proposal below, if we *do* (later)
> > introduce the additional scoped flag *in addition* to the FS access
> > right, this *both* stays consistent in semantics with the signal and
> > abstract UNIX support, *and* it starts working in a world where ICP
> > access can be allowed to talk to other Landlock domains.
> >
> >>> (con2) Consistent behaviour between scoped flags and their
> >>> interactions with other access rights:
> >>>
> >>> The existing scoped access rights (signal, abstract sockets)
> >>> could hypothetically be extended with a related access right of
> >>> another type. For instance, there could be an access right type
> >>>
> >>> __u64 handled_signal_number;
> >>>
> >>> and then you could add a rule to permit the use of certain
> >>> signal numbers. The interaction between the scoped flags and
> >>> other access rights should work the same.
> >>>
> >>>
> >>> Constructive Proposal for consideration: Why not both?
> >>> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> >> I will think about the following a bit more but I'm afraid that I feel
> >> like it might get slightly confusing. With this, the only reason for
> >> having LANDLOCK_SCOPE_PATHNAME_UNIX_SOCKET is for API consistency when we
> >> later enable allowing access to other domains (if I understood correctly),
> >> in which case I personally feel like the suggestion on landlock_scope_attr
> >> above, where we essentially accept that it is decoupled with the scope
> >> bits in the ruleset, might be simpler...?
> > Mickaël expressed the opinion to me that he would like to APIs to stay
> > consistent between signals, abstract UNIX sockets, named UNIX sockets
> > and other future "scoped" operations, in scenarios where:
> >
> > * the "scoped" (IPC) operations can be configured to give access to
> > other Landlock domains (and that should work for UNIX connections too)
> > * the existing "scoped" operations also start having matching access rights
> >
> > I think with the way I proposed, that would be consistent.
> >
> >
> >>> Why not do both what Tingmao proposed in [1] **and** reserve the
> >>> option to add the matching "scoped flag" later?
> >>>
> >>> * Introduce LANDLOCK_ACCESS_FS_RESOLVE_UNIX.
> >>>
> >>> If it is handled, UNIX connections are allowed either:
> >>>
> >>> (1) if the connection is to a service in the same scope, or
> >>> (2) if the path was allow-listed with a "path beneath" rule.
> >>>
> >>> * Add LANDLOCK_SCOPE_PATHNAME_UNIX_SOCKET later, if needed.
> >>>
> >>>
> >>> Let's go through the arguments again:
> >>>
> >>> We have observed that it is harmless to allow connections to services
> >>> in the same scope (1), and that if users absolutely don't want that,
> >>> they can actually prohibit it through LANDLOCK_ACCESS_FS_MAKE_SOCK
> >>> (pro1).
> >>>
> >>> (con1): Can we still implement the feature idea where we poke a hole
> >>> to get UNIX-connect() access to other Landlock domains?
> >>>
> >>> I think the answer is yes. The implementation strategy is:
> >>>
> >>> * Add the scoped bit LANDLOCK_SCOPE_PATHNAME_UNIX_SOCKET
> >>> * The scoped bit can now be used to allow-list connections to
> >>> other Landlock domains.
> >>>
> >>> For users, just setting the scoped bit on its own does the same as
> >>> handling LANDLOCK_ACCESS_FS_RESOLVE_UNIX. That way, the kernel-side
> >>> implementation can also stay simple. The only reason why the scoped
> >>> bit is needed is because it makes it possible to allow-list
> >>> connections to other Landlock domains, but at the same time, it is
> >>> safe if libraries set the scoped bit once it exists, as it does not
> >>> have any bad runtime impact either.
> >>>
> >>> (con2): Consistency: Do all the scoped flags interact with their
> >>> corresponding access rights in the same way?
> >>>
> >>> The other scope flags do not have corresponding access rights, so
> >>> far.
> >>>
> >>> If we were to add corresponding access rights for the other scope
> >>> flags, I would argue that we could apply a consistent logic there,
> >>> because IPC access within the same scope is always safe:
> >>>
> >>> - A hypothetical access right type for "signal numbers" would only
> >>> restrict signals that go beyond the current scope.
> >>>
> >>> - A hypothetical access right type for "abstract UNIX domain socket
> >>> names" would only restrict connections to abstract UNIX domain
> >>> servers that go beyond the current scope.
> >>>
> >>> I can not come up with a scenario where this doesn't work.
>
> Gunther / Tingmao / Mickaël:
>
> I have a potential idea to make this concept cleaner.
>
> The docs for landlock currently say:
>
>
> IPC scoping does not support exceptions via landlock_add_rule(2).
> If an operation is scoped within a domain, no rules can be added
> to allow access to resources or processes outside of the scope.
This part might indeed be confusing. The idea was to explain the
difference between scoped rights and handled access rights (which may
have rules).
>
> So if we go with the solution where we are now saying IPC scoping DOES support exceptions
> we will need to update the documentation, to say scoping for pathname unix sockets is an exception,
> and have to have the "exemptible scopes" (like this one) alongside "non-exemptible" scopes
> (ie the existing ones). This creates some friction for users.
The documentation will definitely require some updates. I think it can
be explained in a simple way.
>
> If we foresee other "exempt-able scopes" (which are scopes that also support creating exemptions w/ corresponding access rights) in the future, maybe we should consider separating the two in the ruleset
> attributes (I used scoped_fs as an example for the attribute name):
>
> structlandlock_ruleset_attrruleset_attr={
> .handled_access_fs=
> LANDLOCK_ACCESS_FS_EXECUTE|
> LANDLOCK_ACCESS_FS_WRITE_FILE|
> LANDLOCK_ACCESS_FS_READ_FILE|
> LANDLOCK_ACCESS_FS_READ_DIR|
> LANDLOCK_ACCESS_FS_REMOVE_DIR|
> LANDLOCK_ACCESS_FS_REMOVE_FILE|
> LANDLOCK_ACCESS_FS_MAKE_CHAR|
> LANDLOCK_ACCESS_FS_MAKE_DIR|
> LANDLOCK_ACCESS_FS_MAKE_REG|
> LANDLOCK_ACCESS_FS_MAKE_SOCK|
> LANDLOCK_ACCESS_FS_MAKE_FIFO|
> LANDLOCK_ACCESS_FS_MAKE_BLOCK|
> LANDLOCK_ACCESS_FS_MAKE_SYM|
> LANDLOCK_ACCESS_FS_REFER|
> LANDLOCK_ACCESS_FS_TRUNCATE|
> LANDLOCK_ACCESS_FS_IOCTL_DEV,
> .handled_access_net=
> LANDLOCK_ACCESS_NET_BIND_TCP|
> LANDLOCK_ACCESS_NET_CONNECT_TCP,
> .scoped=
> LANDLOCK_SCOPE_ABSTRACT_UNIX_SOCKET|
> LANDLOCK_SCOPE_SIGNAL,
> .scoped_fs =
> LANDLOCK_SCOPE_FS_PATHNAME_UNIX_SOCKET
> };
>
> This more clearly distinguishes between scopes that have exceptions/corresponding fs rights,
> and ones that don't. Later we could add scoped_net, if needed. I feel like this would be more
> intuitive and better categorize future scoping rights. An obvious con is increasing the size of
> the ruleset attributes.
I see your point but I don't think it would be worth it to add
sub-scoped fields. Each field has a clear semantic, and the scoped one
is related to the domain wrt other domains.
>
> Of course this separation is only worth it if there are other "exempt-able" rights in the future.
> I can think of a few potential future rights which COULD be scoped and have corresponding rights
> (binder, sysv-ipc, pipes, tcp/udp between two local programs).
Yes, it would definitely be useful to add exception for other kind of
IPCs. The idea would be to be able to describe the peer, either with a
file path, or PID, or cgroups, or a Landlock domain... The inet case
is an interesting idea but that might be a challenging task to
implement, if even possible.
>
> >>>
> >>>
> >>> In conclusion, I think the approach has significant upsides:
> >>>
> >>> * Simpler UAPI: Users only have one access bit to deal with, in the
> >>> near future. Once we do add a scope flag for UNIX connections, it
> >>> does not interact in a surprising way with the corresponding FS
> >>> access right, because with either of these, scoped access is
> >>> allowed.
> >>>
> >>> If users absolutely need to restrict scoped access, they can
> >>> restrict LANDLOCK_ACCESS_FS_MAKE_SOCK. It is a slightly obscure
> >>> API, but in line with the "make easy things easy, make hard things
> >>> possible" API philosophy. And needing this should be the
> >>> exception rather than the norm, after all.
> >>>
> >>> * Consistent behaviour between scoped flags and regular access
> >>> rights, also for speculative access rights affecting the existing
> >>> scoped flags for signals and abstract UNIX domain sockets.
> >>>
> >>> [1] https://lore.kernel.org/all/f07fe41a-96c5-4d3a-9966-35b30b3a71f1@maowtm.org/
> > —Günther
>
More information about the Linux-security-module-archive
mailing list