Re: [PATCH] selinux_restorecon: Do not exit on directory cycles

Johannes Segitz <[email protected]> Thu, 23 Jul 2026 17:21:52 +0200
Newsgroups org.kernel.vger.selinux
Message-ID <[email protected]>
On Thu, Jul 23, 2026 at 10:55:48AM -0400, Stephen Smalley wrote:
> On Thu, Jul 23, 2026 at 4:56 AM Johannes Segitz <[email protected]> wrote:
> >
> > All other failures are handled gracefully. Directory cycles can e.g.
> > happen on BTRFS filesystems with subvolumes. Skip them and continue
> > instead of exiting
> 
> This is a user-visible behavior change so we should note it; restorecon -R
> on a tree with a bind mount of an ancestor will now complete with rc 0 and
> only a WARNING rather than aborting with ELOOP.

Okay, I can write something up. But in general you would be fine with the
behavior change?

> Missing Signed-off-by line and the patch still doesn't apply for me
> (did you send it using git send-email and against current selinux/main?)
> but also see comment below on the code.

I start feel like an idiot. The first time I used this old repo with the
wrong branch, but this time I made sure it applies, but didn't use
git send-mail.

I did
# git format-patch -1 HEAD
0001-selinux_restorecon-Do-not-exit-on-directory-cycles.patch

which for me then applies:
# git checkout main
Already on 'main'
Your branch is up to date with 'origin/main'.
# git rev-parse --short HEAD
84d424b8
# git am 0001-selinux_restorecon-Do-not-exit-on-directory-cycles.patch
Applying: selinux_restorecon: Do not exit on directory cycles

Maybe my manual inclusion in the mail breaks it? I attach it now to the
mail

Johannes
-- 
GPG Key                EE16 6BCE AD56 E034 BFB3  3ADD 7BF7 29D5 E7C8 1FA0
Subkey fingerprint:    250F 43F5 F7CE 6F1E 9C59  4F95 BC27 DD9D 2CC4 FD66
SUSE Software Solutions Germany GmbH, Frankenstr. 146, 90461 Nürnberg, Germany
www.suse.com, Geschäftsführer: Jochen Jaser, Andrew McDonald, Abhinav Puri, (HRB 36809, AG Nürnberg)
0001-selinux_restorecon-Do-not-exit-on-directory-cycles.patch (text/x-patch, 1.2 KB)
From 9155f98c8dec5b275ee0429cc19c9b42d8c3c8b5 Mon Sep 17 00:00:00 2001
From: Johannes Segitz <[email protected]>
Date: Thu, 23 Jul 2026 10:48:40 +0200
Subject: [PATCH] selinux_restorecon: Do not exit on directory cycles

All other failures are handled gracefully. Directory cycles can e.g.
happen on BTRFS filesystems with subvolumes. Skip them and continue
instead of exiting
---
 libselinux/src/selinux_restorecon.c | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/libselinux/src/selinux_restorecon.c b/libselinux/src/selinux_restorecon.c
index 30f1b836..fdefc92c 100644
--- a/libselinux/src/selinux_restorecon.c
+++ b/libselinux/src/selinux_restorecon.c
@@ -1393,15 +1393,14 @@ static void *selinux_restorecon_thread(void *arg)
 		if (is_dir) {
 			if (descend && walk_is_cycle(state, ent_sb.st_dev,
 						     ent_sb.st_ino)) {
-				selinux_log(SELINUX_ERROR,
+				selinux_log(SELINUX_WARNING,
 					    "Directory cycle on %s.\n",
 					    ent_path);
 				close(ent_fd);
-				close(rd_fd);
-				errno = ELOOP;
-				state->error = -1;
-				state->abort = true;
-				goto finish;
+				if (rd_fd >= 0)
+					close(rd_fd);
+				prune_pathbuf(state);
+				continue;
 			}
 
 			if (state->sfsb.f_type == SYSFS_MAGIC &&
-- 
2.55.0
signature.asc (application/pgp-signature, 870 B)
-----BEGIN PGP SIGNATURE-----

iQJPBAEBCgA5FiEEJQ9D9ffObx6cWU+VvCfdnSzE/WYFAmpiMZAbFIAAAAAABAAO
bWFudTIsMi41KzEuMTIsMiwyAAoJELwn3Z0sxP1mcGcP/3DkT0VlK12ISDd3rJAG
3fbgDATSOpZZEPNMU0mKQMy8Spx+alazu86472J0Nlmw3C/MVXb9S36zrrvMhhWk
6PlpeqM+udtcRpvB6+/UEfeR4JAK5+CvOnA98zjujtC3TCDDzf/tq7RDJoW9Q9WZ
2hbhGVvWqMICfe/fHl6ZvpviY6OUiPp+mHYzr9Crz4s5CkvW9HnviAnhjN2P+3y6
WlqdUGSlBrveLv4Z5RnyZ8F3LK2xMxEAO+2cOR+O77TQCGfzND4dGoBBO+x4OPRQ
vaFqG4LQIPcp++/bC/2lxsVxEV1gk5EfuN5wt0y7GoJIjcLcEa7u2C7/eFdxclnH
ammTFVazagSPS/vYpMZfCn4uvi0QrmxXh8ayUl7iaC/GQNRap8Z/CGGiKgz1B+q9
MlfW1g2xGi38q6PzExn7h7WQsqFS1fV5jYmMhXZPh163pxIuZ3txjVOMhfZ0yQeS
q3QCaqffhjQ6q9ml2HCP0LZj6M5XVprxXBWZt5wxt/HB/UQtSMNES2k5pW2PVbg/
ripl/pNfvMjs7Zd40o0gkD5WHVKKrdpsiP9clsJXksU7uS42h0E+I+OYAfA3xCFp
Dk7SF39soqKeLwBrNScxENEeW25XqOC259O6JMNti4XJnFkP+B6V4JZNBXpLI6xa
2iGDnfZYi4V/tdYPH0+/Fbzs
=1Oyw
-----END PGP SIGNATURE-----