Commit ecce9212 authored by Hongnan Li's avatar Hongnan Li Committed by Gao Xiang

erofs: update ctx->pos for every emitted dirent

erofs_readdir update ctx->pos after filling a batch of dentries
and it may cause dir/files duplication for NFS readdirplus which
depends on ctx->pos to fill dir correctly. So update ctx->pos for
every emitted dirent in erofs_fill_dentries to fix it.

Also fix the update of ctx->pos when the initial file position has
exceeded nameoff.

Fixes: 3e917cc3 ("erofs: make filesystem exportable")
Signed-off-by: default avatarHongnan Li <hongnan.li@linux.alibaba.com>
Signed-off-by: default avatarJeffle Xu <jefflexu@linux.alibaba.com>
Reviewed-by: default avatarGao Xiang <hsiangkao@linux.alibaba.com>
Reviewed-by: default avatarChao Yu <chao@kernel.org>
Link: https://lore.kernel.org/r/20220722082732.30935-1-jefflexu@linux.alibaba.comSigned-off-by: default avatarGao Xiang <hsiangkao@linux.alibaba.com>
parent cc2a1713
...@@ -22,10 +22,9 @@ static void debug_one_dentry(unsigned char d_type, const char *de_name, ...@@ -22,10 +22,9 @@ static void debug_one_dentry(unsigned char d_type, const char *de_name,
} }
static int erofs_fill_dentries(struct inode *dir, struct dir_context *ctx, static int erofs_fill_dentries(struct inode *dir, struct dir_context *ctx,
void *dentry_blk, unsigned int *ofs, void *dentry_blk, struct erofs_dirent *de,
unsigned int nameoff, unsigned int maxsize) unsigned int nameoff, unsigned int maxsize)
{ {
struct erofs_dirent *de = dentry_blk + *ofs;
const struct erofs_dirent *end = dentry_blk + nameoff; const struct erofs_dirent *end = dentry_blk + nameoff;
while (de < end) { while (de < end) {
...@@ -59,9 +58,8 @@ static int erofs_fill_dentries(struct inode *dir, struct dir_context *ctx, ...@@ -59,9 +58,8 @@ static int erofs_fill_dentries(struct inode *dir, struct dir_context *ctx,
/* stopped by some reason */ /* stopped by some reason */
return 1; return 1;
++de; ++de;
*ofs += sizeof(struct erofs_dirent); ctx->pos += sizeof(struct erofs_dirent);
} }
*ofs = maxsize;
return 0; return 0;
} }
...@@ -95,7 +93,7 @@ static int erofs_readdir(struct file *f, struct dir_context *ctx) ...@@ -95,7 +93,7 @@ static int erofs_readdir(struct file *f, struct dir_context *ctx)
"invalid de[0].nameoff %u @ nid %llu", "invalid de[0].nameoff %u @ nid %llu",
nameoff, EROFS_I(dir)->nid); nameoff, EROFS_I(dir)->nid);
err = -EFSCORRUPTED; err = -EFSCORRUPTED;
goto skip_this; break;
} }
maxsize = min_t(unsigned int, maxsize = min_t(unsigned int,
...@@ -106,17 +104,17 @@ static int erofs_readdir(struct file *f, struct dir_context *ctx) ...@@ -106,17 +104,17 @@ static int erofs_readdir(struct file *f, struct dir_context *ctx)
initial = false; initial = false;
ofs = roundup(ofs, sizeof(struct erofs_dirent)); ofs = roundup(ofs, sizeof(struct erofs_dirent));
ctx->pos = blknr_to_addr(i) + ofs;
if (ofs >= nameoff) if (ofs >= nameoff)
goto skip_this; goto skip_this;
} }
err = erofs_fill_dentries(dir, ctx, de, &ofs, err = erofs_fill_dentries(dir, ctx, de, (void *)de + ofs,
nameoff, maxsize); nameoff, maxsize);
skip_this:
ctx->pos = blknr_to_addr(i) + ofs;
if (err) if (err)
break; break;
skip_this:
ctx->pos = blknr_to_addr(i) + maxsize;
++i; ++i;
ofs = 0; ofs = 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment