ext4: avoid unneeded lookup when xattr name is invalid
In ext4_xattr_set_handle() we have checked the xattr name's length. So we should also check it in ext4_xattr_get() to avoid unneeded lookup caused by invalid name. Signed-off-by: Zhang Zhen <zhenzhang.zhang@huawei.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
Родитель
1c8349a171
Коммит
230b8c1a7b
|
@ -369,6 +369,9 @@ ext4_xattr_get(struct inode *inode, int name_index, const char *name,
|
||||||
{
|
{
|
||||||
int error;
|
int error;
|
||||||
|
|
||||||
|
if (strlen(name) > 255)
|
||||||
|
return -ERANGE;
|
||||||
|
|
||||||
down_read(&EXT4_I(inode)->xattr_sem);
|
down_read(&EXT4_I(inode)->xattr_sem);
|
||||||
error = ext4_xattr_ibody_get(inode, name_index, name, buffer,
|
error = ext4_xattr_ibody_get(inode, name_index, name, buffer,
|
||||||
buffer_size);
|
buffer_size);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче