Re: [PATCH] ext2: return -ENODATA for NULL i_file_acl in ext2_xattr_list

From: Andreas Dilger
Date: Tue Jul 13 2010 - 14:37:02 EST


On 2010-07-13, at 08:55, Wang Sheng-Hui wrote:
> In ext2_xattr_list, if (!EXT2_I(inode)->i_file_acl)
> is true, we should return -ENODATA instead of 0.
>
> @@ -263,7 +263,7 @@ ext2_xattr_list(struct dentry *dentry, char *buffer,
> size_t buffer_size)
>
> down_read(&EXT2_I(inode)->xattr_sem);
> - error = 0;
> + error = -ENODATA;
> if (!EXT2_I(inode)->i_file_acl)
> goto cleanup;
> ea_idebug(inode, "reading block %d", EXT2_I(inode)->i_file_acl);

The "error" value gets overwritten almost immediately with -EIO, and then at the end of the function if there is an xattr block but it doesn't contain any attributes (I'm not sure if this could happen, but it seems possible) it will return "error = buffer_size - rest; /* total size */", so 0 if "rest" was not changed from its initial value of buffer_size.

The question is why this return value should be changed to -ENODATA in the first place? This isn't true for ext3_xattr_list() or ext4_xattr_list(). I tend to think it is not an error to get back an empty list, and applications shouldn't treat it as such. Most applications will check "if (rc < 0)" and treat it as an error. This is different than e.g. requesting a specific value by name (which does return -ENODATA) because it would otherwise be ambiguous whether the xattr existed but had zero size or didn't exist at all.

Cheers, Andreas





--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/