Add processing for FUSE_CAP_HANDLE_KILLPRIV and disable it by default
authorbigbrotherwei <1965867461@qq.com>
Wed, 17 Jan 2024 15:58:27 +0000 (23:58 +0800)
committerNikolaus Rath <Nikolaus@rath.org>
Sat, 20 Jan 2024 14:08:07 +0000 (14:08 +0000)
'FUSE_CAP_HANDLE_KILLPRIV' is not enabled by default anymore, as that
would be a sudden security issue introduced by a new ABI and API
compatible libfuse version.

include/fuse_common.h
lib/fuse_lowlevel.c

index fedbaa93911f490c2d26b2944589d0946e16f72d..bdbd7cb346417d6c36b7ef7072ea4e256468bb5c 100644 (file)
@@ -363,7 +363,7 @@ struct fuse_loop_config_v1 {
  * setuid and setgid bits when a file is written, truncated, or
  * its owner is changed.
  *
- * This feature is enabled by default when supported by the kernel.
+ * This feature is disabled by default.
  */
 #define FUSE_CAP_HANDLE_KILLPRIV         (1 << 20)
 
index d8f5466815eeefe949d22a3160572a0ec006bc6e..def191898f450f6f3f0f10e064ca30ccd4cf95cc 100644 (file)
@@ -2054,7 +2054,6 @@ void do_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
                se->conn.want |= (cap)
        LL_SET_DEFAULT(1, FUSE_CAP_ASYNC_READ);
        LL_SET_DEFAULT(1, FUSE_CAP_AUTO_INVAL_DATA);
-       LL_SET_DEFAULT(1, FUSE_CAP_HANDLE_KILLPRIV);
        LL_SET_DEFAULT(1, FUSE_CAP_ASYNC_DIO);
        LL_SET_DEFAULT(1, FUSE_CAP_IOCTL_DIR);
        LL_SET_DEFAULT(1, FUSE_CAP_ATOMIC_O_TRUNC);
@@ -2146,6 +2145,8 @@ void do_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
                outargflags |= FUSE_PARALLEL_DIROPS;
        if (se->conn.want & FUSE_CAP_POSIX_ACL)
                outargflags |= FUSE_POSIX_ACL;
+       if (se->conn.want & FUSE_CAP_HANDLE_KILLPRIV)
+               outargflags |= FUSE_HANDLE_KILLPRIV;
        if (se->conn.want & FUSE_CAP_CACHE_SYMLINKS)
                outargflags |= FUSE_CACHE_SYMLINKS;
        if (se->conn.want & FUSE_CAP_EXPLICIT_INVAL_DATA)