1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2017-2023 Oracle. All Rights Reserved.
8 #include "xfs_shared.h"
9 #include "xfs_format.h"
10 #include "xfs_trans_resv.h"
11 #include "xfs_mount.h"
12 #include "xfs_log_format.h"
13 #include "xfs_inode.h"
14 #include "xfs_symlink.h"
15 #include "scrub/scrub.h"
16 #include "scrub/common.h"
18 /* Set us up to scrub a symbolic link. */
23 /* Allocate the buffer without the inode lock held. */
24 sc->buf = kvzalloc(XFS_SYMLINK_MAXLEN + 1, XCHK_GFP_FLAGS);
28 return xchk_setup_inode_contents(sc, 0);
37 struct xfs_inode *ip = sc->ip;
38 struct xfs_ifork *ifp;
42 if (!S_ISLNK(VFS_I(ip)->i_mode))
44 ifp = xfs_ifork_ptr(ip, XFS_DATA_FORK);
45 len = ip->i_disk_size;
48 if (len > XFS_SYMLINK_MAXLEN || len <= 0) {
49 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, 0);
54 if (ifp->if_format == XFS_DINODE_FMT_LOCAL) {
55 if (len > xfs_inode_data_fork_size(ip) ||
56 len > strnlen(ifp->if_u1.if_data, xfs_inode_data_fork_size(ip)))
57 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, 0);
61 /* Remote symlink; must read the contents. */
62 error = xfs_readlink_bmap_ilocked(sc->ip, sc->buf);
63 if (!xchk_fblock_process_error(sc, XFS_DATA_FORK, 0, &error))
65 if (strnlen(sc->buf, XFS_SYMLINK_MAXLEN) < len)
66 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, 0);