[PATCH v2 1/2] erofs-utils: sort shared xattr
Huang Jianan
huangjianan at oppo.com
Tue Dec 14 20:52:01 AEDT 2021
Sort shared xattr before writing to disk to ensure the consistency
of reproducible builds.
Signed-off-by: Huang Jianan <huangjianan at oppo.com>
---
since v1:
- use strncmp instead of strcmp.
lib/xattr.c | 36 ++++++++++++++++++++++++++++++++++--
1 file changed, 34 insertions(+), 2 deletions(-)
diff --git a/lib/xattr.c b/lib/xattr.c
index 196133a..fd998cd 100644
--- a/lib/xattr.c
+++ b/lib/xattr.c
@@ -562,13 +562,31 @@ static struct erofs_bhops erofs_write_shared_xattrs_bhops = {
.flush = erofs_bh_flush_write_shared_xattrs,
};
+static int comp_xattr_item(const void *a, const void *b)
+{
+ const struct xattr_item *ia, *ib;
+ unsigned int la, lb;
+ int ret;
+
+ ia = (*((const struct inode_xattr_node **)a))->item;
+ ib = (*((const struct inode_xattr_node **)b))->item;
+ la = ia->len[0] + ia->len[1];
+ lb = ib->len[0] + ib->len[1];
+
+ ret = strncmp(ia->kvbuf, ib->kvbuf, min(la, lb));
+ if (ret != 0)
+ return ret;
+
+ return la > lb;
+}
+
int erofs_build_shared_xattrs_from_path(const char *path)
{
int ret;
struct erofs_buffer_head *bh;
- struct inode_xattr_node *node, *n;
+ struct inode_xattr_node *node, *n, **sorted_n;
char *buf;
- unsigned int p;
+ unsigned int p, i;
erofs_off_t off;
/* check if xattr or shared xattr is disabled */
@@ -606,6 +624,20 @@ int erofs_build_shared_xattrs_from_path(const char *path)
off %= EROFS_BLKSIZ;
p = 0;
+ sorted_n = malloc(shared_xattrs_count * sizeof(n));
+ if (!sorted_n)
+ return -ENOMEM;
+ i = 0;
+ list_for_each_entry_safe(node, n, &shared_xattrs_list, list) {
+ list_del(&node->list);
+ sorted_n[i++] = node;
+ }
+ DBG_BUGON(i != shared_xattrs_count);
+ qsort(sorted_n, shared_xattrs_count, sizeof(n), comp_xattr_item);
+ for (i = 0; i < shared_xattrs_count; i++)
+ list_add_tail(&sorted_n[i]->list, &shared_xattrs_list);
+ free(sorted_n);
+
list_for_each_entry_safe(node, n, &shared_xattrs_list, list) {
struct xattr_item *const item = node->item;
const struct erofs_xattr_entry entry = {
--
2.25.1
More information about the Linux-erofs
mailing list