mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 10:00:51 +07:00
ubifs: Fix directory size calculation for symlinks
We have to account the name of the symlink and not the target length.
Fixes: ca7f85be8d
("ubifs: Add support for encrypted symlinks")
Cc: <stable@vger.kernel.org>
Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
94710cac0e
commit
00ee8b6010
@ -1123,8 +1123,7 @@ static int ubifs_symlink(struct inode *dir, struct dentry *dentry,
|
|||||||
struct ubifs_inode *ui;
|
struct ubifs_inode *ui;
|
||||||
struct ubifs_inode *dir_ui = ubifs_inode(dir);
|
struct ubifs_inode *dir_ui = ubifs_inode(dir);
|
||||||
struct ubifs_info *c = dir->i_sb->s_fs_info;
|
struct ubifs_info *c = dir->i_sb->s_fs_info;
|
||||||
int err, len = strlen(symname);
|
int err, sz_change, len = strlen(symname);
|
||||||
int sz_change = CALC_DENT_SIZE(len);
|
|
||||||
struct fscrypt_str disk_link;
|
struct fscrypt_str disk_link;
|
||||||
struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
|
struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1,
|
||||||
.new_ino_d = ALIGN(len, 8),
|
.new_ino_d = ALIGN(len, 8),
|
||||||
@ -1151,6 +1150,8 @@ static int ubifs_symlink(struct inode *dir, struct dentry *dentry,
|
|||||||
if (err)
|
if (err)
|
||||||
goto out_budg;
|
goto out_budg;
|
||||||
|
|
||||||
|
sz_change = CALC_DENT_SIZE(fname_len(&nm));
|
||||||
|
|
||||||
inode = ubifs_new_inode(c, dir, S_IFLNK | S_IRWXUGO);
|
inode = ubifs_new_inode(c, dir, S_IFLNK | S_IRWXUGO);
|
||||||
if (IS_ERR(inode)) {
|
if (IS_ERR(inode)) {
|
||||||
err = PTR_ERR(inode);
|
err = PTR_ERR(inode);
|
||||||
|
Loading…
Reference in New Issue
Block a user