| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2 | * Copyright (c) 2000-2006 Silicon Graphics, Inc. | 
| Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 3 | * All Rights Reserved. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * | 
| Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 5 | * This program is free software; you can redistribute it and/or | 
|  | 6 | * modify it under the terms of the GNU General Public License as | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. | 
|  | 8 | * | 
| Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 9 | * This program is distributed in the hope that it would be useful, | 
|  | 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 12 | * GNU General Public License for more details. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * | 
| Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 14 | * You should have received a copy of the GNU General Public License | 
|  | 15 | * along with this program; if not, write the Free Software Foundation, | 
|  | 16 | * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs.h" | 
| Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 19 | #include "xfs_fs.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include "xfs_types.h" | 
| Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 21 | #include "xfs_bit.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include "xfs_log.h" | 
| Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 23 | #include "xfs_inum.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include "xfs_trans.h" | 
|  | 25 | #include "xfs_sb.h" | 
| Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 26 | #include "xfs_ag.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include "xfs_dir2.h" | 
|  | 28 | #include "xfs_dmapi.h" | 
|  | 29 | #include "xfs_mount.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include "xfs_bmap_btree.h" | 
| Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 31 | #include "xfs_alloc_btree.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "xfs_ialloc_btree.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include "xfs_dir2_sf.h" | 
| Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 34 | #include "xfs_attr_sf.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include "xfs_dinode.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include "xfs_inode.h" | 
| Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 37 | #include "xfs_inode_item.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include "xfs_bmap.h" | 
| Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 39 | #include "xfs_btree.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include "xfs_ialloc.h" | 
|  | 41 | #include "xfs_itable.h" | 
|  | 42 | #include "xfs_dfrag.h" | 
|  | 43 | #include "xfs_error.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include "xfs_rw.h" | 
| Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 45 | #include "xfs_vnodeops.h" | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 46 | #include "xfs_trace.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 |  | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 48 |  | 
|  | 49 | static int xfs_swap_extents( | 
|  | 50 | xfs_inode_t	*ip,	/* target inode */ | 
|  | 51 | xfs_inode_t	*tip,	/* tmp inode */ | 
|  | 52 | xfs_swapext_t	*sxp); | 
|  | 53 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | /* | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 55 | * ioctl interface for swapext | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | */ | 
|  | 57 | int | 
|  | 58 | xfs_swapext( | 
| sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 59 | xfs_swapext_t	*sxp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | { | 
| Christoph Hellwig | 35fec8d | 2008-02-05 12:13:07 +1100 | [diff] [blame] | 61 | xfs_inode_t     *ip, *tip; | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 62 | struct file	*file, *tmp_file; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | int		error = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | /* Pull information for the target fd */ | 
| Christoph Hellwig | 35fec8d | 2008-02-05 12:13:07 +1100 | [diff] [blame] | 66 | file = fget((int)sxp->sx_fdtarget); | 
|  | 67 | if (!file) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | error = XFS_ERROR(EINVAL); | 
| Eric Sandeen | ac12b4e | 2009-01-25 20:53:00 -0600 | [diff] [blame] | 69 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } | 
|  | 71 |  | 
| Christoph Hellwig | f6aa7f2 | 2008-02-05 12:13:15 +1100 | [diff] [blame] | 72 | if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND)) { | 
|  | 73 | error = XFS_ERROR(EBADF); | 
|  | 74 | goto out_put_file; | 
|  | 75 | } | 
|  | 76 |  | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 77 | tmp_file = fget((int)sxp->sx_fdtmp); | 
|  | 78 | if (!tmp_file) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | error = XFS_ERROR(EINVAL); | 
| Christoph Hellwig | 35fec8d | 2008-02-05 12:13:07 +1100 | [diff] [blame] | 80 | goto out_put_file; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } | 
|  | 82 |  | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 83 | if (!(tmp_file->f_mode & FMODE_WRITE) || | 
|  | 84 | (tmp_file->f_flags & O_APPEND)) { | 
| Christoph Hellwig | f6aa7f2 | 2008-02-05 12:13:15 +1100 | [diff] [blame] | 85 | error = XFS_ERROR(EBADF); | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 86 | goto out_put_tmp_file; | 
| Christoph Hellwig | f6aa7f2 | 2008-02-05 12:13:15 +1100 | [diff] [blame] | 87 | } | 
|  | 88 |  | 
| Christoph Hellwig | 7c8f7af | 2009-02-12 19:56:00 +0100 | [diff] [blame] | 89 | if (IS_SWAPFILE(file->f_path.dentry->d_inode) || | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 90 | IS_SWAPFILE(tmp_file->f_path.dentry->d_inode)) { | 
| Christoph Hellwig | 7c8f7af | 2009-02-12 19:56:00 +0100 | [diff] [blame] | 91 | error = XFS_ERROR(EINVAL); | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 92 | goto out_put_tmp_file; | 
| Christoph Hellwig | 7c8f7af | 2009-02-12 19:56:00 +0100 | [diff] [blame] | 93 | } | 
|  | 94 |  | 
| Christoph Hellwig | 35fec8d | 2008-02-05 12:13:07 +1100 | [diff] [blame] | 95 | ip = XFS_I(file->f_path.dentry->d_inode); | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 96 | tip = XFS_I(tmp_file->f_path.dentry->d_inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 |  | 
|  | 98 | if (ip->i_mount != tip->i_mount) { | 
| Christoph Hellwig | 35fec8d | 2008-02-05 12:13:07 +1100 | [diff] [blame] | 99 | error = XFS_ERROR(EINVAL); | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 100 | goto out_put_tmp_file; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | } | 
|  | 102 |  | 
|  | 103 | if (ip->i_ino == tip->i_ino) { | 
| Christoph Hellwig | 35fec8d | 2008-02-05 12:13:07 +1100 | [diff] [blame] | 104 | error = XFS_ERROR(EINVAL); | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 105 | goto out_put_tmp_file; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | } | 
|  | 107 |  | 
| Christoph Hellwig | 35fec8d | 2008-02-05 12:13:07 +1100 | [diff] [blame] | 108 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) { | 
|  | 109 | error = XFS_ERROR(EIO); | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 110 | goto out_put_tmp_file; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | } | 
|  | 112 |  | 
| Lachlan McIlroy | 541d7d3 | 2007-10-11 17:34:33 +1000 | [diff] [blame] | 113 | error = xfs_swap_extents(ip, tip, sxp); | 
| Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 114 |  | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 115 | out_put_tmp_file: | 
|  | 116 | fput(tmp_file); | 
| Christoph Hellwig | 35fec8d | 2008-02-05 12:13:07 +1100 | [diff] [blame] | 117 | out_put_file: | 
|  | 118 | fput(file); | 
| Christoph Hellwig | 35fec8d | 2008-02-05 12:13:07 +1100 | [diff] [blame] | 119 | out: | 
| Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 120 | return error; | 
|  | 121 | } | 
|  | 122 |  | 
| Dave Chinner | e09f986 | 2010-01-14 01:33:54 +0000 | [diff] [blame] | 123 | /* | 
|  | 124 | * We need to check that the format of the data fork in the temporary inode is | 
|  | 125 | * valid for the target inode before doing the swap. This is not a problem with | 
|  | 126 | * attr1 because of the fixed fork offset, but attr2 has a dynamically sized | 
|  | 127 | * data fork depending on the space the attribute fork is taking so we can get | 
|  | 128 | * invalid formats on the target inode. | 
|  | 129 | * | 
|  | 130 | * E.g. target has space for 7 extents in extent format, temp inode only has | 
|  | 131 | * space for 6.  If we defragment down to 7 extents, then the tmp format is a | 
|  | 132 | * btree, but when swapped it needs to be in extent format. Hence we can't just | 
|  | 133 | * blindly swap data forks on attr2 filesystems. | 
|  | 134 | * | 
|  | 135 | * Note that we check the swap in both directions so that we don't end up with | 
|  | 136 | * a corrupt temporary inode, either. | 
|  | 137 | * | 
|  | 138 | * Note that fixing the way xfs_fsr sets up the attribute fork in the source | 
|  | 139 | * inode will prevent this situation from occurring, so all we do here is | 
|  | 140 | * reject and log the attempt. basically we are putting the responsibility on | 
|  | 141 | * userspace to get this right. | 
|  | 142 | */ | 
|  | 143 | static int | 
|  | 144 | xfs_swap_extents_check_format( | 
|  | 145 | xfs_inode_t	*ip,	/* target inode */ | 
|  | 146 | xfs_inode_t	*tip)	/* tmp inode */ | 
|  | 147 | { | 
|  | 148 |  | 
|  | 149 | /* Should never get a local format */ | 
|  | 150 | if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL || | 
|  | 151 | tip->i_d.di_format == XFS_DINODE_FMT_LOCAL) | 
|  | 152 | return EINVAL; | 
|  | 153 |  | 
|  | 154 | /* | 
|  | 155 | * if the target inode has less extents that then temporary inode then | 
|  | 156 | * why did userspace call us? | 
|  | 157 | */ | 
|  | 158 | if (ip->i_d.di_nextents < tip->i_d.di_nextents) | 
|  | 159 | return EINVAL; | 
|  | 160 |  | 
|  | 161 | /* | 
|  | 162 | * if the target inode is in extent form and the temp inode is in btree | 
|  | 163 | * form then we will end up with the target inode in the wrong format | 
|  | 164 | * as we already know there are less extents in the temp inode. | 
|  | 165 | */ | 
|  | 166 | if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS && | 
|  | 167 | tip->i_d.di_format == XFS_DINODE_FMT_BTREE) | 
|  | 168 | return EINVAL; | 
|  | 169 |  | 
|  | 170 | /* Check temp in extent form to max in target */ | 
|  | 171 | if (tip->i_d.di_format == XFS_DINODE_FMT_EXTENTS && | 
|  | 172 | XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) > ip->i_df.if_ext_max) | 
|  | 173 | return EINVAL; | 
|  | 174 |  | 
|  | 175 | /* Check target in extent form to max in temp */ | 
|  | 176 | if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS && | 
|  | 177 | XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) > tip->i_df.if_ext_max) | 
|  | 178 | return EINVAL; | 
|  | 179 |  | 
|  | 180 | /* Check root block of temp in btree form to max in target */ | 
|  | 181 | if (tip->i_d.di_format == XFS_DINODE_FMT_BTREE && | 
|  | 182 | XFS_IFORK_BOFF(ip) && | 
|  | 183 | tip->i_df.if_broot_bytes > XFS_IFORK_BOFF(ip)) | 
|  | 184 | return EINVAL; | 
|  | 185 |  | 
|  | 186 | /* Check root block of target in btree form to max in temp */ | 
|  | 187 | if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE && | 
|  | 188 | XFS_IFORK_BOFF(tip) && | 
|  | 189 | ip->i_df.if_broot_bytes > XFS_IFORK_BOFF(tip)) | 
|  | 190 | return EINVAL; | 
|  | 191 |  | 
|  | 192 | return 0; | 
|  | 193 | } | 
|  | 194 |  | 
| Dave Chinner | 6bded0f | 2010-01-14 01:33:56 +0000 | [diff] [blame] | 195 | static int | 
| Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 196 | xfs_swap_extents( | 
| Dave Chinner | e09f986 | 2010-01-14 01:33:54 +0000 | [diff] [blame] | 197 | xfs_inode_t	*ip,	/* target inode */ | 
|  | 198 | xfs_inode_t	*tip,	/* tmp inode */ | 
| Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 199 | xfs_swapext_t	*sxp) | 
|  | 200 | { | 
|  | 201 | xfs_mount_t	*mp; | 
| Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 202 | xfs_trans_t	*tp; | 
|  | 203 | xfs_bstat_t	*sbp = &sxp->sx_stat; | 
| Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 204 | xfs_ifork_t	*tempifp, *ifp, *tifp; | 
|  | 205 | int		ilf_fields, tilf_fields; | 
| Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 206 | int		error = 0; | 
|  | 207 | int		aforkblks = 0; | 
|  | 208 | int		taforkblks = 0; | 
|  | 209 | __uint64_t	tmp; | 
| Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 210 |  | 
|  | 211 | mp = ip->i_mount; | 
|  | 212 |  | 
|  | 213 | tempifp = kmem_alloc(sizeof(xfs_ifork_t), KM_MAYFAIL); | 
|  | 214 | if (!tempifp) { | 
|  | 215 | error = XFS_ERROR(ENOMEM); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 216 | goto out; | 
| Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 217 | } | 
|  | 218 |  | 
|  | 219 | sbp = &sxp->sx_stat; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 |  | 
| David Chinner | f9114eb | 2008-09-17 16:51:21 +1000 | [diff] [blame] | 221 | /* | 
|  | 222 | * we have to do two separate lock calls here to keep lockdep | 
|  | 223 | * happy. If we try to get all the locks in one call, lock will | 
|  | 224 | * report false positives when we drop the ILOCK and regain them | 
|  | 225 | * below. | 
|  | 226 | */ | 
|  | 227 | xfs_lock_two_inodes(ip, tip, XFS_IOLOCK_EXCL); | 
|  | 228 | xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | /* Verify that both files have the same format */ | 
|  | 231 | if ((ip->i_d.di_mode & S_IFMT) != (tip->i_d.di_mode & S_IFMT)) { | 
|  | 232 | error = XFS_ERROR(EINVAL); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 233 | goto out_unlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | } | 
|  | 235 |  | 
|  | 236 | /* Verify both files are either real-time or non-realtime */ | 
| Eric Sandeen | 71ddabb | 2007-11-23 16:29:42 +1100 | [diff] [blame] | 237 | if (XFS_IS_REALTIME_INODE(ip) != XFS_IS_REALTIME_INODE(tip)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | error = XFS_ERROR(EINVAL); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 239 | goto out_unlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | } | 
|  | 241 |  | 
| Christoph Hellwig | df80c93 | 2008-08-13 16:22:09 +1000 | [diff] [blame] | 242 | if (VN_CACHED(VFS_I(tip)) != 0) { | 
| Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 243 | error = xfs_flushinval_pages(tip, 0, -1, | 
|  | 244 | FI_REMAPF_LOCKED); | 
| Lachlan McIlroy | d3cf209 | 2007-05-08 13:49:27 +1000 | [diff] [blame] | 245 | if (error) | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 246 | goto out_unlock; | 
| Christoph Hellwig | bd5a876 | 2005-06-21 15:47:39 +1000 | [diff] [blame] | 247 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 |  | 
|  | 249 | /* Verify O_DIRECT for ftmp */ | 
| Christoph Hellwig | df80c93 | 2008-08-13 16:22:09 +1000 | [diff] [blame] | 250 | if (VN_CACHED(VFS_I(tip)) != 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | error = XFS_ERROR(EINVAL); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 252 | goto out_unlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } | 
|  | 254 |  | 
|  | 255 | /* Verify all data are being swapped */ | 
| Eric Sandeen | d0cfb37 | 2005-11-02 10:29:04 +1100 | [diff] [blame] | 256 | if (sxp->sx_offset != 0 || | 
|  | 257 | sxp->sx_length != ip->i_d.di_size || | 
|  | 258 | sxp->sx_length != tip->i_d.di_size) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | error = XFS_ERROR(EFAULT); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 260 | goto out_unlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | } | 
|  | 262 |  | 
| Dave Chinner | 3a85cd9 | 2010-01-14 01:33:55 +0000 | [diff] [blame] | 263 | trace_xfs_swap_extent_before(ip, 0); | 
|  | 264 | trace_xfs_swap_extent_before(tip, 1); | 
|  | 265 |  | 
| Dave Chinner | e09f986 | 2010-01-14 01:33:54 +0000 | [diff] [blame] | 266 | /* check inode formats now that data is flushed */ | 
|  | 267 | error = xfs_swap_extents_check_format(ip, tip); | 
|  | 268 | if (error) { | 
|  | 269 | xfs_fs_cmn_err(CE_NOTE, mp, | 
|  | 270 | "%s: inode 0x%llx format is incompatible for exchanging.", | 
|  | 271 | __FILE__, ip->i_ino); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 272 | goto out_unlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | } | 
|  | 274 |  | 
|  | 275 | /* | 
|  | 276 | * Compare the current change & modify times with that | 
|  | 277 | * passed in.  If they differ, we abort this swap. | 
|  | 278 | * This is the mechanism used to ensure the calling | 
|  | 279 | * process that the file was not changed out from | 
|  | 280 | * under it. | 
|  | 281 | */ | 
| Christoph Hellwig | f9581b1 | 2009-10-06 20:29:26 +0000 | [diff] [blame] | 282 | if ((sbp->bs_ctime.tv_sec != VFS_I(ip)->i_ctime.tv_sec) || | 
|  | 283 | (sbp->bs_ctime.tv_nsec != VFS_I(ip)->i_ctime.tv_nsec) || | 
|  | 284 | (sbp->bs_mtime.tv_sec != VFS_I(ip)->i_mtime.tv_sec) || | 
|  | 285 | (sbp->bs_mtime.tv_nsec != VFS_I(ip)->i_mtime.tv_nsec)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | error = XFS_ERROR(EBUSY); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 287 | goto out_unlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } | 
|  | 289 |  | 
|  | 290 | /* We need to fail if the file is memory mapped.  Once we have tossed | 
|  | 291 | * all existing pages, the page fault will have no option | 
|  | 292 | * but to go to the filesystem for pages. By making the page fault call | 
| Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 293 | * vop_read (or write in the case of autogrow) they block on the iolock | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | * until we have switched the extents. | 
|  | 295 | */ | 
| Christoph Hellwig | df80c93 | 2008-08-13 16:22:09 +1000 | [diff] [blame] | 296 | if (VN_MAPPED(VFS_I(ip))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | error = XFS_ERROR(EBUSY); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 298 | goto out_unlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | } | 
|  | 300 |  | 
|  | 301 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | 
|  | 302 | xfs_iunlock(tip, XFS_ILOCK_EXCL); | 
|  | 303 |  | 
|  | 304 | /* | 
|  | 305 | * There is a race condition here since we gave up the | 
|  | 306 | * ilock.  However, the data fork will not change since | 
|  | 307 | * we have the iolock (locked for truncation too) so we | 
|  | 308 | * are safe.  We don't really care if non-io related | 
|  | 309 | * fields change. | 
|  | 310 | */ | 
|  | 311 |  | 
| Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 312 | xfs_tosspages(ip, 0, -1, FI_REMAPF); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 |  | 
|  | 314 | tp = xfs_trans_alloc(mp, XFS_TRANS_SWAPEXT); | 
|  | 315 | if ((error = xfs_trans_reserve(tp, 0, | 
|  | 316 | XFS_ICHANGE_LOG_RES(mp), 0, | 
|  | 317 | 0, 0))) { | 
|  | 318 | xfs_iunlock(ip,  XFS_IOLOCK_EXCL); | 
|  | 319 | xfs_iunlock(tip, XFS_IOLOCK_EXCL); | 
|  | 320 | xfs_trans_cancel(tp, 0); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 321 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } | 
| Christoph Hellwig | e1cccd9 | 2008-08-13 16:18:07 +1000 | [diff] [blame] | 323 | xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 |  | 
|  | 325 | /* | 
|  | 326 | * Count the number of extended attribute blocks | 
|  | 327 | */ | 
|  | 328 | if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) && | 
|  | 329 | (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) { | 
|  | 330 | error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &aforkblks); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 331 | if (error) | 
|  | 332 | goto out_trans_cancel; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | } | 
|  | 334 | if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) && | 
|  | 335 | (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) { | 
|  | 336 | error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK, | 
|  | 337 | &taforkblks); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 338 | if (error) | 
|  | 339 | goto out_trans_cancel; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | } | 
|  | 341 |  | 
|  | 342 | /* | 
|  | 343 | * Swap the data forks of the inodes | 
|  | 344 | */ | 
|  | 345 | ifp = &ip->i_df; | 
|  | 346 | tifp = &tip->i_df; | 
| Eric Sandeen | d0cfb37 | 2005-11-02 10:29:04 +1100 | [diff] [blame] | 347 | *tempifp = *ifp;	/* struct copy */ | 
|  | 348 | *ifp = *tifp;		/* struct copy */ | 
|  | 349 | *tifp = *tempifp;	/* struct copy */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 |  | 
|  | 351 | /* | 
| Dave Chinner | e09f986 | 2010-01-14 01:33:54 +0000 | [diff] [blame] | 352 | * Fix the in-memory data fork values that are dependent on the fork | 
|  | 353 | * offset in the inode. We can't assume they remain the same as attr2 | 
|  | 354 | * has dynamic fork offsets. | 
|  | 355 | */ | 
|  | 356 | ifp->if_ext_max = XFS_IFORK_SIZE(ip, XFS_DATA_FORK) / | 
|  | 357 | (uint)sizeof(xfs_bmbt_rec_t); | 
|  | 358 | tifp->if_ext_max = XFS_IFORK_SIZE(tip, XFS_DATA_FORK) / | 
|  | 359 | (uint)sizeof(xfs_bmbt_rec_t); | 
|  | 360 |  | 
|  | 361 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | * Fix the on-disk inode values | 
|  | 363 | */ | 
|  | 364 | tmp = (__uint64_t)ip->i_d.di_nblocks; | 
|  | 365 | ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks; | 
|  | 366 | tip->i_d.di_nblocks = tmp + taforkblks - aforkblks; | 
|  | 367 |  | 
|  | 368 | tmp = (__uint64_t) ip->i_d.di_nextents; | 
|  | 369 | ip->i_d.di_nextents = tip->i_d.di_nextents; | 
|  | 370 | tip->i_d.di_nextents = tmp; | 
|  | 371 |  | 
|  | 372 | tmp = (__uint64_t) ip->i_d.di_format; | 
|  | 373 | ip->i_d.di_format = tip->i_d.di_format; | 
|  | 374 | tip->i_d.di_format = tmp; | 
|  | 375 |  | 
|  | 376 | ilf_fields = XFS_ILOG_CORE; | 
|  | 377 |  | 
|  | 378 | switch(ip->i_d.di_format) { | 
|  | 379 | case XFS_DINODE_FMT_EXTENTS: | 
|  | 380 | /* If the extents fit in the inode, fix the | 
|  | 381 | * pointer.  Otherwise it's already NULL or | 
|  | 382 | * pointing to the extent. | 
|  | 383 | */ | 
|  | 384 | if (ip->i_d.di_nextents <= XFS_INLINE_EXTS) { | 
|  | 385 | ifp->if_u1.if_extents = | 
|  | 386 | ifp->if_u2.if_inline_ext; | 
|  | 387 | } | 
|  | 388 | ilf_fields |= XFS_ILOG_DEXT; | 
|  | 389 | break; | 
|  | 390 | case XFS_DINODE_FMT_BTREE: | 
|  | 391 | ilf_fields |= XFS_ILOG_DBROOT; | 
|  | 392 | break; | 
|  | 393 | } | 
|  | 394 |  | 
|  | 395 | tilf_fields = XFS_ILOG_CORE; | 
|  | 396 |  | 
|  | 397 | switch(tip->i_d.di_format) { | 
|  | 398 | case XFS_DINODE_FMT_EXTENTS: | 
|  | 399 | /* If the extents fit in the inode, fix the | 
|  | 400 | * pointer.  Otherwise it's already NULL or | 
|  | 401 | * pointing to the extent. | 
|  | 402 | */ | 
|  | 403 | if (tip->i_d.di_nextents <= XFS_INLINE_EXTS) { | 
|  | 404 | tifp->if_u1.if_extents = | 
|  | 405 | tifp->if_u2.if_inline_ext; | 
|  | 406 | } | 
|  | 407 | tilf_fields |= XFS_ILOG_DEXT; | 
|  | 408 | break; | 
|  | 409 | case XFS_DINODE_FMT_BTREE: | 
|  | 410 | tilf_fields |= XFS_ILOG_DBROOT; | 
|  | 411 | break; | 
|  | 412 | } | 
|  | 413 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 |  | 
| Christoph Hellwig | 0b1f9177 | 2008-08-13 16:13:09 +1000 | [diff] [blame] | 415 | IHOLD(ip); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 416 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL); | 
| Christoph Hellwig | 0b1f9177 | 2008-08-13 16:13:09 +1000 | [diff] [blame] | 417 |  | 
|  | 418 | IHOLD(tip); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 419 | xfs_trans_ijoin(tp, tip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 |  | 
|  | 421 | xfs_trans_log_inode(tp, ip,  ilf_fields); | 
|  | 422 | xfs_trans_log_inode(tp, tip, tilf_fields); | 
|  | 423 |  | 
|  | 424 | /* | 
|  | 425 | * If this is a synchronous mount, make sure that the | 
|  | 426 | * transaction goes to disk before returning to the user. | 
|  | 427 | */ | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 428 | if (mp->m_flags & XFS_MOUNT_WSYNC) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | xfs_trans_set_sync(tp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 |  | 
| Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 431 | error = xfs_trans_commit(tp, XFS_TRANS_SWAPEXT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 |  | 
| Dave Chinner | 3a85cd9 | 2010-01-14 01:33:55 +0000 | [diff] [blame] | 433 | trace_xfs_swap_extent_after(ip, 0); | 
|  | 434 | trace_xfs_swap_extent_after(tip, 1); | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 435 | out: | 
|  | 436 | kmem_free(tempifp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | return error; | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 438 |  | 
| Felix Blyakher | 1f23920 | 2009-05-07 19:49:45 -0500 | [diff] [blame] | 439 | out_unlock: | 
|  | 440 | xfs_iunlock(ip,  XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL); | 
|  | 441 | xfs_iunlock(tip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL); | 
|  | 442 | goto out; | 
|  | 443 |  | 
| Josef 'Jeff' Sipek | ef8f7fc | 2009-02-04 09:37:43 +0100 | [diff] [blame] | 444 | out_trans_cancel: | 
|  | 445 | xfs_trans_cancel(tp, 0); | 
|  | 446 | goto out_unlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } |