[PATCH v2 07/16] erofs-utils: add erofs_inode_tag_opaque() helper
Jingbo Xu
jefflexu at linux.alibaba.com
Wed Aug 2 19:17:41 AEST 2023
Add erofs_inode_tag_opaque() helper checking if it's an opaque directory.
Signed-off-by: Jingbo Xu <jefflexu at linux.alibaba.com>
---
include/erofs/internal.h | 2 ++
include/erofs/xattr.h | 22 ++++++++++++++++++++
lib/tar.c | 5 -----
lib/xattr.c | 44 ++++++++++++++++++++++++++++++++++++++++
4 files changed, 68 insertions(+), 5 deletions(-)
diff --git a/include/erofs/internal.h b/include/erofs/internal.h
index 04a9a69..83a2e22 100644
--- a/include/erofs/internal.h
+++ b/include/erofs/internal.h
@@ -218,6 +218,8 @@ struct erofs_inode {
#endif
erofs_off_t fragmentoff;
unsigned int fragment_size;
+
+ bool opaque;
};
static inline erofs_off_t erofs_iloc(struct erofs_inode *inode)
diff --git a/include/erofs/xattr.h b/include/erofs/xattr.h
index 634daf9..21d669b 100644
--- a/include/erofs/xattr.h
+++ b/include/erofs/xattr.h
@@ -73,6 +73,27 @@ static inline unsigned int xattrblock_offset(struct erofs_inode *vi,
#ifndef XATTR_NAME_POSIX_ACL_DEFAULT
#define XATTR_NAME_POSIX_ACL_DEFAULT "system.posix_acl_default"
#endif
+#ifndef OVL_XATTR_NAMESPACE
+#define OVL_XATTR_NAMESPACE "overlay."
+#endif
+#ifndef OVL_XATTR_OPAQUE_POSTFIX
+#define OVL_XATTR_OPAQUE_POSTFIX "opaque"
+#endif
+#ifndef OVL_XATTR_TRUSTED_PREFIX
+#define OVL_XATTR_TRUSTED_PREFIX XATTR_TRUSTED_PREFIX OVL_XATTR_NAMESPACE
+#endif
+#ifndef OVL_XATTR_OPAQUE_SUFFIX
+#define OVL_XATTR_OPAQUE_SUFFIX OVL_XATTR_NAMESPACE OVL_XATTR_OPAQUE_POSTFIX
+#endif
+#ifndef OVL_XATTR_OPAQUE_SUFFIX_LEN
+#define OVL_XATTR_OPAQUE_SUFFIX_LEN (sizeof(OVL_XATTR_OPAQUE_SUFFIX) - 1)
+#endif
+#ifndef OVL_XATTR_OPAQUE
+#define OVL_XATTR_OPAQUE OVL_XATTR_TRUSTED_PREFIX OVL_XATTR_OPAQUE_POSTFIX
+#endif
+#ifndef OVL_XATTR_OPAQUE_LEN
+#define OVL_XATTR_OPAQUE_LEN (sizeof(OVL_XATTR_OPAQUE) - 1)
+#endif
int erofs_scan_file_xattrs(struct erofs_inode *inode);
int erofs_prepare_xattr_ibody(struct erofs_inode *inode);
@@ -86,6 +107,7 @@ int erofs_xattr_write_name_prefixes(struct erofs_sb_info *sbi, FILE *f);
int erofs_setxattr(struct erofs_inode *inode, char *key,
const void *value, size_t size);
int erofs_read_xattrs_from_disk(struct erofs_inode *inode);
+void erofs_inode_tag_opaque(struct erofs_inode *inode);
#ifdef __cplusplus
}
diff --git a/lib/tar.c b/lib/tar.c
index 54ee33f..3180ee4 100644
--- a/lib/tar.c
+++ b/lib/tar.c
@@ -19,11 +19,6 @@
#include "erofs/xattr.h"
#include "erofs/blobchunk.h"
-#define OVL_XATTR_NAMESPACE "overlay."
-#define OVL_XATTR_TRUSTED_PREFIX XATTR_TRUSTED_PREFIX OVL_XATTR_NAMESPACE
-#define OVL_XATTR_OPAQUE_POSTFIX "opaque"
-#define OVL_XATTR_OPAQUE OVL_XATTR_TRUSTED_PREFIX OVL_XATTR_OPAQUE_POSTFIX
-
#define EROFS_WHITEOUT_DEV 0
static char erofs_libbuf[16384];
diff --git a/lib/xattr.c b/lib/xattr.c
index 8d8f9f0..e9aff53 100644
--- a/lib/xattr.c
+++ b/lib/xattr.c
@@ -1421,6 +1421,50 @@ int erofs_listxattr(struct erofs_inode *vi, char *buffer, size_t buffer_size)
return shared_listxattr(vi, &it);
}
+static bool erofs_xattr_is_opaque(struct xattr_item *item)
+{
+ struct ea_type_node *tnode;
+ unsigned int plen;
+ const char *prefix;
+
+ if (item->prefix == EROFS_XATTR_INDEX_TRUSTED &&
+ !strncmp(item->kvbuf, OVL_XATTR_OPAQUE_SUFFIX,
+ OVL_XATTR_OPAQUE_SUFFIX_LEN))
+ return true;
+
+ if (item->prefix & EROFS_XATTR_LONG_PREFIX) {
+ list_for_each_entry(tnode, &ea_name_prefixes, list) {
+ prefix = tnode->type.prefix;
+ plen = tnode->type.prefix_len;
+ if (tnode->index == item->prefix &&
+ plen + item->len[0] == OVL_XATTR_OPAQUE_LEN &&
+ !strncmp(prefix, OVL_XATTR_OPAQUE, plen) &&
+ !strncmp(item->kvbuf, OVL_XATTR_OPAQUE + plen,
+ item->len[0]))
+ return true;
+ }
+ }
+ return false;
+}
+
+void erofs_inode_tag_opaque(struct erofs_inode *inode)
+{
+ struct inode_xattr_node *node, *n;
+
+ list_for_each_entry_safe(node, n, &inode->i_xattrs, list) {
+ if (erofs_xattr_is_opaque(node->item)) {
+ if (S_ISDIR(inode->i_mode))
+ inode->opaque = true;
+ else
+ erofs_dbg("file %s: opaque xattr on non-dir",
+ inode->i_srcpath);
+ /* strip overlayfs xattrs */
+ list_del(&node->list);
+ free(node);
+ }
+ }
+}
+
int erofs_xattr_insert_name_prefix(const char *prefix)
{
struct ea_type_node *tnode;
--
2.19.1.6.gb485710b
More information about the Linux-erofs
mailing list