2018-06-05 19:42:14 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-04-03 16:11:18 +11:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2000-2006 Silicon Graphics, Inc.
|
|
|
|
* Copyright (c) 2012-2013 Red Hat, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
#include "xfs.h"
|
2013-10-23 10:50:10 +11:00
|
|
|
#include "xfs_shared.h"
|
2013-04-03 16:11:18 +11:00
|
|
|
#include "xfs_fs.h"
|
2013-08-12 20:49:26 +10:00
|
|
|
#include "xfs_format.h"
|
2013-10-23 10:50:10 +11:00
|
|
|
#include "xfs_log_format.h"
|
|
|
|
#include "xfs_trans_resv.h"
|
2013-04-03 16:11:18 +11:00
|
|
|
#include "xfs_bit.h"
|
|
|
|
#include "xfs_mount.h"
|
2013-08-12 20:49:37 +10:00
|
|
|
#include "xfs_dir2.h"
|
2013-04-03 16:11:18 +11:00
|
|
|
#include "xfs_inode.h"
|
|
|
|
#include "xfs_bmap.h"
|
2013-10-23 10:51:50 +11:00
|
|
|
#include "xfs_bmap_btree.h"
|
2013-04-03 16:11:18 +11:00
|
|
|
#include "xfs_quota.h"
|
2019-11-06 17:19:33 -08:00
|
|
|
#include "xfs_symlink.h"
|
2013-04-03 16:11:18 +11:00
|
|
|
#include "xfs_trans_space.h"
|
|
|
|
#include "xfs_trace.h"
|
2013-10-23 10:50:10 +11:00
|
|
|
#include "xfs_trans.h"
|
2021-06-02 10:48:24 +10:00
|
|
|
#include "xfs_ialloc.h"
|
2021-12-15 12:07:41 -08:00
|
|
|
#include "xfs_error.h"
|
2023-12-15 10:03:35 -08:00
|
|
|
#include "xfs_health.h"
|
2024-02-22 12:45:01 -08:00
|
|
|
#include "xfs_symlink_remote.h"
|
2024-04-22 09:47:49 -07:00
|
|
|
#include "xfs_parent.h"
|
|
|
|
#include "xfs_defer.h"
|
2013-04-03 16:11:18 +11:00
|
|
|
|
|
|
|
int
|
|
|
|
xfs_readlink(
|
2021-12-15 12:07:41 -08:00
|
|
|
struct xfs_inode *ip,
|
|
|
|
char *link)
|
2013-04-03 16:11:18 +11:00
|
|
|
{
|
2021-12-15 12:07:41 -08:00
|
|
|
struct xfs_mount *mp = ip->i_mount;
|
|
|
|
xfs_fsize_t pathlen;
|
2024-02-22 12:32:42 -08:00
|
|
|
int error;
|
2013-04-03 16:11:18 +11:00
|
|
|
|
|
|
|
trace_xfs_readlink(ip);
|
|
|
|
|
2021-08-18 18:46:53 -07:00
|
|
|
if (xfs_is_shutdown(mp))
|
2014-06-25 14:58:08 +10:00
|
|
|
return -EIO;
|
2023-12-15 10:03:35 -08:00
|
|
|
if (xfs_ifork_zapped(ip, XFS_DATA_FORK))
|
|
|
|
return -EIO;
|
2013-04-03 16:11:18 +11:00
|
|
|
|
|
|
|
xfs_ilock(ip, XFS_ILOCK_SHARED);
|
|
|
|
|
2021-03-29 11:11:40 -07:00
|
|
|
pathlen = ip->i_disk_size;
|
2013-04-03 16:11:18 +11:00
|
|
|
if (!pathlen)
|
2024-02-22 12:32:42 -08:00
|
|
|
goto out_corrupt;
|
2013-04-03 16:11:18 +11:00
|
|
|
|
2017-07-07 08:37:26 -07:00
|
|
|
if (pathlen < 0 || pathlen > XFS_SYMLINK_MAXLEN) {
|
2013-04-03 16:11:18 +11:00
|
|
|
xfs_alert(mp, "%s: inode (%llu) bad symlink length (%lld)",
|
|
|
|
__func__, (unsigned long long) ip->i_ino,
|
|
|
|
(long long) pathlen);
|
|
|
|
ASSERT(0);
|
2024-02-22 12:32:42 -08:00
|
|
|
goto out_corrupt;
|
2013-04-03 16:11:18 +11:00
|
|
|
}
|
|
|
|
|
2021-12-15 12:07:41 -08:00
|
|
|
if (ip->i_df.if_format == XFS_DINODE_FMT_LOCAL) {
|
|
|
|
/*
|
|
|
|
* The VFS crashes on a NULL pointer, so return -EFSCORRUPTED
|
|
|
|
* if if_data is junk.
|
|
|
|
*/
|
2023-12-20 07:34:55 +01:00
|
|
|
if (XFS_IS_CORRUPT(ip->i_mount, !ip->i_df.if_data))
|
2024-02-22 12:32:42 -08:00
|
|
|
goto out_corrupt;
|
2021-12-15 12:07:41 -08:00
|
|
|
|
2023-12-20 07:34:55 +01:00
|
|
|
memcpy(link, ip->i_df.if_data, pathlen + 1);
|
2021-12-15 12:07:41 -08:00
|
|
|
error = 0;
|
|
|
|
} else {
|
2024-02-22 12:45:17 -08:00
|
|
|
error = xfs_symlink_remote_read(ip, link);
|
2021-12-15 12:07:41 -08:00
|
|
|
}
|
2013-04-03 16:11:18 +11:00
|
|
|
|
|
|
|
xfs_iunlock(ip, XFS_ILOCK_SHARED);
|
|
|
|
return error;
|
2024-02-22 12:32:42 -08:00
|
|
|
out_corrupt:
|
|
|
|
xfs_iunlock(ip, XFS_ILOCK_SHARED);
|
|
|
|
xfs_inode_mark_sick(ip, XFS_SICK_INO_SYMLINK);
|
|
|
|
return -EFSCORRUPTED;
|
2013-04-03 16:11:18 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xfs_symlink(
|
2023-01-13 12:49:25 +01:00
|
|
|
struct mnt_idmap *idmap,
|
2013-04-03 16:11:19 +11:00
|
|
|
struct xfs_inode *dp,
|
2013-04-03 16:11:18 +11:00
|
|
|
struct xfs_name *link_name,
|
|
|
|
const char *target_path,
|
|
|
|
umode_t mode,
|
2013-04-03 16:11:19 +11:00
|
|
|
struct xfs_inode **ipp)
|
2013-04-03 16:11:18 +11:00
|
|
|
{
|
2013-04-03 16:11:19 +11:00
|
|
|
struct xfs_mount *mp = dp->i_mount;
|
2024-07-02 11:22:34 -07:00
|
|
|
struct xfs_icreate_args args = {
|
|
|
|
.idmap = idmap,
|
|
|
|
.pip = dp,
|
|
|
|
.mode = S_IFLNK | (mode & ~S_IFMT),
|
|
|
|
};
|
2024-07-02 11:22:42 -07:00
|
|
|
struct xfs_dir_update du = {
|
|
|
|
.dp = dp,
|
|
|
|
.name = link_name,
|
|
|
|
};
|
2013-04-03 16:11:19 +11:00
|
|
|
struct xfs_trans *tp = NULL;
|
|
|
|
int error = 0;
|
2013-04-03 16:11:18 +11:00
|
|
|
int pathlen;
|
2015-02-23 22:38:08 +11:00
|
|
|
bool unlock_dp_on_error = false;
|
2013-04-03 16:11:18 +11:00
|
|
|
xfs_filblks_t fs_blocks;
|
2024-07-02 11:22:39 -07:00
|
|
|
struct xfs_dquot *udqp;
|
|
|
|
struct xfs_dquot *gdqp;
|
|
|
|
struct xfs_dquot *pdqp;
|
2013-04-03 16:11:18 +11:00
|
|
|
uint resblks;
|
2021-06-02 10:48:24 +10:00
|
|
|
xfs_ino_t ino;
|
2013-04-03 16:11:18 +11:00
|
|
|
|
|
|
|
*ipp = NULL;
|
|
|
|
|
|
|
|
trace_xfs_symlink(dp, link_name);
|
|
|
|
|
2021-08-18 18:46:53 -07:00
|
|
|
if (xfs_is_shutdown(mp))
|
2014-06-25 14:58:08 +10:00
|
|
|
return -EIO;
|
2013-04-03 16:11:18 +11:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check component lengths of the target path name.
|
|
|
|
*/
|
|
|
|
pathlen = strlen(target_path);
|
2017-07-07 08:37:26 -07:00
|
|
|
if (pathlen >= XFS_SYMLINK_MAXLEN) /* total string too long */
|
2014-06-25 14:58:08 +10:00
|
|
|
return -ENAMETOOLONG;
|
2018-12-12 08:46:21 -08:00
|
|
|
ASSERT(pathlen > 0);
|
2013-04-03 16:11:18 +11:00
|
|
|
|
2024-07-02 11:22:39 -07:00
|
|
|
/* Make sure that we have allocated dquot(s) on disk. */
|
|
|
|
error = xfs_icreate_dqalloc(&args, &udqp, &gdqp, &pdqp);
|
2013-04-03 16:11:18 +11:00
|
|
|
if (error)
|
2015-02-23 22:38:08 +11:00
|
|
|
return error;
|
2013-04-03 16:11:18 +11:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The symlink will fit into the inode data fork?
|
2024-04-22 09:47:49 -07:00
|
|
|
* If there are no parent pointers, then there wont't be any attributes.
|
|
|
|
* So we get the whole variable part, and do not need to reserve extra
|
|
|
|
* blocks. Otherwise, we need to reserve the blocks.
|
2013-04-03 16:11:18 +11:00
|
|
|
*/
|
2024-04-22 09:47:49 -07:00
|
|
|
if (pathlen <= XFS_LITINO(mp) && !xfs_has_parent(mp))
|
2013-04-03 16:11:18 +11:00
|
|
|
fs_blocks = 0;
|
|
|
|
else
|
2013-05-27 16:38:20 +10:00
|
|
|
fs_blocks = xfs_symlink_blocks(mp, pathlen);
|
2024-04-22 09:47:49 -07:00
|
|
|
resblks = xfs_symlink_space_res(mp, link_name->len, fs_blocks);
|
|
|
|
|
2024-07-02 11:22:42 -07:00
|
|
|
error = xfs_parent_start(mp, &du.ppargs);
|
2024-04-22 09:47:49 -07:00
|
|
|
if (error)
|
|
|
|
goto out_release_dquots;
|
2016-04-06 09:19:55 +10:00
|
|
|
|
2021-01-27 12:07:57 -08:00
|
|
|
error = xfs_trans_alloc_icreate(mp, &M_RES(mp)->tr_symlink, udqp, gdqp,
|
|
|
|
pdqp, resblks, &tp);
|
2015-06-04 13:47:56 +10:00
|
|
|
if (error)
|
2024-04-22 09:47:49 -07:00
|
|
|
goto out_parent;
|
2013-04-03 16:11:18 +11:00
|
|
|
|
2016-11-30 14:33:25 +11:00
|
|
|
xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
|
2013-04-03 16:11:18 +11:00
|
|
|
unlock_dp_on_error = true;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check whether the directory allows new symlinks or not.
|
|
|
|
*/
|
2021-03-29 11:11:44 -07:00
|
|
|
if (dp->i_diflags & XFS_DIFLAG_NOSYMLINKS) {
|
2014-06-25 14:58:08 +10:00
|
|
|
error = -EPERM;
|
2015-02-23 22:38:08 +11:00
|
|
|
goto out_trans_cancel;
|
2013-04-03 16:11:18 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate an inode for the symlink.
|
|
|
|
*/
|
2024-08-30 15:36:49 -07:00
|
|
|
error = xfs_dialloc(&tp, &args, &ino);
|
2021-06-02 10:48:24 +10:00
|
|
|
if (!error)
|
2024-07-02 11:22:42 -07:00
|
|
|
error = xfs_icreate(tp, ino, &args, &du.ip);
|
2015-02-23 22:38:08 +11:00
|
|
|
if (error)
|
|
|
|
goto out_trans_cancel;
|
2013-04-03 16:11:18 +11:00
|
|
|
|
|
|
|
/*
|
2015-02-23 22:38:08 +11:00
|
|
|
* Now we join the directory inode to the transaction. We do not do it
|
|
|
|
* earlier because xfs_dir_ialloc might commit the previous transaction
|
|
|
|
* (and release all the locks). An error from here on will result in
|
|
|
|
* the transaction cancel unlocking dp so don't do it explicitly in the
|
2013-04-03 16:11:18 +11:00
|
|
|
* error path.
|
|
|
|
*/
|
2024-04-15 14:55:12 -07:00
|
|
|
xfs_trans_ijoin(tp, dp, 0);
|
2013-04-03 16:11:18 +11:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Also attach the dquot(s) to it, if applicable.
|
|
|
|
*/
|
2024-07-02 11:22:42 -07:00
|
|
|
xfs_qm_vop_create_dqattach(tp, du.ip, udqp, gdqp, pdqp);
|
2013-04-03 16:11:18 +11:00
|
|
|
|
2020-04-22 21:54:31 -07:00
|
|
|
resblks -= XFS_IALLOC_SPACE_RES(mp);
|
2024-07-02 11:22:42 -07:00
|
|
|
error = xfs_symlink_write_target(tp, du.ip, du.ip->i_ino, target_path,
|
2024-04-15 14:54:59 -07:00
|
|
|
pathlen, fs_blocks, resblks);
|
2024-02-22 12:48:20 -08:00
|
|
|
if (error)
|
|
|
|
goto out_trans_cancel;
|
|
|
|
resblks -= fs_blocks;
|
2024-07-02 11:22:42 -07:00
|
|
|
i_size_write(VFS_I(du.ip), du.ip->i_disk_size);
|
2013-04-03 16:11:18 +11:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create the directory entry for the symlink.
|
|
|
|
*/
|
2024-07-02 11:22:42 -07:00
|
|
|
error = xfs_dir_create_child(tp, resblks, &du);
|
2013-04-03 16:11:18 +11:00
|
|
|
if (error)
|
2018-07-24 13:43:13 -07:00
|
|
|
goto out_trans_cancel;
|
2024-04-22 09:47:49 -07:00
|
|
|
|
2013-04-03 16:11:18 +11:00
|
|
|
/*
|
|
|
|
* If this is a synchronous mount, make sure that the
|
|
|
|
* symlink transaction goes to disk before returning to
|
|
|
|
* the user.
|
|
|
|
*/
|
2021-08-18 18:46:52 -07:00
|
|
|
if (xfs_has_wsync(mp) || xfs_has_dirsync(mp))
|
2013-04-03 16:11:18 +11:00
|
|
|
xfs_trans_set_sync(tp);
|
|
|
|
|
2015-06-04 13:48:08 +10:00
|
|
|
error = xfs_trans_commit(tp);
|
2015-02-23 22:38:08 +11:00
|
|
|
if (error)
|
|
|
|
goto out_release_inode;
|
|
|
|
|
2013-04-03 16:11:18 +11:00
|
|
|
xfs_qm_dqrele(udqp);
|
|
|
|
xfs_qm_dqrele(gdqp);
|
2013-07-11 00:00:40 -05:00
|
|
|
xfs_qm_dqrele(pdqp);
|
2013-04-03 16:11:18 +11:00
|
|
|
|
2024-07-02 11:22:42 -07:00
|
|
|
*ipp = du.ip;
|
|
|
|
xfs_iunlock(du.ip, XFS_ILOCK_EXCL);
|
2024-04-15 14:55:12 -07:00
|
|
|
xfs_iunlock(dp, XFS_ILOCK_EXCL);
|
2024-07-02 11:22:42 -07:00
|
|
|
xfs_parent_finish(mp, du.ppargs);
|
2013-04-03 16:11:18 +11:00
|
|
|
return 0;
|
|
|
|
|
2015-02-23 22:38:08 +11:00
|
|
|
out_trans_cancel:
|
2015-06-04 13:47:56 +10:00
|
|
|
xfs_trans_cancel(tp);
|
2015-02-23 22:38:08 +11:00
|
|
|
out_release_inode:
|
|
|
|
/*
|
|
|
|
* Wait until after the current transaction is aborted to finish the
|
|
|
|
* setup of the inode and release the inode. This prevents recursive
|
|
|
|
* transactions and deadlocks from xfs_inactive.
|
|
|
|
*/
|
2024-07-02 11:22:42 -07:00
|
|
|
if (du.ip) {
|
|
|
|
xfs_iunlock(du.ip, XFS_ILOCK_EXCL);
|
|
|
|
xfs_finish_inode_setup(du.ip);
|
|
|
|
xfs_irele(du.ip);
|
2015-02-23 22:38:08 +11:00
|
|
|
}
|
2024-04-22 09:47:49 -07:00
|
|
|
out_parent:
|
2024-07-02 11:22:42 -07:00
|
|
|
xfs_parent_finish(mp, du.ppargs);
|
2021-01-27 12:07:57 -08:00
|
|
|
out_release_dquots:
|
2013-04-03 16:11:18 +11:00
|
|
|
xfs_qm_dqrele(udqp);
|
|
|
|
xfs_qm_dqrele(gdqp);
|
2013-07-11 00:00:40 -05:00
|
|
|
xfs_qm_dqrele(pdqp);
|
2013-04-03 16:11:18 +11:00
|
|
|
|
|
|
|
if (unlock_dp_on_error)
|
2016-11-30 14:33:25 +11:00
|
|
|
xfs_iunlock(dp, XFS_ILOCK_EXCL);
|
2013-04-03 16:11:18 +11:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free a symlink that has blocks associated with it.
|
2018-12-12 08:46:21 -08:00
|
|
|
*
|
|
|
|
* Note: zero length symlinks are not allowed to exist. When we set the size to
|
|
|
|
* zero, also change it to a regular file so that it does not get written to
|
|
|
|
* disk as a zero length symlink. The inode is on the unlinked list already, so
|
|
|
|
* userspace cannot find this inode anymore, so this change is not user visible
|
|
|
|
* but allows us to catch corrupt zero-length symlinks in the verifiers.
|
2013-04-03 16:11:18 +11:00
|
|
|
*/
|
2013-06-17 15:35:57 -05:00
|
|
|
STATIC int
|
2013-04-03 16:11:18 +11:00
|
|
|
xfs_inactive_symlink_rmt(
|
2024-04-15 14:54:21 -07:00
|
|
|
struct xfs_inode *ip)
|
2013-04-03 16:11:18 +11:00
|
|
|
{
|
2024-04-15 14:54:21 -07:00
|
|
|
struct xfs_mount *mp = ip->i_mount;
|
|
|
|
struct xfs_trans *tp;
|
|
|
|
int error;
|
|
|
|
|
2021-04-13 11:15:12 -07:00
|
|
|
ASSERT(!xfs_need_iread_extents(&ip->i_df));
|
2013-04-03 16:11:18 +11:00
|
|
|
/*
|
|
|
|
* We're freeing a symlink that has some
|
|
|
|
* blocks allocated to it. Free the
|
|
|
|
* blocks here. We know that we've got
|
|
|
|
* either 1 or 2 extents and that we can
|
|
|
|
* free them all in one bunmapi call.
|
|
|
|
*/
|
2020-05-18 10:27:22 -07:00
|
|
|
ASSERT(ip->i_df.if_nextents > 0 && ip->i_df.if_nextents <= 2);
|
2013-04-03 16:11:18 +11:00
|
|
|
|
2016-04-06 09:19:55 +10:00
|
|
|
error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp);
|
|
|
|
if (error)
|
2013-09-20 11:06:09 -04:00
|
|
|
return error;
|
|
|
|
|
|
|
|
xfs_ilock(ip, XFS_ILOCK_EXCL);
|
|
|
|
xfs_trans_ijoin(tp, ip, 0);
|
|
|
|
|
2013-04-03 16:11:18 +11:00
|
|
|
/*
|
2018-12-12 08:46:21 -08:00
|
|
|
* Lock the inode, fix the size, turn it into a regular file and join it
|
|
|
|
* to the transaction. Hold it so in the normal path, we still have it
|
|
|
|
* locked for the second transaction. In the error paths we need it
|
2013-04-03 16:11:18 +11:00
|
|
|
* held so the cancel won't rele it, see below.
|
|
|
|
*/
|
2021-03-29 11:11:40 -07:00
|
|
|
ip->i_disk_size = 0;
|
2018-12-12 08:46:21 -08:00
|
|
|
VFS_I(ip)->i_mode = (VFS_I(ip)->i_mode & ~S_IFMT) | S_IFREG;
|
2013-04-03 16:11:18 +11:00
|
|
|
xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
|
2024-04-15 14:54:21 -07:00
|
|
|
|
|
|
|
error = xfs_symlink_remote_truncate(tp, ip);
|
2013-09-20 11:06:09 -04:00
|
|
|
if (error)
|
2018-07-24 13:43:13 -07:00
|
|
|
goto error_trans_cancel;
|
2018-05-09 07:49:09 -07:00
|
|
|
|
2015-06-04 13:48:08 +10:00
|
|
|
error = xfs_trans_commit(tp);
|
2013-04-03 16:11:18 +11:00
|
|
|
if (error) {
|
2021-08-18 18:46:53 -07:00
|
|
|
ASSERT(xfs_is_shutdown(mp));
|
2013-09-20 11:06:09 -04:00
|
|
|
goto error_unlock;
|
2013-04-03 16:11:18 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove the memory for extent descriptions (just bookkeeping).
|
|
|
|
*/
|
|
|
|
if (ip->i_df.if_bytes)
|
|
|
|
xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
|
|
|
|
ASSERT(ip->i_df.if_bytes == 0);
|
|
|
|
|
2013-09-20 11:06:09 -04:00
|
|
|
xfs_iunlock(ip, XFS_ILOCK_EXCL);
|
2013-04-03 16:11:18 +11:00
|
|
|
return 0;
|
|
|
|
|
2013-09-20 11:06:09 -04:00
|
|
|
error_trans_cancel:
|
2015-06-04 13:47:56 +10:00
|
|
|
xfs_trans_cancel(tp);
|
2013-09-20 11:06:09 -04:00
|
|
|
error_unlock:
|
|
|
|
xfs_iunlock(ip, XFS_ILOCK_EXCL);
|
2013-04-03 16:11:18 +11:00
|
|
|
return error;
|
|
|
|
}
|
2013-06-17 15:35:57 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* xfs_inactive_symlink - free a symlink
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xfs_inactive_symlink(
|
2013-09-20 11:06:09 -04:00
|
|
|
struct xfs_inode *ip)
|
2013-06-17 15:35:57 -05:00
|
|
|
{
|
|
|
|
struct xfs_mount *mp = ip->i_mount;
|
|
|
|
int pathlen;
|
|
|
|
|
|
|
|
trace_xfs_inactive_symlink(ip);
|
|
|
|
|
2021-08-18 18:46:53 -07:00
|
|
|
if (xfs_is_shutdown(mp))
|
2014-06-25 14:58:08 +10:00
|
|
|
return -EIO;
|
2013-06-17 15:35:57 -05:00
|
|
|
|
2013-09-20 11:06:09 -04:00
|
|
|
xfs_ilock(ip, XFS_ILOCK_EXCL);
|
2021-03-29 11:11:40 -07:00
|
|
|
pathlen = (int)ip->i_disk_size;
|
2018-12-12 08:46:21 -08:00
|
|
|
ASSERT(pathlen);
|
2013-06-17 15:35:57 -05:00
|
|
|
|
2018-12-12 08:46:21 -08:00
|
|
|
if (pathlen <= 0 || pathlen > XFS_SYMLINK_MAXLEN) {
|
2013-06-17 15:35:57 -05:00
|
|
|
xfs_alert(mp, "%s: inode (0x%llx) bad symlink length (%d)",
|
|
|
|
__func__, (unsigned long long)ip->i_ino, pathlen);
|
2013-09-20 11:06:09 -04:00
|
|
|
xfs_iunlock(ip, XFS_ILOCK_EXCL);
|
2013-06-17 15:35:57 -05:00
|
|
|
ASSERT(0);
|
2024-02-22 12:32:42 -08:00
|
|
|
xfs_inode_mark_sick(ip, XFS_SICK_INO_SYMLINK);
|
2014-06-25 14:58:08 +10:00
|
|
|
return -EFSCORRUPTED;
|
2013-06-17 15:35:57 -05:00
|
|
|
}
|
|
|
|
|
2018-12-12 08:46:21 -08:00
|
|
|
/*
|
|
|
|
* Inline fork state gets removed by xfs_difree() so we have nothing to
|
|
|
|
* do here in that case.
|
|
|
|
*/
|
2021-04-13 11:15:11 -07:00
|
|
|
if (ip->i_df.if_format == XFS_DINODE_FMT_LOCAL) {
|
2013-09-20 11:06:09 -04:00
|
|
|
xfs_iunlock(ip, XFS_ILOCK_EXCL);
|
2013-06-17 15:35:57 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-20 11:06:09 -04:00
|
|
|
xfs_iunlock(ip, XFS_ILOCK_EXCL);
|
|
|
|
|
2013-06-17 15:35:57 -05:00
|
|
|
/* remove the remote symlink */
|
2013-09-20 11:06:09 -04:00
|
|
|
return xfs_inactive_symlink_rmt(ip);
|
2013-06-17 15:35:57 -05:00
|
|
|
}
|