Allow *xattr operations on root directory (ino 1)
authoramitgeron <amit.geron@gmail.com>
Sun, 17 Dec 2023 17:45:47 +0000 (19:45 +0200)
committerGitHub <noreply@github.com>
Sun, 17 Dec 2023 17:45:47 +0000 (17:45 +0000)
example/hello_ll.c
test/test_examples.py

index 0299ffbebe4c2df04b449e000c9260f19f559241..803528d816671c444bb1879da2f7c76fbcd4a476 100644 (file)
@@ -157,7 +157,7 @@ static void hello_ll_getxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
                                                          size_t size)
 {
        (void)size;
-       assert(ino == 2);
+       assert(ino == 1 || ino == 2);
        if (strcmp(name, "hello_ll_getxattr_name") == 0)
        {
                const char *buf = "hello_ll_getxattr_value";
@@ -174,7 +174,7 @@ static void hello_ll_setxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
 {
        (void)flags;
        (void)size;
-       assert(ino == 2);
+       assert(ino == 1 || ino == 2);
        const char* exp_val = "hello_ll_setxattr_value";
        if (strcmp(name, "hello_ll_setxattr_name") == 0 &&
            strlen(exp_val) == size &&
@@ -190,7 +190,7 @@ static void hello_ll_setxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
 
 static void hello_ll_removexattr(fuse_req_t req, fuse_ino_t ino, const char *name)
 {
-       assert(ino == 2);
+       assert(ino == 1 || ino == 2);
        if (strcmp(name, "hello_ll_removexattr_name") == 0)
        {
                fuse_reply_err(req, 0);
index 96e41086607e7c3c32b48ca22f8a047fccc397b8..a597f55574b42f4e3ff773d32a789f24d16e6db4 100755 (executable)
@@ -106,6 +106,8 @@ def test_hello(tmpdir, name, options, cmdline_builder, output_checker):
         assert exc_info.value.errno == errno.ENOENT
         if name == 'hello_ll':
             tst_xattr(mnt_dir)
+            path = os.path.join(mnt_dir, 'hello')
+            tst_xattr(path)
     except:
         cleanup(mount_process, mnt_dir)
         raise
@@ -855,8 +857,7 @@ def tst_passthrough(src_dir, mnt_dir):
     assert os.stat(src_name) == os.stat(mnt_name)
 
 
-def tst_xattr(mnt_dir):
-    path = os.path.join(mnt_dir, 'hello')
+def tst_xattr(path):
     os.setxattr(path, b'hello_ll_setxattr_name', b'hello_ll_setxattr_value')
     assert os.getxattr(path, b'hello_ll_getxattr_name') == b'hello_ll_getxattr_value'
     os.removexattr(path, b'hello_ll_removexattr_name')