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