Linux Audio

Check our new training course

Loading...
v4.17
 
  1/*
  2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
  3 * All Rights Reserved.
  4 *
  5 * This program is free software; you can redistribute it and/or
  6 * modify it under the terms of the GNU General Public License as
  7 * published by the Free Software Foundation.
  8 *
  9 * This program is distributed in the hope that it would be useful,
 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 12 * GNU General Public License for more details.
 13 *
 14 * You should have received a copy of the GNU General Public License
 15 * along with this program; if not, write the Free Software Foundation,
 16 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 17 */
 18#include "xfs.h"
 19#include "xfs_fs.h"
 20#include "xfs_shared.h"
 21#include "xfs_format.h"
 22#include "xfs_log_format.h"
 23#include "xfs_trans_resv.h"
 24#include "xfs_mount.h"
 25#include "xfs_defer.h"
 26#include "xfs_inode.h"
 27#include "xfs_errortag.h"
 28#include "xfs_error.h"
 29#include "xfs_cksum.h"
 30#include "xfs_icache.h"
 31#include "xfs_trans.h"
 32#include "xfs_ialloc.h"
 33#include "xfs_dir2.h"
 
 34
 35#include <linux/iversion.h>
 36
 37/*
 38 * Check that none of the inode's in the buffer have a next
 39 * unlinked field of 0.
 40 */
 41#if defined(DEBUG)
 42void
 43xfs_inobp_check(
 44	xfs_mount_t	*mp,
 45	xfs_buf_t	*bp)
 46{
 47	int		i;
 48	int		j;
 49	xfs_dinode_t	*dip;
 50
 51	j = mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog;
 52
 53	for (i = 0; i < j; i++) {
 54		dip = xfs_buf_offset(bp, i * mp->m_sb.sb_inodesize);
 55		if (!dip->di_next_unlinked)  {
 56			xfs_alert(mp,
 57	"Detected bogus zero next_unlinked field in inode %d buffer 0x%llx.",
 58				i, (long long)bp->b_bn);
 59		}
 60	}
 61}
 62#endif
 63
 64bool
 65xfs_dinode_good_version(
 66	struct xfs_mount *mp,
 67	__u8		version)
 68{
 69	if (xfs_sb_version_hascrc(&mp->m_sb))
 70		return version == 3;
 71
 72	return version == 1 || version == 2;
 73}
 74
 75/*
 76 * If we are doing readahead on an inode buffer, we might be in log recovery
 77 * reading an inode allocation buffer that hasn't yet been replayed, and hence
 78 * has not had the inode cores stamped into it. Hence for readahead, the buffer
 79 * may be potentially invalid.
 80 *
 81 * If the readahead buffer is invalid, we need to mark it with an error and
 82 * clear the DONE status of the buffer so that a followup read will re-read it
 83 * from disk. We don't report the error otherwise to avoid warnings during log
 84 * recovery and we don't get unnecssary panics on debug kernels. We use EIO here
 85 * because all we want to do is say readahead failed; there is no-one to report
 86 * the error to, so this will distinguish it from a non-ra verifier failure.
 87 * Changes to this readahead error behavour also need to be reflected in
 88 * xfs_dquot_buf_readahead_verify().
 89 */
 90static void
 91xfs_inode_buf_verify(
 92	struct xfs_buf	*bp,
 93	bool		readahead)
 94{
 95	struct xfs_mount *mp = bp->b_target->bt_mount;
 96	xfs_agnumber_t	agno;
 97	int		i;
 98	int		ni;
 99
100	/*
101	 * Validate the magic number and version of every inode in the buffer
102	 */
103	agno = xfs_daddr_to_agno(mp, XFS_BUF_ADDR(bp));
104	ni = XFS_BB_TO_FSB(mp, bp->b_length) * mp->m_sb.sb_inopblock;
105	for (i = 0; i < ni; i++) {
106		int		di_ok;
107		xfs_dinode_t	*dip;
108		xfs_agino_t	unlinked_ino;
109
110		dip = xfs_buf_offset(bp, (i << mp->m_sb.sb_inodelog));
111		unlinked_ino = be32_to_cpu(dip->di_next_unlinked);
112		di_ok = dip->di_magic == cpu_to_be16(XFS_DINODE_MAGIC) &&
113			xfs_dinode_good_version(mp, dip->di_version) &&
114			(unlinked_ino == NULLAGINO ||
115			 xfs_verify_agino(mp, agno, unlinked_ino));
116		if (unlikely(XFS_TEST_ERROR(!di_ok, mp,
117						XFS_ERRTAG_ITOBP_INOTOBP))) {
118			if (readahead) {
119				bp->b_flags &= ~XBF_DONE;
120				xfs_buf_ioerror(bp, -EIO);
121				return;
122			}
123
124#ifdef DEBUG
125			xfs_alert(mp,
126				"bad inode magic/vsn daddr %lld #%d (magic=%x)",
127				(unsigned long long)bp->b_bn, i,
128				be16_to_cpu(dip->di_magic));
129#endif
130			xfs_buf_verifier_error(bp, -EFSCORRUPTED,
131					__func__, dip, sizeof(*dip),
132					NULL);
133			return;
134		}
135	}
136}
137
138
139static void
140xfs_inode_buf_read_verify(
141	struct xfs_buf	*bp)
142{
143	xfs_inode_buf_verify(bp, false);
144}
145
146static void
147xfs_inode_buf_readahead_verify(
148	struct xfs_buf	*bp)
149{
150	xfs_inode_buf_verify(bp, true);
151}
152
153static void
154xfs_inode_buf_write_verify(
155	struct xfs_buf	*bp)
156{
157	xfs_inode_buf_verify(bp, false);
158}
159
160const struct xfs_buf_ops xfs_inode_buf_ops = {
161	.name = "xfs_inode",
 
 
162	.verify_read = xfs_inode_buf_read_verify,
163	.verify_write = xfs_inode_buf_write_verify,
164};
165
166const struct xfs_buf_ops xfs_inode_buf_ra_ops = {
167	.name = "xxfs_inode_ra",
 
 
168	.verify_read = xfs_inode_buf_readahead_verify,
169	.verify_write = xfs_inode_buf_write_verify,
170};
171
172
173/*
174 * This routine is called to map an inode to the buffer containing the on-disk
175 * version of the inode.  It returns a pointer to the buffer containing the
176 * on-disk inode in the bpp parameter, and in the dipp parameter it returns a
177 * pointer to the on-disk inode within that buffer.
178 *
179 * If a non-zero error is returned, then the contents of bpp and dipp are
180 * undefined.
181 */
182int
183xfs_imap_to_bp(
184	struct xfs_mount	*mp,
185	struct xfs_trans	*tp,
186	struct xfs_imap		*imap,
187	struct xfs_dinode       **dipp,
188	struct xfs_buf		**bpp,
189	uint			buf_flags,
190	uint			iget_flags)
191{
192	struct xfs_buf		*bp;
193	int			error;
194
195	buf_flags |= XBF_UNMAPPED;
196	error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, imap->im_blkno,
197				   (int)imap->im_len, buf_flags, &bp,
198				   &xfs_inode_buf_ops);
199	if (error) {
200		if (error == -EAGAIN) {
201			ASSERT(buf_flags & XBF_TRYLOCK);
202			return error;
203		}
204
205		if (error == -EFSCORRUPTED &&
206		    (iget_flags & XFS_IGET_UNTRUSTED))
207			return -EINVAL;
 
208
209		xfs_warn(mp, "%s: xfs_trans_read_buf() returned error %d.",
210			__func__, error);
211		return error;
212	}
213
214	*bpp = bp;
215	*dipp = xfs_buf_offset(bp, imap->im_boffset);
216	return 0;
217}
218
219void
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220xfs_inode_from_disk(
221	struct xfs_inode	*ip,
222	struct xfs_dinode	*from)
223{
224	struct xfs_icdinode	*to = &ip->i_d;
225	struct inode		*inode = VFS_I(ip);
 
 
 
 
 
 
 
 
 
 
 
226
 
 
 
 
 
 
 
 
 
 
 
227
228	/*
229	 * Convert v1 inodes immediately to v2 inode format as this is the
230	 * minimum inode version format we support in the rest of the code.
 
231	 */
232	to->di_version = from->di_version;
233	if (to->di_version == 1) {
234		set_nlink(inode, be16_to_cpu(from->di_onlink));
235		to->di_projid_lo = 0;
236		to->di_projid_hi = 0;
237		to->di_version = 2;
238	} else {
239		set_nlink(inode, be32_to_cpu(from->di_nlink));
240		to->di_projid_lo = be16_to_cpu(from->di_projid_lo);
241		to->di_projid_hi = be16_to_cpu(from->di_projid_hi);
242	}
243
244	to->di_format = from->di_format;
245	to->di_uid = be32_to_cpu(from->di_uid);
246	to->di_gid = be32_to_cpu(from->di_gid);
247	to->di_flushiter = be16_to_cpu(from->di_flushiter);
248
249	/*
250	 * Time is signed, so need to convert to signed 32 bit before
251	 * storing in inode timestamp which may be 64 bit. Otherwise
252	 * a time before epoch is converted to a time long after epoch
253	 * on 64 bit systems.
254	 */
255	inode->i_atime.tv_sec = (int)be32_to_cpu(from->di_atime.t_sec);
256	inode->i_atime.tv_nsec = (int)be32_to_cpu(from->di_atime.t_nsec);
257	inode->i_mtime.tv_sec = (int)be32_to_cpu(from->di_mtime.t_sec);
258	inode->i_mtime.tv_nsec = (int)be32_to_cpu(from->di_mtime.t_nsec);
259	inode->i_ctime.tv_sec = (int)be32_to_cpu(from->di_ctime.t_sec);
260	inode->i_ctime.tv_nsec = (int)be32_to_cpu(from->di_ctime.t_nsec);
261	inode->i_generation = be32_to_cpu(from->di_gen);
262	inode->i_mode = be16_to_cpu(from->di_mode);
 
 
 
 
 
263
264	to->di_size = be64_to_cpu(from->di_size);
265	to->di_nblocks = be64_to_cpu(from->di_nblocks);
266	to->di_extsize = be32_to_cpu(from->di_extsize);
267	to->di_nextents = be32_to_cpu(from->di_nextents);
268	to->di_anextents = be16_to_cpu(from->di_anextents);
269	to->di_forkoff = from->di_forkoff;
270	to->di_aformat	= from->di_aformat;
271	to->di_dmevmask	= be32_to_cpu(from->di_dmevmask);
272	to->di_dmstate	= be16_to_cpu(from->di_dmstate);
273	to->di_flags	= be16_to_cpu(from->di_flags);
274
275	if (to->di_version == 3) {
276		inode_set_iversion_queried(inode,
277					   be64_to_cpu(from->di_changecount));
278		to->di_crtime.t_sec = be32_to_cpu(from->di_crtime.t_sec);
279		to->di_crtime.t_nsec = be32_to_cpu(from->di_crtime.t_nsec);
280		to->di_flags2 = be64_to_cpu(from->di_flags2);
281		to->di_cowextsize = be32_to_cpu(from->di_cowextsize);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
282	}
283}
284
285void
286xfs_inode_to_disk(
287	struct xfs_inode	*ip,
288	struct xfs_dinode	*to,
289	xfs_lsn_t		lsn)
290{
291	struct xfs_icdinode	*from = &ip->i_d;
292	struct inode		*inode = VFS_I(ip);
293
294	to->di_magic = cpu_to_be16(XFS_DINODE_MAGIC);
295	to->di_onlink = 0;
296
297	to->di_version = from->di_version;
298	to->di_format = from->di_format;
299	to->di_uid = cpu_to_be32(from->di_uid);
300	to->di_gid = cpu_to_be32(from->di_gid);
301	to->di_projid_lo = cpu_to_be16(from->di_projid_lo);
302	to->di_projid_hi = cpu_to_be16(from->di_projid_hi);
303
304	memset(to->di_pad, 0, sizeof(to->di_pad));
305	to->di_atime.t_sec = cpu_to_be32(inode->i_atime.tv_sec);
306	to->di_atime.t_nsec = cpu_to_be32(inode->i_atime.tv_nsec);
307	to->di_mtime.t_sec = cpu_to_be32(inode->i_mtime.tv_sec);
308	to->di_mtime.t_nsec = cpu_to_be32(inode->i_mtime.tv_nsec);
309	to->di_ctime.t_sec = cpu_to_be32(inode->i_ctime.tv_sec);
310	to->di_ctime.t_nsec = cpu_to_be32(inode->i_ctime.tv_nsec);
311	to->di_nlink = cpu_to_be32(inode->i_nlink);
312	to->di_gen = cpu_to_be32(inode->i_generation);
313	to->di_mode = cpu_to_be16(inode->i_mode);
314
315	to->di_size = cpu_to_be64(from->di_size);
316	to->di_nblocks = cpu_to_be64(from->di_nblocks);
317	to->di_extsize = cpu_to_be32(from->di_extsize);
318	to->di_nextents = cpu_to_be32(from->di_nextents);
319	to->di_anextents = cpu_to_be16(from->di_anextents);
320	to->di_forkoff = from->di_forkoff;
321	to->di_aformat = from->di_aformat;
322	to->di_dmevmask = cpu_to_be32(from->di_dmevmask);
323	to->di_dmstate = cpu_to_be16(from->di_dmstate);
324	to->di_flags = cpu_to_be16(from->di_flags);
325
326	if (from->di_version == 3) {
 
327		to->di_changecount = cpu_to_be64(inode_peek_iversion(inode));
328		to->di_crtime.t_sec = cpu_to_be32(from->di_crtime.t_sec);
329		to->di_crtime.t_nsec = cpu_to_be32(from->di_crtime.t_nsec);
330		to->di_flags2 = cpu_to_be64(from->di_flags2);
331		to->di_cowextsize = cpu_to_be32(from->di_cowextsize);
332		to->di_ino = cpu_to_be64(ip->i_ino);
333		to->di_lsn = cpu_to_be64(lsn);
334		memset(to->di_pad2, 0, sizeof(to->di_pad2));
335		uuid_copy(&to->di_uuid, &ip->i_mount->m_sb.sb_meta_uuid);
336		to->di_flushiter = 0;
337	} else {
338		to->di_flushiter = cpu_to_be16(from->di_flushiter);
 
 
339	}
 
 
340}
341
342void
343xfs_log_dinode_to_disk(
344	struct xfs_log_dinode	*from,
345	struct xfs_dinode	*to)
 
346{
347	to->di_magic = cpu_to_be16(from->di_magic);
348	to->di_mode = cpu_to_be16(from->di_mode);
349	to->di_version = from->di_version;
350	to->di_format = from->di_format;
351	to->di_onlink = 0;
352	to->di_uid = cpu_to_be32(from->di_uid);
353	to->di_gid = cpu_to_be32(from->di_gid);
354	to->di_nlink = cpu_to_be32(from->di_nlink);
355	to->di_projid_lo = cpu_to_be16(from->di_projid_lo);
356	to->di_projid_hi = cpu_to_be16(from->di_projid_hi);
357	memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
358
359	to->di_atime.t_sec = cpu_to_be32(from->di_atime.t_sec);
360	to->di_atime.t_nsec = cpu_to_be32(from->di_atime.t_nsec);
361	to->di_mtime.t_sec = cpu_to_be32(from->di_mtime.t_sec);
362	to->di_mtime.t_nsec = cpu_to_be32(from->di_mtime.t_nsec);
363	to->di_ctime.t_sec = cpu_to_be32(from->di_ctime.t_sec);
364	to->di_ctime.t_nsec = cpu_to_be32(from->di_ctime.t_nsec);
365
366	to->di_size = cpu_to_be64(from->di_size);
367	to->di_nblocks = cpu_to_be64(from->di_nblocks);
368	to->di_extsize = cpu_to_be32(from->di_extsize);
369	to->di_nextents = cpu_to_be32(from->di_nextents);
370	to->di_anextents = cpu_to_be16(from->di_anextents);
371	to->di_forkoff = from->di_forkoff;
372	to->di_aformat = from->di_aformat;
373	to->di_dmevmask = cpu_to_be32(from->di_dmevmask);
374	to->di_dmstate = cpu_to_be16(from->di_dmstate);
375	to->di_flags = cpu_to_be16(from->di_flags);
376	to->di_gen = cpu_to_be32(from->di_gen);
377
378	if (from->di_version == 3) {
379		to->di_changecount = cpu_to_be64(from->di_changecount);
380		to->di_crtime.t_sec = cpu_to_be32(from->di_crtime.t_sec);
381		to->di_crtime.t_nsec = cpu_to_be32(from->di_crtime.t_nsec);
382		to->di_flags2 = cpu_to_be64(from->di_flags2);
383		to->di_cowextsize = cpu_to_be32(from->di_cowextsize);
384		to->di_ino = cpu_to_be64(from->di_ino);
385		to->di_lsn = cpu_to_be64(from->di_lsn);
386		memcpy(to->di_pad2, from->di_pad2, sizeof(to->di_pad2));
387		uuid_copy(&to->di_uuid, &from->di_uuid);
388		to->di_flushiter = 0;
389	} else {
390		to->di_flushiter = cpu_to_be16(from->di_flushiter);
391	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
392}
393
394xfs_failaddr_t
395xfs_dinode_verify(
396	struct xfs_mount	*mp,
397	xfs_ino_t		ino,
398	struct xfs_dinode	*dip)
399{
 
400	uint16_t		mode;
401	uint16_t		flags;
402	uint64_t		flags2;
403	uint64_t		di_size;
 
 
 
404
405	if (dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC))
406		return __this_address;
407
408	/* Verify v3 integrity information first */
409	if (dip->di_version >= 3) {
410		if (!xfs_sb_version_hascrc(&mp->m_sb))
411			return __this_address;
412		if (!xfs_verify_cksum((char *)dip, mp->m_sb.sb_inodesize,
413				      XFS_DINODE_CRC_OFF))
414			return __this_address;
415		if (be64_to_cpu(dip->di_ino) != ino)
416			return __this_address;
417		if (!uuid_equal(&dip->di_uuid, &mp->m_sb.sb_meta_uuid))
418			return __this_address;
419	}
420
421	/* don't allow invalid i_size */
422	di_size = be64_to_cpu(dip->di_size);
423	if (di_size & (1ULL << 63))
424		return __this_address;
425
426	mode = be16_to_cpu(dip->di_mode);
427	if (mode && xfs_mode_to_ftype(mode) == XFS_DIR3_FT_UNKNOWN)
428		return __this_address;
429
430	/* No zero-length symlinks/dirs. */
431	if ((S_ISLNK(mode) || S_ISDIR(mode)) && di_size == 0)
432		return __this_address;
433
 
 
 
 
 
 
 
 
434	/* Fork checks carried over from xfs_iformat_fork */
435	if (mode &&
436	    be32_to_cpu(dip->di_nextents) + be16_to_cpu(dip->di_anextents) >
437			be64_to_cpu(dip->di_nblocks))
 
 
 
 
438		return __this_address;
439
440	if (mode && XFS_DFORK_BOFF(dip) > mp->m_sb.sb_inodesize)
441		return __this_address;
442
443	flags = be16_to_cpu(dip->di_flags);
444
445	if (mode && (flags & XFS_DIFLAG_REALTIME) && !mp->m_rtdev_targp)
446		return __this_address;
447
 
 
 
 
 
448	/* Do we have appropriate data fork formats for the mode? */
449	switch (mode & S_IFMT) {
450	case S_IFIFO:
451	case S_IFCHR:
452	case S_IFBLK:
453	case S_IFSOCK:
454		if (dip->di_format != XFS_DINODE_FMT_DEV)
455			return __this_address;
456		break;
457	case S_IFREG:
458	case S_IFLNK:
459	case S_IFDIR:
460		switch (dip->di_format) {
461		case XFS_DINODE_FMT_LOCAL:
462			/*
463			 * no local regular files yet
464			 */
465			if (S_ISREG(mode))
466				return __this_address;
467			if (di_size > XFS_DFORK_DSIZE(dip, mp))
468				return __this_address;
469			if (dip->di_nextents)
470				return __this_address;
471			/* fall through */
472		case XFS_DINODE_FMT_EXTENTS:
473		case XFS_DINODE_FMT_BTREE:
474			break;
475		default:
476			return __this_address;
477		}
478		break;
479	case 0:
480		/* Uninitialized inode ok. */
481		break;
482	default:
483		return __this_address;
484	}
485
486	if (XFS_DFORK_Q(dip)) {
487		switch (dip->di_aformat) {
488		case XFS_DINODE_FMT_LOCAL:
489			if (dip->di_anextents)
490				return __this_address;
491		/* fall through */
492		case XFS_DINODE_FMT_EXTENTS:
493		case XFS_DINODE_FMT_BTREE:
494			break;
495		default:
496			return __this_address;
497		}
498	} else {
499		/*
500		 * If there is no fork offset, this may be a freshly-made inode
501		 * in a new disk cluster, in which case di_aformat is zeroed.
502		 * Otherwise, such an inode must be in EXTENTS format; this goes
503		 * for freed inodes as well.
504		 */
505		switch (dip->di_aformat) {
506		case 0:
507		case XFS_DINODE_FMT_EXTENTS:
508			break;
509		default:
510			return __this_address;
511		}
512		if (dip->di_anextents)
513			return __this_address;
514	}
515
 
 
 
 
 
 
516	/* only version 3 or greater inodes are extensively verified here */
517	if (dip->di_version < 3)
518		return NULL;
519
520	flags2 = be64_to_cpu(dip->di_flags2);
521
522	/* don't allow reflink/cowextsize if we don't have reflink */
523	if ((flags2 & (XFS_DIFLAG2_REFLINK | XFS_DIFLAG2_COWEXTSIZE)) &&
524            !xfs_sb_version_hasreflink(&mp->m_sb))
525		return __this_address;
526
527	/* only regular files get reflink */
528	if ((flags2 & XFS_DIFLAG2_REFLINK) && (mode & S_IFMT) != S_IFREG)
529		return __this_address;
530
531	/* don't let reflink and realtime mix */
532	if ((flags2 & XFS_DIFLAG2_REFLINK) && (flags & XFS_DIFLAG_REALTIME))
533		return __this_address;
534
535	/* don't let reflink and dax mix */
536	if ((flags2 & XFS_DIFLAG2_REFLINK) && (flags2 & XFS_DIFLAG2_DAX))
 
 
 
 
 
 
 
537		return __this_address;
538
539	return NULL;
540}
541
542void
543xfs_dinode_calc_crc(
544	struct xfs_mount	*mp,
545	struct xfs_dinode	*dip)
546{
547	uint32_t		crc;
548
549	if (dip->di_version < 3)
550		return;
551
552	ASSERT(xfs_sb_version_hascrc(&mp->m_sb));
553	crc = xfs_start_cksum_update((char *)dip, mp->m_sb.sb_inodesize,
554			      XFS_DINODE_CRC_OFF);
555	dip->di_crc = xfs_end_cksum(crc);
556}
557
558/*
559 * Read the disk inode attributes into the in-core inode structure.
560 *
561 * For version 5 superblocks, if we are initialising a new inode and we are not
562 * utilising the XFS_MOUNT_IKEEP inode cluster mode, we can simple build the new
563 * inode core with a random generation number. If we are keeping inodes around,
564 * we need to read the inode cluster to get the existing generation number off
565 * disk. Further, if we are using version 4 superblocks (i.e. v1/v2 inode
566 * format) then log recovery is dependent on the di_flushiter field being
567 * initialised from the current on-disk value and hence we must also read the
568 * inode off disk.
569 */
570int
571xfs_iread(
572	xfs_mount_t	*mp,
573	xfs_trans_t	*tp,
574	xfs_inode_t	*ip,
575	uint		iget_flags)
576{
577	xfs_buf_t	*bp;
578	xfs_dinode_t	*dip;
579	xfs_failaddr_t	fa;
580	int		error;
581
582	/*
583	 * Fill in the location information in the in-core inode.
584	 */
585	error = xfs_imap(mp, tp, ip->i_ino, &ip->i_imap, iget_flags);
586	if (error)
587		return error;
588
589	/* shortcut IO on inode allocation if possible */
590	if ((iget_flags & XFS_IGET_CREATE) &&
591	    xfs_sb_version_hascrc(&mp->m_sb) &&
592	    !(mp->m_flags & XFS_MOUNT_IKEEP)) {
593		/* initialise the on-disk inode core */
594		memset(&ip->i_d, 0, sizeof(ip->i_d));
595		VFS_I(ip)->i_generation = prandom_u32();
596		ip->i_d.di_version = 3;
597		return 0;
598	}
599
600	/*
601	 * Get pointers to the on-disk inode and the buffer containing it.
602	 */
603	error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &bp, 0, iget_flags);
604	if (error)
605		return error;
606
607	/* even unallocated inodes are verified */
608	fa = xfs_dinode_verify(mp, ip->i_ino, dip);
609	if (fa) {
610		xfs_inode_verifier_error(ip, -EFSCORRUPTED, "dinode", dip,
611				sizeof(*dip), fa);
612		error = -EFSCORRUPTED;
613		goto out_brelse;
614	}
615
616	/*
617	 * If the on-disk inode is already linked to a directory
618	 * entry, copy all of the inode into the in-core inode.
619	 * xfs_iformat_fork() handles copying in the inode format
620	 * specific information.
621	 * Otherwise, just get the truly permanent information.
622	 */
623	if (dip->di_mode) {
624		xfs_inode_from_disk(ip, dip);
625		error = xfs_iformat_fork(ip, dip);
626		if (error)  {
627#ifdef DEBUG
628			xfs_alert(mp, "%s: xfs_iformat() returned error %d",
629				__func__, error);
630#endif /* DEBUG */
631			goto out_brelse;
632		}
633	} else {
634		/*
635		 * Partial initialisation of the in-core inode. Just the bits
636		 * that xfs_ialloc won't overwrite or relies on being correct.
637		 */
638		ip->i_d.di_version = dip->di_version;
639		VFS_I(ip)->i_generation = be32_to_cpu(dip->di_gen);
640		ip->i_d.di_flushiter = be16_to_cpu(dip->di_flushiter);
641
642		/*
643		 * Make sure to pull in the mode here as well in
644		 * case the inode is released without being used.
645		 * This ensures that xfs_inactive() will see that
646		 * the inode is already free and not try to mess
647		 * with the uninitialized part of it.
648		 */
649		VFS_I(ip)->i_mode = 0;
650	}
651
652	ASSERT(ip->i_d.di_version >= 2);
653	ip->i_delayed_blks = 0;
654
655	/*
656	 * Mark the buffer containing the inode as something to keep
657	 * around for a while.  This helps to keep recently accessed
658	 * meta-data in-core longer.
659	 */
660	xfs_buf_set_ref(bp, XFS_INO_REF);
661
662	/*
663	 * Use xfs_trans_brelse() to release the buffer containing the on-disk
664	 * inode, because it was acquired with xfs_trans_read_buf() in
665	 * xfs_imap_to_bp() above.  If tp is NULL, this is just a normal
666	 * brelse().  If we're within a transaction, then xfs_trans_brelse()
667	 * will only release the buffer if it is not dirty within the
668	 * transaction.  It will be OK to release the buffer in this case,
669	 * because inodes on disk are never destroyed and we will be locking the
670	 * new in-core inode before putting it in the cache where other
671	 * processes can find it.  Thus we don't have to worry about the inode
672	 * being changed just because we released the buffer.
673	 */
674 out_brelse:
675	xfs_trans_brelse(tp, bp);
676	return error;
677}
678
679/*
680 * Validate di_extsize hint.
681 *
682 * The rules are documented at xfs_ioctl_setattr_check_extsize().
683 * These functions must be kept in sync with each other.
 
 
 
 
 
 
 
 
 
684 */
685xfs_failaddr_t
686xfs_inode_validate_extsize(
687	struct xfs_mount		*mp,
688	uint32_t			extsize,
689	uint16_t			mode,
690	uint16_t			flags)
691{
692	bool				rt_flag;
693	bool				hint_flag;
694	bool				inherit_flag;
695	uint32_t			extsize_bytes;
696	uint32_t			blocksize_bytes;
697
698	rt_flag = (flags & XFS_DIFLAG_REALTIME);
699	hint_flag = (flags & XFS_DIFLAG_EXTSIZE);
700	inherit_flag = (flags & XFS_DIFLAG_EXTSZINHERIT);
701	extsize_bytes = XFS_FSB_TO_B(mp, extsize);
702
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
703	if (rt_flag)
704		blocksize_bytes = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
705	else
706		blocksize_bytes = mp->m_sb.sb_blocksize;
707
708	if ((hint_flag || inherit_flag) && !(S_ISDIR(mode) || S_ISREG(mode)))
709		return __this_address;
710
711	if (hint_flag && !S_ISREG(mode))
712		return __this_address;
713
714	if (inherit_flag && !S_ISDIR(mode))
715		return __this_address;
716
717	if ((hint_flag || inherit_flag) && extsize == 0)
718		return __this_address;
719
720	if (!(hint_flag || inherit_flag) && extsize != 0)
 
721		return __this_address;
722
723	if (extsize_bytes % blocksize_bytes)
724		return __this_address;
725
726	if (extsize > MAXEXTLEN)
727		return __this_address;
728
729	if (!rt_flag && extsize > mp->m_sb.sb_agblocks / 2)
730		return __this_address;
731
732	return NULL;
733}
734
735/*
736 * Validate di_cowextsize hint.
737 *
738 * The rules are documented at xfs_ioctl_setattr_check_cowextsize().
739 * These functions must be kept in sync with each other.
 
 
 
 
 
 
 
740 */
741xfs_failaddr_t
742xfs_inode_validate_cowextsize(
743	struct xfs_mount		*mp,
744	uint32_t			cowextsize,
745	uint16_t			mode,
746	uint16_t			flags,
747	uint64_t			flags2)
748{
749	bool				rt_flag;
750	bool				hint_flag;
751	uint32_t			cowextsize_bytes;
752
753	rt_flag = (flags & XFS_DIFLAG_REALTIME);
754	hint_flag = (flags2 & XFS_DIFLAG2_COWEXTSIZE);
755	cowextsize_bytes = XFS_FSB_TO_B(mp, cowextsize);
756
757	if (hint_flag && !xfs_sb_version_hasreflink(&mp->m_sb))
758		return __this_address;
759
760	if (hint_flag && !(S_ISDIR(mode) || S_ISREG(mode)))
761		return __this_address;
762
763	if (hint_flag && cowextsize == 0)
764		return __this_address;
765
766	if (!hint_flag && cowextsize != 0)
 
767		return __this_address;
768
769	if (hint_flag && rt_flag)
770		return __this_address;
771
772	if (cowextsize_bytes % mp->m_sb.sb_blocksize)
773		return __this_address;
774
775	if (cowextsize > MAXEXTLEN)
776		return __this_address;
777
778	if (cowextsize > mp->m_sb.sb_agblocks / 2)
779		return __this_address;
780
781	return NULL;
782}
v6.9.4
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
  4 * All Rights Reserved.
 
 
 
 
 
 
 
 
 
 
 
 
 
  5 */
  6#include "xfs.h"
  7#include "xfs_fs.h"
  8#include "xfs_shared.h"
  9#include "xfs_format.h"
 10#include "xfs_log_format.h"
 11#include "xfs_trans_resv.h"
 12#include "xfs_mount.h"
 13#include "xfs_ag.h"
 14#include "xfs_inode.h"
 15#include "xfs_errortag.h"
 16#include "xfs_error.h"
 
 17#include "xfs_icache.h"
 18#include "xfs_trans.h"
 19#include "xfs_ialloc.h"
 20#include "xfs_dir2.h"
 21#include "xfs_health.h"
 22
 23#include <linux/iversion.h>
 24
 25/*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 26 * If we are doing readahead on an inode buffer, we might be in log recovery
 27 * reading an inode allocation buffer that hasn't yet been replayed, and hence
 28 * has not had the inode cores stamped into it. Hence for readahead, the buffer
 29 * may be potentially invalid.
 30 *
 31 * If the readahead buffer is invalid, we need to mark it with an error and
 32 * clear the DONE status of the buffer so that a followup read will re-read it
 33 * from disk. We don't report the error otherwise to avoid warnings during log
 34 * recovery and we don't get unnecessary panics on debug kernels. We use EIO here
 35 * because all we want to do is say readahead failed; there is no-one to report
 36 * the error to, so this will distinguish it from a non-ra verifier failure.
 37 * Changes to this readahead error behaviour also need to be reflected in
 38 * xfs_dquot_buf_readahead_verify().
 39 */
 40static void
 41xfs_inode_buf_verify(
 42	struct xfs_buf	*bp,
 43	bool		readahead)
 44{
 45	struct xfs_mount *mp = bp->b_mount;
 
 46	int		i;
 47	int		ni;
 48
 49	/*
 50	 * Validate the magic number and version of every inode in the buffer
 51	 */
 
 52	ni = XFS_BB_TO_FSB(mp, bp->b_length) * mp->m_sb.sb_inopblock;
 53	for (i = 0; i < ni; i++) {
 54		struct xfs_dinode	*dip;
 55		xfs_agino_t		unlinked_ino;
 56		int			di_ok;
 57
 58		dip = xfs_buf_offset(bp, (i << mp->m_sb.sb_inodelog));
 59		unlinked_ino = be32_to_cpu(dip->di_next_unlinked);
 60		di_ok = xfs_verify_magic16(bp, dip->di_magic) &&
 61			xfs_dinode_good_version(mp, dip->di_version) &&
 62			xfs_verify_agino_or_null(bp->b_pag, unlinked_ino);
 
 63		if (unlikely(XFS_TEST_ERROR(!di_ok, mp,
 64						XFS_ERRTAG_ITOBP_INOTOBP))) {
 65			if (readahead) {
 66				bp->b_flags &= ~XBF_DONE;
 67				xfs_buf_ioerror(bp, -EIO);
 68				return;
 69			}
 70
 71#ifdef DEBUG
 72			xfs_alert(mp,
 73				"bad inode magic/vsn daddr %lld #%d (magic=%x)",
 74				(unsigned long long)xfs_buf_daddr(bp), i,
 75				be16_to_cpu(dip->di_magic));
 76#endif
 77			xfs_buf_verifier_error(bp, -EFSCORRUPTED,
 78					__func__, dip, sizeof(*dip),
 79					NULL);
 80			return;
 81		}
 82	}
 83}
 84
 85
 86static void
 87xfs_inode_buf_read_verify(
 88	struct xfs_buf	*bp)
 89{
 90	xfs_inode_buf_verify(bp, false);
 91}
 92
 93static void
 94xfs_inode_buf_readahead_verify(
 95	struct xfs_buf	*bp)
 96{
 97	xfs_inode_buf_verify(bp, true);
 98}
 99
100static void
101xfs_inode_buf_write_verify(
102	struct xfs_buf	*bp)
103{
104	xfs_inode_buf_verify(bp, false);
105}
106
107const struct xfs_buf_ops xfs_inode_buf_ops = {
108	.name = "xfs_inode",
109	.magic16 = { cpu_to_be16(XFS_DINODE_MAGIC),
110		     cpu_to_be16(XFS_DINODE_MAGIC) },
111	.verify_read = xfs_inode_buf_read_verify,
112	.verify_write = xfs_inode_buf_write_verify,
113};
114
115const struct xfs_buf_ops xfs_inode_buf_ra_ops = {
116	.name = "xfs_inode_ra",
117	.magic16 = { cpu_to_be16(XFS_DINODE_MAGIC),
118		     cpu_to_be16(XFS_DINODE_MAGIC) },
119	.verify_read = xfs_inode_buf_readahead_verify,
120	.verify_write = xfs_inode_buf_write_verify,
121};
122
123
124/*
125 * This routine is called to map an inode to the buffer containing the on-disk
126 * version of the inode.  It returns a pointer to the buffer containing the
127 * on-disk inode in the bpp parameter.
 
 
 
 
128 */
129int
130xfs_imap_to_bp(
131	struct xfs_mount	*mp,
132	struct xfs_trans	*tp,
133	struct xfs_imap		*imap,
134	struct xfs_buf		**bpp)
 
 
 
135{
 
136	int			error;
137
 
138	error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, imap->im_blkno,
139			imap->im_len, XBF_UNMAPPED, bpp, &xfs_inode_buf_ops);
140	if (xfs_metadata_is_sick(error))
141		xfs_agno_mark_sick(mp, xfs_daddr_to_agno(mp, imap->im_blkno),
142				XFS_SICK_AG_INODES);
143	return error;
144}
 
145
146static inline struct timespec64 xfs_inode_decode_bigtime(uint64_t ts)
147{
148	struct timespec64	tv;
149	uint32_t		n;
150
151	tv.tv_sec = xfs_bigtime_to_unix(div_u64_rem(ts, NSEC_PER_SEC, &n));
152	tv.tv_nsec = n;
 
 
153
154	return tv;
 
 
155}
156
157/* Convert an ondisk timestamp to an incore timestamp. */
158struct timespec64
159xfs_inode_from_disk_ts(
160	struct xfs_dinode		*dip,
161	const xfs_timestamp_t		ts)
162{
163	struct timespec64		tv;
164	struct xfs_legacy_timestamp	*lts;
165
166	if (xfs_dinode_has_bigtime(dip))
167		return xfs_inode_decode_bigtime(be64_to_cpu(ts));
168
169	lts = (struct xfs_legacy_timestamp *)&ts;
170	tv.tv_sec = (int)be32_to_cpu(lts->t_sec);
171	tv.tv_nsec = (int)be32_to_cpu(lts->t_nsec);
172
173	return tv;
174}
175
176int
177xfs_inode_from_disk(
178	struct xfs_inode	*ip,
179	struct xfs_dinode	*from)
180{
 
181	struct inode		*inode = VFS_I(ip);
182	int			error;
183	xfs_failaddr_t		fa;
184
185	ASSERT(ip->i_cowfp == NULL);
186
187	fa = xfs_dinode_verify(ip->i_mount, ip->i_ino, from);
188	if (fa) {
189		xfs_inode_verifier_error(ip, -EFSCORRUPTED, "dinode", from,
190				sizeof(*from), fa);
191		return -EFSCORRUPTED;
192	}
193
194	/*
195	 * First get the permanent information that is needed to allocate an
196	 * inode. If the inode is unused, mode is zero and we shouldn't mess
197	 * with the uninitialized part of it.
198	 */
199	if (!xfs_has_v3inodes(ip->i_mount))
200		ip->i_flushiter = be16_to_cpu(from->di_flushiter);
201	inode->i_generation = be32_to_cpu(from->di_gen);
202	inode->i_mode = be16_to_cpu(from->di_mode);
203	if (!inode->i_mode)
204		return 0;
205
206	/*
207	 * Convert v1 inodes immediately to v2 inode format as this is the
208	 * minimum inode version format we support in the rest of the code.
209	 * They will also be unconditionally written back to disk as v2 inodes.
210	 */
211	if (unlikely(from->di_version == 1)) {
 
212		set_nlink(inode, be16_to_cpu(from->di_onlink));
213		ip->i_projid = 0;
 
 
214	} else {
215		set_nlink(inode, be32_to_cpu(from->di_nlink));
216		ip->i_projid = (prid_t)be16_to_cpu(from->di_projid_hi) << 16 |
217					be16_to_cpu(from->di_projid_lo);
218	}
219
220	i_uid_write(inode, be32_to_cpu(from->di_uid));
221	i_gid_write(inode, be32_to_cpu(from->di_gid));
 
 
222
223	/*
224	 * Time is signed, so need to convert to signed 32 bit before
225	 * storing in inode timestamp which may be 64 bit. Otherwise
226	 * a time before epoch is converted to a time long after epoch
227	 * on 64 bit systems.
228	 */
229	inode_set_atime_to_ts(inode,
230			      xfs_inode_from_disk_ts(from, from->di_atime));
231	inode_set_mtime_to_ts(inode,
232			      xfs_inode_from_disk_ts(from, from->di_mtime));
233	inode_set_ctime_to_ts(inode,
234			      xfs_inode_from_disk_ts(from, from->di_ctime));
235
236	ip->i_disk_size = be64_to_cpu(from->di_size);
237	ip->i_nblocks = be64_to_cpu(from->di_nblocks);
238	ip->i_extsize = be32_to_cpu(from->di_extsize);
239	ip->i_forkoff = from->di_forkoff;
240	ip->i_diflags = be16_to_cpu(from->di_flags);
241	ip->i_next_unlinked = be32_to_cpu(from->di_next_unlinked);
242
243	if (from->di_dmevmask || from->di_dmstate)
244		xfs_iflags_set(ip, XFS_IPRESERVE_DM_FIELDS);
 
 
 
 
 
 
 
 
245
246	if (xfs_has_v3inodes(ip->i_mount)) {
247		inode_set_iversion_queried(inode,
248					   be64_to_cpu(from->di_changecount));
249		ip->i_crtime = xfs_inode_from_disk_ts(from, from->di_crtime);
250		ip->i_diflags2 = be64_to_cpu(from->di_flags2);
251		ip->i_cowextsize = be32_to_cpu(from->di_cowextsize);
252	}
253
254	error = xfs_iformat_data_fork(ip, from);
255	if (error)
256		return error;
257	if (from->di_forkoff) {
258		error = xfs_iformat_attr_fork(ip, from);
259		if (error)
260			goto out_destroy_data_fork;
261	}
262	if (xfs_is_reflink_inode(ip))
263		xfs_ifork_init_cow(ip);
264	return 0;
265
266out_destroy_data_fork:
267	xfs_idestroy_fork(&ip->i_df);
268	return error;
269}
270
271/* Convert an incore timestamp to an ondisk timestamp. */
272static inline xfs_timestamp_t
273xfs_inode_to_disk_ts(
274	struct xfs_inode		*ip,
275	const struct timespec64		tv)
276{
277	struct xfs_legacy_timestamp	*lts;
278	xfs_timestamp_t			ts;
279
280	if (xfs_inode_has_bigtime(ip))
281		return cpu_to_be64(xfs_inode_encode_bigtime(tv));
282
283	lts = (struct xfs_legacy_timestamp *)&ts;
284	lts->t_sec = cpu_to_be32(tv.tv_sec);
285	lts->t_nsec = cpu_to_be32(tv.tv_nsec);
286
287	return ts;
288}
289
290static inline void
291xfs_inode_to_disk_iext_counters(
292	struct xfs_inode	*ip,
293	struct xfs_dinode	*to)
294{
295	if (xfs_inode_has_large_extent_counts(ip)) {
296		to->di_big_nextents = cpu_to_be64(xfs_ifork_nextents(&ip->i_df));
297		to->di_big_anextents = cpu_to_be32(xfs_ifork_nextents(&ip->i_af));
298		/*
299		 * We might be upgrading the inode to use larger extent counters
300		 * than was previously used. Hence zero the unused field.
301		 */
302		to->di_nrext64_pad = cpu_to_be16(0);
303	} else {
304		to->di_nextents = cpu_to_be32(xfs_ifork_nextents(&ip->i_df));
305		to->di_anextents = cpu_to_be16(xfs_ifork_nextents(&ip->i_af));
306	}
307}
308
309void
310xfs_inode_to_disk(
311	struct xfs_inode	*ip,
312	struct xfs_dinode	*to,
313	xfs_lsn_t		lsn)
314{
 
315	struct inode		*inode = VFS_I(ip);
316
317	to->di_magic = cpu_to_be16(XFS_DINODE_MAGIC);
318	to->di_onlink = 0;
319
320	to->di_format = xfs_ifork_format(&ip->i_df);
321	to->di_uid = cpu_to_be32(i_uid_read(inode));
322	to->di_gid = cpu_to_be32(i_gid_read(inode));
323	to->di_projid_lo = cpu_to_be16(ip->i_projid & 0xffff);
324	to->di_projid_hi = cpu_to_be16(ip->i_projid >> 16);
325
326	to->di_atime = xfs_inode_to_disk_ts(ip, inode_get_atime(inode));
327	to->di_mtime = xfs_inode_to_disk_ts(ip, inode_get_mtime(inode));
328	to->di_ctime = xfs_inode_to_disk_ts(ip, inode_get_ctime(inode));
 
 
 
 
 
329	to->di_nlink = cpu_to_be32(inode->i_nlink);
330	to->di_gen = cpu_to_be32(inode->i_generation);
331	to->di_mode = cpu_to_be16(inode->i_mode);
332
333	to->di_size = cpu_to_be64(ip->i_disk_size);
334	to->di_nblocks = cpu_to_be64(ip->i_nblocks);
335	to->di_extsize = cpu_to_be32(ip->i_extsize);
336	to->di_forkoff = ip->i_forkoff;
337	to->di_aformat = xfs_ifork_format(&ip->i_af);
338	to->di_flags = cpu_to_be16(ip->i_diflags);
 
 
 
 
339
340	if (xfs_has_v3inodes(ip->i_mount)) {
341		to->di_version = 3;
342		to->di_changecount = cpu_to_be64(inode_peek_iversion(inode));
343		to->di_crtime = xfs_inode_to_disk_ts(ip, ip->i_crtime);
344		to->di_flags2 = cpu_to_be64(ip->i_diflags2);
345		to->di_cowextsize = cpu_to_be32(ip->i_cowextsize);
 
346		to->di_ino = cpu_to_be64(ip->i_ino);
347		to->di_lsn = cpu_to_be64(lsn);
348		memset(to->di_pad2, 0, sizeof(to->di_pad2));
349		uuid_copy(&to->di_uuid, &ip->i_mount->m_sb.sb_meta_uuid);
350		to->di_v3_pad = 0;
351	} else {
352		to->di_version = 2;
353		to->di_flushiter = cpu_to_be16(ip->i_flushiter);
354		memset(to->di_v2_pad, 0, sizeof(to->di_v2_pad));
355	}
356
357	xfs_inode_to_disk_iext_counters(ip, to);
358}
359
360static xfs_failaddr_t
361xfs_dinode_verify_fork(
362	struct xfs_dinode	*dip,
363	struct xfs_mount	*mp,
364	int			whichfork)
365{
366	xfs_extnum_t		di_nextents;
367	xfs_extnum_t		max_extents;
368	mode_t			mode = be16_to_cpu(dip->di_mode);
369	uint32_t		fork_size = XFS_DFORK_SIZE(dip, mp, whichfork);
370	uint32_t		fork_format = XFS_DFORK_FORMAT(dip, whichfork);
371
372	di_nextents = xfs_dfork_nextents(dip, whichfork);
373
374	/*
375	 * For fork types that can contain local data, check that the fork
376	 * format matches the size of local data contained within the fork.
377	 *
378	 * For all types, check that when the size says the should be in extent
379	 * or btree format, the inode isn't claiming it is in local format.
380	 */
381	if (whichfork == XFS_DATA_FORK) {
382		if (S_ISDIR(mode) || S_ISLNK(mode)) {
383			if (be64_to_cpu(dip->di_size) <= fork_size &&
384			    fork_format != XFS_DINODE_FMT_LOCAL)
385				return __this_address;
386		}
387
388		if (be64_to_cpu(dip->di_size) > fork_size &&
389		    fork_format == XFS_DINODE_FMT_LOCAL)
390			return __this_address;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
391	}
392
393	switch (fork_format) {
394	case XFS_DINODE_FMT_LOCAL:
395		/*
396		 * No local regular files yet.
397		 */
398		if (S_ISREG(mode) && whichfork == XFS_DATA_FORK)
399			return __this_address;
400		if (di_nextents)
401			return __this_address;
402		break;
403	case XFS_DINODE_FMT_EXTENTS:
404		if (di_nextents > XFS_DFORK_MAXEXT(dip, mp, whichfork))
405			return __this_address;
406		break;
407	case XFS_DINODE_FMT_BTREE:
408		max_extents = xfs_iext_max_nextents(
409					xfs_dinode_has_large_extent_counts(dip),
410					whichfork);
411		if (di_nextents > max_extents)
412			return __this_address;
413		break;
414	default:
415		return __this_address;
416	}
417	return NULL;
418}
419
420static xfs_failaddr_t
421xfs_dinode_verify_forkoff(
422	struct xfs_dinode	*dip,
423	struct xfs_mount	*mp)
424{
425	if (!dip->di_forkoff)
426		return NULL;
427
428	switch (dip->di_format)  {
429	case XFS_DINODE_FMT_DEV:
430		if (dip->di_forkoff != (roundup(sizeof(xfs_dev_t), 8) >> 3))
431			return __this_address;
432		break;
433	case XFS_DINODE_FMT_LOCAL:	/* fall through ... */
434	case XFS_DINODE_FMT_EXTENTS:    /* fall through ... */
435	case XFS_DINODE_FMT_BTREE:
436		if (dip->di_forkoff >= (XFS_LITINO(mp) >> 3))
437			return __this_address;
438		break;
439	default:
440		return __this_address;
441	}
442	return NULL;
443}
444
445static xfs_failaddr_t
446xfs_dinode_verify_nrext64(
447	struct xfs_mount	*mp,
448	struct xfs_dinode	*dip)
449{
450	if (xfs_dinode_has_large_extent_counts(dip)) {
451		if (!xfs_has_large_extent_counts(mp))
452			return __this_address;
453		if (dip->di_nrext64_pad != 0)
454			return __this_address;
455	} else if (dip->di_version >= 3) {
456		if (dip->di_v3_pad != 0)
457			return __this_address;
458	}
459
460	return NULL;
461}
462
463xfs_failaddr_t
464xfs_dinode_verify(
465	struct xfs_mount	*mp,
466	xfs_ino_t		ino,
467	struct xfs_dinode	*dip)
468{
469	xfs_failaddr_t		fa;
470	uint16_t		mode;
471	uint16_t		flags;
472	uint64_t		flags2;
473	uint64_t		di_size;
474	xfs_extnum_t		nextents;
475	xfs_extnum_t		naextents;
476	xfs_filblks_t		nblocks;
477
478	if (dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC))
479		return __this_address;
480
481	/* Verify v3 integrity information first */
482	if (dip->di_version >= 3) {
483		if (!xfs_has_v3inodes(mp))
484			return __this_address;
485		if (!xfs_verify_cksum((char *)dip, mp->m_sb.sb_inodesize,
486				      XFS_DINODE_CRC_OFF))
487			return __this_address;
488		if (be64_to_cpu(dip->di_ino) != ino)
489			return __this_address;
490		if (!uuid_equal(&dip->di_uuid, &mp->m_sb.sb_meta_uuid))
491			return __this_address;
492	}
493
494	/* don't allow invalid i_size */
495	di_size = be64_to_cpu(dip->di_size);
496	if (di_size & (1ULL << 63))
497		return __this_address;
498
499	mode = be16_to_cpu(dip->di_mode);
500	if (mode && xfs_mode_to_ftype(mode) == XFS_DIR3_FT_UNKNOWN)
501		return __this_address;
502
503	/* No zero-length symlinks/dirs. */
504	if ((S_ISLNK(mode) || S_ISDIR(mode)) && di_size == 0)
505		return __this_address;
506
507	fa = xfs_dinode_verify_nrext64(mp, dip);
508	if (fa)
509		return fa;
510
511	nextents = xfs_dfork_data_extents(dip);
512	naextents = xfs_dfork_attr_extents(dip);
513	nblocks = be64_to_cpu(dip->di_nblocks);
514
515	/* Fork checks carried over from xfs_iformat_fork */
516	if (mode && nextents + naextents > nblocks)
517		return __this_address;
518
519	if (nextents + naextents == 0 && nblocks != 0)
520		return __this_address;
521
522	if (S_ISDIR(mode) && nextents > mp->m_dir_geo->max_extents)
523		return __this_address;
524
525	if (mode && XFS_DFORK_BOFF(dip) > mp->m_sb.sb_inodesize)
526		return __this_address;
527
528	flags = be16_to_cpu(dip->di_flags);
529
530	if (mode && (flags & XFS_DIFLAG_REALTIME) && !mp->m_rtdev_targp)
531		return __this_address;
532
533	/* check for illegal values of forkoff */
534	fa = xfs_dinode_verify_forkoff(dip, mp);
535	if (fa)
536		return fa;
537
538	/* Do we have appropriate data fork formats for the mode? */
539	switch (mode & S_IFMT) {
540	case S_IFIFO:
541	case S_IFCHR:
542	case S_IFBLK:
543	case S_IFSOCK:
544		if (dip->di_format != XFS_DINODE_FMT_DEV)
545			return __this_address;
546		break;
547	case S_IFREG:
548	case S_IFLNK:
549	case S_IFDIR:
550		fa = xfs_dinode_verify_fork(dip, mp, XFS_DATA_FORK);
551		if (fa)
552			return fa;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553		break;
554	case 0:
555		/* Uninitialized inode ok. */
556		break;
557	default:
558		return __this_address;
559	}
560
561	if (dip->di_forkoff) {
562		fa = xfs_dinode_verify_fork(dip, mp, XFS_ATTR_FORK);
563		if (fa)
564			return fa;
 
 
 
 
 
 
 
 
565	} else {
566		/*
567		 * If there is no fork offset, this may be a freshly-made inode
568		 * in a new disk cluster, in which case di_aformat is zeroed.
569		 * Otherwise, such an inode must be in EXTENTS format; this goes
570		 * for freed inodes as well.
571		 */
572		switch (dip->di_aformat) {
573		case 0:
574		case XFS_DINODE_FMT_EXTENTS:
575			break;
576		default:
577			return __this_address;
578		}
579		if (naextents)
580			return __this_address;
581	}
582
583	/* extent size hint validation */
584	fa = xfs_inode_validate_extsize(mp, be32_to_cpu(dip->di_extsize),
585			mode, flags);
586	if (fa)
587		return fa;
588
589	/* only version 3 or greater inodes are extensively verified here */
590	if (dip->di_version < 3)
591		return NULL;
592
593	flags2 = be64_to_cpu(dip->di_flags2);
594
595	/* don't allow reflink/cowextsize if we don't have reflink */
596	if ((flags2 & (XFS_DIFLAG2_REFLINK | XFS_DIFLAG2_COWEXTSIZE)) &&
597	     !xfs_has_reflink(mp))
598		return __this_address;
599
600	/* only regular files get reflink */
601	if ((flags2 & XFS_DIFLAG2_REFLINK) && (mode & S_IFMT) != S_IFREG)
602		return __this_address;
603
604	/* don't let reflink and realtime mix */
605	if ((flags2 & XFS_DIFLAG2_REFLINK) && (flags & XFS_DIFLAG_REALTIME))
606		return __this_address;
607
608	/* COW extent size hint validation */
609	fa = xfs_inode_validate_cowextsize(mp, be32_to_cpu(dip->di_cowextsize),
610			mode, flags, flags2);
611	if (fa)
612		return fa;
613
614	/* bigtime iflag can only happen on bigtime filesystems */
615	if (xfs_dinode_has_bigtime(dip) &&
616	    !xfs_has_bigtime(mp))
617		return __this_address;
618
619	return NULL;
620}
621
622void
623xfs_dinode_calc_crc(
624	struct xfs_mount	*mp,
625	struct xfs_dinode	*dip)
626{
627	uint32_t		crc;
628
629	if (dip->di_version < 3)
630		return;
631
632	ASSERT(xfs_has_crc(mp));
633	crc = xfs_start_cksum_update((char *)dip, mp->m_sb.sb_inodesize,
634			      XFS_DINODE_CRC_OFF);
635	dip->di_crc = xfs_end_cksum(crc);
636}
637
638/*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
639 * Validate di_extsize hint.
640 *
641 * 1. Extent size hint is only valid for directories and regular files.
642 * 2. FS_XFLAG_EXTSIZE is only valid for regular files.
643 * 3. FS_XFLAG_EXTSZINHERIT is only valid for directories.
644 * 4. Hint cannot be larger than MAXTEXTLEN.
645 * 5. Can be changed on directories at any time.
646 * 6. Hint value of 0 turns off hints, clears inode flags.
647 * 7. Extent size must be a multiple of the appropriate block size.
648 *    For realtime files, this is the rt extent size.
649 * 8. For non-realtime files, the extent size hint must be limited
650 *    to half the AG size to avoid alignment extending the extent beyond the
651 *    limits of the AG.
652 */
653xfs_failaddr_t
654xfs_inode_validate_extsize(
655	struct xfs_mount		*mp,
656	uint32_t			extsize,
657	uint16_t			mode,
658	uint16_t			flags)
659{
660	bool				rt_flag;
661	bool				hint_flag;
662	bool				inherit_flag;
663	uint32_t			extsize_bytes;
664	uint32_t			blocksize_bytes;
665
666	rt_flag = (flags & XFS_DIFLAG_REALTIME);
667	hint_flag = (flags & XFS_DIFLAG_EXTSIZE);
668	inherit_flag = (flags & XFS_DIFLAG_EXTSZINHERIT);
669	extsize_bytes = XFS_FSB_TO_B(mp, extsize);
670
671	/*
672	 * This comment describes a historic gap in this verifier function.
673	 *
674	 * For a directory with both RTINHERIT and EXTSZINHERIT flags set, this
675	 * function has never checked that the extent size hint is an integer
676	 * multiple of the realtime extent size.  Since we allow users to set
677	 * this combination  on non-rt filesystems /and/ to change the rt
678	 * extent size when adding a rt device to a filesystem, the net effect
679	 * is that users can configure a filesystem anticipating one rt
680	 * geometry and change their minds later.  Directories do not use the
681	 * extent size hint, so this is harmless for them.
682	 *
683	 * If a directory with a misaligned extent size hint is allowed to
684	 * propagate that hint into a new regular realtime file, the result
685	 * is that the inode cluster buffer verifier will trigger a corruption
686	 * shutdown the next time it is run, because the verifier has always
687	 * enforced the alignment rule for regular files.
688	 *
689	 * Because we allow administrators to set a new rt extent size when
690	 * adding a rt section, we cannot add a check to this verifier because
691	 * that will result a new source of directory corruption errors when
692	 * reading an existing filesystem.  Instead, we rely on callers to
693	 * decide when alignment checks are appropriate, and fix things up as
694	 * needed.
695	 */
696
697	if (rt_flag)
698		blocksize_bytes = XFS_FSB_TO_B(mp, mp->m_sb.sb_rextsize);
699	else
700		blocksize_bytes = mp->m_sb.sb_blocksize;
701
702	if ((hint_flag || inherit_flag) && !(S_ISDIR(mode) || S_ISREG(mode)))
703		return __this_address;
704
705	if (hint_flag && !S_ISREG(mode))
706		return __this_address;
707
708	if (inherit_flag && !S_ISDIR(mode))
709		return __this_address;
710
711	if ((hint_flag || inherit_flag) && extsize == 0)
712		return __this_address;
713
714	/* free inodes get flags set to zero but extsize remains */
715	if (mode && !(hint_flag || inherit_flag) && extsize != 0)
716		return __this_address;
717
718	if (extsize_bytes % blocksize_bytes)
719		return __this_address;
720
721	if (extsize > XFS_MAX_BMBT_EXTLEN)
722		return __this_address;
723
724	if (!rt_flag && extsize > mp->m_sb.sb_agblocks / 2)
725		return __this_address;
726
727	return NULL;
728}
729
730/*
731 * Validate di_cowextsize hint.
732 *
733 * 1. CoW extent size hint can only be set if reflink is enabled on the fs.
734 *    The inode does not have to have any shared blocks, but it must be a v3.
735 * 2. FS_XFLAG_COWEXTSIZE is only valid for directories and regular files;
736 *    for a directory, the hint is propagated to new files.
737 * 3. Can be changed on files & directories at any time.
738 * 4. Hint value of 0 turns off hints, clears inode flags.
739 * 5. Extent size must be a multiple of the appropriate block size.
740 * 6. The extent size hint must be limited to half the AG size to avoid
741 *    alignment extending the extent beyond the limits of the AG.
742 */
743xfs_failaddr_t
744xfs_inode_validate_cowextsize(
745	struct xfs_mount		*mp,
746	uint32_t			cowextsize,
747	uint16_t			mode,
748	uint16_t			flags,
749	uint64_t			flags2)
750{
751	bool				rt_flag;
752	bool				hint_flag;
753	uint32_t			cowextsize_bytes;
754
755	rt_flag = (flags & XFS_DIFLAG_REALTIME);
756	hint_flag = (flags2 & XFS_DIFLAG2_COWEXTSIZE);
757	cowextsize_bytes = XFS_FSB_TO_B(mp, cowextsize);
758
759	if (hint_flag && !xfs_has_reflink(mp))
760		return __this_address;
761
762	if (hint_flag && !(S_ISDIR(mode) || S_ISREG(mode)))
763		return __this_address;
764
765	if (hint_flag && cowextsize == 0)
766		return __this_address;
767
768	/* free inodes get flags set to zero but cowextsize remains */
769	if (mode && !hint_flag && cowextsize != 0)
770		return __this_address;
771
772	if (hint_flag && rt_flag)
773		return __this_address;
774
775	if (cowextsize_bytes % mp->m_sb.sb_blocksize)
776		return __this_address;
777
778	if (cowextsize > XFS_MAX_BMBT_EXTLEN)
779		return __this_address;
780
781	if (cowextsize > mp->m_sb.sb_agblocks / 2)
782		return __this_address;
783
784	return NULL;
785}