Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 3 | * Copyright (c) 2000-2006 Silicon Graphics, Inc. |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 4 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
Jeff Layton | f0e2828 | 2017-12-11 06:35:19 -0500 | [diff] [blame] | 6 | #include <linux/iversion.h> |
Robert P. J. Day | 40ebd81 | 2007-11-23 16:30:51 +1100 | [diff] [blame] | 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include "xfs.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 9 | #include "xfs_fs.h" |
Dave Chinner | 70a9883 | 2013-10-23 10:36:05 +1100 | [diff] [blame] | 10 | #include "xfs_shared.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 11 | #include "xfs_format.h" |
| 12 | #include "xfs_log_format.h" |
| 13 | #include "xfs_trans_resv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include "xfs_mount.h" |
Darrick J. Wong | 3ab78df | 2016-08-03 11:15:38 +1000 | [diff] [blame] | 15 | #include "xfs_defer.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 16 | #include "xfs_inode.h" |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 17 | #include "xfs_dir2.h" |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 18 | #include "xfs_attr.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 19 | #include "xfs_trans_space.h" |
| 20 | #include "xfs_trans.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include "xfs_buf_item.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 22 | #include "xfs_inode_item.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 23 | #include "xfs_ialloc.h" |
| 24 | #include "xfs_bmap.h" |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 25 | #include "xfs_bmap_util.h" |
Darrick J. Wong | e9e899a | 2017-10-31 12:04:49 -0700 | [diff] [blame] | 26 | #include "xfs_errortag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include "xfs_error.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include "xfs_quota.h" |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 29 | #include "xfs_filestream.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 30 | #include "xfs_trace.h" |
Dave Chinner | 33479e0 | 2012-10-08 21:56:11 +1100 | [diff] [blame] | 31 | #include "xfs_icache.h" |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 32 | #include "xfs_symlink.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 33 | #include "xfs_trans_priv.h" |
| 34 | #include "xfs_log.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 35 | #include "xfs_bmap_btree.h" |
Darrick J. Wong | aa8968f | 2016-10-03 09:11:38 -0700 | [diff] [blame] | 36 | #include "xfs_reflink.h" |
Dave Chinner | 9bbafc71 | 2021-06-02 10:48:24 +1000 | [diff] [blame] | 37 | #include "xfs_ag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Darrick J. Wong | 182696f | 2021-10-12 11:09:23 -0700 | [diff] [blame] | 39 | struct kmem_cache *xfs_inode_cache; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | /* |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 42 | * Used in xfs_itruncate_extents(). This is the maximum number of extents |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | * freed from a file in a single transaction. |
| 44 | */ |
| 45 | #define XFS_ITRUNC_MAX_EXTENTS 2 |
| 46 | |
Dave Chinner | 54d7b5c | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 47 | STATIC int xfs_iunlink(struct xfs_trans *, struct xfs_inode *); |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 48 | STATIC int xfs_iunlink_remove(struct xfs_trans *tp, struct xfs_perag *pag, |
| 49 | struct xfs_inode *); |
Zhi Yong Wu | ab29743 | 2013-12-18 08:22:41 +0800 | [diff] [blame] | 50 | |
Dave Chinner | 2a0ec1d | 2012-04-23 15:59:02 +1000 | [diff] [blame] | 51 | /* |
| 52 | * helper function to extract extent size hint from inode |
| 53 | */ |
| 54 | xfs_extlen_t |
| 55 | xfs_get_extsz_hint( |
| 56 | struct xfs_inode *ip) |
| 57 | { |
Christoph Hellwig | bdb2ed2 | 2019-10-14 10:07:21 -0700 | [diff] [blame] | 58 | /* |
| 59 | * No point in aligning allocations if we need to COW to actually |
| 60 | * write to them. |
| 61 | */ |
| 62 | if (xfs_is_always_cow_inode(ip)) |
| 63 | return 0; |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 64 | if ((ip->i_diflags & XFS_DIFLAG_EXTSIZE) && ip->i_extsize) |
Christoph Hellwig | 031474c | 2021-03-29 11:11:41 -0700 | [diff] [blame] | 65 | return ip->i_extsize; |
Dave Chinner | 2a0ec1d | 2012-04-23 15:59:02 +1000 | [diff] [blame] | 66 | if (XFS_IS_REALTIME_INODE(ip)) |
| 67 | return ip->i_mount->m_sb.sb_rextsize; |
| 68 | return 0; |
| 69 | } |
| 70 | |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 71 | /* |
Darrick J. Wong | f7ca352 | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 72 | * Helper function to extract CoW extent size hint from inode. |
| 73 | * Between the extent size hint and the CoW extent size hint, we |
Darrick J. Wong | e153aa7 | 2016-10-03 09:11:49 -0700 | [diff] [blame] | 74 | * return the greater of the two. If the value is zero (automatic), |
| 75 | * use the default size. |
Darrick J. Wong | f7ca352 | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 76 | */ |
| 77 | xfs_extlen_t |
| 78 | xfs_get_cowextsz_hint( |
| 79 | struct xfs_inode *ip) |
| 80 | { |
| 81 | xfs_extlen_t a, b; |
| 82 | |
| 83 | a = 0; |
Christoph Hellwig | 3e09ab8 | 2021-03-29 11:11:45 -0700 | [diff] [blame] | 84 | if (ip->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE) |
Christoph Hellwig | b33ce57 | 2021-03-29 11:11:42 -0700 | [diff] [blame] | 85 | a = ip->i_cowextsize; |
Darrick J. Wong | f7ca352 | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 86 | b = xfs_get_extsz_hint(ip); |
| 87 | |
Darrick J. Wong | e153aa7 | 2016-10-03 09:11:49 -0700 | [diff] [blame] | 88 | a = max(a, b); |
| 89 | if (a == 0) |
| 90 | return XFS_DEFAULT_COWEXTSZ_HINT; |
| 91 | return a; |
Darrick J. Wong | f7ca352 | 2016-10-03 09:11:43 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | /* |
Christoph Hellwig | efa70be | 2013-12-18 02:14:39 -0800 | [diff] [blame] | 95 | * These two are wrapper routines around the xfs_ilock() routine used to |
| 96 | * centralize some grungy code. They are used in places that wish to lock the |
| 97 | * inode solely for reading the extents. The reason these places can't just |
| 98 | * call xfs_ilock(ip, XFS_ILOCK_SHARED) is that the inode lock also guards to |
| 99 | * bringing in of the extents from disk for a file in b-tree format. If the |
| 100 | * inode is in b-tree format, then we need to lock the inode exclusively until |
| 101 | * the extents are read in. Locking it exclusively all the time would limit |
| 102 | * our parallelism unnecessarily, though. What we do instead is check to see |
| 103 | * if the extents have been read in yet, and only lock the inode exclusively |
| 104 | * if they have not. |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 105 | * |
Christoph Hellwig | efa70be | 2013-12-18 02:14:39 -0800 | [diff] [blame] | 106 | * The functions return a value which should be given to the corresponding |
Christoph Hellwig | 01f4f32 | 2013-12-06 12:30:08 -0800 | [diff] [blame] | 107 | * xfs_iunlock() call. |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 108 | */ |
| 109 | uint |
Christoph Hellwig | 309ecac8 | 2013-12-06 12:30:09 -0800 | [diff] [blame] | 110 | xfs_ilock_data_map_shared( |
| 111 | struct xfs_inode *ip) |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 112 | { |
Christoph Hellwig | 309ecac8 | 2013-12-06 12:30:09 -0800 | [diff] [blame] | 113 | uint lock_mode = XFS_ILOCK_SHARED; |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 114 | |
Christoph Hellwig | b2197a3 | 2021-04-13 11:15:12 -0700 | [diff] [blame] | 115 | if (xfs_need_iread_extents(&ip->i_df)) |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 116 | lock_mode = XFS_ILOCK_EXCL; |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 117 | xfs_ilock(ip, lock_mode); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 118 | return lock_mode; |
| 119 | } |
| 120 | |
Christoph Hellwig | efa70be | 2013-12-18 02:14:39 -0800 | [diff] [blame] | 121 | uint |
| 122 | xfs_ilock_attr_map_shared( |
| 123 | struct xfs_inode *ip) |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 124 | { |
Christoph Hellwig | efa70be | 2013-12-18 02:14:39 -0800 | [diff] [blame] | 125 | uint lock_mode = XFS_ILOCK_SHARED; |
| 126 | |
Christoph Hellwig | b2197a3 | 2021-04-13 11:15:12 -0700 | [diff] [blame] | 127 | if (ip->i_afp && xfs_need_iread_extents(ip->i_afp)) |
Christoph Hellwig | efa70be | 2013-12-18 02:14:39 -0800 | [diff] [blame] | 128 | lock_mode = XFS_ILOCK_EXCL; |
| 129 | xfs_ilock(ip, lock_mode); |
| 130 | return lock_mode; |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | /* |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 134 | * In addition to i_rwsem in the VFS inode, the xfs inode contains 2 |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 135 | * multi-reader locks: invalidate_lock and the i_lock. This routine allows |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 136 | * various combinations of the locks to be obtained. |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 137 | * |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 138 | * The 3 locks should always be ordered so that the IO lock is obtained first, |
| 139 | * the mmap lock second and the ilock last in order to prevent deadlock. |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 140 | * |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 141 | * Basic locking order: |
| 142 | * |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 143 | * i_rwsem -> invalidate_lock -> page_lock -> i_ilock |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 144 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 145 | * mmap_lock locking order: |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 146 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 147 | * i_rwsem -> page lock -> mmap_lock |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 148 | * mmap_lock -> invalidate_lock -> page_lock |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 149 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 150 | * The difference in mmap_lock locking order mean that we cannot hold the |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 151 | * invalidate_lock over syscall based read(2)/write(2) based IO. These IO paths |
| 152 | * can fault in pages during copy in/out (for buffered IO) or require the |
| 153 | * mmap_lock in get_user_pages() to map the user pages into the kernel address |
| 154 | * space for direct IO. Similarly the i_rwsem cannot be taken inside a page |
| 155 | * fault because page faults already hold the mmap_lock. |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 156 | * |
| 157 | * Hence to serialise fully against both syscall and mmap based IO, we need to |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 158 | * take both the i_rwsem and the invalidate_lock. These locks should *only* be |
| 159 | * both taken in places where we need to invalidate the page cache in a race |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 160 | * free manner (e.g. truncate, hole punch and other extent manipulation |
| 161 | * functions). |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 162 | */ |
| 163 | void |
| 164 | xfs_ilock( |
| 165 | xfs_inode_t *ip, |
| 166 | uint lock_flags) |
| 167 | { |
| 168 | trace_xfs_ilock(ip, lock_flags, _RET_IP_); |
| 169 | |
| 170 | /* |
| 171 | * You can't set both SHARED and EXCL for the same lock, |
| 172 | * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED, |
| 173 | * and XFS_ILOCK_EXCL are valid values to set in lock_flags. |
| 174 | */ |
| 175 | ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) != |
| 176 | (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)); |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 177 | ASSERT((lock_flags & (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)) != |
| 178 | (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 179 | ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) != |
| 180 | (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)); |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 181 | ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_SUBCLASS_MASK)) == 0); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 182 | |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 183 | if (lock_flags & XFS_IOLOCK_EXCL) { |
| 184 | down_write_nested(&VFS_I(ip)->i_rwsem, |
| 185 | XFS_IOLOCK_DEP(lock_flags)); |
| 186 | } else if (lock_flags & XFS_IOLOCK_SHARED) { |
| 187 | down_read_nested(&VFS_I(ip)->i_rwsem, |
| 188 | XFS_IOLOCK_DEP(lock_flags)); |
| 189 | } |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 190 | |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 191 | if (lock_flags & XFS_MMAPLOCK_EXCL) { |
| 192 | down_write_nested(&VFS_I(ip)->i_mapping->invalidate_lock, |
| 193 | XFS_MMAPLOCK_DEP(lock_flags)); |
| 194 | } else if (lock_flags & XFS_MMAPLOCK_SHARED) { |
| 195 | down_read_nested(&VFS_I(ip)->i_mapping->invalidate_lock, |
| 196 | XFS_MMAPLOCK_DEP(lock_flags)); |
| 197 | } |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 198 | |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 199 | if (lock_flags & XFS_ILOCK_EXCL) |
| 200 | mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags)); |
| 201 | else if (lock_flags & XFS_ILOCK_SHARED) |
| 202 | mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags)); |
| 203 | } |
| 204 | |
| 205 | /* |
| 206 | * This is just like xfs_ilock(), except that the caller |
| 207 | * is guaranteed not to sleep. It returns 1 if it gets |
| 208 | * the requested locks and 0 otherwise. If the IO lock is |
| 209 | * obtained but the inode lock cannot be, then the IO lock |
| 210 | * is dropped before returning. |
| 211 | * |
| 212 | * ip -- the inode being locked |
| 213 | * lock_flags -- this parameter indicates the inode's locks to be |
| 214 | * to be locked. See the comment for xfs_ilock() for a list |
| 215 | * of valid values. |
| 216 | */ |
| 217 | int |
| 218 | xfs_ilock_nowait( |
| 219 | xfs_inode_t *ip, |
| 220 | uint lock_flags) |
| 221 | { |
| 222 | trace_xfs_ilock_nowait(ip, lock_flags, _RET_IP_); |
| 223 | |
| 224 | /* |
| 225 | * You can't set both SHARED and EXCL for the same lock, |
| 226 | * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED, |
| 227 | * and XFS_ILOCK_EXCL are valid values to set in lock_flags. |
| 228 | */ |
| 229 | ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) != |
| 230 | (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)); |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 231 | ASSERT((lock_flags & (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)) != |
| 232 | (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 233 | ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) != |
| 234 | (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)); |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 235 | ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_SUBCLASS_MASK)) == 0); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 236 | |
| 237 | if (lock_flags & XFS_IOLOCK_EXCL) { |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 238 | if (!down_write_trylock(&VFS_I(ip)->i_rwsem)) |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 239 | goto out; |
| 240 | } else if (lock_flags & XFS_IOLOCK_SHARED) { |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 241 | if (!down_read_trylock(&VFS_I(ip)->i_rwsem)) |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 242 | goto out; |
| 243 | } |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 244 | |
| 245 | if (lock_flags & XFS_MMAPLOCK_EXCL) { |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 246 | if (!down_write_trylock(&VFS_I(ip)->i_mapping->invalidate_lock)) |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 247 | goto out_undo_iolock; |
| 248 | } else if (lock_flags & XFS_MMAPLOCK_SHARED) { |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 249 | if (!down_read_trylock(&VFS_I(ip)->i_mapping->invalidate_lock)) |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 250 | goto out_undo_iolock; |
| 251 | } |
| 252 | |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 253 | if (lock_flags & XFS_ILOCK_EXCL) { |
| 254 | if (!mrtryupdate(&ip->i_lock)) |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 255 | goto out_undo_mmaplock; |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 256 | } else if (lock_flags & XFS_ILOCK_SHARED) { |
| 257 | if (!mrtryaccess(&ip->i_lock)) |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 258 | goto out_undo_mmaplock; |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 259 | } |
| 260 | return 1; |
| 261 | |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 262 | out_undo_mmaplock: |
| 263 | if (lock_flags & XFS_MMAPLOCK_EXCL) |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 264 | up_write(&VFS_I(ip)->i_mapping->invalidate_lock); |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 265 | else if (lock_flags & XFS_MMAPLOCK_SHARED) |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 266 | up_read(&VFS_I(ip)->i_mapping->invalidate_lock); |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 267 | out_undo_iolock: |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 268 | if (lock_flags & XFS_IOLOCK_EXCL) |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 269 | up_write(&VFS_I(ip)->i_rwsem); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 270 | else if (lock_flags & XFS_IOLOCK_SHARED) |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 271 | up_read(&VFS_I(ip)->i_rwsem); |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 272 | out: |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 273 | return 0; |
| 274 | } |
| 275 | |
| 276 | /* |
| 277 | * xfs_iunlock() is used to drop the inode locks acquired with |
| 278 | * xfs_ilock() and xfs_ilock_nowait(). The caller must pass |
| 279 | * in the flags given to xfs_ilock() or xfs_ilock_nowait() so |
| 280 | * that we know which locks to drop. |
| 281 | * |
| 282 | * ip -- the inode being unlocked |
| 283 | * lock_flags -- this parameter indicates the inode's locks to be |
| 284 | * to be unlocked. See the comment for xfs_ilock() for a list |
| 285 | * of valid values for this parameter. |
| 286 | * |
| 287 | */ |
| 288 | void |
| 289 | xfs_iunlock( |
| 290 | xfs_inode_t *ip, |
| 291 | uint lock_flags) |
| 292 | { |
| 293 | /* |
| 294 | * You can't set both SHARED and EXCL for the same lock, |
| 295 | * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED, |
| 296 | * and XFS_ILOCK_EXCL are valid values to set in lock_flags. |
| 297 | */ |
| 298 | ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) != |
| 299 | (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)); |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 300 | ASSERT((lock_flags & (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)) != |
| 301 | (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 302 | ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) != |
| 303 | (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)); |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 304 | ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_SUBCLASS_MASK)) == 0); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 305 | ASSERT(lock_flags != 0); |
| 306 | |
| 307 | if (lock_flags & XFS_IOLOCK_EXCL) |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 308 | up_write(&VFS_I(ip)->i_rwsem); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 309 | else if (lock_flags & XFS_IOLOCK_SHARED) |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 310 | up_read(&VFS_I(ip)->i_rwsem); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 311 | |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 312 | if (lock_flags & XFS_MMAPLOCK_EXCL) |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 313 | up_write(&VFS_I(ip)->i_mapping->invalidate_lock); |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 314 | else if (lock_flags & XFS_MMAPLOCK_SHARED) |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 315 | up_read(&VFS_I(ip)->i_mapping->invalidate_lock); |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 316 | |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 317 | if (lock_flags & XFS_ILOCK_EXCL) |
| 318 | mrunlock_excl(&ip->i_lock); |
| 319 | else if (lock_flags & XFS_ILOCK_SHARED) |
| 320 | mrunlock_shared(&ip->i_lock); |
| 321 | |
| 322 | trace_xfs_iunlock(ip, lock_flags, _RET_IP_); |
| 323 | } |
| 324 | |
| 325 | /* |
| 326 | * give up write locks. the i/o lock cannot be held nested |
| 327 | * if it is being demoted. |
| 328 | */ |
| 329 | void |
| 330 | xfs_ilock_demote( |
| 331 | xfs_inode_t *ip, |
| 332 | uint lock_flags) |
| 333 | { |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 334 | ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_MMAPLOCK_EXCL|XFS_ILOCK_EXCL)); |
| 335 | ASSERT((lock_flags & |
| 336 | ~(XFS_IOLOCK_EXCL|XFS_MMAPLOCK_EXCL|XFS_ILOCK_EXCL)) == 0); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 337 | |
| 338 | if (lock_flags & XFS_ILOCK_EXCL) |
| 339 | mrdemote(&ip->i_lock); |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 340 | if (lock_flags & XFS_MMAPLOCK_EXCL) |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 341 | downgrade_write(&VFS_I(ip)->i_mapping->invalidate_lock); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 342 | if (lock_flags & XFS_IOLOCK_EXCL) |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 343 | downgrade_write(&VFS_I(ip)->i_rwsem); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 344 | |
| 345 | trace_xfs_ilock_demote(ip, lock_flags, _RET_IP_); |
| 346 | } |
| 347 | |
Dave Chinner | 742ae1e | 2013-04-30 21:39:34 +1000 | [diff] [blame] | 348 | #if defined(DEBUG) || defined(XFS_WARN) |
Pavel Reichl | e31cbde | 2020-10-16 04:10:02 +0200 | [diff] [blame] | 349 | static inline bool |
| 350 | __xfs_rwsem_islocked( |
| 351 | struct rw_semaphore *rwsem, |
| 352 | bool shared) |
| 353 | { |
| 354 | if (!debug_locks) |
| 355 | return rwsem_is_locked(rwsem); |
| 356 | |
| 357 | if (!shared) |
| 358 | return lockdep_is_held_type(rwsem, 0); |
| 359 | |
| 360 | /* |
| 361 | * We are checking that the lock is held at least in shared |
| 362 | * mode but don't care that it might be held exclusively |
| 363 | * (i.e. shared | excl). Hence we check if the lock is held |
| 364 | * in any mode rather than an explicit shared mode. |
| 365 | */ |
| 366 | return lockdep_is_held_type(rwsem, -1); |
| 367 | } |
| 368 | |
| 369 | bool |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 370 | xfs_isilocked( |
Pavel Reichl | e31cbde | 2020-10-16 04:10:02 +0200 | [diff] [blame] | 371 | struct xfs_inode *ip, |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 372 | uint lock_flags) |
| 373 | { |
| 374 | if (lock_flags & (XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)) { |
| 375 | if (!(lock_flags & XFS_ILOCK_SHARED)) |
| 376 | return !!ip->i_lock.mr_writer; |
| 377 | return rwsem_is_locked(&ip->i_lock.mr_lock); |
| 378 | } |
| 379 | |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 380 | if (lock_flags & (XFS_MMAPLOCK_EXCL|XFS_MMAPLOCK_SHARED)) { |
Jan Kara | 2433480 | 2021-04-12 18:56:24 +0200 | [diff] [blame] | 381 | return __xfs_rwsem_islocked(&VFS_I(ip)->i_rwsem, |
| 382 | (lock_flags & XFS_IOLOCK_SHARED)); |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 383 | } |
| 384 | |
Pavel Reichl | e31cbde | 2020-10-16 04:10:02 +0200 | [diff] [blame] | 385 | if (lock_flags & (XFS_IOLOCK_EXCL | XFS_IOLOCK_SHARED)) { |
| 386 | return __xfs_rwsem_islocked(&VFS_I(ip)->i_rwsem, |
| 387 | (lock_flags & XFS_IOLOCK_SHARED)); |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | ASSERT(0); |
Pavel Reichl | e31cbde | 2020-10-16 04:10:02 +0200 | [diff] [blame] | 391 | return false; |
Dave Chinner | fa96aca | 2012-10-08 21:56:10 +1100 | [diff] [blame] | 392 | } |
| 393 | #endif |
| 394 | |
Dave Chinner | b6a9947 | 2015-08-25 10:05:13 +1000 | [diff] [blame] | 395 | /* |
| 396 | * xfs_lockdep_subclass_ok() is only used in an ASSERT, so is only called when |
| 397 | * DEBUG or XFS_WARN is set. And MAX_LOCKDEP_SUBCLASSES is then only defined |
| 398 | * when CONFIG_LOCKDEP is set. Hence the complex define below to avoid build |
| 399 | * errors and warnings. |
| 400 | */ |
| 401 | #if (defined(DEBUG) || defined(XFS_WARN)) && defined(CONFIG_LOCKDEP) |
Dave Chinner | 3403ccc | 2015-08-20 09:27:49 +1000 | [diff] [blame] | 402 | static bool |
| 403 | xfs_lockdep_subclass_ok( |
| 404 | int subclass) |
| 405 | { |
| 406 | return subclass < MAX_LOCKDEP_SUBCLASSES; |
| 407 | } |
| 408 | #else |
| 409 | #define xfs_lockdep_subclass_ok(subclass) (true) |
| 410 | #endif |
| 411 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 412 | /* |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 413 | * Bump the subclass so xfs_lock_inodes() acquires each lock with a different |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 414 | * value. This can be called for any type of inode lock combination, including |
| 415 | * parent locking. Care must be taken to ensure we don't overrun the subclass |
| 416 | * storage fields in the class mask we build. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 417 | */ |
| 418 | static inline int |
| 419 | xfs_lock_inumorder(int lock_mode, int subclass) |
| 420 | { |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 421 | int class = 0; |
| 422 | |
| 423 | ASSERT(!(lock_mode & (XFS_ILOCK_PARENT | XFS_ILOCK_RTBITMAP | |
| 424 | XFS_ILOCK_RTSUM))); |
Dave Chinner | 3403ccc | 2015-08-20 09:27:49 +1000 | [diff] [blame] | 425 | ASSERT(xfs_lockdep_subclass_ok(subclass)); |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 426 | |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 427 | if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL)) { |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 428 | ASSERT(subclass <= XFS_IOLOCK_MAX_SUBCLASS); |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 429 | class += subclass << XFS_IOLOCK_SHIFT; |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | if (lock_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL)) { |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 433 | ASSERT(subclass <= XFS_MMAPLOCK_MAX_SUBCLASS); |
| 434 | class += subclass << XFS_MMAPLOCK_SHIFT; |
Dave Chinner | 653c60b | 2015-02-23 21:43:37 +1100 | [diff] [blame] | 435 | } |
| 436 | |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 437 | if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) { |
| 438 | ASSERT(subclass <= XFS_ILOCK_MAX_SUBCLASS); |
| 439 | class += subclass << XFS_ILOCK_SHIFT; |
| 440 | } |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 441 | |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 442 | return (lock_mode & ~XFS_LOCK_SUBCLASS_MASK) | class; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 443 | } |
| 444 | |
| 445 | /* |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 446 | * The following routine will lock n inodes in exclusive mode. We assume the |
| 447 | * caller calls us with the inodes in i_ino order. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 448 | * |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 449 | * We need to detect deadlock where an inode that we lock is in the AIL and we |
| 450 | * start waiting for another inode that is locked by a thread in a long running |
| 451 | * transaction (such as truncate). This can result in deadlock since the long |
| 452 | * running trans might need to wait for the inode we just locked in order to |
| 453 | * push the tail and free space in the log. |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 454 | * |
| 455 | * xfs_lock_inodes() can only be used to lock one type of lock at a time - |
| 456 | * the iolock, the mmaplock or the ilock, but not more than one at a time. If we |
| 457 | * lock more than one at a time, lockdep will report false positives saying we |
| 458 | * have violated locking orders. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 459 | */ |
Eric Sandeen | 0d5a75e | 2016-06-01 17:38:15 +1000 | [diff] [blame] | 460 | static void |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 461 | xfs_lock_inodes( |
Christoph Hellwig | efe2330 | 2019-06-28 19:27:33 -0700 | [diff] [blame] | 462 | struct xfs_inode **ips, |
| 463 | int inodes, |
| 464 | uint lock_mode) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 465 | { |
Christoph Hellwig | efe2330 | 2019-06-28 19:27:33 -0700 | [diff] [blame] | 466 | int attempts = 0, i, j, try_lock; |
| 467 | struct xfs_log_item *lp; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 468 | |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 469 | /* |
| 470 | * Currently supports between 2 and 5 inodes with exclusive locking. We |
| 471 | * support an arbitrary depth of locking here, but absolute limits on |
Randy Dunlap | b63da6c | 2020-08-05 08:49:58 -0700 | [diff] [blame] | 472 | * inodes depend on the type of locking and the limits placed by |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 473 | * lockdep annotations in xfs_lock_inumorder. These are all checked by |
| 474 | * the asserts. |
| 475 | */ |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 476 | ASSERT(ips && inodes >= 2 && inodes <= 5); |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 477 | ASSERT(lock_mode & (XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL | |
| 478 | XFS_ILOCK_EXCL)); |
| 479 | ASSERT(!(lock_mode & (XFS_IOLOCK_SHARED | XFS_MMAPLOCK_SHARED | |
| 480 | XFS_ILOCK_SHARED))); |
Dave Chinner | 0952c81 | 2015-08-19 10:32:49 +1000 | [diff] [blame] | 481 | ASSERT(!(lock_mode & XFS_MMAPLOCK_EXCL) || |
| 482 | inodes <= XFS_MMAPLOCK_MAX_SUBCLASS + 1); |
| 483 | ASSERT(!(lock_mode & XFS_ILOCK_EXCL) || |
| 484 | inodes <= XFS_ILOCK_MAX_SUBCLASS + 1); |
| 485 | |
| 486 | if (lock_mode & XFS_IOLOCK_EXCL) { |
| 487 | ASSERT(!(lock_mode & (XFS_MMAPLOCK_EXCL | XFS_ILOCK_EXCL))); |
| 488 | } else if (lock_mode & XFS_MMAPLOCK_EXCL) |
| 489 | ASSERT(!(lock_mode & XFS_ILOCK_EXCL)); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 490 | |
| 491 | try_lock = 0; |
| 492 | i = 0; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 493 | again: |
| 494 | for (; i < inodes; i++) { |
| 495 | ASSERT(ips[i]); |
| 496 | |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 497 | if (i && (ips[i] == ips[i - 1])) /* Already locked */ |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 498 | continue; |
| 499 | |
| 500 | /* |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 501 | * If try_lock is not set yet, make sure all locked inodes are |
| 502 | * not in the AIL. If any are, set try_lock to be used later. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 503 | */ |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 504 | if (!try_lock) { |
| 505 | for (j = (i - 1); j >= 0 && !try_lock; j--) { |
Christoph Hellwig | b3b14aa | 2019-06-28 19:27:33 -0700 | [diff] [blame] | 506 | lp = &ips[j]->i_itemp->ili_item; |
Dave Chinner | 22525c1 | 2018-05-09 07:47:34 -0700 | [diff] [blame] | 507 | if (lp && test_bit(XFS_LI_IN_AIL, &lp->li_flags)) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 508 | try_lock++; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 509 | } |
| 510 | } |
| 511 | |
| 512 | /* |
| 513 | * If any of the previous locks we have locked is in the AIL, |
| 514 | * we must TRY to get the second and subsequent locks. If |
| 515 | * we can't get any, we must release all we have |
| 516 | * and try again. |
| 517 | */ |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 518 | if (!try_lock) { |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 519 | xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i)); |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 520 | continue; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 521 | } |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 522 | |
| 523 | /* try_lock means we have an inode locked that is in the AIL. */ |
| 524 | ASSERT(i != 0); |
| 525 | if (xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) |
| 526 | continue; |
| 527 | |
| 528 | /* |
| 529 | * Unlock all previous guys and try again. xfs_iunlock will try |
| 530 | * to push the tail if the inode is in the AIL. |
| 531 | */ |
| 532 | attempts++; |
| 533 | for (j = i - 1; j >= 0; j--) { |
| 534 | /* |
| 535 | * Check to see if we've already unlocked this one. Not |
| 536 | * the first one going back, and the inode ptr is the |
| 537 | * same. |
| 538 | */ |
| 539 | if (j != (i - 1) && ips[j] == ips[j + 1]) |
| 540 | continue; |
| 541 | |
| 542 | xfs_iunlock(ips[j], lock_mode); |
| 543 | } |
| 544 | |
| 545 | if ((attempts % 5) == 0) { |
| 546 | delay(1); /* Don't just spin the CPU */ |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 547 | } |
| 548 | i = 0; |
| 549 | try_lock = 0; |
| 550 | goto again; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 551 | } |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 552 | } |
| 553 | |
| 554 | /* |
Jan Kara | d2c292d | 2021-05-24 13:17:49 +0200 | [diff] [blame] | 555 | * xfs_lock_two_inodes() can only be used to lock ilock. The iolock and |
| 556 | * mmaplock must be double-locked separately since we use i_rwsem and |
| 557 | * invalidate_lock for that. We now support taking one lock EXCL and the |
| 558 | * other SHARED. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 559 | */ |
| 560 | void |
| 561 | xfs_lock_two_inodes( |
Darrick J. Wong | 7c2d238 | 2018-01-26 15:27:33 -0800 | [diff] [blame] | 562 | struct xfs_inode *ip0, |
| 563 | uint ip0_mode, |
| 564 | struct xfs_inode *ip1, |
| 565 | uint ip1_mode) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 566 | { |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 567 | int attempts = 0; |
Christoph Hellwig | efe2330 | 2019-06-28 19:27:33 -0700 | [diff] [blame] | 568 | struct xfs_log_item *lp; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 569 | |
Darrick J. Wong | 7c2d238 | 2018-01-26 15:27:33 -0800 | [diff] [blame] | 570 | ASSERT(hweight32(ip0_mode) == 1); |
| 571 | ASSERT(hweight32(ip1_mode) == 1); |
| 572 | ASSERT(!(ip0_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))); |
| 573 | ASSERT(!(ip1_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))); |
Jan Kara | d2c292d | 2021-05-24 13:17:49 +0200 | [diff] [blame] | 574 | ASSERT(!(ip0_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL))); |
| 575 | ASSERT(!(ip1_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL))); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 576 | ASSERT(ip0->i_ino != ip1->i_ino); |
| 577 | |
| 578 | if (ip0->i_ino > ip1->i_ino) { |
Changcheng Deng | 2a09b57 | 2021-10-29 11:29:36 -0700 | [diff] [blame] | 579 | swap(ip0, ip1); |
| 580 | swap(ip0_mode, ip1_mode); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | again: |
Darrick J. Wong | 7c2d238 | 2018-01-26 15:27:33 -0800 | [diff] [blame] | 584 | xfs_ilock(ip0, xfs_lock_inumorder(ip0_mode, 0)); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 585 | |
| 586 | /* |
| 587 | * If the first lock we have locked is in the AIL, we must TRY to get |
| 588 | * the second lock. If we can't get it, we must release the first one |
| 589 | * and try again. |
| 590 | */ |
Christoph Hellwig | b3b14aa | 2019-06-28 19:27:33 -0700 | [diff] [blame] | 591 | lp = &ip0->i_itemp->ili_item; |
Dave Chinner | 22525c1 | 2018-05-09 07:47:34 -0700 | [diff] [blame] | 592 | if (lp && test_bit(XFS_LI_IN_AIL, &lp->li_flags)) { |
Darrick J. Wong | 7c2d238 | 2018-01-26 15:27:33 -0800 | [diff] [blame] | 593 | if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(ip1_mode, 1))) { |
| 594 | xfs_iunlock(ip0, ip0_mode); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 595 | if ((++attempts % 5) == 0) |
| 596 | delay(1); /* Don't just spin the CPU */ |
| 597 | goto again; |
| 598 | } |
| 599 | } else { |
Darrick J. Wong | 7c2d238 | 2018-01-26 15:27:33 -0800 | [diff] [blame] | 600 | xfs_ilock(ip1, xfs_lock_inumorder(ip1_mode, 1)); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 601 | } |
| 602 | } |
| 603 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | uint |
| 605 | xfs_ip2xflags( |
Dave Chinner | 58f88ca | 2016-01-04 16:44:15 +1100 | [diff] [blame] | 606 | struct xfs_inode *ip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | { |
Christoph Hellwig | 4422501 | 2021-03-29 11:11:46 -0700 | [diff] [blame] | 608 | uint flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | |
Christoph Hellwig | 4422501 | 2021-03-29 11:11:46 -0700 | [diff] [blame] | 610 | if (ip->i_diflags & XFS_DIFLAG_ANY) { |
| 611 | if (ip->i_diflags & XFS_DIFLAG_REALTIME) |
| 612 | flags |= FS_XFLAG_REALTIME; |
| 613 | if (ip->i_diflags & XFS_DIFLAG_PREALLOC) |
| 614 | flags |= FS_XFLAG_PREALLOC; |
| 615 | if (ip->i_diflags & XFS_DIFLAG_IMMUTABLE) |
| 616 | flags |= FS_XFLAG_IMMUTABLE; |
| 617 | if (ip->i_diflags & XFS_DIFLAG_APPEND) |
| 618 | flags |= FS_XFLAG_APPEND; |
| 619 | if (ip->i_diflags & XFS_DIFLAG_SYNC) |
| 620 | flags |= FS_XFLAG_SYNC; |
| 621 | if (ip->i_diflags & XFS_DIFLAG_NOATIME) |
| 622 | flags |= FS_XFLAG_NOATIME; |
| 623 | if (ip->i_diflags & XFS_DIFLAG_NODUMP) |
| 624 | flags |= FS_XFLAG_NODUMP; |
| 625 | if (ip->i_diflags & XFS_DIFLAG_RTINHERIT) |
| 626 | flags |= FS_XFLAG_RTINHERIT; |
| 627 | if (ip->i_diflags & XFS_DIFLAG_PROJINHERIT) |
| 628 | flags |= FS_XFLAG_PROJINHERIT; |
| 629 | if (ip->i_diflags & XFS_DIFLAG_NOSYMLINKS) |
| 630 | flags |= FS_XFLAG_NOSYMLINKS; |
| 631 | if (ip->i_diflags & XFS_DIFLAG_EXTSIZE) |
| 632 | flags |= FS_XFLAG_EXTSIZE; |
| 633 | if (ip->i_diflags & XFS_DIFLAG_EXTSZINHERIT) |
| 634 | flags |= FS_XFLAG_EXTSZINHERIT; |
| 635 | if (ip->i_diflags & XFS_DIFLAG_NODEFRAG) |
| 636 | flags |= FS_XFLAG_NODEFRAG; |
| 637 | if (ip->i_diflags & XFS_DIFLAG_FILESTREAM) |
| 638 | flags |= FS_XFLAG_FILESTREAM; |
| 639 | } |
| 640 | |
| 641 | if (ip->i_diflags2 & XFS_DIFLAG2_ANY) { |
| 642 | if (ip->i_diflags2 & XFS_DIFLAG2_DAX) |
| 643 | flags |= FS_XFLAG_DAX; |
| 644 | if (ip->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE) |
| 645 | flags |= FS_XFLAG_COWEXTSIZE; |
| 646 | } |
| 647 | |
| 648 | if (XFS_IFORK_Q(ip)) |
| 649 | flags |= FS_XFLAG_HASATTR; |
| 650 | return flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | } |
| 652 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | /* |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 654 | * Lookups up an inode from "name". If ci_name is not NULL, then a CI match |
| 655 | * is allowed, otherwise it has to be an exact match. If a CI match is found, |
| 656 | * ci_name->name will point to a the actual name (caller must free) or |
| 657 | * will be set to NULL if an exact match is found. |
| 658 | */ |
| 659 | int |
| 660 | xfs_lookup( |
| 661 | xfs_inode_t *dp, |
| 662 | struct xfs_name *name, |
| 663 | xfs_inode_t **ipp, |
| 664 | struct xfs_name *ci_name) |
| 665 | { |
| 666 | xfs_ino_t inum; |
| 667 | int error; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 668 | |
| 669 | trace_xfs_lookup(dp, name); |
| 670 | |
Dave Chinner | 75c8c50f | 2021-08-18 18:46:53 -0700 | [diff] [blame] | 671 | if (xfs_is_shutdown(dp->i_mount)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 672 | return -EIO; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 673 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 674 | error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 675 | if (error) |
Dave Chinner | dbad7c9 | 2015-08-19 10:33:00 +1000 | [diff] [blame] | 676 | goto out_unlock; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 677 | |
| 678 | error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp); |
| 679 | if (error) |
| 680 | goto out_free_name; |
| 681 | |
| 682 | return 0; |
| 683 | |
| 684 | out_free_name: |
| 685 | if (ci_name) |
| 686 | kmem_free(ci_name->name); |
Dave Chinner | dbad7c9 | 2015-08-19 10:33:00 +1000 | [diff] [blame] | 687 | out_unlock: |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 688 | *ipp = NULL; |
| 689 | return error; |
| 690 | } |
| 691 | |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 692 | /* Propagate di_flags from a parent inode to a child inode. */ |
| 693 | static void |
| 694 | xfs_inode_inherit_flags( |
| 695 | struct xfs_inode *ip, |
| 696 | const struct xfs_inode *pip) |
| 697 | { |
| 698 | unsigned int di_flags = 0; |
Darrick J. Wong | 603f000 | 2021-05-12 12:51:26 -0700 | [diff] [blame] | 699 | xfs_failaddr_t failaddr; |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 700 | umode_t mode = VFS_I(ip)->i_mode; |
| 701 | |
| 702 | if (S_ISDIR(mode)) { |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 703 | if (pip->i_diflags & XFS_DIFLAG_RTINHERIT) |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 704 | di_flags |= XFS_DIFLAG_RTINHERIT; |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 705 | if (pip->i_diflags & XFS_DIFLAG_EXTSZINHERIT) { |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 706 | di_flags |= XFS_DIFLAG_EXTSZINHERIT; |
Christoph Hellwig | 031474c | 2021-03-29 11:11:41 -0700 | [diff] [blame] | 707 | ip->i_extsize = pip->i_extsize; |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 708 | } |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 709 | if (pip->i_diflags & XFS_DIFLAG_PROJINHERIT) |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 710 | di_flags |= XFS_DIFLAG_PROJINHERIT; |
| 711 | } else if (S_ISREG(mode)) { |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 712 | if ((pip->i_diflags & XFS_DIFLAG_RTINHERIT) && |
Dave Chinner | 38c26bf | 2021-08-18 18:46:37 -0700 | [diff] [blame] | 713 | xfs_has_realtime(ip->i_mount)) |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 714 | di_flags |= XFS_DIFLAG_REALTIME; |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 715 | if (pip->i_diflags & XFS_DIFLAG_EXTSZINHERIT) { |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 716 | di_flags |= XFS_DIFLAG_EXTSIZE; |
Christoph Hellwig | 031474c | 2021-03-29 11:11:41 -0700 | [diff] [blame] | 717 | ip->i_extsize = pip->i_extsize; |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 718 | } |
| 719 | } |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 720 | if ((pip->i_diflags & XFS_DIFLAG_NOATIME) && |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 721 | xfs_inherit_noatime) |
| 722 | di_flags |= XFS_DIFLAG_NOATIME; |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 723 | if ((pip->i_diflags & XFS_DIFLAG_NODUMP) && |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 724 | xfs_inherit_nodump) |
| 725 | di_flags |= XFS_DIFLAG_NODUMP; |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 726 | if ((pip->i_diflags & XFS_DIFLAG_SYNC) && |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 727 | xfs_inherit_sync) |
| 728 | di_flags |= XFS_DIFLAG_SYNC; |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 729 | if ((pip->i_diflags & XFS_DIFLAG_NOSYMLINKS) && |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 730 | xfs_inherit_nosymlinks) |
| 731 | di_flags |= XFS_DIFLAG_NOSYMLINKS; |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 732 | if ((pip->i_diflags & XFS_DIFLAG_NODEFRAG) && |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 733 | xfs_inherit_nodefrag) |
| 734 | di_flags |= XFS_DIFLAG_NODEFRAG; |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 735 | if (pip->i_diflags & XFS_DIFLAG_FILESTREAM) |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 736 | di_flags |= XFS_DIFLAG_FILESTREAM; |
| 737 | |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 738 | ip->i_diflags |= di_flags; |
Darrick J. Wong | 603f000 | 2021-05-12 12:51:26 -0700 | [diff] [blame] | 739 | |
| 740 | /* |
| 741 | * Inode verifiers on older kernels only check that the extent size |
| 742 | * hint is an integer multiple of the rt extent size on realtime files. |
| 743 | * They did not check the hint alignment on a directory with both |
| 744 | * rtinherit and extszinherit flags set. If the misaligned hint is |
| 745 | * propagated from a directory into a new realtime file, new file |
| 746 | * allocations will fail due to math errors in the rt allocator and/or |
| 747 | * trip the verifiers. Validate the hint settings in the new file so |
| 748 | * that we don't let broken hints propagate. |
| 749 | */ |
| 750 | failaddr = xfs_inode_validate_extsize(ip->i_mount, ip->i_extsize, |
| 751 | VFS_I(ip)->i_mode, ip->i_diflags); |
| 752 | if (failaddr) { |
| 753 | ip->i_diflags &= ~(XFS_DIFLAG_EXTSIZE | |
| 754 | XFS_DIFLAG_EXTSZINHERIT); |
| 755 | ip->i_extsize = 0; |
| 756 | } |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | /* Propagate di_flags2 from a parent inode to a child inode. */ |
| 760 | static void |
| 761 | xfs_inode_inherit_flags2( |
| 762 | struct xfs_inode *ip, |
| 763 | const struct xfs_inode *pip) |
| 764 | { |
Darrick J. Wong | 603f000 | 2021-05-12 12:51:26 -0700 | [diff] [blame] | 765 | xfs_failaddr_t failaddr; |
| 766 | |
Christoph Hellwig | 3e09ab8 | 2021-03-29 11:11:45 -0700 | [diff] [blame] | 767 | if (pip->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE) { |
| 768 | ip->i_diflags2 |= XFS_DIFLAG2_COWEXTSIZE; |
Christoph Hellwig | b33ce57 | 2021-03-29 11:11:42 -0700 | [diff] [blame] | 769 | ip->i_cowextsize = pip->i_cowextsize; |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 770 | } |
Christoph Hellwig | 3e09ab8 | 2021-03-29 11:11:45 -0700 | [diff] [blame] | 771 | if (pip->i_diflags2 & XFS_DIFLAG2_DAX) |
| 772 | ip->i_diflags2 |= XFS_DIFLAG2_DAX; |
Darrick J. Wong | 603f000 | 2021-05-12 12:51:26 -0700 | [diff] [blame] | 773 | |
| 774 | /* Don't let invalid cowextsize hints propagate. */ |
| 775 | failaddr = xfs_inode_validate_cowextsize(ip->i_mount, ip->i_cowextsize, |
| 776 | VFS_I(ip)->i_mode, ip->i_diflags, ip->i_diflags2); |
| 777 | if (failaddr) { |
| 778 | ip->i_diflags2 &= ~XFS_DIFLAG2_COWEXTSIZE; |
| 779 | ip->i_cowextsize = 0; |
| 780 | } |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 781 | } |
| 782 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 783 | /* |
Dave Chinner | 1abcf26 | 2020-12-09 10:05:15 -0800 | [diff] [blame] | 784 | * Initialise a newly allocated inode and return the in-core inode to the |
| 785 | * caller locked exclusively. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | */ |
Dave Chinner | b652afd | 2021-06-02 10:48:24 +1000 | [diff] [blame] | 787 | int |
Dave Chinner | 1abcf26 | 2020-12-09 10:05:15 -0800 | [diff] [blame] | 788 | xfs_init_new_inode( |
Christoph Hellwig | f736d93 | 2021-01-21 14:19:58 +0100 | [diff] [blame] | 789 | struct user_namespace *mnt_userns, |
Dave Chinner | 1abcf26 | 2020-12-09 10:05:15 -0800 | [diff] [blame] | 790 | struct xfs_trans *tp, |
| 791 | struct xfs_inode *pip, |
| 792 | xfs_ino_t ino, |
| 793 | umode_t mode, |
| 794 | xfs_nlink_t nlink, |
| 795 | dev_t rdev, |
| 796 | prid_t prid, |
Dave Chinner | e6a688c | 2021-03-22 09:52:03 -0700 | [diff] [blame] | 797 | bool init_xattrs, |
Dave Chinner | 1abcf26 | 2020-12-09 10:05:15 -0800 | [diff] [blame] | 798 | struct xfs_inode **ipp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | { |
Christoph Hellwig | 01ea173 | 2021-01-22 16:48:18 -0800 | [diff] [blame] | 800 | struct inode *dir = pip ? VFS_I(pip) : NULL; |
Dave Chinner | 1abcf26 | 2020-12-09 10:05:15 -0800 | [diff] [blame] | 801 | struct xfs_mount *mp = tp->t_mountp; |
| 802 | struct xfs_inode *ip; |
| 803 | unsigned int flags; |
| 804 | int error; |
| 805 | struct timespec64 tv; |
| 806 | struct inode *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | |
| 808 | /* |
Dave Chinner | 8b26984 | 2018-04-17 17:17:35 -0700 | [diff] [blame] | 809 | * Protect against obviously corrupt allocation btree records. Later |
| 810 | * xfs_iget checks will catch re-allocation of other active in-memory |
| 811 | * and on-disk inodes. If we don't catch reallocating the parent inode |
| 812 | * here we will deadlock in xfs_iget() so we have to do these checks |
| 813 | * first. |
| 814 | */ |
| 815 | if ((pip && ino == pip->i_ino) || !xfs_verify_dir_ino(mp, ino)) { |
| 816 | xfs_alert(mp, "Allocated a known in-use inode 0x%llx!", ino); |
| 817 | return -EFSCORRUPTED; |
| 818 | } |
| 819 | |
| 820 | /* |
Dave Chinner | 1abcf26 | 2020-12-09 10:05:15 -0800 | [diff] [blame] | 821 | * Get the in-core inode with the lock held exclusively to prevent |
| 822 | * others from looking at until we're done. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | */ |
Dave Chinner | 1abcf26 | 2020-12-09 10:05:15 -0800 | [diff] [blame] | 824 | error = xfs_iget(mp, tp, ino, XFS_IGET_CREATE, XFS_ILOCK_EXCL, &ip); |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 825 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | return error; |
Dave Chinner | 1abcf26 | 2020-12-09 10:05:15 -0800 | [diff] [blame] | 827 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | ASSERT(ip != NULL); |
Dave Chinner | 3987848 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 829 | inode = VFS_I(ip); |
Dave Chinner | 54d7b5c | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 830 | set_nlink(inode, nlink); |
Christoph Hellwig | 66f3646 | 2017-10-19 11:07:09 -0700 | [diff] [blame] | 831 | inode->i_rdev = rdev; |
Christoph Hellwig | ceaf603 | 2021-03-29 11:11:39 -0700 | [diff] [blame] | 832 | ip->i_projid = prid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | |
Dave Chinner | 0560f31 | 2021-08-18 18:46:52 -0700 | [diff] [blame] | 834 | if (dir && !(dir->i_mode & S_ISGID) && xfs_has_grpid(mp)) { |
Christian Brauner | db99855 | 2021-03-20 13:26:24 +0100 | [diff] [blame] | 835 | inode_fsuid_set(inode, mnt_userns); |
Christoph Hellwig | 01ea173 | 2021-01-22 16:48:18 -0800 | [diff] [blame] | 836 | inode->i_gid = dir->i_gid; |
| 837 | inode->i_mode = mode; |
Christoph Hellwig | 3d8f282 | 2020-02-21 08:31:26 -0800 | [diff] [blame] | 838 | } else { |
Linus Torvalds | 7d6beb7 | 2021-02-23 13:39:45 -0800 | [diff] [blame] | 839 | inode_init_owner(mnt_userns, inode, dir, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | /* |
| 843 | * If the group ID of the new file does not match the effective group |
| 844 | * ID or one of the supplementary group IDs, the S_ISGID bit is cleared |
| 845 | * (and only if the irix_sgid_inherit compatibility variable is set). |
| 846 | */ |
Christoph Hellwig | 5429515 | 2020-02-21 08:31:27 -0800 | [diff] [blame] | 847 | if (irix_sgid_inherit && |
Christoph Hellwig | f736d93 | 2021-01-21 14:19:58 +0100 | [diff] [blame] | 848 | (inode->i_mode & S_ISGID) && |
| 849 | !in_group_p(i_gid_into_mnt(mnt_userns, inode))) |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 850 | inode->i_mode &= ~S_ISGID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | |
Christoph Hellwig | 13d2c10 | 2021-03-29 11:11:40 -0700 | [diff] [blame] | 852 | ip->i_disk_size = 0; |
Christoph Hellwig | daf8396 | 2020-05-18 10:27:22 -0700 | [diff] [blame] | 853 | ip->i_df.if_nextents = 0; |
Christoph Hellwig | 6e73a54 | 2021-03-29 11:11:40 -0700 | [diff] [blame] | 854 | ASSERT(ip->i_nblocks == 0); |
Christoph Hellwig | dff35fd | 2008-08-13 16:44:15 +1000 | [diff] [blame] | 855 | |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 856 | tv = current_time(inode); |
Dave Chinner | 3987848 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 857 | inode->i_mtime = tv; |
| 858 | inode->i_atime = tv; |
| 859 | inode->i_ctime = tv; |
Christoph Hellwig | dff35fd | 2008-08-13 16:44:15 +1000 | [diff] [blame] | 860 | |
Christoph Hellwig | 031474c | 2021-03-29 11:11:41 -0700 | [diff] [blame] | 861 | ip->i_extsize = 0; |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 862 | ip->i_diflags = 0; |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 863 | |
Dave Chinner | 38c26bf | 2021-08-18 18:46:37 -0700 | [diff] [blame] | 864 | if (xfs_has_v3inodes(mp)) { |
Jeff Layton | f0e2828 | 2017-12-11 06:35:19 -0500 | [diff] [blame] | 865 | inode_set_iversion(inode, 1); |
Christoph Hellwig | b33ce57 | 2021-03-29 11:11:42 -0700 | [diff] [blame] | 866 | ip->i_cowextsize = 0; |
Christoph Hellwig | e98d5e8 | 2021-03-29 11:11:45 -0700 | [diff] [blame] | 867 | ip->i_crtime = tv; |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 868 | } |
| 869 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | flags = XFS_ILOG_CORE; |
| 871 | switch (mode & S_IFMT) { |
| 872 | case S_IFIFO: |
| 873 | case S_IFCHR: |
| 874 | case S_IFBLK: |
| 875 | case S_IFSOCK: |
Christoph Hellwig | f7e67b2 | 2020-05-18 10:28:05 -0700 | [diff] [blame] | 876 | ip->i_df.if_format = XFS_DINODE_FMT_DEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | flags |= XFS_ILOG_DEV; |
| 878 | break; |
| 879 | case S_IFREG: |
| 880 | case S_IFDIR: |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 881 | if (pip && (pip->i_diflags & XFS_DIFLAG_ANY)) |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 882 | xfs_inode_inherit_flags(ip, pip); |
Christoph Hellwig | 3e09ab8 | 2021-03-29 11:11:45 -0700 | [diff] [blame] | 883 | if (pip && (pip->i_diflags2 & XFS_DIFLAG2_ANY)) |
Darrick J. Wong | 8a569d7 | 2020-09-13 10:16:40 -0700 | [diff] [blame] | 884 | xfs_inode_inherit_flags2(ip, pip); |
Gustavo A. R. Silva | 53004ee | 2021-04-20 17:54:36 -0500 | [diff] [blame] | 885 | fallthrough; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | case S_IFLNK: |
Christoph Hellwig | f7e67b2 | 2020-05-18 10:28:05 -0700 | [diff] [blame] | 887 | ip->i_df.if_format = XFS_DINODE_FMT_EXTENTS; |
Christoph Hellwig | fcacbc3 | 2018-07-17 16:51:50 -0700 | [diff] [blame] | 888 | ip->i_df.if_bytes = 0; |
Christoph Hellwig | 6bdcf26 | 2017-11-03 10:34:46 -0700 | [diff] [blame] | 889 | ip->i_df.if_u1.if_root = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | break; |
| 891 | default: |
| 892 | ASSERT(0); |
| 893 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | |
| 895 | /* |
Dave Chinner | e6a688c | 2021-03-22 09:52:03 -0700 | [diff] [blame] | 896 | * If we need to create attributes immediately after allocating the |
| 897 | * inode, initialise an empty attribute fork right now. We use the |
| 898 | * default fork offset for attributes here as we don't know exactly what |
| 899 | * size or how many attributes we might be adding. We can do this |
| 900 | * safely here because we know the data fork is completely empty and |
| 901 | * this saves us from needing to run a separate transaction to set the |
| 902 | * fork offset in the immediate future. |
| 903 | */ |
Dave Chinner | 38c26bf | 2021-08-18 18:46:37 -0700 | [diff] [blame] | 904 | if (init_xattrs && xfs_has_attr(mp)) { |
Christoph Hellwig | 7821ea3 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 905 | ip->i_forkoff = xfs_default_attroffset(ip) >> 3; |
Dave Chinner | e6a688c | 2021-03-22 09:52:03 -0700 | [diff] [blame] | 906 | ip->i_afp = xfs_ifork_alloc(XFS_DINODE_FMT_EXTENTS, 0); |
| 907 | } |
| 908 | |
| 909 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | * Log the new values stuffed into the inode. |
| 911 | */ |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 912 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | xfs_trans_log_inode(tp, ip, flags); |
| 914 | |
Dave Chinner | 58c9047 | 2015-02-23 22:38:08 +1100 | [diff] [blame] | 915 | /* now that we have an i_mode we can setup the inode structure */ |
Christoph Hellwig | 41be8be | 2008-08-13 16:23:13 +1000 | [diff] [blame] | 916 | xfs_setup_inode(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | |
| 918 | *ipp = ip; |
| 919 | return 0; |
| 920 | } |
| 921 | |
Dave Chinner | e546cb7 | 2013-08-12 20:49:47 +1000 | [diff] [blame] | 922 | /* |
Dave Chinner | 54d7b5c | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 923 | * Decrement the link count on an inode & log the change. If this causes the |
| 924 | * link count to go to zero, move the inode to AGI unlinked list so that it can |
| 925 | * be freed when the last active reference goes away via xfs_inactive(). |
Dave Chinner | e546cb7 | 2013-08-12 20:49:47 +1000 | [diff] [blame] | 926 | */ |
Eric Sandeen | 0d5a75e | 2016-06-01 17:38:15 +1000 | [diff] [blame] | 927 | static int /* error */ |
Dave Chinner | e546cb7 | 2013-08-12 20:49:47 +1000 | [diff] [blame] | 928 | xfs_droplink( |
| 929 | xfs_trans_t *tp, |
| 930 | xfs_inode_t *ip) |
| 931 | { |
Dave Chinner | e546cb7 | 2013-08-12 20:49:47 +1000 | [diff] [blame] | 932 | xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG); |
| 933 | |
Dave Chinner | e546cb7 | 2013-08-12 20:49:47 +1000 | [diff] [blame] | 934 | drop_nlink(VFS_I(ip)); |
| 935 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 936 | |
Dave Chinner | 54d7b5c | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 937 | if (VFS_I(ip)->i_nlink) |
| 938 | return 0; |
| 939 | |
| 940 | return xfs_iunlink(tp, ip); |
Dave Chinner | e546cb7 | 2013-08-12 20:49:47 +1000 | [diff] [blame] | 941 | } |
| 942 | |
| 943 | /* |
Dave Chinner | e546cb7 | 2013-08-12 20:49:47 +1000 | [diff] [blame] | 944 | * Increment the link count on an inode & log the change. |
| 945 | */ |
Eric Sandeen | 9108326 | 2019-05-01 20:26:30 -0700 | [diff] [blame] | 946 | static void |
Dave Chinner | e546cb7 | 2013-08-12 20:49:47 +1000 | [diff] [blame] | 947 | xfs_bumplink( |
| 948 | xfs_trans_t *tp, |
| 949 | xfs_inode_t *ip) |
| 950 | { |
| 951 | xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG); |
| 952 | |
Dave Chinner | e546cb7 | 2013-08-12 20:49:47 +1000 | [diff] [blame] | 953 | inc_nlink(VFS_I(ip)); |
Dave Chinner | e546cb7 | 2013-08-12 20:49:47 +1000 | [diff] [blame] | 954 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
Dave Chinner | e546cb7 | 2013-08-12 20:49:47 +1000 | [diff] [blame] | 955 | } |
| 956 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 957 | int |
| 958 | xfs_create( |
Christoph Hellwig | f736d93 | 2021-01-21 14:19:58 +0100 | [diff] [blame] | 959 | struct user_namespace *mnt_userns, |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 960 | xfs_inode_t *dp, |
| 961 | struct xfs_name *name, |
| 962 | umode_t mode, |
Christoph Hellwig | 66f3646 | 2017-10-19 11:07:09 -0700 | [diff] [blame] | 963 | dev_t rdev, |
Dave Chinner | e6a688c | 2021-03-22 09:52:03 -0700 | [diff] [blame] | 964 | bool init_xattrs, |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 965 | xfs_inode_t **ipp) |
| 966 | { |
| 967 | int is_dir = S_ISDIR(mode); |
| 968 | struct xfs_mount *mp = dp->i_mount; |
| 969 | struct xfs_inode *ip = NULL; |
| 970 | struct xfs_trans *tp = NULL; |
| 971 | int error; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 972 | bool unlock_dp_on_error = false; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 973 | prid_t prid; |
| 974 | struct xfs_dquot *udqp = NULL; |
| 975 | struct xfs_dquot *gdqp = NULL; |
| 976 | struct xfs_dquot *pdqp = NULL; |
Brian Foster | 062647a | 2014-11-28 14:00:16 +1100 | [diff] [blame] | 977 | struct xfs_trans_res *tres; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 978 | uint resblks; |
Dave Chinner | b652afd | 2021-06-02 10:48:24 +1000 | [diff] [blame] | 979 | xfs_ino_t ino; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 980 | |
| 981 | trace_xfs_create(dp, name); |
| 982 | |
Dave Chinner | 75c8c50f | 2021-08-18 18:46:53 -0700 | [diff] [blame] | 983 | if (xfs_is_shutdown(mp)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 984 | return -EIO; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 985 | |
Zhi Yong Wu | 163467d | 2013-12-18 08:22:39 +0800 | [diff] [blame] | 986 | prid = xfs_get_initial_prid(dp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 987 | |
| 988 | /* |
| 989 | * Make sure that we have allocated dquot(s) on disk. |
| 990 | */ |
Christian Brauner | a65e58e | 2021-03-20 13:26:22 +0100 | [diff] [blame] | 991 | error = xfs_qm_vop_dqalloc(dp, mapped_fsuid(mnt_userns), |
| 992 | mapped_fsgid(mnt_userns), prid, |
Darrick J. Wong | b5a0842 | 2021-03-02 09:32:52 -0800 | [diff] [blame] | 993 | XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, |
| 994 | &udqp, &gdqp, &pdqp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 995 | if (error) |
| 996 | return error; |
| 997 | |
| 998 | if (is_dir) { |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 999 | resblks = XFS_MKDIR_SPACE_RES(mp, name->len); |
Brian Foster | 062647a | 2014-11-28 14:00:16 +1100 | [diff] [blame] | 1000 | tres = &M_RES(mp)->tr_mkdir; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1001 | } else { |
| 1002 | resblks = XFS_CREATE_SPACE_RES(mp, name->len); |
Brian Foster | 062647a | 2014-11-28 14:00:16 +1100 | [diff] [blame] | 1003 | tres = &M_RES(mp)->tr_create; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1004 | } |
| 1005 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1006 | /* |
| 1007 | * Initially assume that the file does not exist and |
| 1008 | * reserve the resources for that case. If that is not |
| 1009 | * the case we'll drop the one we have and get a more |
| 1010 | * appropriate transaction later. |
| 1011 | */ |
Darrick J. Wong | f2f7b9f | 2021-01-27 12:07:57 -0800 | [diff] [blame] | 1012 | error = xfs_trans_alloc_icreate(mp, tres, udqp, gdqp, pdqp, resblks, |
| 1013 | &tp); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1014 | if (error == -ENOSPC) { |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1015 | /* flush outstanding delalloc blocks and retry */ |
| 1016 | xfs_flush_inodes(mp); |
Darrick J. Wong | f2f7b9f | 2021-01-27 12:07:57 -0800 | [diff] [blame] | 1017 | error = xfs_trans_alloc_icreate(mp, tres, udqp, gdqp, pdqp, |
| 1018 | resblks, &tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1019 | } |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1020 | if (error) |
Darrick J. Wong | f2f7b9f | 2021-01-27 12:07:57 -0800 | [diff] [blame] | 1021 | goto out_release_dquots; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1022 | |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 1023 | xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1024 | unlock_dp_on_error = true; |
| 1025 | |
Chandan Babu R | f5d9274 | 2021-01-22 16:48:12 -0800 | [diff] [blame] | 1026 | error = xfs_iext_count_may_overflow(dp, XFS_DATA_FORK, |
| 1027 | XFS_IEXT_DIR_MANIP_CNT(mp)); |
| 1028 | if (error) |
| 1029 | goto out_trans_cancel; |
| 1030 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1031 | /* |
| 1032 | * A newly created regular or special file just has one directory |
| 1033 | * entry pointing to them, but a directory also the "." entry |
| 1034 | * pointing to itself. |
| 1035 | */ |
Dave Chinner | b652afd | 2021-06-02 10:48:24 +1000 | [diff] [blame] | 1036 | error = xfs_dialloc(&tp, dp->i_ino, mode, &ino); |
| 1037 | if (!error) |
| 1038 | error = xfs_init_new_inode(mnt_userns, tp, dp, ino, mode, |
| 1039 | is_dir ? 2 : 1, rdev, prid, init_xattrs, &ip); |
Jan Kara | d6077aa | 2015-07-29 11:52:08 +1000 | [diff] [blame] | 1040 | if (error) |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1041 | goto out_trans_cancel; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1042 | |
| 1043 | /* |
| 1044 | * Now we join the directory inode to the transaction. We do not do it |
Dave Chinner | b652afd | 2021-06-02 10:48:24 +1000 | [diff] [blame] | 1045 | * earlier because xfs_dialloc might commit the previous transaction |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1046 | * (and release all the locks). An error from here on will result in |
| 1047 | * the transaction cancel unlocking dp so don't do it explicitly in the |
| 1048 | * error path. |
| 1049 | */ |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 1050 | xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1051 | unlock_dp_on_error = false; |
| 1052 | |
Brian Foster | 381eee6 | 2018-07-11 22:26:21 -0700 | [diff] [blame] | 1053 | error = xfs_dir_createname(tp, dp, name, ip->i_ino, |
Kaixu Xia | 63337b6 | 2020-03-27 08:28:39 -0700 | [diff] [blame] | 1054 | resblks - XFS_IALLOC_SPACE_RES(mp)); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1055 | if (error) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1056 | ASSERT(error != -ENOSPC); |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1057 | goto out_trans_cancel; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1058 | } |
| 1059 | xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
| 1060 | xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE); |
| 1061 | |
| 1062 | if (is_dir) { |
| 1063 | error = xfs_dir_init(tp, ip, dp); |
| 1064 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 1065 | goto out_trans_cancel; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1066 | |
Eric Sandeen | 9108326 | 2019-05-01 20:26:30 -0700 | [diff] [blame] | 1067 | xfs_bumplink(tp, dp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1068 | } |
| 1069 | |
| 1070 | /* |
| 1071 | * If this is a synchronous mount, make sure that the |
| 1072 | * create transaction goes to disk before returning to |
| 1073 | * the user. |
| 1074 | */ |
Dave Chinner | 0560f31 | 2021-08-18 18:46:52 -0700 | [diff] [blame] | 1075 | if (xfs_has_wsync(mp) || xfs_has_dirsync(mp)) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1076 | xfs_trans_set_sync(tp); |
| 1077 | |
| 1078 | /* |
| 1079 | * Attach the dquot(s) to the inodes and modify them incore. |
| 1080 | * These ids of the inode couldn't have changed since the new |
| 1081 | * inode has been locked ever since it was created. |
| 1082 | */ |
| 1083 | xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp); |
| 1084 | |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 1085 | error = xfs_trans_commit(tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1086 | if (error) |
| 1087 | goto out_release_inode; |
| 1088 | |
| 1089 | xfs_qm_dqrele(udqp); |
| 1090 | xfs_qm_dqrele(gdqp); |
| 1091 | xfs_qm_dqrele(pdqp); |
| 1092 | |
| 1093 | *ipp = ip; |
| 1094 | return 0; |
| 1095 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1096 | out_trans_cancel: |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1097 | xfs_trans_cancel(tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1098 | out_release_inode: |
| 1099 | /* |
Dave Chinner | 58c9047 | 2015-02-23 22:38:08 +1100 | [diff] [blame] | 1100 | * Wait until after the current transaction is aborted to finish the |
| 1101 | * setup of the inode and release the inode. This prevents recursive |
| 1102 | * transactions and deadlocks from xfs_inactive. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1103 | */ |
Dave Chinner | 58c9047 | 2015-02-23 22:38:08 +1100 | [diff] [blame] | 1104 | if (ip) { |
| 1105 | xfs_finish_inode_setup(ip); |
Darrick J. Wong | 44a8736 | 2018-07-25 12:52:32 -0700 | [diff] [blame] | 1106 | xfs_irele(ip); |
Dave Chinner | 58c9047 | 2015-02-23 22:38:08 +1100 | [diff] [blame] | 1107 | } |
Darrick J. Wong | f2f7b9f | 2021-01-27 12:07:57 -0800 | [diff] [blame] | 1108 | out_release_dquots: |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1109 | xfs_qm_dqrele(udqp); |
| 1110 | xfs_qm_dqrele(gdqp); |
| 1111 | xfs_qm_dqrele(pdqp); |
| 1112 | |
| 1113 | if (unlock_dp_on_error) |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 1114 | xfs_iunlock(dp, XFS_ILOCK_EXCL); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1115 | return error; |
| 1116 | } |
| 1117 | |
| 1118 | int |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1119 | xfs_create_tmpfile( |
Christoph Hellwig | f736d93 | 2021-01-21 14:19:58 +0100 | [diff] [blame] | 1120 | struct user_namespace *mnt_userns, |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1121 | struct xfs_inode *dp, |
Brian Foster | 330033d | 2014-04-17 08:15:30 +1000 | [diff] [blame] | 1122 | umode_t mode, |
| 1123 | struct xfs_inode **ipp) |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1124 | { |
| 1125 | struct xfs_mount *mp = dp->i_mount; |
| 1126 | struct xfs_inode *ip = NULL; |
| 1127 | struct xfs_trans *tp = NULL; |
| 1128 | int error; |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1129 | prid_t prid; |
| 1130 | struct xfs_dquot *udqp = NULL; |
| 1131 | struct xfs_dquot *gdqp = NULL; |
| 1132 | struct xfs_dquot *pdqp = NULL; |
| 1133 | struct xfs_trans_res *tres; |
| 1134 | uint resblks; |
Dave Chinner | b652afd | 2021-06-02 10:48:24 +1000 | [diff] [blame] | 1135 | xfs_ino_t ino; |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1136 | |
Dave Chinner | 75c8c50f | 2021-08-18 18:46:53 -0700 | [diff] [blame] | 1137 | if (xfs_is_shutdown(mp)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1138 | return -EIO; |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1139 | |
| 1140 | prid = xfs_get_initial_prid(dp); |
| 1141 | |
| 1142 | /* |
| 1143 | * Make sure that we have allocated dquot(s) on disk. |
| 1144 | */ |
Christian Brauner | a65e58e | 2021-03-20 13:26:22 +0100 | [diff] [blame] | 1145 | error = xfs_qm_vop_dqalloc(dp, mapped_fsuid(mnt_userns), |
| 1146 | mapped_fsgid(mnt_userns), prid, |
Darrick J. Wong | b5a0842 | 2021-03-02 09:32:52 -0800 | [diff] [blame] | 1147 | XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, |
| 1148 | &udqp, &gdqp, &pdqp); |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1149 | if (error) |
| 1150 | return error; |
| 1151 | |
| 1152 | resblks = XFS_IALLOC_SPACE_RES(mp); |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1153 | tres = &M_RES(mp)->tr_create_tmpfile; |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 1154 | |
Darrick J. Wong | f2f7b9f | 2021-01-27 12:07:57 -0800 | [diff] [blame] | 1155 | error = xfs_trans_alloc_icreate(mp, tres, udqp, gdqp, pdqp, resblks, |
| 1156 | &tp); |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1157 | if (error) |
Darrick J. Wong | f2f7b9f | 2021-01-27 12:07:57 -0800 | [diff] [blame] | 1158 | goto out_release_dquots; |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1159 | |
Dave Chinner | b652afd | 2021-06-02 10:48:24 +1000 | [diff] [blame] | 1160 | error = xfs_dialloc(&tp, dp->i_ino, mode, &ino); |
| 1161 | if (!error) |
| 1162 | error = xfs_init_new_inode(mnt_userns, tp, dp, ino, mode, |
| 1163 | 0, 0, prid, false, &ip); |
Jan Kara | d6077aa | 2015-07-29 11:52:08 +1000 | [diff] [blame] | 1164 | if (error) |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1165 | goto out_trans_cancel; |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1166 | |
Dave Chinner | 0560f31 | 2021-08-18 18:46:52 -0700 | [diff] [blame] | 1167 | if (xfs_has_wsync(mp)) |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1168 | xfs_trans_set_sync(tp); |
| 1169 | |
| 1170 | /* |
| 1171 | * Attach the dquot(s) to the inodes and modify them incore. |
| 1172 | * These ids of the inode couldn't have changed since the new |
| 1173 | * inode has been locked ever since it was created. |
| 1174 | */ |
| 1175 | xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp); |
| 1176 | |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1177 | error = xfs_iunlink(tp, ip); |
| 1178 | if (error) |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1179 | goto out_trans_cancel; |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1180 | |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 1181 | error = xfs_trans_commit(tp); |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1182 | if (error) |
| 1183 | goto out_release_inode; |
| 1184 | |
| 1185 | xfs_qm_dqrele(udqp); |
| 1186 | xfs_qm_dqrele(gdqp); |
| 1187 | xfs_qm_dqrele(pdqp); |
| 1188 | |
Brian Foster | 330033d | 2014-04-17 08:15:30 +1000 | [diff] [blame] | 1189 | *ipp = ip; |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1190 | return 0; |
| 1191 | |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1192 | out_trans_cancel: |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1193 | xfs_trans_cancel(tp); |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1194 | out_release_inode: |
| 1195 | /* |
Dave Chinner | 58c9047 | 2015-02-23 22:38:08 +1100 | [diff] [blame] | 1196 | * Wait until after the current transaction is aborted to finish the |
| 1197 | * setup of the inode and release the inode. This prevents recursive |
| 1198 | * transactions and deadlocks from xfs_inactive. |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1199 | */ |
Dave Chinner | 58c9047 | 2015-02-23 22:38:08 +1100 | [diff] [blame] | 1200 | if (ip) { |
| 1201 | xfs_finish_inode_setup(ip); |
Darrick J. Wong | 44a8736 | 2018-07-25 12:52:32 -0700 | [diff] [blame] | 1202 | xfs_irele(ip); |
Dave Chinner | 58c9047 | 2015-02-23 22:38:08 +1100 | [diff] [blame] | 1203 | } |
Darrick J. Wong | f2f7b9f | 2021-01-27 12:07:57 -0800 | [diff] [blame] | 1204 | out_release_dquots: |
Zhi Yong Wu | 99b6436 | 2013-12-18 08:22:40 +0800 | [diff] [blame] | 1205 | xfs_qm_dqrele(udqp); |
| 1206 | xfs_qm_dqrele(gdqp); |
| 1207 | xfs_qm_dqrele(pdqp); |
| 1208 | |
| 1209 | return error; |
| 1210 | } |
| 1211 | |
| 1212 | int |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1213 | xfs_link( |
| 1214 | xfs_inode_t *tdp, |
| 1215 | xfs_inode_t *sip, |
| 1216 | struct xfs_name *target_name) |
| 1217 | { |
| 1218 | xfs_mount_t *mp = tdp->i_mount; |
| 1219 | xfs_trans_t *tp; |
| 1220 | int error; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1221 | int resblks; |
| 1222 | |
| 1223 | trace_xfs_link(tdp, target_name); |
| 1224 | |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 1225 | ASSERT(!S_ISDIR(VFS_I(sip)->i_mode)); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1226 | |
Dave Chinner | 75c8c50f | 2021-08-18 18:46:53 -0700 | [diff] [blame] | 1227 | if (xfs_is_shutdown(mp)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1228 | return -EIO; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1229 | |
Darrick J. Wong | c14cfcc | 2018-05-04 15:30:21 -0700 | [diff] [blame] | 1230 | error = xfs_qm_dqattach(sip); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1231 | if (error) |
| 1232 | goto std_return; |
| 1233 | |
Darrick J. Wong | c14cfcc | 2018-05-04 15:30:21 -0700 | [diff] [blame] | 1234 | error = xfs_qm_dqattach(tdp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1235 | if (error) |
| 1236 | goto std_return; |
| 1237 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1238 | resblks = XFS_LINK_SPACE_RES(mp, target_name->len); |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 1239 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_link, resblks, 0, 0, &tp); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1240 | if (error == -ENOSPC) { |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1241 | resblks = 0; |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 1242 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_link, 0, 0, 0, &tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1243 | } |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1244 | if (error) |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 1245 | goto std_return; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1246 | |
Darrick J. Wong | 7c2d238 | 2018-01-26 15:27:33 -0800 | [diff] [blame] | 1247 | xfs_lock_two_inodes(sip, XFS_ILOCK_EXCL, tdp, XFS_ILOCK_EXCL); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1248 | |
| 1249 | xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL); |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 1250 | xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1251 | |
Chandan Babu R | f5d9274 | 2021-01-22 16:48:12 -0800 | [diff] [blame] | 1252 | error = xfs_iext_count_may_overflow(tdp, XFS_DATA_FORK, |
| 1253 | XFS_IEXT_DIR_MANIP_CNT(mp)); |
| 1254 | if (error) |
| 1255 | goto error_return; |
| 1256 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1257 | /* |
| 1258 | * If we are using project inheritance, we only allow hard link |
| 1259 | * creation in our tree when the project IDs are the same; else |
| 1260 | * the tree quota mechanism could be circumvented. |
| 1261 | */ |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 1262 | if (unlikely((tdp->i_diflags & XFS_DIFLAG_PROJINHERIT) && |
Christoph Hellwig | ceaf603 | 2021-03-29 11:11:39 -0700 | [diff] [blame] | 1263 | tdp->i_projid != sip->i_projid)) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1264 | error = -EXDEV; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1265 | goto error_return; |
| 1266 | } |
| 1267 | |
Eric Sandeen | 94f3cad | 2014-09-09 11:57:52 +1000 | [diff] [blame] | 1268 | if (!resblks) { |
| 1269 | error = xfs_dir_canenter(tp, tdp, target_name); |
| 1270 | if (error) |
| 1271 | goto error_return; |
| 1272 | } |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1273 | |
Dave Chinner | 54d7b5c | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 1274 | /* |
| 1275 | * Handle initial link state of O_TMPFILE inode |
| 1276 | */ |
| 1277 | if (VFS_I(sip)->i_nlink == 0) { |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 1278 | struct xfs_perag *pag; |
| 1279 | |
| 1280 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, sip->i_ino)); |
| 1281 | error = xfs_iunlink_remove(tp, pag, sip); |
| 1282 | xfs_perag_put(pag); |
Zhi Yong Wu | ab29743 | 2013-12-18 08:22:41 +0800 | [diff] [blame] | 1283 | if (error) |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1284 | goto error_return; |
Zhi Yong Wu | ab29743 | 2013-12-18 08:22:41 +0800 | [diff] [blame] | 1285 | } |
| 1286 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1287 | error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino, |
Brian Foster | 381eee6 | 2018-07-11 22:26:21 -0700 | [diff] [blame] | 1288 | resblks); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1289 | if (error) |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1290 | goto error_return; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1291 | xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
| 1292 | xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE); |
| 1293 | |
Eric Sandeen | 9108326 | 2019-05-01 20:26:30 -0700 | [diff] [blame] | 1294 | xfs_bumplink(tp, sip); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1295 | |
| 1296 | /* |
| 1297 | * If this is a synchronous mount, make sure that the |
| 1298 | * link transaction goes to disk before returning to |
| 1299 | * the user. |
| 1300 | */ |
Dave Chinner | 0560f31 | 2021-08-18 18:46:52 -0700 | [diff] [blame] | 1301 | if (xfs_has_wsync(mp) || xfs_has_dirsync(mp)) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1302 | xfs_trans_set_sync(tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1303 | |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 1304 | return xfs_trans_commit(tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1305 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1306 | error_return: |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1307 | xfs_trans_cancel(tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1308 | std_return: |
| 1309 | return error; |
| 1310 | } |
| 1311 | |
Darrick J. Wong | 363e59b | 2017-12-14 15:42:59 -0800 | [diff] [blame] | 1312 | /* Clear the reflink flag and the cowblocks tag if possible. */ |
| 1313 | static void |
| 1314 | xfs_itruncate_clear_reflink_flags( |
| 1315 | struct xfs_inode *ip) |
| 1316 | { |
| 1317 | struct xfs_ifork *dfork; |
| 1318 | struct xfs_ifork *cfork; |
| 1319 | |
| 1320 | if (!xfs_is_reflink_inode(ip)) |
| 1321 | return; |
| 1322 | dfork = XFS_IFORK_PTR(ip, XFS_DATA_FORK); |
| 1323 | cfork = XFS_IFORK_PTR(ip, XFS_COW_FORK); |
| 1324 | if (dfork->if_bytes == 0 && cfork->if_bytes == 0) |
Christoph Hellwig | 3e09ab8 | 2021-03-29 11:11:45 -0700 | [diff] [blame] | 1325 | ip->i_diflags2 &= ~XFS_DIFLAG2_REFLINK; |
Darrick J. Wong | 363e59b | 2017-12-14 15:42:59 -0800 | [diff] [blame] | 1326 | if (cfork->if_bytes == 0) |
| 1327 | xfs_inode_clear_cowblocks_tag(ip); |
| 1328 | } |
| 1329 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | /* |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1331 | * Free up the underlying blocks past new_size. The new size must be smaller |
| 1332 | * than the current size. This routine can be used both for the attribute and |
| 1333 | * data fork, and does not modify the inode size, which is left to the caller. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | * |
David Chinner | f648505 | 2008-04-17 16:50:04 +1000 | [diff] [blame] | 1335 | * The transaction passed to this routine must have made a permanent log |
| 1336 | * reservation of at least XFS_ITRUNCATE_LOG_RES. This routine may commit the |
| 1337 | * given transaction and start new ones, so make sure everything involved in |
| 1338 | * the transaction is tidy before calling here. Some transaction will be |
| 1339 | * returned to the caller to be committed. The incoming transaction must |
| 1340 | * already include the inode, and both inode locks must be held exclusively. |
| 1341 | * The inode must also be "held" within the transaction. On return the inode |
| 1342 | * will be "held" within the returned transaction. This routine does NOT |
| 1343 | * require any disk space to be reserved for it within the transaction. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | * |
David Chinner | f648505 | 2008-04-17 16:50:04 +1000 | [diff] [blame] | 1345 | * If we get an error, we must return with the inode locked and linked into the |
| 1346 | * current transaction. This keeps things simple for the higher level code, |
| 1347 | * because it always knows that the inode is locked and held in the transaction |
| 1348 | * that returns to it whether errors occur or not. We don't mark the inode |
| 1349 | * dirty on error so that transactions can be easily aborted if possible. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | */ |
| 1351 | int |
Brian Foster | 4e52933 | 2018-05-10 09:35:42 -0700 | [diff] [blame] | 1352 | xfs_itruncate_extents_flags( |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1353 | struct xfs_trans **tpp, |
| 1354 | struct xfs_inode *ip, |
| 1355 | int whichfork, |
Brian Foster | 13b86fc | 2018-05-09 08:45:04 -0700 | [diff] [blame] | 1356 | xfs_fsize_t new_size, |
Brian Foster | 4e52933 | 2018-05-10 09:35:42 -0700 | [diff] [blame] | 1357 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | { |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1359 | struct xfs_mount *mp = ip->i_mount; |
| 1360 | struct xfs_trans *tp = *tpp; |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1361 | xfs_fileoff_t first_unmap_block; |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1362 | xfs_filblks_t unmap_len; |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1363 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | |
Christoph Hellwig | 0b56185 | 2012-07-04 11:13:31 -0400 | [diff] [blame] | 1365 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); |
| 1366 | ASSERT(!atomic_read(&VFS_I(ip)->i_count) || |
| 1367 | xfs_isilocked(ip, XFS_IOLOCK_EXCL)); |
Christoph Hellwig | ce7ae151 | 2011-12-18 20:00:11 +0000 | [diff] [blame] | 1368 | ASSERT(new_size <= XFS_ISIZE(ip)); |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1369 | ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | ASSERT(ip->i_itemp != NULL); |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1371 | ASSERT(ip->i_itemp->ili_lock_flags == 0); |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1372 | ASSERT(!XFS_NOT_DQATTACHED(mp, ip)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | |
Christoph Hellwig | 673e8e5 | 2011-12-18 20:00:04 +0000 | [diff] [blame] | 1374 | trace_xfs_itruncate_extents_start(ip, new_size); |
| 1375 | |
Brian Foster | 4e52933 | 2018-05-10 09:35:42 -0700 | [diff] [blame] | 1376 | flags |= xfs_bmapi_aflag(whichfork); |
Brian Foster | 13b86fc | 2018-05-09 08:45:04 -0700 | [diff] [blame] | 1377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | /* |
| 1379 | * Since it is possible for space to become allocated beyond |
| 1380 | * the end of the file (in a crash where the space is allocated |
| 1381 | * but the inode size is not yet updated), simply remove any |
| 1382 | * blocks which show up between the new EOF and the maximum |
Darrick J. Wong | 4bbb04a | 2020-01-02 13:20:13 -0800 | [diff] [blame] | 1383 | * possible file size. |
| 1384 | * |
| 1385 | * We have to free all the blocks to the bmbt maximum offset, even if |
| 1386 | * the page cache can't scale that far. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | */ |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1388 | first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size); |
Darrick J. Wong | 33005fd | 2020-12-04 13:28:35 -0800 | [diff] [blame] | 1389 | if (!xfs_verify_fileoff(mp, first_unmap_block)) { |
Darrick J. Wong | 4bbb04a | 2020-01-02 13:20:13 -0800 | [diff] [blame] | 1390 | WARN_ON_ONCE(first_unmap_block > XFS_MAX_FILEOFF); |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1391 | return 0; |
Darrick J. Wong | 4bbb04a | 2020-01-02 13:20:13 -0800 | [diff] [blame] | 1392 | } |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1393 | |
Darrick J. Wong | 4bbb04a | 2020-01-02 13:20:13 -0800 | [diff] [blame] | 1394 | unmap_len = XFS_MAX_FILEOFF - first_unmap_block + 1; |
| 1395 | while (unmap_len > 0) { |
Brian Foster | 02dff7b | 2018-07-24 13:43:07 -0700 | [diff] [blame] | 1396 | ASSERT(tp->t_firstblock == NULLFSBLOCK); |
Darrick J. Wong | 4bbb04a | 2020-01-02 13:20:13 -0800 | [diff] [blame] | 1397 | error = __xfs_bunmapi(tp, ip, first_unmap_block, &unmap_len, |
| 1398 | flags, XFS_ITRUNC_MAX_EXTENTS); |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1399 | if (error) |
Brian Foster | d5a2e28 | 2018-09-29 13:41:58 +1000 | [diff] [blame] | 1400 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | |
Brian Foster | 6dd379c | 2020-09-15 20:44:46 -0700 | [diff] [blame] | 1402 | /* free the just unmapped extents */ |
Brian Foster | 9e28a24 | 2018-07-24 13:43:15 -0700 | [diff] [blame] | 1403 | error = xfs_defer_finish(&tp); |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1404 | if (error) |
Brian Foster | 9b1f4e9 | 2018-08-01 07:20:33 -0700 | [diff] [blame] | 1405 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | } |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1407 | |
Darrick J. Wong | 4919d42 | 2018-04-10 08:28:33 -0700 | [diff] [blame] | 1408 | if (whichfork == XFS_DATA_FORK) { |
| 1409 | /* Remove all pending CoW reservations. */ |
| 1410 | error = xfs_reflink_cancel_cow_blocks(ip, &tp, |
Darrick J. Wong | 4bbb04a | 2020-01-02 13:20:13 -0800 | [diff] [blame] | 1411 | first_unmap_block, XFS_MAX_FILEOFF, true); |
Darrick J. Wong | 4919d42 | 2018-04-10 08:28:33 -0700 | [diff] [blame] | 1412 | if (error) |
| 1413 | goto out; |
Darrick J. Wong | aa8968f | 2016-10-03 09:11:38 -0700 | [diff] [blame] | 1414 | |
Darrick J. Wong | 4919d42 | 2018-04-10 08:28:33 -0700 | [diff] [blame] | 1415 | xfs_itruncate_clear_reflink_flags(ip); |
| 1416 | } |
Darrick J. Wong | aa8968f | 2016-10-03 09:11:38 -0700 | [diff] [blame] | 1417 | |
Christoph Hellwig | 673e8e5 | 2011-12-18 20:00:04 +0000 | [diff] [blame] | 1418 | /* |
| 1419 | * Always re-log the inode so that our permanent transaction can keep |
| 1420 | * on rolling it forward in the log. |
| 1421 | */ |
| 1422 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 1423 | |
| 1424 | trace_xfs_itruncate_extents_end(ip, new_size); |
| 1425 | |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1426 | out: |
| 1427 | *tpp = tp; |
| 1428 | return error; |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 1429 | } |
| 1430 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1431 | int |
| 1432 | xfs_release( |
| 1433 | xfs_inode_t *ip) |
| 1434 | { |
| 1435 | xfs_mount_t *mp = ip->i_mount; |
Darrick J. Wong | 7d88329 | 2021-03-23 16:59:31 -0700 | [diff] [blame] | 1436 | int error = 0; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1437 | |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 1438 | if (!S_ISREG(VFS_I(ip)->i_mode) || (VFS_I(ip)->i_mode == 0)) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1439 | return 0; |
| 1440 | |
| 1441 | /* If this is a read-only mount, don't do this (would generate I/O) */ |
Dave Chinner | 2e973b2 | 2021-08-18 18:46:52 -0700 | [diff] [blame] | 1442 | if (xfs_is_readonly(mp)) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1443 | return 0; |
| 1444 | |
Dave Chinner | 75c8c50f | 2021-08-18 18:46:53 -0700 | [diff] [blame] | 1445 | if (!xfs_is_shutdown(mp)) { |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1446 | int truncated; |
| 1447 | |
| 1448 | /* |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1449 | * If we previously truncated this file and removed old data |
| 1450 | * in the process, we want to initiate "early" writeout on |
| 1451 | * the last close. This is an attempt to combat the notorious |
| 1452 | * NULL files problem which is particularly noticeable from a |
| 1453 | * truncate down, buffered (re-)write (delalloc), followed by |
| 1454 | * a crash. What we are effectively doing here is |
| 1455 | * significantly reducing the time window where we'd otherwise |
| 1456 | * be exposed to that problem. |
| 1457 | */ |
| 1458 | truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED); |
| 1459 | if (truncated) { |
| 1460 | xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE); |
Dave Chinner | eac152b | 2014-08-04 13:22:49 +1000 | [diff] [blame] | 1461 | if (ip->i_delayed_blks > 0) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1462 | error = filemap_flush(VFS_I(ip)->i_mapping); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1463 | if (error) |
| 1464 | return error; |
| 1465 | } |
| 1466 | } |
| 1467 | } |
| 1468 | |
Dave Chinner | 54d7b5c | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 1469 | if (VFS_I(ip)->i_nlink == 0) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1470 | return 0; |
| 1471 | |
Darrick J. Wong | 7d88329 | 2021-03-23 16:59:31 -0700 | [diff] [blame] | 1472 | /* |
| 1473 | * If we can't get the iolock just skip truncating the blocks past EOF |
| 1474 | * because we could deadlock with the mmap_lock otherwise. We'll get |
| 1475 | * another chance to drop them once the last reference to the inode is |
| 1476 | * dropped, so we'll never leak blocks permanently. |
| 1477 | */ |
| 1478 | if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) |
| 1479 | return 0; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1480 | |
Darrick J. Wong | 7d88329 | 2021-03-23 16:59:31 -0700 | [diff] [blame] | 1481 | if (xfs_can_free_eofblocks(ip, false)) { |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1482 | /* |
Brian Foster | a36b926 | 2017-01-27 23:22:55 -0800 | [diff] [blame] | 1483 | * Check if the inode is being opened, written and closed |
| 1484 | * frequently and we have delayed allocation blocks outstanding |
| 1485 | * (e.g. streaming writes from the NFS server), truncating the |
| 1486 | * blocks past EOF will cause fragmentation to occur. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1487 | * |
Brian Foster | a36b926 | 2017-01-27 23:22:55 -0800 | [diff] [blame] | 1488 | * In this case don't do the truncation, but we have to be |
| 1489 | * careful how we detect this case. Blocks beyond EOF show up as |
| 1490 | * i_delayed_blks even when the inode is clean, so we need to |
| 1491 | * truncate them away first before checking for a dirty release. |
| 1492 | * Hence on the first dirty close we will still remove the |
| 1493 | * speculative allocation, but after that we will leave it in |
| 1494 | * place. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1495 | */ |
| 1496 | if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE)) |
Darrick J. Wong | 7d88329 | 2021-03-23 16:59:31 -0700 | [diff] [blame] | 1497 | goto out_unlock; |
| 1498 | |
| 1499 | error = xfs_free_eofblocks(ip); |
| 1500 | if (error) |
| 1501 | goto out_unlock; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1502 | |
| 1503 | /* delalloc blocks after truncation means it really is dirty */ |
| 1504 | if (ip->i_delayed_blks) |
| 1505 | xfs_iflags_set(ip, XFS_IDIRTY_RELEASE); |
| 1506 | } |
Darrick J. Wong | 7d88329 | 2021-03-23 16:59:31 -0700 | [diff] [blame] | 1507 | |
| 1508 | out_unlock: |
| 1509 | xfs_iunlock(ip, XFS_IOLOCK_EXCL); |
| 1510 | return error; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1511 | } |
| 1512 | |
| 1513 | /* |
Brian Foster | f7be2d7 | 2013-09-20 11:06:10 -0400 | [diff] [blame] | 1514 | * xfs_inactive_truncate |
| 1515 | * |
| 1516 | * Called to perform a truncate when an inode becomes unlinked. |
| 1517 | */ |
| 1518 | STATIC int |
| 1519 | xfs_inactive_truncate( |
| 1520 | struct xfs_inode *ip) |
| 1521 | { |
| 1522 | struct xfs_mount *mp = ip->i_mount; |
| 1523 | struct xfs_trans *tp; |
| 1524 | int error; |
| 1525 | |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 1526 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp); |
Brian Foster | f7be2d7 | 2013-09-20 11:06:10 -0400 | [diff] [blame] | 1527 | if (error) { |
Dave Chinner | 75c8c50f | 2021-08-18 18:46:53 -0700 | [diff] [blame] | 1528 | ASSERT(xfs_is_shutdown(mp)); |
Brian Foster | f7be2d7 | 2013-09-20 11:06:10 -0400 | [diff] [blame] | 1529 | return error; |
| 1530 | } |
Brian Foster | f7be2d7 | 2013-09-20 11:06:10 -0400 | [diff] [blame] | 1531 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 1532 | xfs_trans_ijoin(tp, ip, 0); |
| 1533 | |
| 1534 | /* |
| 1535 | * Log the inode size first to prevent stale data exposure in the event |
| 1536 | * of a system crash before the truncate completes. See the related |
Jan Kara | 69bca80 | 2016-05-26 14:46:43 +0200 | [diff] [blame] | 1537 | * comment in xfs_vn_setattr_size() for details. |
Brian Foster | f7be2d7 | 2013-09-20 11:06:10 -0400 | [diff] [blame] | 1538 | */ |
Christoph Hellwig | 13d2c10 | 2021-03-29 11:11:40 -0700 | [diff] [blame] | 1539 | ip->i_disk_size = 0; |
Brian Foster | f7be2d7 | 2013-09-20 11:06:10 -0400 | [diff] [blame] | 1540 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 1541 | |
| 1542 | error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0); |
| 1543 | if (error) |
| 1544 | goto error_trans_cancel; |
| 1545 | |
Christoph Hellwig | daf8396 | 2020-05-18 10:27:22 -0700 | [diff] [blame] | 1546 | ASSERT(ip->i_df.if_nextents == 0); |
Brian Foster | f7be2d7 | 2013-09-20 11:06:10 -0400 | [diff] [blame] | 1547 | |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 1548 | error = xfs_trans_commit(tp); |
Brian Foster | f7be2d7 | 2013-09-20 11:06:10 -0400 | [diff] [blame] | 1549 | if (error) |
| 1550 | goto error_unlock; |
| 1551 | |
| 1552 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 1553 | return 0; |
| 1554 | |
| 1555 | error_trans_cancel: |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1556 | xfs_trans_cancel(tp); |
Brian Foster | f7be2d7 | 2013-09-20 11:06:10 -0400 | [diff] [blame] | 1557 | error_unlock: |
| 1558 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 1559 | return error; |
| 1560 | } |
| 1561 | |
| 1562 | /* |
Brian Foster | 88877d2 | 2013-09-20 11:06:11 -0400 | [diff] [blame] | 1563 | * xfs_inactive_ifree() |
| 1564 | * |
| 1565 | * Perform the inode free when an inode is unlinked. |
| 1566 | */ |
| 1567 | STATIC int |
| 1568 | xfs_inactive_ifree( |
| 1569 | struct xfs_inode *ip) |
| 1570 | { |
Brian Foster | 88877d2 | 2013-09-20 11:06:11 -0400 | [diff] [blame] | 1571 | struct xfs_mount *mp = ip->i_mount; |
| 1572 | struct xfs_trans *tp; |
| 1573 | int error; |
| 1574 | |
Brian Foster | 9d43b18 | 2014-04-24 16:00:52 +1000 | [diff] [blame] | 1575 | /* |
Christoph Hellwig | 76d771b | 2017-01-25 07:49:35 -0800 | [diff] [blame] | 1576 | * We try to use a per-AG reservation for any block needed by the finobt |
| 1577 | * tree, but as the finobt feature predates the per-AG reservation |
| 1578 | * support a degraded file system might not have enough space for the |
| 1579 | * reservation at mount time. In that case try to dip into the reserved |
| 1580 | * pool and pray. |
Brian Foster | 9d43b18 | 2014-04-24 16:00:52 +1000 | [diff] [blame] | 1581 | * |
| 1582 | * Send a warning if the reservation does happen to fail, as the inode |
| 1583 | * now remains allocated and sits on the unlinked list until the fs is |
| 1584 | * repaired. |
| 1585 | */ |
Darrick J. Wong | e1f6ca1 | 2019-02-14 09:33:15 -0800 | [diff] [blame] | 1586 | if (unlikely(mp->m_finobt_nores)) { |
Christoph Hellwig | 76d771b | 2017-01-25 07:49:35 -0800 | [diff] [blame] | 1587 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ifree, |
| 1588 | XFS_IFREE_SPACE_RES(mp), 0, XFS_TRANS_RESERVE, |
| 1589 | &tp); |
| 1590 | } else { |
| 1591 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ifree, 0, 0, 0, &tp); |
| 1592 | } |
Brian Foster | 88877d2 | 2013-09-20 11:06:11 -0400 | [diff] [blame] | 1593 | if (error) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1594 | if (error == -ENOSPC) { |
Brian Foster | 9d43b18 | 2014-04-24 16:00:52 +1000 | [diff] [blame] | 1595 | xfs_warn_ratelimited(mp, |
| 1596 | "Failed to remove inode(s) from unlinked list. " |
| 1597 | "Please free space, unmount and run xfs_repair."); |
| 1598 | } else { |
Dave Chinner | 75c8c50f | 2021-08-18 18:46:53 -0700 | [diff] [blame] | 1599 | ASSERT(xfs_is_shutdown(mp)); |
Brian Foster | 9d43b18 | 2014-04-24 16:00:52 +1000 | [diff] [blame] | 1600 | } |
Brian Foster | 88877d2 | 2013-09-20 11:06:11 -0400 | [diff] [blame] | 1601 | return error; |
| 1602 | } |
| 1603 | |
Dave Chinner | 96355d5a | 2020-06-29 14:48:45 -0700 | [diff] [blame] | 1604 | /* |
| 1605 | * We do not hold the inode locked across the entire rolling transaction |
| 1606 | * here. We only need to hold it for the first transaction that |
| 1607 | * xfs_ifree() builds, which may mark the inode XFS_ISTALE if the |
| 1608 | * underlying cluster buffer is freed. Relogging an XFS_ISTALE inode |
| 1609 | * here breaks the relationship between cluster buffer invalidation and |
| 1610 | * stale inode invalidation on cluster buffer item journal commit |
| 1611 | * completion, and can result in leaving dirty stale inodes hanging |
| 1612 | * around in memory. |
| 1613 | * |
| 1614 | * We have no need for serialising this inode operation against other |
| 1615 | * operations - we freed the inode and hence reallocation is required |
| 1616 | * and that will serialise on reallocating the space the deferops need |
| 1617 | * to free. Hence we can unlock the inode on the first commit of |
| 1618 | * the transaction rather than roll it right through the deferops. This |
| 1619 | * avoids relogging the XFS_ISTALE inode. |
| 1620 | * |
| 1621 | * We check that xfs_ifree() hasn't grown an internal transaction roll |
| 1622 | * by asserting that the inode is still locked when it returns. |
| 1623 | */ |
Brian Foster | 88877d2 | 2013-09-20 11:06:11 -0400 | [diff] [blame] | 1624 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Dave Chinner | 96355d5a | 2020-06-29 14:48:45 -0700 | [diff] [blame] | 1625 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); |
Brian Foster | 88877d2 | 2013-09-20 11:06:11 -0400 | [diff] [blame] | 1626 | |
Brian Foster | 0e0417f | 2018-07-11 22:26:07 -0700 | [diff] [blame] | 1627 | error = xfs_ifree(tp, ip); |
Dave Chinner | 96355d5a | 2020-06-29 14:48:45 -0700 | [diff] [blame] | 1628 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); |
Brian Foster | 88877d2 | 2013-09-20 11:06:11 -0400 | [diff] [blame] | 1629 | if (error) { |
| 1630 | /* |
| 1631 | * If we fail to free the inode, shut down. The cancel |
| 1632 | * might do that, we need to make sure. Otherwise the |
| 1633 | * inode might be lost for a long time or forever. |
| 1634 | */ |
Dave Chinner | 75c8c50f | 2021-08-18 18:46:53 -0700 | [diff] [blame] | 1635 | if (!xfs_is_shutdown(mp)) { |
Brian Foster | 88877d2 | 2013-09-20 11:06:11 -0400 | [diff] [blame] | 1636 | xfs_notice(mp, "%s: xfs_ifree returned error %d", |
| 1637 | __func__, error); |
| 1638 | xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR); |
| 1639 | } |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 1640 | xfs_trans_cancel(tp); |
Brian Foster | 88877d2 | 2013-09-20 11:06:11 -0400 | [diff] [blame] | 1641 | return error; |
| 1642 | } |
| 1643 | |
| 1644 | /* |
| 1645 | * Credit the quota account(s). The inode is gone. |
| 1646 | */ |
| 1647 | xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1); |
| 1648 | |
| 1649 | /* |
Brian Foster | d4a97a0 | 2015-08-19 10:01:40 +1000 | [diff] [blame] | 1650 | * Just ignore errors at this point. There is nothing we can do except |
| 1651 | * to try to keep going. Make sure it's not a silent error. |
Brian Foster | 88877d2 | 2013-09-20 11:06:11 -0400 | [diff] [blame] | 1652 | */ |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 1653 | error = xfs_trans_commit(tp); |
Brian Foster | 88877d2 | 2013-09-20 11:06:11 -0400 | [diff] [blame] | 1654 | if (error) |
| 1655 | xfs_notice(mp, "%s: xfs_trans_commit returned error %d", |
| 1656 | __func__, error); |
| 1657 | |
Brian Foster | 88877d2 | 2013-09-20 11:06:11 -0400 | [diff] [blame] | 1658 | return 0; |
| 1659 | } |
| 1660 | |
| 1661 | /* |
Darrick J. Wong | 62af7d5 | 2021-08-06 11:05:39 -0700 | [diff] [blame] | 1662 | * Returns true if we need to update the on-disk metadata before we can free |
| 1663 | * the memory used by this inode. Updates include freeing post-eof |
| 1664 | * preallocations; freeing COW staging extents; and marking the inode free in |
| 1665 | * the inobt if it is on the unlinked list. |
| 1666 | */ |
| 1667 | bool |
| 1668 | xfs_inode_needs_inactive( |
| 1669 | struct xfs_inode *ip) |
| 1670 | { |
| 1671 | struct xfs_mount *mp = ip->i_mount; |
| 1672 | struct xfs_ifork *cow_ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK); |
| 1673 | |
| 1674 | /* |
| 1675 | * If the inode is already free, then there can be nothing |
| 1676 | * to clean up here. |
| 1677 | */ |
| 1678 | if (VFS_I(ip)->i_mode == 0) |
| 1679 | return false; |
| 1680 | |
| 1681 | /* If this is a read-only mount, don't do this (would generate I/O) */ |
Dave Chinner | 2e973b2 | 2021-08-18 18:46:52 -0700 | [diff] [blame] | 1682 | if (xfs_is_readonly(mp)) |
Darrick J. Wong | 62af7d5 | 2021-08-06 11:05:39 -0700 | [diff] [blame] | 1683 | return false; |
| 1684 | |
| 1685 | /* If the log isn't running, push inodes straight to reclaim. */ |
Dave Chinner | 75c8c50f | 2021-08-18 18:46:53 -0700 | [diff] [blame] | 1686 | if (xfs_is_shutdown(mp) || xfs_has_norecovery(mp)) |
Darrick J. Wong | 62af7d5 | 2021-08-06 11:05:39 -0700 | [diff] [blame] | 1687 | return false; |
| 1688 | |
| 1689 | /* Metadata inodes require explicit resource cleanup. */ |
| 1690 | if (xfs_is_metadata_inode(ip)) |
| 1691 | return false; |
| 1692 | |
| 1693 | /* Want to clean out the cow blocks if there are any. */ |
| 1694 | if (cow_ifp && cow_ifp->if_bytes > 0) |
| 1695 | return true; |
| 1696 | |
| 1697 | /* Unlinked files must be freed. */ |
| 1698 | if (VFS_I(ip)->i_nlink == 0) |
| 1699 | return true; |
| 1700 | |
| 1701 | /* |
| 1702 | * This file isn't being freed, so check if there are post-eof blocks |
| 1703 | * to free. @force is true because we are evicting an inode from the |
| 1704 | * cache. Post-eof blocks must be freed, lest we end up with broken |
| 1705 | * free space accounting. |
| 1706 | * |
| 1707 | * Note: don't bother with iolock here since lockdep complains about |
| 1708 | * acquiring it in reclaim context. We have the only reference to the |
| 1709 | * inode at this point anyways. |
| 1710 | */ |
| 1711 | return xfs_can_free_eofblocks(ip, true); |
| 1712 | } |
| 1713 | |
| 1714 | /* |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1715 | * xfs_inactive |
| 1716 | * |
| 1717 | * This is called when the vnode reference count for the vnode |
| 1718 | * goes to zero. If the file has been unlinked, then it must |
| 1719 | * now be truncated. Also, we clear all of the read-ahead state |
| 1720 | * kept for the inode here since the file is now closed. |
| 1721 | */ |
Brian Foster | 74564fb | 2013-09-20 11:06:12 -0400 | [diff] [blame] | 1722 | void |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1723 | xfs_inactive( |
| 1724 | xfs_inode_t *ip) |
| 1725 | { |
Jie Liu | 3d3c8b5 | 2013-08-12 20:49:59 +1000 | [diff] [blame] | 1726 | struct xfs_mount *mp; |
Jie Liu | 3d3c8b5 | 2013-08-12 20:49:59 +1000 | [diff] [blame] | 1727 | int error; |
| 1728 | int truncate = 0; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1729 | |
| 1730 | /* |
| 1731 | * If the inode is already free, then there can be nothing |
| 1732 | * to clean up here. |
| 1733 | */ |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 1734 | if (VFS_I(ip)->i_mode == 0) { |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1735 | ASSERT(ip->i_df.if_broot_bytes == 0); |
Darrick J. Wong | 3ea06d7 | 2021-05-31 11:31:57 -0700 | [diff] [blame] | 1736 | goto out; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1737 | } |
| 1738 | |
| 1739 | mp = ip->i_mount; |
Darrick J. Wong | 17c12bc | 2016-10-03 09:11:29 -0700 | [diff] [blame] | 1740 | ASSERT(!xfs_iflags_test(ip, XFS_IRECOVERY)); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1741 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1742 | /* If this is a read-only mount, don't do this (would generate I/O) */ |
Dave Chinner | 2e973b2 | 2021-08-18 18:46:52 -0700 | [diff] [blame] | 1743 | if (xfs_is_readonly(mp)) |
Darrick J. Wong | 3ea06d7 | 2021-05-31 11:31:57 -0700 | [diff] [blame] | 1744 | goto out; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1745 | |
Darrick J. Wong | 383e32b | 2021-03-22 09:51:54 -0700 | [diff] [blame] | 1746 | /* Metadata inodes require explicit resource cleanup. */ |
| 1747 | if (xfs_is_metadata_inode(ip)) |
Darrick J. Wong | 3ea06d7 | 2021-05-31 11:31:57 -0700 | [diff] [blame] | 1748 | goto out; |
Darrick J. Wong | 383e32b | 2021-03-22 09:51:54 -0700 | [diff] [blame] | 1749 | |
Darrick J. Wong | 6231848 | 2018-03-06 17:08:31 -0800 | [diff] [blame] | 1750 | /* Try to clean out the cow blocks if there are any. */ |
Christoph Hellwig | 51d6269 | 2018-07-17 16:51:51 -0700 | [diff] [blame] | 1751 | if (xfs_inode_has_cow_data(ip)) |
Darrick J. Wong | 6231848 | 2018-03-06 17:08:31 -0800 | [diff] [blame] | 1752 | xfs_reflink_cancel_cow_range(ip, 0, NULLFILEOFF, true); |
| 1753 | |
Dave Chinner | 54d7b5c | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 1754 | if (VFS_I(ip)->i_nlink != 0) { |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1755 | /* |
| 1756 | * force is true because we are evicting an inode from the |
| 1757 | * cache. Post-eof blocks must be freed, lest we end up with |
| 1758 | * broken free space accounting. |
Brian Foster | 3b4683c | 2017-04-11 10:50:05 -0700 | [diff] [blame] | 1759 | * |
| 1760 | * Note: don't bother with iolock here since lockdep complains |
| 1761 | * about acquiring it in reclaim context. We have the only |
| 1762 | * reference to the inode at this point anyways. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1763 | */ |
Brian Foster | 3b4683c | 2017-04-11 10:50:05 -0700 | [diff] [blame] | 1764 | if (xfs_can_free_eofblocks(ip, true)) |
Brian Foster | a36b926 | 2017-01-27 23:22:55 -0800 | [diff] [blame] | 1765 | xfs_free_eofblocks(ip); |
Brian Foster | 74564fb | 2013-09-20 11:06:12 -0400 | [diff] [blame] | 1766 | |
Darrick J. Wong | 3ea06d7 | 2021-05-31 11:31:57 -0700 | [diff] [blame] | 1767 | goto out; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1768 | } |
| 1769 | |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 1770 | if (S_ISREG(VFS_I(ip)->i_mode) && |
Christoph Hellwig | 13d2c10 | 2021-03-29 11:11:40 -0700 | [diff] [blame] | 1771 | (ip->i_disk_size != 0 || XFS_ISIZE(ip) != 0 || |
Christoph Hellwig | daf8396 | 2020-05-18 10:27:22 -0700 | [diff] [blame] | 1772 | ip->i_df.if_nextents > 0 || ip->i_delayed_blks > 0)) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1773 | truncate = 1; |
| 1774 | |
Darrick J. Wong | c14cfcc | 2018-05-04 15:30:21 -0700 | [diff] [blame] | 1775 | error = xfs_qm_dqattach(ip); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1776 | if (error) |
Darrick J. Wong | 3ea06d7 | 2021-05-31 11:31:57 -0700 | [diff] [blame] | 1777 | goto out; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1778 | |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 1779 | if (S_ISLNK(VFS_I(ip)->i_mode)) |
Brian Foster | 36b21dd | 2013-09-20 11:06:09 -0400 | [diff] [blame] | 1780 | error = xfs_inactive_symlink(ip); |
Brian Foster | f7be2d7 | 2013-09-20 11:06:10 -0400 | [diff] [blame] | 1781 | else if (truncate) |
| 1782 | error = xfs_inactive_truncate(ip); |
| 1783 | if (error) |
Darrick J. Wong | 3ea06d7 | 2021-05-31 11:31:57 -0700 | [diff] [blame] | 1784 | goto out; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1785 | |
| 1786 | /* |
| 1787 | * If there are attributes associated with the file then blow them away |
| 1788 | * now. The code calls a routine that recursively deconstructs the |
Dave Chinner | 6dfe5a0 | 2015-05-29 07:40:08 +1000 | [diff] [blame] | 1789 | * attribute fork. If also blows away the in-core attribute fork. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1790 | */ |
Dave Chinner | 6dfe5a0 | 2015-05-29 07:40:08 +1000 | [diff] [blame] | 1791 | if (XFS_IFORK_Q(ip)) { |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1792 | error = xfs_attr_inactive(ip); |
| 1793 | if (error) |
Darrick J. Wong | 3ea06d7 | 2021-05-31 11:31:57 -0700 | [diff] [blame] | 1794 | goto out; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1795 | } |
| 1796 | |
Dave Chinner | 6dfe5a0 | 2015-05-29 07:40:08 +1000 | [diff] [blame] | 1797 | ASSERT(!ip->i_afp); |
Christoph Hellwig | 7821ea3 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 1798 | ASSERT(ip->i_forkoff == 0); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1799 | |
| 1800 | /* |
| 1801 | * Free the inode. |
| 1802 | */ |
Darrick J. Wong | 3ea06d7 | 2021-05-31 11:31:57 -0700 | [diff] [blame] | 1803 | xfs_inactive_ifree(ip); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1804 | |
Darrick J. Wong | 3ea06d7 | 2021-05-31 11:31:57 -0700 | [diff] [blame] | 1805 | out: |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1806 | /* |
Darrick J. Wong | 3ea06d7 | 2021-05-31 11:31:57 -0700 | [diff] [blame] | 1807 | * We're done making metadata updates for this inode, so we can release |
| 1808 | * the attached dquots. |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1809 | */ |
| 1810 | xfs_qm_dqdetach(ip); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 1811 | } |
| 1812 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | /* |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 1814 | * In-Core Unlinked List Lookups |
| 1815 | * ============================= |
| 1816 | * |
| 1817 | * Every inode is supposed to be reachable from some other piece of metadata |
| 1818 | * with the exception of the root directory. Inodes with a connection to a |
| 1819 | * file descriptor but not linked from anywhere in the on-disk directory tree |
| 1820 | * are collectively known as unlinked inodes, though the filesystem itself |
| 1821 | * maintains links to these inodes so that on-disk metadata are consistent. |
| 1822 | * |
| 1823 | * XFS implements a per-AG on-disk hash table of unlinked inodes. The AGI |
| 1824 | * header contains a number of buckets that point to an inode, and each inode |
| 1825 | * record has a pointer to the next inode in the hash chain. This |
| 1826 | * singly-linked list causes scaling problems in the iunlink remove function |
| 1827 | * because we must walk that list to find the inode that points to the inode |
| 1828 | * being removed from the unlinked hash bucket list. |
| 1829 | * |
| 1830 | * What if we modelled the unlinked list as a collection of records capturing |
| 1831 | * "X.next_unlinked = Y" relations? If we indexed those records on Y, we'd |
| 1832 | * have a fast way to look up unlinked list predecessors, which avoids the |
| 1833 | * slow list walk. That's exactly what we do here (in-core) with a per-AG |
| 1834 | * rhashtable. |
| 1835 | * |
| 1836 | * Because this is a backref cache, we ignore operational failures since the |
| 1837 | * iunlink code can fall back to the slow bucket walk. The only errors that |
| 1838 | * should bubble out are for obviously incorrect situations. |
| 1839 | * |
| 1840 | * All users of the backref cache MUST hold the AGI buffer lock to serialize |
| 1841 | * access or have otherwise provided for concurrency control. |
| 1842 | */ |
| 1843 | |
| 1844 | /* Capture a "X.next_unlinked = Y" relationship. */ |
| 1845 | struct xfs_iunlink { |
| 1846 | struct rhash_head iu_rhash_head; |
| 1847 | xfs_agino_t iu_agino; /* X */ |
| 1848 | xfs_agino_t iu_next_unlinked; /* Y */ |
| 1849 | }; |
| 1850 | |
| 1851 | /* Unlinked list predecessor lookup hashtable construction */ |
| 1852 | static int |
| 1853 | xfs_iunlink_obj_cmpfn( |
| 1854 | struct rhashtable_compare_arg *arg, |
| 1855 | const void *obj) |
| 1856 | { |
| 1857 | const xfs_agino_t *key = arg->key; |
| 1858 | const struct xfs_iunlink *iu = obj; |
| 1859 | |
| 1860 | if (iu->iu_next_unlinked != *key) |
| 1861 | return 1; |
| 1862 | return 0; |
| 1863 | } |
| 1864 | |
| 1865 | static const struct rhashtable_params xfs_iunlink_hash_params = { |
| 1866 | .min_size = XFS_AGI_UNLINKED_BUCKETS, |
| 1867 | .key_len = sizeof(xfs_agino_t), |
| 1868 | .key_offset = offsetof(struct xfs_iunlink, |
| 1869 | iu_next_unlinked), |
| 1870 | .head_offset = offsetof(struct xfs_iunlink, iu_rhash_head), |
| 1871 | .automatic_shrinking = true, |
| 1872 | .obj_cmpfn = xfs_iunlink_obj_cmpfn, |
| 1873 | }; |
| 1874 | |
| 1875 | /* |
| 1876 | * Return X, where X.next_unlinked == @agino. Returns NULLAGINO if no such |
| 1877 | * relation is found. |
| 1878 | */ |
| 1879 | static xfs_agino_t |
| 1880 | xfs_iunlink_lookup_backref( |
| 1881 | struct xfs_perag *pag, |
| 1882 | xfs_agino_t agino) |
| 1883 | { |
| 1884 | struct xfs_iunlink *iu; |
| 1885 | |
| 1886 | iu = rhashtable_lookup_fast(&pag->pagi_unlinked_hash, &agino, |
| 1887 | xfs_iunlink_hash_params); |
| 1888 | return iu ? iu->iu_agino : NULLAGINO; |
| 1889 | } |
| 1890 | |
| 1891 | /* |
| 1892 | * Take ownership of an iunlink cache entry and insert it into the hash table. |
| 1893 | * If successful, the entry will be owned by the cache; if not, it is freed. |
| 1894 | * Either way, the caller does not own @iu after this call. |
| 1895 | */ |
| 1896 | static int |
| 1897 | xfs_iunlink_insert_backref( |
| 1898 | struct xfs_perag *pag, |
| 1899 | struct xfs_iunlink *iu) |
| 1900 | { |
| 1901 | int error; |
| 1902 | |
| 1903 | error = rhashtable_insert_fast(&pag->pagi_unlinked_hash, |
| 1904 | &iu->iu_rhash_head, xfs_iunlink_hash_params); |
| 1905 | /* |
| 1906 | * Fail loudly if there already was an entry because that's a sign of |
| 1907 | * corruption of in-memory data. Also fail loudly if we see an error |
| 1908 | * code we didn't anticipate from the rhashtable code. Currently we |
| 1909 | * only anticipate ENOMEM. |
| 1910 | */ |
| 1911 | if (error) { |
| 1912 | WARN(error != -ENOMEM, "iunlink cache insert error %d", error); |
| 1913 | kmem_free(iu); |
| 1914 | } |
| 1915 | /* |
| 1916 | * Absorb any runtime errors that aren't a result of corruption because |
| 1917 | * this is a cache and we can always fall back to bucket list scanning. |
| 1918 | */ |
| 1919 | if (error != 0 && error != -EEXIST) |
| 1920 | error = 0; |
| 1921 | return error; |
| 1922 | } |
| 1923 | |
| 1924 | /* Remember that @prev_agino.next_unlinked = @this_agino. */ |
| 1925 | static int |
| 1926 | xfs_iunlink_add_backref( |
| 1927 | struct xfs_perag *pag, |
| 1928 | xfs_agino_t prev_agino, |
| 1929 | xfs_agino_t this_agino) |
| 1930 | { |
| 1931 | struct xfs_iunlink *iu; |
| 1932 | |
| 1933 | if (XFS_TEST_ERROR(false, pag->pag_mount, XFS_ERRTAG_IUNLINK_FALLBACK)) |
| 1934 | return 0; |
| 1935 | |
Tetsuo Handa | 707e0dd | 2019-08-26 12:06:22 -0700 | [diff] [blame] | 1936 | iu = kmem_zalloc(sizeof(*iu), KM_NOFS); |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 1937 | iu->iu_agino = prev_agino; |
| 1938 | iu->iu_next_unlinked = this_agino; |
| 1939 | |
| 1940 | return xfs_iunlink_insert_backref(pag, iu); |
| 1941 | } |
| 1942 | |
| 1943 | /* |
| 1944 | * Replace X.next_unlinked = @agino with X.next_unlinked = @next_unlinked. |
| 1945 | * If @next_unlinked is NULLAGINO, we drop the backref and exit. If there |
| 1946 | * wasn't any such entry then we don't bother. |
| 1947 | */ |
| 1948 | static int |
| 1949 | xfs_iunlink_change_backref( |
| 1950 | struct xfs_perag *pag, |
| 1951 | xfs_agino_t agino, |
| 1952 | xfs_agino_t next_unlinked) |
| 1953 | { |
| 1954 | struct xfs_iunlink *iu; |
| 1955 | int error; |
| 1956 | |
| 1957 | /* Look up the old entry; if there wasn't one then exit. */ |
| 1958 | iu = rhashtable_lookup_fast(&pag->pagi_unlinked_hash, &agino, |
| 1959 | xfs_iunlink_hash_params); |
| 1960 | if (!iu) |
| 1961 | return 0; |
| 1962 | |
| 1963 | /* |
| 1964 | * Remove the entry. This shouldn't ever return an error, but if we |
| 1965 | * couldn't remove the old entry we don't want to add it again to the |
| 1966 | * hash table, and if the entry disappeared on us then someone's |
| 1967 | * violated the locking rules and we need to fail loudly. Either way |
| 1968 | * we cannot remove the inode because internal state is or would have |
| 1969 | * been corrupt. |
| 1970 | */ |
| 1971 | error = rhashtable_remove_fast(&pag->pagi_unlinked_hash, |
| 1972 | &iu->iu_rhash_head, xfs_iunlink_hash_params); |
| 1973 | if (error) |
| 1974 | return error; |
| 1975 | |
| 1976 | /* If there is no new next entry just free our item and return. */ |
| 1977 | if (next_unlinked == NULLAGINO) { |
| 1978 | kmem_free(iu); |
| 1979 | return 0; |
| 1980 | } |
| 1981 | |
| 1982 | /* Update the entry and re-add it to the hash table. */ |
| 1983 | iu->iu_next_unlinked = next_unlinked; |
| 1984 | return xfs_iunlink_insert_backref(pag, iu); |
| 1985 | } |
| 1986 | |
| 1987 | /* Set up the in-core predecessor structures. */ |
| 1988 | int |
| 1989 | xfs_iunlink_init( |
| 1990 | struct xfs_perag *pag) |
| 1991 | { |
| 1992 | return rhashtable_init(&pag->pagi_unlinked_hash, |
| 1993 | &xfs_iunlink_hash_params); |
| 1994 | } |
| 1995 | |
| 1996 | /* Free the in-core predecessor structures. */ |
| 1997 | static void |
| 1998 | xfs_iunlink_free_item( |
| 1999 | void *ptr, |
| 2000 | void *arg) |
| 2001 | { |
| 2002 | struct xfs_iunlink *iu = ptr; |
| 2003 | bool *freed_anything = arg; |
| 2004 | |
| 2005 | *freed_anything = true; |
| 2006 | kmem_free(iu); |
| 2007 | } |
| 2008 | |
| 2009 | void |
| 2010 | xfs_iunlink_destroy( |
| 2011 | struct xfs_perag *pag) |
| 2012 | { |
| 2013 | bool freed_anything = false; |
| 2014 | |
| 2015 | rhashtable_free_and_destroy(&pag->pagi_unlinked_hash, |
| 2016 | xfs_iunlink_free_item, &freed_anything); |
| 2017 | |
Dave Chinner | 75c8c50f | 2021-08-18 18:46:53 -0700 | [diff] [blame] | 2018 | ASSERT(freed_anything == false || xfs_is_shutdown(pag->pag_mount)); |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2019 | } |
| 2020 | |
| 2021 | /* |
Darrick J. Wong | 9a4a511 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2022 | * Point the AGI unlinked bucket at an inode and log the results. The caller |
| 2023 | * is responsible for validating the old value. |
| 2024 | */ |
| 2025 | STATIC int |
| 2026 | xfs_iunlink_update_bucket( |
| 2027 | struct xfs_trans *tp, |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2028 | struct xfs_perag *pag, |
Darrick J. Wong | 9a4a511 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2029 | struct xfs_buf *agibp, |
| 2030 | unsigned int bucket_index, |
| 2031 | xfs_agino_t new_agino) |
| 2032 | { |
Christoph Hellwig | 370c782 | 2020-03-10 08:57:29 -0700 | [diff] [blame] | 2033 | struct xfs_agi *agi = agibp->b_addr; |
Darrick J. Wong | 9a4a511 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2034 | xfs_agino_t old_value; |
| 2035 | int offset; |
| 2036 | |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2037 | ASSERT(xfs_verify_agino_or_null(tp->t_mountp, pag->pag_agno, new_agino)); |
Darrick J. Wong | 9a4a511 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2038 | |
| 2039 | old_value = be32_to_cpu(agi->agi_unlinked[bucket_index]); |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2040 | trace_xfs_iunlink_update_bucket(tp->t_mountp, pag->pag_agno, bucket_index, |
Darrick J. Wong | 9a4a511 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2041 | old_value, new_agino); |
| 2042 | |
| 2043 | /* |
| 2044 | * We should never find the head of the list already set to the value |
| 2045 | * passed in because either we're adding or removing ourselves from the |
| 2046 | * head of the list. |
| 2047 | */ |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 2048 | if (old_value == new_agino) { |
Darrick J. Wong | 8d57c21 | 2020-03-11 10:37:54 -0700 | [diff] [blame] | 2049 | xfs_buf_mark_corrupt(agibp); |
Darrick J. Wong | 9a4a511 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2050 | return -EFSCORRUPTED; |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 2051 | } |
Darrick J. Wong | 9a4a511 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2052 | |
| 2053 | agi->agi_unlinked[bucket_index] = cpu_to_be32(new_agino); |
| 2054 | offset = offsetof(struct xfs_agi, agi_unlinked) + |
| 2055 | (sizeof(xfs_agino_t) * bucket_index); |
| 2056 | xfs_trans_log_buf(tp, agibp, offset, offset + sizeof(xfs_agino_t) - 1); |
| 2057 | return 0; |
| 2058 | } |
| 2059 | |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2060 | /* Set an on-disk inode's next_unlinked pointer. */ |
| 2061 | STATIC void |
| 2062 | xfs_iunlink_update_dinode( |
| 2063 | struct xfs_trans *tp, |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2064 | struct xfs_perag *pag, |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2065 | xfs_agino_t agino, |
| 2066 | struct xfs_buf *ibp, |
| 2067 | struct xfs_dinode *dip, |
| 2068 | struct xfs_imap *imap, |
| 2069 | xfs_agino_t next_agino) |
| 2070 | { |
| 2071 | struct xfs_mount *mp = tp->t_mountp; |
| 2072 | int offset; |
| 2073 | |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2074 | ASSERT(xfs_verify_agino_or_null(mp, pag->pag_agno, next_agino)); |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2075 | |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2076 | trace_xfs_iunlink_update_dinode(mp, pag->pag_agno, agino, |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2077 | be32_to_cpu(dip->di_next_unlinked), next_agino); |
| 2078 | |
| 2079 | dip->di_next_unlinked = cpu_to_be32(next_agino); |
| 2080 | offset = imap->im_boffset + |
| 2081 | offsetof(struct xfs_dinode, di_next_unlinked); |
| 2082 | |
| 2083 | /* need to recalc the inode CRC if appropriate */ |
| 2084 | xfs_dinode_calc_crc(mp, dip); |
| 2085 | xfs_trans_inode_buf(tp, ibp); |
| 2086 | xfs_trans_log_buf(tp, ibp, offset, offset + sizeof(xfs_agino_t) - 1); |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2087 | } |
| 2088 | |
| 2089 | /* Set an in-core inode's unlinked pointer and return the old value. */ |
| 2090 | STATIC int |
| 2091 | xfs_iunlink_update_inode( |
| 2092 | struct xfs_trans *tp, |
| 2093 | struct xfs_inode *ip, |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2094 | struct xfs_perag *pag, |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2095 | xfs_agino_t next_agino, |
| 2096 | xfs_agino_t *old_next_agino) |
| 2097 | { |
| 2098 | struct xfs_mount *mp = tp->t_mountp; |
| 2099 | struct xfs_dinode *dip; |
| 2100 | struct xfs_buf *ibp; |
| 2101 | xfs_agino_t old_value; |
| 2102 | int error; |
| 2103 | |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2104 | ASSERT(xfs_verify_agino_or_null(mp, pag->pag_agno, next_agino)); |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2105 | |
Christoph Hellwig | af9dcdd | 2021-03-29 11:11:37 -0700 | [diff] [blame] | 2106 | error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &ibp); |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2107 | if (error) |
| 2108 | return error; |
Christoph Hellwig | af9dcdd | 2021-03-29 11:11:37 -0700 | [diff] [blame] | 2109 | dip = xfs_buf_offset(ibp, ip->i_imap.im_boffset); |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2110 | |
| 2111 | /* Make sure the old pointer isn't garbage. */ |
| 2112 | old_value = be32_to_cpu(dip->di_next_unlinked); |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2113 | if (!xfs_verify_agino_or_null(mp, pag->pag_agno, old_value)) { |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 2114 | xfs_inode_verifier_error(ip, -EFSCORRUPTED, __func__, dip, |
| 2115 | sizeof(*dip), __this_address); |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2116 | error = -EFSCORRUPTED; |
| 2117 | goto out; |
| 2118 | } |
| 2119 | |
| 2120 | /* |
| 2121 | * Since we're updating a linked list, we should never find that the |
| 2122 | * current pointer is the same as the new value, unless we're |
| 2123 | * terminating the list. |
| 2124 | */ |
| 2125 | *old_next_agino = old_value; |
| 2126 | if (old_value == next_agino) { |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 2127 | if (next_agino != NULLAGINO) { |
| 2128 | xfs_inode_verifier_error(ip, -EFSCORRUPTED, __func__, |
| 2129 | dip, sizeof(*dip), __this_address); |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2130 | error = -EFSCORRUPTED; |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 2131 | } |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2132 | goto out; |
| 2133 | } |
| 2134 | |
| 2135 | /* Ok, update the new pointer. */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2136 | xfs_iunlink_update_dinode(tp, pag, XFS_INO_TO_AGINO(mp, ip->i_ino), |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2137 | ibp, dip, &ip->i_imap, next_agino); |
| 2138 | return 0; |
| 2139 | out: |
| 2140 | xfs_trans_brelse(tp, ibp); |
| 2141 | return error; |
| 2142 | } |
| 2143 | |
Darrick J. Wong | 9a4a511 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2144 | /* |
Darrick J. Wong | c4a6bf7 | 2019-02-13 11:15:17 -0800 | [diff] [blame] | 2145 | * This is called when the inode's link count has gone to 0 or we are creating |
| 2146 | * a tmpfile via O_TMPFILE. The inode @ip must have nlink == 0. |
Dave Chinner | 54d7b5c | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 2147 | * |
| 2148 | * We place the on-disk inode on a list in the AGI. It will be pulled from this |
| 2149 | * list when the inode is freed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2150 | */ |
Dave Chinner | 54d7b5c | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 2151 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | xfs_iunlink( |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2153 | struct xfs_trans *tp, |
| 2154 | struct xfs_inode *ip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | { |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2156 | struct xfs_mount *mp = tp->t_mountp; |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2157 | struct xfs_perag *pag; |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2158 | struct xfs_agi *agi; |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2159 | struct xfs_buf *agibp; |
Darrick J. Wong | 86bfd37 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2160 | xfs_agino_t next_agino; |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2161 | xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ip->i_ino); |
| 2162 | short bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS; |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2163 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | |
Darrick J. Wong | c4a6bf7 | 2019-02-13 11:15:17 -0800 | [diff] [blame] | 2165 | ASSERT(VFS_I(ip)->i_nlink == 0); |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 2166 | ASSERT(VFS_I(ip)->i_mode != 0); |
Darrick J. Wong | 4664c66 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2167 | trace_xfs_iunlink(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2169 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino)); |
| 2170 | |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2171 | /* Get the agi buffer first. It ensures lock ordering on the list. */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2172 | error = xfs_read_agi(mp, tp, pag->pag_agno, &agibp); |
Vlad Apostolov | 859d718 | 2007-10-11 17:44:18 +1000 | [diff] [blame] | 2173 | if (error) |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2174 | goto out; |
Christoph Hellwig | 370c782 | 2020-03-10 08:57:29 -0700 | [diff] [blame] | 2175 | agi = agibp->b_addr; |
Christoph Hellwig | 5e1be0f | 2008-11-28 14:23:37 +1100 | [diff] [blame] | 2176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | /* |
Darrick J. Wong | 86bfd37 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2178 | * Get the index into the agi hash table for the list this inode will |
| 2179 | * go on. Make sure the pointer isn't garbage and that this inode |
| 2180 | * isn't already on the list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | */ |
Darrick J. Wong | 86bfd37 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2182 | next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]); |
| 2183 | if (next_agino == agino || |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2184 | !xfs_verify_agino_or_null(mp, pag->pag_agno, next_agino)) { |
Darrick J. Wong | 8d57c21 | 2020-03-11 10:37:54 -0700 | [diff] [blame] | 2185 | xfs_buf_mark_corrupt(agibp); |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2186 | error = -EFSCORRUPTED; |
| 2187 | goto out; |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 2188 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | |
Darrick J. Wong | 86bfd37 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2190 | if (next_agino != NULLAGINO) { |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2191 | xfs_agino_t old_agino; |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2193 | /* |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2194 | * There is already another inode in the bucket, so point this |
| 2195 | * inode to the current head of the list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2197 | error = xfs_iunlink_update_inode(tp, ip, pag, next_agino, |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2198 | &old_agino); |
Vlad Apostolov | c319b58 | 2007-11-23 16:27:51 +1100 | [diff] [blame] | 2199 | if (error) |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2200 | goto out; |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2201 | ASSERT(old_agino == NULLAGINO); |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2202 | |
| 2203 | /* |
| 2204 | * agino has been unlinked, add a backref from the next inode |
| 2205 | * back to agino. |
| 2206 | */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2207 | error = xfs_iunlink_add_backref(pag, agino, next_agino); |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2208 | if (error) |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2209 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2210 | } |
| 2211 | |
Darrick J. Wong | 9a4a511 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2212 | /* Point the head of the list to point to this inode. */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2213 | error = xfs_iunlink_update_bucket(tp, pag, agibp, bucket_index, agino); |
| 2214 | out: |
| 2215 | xfs_perag_put(pag); |
| 2216 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | } |
| 2218 | |
Darrick J. Wong | 23ffa52 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2219 | /* Return the imap, dinode pointer, and buffer for an inode. */ |
| 2220 | STATIC int |
| 2221 | xfs_iunlink_map_ino( |
| 2222 | struct xfs_trans *tp, |
| 2223 | xfs_agnumber_t agno, |
| 2224 | xfs_agino_t agino, |
| 2225 | struct xfs_imap *imap, |
| 2226 | struct xfs_dinode **dipp, |
| 2227 | struct xfs_buf **bpp) |
| 2228 | { |
| 2229 | struct xfs_mount *mp = tp->t_mountp; |
| 2230 | int error; |
| 2231 | |
| 2232 | imap->im_blkno = 0; |
| 2233 | error = xfs_imap(mp, tp, XFS_AGINO_TO_INO(mp, agno, agino), imap, 0); |
| 2234 | if (error) { |
| 2235 | xfs_warn(mp, "%s: xfs_imap returned error %d.", |
| 2236 | __func__, error); |
| 2237 | return error; |
| 2238 | } |
| 2239 | |
Christoph Hellwig | af9dcdd | 2021-03-29 11:11:37 -0700 | [diff] [blame] | 2240 | error = xfs_imap_to_bp(mp, tp, imap, bpp); |
Darrick J. Wong | 23ffa52 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2241 | if (error) { |
| 2242 | xfs_warn(mp, "%s: xfs_imap_to_bp returned error %d.", |
| 2243 | __func__, error); |
| 2244 | return error; |
| 2245 | } |
| 2246 | |
Christoph Hellwig | af9dcdd | 2021-03-29 11:11:37 -0700 | [diff] [blame] | 2247 | *dipp = xfs_buf_offset(*bpp, imap->im_boffset); |
Darrick J. Wong | 23ffa52 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2248 | return 0; |
| 2249 | } |
| 2250 | |
| 2251 | /* |
| 2252 | * Walk the unlinked chain from @head_agino until we find the inode that |
| 2253 | * points to @target_agino. Return the inode number, map, dinode pointer, |
| 2254 | * and inode cluster buffer of that inode as @agino, @imap, @dipp, and @bpp. |
| 2255 | * |
| 2256 | * @tp, @pag, @head_agino, and @target_agino are input parameters. |
| 2257 | * @agino, @imap, @dipp, and @bpp are all output parameters. |
| 2258 | * |
| 2259 | * Do not call this function if @target_agino is the head of the list. |
| 2260 | */ |
| 2261 | STATIC int |
| 2262 | xfs_iunlink_map_prev( |
| 2263 | struct xfs_trans *tp, |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2264 | struct xfs_perag *pag, |
Darrick J. Wong | 23ffa52 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2265 | xfs_agino_t head_agino, |
| 2266 | xfs_agino_t target_agino, |
| 2267 | xfs_agino_t *agino, |
| 2268 | struct xfs_imap *imap, |
| 2269 | struct xfs_dinode **dipp, |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2270 | struct xfs_buf **bpp) |
Darrick J. Wong | 23ffa52 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2271 | { |
| 2272 | struct xfs_mount *mp = tp->t_mountp; |
| 2273 | xfs_agino_t next_agino; |
| 2274 | int error; |
| 2275 | |
| 2276 | ASSERT(head_agino != target_agino); |
| 2277 | *bpp = NULL; |
| 2278 | |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2279 | /* See if our backref cache can find it faster. */ |
| 2280 | *agino = xfs_iunlink_lookup_backref(pag, target_agino); |
| 2281 | if (*agino != NULLAGINO) { |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2282 | error = xfs_iunlink_map_ino(tp, pag->pag_agno, *agino, imap, |
| 2283 | dipp, bpp); |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2284 | if (error) |
| 2285 | return error; |
| 2286 | |
| 2287 | if (be32_to_cpu((*dipp)->di_next_unlinked) == target_agino) |
| 2288 | return 0; |
| 2289 | |
| 2290 | /* |
| 2291 | * If we get here the cache contents were corrupt, so drop the |
| 2292 | * buffer and fall back to walking the bucket list. |
| 2293 | */ |
| 2294 | xfs_trans_brelse(tp, *bpp); |
| 2295 | *bpp = NULL; |
| 2296 | WARN_ON_ONCE(1); |
| 2297 | } |
| 2298 | |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2299 | trace_xfs_iunlink_map_prev_fallback(mp, pag->pag_agno); |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2300 | |
| 2301 | /* Otherwise, walk the entire bucket until we find it. */ |
Darrick J. Wong | 23ffa52 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2302 | next_agino = head_agino; |
| 2303 | while (next_agino != target_agino) { |
| 2304 | xfs_agino_t unlinked_agino; |
| 2305 | |
| 2306 | if (*bpp) |
| 2307 | xfs_trans_brelse(tp, *bpp); |
| 2308 | |
| 2309 | *agino = next_agino; |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2310 | error = xfs_iunlink_map_ino(tp, pag->pag_agno, next_agino, imap, |
| 2311 | dipp, bpp); |
Darrick J. Wong | 23ffa52 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2312 | if (error) |
| 2313 | return error; |
| 2314 | |
| 2315 | unlinked_agino = be32_to_cpu((*dipp)->di_next_unlinked); |
| 2316 | /* |
| 2317 | * Make sure this pointer is valid and isn't an obvious |
| 2318 | * infinite loop. |
| 2319 | */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2320 | if (!xfs_verify_agino(mp, pag->pag_agno, unlinked_agino) || |
Darrick J. Wong | 23ffa52 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2321 | next_agino == unlinked_agino) { |
| 2322 | XFS_CORRUPTION_ERROR(__func__, |
| 2323 | XFS_ERRLEVEL_LOW, mp, |
| 2324 | *dipp, sizeof(**dipp)); |
| 2325 | error = -EFSCORRUPTED; |
| 2326 | return error; |
| 2327 | } |
| 2328 | next_agino = unlinked_agino; |
| 2329 | } |
| 2330 | |
| 2331 | return 0; |
| 2332 | } |
| 2333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2334 | /* |
| 2335 | * Pull the on-disk inode from the AGI unlinked list. |
| 2336 | */ |
| 2337 | STATIC int |
| 2338 | xfs_iunlink_remove( |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2339 | struct xfs_trans *tp, |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2340 | struct xfs_perag *pag, |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2341 | struct xfs_inode *ip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2342 | { |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2343 | struct xfs_mount *mp = tp->t_mountp; |
| 2344 | struct xfs_agi *agi; |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2345 | struct xfs_buf *agibp; |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2346 | struct xfs_buf *last_ibp; |
| 2347 | struct xfs_dinode *last_dip = NULL; |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2348 | xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ip->i_ino); |
| 2349 | xfs_agino_t next_agino; |
Darrick J. Wong | b1d2a06 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2350 | xfs_agino_t head_agino; |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2351 | short bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS; |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2352 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2353 | |
Darrick J. Wong | 4664c66 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2354 | trace_xfs_iunlink_remove(ip); |
| 2355 | |
Darrick J. Wong | 5837f62 | 2019-02-07 10:37:13 -0800 | [diff] [blame] | 2356 | /* Get the agi buffer first. It ensures lock ordering on the list. */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2357 | error = xfs_read_agi(mp, tp, pag->pag_agno, &agibp); |
Christoph Hellwig | 5e1be0f | 2008-11-28 14:23:37 +1100 | [diff] [blame] | 2358 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2359 | return error; |
Christoph Hellwig | 370c782 | 2020-03-10 08:57:29 -0700 | [diff] [blame] | 2360 | agi = agibp->b_addr; |
Christoph Hellwig | 5e1be0f | 2008-11-28 14:23:37 +1100 | [diff] [blame] | 2361 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2362 | /* |
Darrick J. Wong | 86bfd37 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2363 | * Get the index into the agi hash table for the list this inode will |
| 2364 | * go on. Make sure the head pointer isn't garbage. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2365 | */ |
Darrick J. Wong | b1d2a06 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2366 | head_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]); |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2367 | if (!xfs_verify_agino(mp, pag->pag_agno, head_agino)) { |
Darrick J. Wong | d2e7366 | 2018-06-04 11:27:51 -0700 | [diff] [blame] | 2368 | XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, |
| 2369 | agi, sizeof(*agi)); |
| 2370 | return -EFSCORRUPTED; |
| 2371 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2372 | |
Darrick J. Wong | b1d2a06 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2373 | /* |
| 2374 | * Set our inode's next_unlinked pointer to NULL and then return |
| 2375 | * the old pointer value so that we can update whatever was previous |
| 2376 | * to us in the list to point to whatever was next in the list. |
| 2377 | */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2378 | error = xfs_iunlink_update_inode(tp, ip, pag, NULLAGINO, &next_agino); |
Darrick J. Wong | b1d2a06 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2379 | if (error) |
| 2380 | return error; |
Darrick J. Wong | 9a4a511 | 2019-02-07 10:37:14 -0800 | [diff] [blame] | 2381 | |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2382 | /* |
| 2383 | * If there was a backref pointing from the next inode back to this |
| 2384 | * one, remove it because we've removed this inode from the list. |
| 2385 | * |
| 2386 | * Later, if this inode was in the middle of the list we'll update |
| 2387 | * this inode's backref to point from the next inode. |
| 2388 | */ |
| 2389 | if (next_agino != NULLAGINO) { |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2390 | error = xfs_iunlink_change_backref(pag, next_agino, NULLAGINO); |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2391 | if (error) |
Gao Xiang | 92a0054 | 2020-07-13 09:13:00 -0700 | [diff] [blame] | 2392 | return error; |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2393 | } |
| 2394 | |
Gao Xiang | 92a0054 | 2020-07-13 09:13:00 -0700 | [diff] [blame] | 2395 | if (head_agino != agino) { |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2396 | struct xfs_imap imap; |
| 2397 | xfs_agino_t prev_agino; |
| 2398 | |
Darrick J. Wong | 23ffa52 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2399 | /* We need to search the list for the inode being freed. */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2400 | error = xfs_iunlink_map_prev(tp, pag, head_agino, agino, |
| 2401 | &prev_agino, &imap, &last_dip, &last_ibp); |
Darrick J. Wong | 23ffa52 | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2402 | if (error) |
Gao Xiang | 92a0054 | 2020-07-13 09:13:00 -0700 | [diff] [blame] | 2403 | return error; |
Christoph Hellwig | 475ee41 | 2012-07-03 12:21:22 -0400 | [diff] [blame] | 2404 | |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2405 | /* Point the previous inode on the list to the next inode. */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2406 | xfs_iunlink_update_dinode(tp, pag, prev_agino, last_ibp, |
Darrick J. Wong | f2fc16a | 2019-02-07 10:37:15 -0800 | [diff] [blame] | 2407 | last_dip, &imap, next_agino); |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2408 | |
| 2409 | /* |
| 2410 | * Now we deal with the backref for this inode. If this inode |
| 2411 | * pointed at a real inode, change the backref that pointed to |
| 2412 | * us to point to our old next. If this inode was the end of |
| 2413 | * the list, delete the backref that pointed to us. Note that |
| 2414 | * change_backref takes care of deleting the backref if |
| 2415 | * next_agino is NULLAGINO. |
| 2416 | */ |
Gao Xiang | 92a0054 | 2020-07-13 09:13:00 -0700 | [diff] [blame] | 2417 | return xfs_iunlink_change_backref(agibp->b_pag, agino, |
| 2418 | next_agino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2419 | } |
Darrick J. Wong | 9b24717 | 2019-02-07 10:37:16 -0800 | [diff] [blame] | 2420 | |
Gao Xiang | 92a0054 | 2020-07-13 09:13:00 -0700 | [diff] [blame] | 2421 | /* Point the head of the list to the next unlinked inode. */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2422 | return xfs_iunlink_update_bucket(tp, pag, agibp, bucket_index, |
Gao Xiang | 92a0054 | 2020-07-13 09:13:00 -0700 | [diff] [blame] | 2423 | next_agino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2424 | } |
| 2425 | |
Dave Chinner | 5b3eed7 | 2010-08-24 11:42:41 +1000 | [diff] [blame] | 2426 | /* |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2427 | * Look up the inode number specified and if it is not already marked XFS_ISTALE |
| 2428 | * mark it stale. We should only find clean inodes in this lookup that aren't |
| 2429 | * already stale. |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2430 | */ |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2431 | static void |
| 2432 | xfs_ifree_mark_inode_stale( |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2433 | struct xfs_perag *pag, |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2434 | struct xfs_inode *free_ip, |
Brian Foster | d9fdd0a | 2020-04-02 08:18:57 -0700 | [diff] [blame] | 2435 | xfs_ino_t inum) |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2436 | { |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2437 | struct xfs_mount *mp = pag->pag_mount; |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2438 | struct xfs_inode_log_item *iip; |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2439 | struct xfs_inode *ip; |
| 2440 | |
| 2441 | retry: |
| 2442 | rcu_read_lock(); |
| 2443 | ip = radix_tree_lookup(&pag->pag_ici_root, XFS_INO_TO_AGINO(mp, inum)); |
| 2444 | |
| 2445 | /* Inode not in memory, nothing to do */ |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2446 | if (!ip) { |
| 2447 | rcu_read_unlock(); |
| 2448 | return; |
| 2449 | } |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2450 | |
| 2451 | /* |
| 2452 | * because this is an RCU protected lookup, we could find a recently |
| 2453 | * freed or even reallocated inode during the lookup. We need to check |
| 2454 | * under the i_flags_lock for a valid inode here. Skip it if it is not |
| 2455 | * valid, the wrong inode or stale. |
| 2456 | */ |
| 2457 | spin_lock(&ip->i_flags_lock); |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 2458 | if (ip->i_ino != inum || __xfs_iflags_test(ip, XFS_ISTALE)) |
| 2459 | goto out_iflags_unlock; |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2460 | |
| 2461 | /* |
| 2462 | * Don't try to lock/unlock the current inode, but we _cannot_ skip the |
| 2463 | * other inodes that we did not find in the list attached to the buffer |
| 2464 | * and are not already marked stale. If we can't lock it, back off and |
| 2465 | * retry. |
| 2466 | */ |
| 2467 | if (ip != free_ip) { |
| 2468 | if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) { |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2469 | spin_unlock(&ip->i_flags_lock); |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2470 | rcu_read_unlock(); |
| 2471 | delay(1); |
| 2472 | goto retry; |
| 2473 | } |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2474 | } |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2475 | ip->i_flags |= XFS_ISTALE; |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2476 | |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2477 | /* |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 2478 | * If the inode is flushing, it is already attached to the buffer. All |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2479 | * we needed to do here is mark the inode stale so buffer IO completion |
| 2480 | * will remove it from the AIL. |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2481 | */ |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2482 | iip = ip->i_itemp; |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 2483 | if (__xfs_iflags_test(ip, XFS_IFLUSHING)) { |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2484 | ASSERT(!list_empty(&iip->ili_item.li_bio_list)); |
| 2485 | ASSERT(iip->ili_last_fields); |
| 2486 | goto out_iunlock; |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2487 | } |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2488 | |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2489 | /* |
Dave Chinner | 48d55e2 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2490 | * Inodes not attached to the buffer can be released immediately. |
| 2491 | * Everything else has to go through xfs_iflush_abort() on journal |
| 2492 | * commit as the flock synchronises removal of the inode from the |
| 2493 | * cluster buffer against inode reclaim. |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2494 | */ |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 2495 | if (!iip || list_empty(&iip->ili_item.li_bio_list)) |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2496 | goto out_iunlock; |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 2497 | |
| 2498 | __xfs_iflags_set(ip, XFS_IFLUSHING); |
| 2499 | spin_unlock(&ip->i_flags_lock); |
| 2500 | rcu_read_unlock(); |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2501 | |
| 2502 | /* we have a dirty inode in memory that has not yet been flushed. */ |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2503 | spin_lock(&iip->ili_lock); |
| 2504 | iip->ili_last_fields = iip->ili_fields; |
| 2505 | iip->ili_fields = 0; |
| 2506 | iip->ili_fsync_fields = 0; |
| 2507 | spin_unlock(&iip->ili_lock); |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2508 | ASSERT(iip->ili_last_fields); |
| 2509 | |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 2510 | if (ip != free_ip) |
| 2511 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 2512 | return; |
| 2513 | |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2514 | out_iunlock: |
| 2515 | if (ip != free_ip) |
| 2516 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 2517 | out_iflags_unlock: |
| 2518 | spin_unlock(&ip->i_flags_lock); |
| 2519 | rcu_read_unlock(); |
Dave Chinner | 5806165 | 2020-03-24 20:10:30 -0700 | [diff] [blame] | 2520 | } |
| 2521 | |
| 2522 | /* |
Zhi Yong Wu | 0b8182d | 2013-08-12 03:14:59 +0000 | [diff] [blame] | 2523 | * A big issue when freeing the inode cluster is that we _cannot_ skip any |
Dave Chinner | 5b3eed7 | 2010-08-24 11:42:41 +1000 | [diff] [blame] | 2524 | * inodes that are in memory - they all must be marked stale and attached to |
| 2525 | * the cluster buffer. |
| 2526 | */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2527 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2528 | xfs_ifree_cluster( |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2529 | struct xfs_trans *tp, |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2530 | struct xfs_perag *pag, |
| 2531 | struct xfs_inode *free_ip, |
Brian Foster | 09b5660 | 2015-05-29 09:26:03 +1000 | [diff] [blame] | 2532 | struct xfs_icluster *xic) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2533 | { |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2534 | struct xfs_mount *mp = free_ip->i_mount; |
| 2535 | struct xfs_ino_geometry *igeo = M_IGEO(mp); |
| 2536 | struct xfs_buf *bp; |
| 2537 | xfs_daddr_t blkno; |
| 2538 | xfs_ino_t inum = xic->first_ino; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2539 | int nbufs; |
Dave Chinner | 5b257b4 | 2010-06-03 16:22:29 +1000 | [diff] [blame] | 2540 | int i, j; |
Brian Foster | 3cdaa18 | 2015-06-04 13:03:34 +1000 | [diff] [blame] | 2541 | int ioffset; |
Darrick J. Wong | ce92464 | 2020-01-23 17:01:18 -0800 | [diff] [blame] | 2542 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2543 | |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 2544 | nbufs = igeo->ialloc_blks / igeo->blocks_per_cluster; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2545 | |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 2546 | for (j = 0; j < nbufs; j++, inum += igeo->inodes_per_cluster) { |
Brian Foster | 09b5660 | 2015-05-29 09:26:03 +1000 | [diff] [blame] | 2547 | /* |
| 2548 | * The allocation bitmap tells us which inodes of the chunk were |
| 2549 | * physically allocated. Skip the cluster if an inode falls into |
| 2550 | * a sparse region. |
| 2551 | */ |
Brian Foster | 3cdaa18 | 2015-06-04 13:03:34 +1000 | [diff] [blame] | 2552 | ioffset = inum - xic->first_ino; |
| 2553 | if ((xic->alloc & XFS_INOBT_MASK(ioffset)) == 0) { |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 2554 | ASSERT(ioffset % igeo->inodes_per_cluster == 0); |
Brian Foster | 09b5660 | 2015-05-29 09:26:03 +1000 | [diff] [blame] | 2555 | continue; |
| 2556 | } |
| 2557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | blkno = XFS_AGB_TO_DADDR(mp, XFS_INO_TO_AGNO(mp, inum), |
| 2559 | XFS_INO_TO_AGBNO(mp, inum)); |
| 2560 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2561 | /* |
Dave Chinner | 5b257b4 | 2010-06-03 16:22:29 +1000 | [diff] [blame] | 2562 | * We obtain and lock the backing buffer first in the process |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 2563 | * here to ensure dirty inodes attached to the buffer remain in |
| 2564 | * the flushing state while we mark them stale. |
| 2565 | * |
Dave Chinner | 5b257b4 | 2010-06-03 16:22:29 +1000 | [diff] [blame] | 2566 | * If we scan the in-memory inodes first, then buffer IO can |
| 2567 | * complete before we get a lock on it, and hence we may fail |
| 2568 | * to mark all the active inodes on the buffer stale. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2569 | */ |
Darrick J. Wong | ce92464 | 2020-01-23 17:01:18 -0800 | [diff] [blame] | 2570 | error = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno, |
| 2571 | mp->m_bsize * igeo->blocks_per_cluster, |
| 2572 | XBF_UNMAPPED, &bp); |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2573 | if (error) |
Darrick J. Wong | ce92464 | 2020-01-23 17:01:18 -0800 | [diff] [blame] | 2574 | return error; |
Dave Chinner | b0f539d | 2012-11-14 17:53:49 +1100 | [diff] [blame] | 2575 | |
| 2576 | /* |
| 2577 | * This buffer may not have been correctly initialised as we |
| 2578 | * didn't read it from disk. That's not important because we are |
| 2579 | * only using to mark the buffer as stale in the log, and to |
| 2580 | * attach stale cached inodes on it. That means it will never be |
| 2581 | * dispatched for IO. If it is, we want to know about it, and we |
| 2582 | * want it to fail. We can acheive this by adding a write |
| 2583 | * verifier to the buffer. |
| 2584 | */ |
Colin Ian King | 8c4ce79 | 2018-12-12 08:46:20 -0800 | [diff] [blame] | 2585 | bp->b_ops = &xfs_inode_buf_ops; |
Dave Chinner | b0f539d | 2012-11-14 17:53:49 +1100 | [diff] [blame] | 2586 | |
Dave Chinner | 5b257b4 | 2010-06-03 16:22:29 +1000 | [diff] [blame] | 2587 | /* |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2588 | * Now we need to set all the cached clean inodes as XFS_ISTALE, |
| 2589 | * too. This requires lookups, and will skip inodes that we've |
| 2590 | * already marked XFS_ISTALE. |
Dave Chinner | 5b257b4 | 2010-06-03 16:22:29 +1000 | [diff] [blame] | 2591 | */ |
Dave Chinner | 71e3e35 | 2020-06-29 14:49:18 -0700 | [diff] [blame] | 2592 | for (i = 0; i < igeo->inodes_per_cluster; i++) |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2593 | xfs_ifree_mark_inode_stale(pag, free_ip, inum + i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2594 | |
Dave Chinner | 5b3eed7 | 2010-08-24 11:42:41 +1000 | [diff] [blame] | 2595 | xfs_trans_stale_inode_buf(tp, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2596 | xfs_trans_binval(tp, bp); |
| 2597 | } |
Chandra Seetharaman | 2a30f36d | 2011-09-20 13:56:55 +0000 | [diff] [blame] | 2598 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2599 | } |
| 2600 | |
| 2601 | /* |
| 2602 | * This is called to return an inode to the inode free list. |
| 2603 | * The inode should already be truncated to 0 length and have |
| 2604 | * no pages associated with it. This routine also assumes that |
| 2605 | * the inode is already a part of the transaction. |
| 2606 | * |
| 2607 | * The on-disk copy of the inode will have been added to the list |
| 2608 | * of unlinked inodes in the AGI. We need to remove the inode from |
| 2609 | * that list atomically with respect to freeing it here. |
| 2610 | */ |
| 2611 | int |
| 2612 | xfs_ifree( |
Brian Foster | 0e0417f | 2018-07-11 22:26:07 -0700 | [diff] [blame] | 2613 | struct xfs_trans *tp, |
| 2614 | struct xfs_inode *ip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2615 | { |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2616 | struct xfs_mount *mp = ip->i_mount; |
| 2617 | struct xfs_perag *pag; |
Brian Foster | 09b5660 | 2015-05-29 09:26:03 +1000 | [diff] [blame] | 2618 | struct xfs_icluster xic = { 0 }; |
Dave Chinner | 1319ebe | 2020-06-29 14:48:46 -0700 | [diff] [blame] | 2619 | struct xfs_inode_log_item *iip = ip->i_itemp; |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2620 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2621 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 2622 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); |
Dave Chinner | 54d7b5c | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 2623 | ASSERT(VFS_I(ip)->i_nlink == 0); |
Christoph Hellwig | daf8396 | 2020-05-18 10:27:22 -0700 | [diff] [blame] | 2624 | ASSERT(ip->i_df.if_nextents == 0); |
Christoph Hellwig | 13d2c10 | 2021-03-29 11:11:40 -0700 | [diff] [blame] | 2625 | ASSERT(ip->i_disk_size == 0 || !S_ISREG(VFS_I(ip)->i_mode)); |
Christoph Hellwig | 6e73a54 | 2021-03-29 11:11:40 -0700 | [diff] [blame] | 2626 | ASSERT(ip->i_nblocks == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2627 | |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2628 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino)); |
| 2629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | /* |
| 2631 | * Pull the on-disk inode from the AGI unlinked list. |
| 2632 | */ |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2633 | error = xfs_iunlink_remove(tp, pag, ip); |
Dave Chinner | 1baaed8 | 2013-06-27 16:04:50 +1000 | [diff] [blame] | 2634 | if (error) |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2635 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2636 | |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2637 | error = xfs_difree(tp, pag, ip->i_ino, &xic); |
Dave Chinner | 1baaed8 | 2013-06-27 16:04:50 +1000 | [diff] [blame] | 2638 | if (error) |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2639 | goto out; |
Dave Chinner | 1baaed8 | 2013-06-27 16:04:50 +1000 | [diff] [blame] | 2640 | |
Christoph Hellwig | b2c2004 | 2020-05-18 10:27:21 -0700 | [diff] [blame] | 2641 | /* |
| 2642 | * Free any local-format data sitting around before we reset the |
| 2643 | * data fork to extents format. Note that the attr fork data has |
| 2644 | * already been freed by xfs_attr_inactive. |
| 2645 | */ |
Christoph Hellwig | f7e67b2 | 2020-05-18 10:28:05 -0700 | [diff] [blame] | 2646 | if (ip->i_df.if_format == XFS_DINODE_FMT_LOCAL) { |
Christoph Hellwig | b2c2004 | 2020-05-18 10:27:21 -0700 | [diff] [blame] | 2647 | kmem_free(ip->i_df.if_u1.if_data); |
| 2648 | ip->i_df.if_u1.if_data = NULL; |
| 2649 | ip->i_df.if_bytes = 0; |
| 2650 | } |
Darrick J. Wong | 98c4f78 | 2017-11-22 12:21:07 -0800 | [diff] [blame] | 2651 | |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 2652 | VFS_I(ip)->i_mode = 0; /* mark incore inode as free */ |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 2653 | ip->i_diflags = 0; |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2654 | ip->i_diflags2 = mp->m_ino_geo.new_diflags2; |
Christoph Hellwig | 7821ea3 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 2655 | ip->i_forkoff = 0; /* mark the attr fork not in use */ |
Christoph Hellwig | f7e67b2 | 2020-05-18 10:28:05 -0700 | [diff] [blame] | 2656 | ip->i_df.if_format = XFS_DINODE_FMT_EXTENTS; |
Christoph Hellwig | 9b3beb0 | 2021-03-29 11:11:38 -0700 | [diff] [blame] | 2657 | if (xfs_iflags_test(ip, XFS_IPRESERVE_DM_FIELDS)) |
| 2658 | xfs_iflags_clear(ip, XFS_IPRESERVE_DM_FIELDS); |
Eric Sandeen | dc1baa7 | 2018-03-28 17:48:08 -0700 | [diff] [blame] | 2659 | |
| 2660 | /* Don't attempt to replay owner changes for a deleted inode */ |
Dave Chinner | 1319ebe | 2020-06-29 14:48:46 -0700 | [diff] [blame] | 2661 | spin_lock(&iip->ili_lock); |
| 2662 | iip->ili_fields &= ~(XFS_ILOG_AOWNER | XFS_ILOG_DOWNER); |
| 2663 | spin_unlock(&iip->ili_lock); |
Eric Sandeen | dc1baa7 | 2018-03-28 17:48:08 -0700 | [diff] [blame] | 2664 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2665 | /* |
| 2666 | * Bump the generation count so no one will be confused |
| 2667 | * by reincarnations of this inode. |
| 2668 | */ |
Dave Chinner | 9e9a267 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 2669 | VFS_I(ip)->i_generation++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2670 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 2671 | |
Brian Foster | 09b5660 | 2015-05-29 09:26:03 +1000 | [diff] [blame] | 2672 | if (xic.deleted) |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 2673 | error = xfs_ifree_cluster(tp, pag, ip, &xic); |
| 2674 | out: |
| 2675 | xfs_perag_put(pag); |
Chandra Seetharaman | 2a30f36d | 2011-09-20 13:56:55 +0000 | [diff] [blame] | 2676 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2677 | } |
| 2678 | |
| 2679 | /* |
Christoph Hellwig | 60ec678 | 2010-02-17 19:43:56 +0000 | [diff] [blame] | 2680 | * This is called to unpin an inode. The caller must have the inode locked |
| 2681 | * in at least shared mode so that the buffer cannot be subsequently pinned |
| 2682 | * once someone is waiting for it to be unpinned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2683 | */ |
Christoph Hellwig | 60ec678 | 2010-02-17 19:43:56 +0000 | [diff] [blame] | 2684 | static void |
Christoph Hellwig | f392e63 | 2011-12-18 20:00:10 +0000 | [diff] [blame] | 2685 | xfs_iunpin( |
Christoph Hellwig | 60ec678 | 2010-02-17 19:43:56 +0000 | [diff] [blame] | 2686 | struct xfs_inode *ip) |
David Chinner | a3f74ff | 2008-03-06 13:43:42 +1100 | [diff] [blame] | 2687 | { |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 2688 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)); |
David Chinner | a3f74ff | 2008-03-06 13:43:42 +1100 | [diff] [blame] | 2689 | |
Dave Chinner | 4aaf15d | 2010-03-08 11:24:07 +1100 | [diff] [blame] | 2690 | trace_xfs_inode_unpin_nowait(ip, _RET_IP_); |
| 2691 | |
David Chinner | a3f74ff | 2008-03-06 13:43:42 +1100 | [diff] [blame] | 2692 | /* Give the log a push to start the unpinning I/O */ |
Dave Chinner | 5f9b4b0 | 2021-06-18 08:21:52 -0700 | [diff] [blame] | 2693 | xfs_log_force_seq(ip->i_mount, ip->i_itemp->ili_commit_seq, 0, NULL); |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 2694 | |
David Chinner | a3f74ff | 2008-03-06 13:43:42 +1100 | [diff] [blame] | 2695 | } |
| 2696 | |
Christoph Hellwig | f392e63 | 2011-12-18 20:00:10 +0000 | [diff] [blame] | 2697 | static void |
| 2698 | __xfs_iunpin_wait( |
| 2699 | struct xfs_inode *ip) |
| 2700 | { |
| 2701 | wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IPINNED_BIT); |
| 2702 | DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IPINNED_BIT); |
| 2703 | |
| 2704 | xfs_iunpin(ip); |
| 2705 | |
| 2706 | do { |
Ingo Molnar | 2141713 | 2017-03-05 11:25:39 +0100 | [diff] [blame] | 2707 | prepare_to_wait(wq, &wait.wq_entry, TASK_UNINTERRUPTIBLE); |
Christoph Hellwig | f392e63 | 2011-12-18 20:00:10 +0000 | [diff] [blame] | 2708 | if (xfs_ipincount(ip)) |
| 2709 | io_schedule(); |
| 2710 | } while (xfs_ipincount(ip)); |
Ingo Molnar | 2141713 | 2017-03-05 11:25:39 +0100 | [diff] [blame] | 2711 | finish_wait(wq, &wait.wq_entry); |
Christoph Hellwig | f392e63 | 2011-12-18 20:00:10 +0000 | [diff] [blame] | 2712 | } |
| 2713 | |
Dave Chinner | 777df5a | 2010-02-06 12:37:26 +1100 | [diff] [blame] | 2714 | void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2715 | xfs_iunpin_wait( |
Christoph Hellwig | 60ec678 | 2010-02-17 19:43:56 +0000 | [diff] [blame] | 2716 | struct xfs_inode *ip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2717 | { |
Christoph Hellwig | f392e63 | 2011-12-18 20:00:10 +0000 | [diff] [blame] | 2718 | if (xfs_ipincount(ip)) |
| 2719 | __xfs_iunpin_wait(ip); |
David Chinner | a3f74ff | 2008-03-06 13:43:42 +1100 | [diff] [blame] | 2720 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2721 | |
Dave Chinner | 2732036 | 2013-10-29 22:11:44 +1100 | [diff] [blame] | 2722 | /* |
| 2723 | * Removing an inode from the namespace involves removing the directory entry |
| 2724 | * and dropping the link count on the inode. Removing the directory entry can |
| 2725 | * result in locking an AGF (directory blocks were freed) and removing a link |
| 2726 | * count can result in placing the inode on an unlinked list which results in |
| 2727 | * locking an AGI. |
| 2728 | * |
| 2729 | * The big problem here is that we have an ordering constraint on AGF and AGI |
| 2730 | * locking - inode allocation locks the AGI, then can allocate a new extent for |
| 2731 | * new inodes, locking the AGF after the AGI. Similarly, freeing the inode |
| 2732 | * removes the inode from the unlinked list, requiring that we lock the AGI |
| 2733 | * first, and then freeing the inode can result in an inode chunk being freed |
| 2734 | * and hence freeing disk space requiring that we lock an AGF. |
| 2735 | * |
| 2736 | * Hence the ordering that is imposed by other parts of the code is AGI before |
| 2737 | * AGF. This means we cannot remove the directory entry before we drop the inode |
| 2738 | * reference count and put it on the unlinked list as this results in a lock |
| 2739 | * order of AGF then AGI, and this can deadlock against inode allocation and |
| 2740 | * freeing. Therefore we must drop the link counts before we remove the |
| 2741 | * directory entry. |
| 2742 | * |
| 2743 | * This is still safe from a transactional point of view - it is not until we |
Darrick J. Wong | 310a75a | 2016-08-03 11:18:10 +1000 | [diff] [blame] | 2744 | * get to xfs_defer_finish() that we have the possibility of multiple |
Dave Chinner | 2732036 | 2013-10-29 22:11:44 +1100 | [diff] [blame] | 2745 | * transactions in this operation. Hence as long as we remove the directory |
| 2746 | * entry and drop the link count in the first transaction of the remove |
| 2747 | * operation, there are no transactional constraints on the ordering here. |
| 2748 | */ |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2749 | int |
| 2750 | xfs_remove( |
| 2751 | xfs_inode_t *dp, |
| 2752 | struct xfs_name *name, |
| 2753 | xfs_inode_t *ip) |
| 2754 | { |
| 2755 | xfs_mount_t *mp = dp->i_mount; |
| 2756 | xfs_trans_t *tp = NULL; |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 2757 | int is_dir = S_ISDIR(VFS_I(ip)->i_mode); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2758 | int error = 0; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2759 | uint resblks; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2760 | |
| 2761 | trace_xfs_remove(dp, name); |
| 2762 | |
Dave Chinner | 75c8c50f | 2021-08-18 18:46:53 -0700 | [diff] [blame] | 2763 | if (xfs_is_shutdown(mp)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2764 | return -EIO; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2765 | |
Darrick J. Wong | c14cfcc | 2018-05-04 15:30:21 -0700 | [diff] [blame] | 2766 | error = xfs_qm_dqattach(dp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2767 | if (error) |
| 2768 | goto std_return; |
| 2769 | |
Darrick J. Wong | c14cfcc | 2018-05-04 15:30:21 -0700 | [diff] [blame] | 2770 | error = xfs_qm_dqattach(ip); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2771 | if (error) |
| 2772 | goto std_return; |
| 2773 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2774 | /* |
| 2775 | * We try to get the real space reservation first, |
| 2776 | * allowing for directory btree deletion(s) implying |
| 2777 | * possible bmap insert(s). If we can't get the space |
| 2778 | * reservation then we use 0 instead, and avoid the bmap |
| 2779 | * btree insert(s) in the directory code by, if the bmap |
| 2780 | * insert tries to happen, instead trimming the LAST |
| 2781 | * block from the directory. |
| 2782 | */ |
| 2783 | resblks = XFS_REMOVE_SPACE_RES(mp); |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 2784 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_remove, resblks, 0, 0, &tp); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2785 | if (error == -ENOSPC) { |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2786 | resblks = 0; |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 2787 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_remove, 0, 0, 0, |
| 2788 | &tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2789 | } |
| 2790 | if (error) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2791 | ASSERT(error != -ENOSPC); |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 2792 | goto std_return; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2793 | } |
| 2794 | |
Darrick J. Wong | 7c2d238 | 2018-01-26 15:27:33 -0800 | [diff] [blame] | 2795 | xfs_lock_two_inodes(dp, XFS_ILOCK_EXCL, ip, XFS_ILOCK_EXCL); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2796 | |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 2797 | xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2798 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); |
| 2799 | |
| 2800 | /* |
| 2801 | * If we're removing a directory perform some additional validation. |
| 2802 | */ |
| 2803 | if (is_dir) { |
Dave Chinner | 54d7b5c | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 2804 | ASSERT(VFS_I(ip)->i_nlink >= 2); |
| 2805 | if (VFS_I(ip)->i_nlink != 2) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2806 | error = -ENOTEMPTY; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2807 | goto out_trans_cancel; |
| 2808 | } |
| 2809 | if (!xfs_dir_isempty(ip)) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2810 | error = -ENOTEMPTY; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2811 | goto out_trans_cancel; |
| 2812 | } |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2813 | |
Dave Chinner | 2732036 | 2013-10-29 22:11:44 +1100 | [diff] [blame] | 2814 | /* Drop the link from ip's "..". */ |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2815 | error = xfs_droplink(tp, dp); |
| 2816 | if (error) |
Dave Chinner | 2732036 | 2013-10-29 22:11:44 +1100 | [diff] [blame] | 2817 | goto out_trans_cancel; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2818 | |
Dave Chinner | 2732036 | 2013-10-29 22:11:44 +1100 | [diff] [blame] | 2819 | /* Drop the "." link from ip to self. */ |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2820 | error = xfs_droplink(tp, ip); |
| 2821 | if (error) |
Dave Chinner | 2732036 | 2013-10-29 22:11:44 +1100 | [diff] [blame] | 2822 | goto out_trans_cancel; |
Darrick J. Wong | 5838d03 | 2021-07-12 12:58:48 -0700 | [diff] [blame] | 2823 | |
| 2824 | /* |
| 2825 | * Point the unlinked child directory's ".." entry to the root |
| 2826 | * directory to eliminate back-references to inodes that may |
| 2827 | * get freed before the child directory is closed. If the fs |
| 2828 | * gets shrunk, this can lead to dirent inode validation errors. |
| 2829 | */ |
| 2830 | if (dp->i_ino != tp->t_mountp->m_sb.sb_rootino) { |
| 2831 | error = xfs_dir_replace(tp, ip, &xfs_name_dotdot, |
| 2832 | tp->t_mountp->m_sb.sb_rootino, 0); |
| 2833 | if (error) |
| 2834 | return error; |
| 2835 | } |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2836 | } else { |
| 2837 | /* |
| 2838 | * When removing a non-directory we need to log the parent |
| 2839 | * inode here. For a directory this is done implicitly |
| 2840 | * by the xfs_droplink call for the ".." entry. |
| 2841 | */ |
| 2842 | xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE); |
| 2843 | } |
Dave Chinner | 2732036 | 2013-10-29 22:11:44 +1100 | [diff] [blame] | 2844 | xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2845 | |
Dave Chinner | 2732036 | 2013-10-29 22:11:44 +1100 | [diff] [blame] | 2846 | /* Drop the link from dp to ip. */ |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2847 | error = xfs_droplink(tp, ip); |
| 2848 | if (error) |
Dave Chinner | 2732036 | 2013-10-29 22:11:44 +1100 | [diff] [blame] | 2849 | goto out_trans_cancel; |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2850 | |
Brian Foster | 381eee6 | 2018-07-11 22:26:21 -0700 | [diff] [blame] | 2851 | error = xfs_dir_removename(tp, dp, name, ip->i_ino, resblks); |
Dave Chinner | 2732036 | 2013-10-29 22:11:44 +1100 | [diff] [blame] | 2852 | if (error) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2853 | ASSERT(error != -ENOENT); |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 2854 | goto out_trans_cancel; |
Dave Chinner | 2732036 | 2013-10-29 22:11:44 +1100 | [diff] [blame] | 2855 | } |
| 2856 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2857 | /* |
| 2858 | * If this is a synchronous mount, make sure that the |
| 2859 | * remove transaction goes to disk before returning to |
| 2860 | * the user. |
| 2861 | */ |
Dave Chinner | 0560f31 | 2021-08-18 18:46:52 -0700 | [diff] [blame] | 2862 | if (xfs_has_wsync(mp) || xfs_has_dirsync(mp)) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2863 | xfs_trans_set_sync(tp); |
| 2864 | |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 2865 | error = xfs_trans_commit(tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2866 | if (error) |
| 2867 | goto std_return; |
| 2868 | |
Christoph Hellwig | 2cd2ef6 | 2014-04-23 07:11:51 +1000 | [diff] [blame] | 2869 | if (is_dir && xfs_inode_is_filestream(ip)) |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2870 | xfs_filestream_deassociate(ip); |
| 2871 | |
| 2872 | return 0; |
| 2873 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2874 | out_trans_cancel: |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 2875 | xfs_trans_cancel(tp); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 2876 | std_return: |
| 2877 | return error; |
| 2878 | } |
| 2879 | |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 2880 | /* |
| 2881 | * Enter all inodes for a rename transaction into a sorted array. |
| 2882 | */ |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 2883 | #define __XFS_SORT_INODES 5 |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 2884 | STATIC void |
| 2885 | xfs_sort_for_rename( |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 2886 | struct xfs_inode *dp1, /* in: old (source) directory inode */ |
| 2887 | struct xfs_inode *dp2, /* in: new (target) directory inode */ |
| 2888 | struct xfs_inode *ip1, /* in: inode of old entry */ |
| 2889 | struct xfs_inode *ip2, /* in: inode of new entry */ |
| 2890 | struct xfs_inode *wip, /* in: whiteout inode */ |
| 2891 | struct xfs_inode **i_tab,/* out: sorted array of inodes */ |
| 2892 | int *num_inodes) /* in/out: inodes in array */ |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 2893 | { |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 2894 | int i, j; |
| 2895 | |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 2896 | ASSERT(*num_inodes == __XFS_SORT_INODES); |
| 2897 | memset(i_tab, 0, *num_inodes * sizeof(struct xfs_inode *)); |
| 2898 | |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 2899 | /* |
| 2900 | * i_tab contains a list of pointers to inodes. We initialize |
| 2901 | * the table here & we'll sort it. We will then use it to |
| 2902 | * order the acquisition of the inode locks. |
| 2903 | * |
| 2904 | * Note that the table may contain duplicates. e.g., dp1 == dp2. |
| 2905 | */ |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 2906 | i = 0; |
| 2907 | i_tab[i++] = dp1; |
| 2908 | i_tab[i++] = dp2; |
| 2909 | i_tab[i++] = ip1; |
| 2910 | if (ip2) |
| 2911 | i_tab[i++] = ip2; |
| 2912 | if (wip) |
| 2913 | i_tab[i++] = wip; |
| 2914 | *num_inodes = i; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 2915 | |
| 2916 | /* |
| 2917 | * Sort the elements via bubble sort. (Remember, there are at |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 2918 | * most 5 elements to sort, so this is adequate.) |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 2919 | */ |
| 2920 | for (i = 0; i < *num_inodes; i++) { |
| 2921 | for (j = 1; j < *num_inodes; j++) { |
| 2922 | if (i_tab[j]->i_ino < i_tab[j-1]->i_ino) { |
Dave Chinner | 95afcf5 | 2015-03-25 14:03:32 +1100 | [diff] [blame] | 2923 | struct xfs_inode *temp = i_tab[j]; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 2924 | i_tab[j] = i_tab[j-1]; |
| 2925 | i_tab[j-1] = temp; |
| 2926 | } |
| 2927 | } |
| 2928 | } |
| 2929 | } |
| 2930 | |
Dave Chinner | 310606b | 2015-03-25 14:06:07 +1100 | [diff] [blame] | 2931 | static int |
| 2932 | xfs_finish_rename( |
Brian Foster | c9cfdb3 | 2018-07-11 22:26:08 -0700 | [diff] [blame] | 2933 | struct xfs_trans *tp) |
Dave Chinner | 310606b | 2015-03-25 14:06:07 +1100 | [diff] [blame] | 2934 | { |
Dave Chinner | 310606b | 2015-03-25 14:06:07 +1100 | [diff] [blame] | 2935 | /* |
| 2936 | * If this is a synchronous mount, make sure that the rename transaction |
| 2937 | * goes to disk before returning to the user. |
| 2938 | */ |
Dave Chinner | 0560f31 | 2021-08-18 18:46:52 -0700 | [diff] [blame] | 2939 | if (xfs_has_wsync(tp->t_mountp) || xfs_has_dirsync(tp->t_mountp)) |
Dave Chinner | 310606b | 2015-03-25 14:06:07 +1100 | [diff] [blame] | 2940 | xfs_trans_set_sync(tp); |
| 2941 | |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 2942 | return xfs_trans_commit(tp); |
Dave Chinner | 310606b | 2015-03-25 14:06:07 +1100 | [diff] [blame] | 2943 | } |
| 2944 | |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 2945 | /* |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 2946 | * xfs_cross_rename() |
| 2947 | * |
Bhaskar Chowdhury | 0145225 | 2021-03-23 16:59:30 -0700 | [diff] [blame] | 2948 | * responsible for handling RENAME_EXCHANGE flag in renameat2() syscall |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 2949 | */ |
| 2950 | STATIC int |
| 2951 | xfs_cross_rename( |
| 2952 | struct xfs_trans *tp, |
| 2953 | struct xfs_inode *dp1, |
| 2954 | struct xfs_name *name1, |
| 2955 | struct xfs_inode *ip1, |
| 2956 | struct xfs_inode *dp2, |
| 2957 | struct xfs_name *name2, |
| 2958 | struct xfs_inode *ip2, |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 2959 | int spaceres) |
| 2960 | { |
| 2961 | int error = 0; |
| 2962 | int ip1_flags = 0; |
| 2963 | int ip2_flags = 0; |
| 2964 | int dp2_flags = 0; |
| 2965 | |
| 2966 | /* Swap inode number for dirent in first parent */ |
Brian Foster | 381eee6 | 2018-07-11 22:26:21 -0700 | [diff] [blame] | 2967 | error = xfs_dir_replace(tp, dp1, name1, ip2->i_ino, spaceres); |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 2968 | if (error) |
Dave Chinner | eeacd32 | 2015-03-25 14:08:07 +1100 | [diff] [blame] | 2969 | goto out_trans_abort; |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 2970 | |
| 2971 | /* Swap inode number for dirent in second parent */ |
Brian Foster | 381eee6 | 2018-07-11 22:26:21 -0700 | [diff] [blame] | 2972 | error = xfs_dir_replace(tp, dp2, name2, ip1->i_ino, spaceres); |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 2973 | if (error) |
Dave Chinner | eeacd32 | 2015-03-25 14:08:07 +1100 | [diff] [blame] | 2974 | goto out_trans_abort; |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 2975 | |
| 2976 | /* |
| 2977 | * If we're renaming one or more directories across different parents, |
| 2978 | * update the respective ".." entries (and link counts) to match the new |
| 2979 | * parents. |
| 2980 | */ |
| 2981 | if (dp1 != dp2) { |
| 2982 | dp2_flags = XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG; |
| 2983 | |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 2984 | if (S_ISDIR(VFS_I(ip2)->i_mode)) { |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 2985 | error = xfs_dir_replace(tp, ip2, &xfs_name_dotdot, |
Brian Foster | 381eee6 | 2018-07-11 22:26:21 -0700 | [diff] [blame] | 2986 | dp1->i_ino, spaceres); |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 2987 | if (error) |
Dave Chinner | eeacd32 | 2015-03-25 14:08:07 +1100 | [diff] [blame] | 2988 | goto out_trans_abort; |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 2989 | |
| 2990 | /* transfer ip2 ".." reference to dp1 */ |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 2991 | if (!S_ISDIR(VFS_I(ip1)->i_mode)) { |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 2992 | error = xfs_droplink(tp, dp2); |
| 2993 | if (error) |
Dave Chinner | eeacd32 | 2015-03-25 14:08:07 +1100 | [diff] [blame] | 2994 | goto out_trans_abort; |
Eric Sandeen | 9108326 | 2019-05-01 20:26:30 -0700 | [diff] [blame] | 2995 | xfs_bumplink(tp, dp1); |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 2996 | } |
| 2997 | |
| 2998 | /* |
| 2999 | * Although ip1 isn't changed here, userspace needs |
| 3000 | * to be warned about the change, so that applications |
| 3001 | * relying on it (like backup ones), will properly |
| 3002 | * notify the change |
| 3003 | */ |
| 3004 | ip1_flags |= XFS_ICHGTIME_CHG; |
| 3005 | ip2_flags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG; |
| 3006 | } |
| 3007 | |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 3008 | if (S_ISDIR(VFS_I(ip1)->i_mode)) { |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 3009 | error = xfs_dir_replace(tp, ip1, &xfs_name_dotdot, |
Brian Foster | 381eee6 | 2018-07-11 22:26:21 -0700 | [diff] [blame] | 3010 | dp2->i_ino, spaceres); |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 3011 | if (error) |
Dave Chinner | eeacd32 | 2015-03-25 14:08:07 +1100 | [diff] [blame] | 3012 | goto out_trans_abort; |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 3013 | |
| 3014 | /* transfer ip1 ".." reference to dp2 */ |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 3015 | if (!S_ISDIR(VFS_I(ip2)->i_mode)) { |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 3016 | error = xfs_droplink(tp, dp1); |
| 3017 | if (error) |
Dave Chinner | eeacd32 | 2015-03-25 14:08:07 +1100 | [diff] [blame] | 3018 | goto out_trans_abort; |
Eric Sandeen | 9108326 | 2019-05-01 20:26:30 -0700 | [diff] [blame] | 3019 | xfs_bumplink(tp, dp2); |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 3020 | } |
| 3021 | |
| 3022 | /* |
| 3023 | * Although ip2 isn't changed here, userspace needs |
| 3024 | * to be warned about the change, so that applications |
| 3025 | * relying on it (like backup ones), will properly |
| 3026 | * notify the change |
| 3027 | */ |
| 3028 | ip1_flags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG; |
| 3029 | ip2_flags |= XFS_ICHGTIME_CHG; |
| 3030 | } |
| 3031 | } |
| 3032 | |
| 3033 | if (ip1_flags) { |
| 3034 | xfs_trans_ichgtime(tp, ip1, ip1_flags); |
| 3035 | xfs_trans_log_inode(tp, ip1, XFS_ILOG_CORE); |
| 3036 | } |
| 3037 | if (ip2_flags) { |
| 3038 | xfs_trans_ichgtime(tp, ip2, ip2_flags); |
| 3039 | xfs_trans_log_inode(tp, ip2, XFS_ILOG_CORE); |
| 3040 | } |
| 3041 | if (dp2_flags) { |
| 3042 | xfs_trans_ichgtime(tp, dp2, dp2_flags); |
| 3043 | xfs_trans_log_inode(tp, dp2, XFS_ILOG_CORE); |
| 3044 | } |
| 3045 | xfs_trans_ichgtime(tp, dp1, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
| 3046 | xfs_trans_log_inode(tp, dp1, XFS_ILOG_CORE); |
Brian Foster | c9cfdb3 | 2018-07-11 22:26:08 -0700 | [diff] [blame] | 3047 | return xfs_finish_rename(tp); |
Dave Chinner | eeacd32 | 2015-03-25 14:08:07 +1100 | [diff] [blame] | 3048 | |
| 3049 | out_trans_abort: |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 3050 | xfs_trans_cancel(tp); |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 3051 | return error; |
| 3052 | } |
| 3053 | |
| 3054 | /* |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3055 | * xfs_rename_alloc_whiteout() |
| 3056 | * |
Randy Dunlap | b63da6c | 2020-08-05 08:49:58 -0700 | [diff] [blame] | 3057 | * Return a referenced, unlinked, unlocked inode that can be used as a |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3058 | * whiteout in a rename transaction. We use a tmpfile inode here so that if we |
| 3059 | * crash between allocating the inode and linking it into the rename transaction |
| 3060 | * recovery will free the inode and we won't leak it. |
| 3061 | */ |
| 3062 | static int |
| 3063 | xfs_rename_alloc_whiteout( |
Christoph Hellwig | f736d93 | 2021-01-21 14:19:58 +0100 | [diff] [blame] | 3064 | struct user_namespace *mnt_userns, |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3065 | struct xfs_inode *dp, |
| 3066 | struct xfs_inode **wip) |
| 3067 | { |
| 3068 | struct xfs_inode *tmpfile; |
| 3069 | int error; |
| 3070 | |
Christoph Hellwig | f736d93 | 2021-01-21 14:19:58 +0100 | [diff] [blame] | 3071 | error = xfs_create_tmpfile(mnt_userns, dp, S_IFCHR | WHITEOUT_MODE, |
| 3072 | &tmpfile); |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3073 | if (error) |
| 3074 | return error; |
| 3075 | |
Brian Foster | 22419ac | 2015-05-29 08:14:55 +1000 | [diff] [blame] | 3076 | /* |
| 3077 | * Prepare the tmpfile inode as if it were created through the VFS. |
Darrick J. Wong | c4a6bf7 | 2019-02-13 11:15:17 -0800 | [diff] [blame] | 3078 | * Complete the inode setup and flag it as linkable. nlink is already |
| 3079 | * zero, so we can skip the drop_nlink. |
Brian Foster | 22419ac | 2015-05-29 08:14:55 +1000 | [diff] [blame] | 3080 | */ |
Christoph Hellwig | 2b3d1d4 | 2016-04-06 07:48:27 +1000 | [diff] [blame] | 3081 | xfs_setup_iops(tmpfile); |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3082 | xfs_finish_inode_setup(tmpfile); |
| 3083 | VFS_I(tmpfile)->i_state |= I_LINKABLE; |
| 3084 | |
| 3085 | *wip = tmpfile; |
| 3086 | return 0; |
| 3087 | } |
| 3088 | |
| 3089 | /* |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3090 | * xfs_rename |
| 3091 | */ |
| 3092 | int |
| 3093 | xfs_rename( |
Christoph Hellwig | f736d93 | 2021-01-21 14:19:58 +0100 | [diff] [blame] | 3094 | struct user_namespace *mnt_userns, |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3095 | struct xfs_inode *src_dp, |
| 3096 | struct xfs_name *src_name, |
| 3097 | struct xfs_inode *src_ip, |
| 3098 | struct xfs_inode *target_dp, |
| 3099 | struct xfs_name *target_name, |
| 3100 | struct xfs_inode *target_ip, |
| 3101 | unsigned int flags) |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3102 | { |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3103 | struct xfs_mount *mp = src_dp->i_mount; |
| 3104 | struct xfs_trans *tp; |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3105 | struct xfs_inode *wip = NULL; /* whiteout inode */ |
| 3106 | struct xfs_inode *inodes[__XFS_SORT_INODES]; |
Darrick J. Wong | 6da1b4b | 2021-01-22 16:48:32 -0800 | [diff] [blame] | 3107 | int i; |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3108 | int num_inodes = __XFS_SORT_INODES; |
Dave Chinner | 2b93681 | 2015-03-25 15:12:30 +1100 | [diff] [blame] | 3109 | bool new_parent = (src_dp != target_dp); |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 3110 | bool src_is_directory = S_ISDIR(VFS_I(src_ip)->i_mode); |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3111 | int spaceres; |
| 3112 | int error; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3113 | |
| 3114 | trace_xfs_rename(src_dp, target_dp, src_name, target_name); |
| 3115 | |
Dave Chinner | eeacd32 | 2015-03-25 14:08:07 +1100 | [diff] [blame] | 3116 | if ((flags & RENAME_EXCHANGE) && !target_ip) |
| 3117 | return -EINVAL; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3118 | |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3119 | /* |
| 3120 | * If we are doing a whiteout operation, allocate the whiteout inode |
| 3121 | * we will be placing at the target and ensure the type is set |
| 3122 | * appropriately. |
| 3123 | */ |
| 3124 | if (flags & RENAME_WHITEOUT) { |
Christoph Hellwig | f736d93 | 2021-01-21 14:19:58 +0100 | [diff] [blame] | 3125 | error = xfs_rename_alloc_whiteout(mnt_userns, target_dp, &wip); |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3126 | if (error) |
| 3127 | return error; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3128 | |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3129 | /* setup target dirent info as whiteout */ |
| 3130 | src_name->type = XFS_DIR3_FT_CHRDEV; |
| 3131 | } |
| 3132 | |
| 3133 | xfs_sort_for_rename(src_dp, target_dp, src_ip, target_ip, wip, |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3134 | inodes, &num_inodes); |
| 3135 | |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3136 | spaceres = XFS_RENAME_SPACE_RES(mp, target_name->len); |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 3137 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_rename, spaceres, 0, 0, &tp); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 3138 | if (error == -ENOSPC) { |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3139 | spaceres = 0; |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 3140 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_rename, 0, 0, 0, |
| 3141 | &tp); |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3142 | } |
Dave Chinner | 445883e | 2015-03-25 14:05:43 +1100 | [diff] [blame] | 3143 | if (error) |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 3144 | goto out_release_wip; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3145 | |
| 3146 | /* |
| 3147 | * Attach the dquots to the inodes |
| 3148 | */ |
| 3149 | error = xfs_qm_vop_rename_dqattach(inodes); |
Dave Chinner | 445883e | 2015-03-25 14:05:43 +1100 | [diff] [blame] | 3150 | if (error) |
| 3151 | goto out_trans_cancel; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3152 | |
| 3153 | /* |
| 3154 | * Lock all the participating inodes. Depending upon whether |
| 3155 | * the target_name exists in the target directory, and |
| 3156 | * whether the target directory is the same as the source |
| 3157 | * directory, we can lock from 2 to 4 inodes. |
| 3158 | */ |
| 3159 | xfs_lock_inodes(inodes, num_inodes, XFS_ILOCK_EXCL); |
| 3160 | |
| 3161 | /* |
| 3162 | * Join all the inodes to the transaction. From this point on, |
| 3163 | * we can rely on either trans_commit or trans_cancel to unlock |
| 3164 | * them. |
| 3165 | */ |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 3166 | xfs_trans_ijoin(tp, src_dp, XFS_ILOCK_EXCL); |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3167 | if (new_parent) |
Christoph Hellwig | 6552321 | 2016-11-30 14:33:25 +1100 | [diff] [blame] | 3168 | xfs_trans_ijoin(tp, target_dp, XFS_ILOCK_EXCL); |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3169 | xfs_trans_ijoin(tp, src_ip, XFS_ILOCK_EXCL); |
| 3170 | if (target_ip) |
| 3171 | xfs_trans_ijoin(tp, target_ip, XFS_ILOCK_EXCL); |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3172 | if (wip) |
| 3173 | xfs_trans_ijoin(tp, wip, XFS_ILOCK_EXCL); |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3174 | |
| 3175 | /* |
| 3176 | * If we are using project inheritance, we only allow renames |
| 3177 | * into our tree when the project IDs are the same; else the |
| 3178 | * tree quota mechanism would be circumvented. |
| 3179 | */ |
Christoph Hellwig | db07349 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 3180 | if (unlikely((target_dp->i_diflags & XFS_DIFLAG_PROJINHERIT) && |
Christoph Hellwig | ceaf603 | 2021-03-29 11:11:39 -0700 | [diff] [blame] | 3181 | target_dp->i_projid != src_ip->i_projid)) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 3182 | error = -EXDEV; |
Dave Chinner | 445883e | 2015-03-25 14:05:43 +1100 | [diff] [blame] | 3183 | goto out_trans_cancel; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3184 | } |
| 3185 | |
Dave Chinner | eeacd32 | 2015-03-25 14:08:07 +1100 | [diff] [blame] | 3186 | /* RENAME_EXCHANGE is unique from here on. */ |
| 3187 | if (flags & RENAME_EXCHANGE) |
| 3188 | return xfs_cross_rename(tp, src_dp, src_name, src_ip, |
| 3189 | target_dp, target_name, target_ip, |
Brian Foster | f16dea5 | 2018-07-11 22:26:20 -0700 | [diff] [blame] | 3190 | spaceres); |
Carlos Maiolino | d31a182 | 2014-12-24 08:51:42 +1100 | [diff] [blame] | 3191 | |
| 3192 | /* |
kaixuxia | bc56ad8 | 2019-09-03 21:06:50 -0700 | [diff] [blame] | 3193 | * Check for expected errors before we dirty the transaction |
| 3194 | * so we can return an error without a transaction abort. |
Chandan Babu R | 02092a2 | 2021-01-22 16:48:13 -0800 | [diff] [blame] | 3195 | * |
| 3196 | * Extent count overflow check: |
| 3197 | * |
| 3198 | * From the perspective of src_dp, a rename operation is essentially a |
| 3199 | * directory entry remove operation. Hence the only place where we check |
| 3200 | * for extent count overflow for src_dp is in |
| 3201 | * xfs_bmap_del_extent_real(). xfs_bmap_del_extent_real() returns |
| 3202 | * -ENOSPC when it detects a possible extent count overflow and in |
| 3203 | * response, the higher layers of directory handling code do the |
| 3204 | * following: |
| 3205 | * 1. Data/Free blocks: XFS lets these blocks linger until a |
| 3206 | * future remove operation removes them. |
| 3207 | * 2. Dabtree blocks: XFS swaps the blocks with the last block in the |
| 3208 | * Leaf space and unmaps the last block. |
| 3209 | * |
| 3210 | * For target_dp, there are two cases depending on whether the |
| 3211 | * destination directory entry exists or not. |
| 3212 | * |
| 3213 | * When destination directory entry does not exist (i.e. target_ip == |
| 3214 | * NULL), extent count overflow check is performed only when transaction |
| 3215 | * has a non-zero sized space reservation associated with it. With a |
| 3216 | * zero-sized space reservation, XFS allows a rename operation to |
| 3217 | * continue only when the directory has sufficient free space in its |
| 3218 | * data/leaf/free space blocks to hold the new entry. |
| 3219 | * |
| 3220 | * When destination directory entry exists (i.e. target_ip != NULL), all |
| 3221 | * we need to do is change the inode number associated with the already |
| 3222 | * existing entry. Hence there is no need to perform an extent count |
| 3223 | * overflow check. |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3224 | */ |
| 3225 | if (target_ip == NULL) { |
| 3226 | /* |
| 3227 | * If there's no space reservation, check the entry will |
| 3228 | * fit before actually inserting it. |
| 3229 | */ |
Eric Sandeen | 94f3cad | 2014-09-09 11:57:52 +1000 | [diff] [blame] | 3230 | if (!spaceres) { |
| 3231 | error = xfs_dir_canenter(tp, target_dp, target_name); |
| 3232 | if (error) |
Dave Chinner | 445883e | 2015-03-25 14:05:43 +1100 | [diff] [blame] | 3233 | goto out_trans_cancel; |
Chandan Babu R | 02092a2 | 2021-01-22 16:48:13 -0800 | [diff] [blame] | 3234 | } else { |
| 3235 | error = xfs_iext_count_may_overflow(target_dp, |
| 3236 | XFS_DATA_FORK, |
| 3237 | XFS_IEXT_DIR_MANIP_CNT(mp)); |
| 3238 | if (error) |
| 3239 | goto out_trans_cancel; |
Eric Sandeen | 94f3cad | 2014-09-09 11:57:52 +1000 | [diff] [blame] | 3240 | } |
kaixuxia | bc56ad8 | 2019-09-03 21:06:50 -0700 | [diff] [blame] | 3241 | } else { |
| 3242 | /* |
| 3243 | * If target exists and it's a directory, check that whether |
| 3244 | * it can be destroyed. |
| 3245 | */ |
| 3246 | if (S_ISDIR(VFS_I(target_ip)->i_mode) && |
| 3247 | (!xfs_dir_isempty(target_ip) || |
| 3248 | (VFS_I(target_ip)->i_nlink > 2))) { |
| 3249 | error = -EEXIST; |
| 3250 | goto out_trans_cancel; |
| 3251 | } |
| 3252 | } |
| 3253 | |
| 3254 | /* |
Darrick J. Wong | 6da1b4b | 2021-01-22 16:48:32 -0800 | [diff] [blame] | 3255 | * Lock the AGI buffers we need to handle bumping the nlink of the |
| 3256 | * whiteout inode off the unlinked list and to handle dropping the |
| 3257 | * nlink of the target inode. Per locking order rules, do this in |
| 3258 | * increasing AG order and before directory block allocation tries to |
| 3259 | * grab AGFs because we grab AGIs before AGFs. |
| 3260 | * |
| 3261 | * The (vfs) caller must ensure that if src is a directory then |
| 3262 | * target_ip is either null or an empty directory. |
| 3263 | */ |
| 3264 | for (i = 0; i < num_inodes && inodes[i] != NULL; i++) { |
| 3265 | if (inodes[i] == wip || |
| 3266 | (inodes[i] == target_ip && |
| 3267 | (VFS_I(target_ip)->i_nlink == 1 || src_is_directory))) { |
| 3268 | struct xfs_buf *bp; |
| 3269 | xfs_agnumber_t agno; |
| 3270 | |
| 3271 | agno = XFS_INO_TO_AGNO(mp, inodes[i]->i_ino); |
| 3272 | error = xfs_read_agi(mp, tp, agno, &bp); |
| 3273 | if (error) |
| 3274 | goto out_trans_cancel; |
| 3275 | } |
| 3276 | } |
| 3277 | |
| 3278 | /* |
kaixuxia | bc56ad8 | 2019-09-03 21:06:50 -0700 | [diff] [blame] | 3279 | * Directory entry creation below may acquire the AGF. Remove |
| 3280 | * the whiteout from the unlinked list first to preserve correct |
| 3281 | * AGI/AGF locking order. This dirties the transaction so failures |
| 3282 | * after this point will abort and log recovery will clean up the |
| 3283 | * mess. |
| 3284 | * |
| 3285 | * For whiteouts, we need to bump the link count on the whiteout |
| 3286 | * inode. After this point, we have a real link, clear the tmpfile |
| 3287 | * state flag from the inode so it doesn't accidentally get misused |
| 3288 | * in future. |
| 3289 | */ |
| 3290 | if (wip) { |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 3291 | struct xfs_perag *pag; |
| 3292 | |
kaixuxia | bc56ad8 | 2019-09-03 21:06:50 -0700 | [diff] [blame] | 3293 | ASSERT(VFS_I(wip)->i_nlink == 0); |
Dave Chinner | f40aadb | 2021-06-02 10:48:51 +1000 | [diff] [blame] | 3294 | |
| 3295 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, wip->i_ino)); |
| 3296 | error = xfs_iunlink_remove(tp, pag, wip); |
| 3297 | xfs_perag_put(pag); |
kaixuxia | bc56ad8 | 2019-09-03 21:06:50 -0700 | [diff] [blame] | 3298 | if (error) |
| 3299 | goto out_trans_cancel; |
| 3300 | |
| 3301 | xfs_bumplink(tp, wip); |
kaixuxia | bc56ad8 | 2019-09-03 21:06:50 -0700 | [diff] [blame] | 3302 | VFS_I(wip)->i_state &= ~I_LINKABLE; |
| 3303 | } |
| 3304 | |
| 3305 | /* |
| 3306 | * Set up the target. |
| 3307 | */ |
| 3308 | if (target_ip == NULL) { |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3309 | /* |
| 3310 | * If target does not exist and the rename crosses |
| 3311 | * directories, adjust the target directory link count |
| 3312 | * to account for the ".." reference from the new entry. |
| 3313 | */ |
| 3314 | error = xfs_dir_createname(tp, target_dp, target_name, |
Brian Foster | 381eee6 | 2018-07-11 22:26:21 -0700 | [diff] [blame] | 3315 | src_ip->i_ino, spaceres); |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3316 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 3317 | goto out_trans_cancel; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3318 | |
| 3319 | xfs_trans_ichgtime(tp, target_dp, |
| 3320 | XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
| 3321 | |
| 3322 | if (new_parent && src_is_directory) { |
Eric Sandeen | 9108326 | 2019-05-01 20:26:30 -0700 | [diff] [blame] | 3323 | xfs_bumplink(tp, target_dp); |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3324 | } |
| 3325 | } else { /* target_ip != NULL */ |
| 3326 | /* |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3327 | * Link the source inode under the target name. |
| 3328 | * If the source inode is a directory and we are moving |
| 3329 | * it across directories, its ".." entry will be |
| 3330 | * inconsistent until we replace that down below. |
| 3331 | * |
| 3332 | * In case there is already an entry with the same |
| 3333 | * name at the destination directory, remove it first. |
| 3334 | */ |
| 3335 | error = xfs_dir_replace(tp, target_dp, target_name, |
Brian Foster | 381eee6 | 2018-07-11 22:26:21 -0700 | [diff] [blame] | 3336 | src_ip->i_ino, spaceres); |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3337 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 3338 | goto out_trans_cancel; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3339 | |
| 3340 | xfs_trans_ichgtime(tp, target_dp, |
| 3341 | XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
| 3342 | |
| 3343 | /* |
| 3344 | * Decrement the link count on the target since the target |
| 3345 | * dir no longer points to it. |
| 3346 | */ |
| 3347 | error = xfs_droplink(tp, target_ip); |
| 3348 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 3349 | goto out_trans_cancel; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3350 | |
| 3351 | if (src_is_directory) { |
| 3352 | /* |
| 3353 | * Drop the link from the old "." entry. |
| 3354 | */ |
| 3355 | error = xfs_droplink(tp, target_ip); |
| 3356 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 3357 | goto out_trans_cancel; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3358 | } |
| 3359 | } /* target_ip != NULL */ |
| 3360 | |
| 3361 | /* |
| 3362 | * Remove the source. |
| 3363 | */ |
| 3364 | if (new_parent && src_is_directory) { |
| 3365 | /* |
| 3366 | * Rewrite the ".." entry to point to the new |
| 3367 | * directory. |
| 3368 | */ |
| 3369 | error = xfs_dir_replace(tp, src_ip, &xfs_name_dotdot, |
Brian Foster | 381eee6 | 2018-07-11 22:26:21 -0700 | [diff] [blame] | 3370 | target_dp->i_ino, spaceres); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 3371 | ASSERT(error != -EEXIST); |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3372 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 3373 | goto out_trans_cancel; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3374 | } |
| 3375 | |
| 3376 | /* |
| 3377 | * We always want to hit the ctime on the source inode. |
| 3378 | * |
| 3379 | * This isn't strictly required by the standards since the source |
| 3380 | * inode isn't really being changed, but old unix file systems did |
| 3381 | * it and some incremental backup programs won't work without it. |
| 3382 | */ |
| 3383 | xfs_trans_ichgtime(tp, src_ip, XFS_ICHGTIME_CHG); |
| 3384 | xfs_trans_log_inode(tp, src_ip, XFS_ILOG_CORE); |
| 3385 | |
| 3386 | /* |
| 3387 | * Adjust the link count on src_dp. This is necessary when |
| 3388 | * renaming a directory, either within one parent when |
| 3389 | * the target existed, or across two parent directories. |
| 3390 | */ |
| 3391 | if (src_is_directory && (new_parent || target_ip != NULL)) { |
| 3392 | |
| 3393 | /* |
| 3394 | * Decrement link count on src_directory since the |
| 3395 | * entry that's moved no longer points to it. |
| 3396 | */ |
| 3397 | error = xfs_droplink(tp, src_dp); |
| 3398 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 3399 | goto out_trans_cancel; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3400 | } |
| 3401 | |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3402 | /* |
| 3403 | * For whiteouts, we only need to update the source dirent with the |
| 3404 | * inode number of the whiteout inode rather than removing it |
| 3405 | * altogether. |
| 3406 | */ |
| 3407 | if (wip) { |
| 3408 | error = xfs_dir_replace(tp, src_dp, src_name, wip->i_ino, |
Brian Foster | 381eee6 | 2018-07-11 22:26:21 -0700 | [diff] [blame] | 3409 | spaceres); |
Chandan Babu R | 02092a2 | 2021-01-22 16:48:13 -0800 | [diff] [blame] | 3410 | } else { |
| 3411 | /* |
| 3412 | * NOTE: We don't need to check for extent count overflow here |
| 3413 | * because the dir remove name code will leave the dir block in |
| 3414 | * place if the extent count would overflow. |
| 3415 | */ |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3416 | error = xfs_dir_removename(tp, src_dp, src_name, src_ip->i_ino, |
Brian Foster | 381eee6 | 2018-07-11 22:26:21 -0700 | [diff] [blame] | 3417 | spaceres); |
Chandan Babu R | 02092a2 | 2021-01-22 16:48:13 -0800 | [diff] [blame] | 3418 | } |
| 3419 | |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3420 | if (error) |
Brian Foster | c8eac49 | 2018-07-24 13:43:13 -0700 | [diff] [blame] | 3421 | goto out_trans_cancel; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3422 | |
| 3423 | xfs_trans_ichgtime(tp, src_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
| 3424 | xfs_trans_log_inode(tp, src_dp, XFS_ILOG_CORE); |
| 3425 | if (new_parent) |
| 3426 | xfs_trans_log_inode(tp, target_dp, XFS_ILOG_CORE); |
| 3427 | |
Brian Foster | c9cfdb3 | 2018-07-11 22:26:08 -0700 | [diff] [blame] | 3428 | error = xfs_finish_rename(tp); |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3429 | if (wip) |
Darrick J. Wong | 44a8736 | 2018-07-25 12:52:32 -0700 | [diff] [blame] | 3430 | xfs_irele(wip); |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3431 | return error; |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3432 | |
Dave Chinner | 445883e | 2015-03-25 14:05:43 +1100 | [diff] [blame] | 3433 | out_trans_cancel: |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 3434 | xfs_trans_cancel(tp); |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 3435 | out_release_wip: |
Dave Chinner | 7dcf5c3 | 2015-03-25 14:08:08 +1100 | [diff] [blame] | 3436 | if (wip) |
Darrick J. Wong | 44a8736 | 2018-07-25 12:52:32 -0700 | [diff] [blame] | 3437 | xfs_irele(wip); |
Dave Chinner | f6bba20 | 2013-08-12 20:49:46 +1000 | [diff] [blame] | 3438 | return error; |
| 3439 | } |
| 3440 | |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3441 | static int |
| 3442 | xfs_iflush( |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 3443 | struct xfs_inode *ip, |
| 3444 | struct xfs_buf *bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3445 | { |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 3446 | struct xfs_inode_log_item *iip = ip->i_itemp; |
| 3447 | struct xfs_dinode *dip; |
| 3448 | struct xfs_mount *mp = ip->i_mount; |
Brian Foster | f201929 | 2020-05-06 13:25:20 -0700 | [diff] [blame] | 3449 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3450 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 3451 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)); |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 3452 | ASSERT(xfs_iflags_test(ip, XFS_IFLUSHING)); |
Christoph Hellwig | f7e67b2 | 2020-05-18 10:28:05 -0700 | [diff] [blame] | 3453 | ASSERT(ip->i_df.if_format != XFS_DINODE_FMT_BTREE || |
Christoph Hellwig | daf8396 | 2020-05-18 10:27:22 -0700 | [diff] [blame] | 3454 | ip->i_df.if_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK)); |
Dave Chinner | 90c60e1 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3455 | ASSERT(iip->ili_item.li_buf == bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3456 | |
Christoph Hellwig | 88ee2df | 2015-06-22 09:44:29 +1000 | [diff] [blame] | 3457 | dip = xfs_buf_offset(bp, ip->i_imap.im_boffset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3458 | |
Brian Foster | f201929 | 2020-05-06 13:25:20 -0700 | [diff] [blame] | 3459 | /* |
| 3460 | * We don't flush the inode if any of the following checks fail, but we |
| 3461 | * do still update the log item and attach to the backing buffer as if |
| 3462 | * the flush happened. This is a formality to facilitate predictable |
| 3463 | * error handling as the caller will shutdown and fail the buffer. |
| 3464 | */ |
| 3465 | error = -EFSCORRUPTED; |
Christoph Hellwig | 69ef921 | 2011-07-08 14:36:05 +0200 | [diff] [blame] | 3466 | if (XFS_TEST_ERROR(dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC), |
Darrick J. Wong | 9e24cfd | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 3467 | mp, XFS_ERRTAG_IFLUSH_1)) { |
Dave Chinner | 6a19d93 | 2011-03-07 10:02:35 +1100 | [diff] [blame] | 3468 | xfs_alert_tag(mp, XFS_PTAG_IFLUSH, |
Darrick J. Wong | c969004 | 2018-01-09 12:02:55 -0800 | [diff] [blame] | 3469 | "%s: Bad inode %Lu magic number 0x%x, ptr "PTR_FMT, |
Dave Chinner | 6a19d93 | 2011-03-07 10:02:35 +1100 | [diff] [blame] | 3470 | __func__, ip->i_ino, be16_to_cpu(dip->di_magic), dip); |
Brian Foster | f201929 | 2020-05-06 13:25:20 -0700 | [diff] [blame] | 3471 | goto flush_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3472 | } |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 3473 | if (S_ISREG(VFS_I(ip)->i_mode)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3474 | if (XFS_TEST_ERROR( |
Christoph Hellwig | f7e67b2 | 2020-05-18 10:28:05 -0700 | [diff] [blame] | 3475 | ip->i_df.if_format != XFS_DINODE_FMT_EXTENTS && |
| 3476 | ip->i_df.if_format != XFS_DINODE_FMT_BTREE, |
Darrick J. Wong | 9e24cfd | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 3477 | mp, XFS_ERRTAG_IFLUSH_3)) { |
Dave Chinner | 6a19d93 | 2011-03-07 10:02:35 +1100 | [diff] [blame] | 3478 | xfs_alert_tag(mp, XFS_PTAG_IFLUSH, |
Darrick J. Wong | c969004 | 2018-01-09 12:02:55 -0800 | [diff] [blame] | 3479 | "%s: Bad regular inode %Lu, ptr "PTR_FMT, |
Dave Chinner | 6a19d93 | 2011-03-07 10:02:35 +1100 | [diff] [blame] | 3480 | __func__, ip->i_ino, ip); |
Brian Foster | f201929 | 2020-05-06 13:25:20 -0700 | [diff] [blame] | 3481 | goto flush_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3482 | } |
Dave Chinner | c19b3b05 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 3483 | } else if (S_ISDIR(VFS_I(ip)->i_mode)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3484 | if (XFS_TEST_ERROR( |
Christoph Hellwig | f7e67b2 | 2020-05-18 10:28:05 -0700 | [diff] [blame] | 3485 | ip->i_df.if_format != XFS_DINODE_FMT_EXTENTS && |
| 3486 | ip->i_df.if_format != XFS_DINODE_FMT_BTREE && |
| 3487 | ip->i_df.if_format != XFS_DINODE_FMT_LOCAL, |
Darrick J. Wong | 9e24cfd | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 3488 | mp, XFS_ERRTAG_IFLUSH_4)) { |
Dave Chinner | 6a19d93 | 2011-03-07 10:02:35 +1100 | [diff] [blame] | 3489 | xfs_alert_tag(mp, XFS_PTAG_IFLUSH, |
Darrick J. Wong | c969004 | 2018-01-09 12:02:55 -0800 | [diff] [blame] | 3490 | "%s: Bad directory inode %Lu, ptr "PTR_FMT, |
Dave Chinner | 6a19d93 | 2011-03-07 10:02:35 +1100 | [diff] [blame] | 3491 | __func__, ip->i_ino, ip); |
Brian Foster | f201929 | 2020-05-06 13:25:20 -0700 | [diff] [blame] | 3492 | goto flush_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3493 | } |
| 3494 | } |
Christoph Hellwig | daf8396 | 2020-05-18 10:27:22 -0700 | [diff] [blame] | 3495 | if (XFS_TEST_ERROR(ip->i_df.if_nextents + xfs_ifork_nextents(ip->i_afp) > |
Christoph Hellwig | 6e73a54 | 2021-03-29 11:11:40 -0700 | [diff] [blame] | 3496 | ip->i_nblocks, mp, XFS_ERRTAG_IFLUSH_5)) { |
Dave Chinner | 6a19d93 | 2011-03-07 10:02:35 +1100 | [diff] [blame] | 3497 | xfs_alert_tag(mp, XFS_PTAG_IFLUSH, |
| 3498 | "%s: detected corrupt incore inode %Lu, " |
Darrick J. Wong | c969004 | 2018-01-09 12:02:55 -0800 | [diff] [blame] | 3499 | "total extents = %d, nblocks = %Ld, ptr "PTR_FMT, |
Dave Chinner | 6a19d93 | 2011-03-07 10:02:35 +1100 | [diff] [blame] | 3500 | __func__, ip->i_ino, |
Christoph Hellwig | daf8396 | 2020-05-18 10:27:22 -0700 | [diff] [blame] | 3501 | ip->i_df.if_nextents + xfs_ifork_nextents(ip->i_afp), |
Christoph Hellwig | 6e73a54 | 2021-03-29 11:11:40 -0700 | [diff] [blame] | 3502 | ip->i_nblocks, ip); |
Brian Foster | f201929 | 2020-05-06 13:25:20 -0700 | [diff] [blame] | 3503 | goto flush_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3504 | } |
Christoph Hellwig | 7821ea3 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 3505 | if (XFS_TEST_ERROR(ip->i_forkoff > mp->m_sb.sb_inodesize, |
Darrick J. Wong | 9e24cfd | 2017-06-20 17:54:47 -0700 | [diff] [blame] | 3506 | mp, XFS_ERRTAG_IFLUSH_6)) { |
Dave Chinner | 6a19d93 | 2011-03-07 10:02:35 +1100 | [diff] [blame] | 3507 | xfs_alert_tag(mp, XFS_PTAG_IFLUSH, |
Darrick J. Wong | c969004 | 2018-01-09 12:02:55 -0800 | [diff] [blame] | 3508 | "%s: bad inode %Lu, forkoff 0x%x, ptr "PTR_FMT, |
Christoph Hellwig | 7821ea3 | 2021-03-29 11:11:44 -0700 | [diff] [blame] | 3509 | __func__, ip->i_ino, ip->i_forkoff, ip); |
Brian Foster | f201929 | 2020-05-06 13:25:20 -0700 | [diff] [blame] | 3510 | goto flush_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3511 | } |
Dave Chinner | e60896d | 2013-07-24 15:47:30 +1000 | [diff] [blame] | 3512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3513 | /* |
Christoph Hellwig | 965e0a1 | 2021-03-29 11:11:42 -0700 | [diff] [blame] | 3514 | * Inode item log recovery for v2 inodes are dependent on the flushiter |
| 3515 | * count for correct sequencing. We bump the flush iteration count so |
| 3516 | * we can detect flushes which postdate a log record during recovery. |
| 3517 | * This is redundant as we now log every change and hence this can't |
| 3518 | * happen but we need to still do it to ensure backwards compatibility |
| 3519 | * with old kernels that predate logging all inode changes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3520 | */ |
Dave Chinner | 38c26bf | 2021-08-18 18:46:37 -0700 | [diff] [blame] | 3521 | if (!xfs_has_v3inodes(mp)) |
Christoph Hellwig | 965e0a1 | 2021-03-29 11:11:42 -0700 | [diff] [blame] | 3522 | ip->i_flushiter++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3523 | |
Christoph Hellwig | 0f45a1b | 2020-05-14 14:01:31 -0700 | [diff] [blame] | 3524 | /* |
| 3525 | * If there are inline format data / attr forks attached to this inode, |
| 3526 | * make sure they are not corrupt. |
| 3527 | */ |
Christoph Hellwig | f7e67b2 | 2020-05-18 10:28:05 -0700 | [diff] [blame] | 3528 | if (ip->i_df.if_format == XFS_DINODE_FMT_LOCAL && |
Christoph Hellwig | 0f45a1b | 2020-05-14 14:01:31 -0700 | [diff] [blame] | 3529 | xfs_ifork_verify_local_data(ip)) |
| 3530 | goto flush_out; |
Christoph Hellwig | f7e67b2 | 2020-05-18 10:28:05 -0700 | [diff] [blame] | 3531 | if (ip->i_afp && ip->i_afp->if_format == XFS_DINODE_FMT_LOCAL && |
Christoph Hellwig | 0f45a1b | 2020-05-14 14:01:31 -0700 | [diff] [blame] | 3532 | xfs_ifork_verify_local_attr(ip)) |
Brian Foster | f201929 | 2020-05-06 13:25:20 -0700 | [diff] [blame] | 3533 | goto flush_out; |
Darrick J. Wong | 005c5db | 2017-03-28 14:51:10 -0700 | [diff] [blame] | 3534 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3535 | /* |
Dave Chinner | 3987848 | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 3536 | * Copy the dirty parts of the inode into the on-disk inode. We always |
| 3537 | * copy out the core of the inode, because if the inode is dirty at all |
| 3538 | * the core must be. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3539 | */ |
Dave Chinner | 93f958f | 2016-02-09 16:54:58 +1100 | [diff] [blame] | 3540 | xfs_inode_to_disk(ip, dip, iip->ili_item.li_lsn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3541 | |
| 3542 | /* Wrap, we never let the log put out DI_MAX_FLUSH */ |
Dave Chinner | 38c26bf | 2021-08-18 18:46:37 -0700 | [diff] [blame] | 3543 | if (!xfs_has_v3inodes(mp)) { |
Christoph Hellwig | ee7b83f | 2021-03-29 11:11:43 -0700 | [diff] [blame] | 3544 | if (ip->i_flushiter == DI_MAX_FLUSH) |
| 3545 | ip->i_flushiter = 0; |
| 3546 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3547 | |
Darrick J. Wong | 005c5db | 2017-03-28 14:51:10 -0700 | [diff] [blame] | 3548 | xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK); |
| 3549 | if (XFS_IFORK_Q(ip)) |
| 3550 | xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3551 | |
| 3552 | /* |
Christoph Hellwig | f5d8d5c | 2012-02-29 09:53:54 +0000 | [diff] [blame] | 3553 | * We've recorded everything logged in the inode, so we'd like to clear |
| 3554 | * the ili_fields bits so we don't log and flush things unnecessarily. |
| 3555 | * However, we can't stop logging all this information until the data |
| 3556 | * we've copied into the disk buffer is written to disk. If we did we |
| 3557 | * might overwrite the copy of the inode in the log with all the data |
| 3558 | * after re-logging only part of it, and in the face of a crash we |
| 3559 | * wouldn't have all the data we need to recover. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3560 | * |
Christoph Hellwig | f5d8d5c | 2012-02-29 09:53:54 +0000 | [diff] [blame] | 3561 | * What we do is move the bits to the ili_last_fields field. When |
| 3562 | * logging the inode, these bits are moved back to the ili_fields field. |
Christoph Hellwig | 664ffb8 | 2020-09-01 10:55:29 -0700 | [diff] [blame] | 3563 | * In the xfs_buf_inode_iodone() routine we clear ili_last_fields, since |
| 3564 | * we know that the information those bits represent is permanently on |
Christoph Hellwig | f5d8d5c | 2012-02-29 09:53:54 +0000 | [diff] [blame] | 3565 | * disk. As long as the flush completes before the inode is logged |
| 3566 | * again, then both ili_fields and ili_last_fields will be cleared. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3567 | */ |
Brian Foster | f201929 | 2020-05-06 13:25:20 -0700 | [diff] [blame] | 3568 | error = 0; |
| 3569 | flush_out: |
Dave Chinner | 1319ebe | 2020-06-29 14:48:46 -0700 | [diff] [blame] | 3570 | spin_lock(&iip->ili_lock); |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 3571 | iip->ili_last_fields = iip->ili_fields; |
| 3572 | iip->ili_fields = 0; |
Dave Chinner | fc0561c | 2015-11-03 13:14:59 +1100 | [diff] [blame] | 3573 | iip->ili_fsync_fields = 0; |
Dave Chinner | 1319ebe | 2020-06-29 14:48:46 -0700 | [diff] [blame] | 3574 | spin_unlock(&iip->ili_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3575 | |
Dave Chinner | 1319ebe | 2020-06-29 14:48:46 -0700 | [diff] [blame] | 3576 | /* |
| 3577 | * Store the current LSN of the inode so that we can tell whether the |
Christoph Hellwig | 664ffb8 | 2020-09-01 10:55:29 -0700 | [diff] [blame] | 3578 | * item has moved in the AIL from xfs_buf_inode_iodone(). |
Dave Chinner | 1319ebe | 2020-06-29 14:48:46 -0700 | [diff] [blame] | 3579 | */ |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 3580 | xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn, |
| 3581 | &iip->ili_item.li_lsn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3582 | |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 3583 | /* generate the checksum. */ |
| 3584 | xfs_dinode_calc_crc(mp, dip); |
Brian Foster | f201929 | 2020-05-06 13:25:20 -0700 | [diff] [blame] | 3585 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3586 | } |
Darrick J. Wong | 44a8736 | 2018-07-25 12:52:32 -0700 | [diff] [blame] | 3587 | |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3588 | /* |
| 3589 | * Non-blocking flush of dirty inode metadata into the backing buffer. |
| 3590 | * |
| 3591 | * The caller must have a reference to the inode and hold the cluster buffer |
| 3592 | * locked. The function will walk across all the inodes on the cluster buffer it |
| 3593 | * can find and lock without blocking, and flush them to the cluster buffer. |
| 3594 | * |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3595 | * On successful flushing of at least one inode, the caller must write out the |
| 3596 | * buffer and release it. If no inodes are flushed, -EAGAIN will be returned and |
| 3597 | * the caller needs to release the buffer. On failure, the filesystem will be |
| 3598 | * shut down, the buffer will have been unlocked and released, and EFSCORRUPTED |
| 3599 | * will be returned. |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3600 | */ |
| 3601 | int |
| 3602 | xfs_iflush_cluster( |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3603 | struct xfs_buf *bp) |
| 3604 | { |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3605 | struct xfs_mount *mp = bp->b_mount; |
| 3606 | struct xfs_log_item *lip, *n; |
| 3607 | struct xfs_inode *ip; |
| 3608 | struct xfs_inode_log_item *iip; |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3609 | int clcount = 0; |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3610 | int error = 0; |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3611 | |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3612 | /* |
| 3613 | * We must use the safe variant here as on shutdown xfs_iflush_abort() |
| 3614 | * can remove itself from the list. |
| 3615 | */ |
| 3616 | list_for_each_entry_safe(lip, n, &bp->b_li_list, li_bio_list) { |
| 3617 | iip = (struct xfs_inode_log_item *)lip; |
| 3618 | ip = iip->ili_inode; |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3619 | |
| 3620 | /* |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3621 | * Quick and dirty check to avoid locks if possible. |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3622 | */ |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 3623 | if (__xfs_iflags_test(ip, XFS_IRECLAIM | XFS_IFLUSHING)) |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3624 | continue; |
| 3625 | if (xfs_ipincount(ip)) |
| 3626 | continue; |
| 3627 | |
| 3628 | /* |
| 3629 | * The inode is still attached to the buffer, which means it is |
| 3630 | * dirty but reclaim might try to grab it. Check carefully for |
| 3631 | * that, and grab the ilock while still holding the i_flags_lock |
| 3632 | * to guarantee reclaim will not be able to reclaim this inode |
| 3633 | * once we drop the i_flags_lock. |
| 3634 | */ |
| 3635 | spin_lock(&ip->i_flags_lock); |
| 3636 | ASSERT(!__xfs_iflags_test(ip, XFS_ISTALE)); |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 3637 | if (__xfs_iflags_test(ip, XFS_IRECLAIM | XFS_IFLUSHING)) { |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3638 | spin_unlock(&ip->i_flags_lock); |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3639 | continue; |
| 3640 | } |
| 3641 | |
| 3642 | /* |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3643 | * ILOCK will pin the inode against reclaim and prevent |
| 3644 | * concurrent transactions modifying the inode while we are |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 3645 | * flushing the inode. If we get the lock, set the flushing |
| 3646 | * state before we drop the i_flags_lock. |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3647 | */ |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3648 | if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) { |
| 3649 | spin_unlock(&ip->i_flags_lock); |
| 3650 | continue; |
| 3651 | } |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 3652 | __xfs_iflags_set(ip, XFS_IFLUSHING); |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3653 | spin_unlock(&ip->i_flags_lock); |
| 3654 | |
| 3655 | /* |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3656 | * Abort flushing this inode if we are shut down because the |
| 3657 | * inode may not currently be in the AIL. This can occur when |
| 3658 | * log I/O failure unpins the inode without inserting into the |
| 3659 | * AIL, leaving a dirty/unpinned inode attached to the buffer |
| 3660 | * that otherwise looks like it should be flushed. |
| 3661 | */ |
Dave Chinner | 75c8c50f | 2021-08-18 18:46:53 -0700 | [diff] [blame] | 3662 | if (xfs_is_shutdown(mp)) { |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3663 | xfs_iunpin_wait(ip); |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3664 | xfs_iflush_abort(ip); |
| 3665 | xfs_iunlock(ip, XFS_ILOCK_SHARED); |
| 3666 | error = -EIO; |
| 3667 | continue; |
| 3668 | } |
| 3669 | |
| 3670 | /* don't block waiting on a log force to unpin dirty inodes */ |
| 3671 | if (xfs_ipincount(ip)) { |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 3672 | xfs_iflags_clear(ip, XFS_IFLUSHING); |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3673 | xfs_iunlock(ip, XFS_ILOCK_SHARED); |
| 3674 | continue; |
| 3675 | } |
| 3676 | |
| 3677 | if (!xfs_inode_clean(ip)) |
| 3678 | error = xfs_iflush(ip, bp); |
| 3679 | else |
Dave Chinner | 718ecc5 | 2020-08-17 16:41:01 -0700 | [diff] [blame] | 3680 | xfs_iflags_clear(ip, XFS_IFLUSHING); |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3681 | xfs_iunlock(ip, XFS_ILOCK_SHARED); |
| 3682 | if (error) |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3683 | break; |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3684 | clcount++; |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3685 | } |
| 3686 | |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3687 | if (error) { |
| 3688 | bp->b_flags |= XBF_ASYNC; |
| 3689 | xfs_buf_ioend_fail(bp); |
| 3690 | xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE); |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3691 | return error; |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3692 | } |
Dave Chinner | 5717ea4 | 2020-06-29 14:49:20 -0700 | [diff] [blame] | 3693 | |
| 3694 | if (!clcount) |
| 3695 | return -EAGAIN; |
| 3696 | |
| 3697 | XFS_STATS_INC(mp, xs_icluster_flushcnt); |
| 3698 | XFS_STATS_ADD(mp, xs_icluster_flushinode, clcount); |
| 3699 | return 0; |
| 3700 | |
Dave Chinner | e6187b3 | 2020-06-29 14:49:19 -0700 | [diff] [blame] | 3701 | } |
| 3702 | |
Darrick J. Wong | 44a8736 | 2018-07-25 12:52:32 -0700 | [diff] [blame] | 3703 | /* Release an inode. */ |
| 3704 | void |
| 3705 | xfs_irele( |
| 3706 | struct xfs_inode *ip) |
| 3707 | { |
| 3708 | trace_xfs_irele(ip, _RET_IP_); |
| 3709 | iput(VFS_I(ip)); |
| 3710 | } |
Christoph Hellwig | 54fbdd1 | 2020-04-03 11:45:37 -0700 | [diff] [blame] | 3711 | |
| 3712 | /* |
| 3713 | * Ensure all commited transactions touching the inode are written to the log. |
| 3714 | */ |
| 3715 | int |
| 3716 | xfs_log_force_inode( |
| 3717 | struct xfs_inode *ip) |
| 3718 | { |
Dave Chinner | 5f9b4b0 | 2021-06-18 08:21:52 -0700 | [diff] [blame] | 3719 | xfs_csn_t seq = 0; |
Christoph Hellwig | 54fbdd1 | 2020-04-03 11:45:37 -0700 | [diff] [blame] | 3720 | |
| 3721 | xfs_ilock(ip, XFS_ILOCK_SHARED); |
| 3722 | if (xfs_ipincount(ip)) |
Dave Chinner | 5f9b4b0 | 2021-06-18 08:21:52 -0700 | [diff] [blame] | 3723 | seq = ip->i_itemp->ili_commit_seq; |
Christoph Hellwig | 54fbdd1 | 2020-04-03 11:45:37 -0700 | [diff] [blame] | 3724 | xfs_iunlock(ip, XFS_ILOCK_SHARED); |
| 3725 | |
Dave Chinner | 5f9b4b0 | 2021-06-18 08:21:52 -0700 | [diff] [blame] | 3726 | if (!seq) |
Christoph Hellwig | 54fbdd1 | 2020-04-03 11:45:37 -0700 | [diff] [blame] | 3727 | return 0; |
Dave Chinner | 5f9b4b0 | 2021-06-18 08:21:52 -0700 | [diff] [blame] | 3728 | return xfs_log_force_seq(ip->i_mount, seq, XFS_LOG_SYNC, NULL); |
Christoph Hellwig | 54fbdd1 | 2020-04-03 11:45:37 -0700 | [diff] [blame] | 3729 | } |
Darrick J. Wong | e2aaee9 | 2020-06-29 14:47:20 -0700 | [diff] [blame] | 3730 | |
| 3731 | /* |
| 3732 | * Grab the exclusive iolock for a data copy from src to dest, making sure to |
| 3733 | * abide vfs locking order (lowest pointer value goes first) and breaking the |
| 3734 | * layout leases before proceeding. The loop is needed because we cannot call |
| 3735 | * the blocking break_layout() with the iolocks held, and therefore have to |
| 3736 | * back out both locks. |
| 3737 | */ |
| 3738 | static int |
| 3739 | xfs_iolock_two_inodes_and_break_layout( |
| 3740 | struct inode *src, |
| 3741 | struct inode *dest) |
| 3742 | { |
| 3743 | int error; |
| 3744 | |
| 3745 | if (src > dest) |
| 3746 | swap(src, dest); |
| 3747 | |
| 3748 | retry: |
| 3749 | /* Wait to break both inodes' layouts before we start locking. */ |
| 3750 | error = break_layout(src, true); |
| 3751 | if (error) |
| 3752 | return error; |
| 3753 | if (src != dest) { |
| 3754 | error = break_layout(dest, true); |
| 3755 | if (error) |
| 3756 | return error; |
| 3757 | } |
| 3758 | |
| 3759 | /* Lock one inode and make sure nobody got in and leased it. */ |
| 3760 | inode_lock(src); |
| 3761 | error = break_layout(src, false); |
| 3762 | if (error) { |
| 3763 | inode_unlock(src); |
| 3764 | if (error == -EWOULDBLOCK) |
| 3765 | goto retry; |
| 3766 | return error; |
| 3767 | } |
| 3768 | |
| 3769 | if (src == dest) |
| 3770 | return 0; |
| 3771 | |
| 3772 | /* Lock the other inode and make sure nobody got in and leased it. */ |
| 3773 | inode_lock_nested(dest, I_MUTEX_NONDIR2); |
| 3774 | error = break_layout(dest, false); |
| 3775 | if (error) { |
| 3776 | inode_unlock(src); |
| 3777 | inode_unlock(dest); |
| 3778 | if (error == -EWOULDBLOCK) |
| 3779 | goto retry; |
| 3780 | return error; |
| 3781 | } |
| 3782 | |
| 3783 | return 0; |
| 3784 | } |
| 3785 | |
| 3786 | /* |
| 3787 | * Lock two inodes so that userspace cannot initiate I/O via file syscalls or |
| 3788 | * mmap activity. |
| 3789 | */ |
| 3790 | int |
| 3791 | xfs_ilock2_io_mmap( |
| 3792 | struct xfs_inode *ip1, |
| 3793 | struct xfs_inode *ip2) |
| 3794 | { |
| 3795 | int ret; |
| 3796 | |
| 3797 | ret = xfs_iolock_two_inodes_and_break_layout(VFS_I(ip1), VFS_I(ip2)); |
| 3798 | if (ret) |
| 3799 | return ret; |
Jan Kara | d2c292d | 2021-05-24 13:17:49 +0200 | [diff] [blame] | 3800 | filemap_invalidate_lock_two(VFS_I(ip1)->i_mapping, |
| 3801 | VFS_I(ip2)->i_mapping); |
Darrick J. Wong | e2aaee9 | 2020-06-29 14:47:20 -0700 | [diff] [blame] | 3802 | return 0; |
| 3803 | } |
| 3804 | |
| 3805 | /* Unlock both inodes to allow IO and mmap activity. */ |
| 3806 | void |
| 3807 | xfs_iunlock2_io_mmap( |
| 3808 | struct xfs_inode *ip1, |
| 3809 | struct xfs_inode *ip2) |
| 3810 | { |
Jan Kara | d2c292d | 2021-05-24 13:17:49 +0200 | [diff] [blame] | 3811 | filemap_invalidate_unlock_two(VFS_I(ip1)->i_mapping, |
| 3812 | VFS_I(ip2)->i_mapping); |
Darrick J. Wong | e2aaee9 | 2020-06-29 14:47:20 -0700 | [diff] [blame] | 3813 | inode_unlock(VFS_I(ip2)); |
Jan Kara | d2c292d | 2021-05-24 13:17:49 +0200 | [diff] [blame] | 3814 | if (ip1 != ip2) |
Darrick J. Wong | e2aaee9 | 2020-06-29 14:47:20 -0700 | [diff] [blame] | 3815 | inode_unlock(VFS_I(ip1)); |
| 3816 | } |