]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - libxfs/xfs_inode_buf.c
xfs: fix transaction leak on remote attr set/remove failure
[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 static xfs_failaddr_t
374 xfs_dinode_verify_fork(
375 struct xfs_dinode *dip,
376 struct xfs_mount *mp,
377 int whichfork)
378 {
379 uint32_t di_nextents = XFS_DFORK_NEXTENTS(dip, whichfork);
380
381 switch (XFS_DFORK_FORMAT(dip, whichfork)) {
382 case XFS_DINODE_FMT_LOCAL:
383 /*
384 * no local regular files yet
385 */
386 if (whichfork == XFS_DATA_FORK) {
387 if (S_ISREG(be16_to_cpu(dip->di_mode)))
388 return __this_address;
389 if (be64_to_cpu(dip->di_size) >
390 XFS_DFORK_SIZE(dip, mp, whichfork))
391 return __this_address;
392 }
393 if (di_nextents)
394 return __this_address;
395 break;
396 case XFS_DINODE_FMT_EXTENTS:
397 if (di_nextents > XFS_DFORK_MAXEXT(dip, mp, whichfork))
398 return __this_address;
399 break;
400 case XFS_DINODE_FMT_BTREE:
401 if (whichfork == XFS_ATTR_FORK) {
402 if (di_nextents > MAXAEXTNUM)
403 return __this_address;
404 } else if (di_nextents > MAXEXTNUM) {
405 return __this_address;
406 }
407 break;
408 default:
409 return __this_address;
410 }
411 return NULL;
412 }
413
414 xfs_failaddr_t
415 xfs_dinode_verify(
416 struct xfs_mount *mp,
417 xfs_ino_t ino,
418 struct xfs_dinode *dip)
419 {
420 xfs_failaddr_t fa;
421 uint16_t mode;
422 uint16_t flags;
423 uint64_t flags2;
424 uint64_t di_size;
425
426 if (dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC))
427 return __this_address;
428
429 /* Verify v3 integrity information first */
430 if (dip->di_version >= 3) {
431 if (!xfs_sb_version_hascrc(&mp->m_sb))
432 return __this_address;
433 if (!xfs_verify_cksum((char *)dip, mp->m_sb.sb_inodesize,
434 XFS_DINODE_CRC_OFF))
435 return __this_address;
436 if (be64_to_cpu(dip->di_ino) != ino)
437 return __this_address;
438 if (!uuid_equal(&dip->di_uuid, &mp->m_sb.sb_meta_uuid))
439 return __this_address;
440 }
441
442 /* don't allow invalid i_size */
443 di_size = be64_to_cpu(dip->di_size);
444 if (di_size & (1ULL << 63))
445 return __this_address;
446
447 mode = be16_to_cpu(dip->di_mode);
448 if (mode && xfs_mode_to_ftype(mode) == XFS_DIR3_FT_UNKNOWN)
449 return __this_address;
450
451 /* No zero-length symlinks/dirs. */
452 if ((S_ISLNK(mode) || S_ISDIR(mode)) && di_size == 0)
453 return __this_address;
454
455 /* Fork checks carried over from xfs_iformat_fork */
456 if (mode &&
457 be32_to_cpu(dip->di_nextents) + be16_to_cpu(dip->di_anextents) >
458 be64_to_cpu(dip->di_nblocks))
459 return __this_address;
460
461 if (mode && XFS_DFORK_BOFF(dip) > mp->m_sb.sb_inodesize)
462 return __this_address;
463
464 flags = be16_to_cpu(dip->di_flags);
465
466 if (mode && (flags & XFS_DIFLAG_REALTIME) && !mp->m_rtdev_targp)
467 return __this_address;
468
469 /* Do we have appropriate data fork formats for the mode? */
470 switch (mode & S_IFMT) {
471 case S_IFIFO:
472 case S_IFCHR:
473 case S_IFBLK:
474 case S_IFSOCK:
475 if (dip->di_format != XFS_DINODE_FMT_DEV)
476 return __this_address;
477 break;
478 case S_IFREG:
479 case S_IFLNK:
480 case S_IFDIR:
481 fa = xfs_dinode_verify_fork(dip, mp, XFS_DATA_FORK);
482 if (fa)
483 return fa;
484 break;
485 case 0:
486 /* Uninitialized inode ok. */
487 break;
488 default:
489 return __this_address;
490 }
491
492 if (XFS_DFORK_Q(dip)) {
493 fa = xfs_dinode_verify_fork(dip, mp, XFS_ATTR_FORK);
494 if (fa)
495 return fa;
496 } else {
497 /*
498 * If there is no fork offset, this may be a freshly-made inode
499 * in a new disk cluster, in which case di_aformat is zeroed.
500 * Otherwise, such an inode must be in EXTENTS format; this goes
501 * for freed inodes as well.
502 */
503 switch (dip->di_aformat) {
504 case 0:
505 case XFS_DINODE_FMT_EXTENTS:
506 break;
507 default:
508 return __this_address;
509 }
510 if (dip->di_anextents)
511 return __this_address;
512 }
513
514 /* extent size hint validation */
515 fa = xfs_inode_validate_extsize(mp, be32_to_cpu(dip->di_extsize),
516 mode, flags);
517 if (fa)
518 return fa;
519
520 /* only version 3 or greater inodes are extensively verified here */
521 if (dip->di_version < 3)
522 return NULL;
523
524 flags2 = be64_to_cpu(dip->di_flags2);
525
526 /* don't allow reflink/cowextsize if we don't have reflink */
527 if ((flags2 & (XFS_DIFLAG2_REFLINK | XFS_DIFLAG2_COWEXTSIZE)) &&
528 !xfs_sb_version_hasreflink(&mp->m_sb))
529 return __this_address;
530
531 /* only regular files get reflink */
532 if ((flags2 & XFS_DIFLAG2_REFLINK) && (mode & S_IFMT) != S_IFREG)
533 return __this_address;
534
535 /* don't let reflink and realtime mix */
536 if ((flags2 & XFS_DIFLAG2_REFLINK) && (flags & XFS_DIFLAG_REALTIME))
537 return __this_address;
538
539 /* don't let reflink and dax mix */
540 if ((flags2 & XFS_DIFLAG2_REFLINK) && (flags2 & XFS_DIFLAG2_DAX))
541 return __this_address;
542
543 /* COW extent size hint validation */
544 fa = xfs_inode_validate_cowextsize(mp, be32_to_cpu(dip->di_cowextsize),
545 mode, flags, flags2);
546 if (fa)
547 return fa;
548
549 return NULL;
550 }
551
552 void
553 xfs_dinode_calc_crc(
554 struct xfs_mount *mp,
555 struct xfs_dinode *dip)
556 {
557 uint32_t crc;
558
559 if (dip->di_version < 3)
560 return;
561
562 ASSERT(xfs_sb_version_hascrc(&mp->m_sb));
563 crc = xfs_start_cksum_update((char *)dip, mp->m_sb.sb_inodesize,
564 XFS_DINODE_CRC_OFF);
565 dip->di_crc = xfs_end_cksum(crc);
566 }
567
568 /*
569 * Read the disk inode attributes into the in-core inode structure.
570 *
571 * For version 5 superblocks, if we are initialising a new inode and we are not
572 * utilising the XFS_MOUNT_IKEEP inode cluster mode, we can simple build the new
573 * inode core with a random generation number. If we are keeping inodes around,
574 * we need to read the inode cluster to get the existing generation number off
575 * disk. Further, if we are using version 4 superblocks (i.e. v1/v2 inode
576 * format) then log recovery is dependent on the di_flushiter field being
577 * initialised from the current on-disk value and hence we must also read the
578 * inode off disk.
579 */
580 int
581 xfs_iread(
582 xfs_mount_t *mp,
583 xfs_trans_t *tp,
584 xfs_inode_t *ip,
585 uint iget_flags)
586 {
587 xfs_buf_t *bp;
588 xfs_dinode_t *dip;
589 xfs_failaddr_t fa;
590 int error;
591
592 /*
593 * Fill in the location information in the in-core inode.
594 */
595 error = xfs_imap(mp, tp, ip->i_ino, &ip->i_imap, iget_flags);
596 if (error)
597 return error;
598
599 /* shortcut IO on inode allocation if possible */
600 if ((iget_flags & XFS_IGET_CREATE) &&
601 xfs_sb_version_hascrc(&mp->m_sb) &&
602 !(mp->m_flags & XFS_MOUNT_IKEEP)) {
603 /* initialise the on-disk inode core */
604 memset(&ip->i_d, 0, sizeof(ip->i_d));
605 VFS_I(ip)->i_generation = prandom_u32();
606 ip->i_d.di_version = 3;
607 return 0;
608 }
609
610 /*
611 * Get pointers to the on-disk inode and the buffer containing it.
612 */
613 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &bp, 0, iget_flags);
614 if (error)
615 return error;
616
617 /* even unallocated inodes are verified */
618 fa = xfs_dinode_verify(mp, ip->i_ino, dip);
619 if (fa) {
620 xfs_inode_verifier_error(ip, -EFSCORRUPTED, "dinode", dip,
621 sizeof(*dip), fa);
622 error = -EFSCORRUPTED;
623 goto out_brelse;
624 }
625
626 /*
627 * If the on-disk inode is already linked to a directory
628 * entry, copy all of the inode into the in-core inode.
629 * xfs_iformat_fork() handles copying in the inode format
630 * specific information.
631 * Otherwise, just get the truly permanent information.
632 */
633 if (dip->di_mode) {
634 xfs_inode_from_disk(ip, dip);
635 error = xfs_iformat_fork(ip, dip);
636 if (error) {
637 #ifdef DEBUG
638 xfs_alert(mp, "%s: xfs_iformat() returned error %d",
639 __func__, error);
640 #endif /* DEBUG */
641 goto out_brelse;
642 }
643 } else {
644 /*
645 * Partial initialisation of the in-core inode. Just the bits
646 * that xfs_ialloc won't overwrite or relies on being correct.
647 */
648 ip->i_d.di_version = dip->di_version;
649 VFS_I(ip)->i_generation = be32_to_cpu(dip->di_gen);
650 ip->i_d.di_flushiter = be16_to_cpu(dip->di_flushiter);
651
652 /*
653 * Make sure to pull in the mode here as well in
654 * case the inode is released without being used.
655 * This ensures that xfs_inactive() will see that
656 * the inode is already free and not try to mess
657 * with the uninitialized part of it.
658 */
659 VFS_I(ip)->i_mode = 0;
660 }
661
662 ASSERT(ip->i_d.di_version >= 2);
663 ip->i_delayed_blks = 0;
664
665 /*
666 * Mark the buffer containing the inode as something to keep
667 * around for a while. This helps to keep recently accessed
668 * meta-data in-core longer.
669 */
670 xfs_buf_set_ref(bp, XFS_INO_REF);
671
672 /*
673 * Use xfs_trans_brelse() to release the buffer containing the on-disk
674 * inode, because it was acquired with xfs_trans_read_buf() in
675 * xfs_imap_to_bp() above. If tp is NULL, this is just a normal
676 * brelse(). If we're within a transaction, then xfs_trans_brelse()
677 * will only release the buffer if it is not dirty within the
678 * transaction. It will be OK to release the buffer in this case,
679 * because inodes on disk are never destroyed and we will be locking the
680 * new in-core inode before putting it in the cache where other
681 * processes can find it. Thus we don't have to worry about the inode
682 * being changed just because we released the buffer.
683 */
684 out_brelse:
685 xfs_trans_brelse(tp, bp);
686 return error;
687 }
688
689 /*
690 * Validate di_extsize hint.
691 *
692 * The rules are documented at xfs_ioctl_setattr_check_extsize().
693 * These functions must be kept in sync with each other.
694 */
695 xfs_failaddr_t
696 xfs_inode_validate_extsize(
697 struct xfs_mount *mp,
698 uint32_t extsize,
699 uint16_t mode,
700 uint16_t flags)
701 {
702 bool rt_flag;
703 bool hint_flag;
704 bool inherit_flag;
705 uint32_t extsize_bytes;
706 uint32_t blocksize_bytes;
707
708 rt_flag = (flags & XFS_DIFLAG_REALTIME);
709 hint_flag = (flags & XFS_DIFLAG_EXTSIZE);
710 inherit_flag = (flags & XFS_DIFLAG_EXTSZINHERIT);
711 extsize_bytes = XFS_FSB_TO_B(mp, extsize);
712
713 if (rt_flag)
714 blocksize_bytes = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
715 else
716 blocksize_bytes = mp->m_sb.sb_blocksize;
717
718 if ((hint_flag || inherit_flag) && !(S_ISDIR(mode) || S_ISREG(mode)))
719 return __this_address;
720
721 if (hint_flag && !S_ISREG(mode))
722 return __this_address;
723
724 if (inherit_flag && !S_ISDIR(mode))
725 return __this_address;
726
727 if ((hint_flag || inherit_flag) && extsize == 0)
728 return __this_address;
729
730 /* free inodes get flags set to zero but extsize remains */
731 if (mode && !(hint_flag || inherit_flag) && extsize != 0)
732 return __this_address;
733
734 if (extsize_bytes % blocksize_bytes)
735 return __this_address;
736
737 if (extsize > MAXEXTLEN)
738 return __this_address;
739
740 if (!rt_flag && extsize > mp->m_sb.sb_agblocks / 2)
741 return __this_address;
742
743 return NULL;
744 }
745
746 /*
747 * Validate di_cowextsize hint.
748 *
749 * The rules are documented at xfs_ioctl_setattr_check_cowextsize().
750 * These functions must be kept in sync with each other.
751 */
752 xfs_failaddr_t
753 xfs_inode_validate_cowextsize(
754 struct xfs_mount *mp,
755 uint32_t cowextsize,
756 uint16_t mode,
757 uint16_t flags,
758 uint64_t flags2)
759 {
760 bool rt_flag;
761 bool hint_flag;
762 uint32_t cowextsize_bytes;
763
764 rt_flag = (flags & XFS_DIFLAG_REALTIME);
765 hint_flag = (flags2 & XFS_DIFLAG2_COWEXTSIZE);
766 cowextsize_bytes = XFS_FSB_TO_B(mp, cowextsize);
767
768 if (hint_flag && !xfs_sb_version_hasreflink(&mp->m_sb))
769 return __this_address;
770
771 if (hint_flag && !(S_ISDIR(mode) || S_ISREG(mode)))
772 return __this_address;
773
774 if (hint_flag && cowextsize == 0)
775 return __this_address;
776
777 /* free inodes get flags set to zero but cowextsize remains */
778 if (mode && !hint_flag && cowextsize != 0)
779 return __this_address;
780
781 if (hint_flag && rt_flag)
782 return __this_address;
783
784 if (cowextsize_bytes % mp->m_sb.sb_blocksize)
785 return __this_address;
786
787 if (cowextsize > MAXEXTLEN)
788 return __this_address;
789
790 if (cowextsize > mp->m_sb.sb_agblocks / 2)
791 return __this_address;
792
793 return NULL;
794 }