orangefs: report attributes_mask and attributes for statx
authorMartin Brandenburg <martin@omnibond.com>
Thu, 31 May 2018 16:37:00 +0000 (16:37 +0000)
committerMike Marshall <hubcap@omnibond.com>
Fri, 1 Jun 2018 18:49:36 +0000 (14:49 -0400)
OrangeFS formerly failed to set attributes_mask with the result that
software could not see immutable and append flags present in the
filesystem.

Reported-by: Becky Ligon <ligon@clemson.edu>
Signed-off-by: Martin Brandenburg <martin@omnibond.com>
Fixes: 68a24a6cc4a6 ("orangefs: implement statx")
Cc: stable@vger.kernel.org
Cc: hubcap@omnibond.com
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
fs/orangefs/inode.c

index b583fbf906659b651415e0694cdcc89e0832ce03..f301e4957659fe92148eec72e6bfff56c68f2505 100644 (file)
@@ -268,6 +268,13 @@ int orangefs_getattr(const struct path *path, struct kstat *stat,
                else
                        stat->result_mask = STATX_BASIC_STATS &
                            ~STATX_SIZE;
+
+               stat->attributes_mask = STATX_ATTR_IMMUTABLE |
+                   STATX_ATTR_APPEND;
+               if (inode->i_flags & S_IMMUTABLE)
+                       stat->attributes |= STATX_ATTR_IMMUTABLE;
+               if (inode->i_flags & S_APPEND)
+                       stat->attributes |= STATX_ATTR_APPEND;
        }
        return ret;
 }