// SPDX-License-Identifier: GPL-2.0 /* * Copyright (c) 2000-2006 Silicon Graphics, Inc. * Copyright (c) 2012-2013 Red Hat, Inc. * All rights reserved.
*/ #include"xfs.h" #include"xfs_fs.h" #include"xfs_format.h" #include"xfs_log_format.h" #include"xfs_shared.h" #include"xfs_trans_resv.h" #include"xfs_mount.h" #include"xfs_inode.h" #include"xfs_error.h" #include"xfs_trans.h" #include"xfs_buf_item.h" #include"xfs_log.h" #include"xfs_symlink_remote.h" #include"xfs_bit.h" #include"xfs_bmap.h" #include"xfs_health.h"
/* * Each contiguous block has a header, so it is not just a simple pathlen * to FSB conversion.
*/ int
xfs_symlink_blocks( struct xfs_mount *mp, int pathlen)
{ int buflen = XFS_SYMLINK_BUF_SPACE(mp, mp->m_sb.sb_blocksize);
/* * Checking of the symlink header is split into two parts. the verifier does * CRC, location and bounds checking, the unpacking function checks the path * parameters and owner.
*/ bool
xfs_symlink_hdr_ok(
xfs_ino_t ino,
uint32_t offset,
uint32_t size, struct xfs_buf *bp)
{ struct xfs_dsymlink_hdr *dsl = bp->b_addr;
if (offset != be32_to_cpu(dsl->sl_offset)) returnfalse; if (size != be32_to_cpu(dsl->sl_bytes)) returnfalse; if (ino != be64_to_cpu(dsl->sl_owner)) returnfalse;
/* * As this symlink fits in an inode literal area, it must also fit in * the smallest buffer the filesystem supports.
*/
ASSERT(BBTOB(bp->b_length) >=
ifp->if_bytes + sizeof(struct xfs_dsymlink_hdr));
/* * Verify the in-memory consistency of an inline symlink data fork. This * does not do on-disk format checks.
*/
xfs_failaddr_t
xfs_symlink_shortform_verify( void *sfp,
int64_t size)
{ char *endp = sfp + size;
/* * Zero length symlinks should never occur in memory as they are * never allowed to exist on disk.
*/ if (!size) return __this_address;
/* No negative sizes or overly long symlink targets. */ if (size < 0 || size > XFS_SYMLINK_MAXLEN) return __this_address;
/* No NULLs in the target either. */ if (memchr(sfp, 0, size - 1)) return __this_address;
/* We /did/ null-terminate the buffer, right? */ if (*endp != 0) return __this_address; return NULL;
}
/* Read a remote symlink target into the buffer. */ int
xfs_symlink_remote_read( struct xfs_inode *ip, char *link)
{ struct xfs_mount *mp = ip->i_mount; struct xfs_bmbt_irec mval[XFS_SYMLINK_MAPS]; struct xfs_buf *bp;
xfs_daddr_t d; char *cur_chunk; int pathlen = ip->i_disk_size; int nmaps = XFS_SYMLINK_MAPS; int byte_cnt; int n; int error = 0; int fsblocks = 0; int offset;
offset = 0; for (n = 0; n < nmaps; n++) {
d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
error = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt), 0,
&bp, &xfs_symlink_buf_ops); if (xfs_metadata_is_sick(error))
xfs_inode_mark_sick(ip, XFS_SICK_INO_SYMLINK); if (error) return error;
byte_cnt = XFS_SYMLINK_BUF_SPACE(mp, byte_cnt); if (pathlen < byte_cnt)
byte_cnt = pathlen;
cur_chunk = bp->b_addr; if (xfs_has_crc(mp)) { if (!xfs_symlink_hdr_ok(ip->i_ino, offset,
byte_cnt, bp)) {
xfs_inode_mark_sick(ip, XFS_SICK_INO_SYMLINK);
error = -EFSCORRUPTED;
xfs_alert(mp, "symlink header does not match required off/len/owner (0x%x/0x%x,0x%llx)",
offset, byte_cnt, ip->i_ino);
xfs_buf_relse(bp); goto out;
}
cur_chunk += sizeof(struct xfs_dsymlink_hdr);
}
memcpy(link + offset, cur_chunk, byte_cnt);
pathlen -= byte_cnt;
offset += byte_cnt;
xfs_buf_relse(bp);
}
ASSERT(pathlen == 0);
link[ip->i_disk_size] = '\0';
error = 0;
out: return error;
}
/* Write the symlink target into the inode. */ int
xfs_symlink_write_target( struct xfs_trans *tp, struct xfs_inode *ip,
xfs_ino_t owner, constchar *target_path, int pathlen,
xfs_fsblock_t fs_blocks,
uint resblks)
{ struct xfs_bmbt_irec mval[XFS_SYMLINK_MAPS]; struct xfs_mount *mp = tp->t_mountp; constchar *cur_chunk; struct xfs_buf *bp;
xfs_daddr_t d; int byte_cnt; int nmaps; int offset = 0; int n; int error;
/* * If the symlink will fit into the inode, write it inline.
*/ if (pathlen <= xfs_inode_data_fork_size(ip)) {
xfs_init_local_fork(ip, XFS_DATA_FORK, target_path, pathlen);
/* Remove all the blocks from a symlink and invalidate buffers. */ int
xfs_symlink_remote_truncate( struct xfs_trans *tp, struct xfs_inode *ip)
{ struct xfs_bmbt_irec mval[XFS_SYMLINK_MAPS]; struct xfs_mount *mp = tp->t_mountp; struct xfs_buf *bp; int nmaps = XFS_SYMLINK_MAPS; int done = 0; int i; int error;
/* Read mappings and invalidate buffers. */
error = xfs_bmapi_read(ip, 0, XFS_MAX_FILEOFF, mval, &nmaps, 0); if (error) return error;
for (i = 0; i < nmaps; i++) { if (!xfs_bmap_is_real_extent(&mval[i])) break;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.