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