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 | */ |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include "xfs.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 20 | #include "xfs_fs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include "xfs_types.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 22 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "xfs_log.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 24 | #include "xfs_inum.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include "xfs_trans.h" |
| 26 | #include "xfs_sb.h" |
| 27 | #include "xfs_ag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include "xfs_dir2.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include "xfs_mount.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 30 | #include "xfs_da_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "xfs_bmap_btree.h" |
| 32 | #include "xfs_ialloc_btree.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 33 | #include "xfs_dinode.h" |
| 34 | #include "xfs_inode.h" |
| 35 | #include "xfs_inode_item.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include "xfs_itable.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include "xfs_ialloc.h" |
| 38 | #include "xfs_alloc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include "xfs_bmap.h" |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 40 | #include "xfs_acl.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include "xfs_attr.h" |
| 42 | #include "xfs_rw.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include "xfs_error.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include "xfs_quota.h" |
| 45 | #include "xfs_utils.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 46 | #include "xfs_rtalloc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include "xfs_trans_space.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include "xfs_log_priv.h" |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 49 | #include "xfs_filestream.h" |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 50 | #include "xfs_vnodeops.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 51 | #include "xfs_trace.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | /* |
Nathan Scott | 7d4fb40 | 2006-06-09 15:27:16 +1000 | [diff] [blame] | 54 | * The maximum pathlen is 1024 bytes. Since the minimum file system |
| 55 | * blocksize is 512 bytes, we can get a max of 2 extents back from |
| 56 | * bmapi. |
| 57 | */ |
| 58 | #define SYMLINK_MAPS 2 |
| 59 | |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 60 | STATIC int |
| 61 | xfs_readlink_bmap( |
| 62 | xfs_inode_t *ip, |
| 63 | char *link) |
| 64 | { |
| 65 | xfs_mount_t *mp = ip->i_mount; |
| 66 | int pathlen = ip->i_d.di_size; |
| 67 | int nmaps = SYMLINK_MAPS; |
| 68 | xfs_bmbt_irec_t mval[SYMLINK_MAPS]; |
| 69 | xfs_daddr_t d; |
| 70 | int byte_cnt; |
| 71 | int n; |
| 72 | xfs_buf_t *bp; |
| 73 | int error = 0; |
| 74 | |
| 75 | error = xfs_bmapi(NULL, ip, 0, XFS_B_TO_FSB(mp, pathlen), 0, NULL, 0, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 76 | mval, &nmaps, NULL); |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 77 | if (error) |
| 78 | goto out; |
| 79 | |
| 80 | for (n = 0; n < nmaps; n++) { |
| 81 | d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock); |
| 82 | byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount); |
| 83 | |
Christoph Hellwig | 6ad112b | 2009-11-24 18:02:23 +0000 | [diff] [blame] | 84 | bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt), |
| 85 | XBF_LOCK | XBF_MAPPED | XBF_DONT_BLOCK); |
Chandra Seetharaman | ac4d688 | 2011-08-03 02:18:29 +0000 | [diff] [blame] | 86 | if (!bp) |
| 87 | return XFS_ERROR(ENOMEM); |
Chandra Seetharaman | e570280 | 2011-08-03 02:18:34 +0000 | [diff] [blame] | 88 | error = bp->b_error; |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 89 | if (error) { |
| 90 | xfs_ioerror_alert("xfs_readlink", |
| 91 | ip->i_mount, bp, XFS_BUF_ADDR(bp)); |
| 92 | xfs_buf_relse(bp); |
| 93 | goto out; |
| 94 | } |
| 95 | if (pathlen < byte_cnt) |
| 96 | byte_cnt = pathlen; |
| 97 | pathlen -= byte_cnt; |
| 98 | |
Chandra Seetharaman | 6292604 | 2011-07-22 23:40:15 +0000 | [diff] [blame] | 99 | memcpy(link, bp->b_addr, byte_cnt); |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 100 | xfs_buf_relse(bp); |
| 101 | } |
| 102 | |
| 103 | link[ip->i_d.di_size] = '\0'; |
| 104 | error = 0; |
| 105 | |
| 106 | out: |
| 107 | return error; |
| 108 | } |
| 109 | |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 110 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | xfs_readlink( |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 112 | xfs_inode_t *ip, |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 113 | char *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | { |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 115 | xfs_mount_t *mp = ip->i_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | int pathlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Christoph Hellwig | cca28fb | 2010-06-24 11:57:09 +1000 | [diff] [blame] | 119 | trace_xfs_readlink(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 122 | return XFS_ERROR(EIO); |
| 123 | |
| 124 | xfs_ilock(ip, XFS_ILOCK_SHARED); |
| 125 | |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 126 | ASSERT(S_ISLNK(ip->i_d.di_mode)); |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 127 | ASSERT(ip->i_d.di_size <= MAXPATHLEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 129 | pathlen = ip->i_d.di_size; |
| 130 | if (!pathlen) |
| 131 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
| 133 | if (ip->i_df.if_flags & XFS_IFINLINE) { |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 134 | memcpy(link, ip->i_df.if_u1.if_data, pathlen); |
| 135 | link[pathlen] = '\0'; |
| 136 | } else { |
| 137 | error = xfs_readlink_bmap(ip, link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
| 139 | |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 140 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | xfs_iunlock(ip, XFS_ILOCK_SHARED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | return error; |
| 143 | } |
| 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | /* |
Christoph Hellwig | c56c9631 | 2009-10-19 04:03:46 +0000 | [diff] [blame] | 146 | * Flags for xfs_free_eofblocks |
| 147 | */ |
| 148 | #define XFS_FREE_EOF_TRYLOCK (1<<0) |
| 149 | |
| 150 | /* |
David Chinner | 92dfe8d | 2007-05-24 15:22:19 +1000 | [diff] [blame] | 151 | * This is called by xfs_inactive to free any blocks beyond eof |
| 152 | * when the link count isn't zero and by xfs_dm_punch_hole() when |
| 153 | * punching a hole to EOF. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | */ |
Eric Sandeen | d96f8f8 | 2009-07-02 00:09:33 -0500 | [diff] [blame] | 155 | STATIC int |
David Chinner | 92dfe8d | 2007-05-24 15:22:19 +1000 | [diff] [blame] | 156 | xfs_free_eofblocks( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | xfs_mount_t *mp, |
David Chinner | 92dfe8d | 2007-05-24 15:22:19 +1000 | [diff] [blame] | 158 | xfs_inode_t *ip, |
| 159 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
| 161 | xfs_trans_t *tp; |
| 162 | int error; |
| 163 | xfs_fileoff_t end_fsb; |
| 164 | xfs_fileoff_t last_fsb; |
| 165 | xfs_filblks_t map_len; |
| 166 | int nimaps; |
| 167 | xfs_bmbt_irec_t imap; |
| 168 | |
| 169 | /* |
| 170 | * Figure out if there are any blocks beyond the end |
| 171 | * of the file. If not, then there is nothing to do. |
| 172 | */ |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 173 | end_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)ip->i_size)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | last_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp)); |
Kulikov Vasiliy | 3f34885 | 2010-07-20 17:54:28 +1000 | [diff] [blame] | 175 | if (last_fsb <= end_fsb) |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 176 | return 0; |
Kulikov Vasiliy | 3f34885 | 2010-07-20 17:54:28 +1000 | [diff] [blame] | 177 | map_len = last_fsb - end_fsb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
| 179 | nimaps = 1; |
| 180 | xfs_ilock(ip, XFS_ILOCK_SHARED); |
Lachlan McIlroy | 541d7d3 | 2007-10-11 17:34:33 +1000 | [diff] [blame] | 181 | error = xfs_bmapi(NULL, ip, end_fsb, map_len, 0, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 182 | NULL, 0, &imap, &nimaps, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | xfs_iunlock(ip, XFS_ILOCK_SHARED); |
| 184 | |
| 185 | if (!error && (nimaps != 0) && |
Yingping Lu | 68bdb6e | 2006-01-11 15:38:31 +1100 | [diff] [blame] | 186 | (imap.br_startblock != HOLESTARTBLOCK || |
| 187 | ip->i_delayed_blks)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | /* |
| 189 | * Attach the dquots to the inode up front. |
| 190 | */ |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 191 | error = xfs_qm_dqattach(ip, 0); |
| 192 | if (error) |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 193 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
| 195 | /* |
| 196 | * There are blocks after the end of file. |
| 197 | * Free them up now by truncating the file to |
| 198 | * its current size. |
| 199 | */ |
| 200 | tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE); |
| 201 | |
Christoph Hellwig | c56c9631 | 2009-10-19 04:03:46 +0000 | [diff] [blame] | 202 | if (flags & XFS_FREE_EOF_TRYLOCK) { |
| 203 | if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) { |
| 204 | xfs_trans_cancel(tp, 0); |
| 205 | return 0; |
| 206 | } |
| 207 | } else { |
David Chinner | 92dfe8d | 2007-05-24 15:22:19 +1000 | [diff] [blame] | 208 | xfs_ilock(ip, XFS_IOLOCK_EXCL); |
Christoph Hellwig | c56c9631 | 2009-10-19 04:03:46 +0000 | [diff] [blame] | 209 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
| 211 | error = xfs_trans_reserve(tp, 0, |
| 212 | XFS_ITRUNCATE_LOG_RES(mp), |
| 213 | 0, XFS_TRANS_PERM_LOG_RES, |
| 214 | XFS_ITRUNCATE_LOG_COUNT); |
| 215 | if (error) { |
| 216 | ASSERT(XFS_FORCED_SHUTDOWN(mp)); |
| 217 | xfs_trans_cancel(tp, 0); |
| 218 | xfs_iunlock(ip, XFS_IOLOCK_EXCL); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 219 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 223 | xfs_trans_ijoin(tp, ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 225 | error = xfs_itruncate_data(&tp, ip, ip->i_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | if (error) { |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 227 | /* |
| 228 | * If we get an error at this point we simply don't |
| 229 | * bother truncating the file. |
| 230 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | xfs_trans_cancel(tp, |
| 232 | (XFS_TRANS_RELEASE_LOG_RES | |
| 233 | XFS_TRANS_ABORT)); |
| 234 | } else { |
| 235 | error = xfs_trans_commit(tp, |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 236 | XFS_TRANS_RELEASE_LOG_RES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | } |
Christoph Hellwig | c56c9631 | 2009-10-19 04:03:46 +0000 | [diff] [blame] | 238 | xfs_iunlock(ip, XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 240 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | /* |
| 244 | * Free a symlink that has blocks associated with it. |
| 245 | */ |
| 246 | STATIC int |
| 247 | xfs_inactive_symlink_rmt( |
| 248 | xfs_inode_t *ip, |
| 249 | xfs_trans_t **tpp) |
| 250 | { |
| 251 | xfs_buf_t *bp; |
| 252 | int committed; |
| 253 | int done; |
| 254 | int error; |
| 255 | xfs_fsblock_t first_block; |
| 256 | xfs_bmap_free_t free_list; |
| 257 | int i; |
| 258 | xfs_mount_t *mp; |
| 259 | xfs_bmbt_irec_t mval[SYMLINK_MAPS]; |
| 260 | int nmaps; |
| 261 | xfs_trans_t *ntp; |
| 262 | int size; |
| 263 | xfs_trans_t *tp; |
| 264 | |
| 265 | tp = *tpp; |
| 266 | mp = ip->i_mount; |
| 267 | ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip)); |
| 268 | /* |
| 269 | * We're freeing a symlink that has some |
| 270 | * blocks allocated to it. Free the |
| 271 | * blocks here. We know that we've got |
| 272 | * either 1 or 2 extents and that we can |
| 273 | * free them all in one bunmapi call. |
| 274 | */ |
| 275 | ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2); |
| 276 | if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0, |
| 277 | XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) { |
| 278 | ASSERT(XFS_FORCED_SHUTDOWN(mp)); |
| 279 | xfs_trans_cancel(tp, 0); |
| 280 | *tpp = NULL; |
| 281 | return error; |
| 282 | } |
| 283 | /* |
| 284 | * Lock the inode, fix the size, and join it to the transaction. |
| 285 | * Hold it so in the normal path, we still have it locked for |
| 286 | * the second transaction. In the error paths we need it |
| 287 | * held so the cancel won't rele it, see below. |
| 288 | */ |
| 289 | xfs_ilock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL); |
| 290 | size = (int)ip->i_d.di_size; |
| 291 | ip->i_d.di_size = 0; |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 292 | xfs_trans_ijoin(tp, ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 294 | /* |
| 295 | * Find the block(s) so we can inval and unmap them. |
| 296 | */ |
| 297 | done = 0; |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 298 | xfs_bmap_init(&free_list, &first_block); |
Tobias Klauser | e8c96f8 | 2006-03-24 03:15:34 -0800 | [diff] [blame] | 299 | nmaps = ARRAY_SIZE(mval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | if ((error = xfs_bmapi(tp, ip, 0, XFS_B_TO_FSB(mp, size), |
| 301 | XFS_BMAPI_METADATA, &first_block, 0, mval, &nmaps, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 302 | &free_list))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | goto error0; |
| 304 | /* |
| 305 | * Invalidate the block(s). |
| 306 | */ |
| 307 | for (i = 0; i < nmaps; i++) { |
| 308 | bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, |
| 309 | XFS_FSB_TO_DADDR(mp, mval[i].br_startblock), |
| 310 | XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0); |
| 311 | xfs_trans_binval(tp, bp); |
| 312 | } |
| 313 | /* |
| 314 | * Unmap the dead block(s) to the free_list. |
| 315 | */ |
| 316 | if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 317 | &first_block, &free_list, &done))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | goto error1; |
| 319 | ASSERT(done); |
| 320 | /* |
| 321 | * Commit the first transaction. This logs the EFI and the inode. |
| 322 | */ |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 323 | if ((error = xfs_bmap_finish(&tp, &free_list, &committed))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | goto error1; |
| 325 | /* |
| 326 | * The transaction must have been committed, since there were |
| 327 | * actually extents freed by xfs_bunmapi. See xfs_bmap_finish. |
| 328 | * The new tp has the extent freeing and EFDs. |
| 329 | */ |
| 330 | ASSERT(committed); |
| 331 | /* |
| 332 | * The first xact was committed, so add the inode to the new one. |
| 333 | * Mark it dirty so it will be logged and moved forward in the log as |
| 334 | * part of every commit. |
| 335 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 336 | xfs_trans_ijoin(tp, ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 338 | /* |
| 339 | * Get a new, empty transaction to return to our caller. |
| 340 | */ |
| 341 | ntp = xfs_trans_dup(tp); |
| 342 | /* |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 343 | * Commit the transaction containing extent freeing and EFDs. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | * If we get an error on the commit here or on the reserve below, |
| 345 | * we need to unlock the inode since the new transaction doesn't |
| 346 | * have the inode attached. |
| 347 | */ |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 348 | error = xfs_trans_commit(tp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | tp = ntp; |
| 350 | if (error) { |
| 351 | ASSERT(XFS_FORCED_SHUTDOWN(mp)); |
| 352 | goto error0; |
| 353 | } |
| 354 | /* |
Dave Chinner | cc09c0d | 2008-11-17 17:37:10 +1100 | [diff] [blame] | 355 | * transaction commit worked ok so we can drop the extra ticket |
| 356 | * reference that we gained in xfs_trans_dup() |
| 357 | */ |
| 358 | xfs_log_ticket_put(tp->t_ticket); |
| 359 | |
| 360 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | * Remove the memory for extent descriptions (just bookkeeping). |
| 362 | */ |
| 363 | if (ip->i_df.if_bytes) |
| 364 | xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK); |
| 365 | ASSERT(ip->i_df.if_bytes == 0); |
| 366 | /* |
| 367 | * Put an itruncate log reservation in the new transaction |
| 368 | * for our caller. |
| 369 | */ |
| 370 | if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0, |
| 371 | XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) { |
| 372 | ASSERT(XFS_FORCED_SHUTDOWN(mp)); |
| 373 | goto error0; |
| 374 | } |
| 375 | /* |
| 376 | * Return with the inode locked but not joined to the transaction. |
| 377 | */ |
| 378 | *tpp = tp; |
| 379 | return 0; |
| 380 | |
| 381 | error1: |
| 382 | xfs_bmap_cancel(&free_list); |
| 383 | error0: |
| 384 | /* |
| 385 | * Have to come here with the inode locked and either |
| 386 | * (held and in the transaction) or (not in the transaction). |
| 387 | * If the inode isn't held then cancel would iput it, but |
| 388 | * that's wrong since this is inactive and the vnode ref |
| 389 | * count is 0 already. |
| 390 | * Cancel won't do anything to the inode if held, but it still |
| 391 | * needs to be locked until the cancel is done, if it was |
| 392 | * joined to the transaction. |
| 393 | */ |
| 394 | xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT); |
| 395 | xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL); |
| 396 | *tpp = NULL; |
| 397 | return error; |
| 398 | |
| 399 | } |
| 400 | |
| 401 | STATIC int |
| 402 | xfs_inactive_symlink_local( |
| 403 | xfs_inode_t *ip, |
| 404 | xfs_trans_t **tpp) |
| 405 | { |
| 406 | int error; |
| 407 | |
| 408 | ASSERT(ip->i_d.di_size <= XFS_IFORK_DSIZE(ip)); |
| 409 | /* |
| 410 | * We're freeing a symlink which fit into |
| 411 | * the inode. Just free the memory used |
| 412 | * to hold the old symlink. |
| 413 | */ |
| 414 | error = xfs_trans_reserve(*tpp, 0, |
| 415 | XFS_ITRUNCATE_LOG_RES(ip->i_mount), |
| 416 | 0, XFS_TRANS_PERM_LOG_RES, |
| 417 | XFS_ITRUNCATE_LOG_COUNT); |
| 418 | |
| 419 | if (error) { |
| 420 | xfs_trans_cancel(*tpp, 0); |
| 421 | *tpp = NULL; |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 422 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | } |
| 424 | xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL); |
| 425 | |
| 426 | /* |
| 427 | * Zero length symlinks _can_ exist. |
| 428 | */ |
| 429 | if (ip->i_df.if_bytes > 0) { |
| 430 | xfs_idata_realloc(ip, |
| 431 | -(ip->i_df.if_bytes), |
| 432 | XFS_DATA_FORK); |
| 433 | ASSERT(ip->i_df.if_bytes == 0); |
| 434 | } |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 435 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | } |
| 437 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | STATIC int |
| 439 | xfs_inactive_attrs( |
| 440 | xfs_inode_t *ip, |
| 441 | xfs_trans_t **tpp) |
| 442 | { |
| 443 | xfs_trans_t *tp; |
| 444 | int error; |
| 445 | xfs_mount_t *mp; |
| 446 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 447 | ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | tp = *tpp; |
| 449 | mp = ip->i_mount; |
| 450 | ASSERT(ip->i_d.di_forkoff != 0); |
David Chinner | e5720ee | 2008-04-10 12:21:18 +1000 | [diff] [blame] | 451 | error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
David Chinner | e5720ee | 2008-04-10 12:21:18 +1000 | [diff] [blame] | 453 | if (error) |
| 454 | goto error_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | |
| 456 | error = xfs_attr_inactive(ip); |
David Chinner | e5720ee | 2008-04-10 12:21:18 +1000 | [diff] [blame] | 457 | if (error) |
| 458 | goto error_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | |
| 460 | tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE); |
| 461 | error = xfs_trans_reserve(tp, 0, |
| 462 | XFS_IFREE_LOG_RES(mp), |
| 463 | 0, XFS_TRANS_PERM_LOG_RES, |
| 464 | XFS_INACTIVE_LOG_COUNT); |
David Chinner | e5720ee | 2008-04-10 12:21:18 +1000 | [diff] [blame] | 465 | if (error) |
| 466 | goto error_cancel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
| 468 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 469 | xfs_trans_ijoin(tp, ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | xfs_idestroy_fork(ip, XFS_ATTR_FORK); |
| 471 | |
| 472 | ASSERT(ip->i_d.di_anextents == 0); |
| 473 | |
| 474 | *tpp = tp; |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 475 | return 0; |
David Chinner | e5720ee | 2008-04-10 12:21:18 +1000 | [diff] [blame] | 476 | |
| 477 | error_cancel: |
| 478 | ASSERT(XFS_FORCED_SHUTDOWN(mp)); |
| 479 | xfs_trans_cancel(tp, 0); |
| 480 | error_unlock: |
| 481 | *tpp = NULL; |
| 482 | xfs_iunlock(ip, XFS_IOLOCK_EXCL); |
| 483 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | } |
| 485 | |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 486 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | xfs_release( |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 488 | xfs_inode_t *ip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | { |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 490 | xfs_mount_t *mp = ip->i_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | int error; |
| 492 | |
Christoph Hellwig | 42173f6 | 2008-04-22 17:33:25 +1000 | [diff] [blame] | 493 | if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | /* If this is a read-only mount, don't do this (would generate I/O) */ |
Christoph Hellwig | bd186aa | 2007-08-30 17:21:12 +1000 | [diff] [blame] | 497 | if (mp->m_flags & XFS_MOUNT_RDONLY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | return 0; |
| 499 | |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 500 | if (!XFS_FORCED_SHUTDOWN(mp)) { |
Christoph Hellwig | b3aea4e | 2007-08-29 11:44:37 +1000 | [diff] [blame] | 501 | int truncated; |
| 502 | |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 503 | /* |
| 504 | * If we are using filestreams, and we have an unlinked |
| 505 | * file that we are processing the last close on, then nothing |
| 506 | * will be able to reopen and write to this file. Purge this |
| 507 | * inode from the filestreams cache so that it doesn't delay |
| 508 | * teardown of the inode. |
| 509 | */ |
| 510 | if ((ip->i_d.di_nlink == 0) && xfs_inode_is_filestream(ip)) |
| 511 | xfs_filestream_deassociate(ip); |
| 512 | |
Christoph Hellwig | fbf3ce8 | 2007-06-28 16:46:47 +1000 | [diff] [blame] | 513 | /* |
| 514 | * If we previously truncated this file and removed old data |
| 515 | * in the process, we want to initiate "early" writeout on |
| 516 | * the last close. This is an attempt to combat the notorious |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 517 | * NULL files problem which is particularly noticeable from a |
Christoph Hellwig | fbf3ce8 | 2007-06-28 16:46:47 +1000 | [diff] [blame] | 518 | * truncate down, buffered (re-)write (delalloc), followed by |
| 519 | * a crash. What we are effectively doing here is |
| 520 | * significantly reducing the time window where we'd otherwise |
| 521 | * be exposed to that problem. |
| 522 | */ |
Christoph Hellwig | 09262b43 | 2007-08-29 11:44:50 +1000 | [diff] [blame] | 523 | truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED); |
Dave Chinner | df4368a | 2011-06-23 01:35:00 +0000 | [diff] [blame] | 524 | if (truncated) { |
| 525 | xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE); |
| 526 | if (VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0) |
| 527 | xfs_flush_pages(ip, 0, -1, XBF_ASYNC, FI_NONE); |
| 528 | } |
Christoph Hellwig | fbf3ce8 | 2007-06-28 16:46:47 +1000 | [diff] [blame] | 529 | } |
| 530 | |
Dave Chinner | 6e85756 | 2010-12-23 12:02:31 +1100 | [diff] [blame] | 531 | if (ip->i_d.di_nlink == 0) |
| 532 | return 0; |
Christoph Hellwig | c56c9631 | 2009-10-19 04:03:46 +0000 | [diff] [blame] | 533 | |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 534 | if ((S_ISREG(ip->i_d.di_mode) && |
Dave Chinner | 6e85756 | 2010-12-23 12:02:31 +1100 | [diff] [blame] | 535 | ((ip->i_size > 0) || (VN_CACHED(VFS_I(ip)) > 0 || |
| 536 | ip->i_delayed_blks > 0)) && |
| 537 | (ip->i_df.if_flags & XFS_IFEXTENTS)) && |
| 538 | (!(ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)))) { |
| 539 | |
| 540 | /* |
| 541 | * If we can't get the iolock just skip truncating the blocks |
| 542 | * past EOF because we could deadlock with the mmap_sem |
| 543 | * otherwise. We'll get another chance to drop them once the |
| 544 | * last reference to the inode is dropped, so we'll never leak |
| 545 | * blocks permanently. |
| 546 | * |
| 547 | * Further, check if the inode is being opened, written and |
| 548 | * closed frequently and we have delayed allocation blocks |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 549 | * outstanding (e.g. streaming writes from the NFS server), |
Dave Chinner | 6e85756 | 2010-12-23 12:02:31 +1100 | [diff] [blame] | 550 | * truncating the blocks past EOF will cause fragmentation to |
| 551 | * occur. |
| 552 | * |
| 553 | * In this case don't do the truncation, either, but we have to |
| 554 | * be careful how we detect this case. Blocks beyond EOF show |
| 555 | * up as i_delayed_blks even when the inode is clean, so we |
| 556 | * need to truncate them away first before checking for a dirty |
| 557 | * release. Hence on the first dirty close we will still remove |
| 558 | * the speculative allocation, but after that we will leave it |
| 559 | * in place. |
| 560 | */ |
| 561 | if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE)) |
| 562 | return 0; |
| 563 | |
| 564 | error = xfs_free_eofblocks(mp, ip, |
| 565 | XFS_FREE_EOF_TRYLOCK); |
| 566 | if (error) |
| 567 | return error; |
| 568 | |
| 569 | /* delalloc blocks after truncation means it really is dirty */ |
| 570 | if (ip->i_delayed_blks) |
| 571 | xfs_iflags_set(ip, XFS_IDIRTY_RELEASE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | return 0; |
| 574 | } |
| 575 | |
| 576 | /* |
| 577 | * xfs_inactive |
| 578 | * |
| 579 | * This is called when the vnode reference count for the vnode |
| 580 | * goes to zero. If the file has been unlinked, then it must |
| 581 | * now be truncated. Also, we clear all of the read-ahead state |
| 582 | * kept for the inode here since the file is now closed. |
| 583 | */ |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 584 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | xfs_inactive( |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 586 | xfs_inode_t *ip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | { |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 588 | xfs_bmap_free_t free_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | xfs_fsblock_t first_block; |
| 590 | int committed; |
| 591 | xfs_trans_t *tp; |
| 592 | xfs_mount_t *mp; |
| 593 | int error; |
| 594 | int truncate; |
| 595 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | /* |
| 597 | * If the inode is already free, then there can be nothing |
| 598 | * to clean up here. |
| 599 | */ |
Christoph Hellwig | cb4c8cc | 2009-03-16 08:25:25 +0100 | [diff] [blame] | 600 | if (ip->i_d.di_mode == 0 || is_bad_inode(VFS_I(ip))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | ASSERT(ip->i_df.if_real_bytes == 0); |
| 602 | ASSERT(ip->i_df.if_broot_bytes == 0); |
| 603 | return VN_INACTIVE_CACHE; |
| 604 | } |
| 605 | |
| 606 | /* |
| 607 | * Only do a truncate if it's a regular file with |
| 608 | * some actual space in it. It's OK to look at the |
| 609 | * inode's fields without the lock because we're the |
| 610 | * only one with a reference to the inode. |
| 611 | */ |
| 612 | truncate = ((ip->i_d.di_nlink == 0) && |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 613 | ((ip->i_d.di_size != 0) || (ip->i_size != 0) || |
| 614 | (ip->i_d.di_nextents > 0) || (ip->i_delayed_blks > 0)) && |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 615 | S_ISREG(ip->i_d.di_mode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | |
| 617 | mp = ip->i_mount; |
| 618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | error = 0; |
| 620 | |
| 621 | /* If this is a read-only mount, don't do this (would generate I/O) */ |
Christoph Hellwig | bd186aa | 2007-08-30 17:21:12 +1000 | [diff] [blame] | 622 | if (mp->m_flags & XFS_MOUNT_RDONLY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | goto out; |
| 624 | |
| 625 | if (ip->i_d.di_nlink != 0) { |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 626 | if ((S_ISREG(ip->i_d.di_mode) && |
Christoph Hellwig | df80c93 | 2008-08-13 16:22:09 +1000 | [diff] [blame] | 627 | ((ip->i_size > 0) || (VN_CACHED(VFS_I(ip)) > 0 || |
Yingping Lu | 68bdb6e | 2006-01-11 15:38:31 +1100 | [diff] [blame] | 628 | ip->i_delayed_blks > 0)) && |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 629 | (ip->i_df.if_flags & XFS_IFEXTENTS) && |
| 630 | (!(ip->i_d.di_flags & |
| 631 | (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)) || |
| 632 | (ip->i_delayed_blks != 0)))) { |
Christoph Hellwig | c56c9631 | 2009-10-19 04:03:46 +0000 | [diff] [blame] | 633 | error = xfs_free_eofblocks(mp, ip, 0); |
David Chinner | 92dfe8d | 2007-05-24 15:22:19 +1000 | [diff] [blame] | 634 | if (error) |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 635 | return VN_INACTIVE_CACHE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | } |
| 637 | goto out; |
| 638 | } |
| 639 | |
| 640 | ASSERT(ip->i_d.di_nlink == 0); |
| 641 | |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 642 | error = xfs_qm_dqattach(ip, 0); |
| 643 | if (error) |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 644 | return VN_INACTIVE_CACHE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | |
| 646 | tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE); |
| 647 | if (truncate) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | xfs_ilock(ip, XFS_IOLOCK_EXCL); |
| 649 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | error = xfs_trans_reserve(tp, 0, |
| 651 | XFS_ITRUNCATE_LOG_RES(mp), |
| 652 | 0, XFS_TRANS_PERM_LOG_RES, |
| 653 | XFS_ITRUNCATE_LOG_COUNT); |
| 654 | if (error) { |
| 655 | /* Don't call itruncate_cleanup */ |
| 656 | ASSERT(XFS_FORCED_SHUTDOWN(mp)); |
| 657 | xfs_trans_cancel(tp, 0); |
| 658 | xfs_iunlock(ip, XFS_IOLOCK_EXCL); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 659 | return VN_INACTIVE_CACHE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | } |
| 661 | |
| 662 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 663 | xfs_trans_ijoin(tp, ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 665 | error = xfs_itruncate_data(&tp, ip, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | if (error) { |
| 667 | xfs_trans_cancel(tp, |
| 668 | XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT); |
| 669 | xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 670 | return VN_INACTIVE_CACHE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | } |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 672 | } else if (S_ISLNK(ip->i_d.di_mode)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | |
| 674 | /* |
| 675 | * If we get an error while cleaning up a |
| 676 | * symlink we bail out. |
| 677 | */ |
| 678 | error = (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) ? |
| 679 | xfs_inactive_symlink_rmt(ip, &tp) : |
| 680 | xfs_inactive_symlink_local(ip, &tp); |
| 681 | |
| 682 | if (error) { |
| 683 | ASSERT(tp == NULL); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 684 | return VN_INACTIVE_CACHE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | } |
| 686 | |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 687 | xfs_trans_ijoin(tp, ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | } else { |
| 689 | error = xfs_trans_reserve(tp, 0, |
| 690 | XFS_IFREE_LOG_RES(mp), |
| 691 | 0, XFS_TRANS_PERM_LOG_RES, |
| 692 | XFS_INACTIVE_LOG_COUNT); |
| 693 | if (error) { |
| 694 | ASSERT(XFS_FORCED_SHUTDOWN(mp)); |
| 695 | xfs_trans_cancel(tp, 0); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 696 | return VN_INACTIVE_CACHE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL); |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 700 | xfs_trans_ijoin(tp, ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | } |
| 702 | |
| 703 | /* |
| 704 | * If there are attributes associated with the file |
| 705 | * then blow them away now. The code calls a routine |
| 706 | * that recursively deconstructs the attribute fork. |
| 707 | * We need to just commit the current transaction |
| 708 | * because we can't use it for xfs_attr_inactive(). |
| 709 | */ |
| 710 | if (ip->i_d.di_anextents > 0) { |
| 711 | error = xfs_inactive_attrs(ip, &tp); |
| 712 | /* |
| 713 | * If we got an error, the transaction is already |
| 714 | * cancelled, and the inode is unlocked. Just get out. |
| 715 | */ |
| 716 | if (error) |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 717 | return VN_INACTIVE_CACHE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | } else if (ip->i_afp) { |
| 719 | xfs_idestroy_fork(ip, XFS_ATTR_FORK); |
| 720 | } |
| 721 | |
| 722 | /* |
| 723 | * Free the inode. |
| 724 | */ |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 725 | xfs_bmap_init(&free_list, &first_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | error = xfs_ifree(tp, ip, &free_list); |
| 727 | if (error) { |
| 728 | /* |
| 729 | * If we fail to free the inode, shut down. The cancel |
| 730 | * might do that, we need to make sure. Otherwise the |
| 731 | * inode might be lost for a long time or forever. |
| 732 | */ |
| 733 | if (!XFS_FORCED_SHUTDOWN(mp)) { |
Dave Chinner | 0b932cc | 2011-03-07 10:08:35 +1100 | [diff] [blame] | 734 | xfs_notice(mp, "%s: xfs_ifree returned error %d", |
| 735 | __func__, error); |
Nathan Scott | 7d04a33 | 2006-06-09 14:58:38 +1000 | [diff] [blame] | 736 | xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | } |
| 738 | xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT); |
| 739 | } else { |
| 740 | /* |
| 741 | * Credit the quota account(s). The inode is gone. |
| 742 | */ |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 743 | xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | |
| 745 | /* |
David Chinner | 78e9da7 | 2008-04-10 12:24:17 +1000 | [diff] [blame] | 746 | * Just ignore errors at this point. There is nothing we can |
| 747 | * do except to try to keep going. Make sure it's not a silent |
| 748 | * error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | */ |
David Chinner | 78e9da7 | 2008-04-10 12:24:17 +1000 | [diff] [blame] | 750 | error = xfs_bmap_finish(&tp, &free_list, &committed); |
| 751 | if (error) |
Dave Chinner | 5348778 | 2011-03-07 10:05:35 +1100 | [diff] [blame] | 752 | xfs_notice(mp, "%s: xfs_bmap_finish returned error %d", |
| 753 | __func__, error); |
David Chinner | 78e9da7 | 2008-04-10 12:24:17 +1000 | [diff] [blame] | 754 | error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES); |
| 755 | if (error) |
Dave Chinner | 5348778 | 2011-03-07 10:05:35 +1100 | [diff] [blame] | 756 | xfs_notice(mp, "%s: xfs_trans_commit returned error %d", |
| 757 | __func__, error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | } |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 759 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | /* |
| 761 | * Release the dquots held by inode, if any. |
| 762 | */ |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 763 | xfs_qm_dqdetach(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL); |
| 765 | |
| 766 | out: |
| 767 | return VN_INACTIVE_CACHE; |
| 768 | } |
| 769 | |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 770 | /* |
| 771 | * Lookups up an inode from "name". If ci_name is not NULL, then a CI match |
| 772 | * is allowed, otherwise it has to be an exact match. If a CI match is found, |
| 773 | * ci_name->name will point to a the actual name (caller must free) or |
| 774 | * will be set to NULL if an exact match is found. |
| 775 | */ |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 776 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | xfs_lookup( |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 778 | xfs_inode_t *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 779 | struct xfs_name *name, |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 780 | xfs_inode_t **ipp, |
| 781 | struct xfs_name *ci_name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | { |
Christoph Hellwig | eca450b | 2008-04-22 17:33:52 +1000 | [diff] [blame] | 783 | xfs_ino_t inum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | int error; |
| 785 | uint lock_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | |
Christoph Hellwig | cca28fb | 2010-06-24 11:57:09 +1000 | [diff] [blame] | 787 | trace_xfs_lookup(dp, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | |
| 789 | if (XFS_FORCED_SHUTDOWN(dp->i_mount)) |
| 790 | return XFS_ERROR(EIO); |
| 791 | |
| 792 | lock_mode = xfs_ilock_map_shared(dp); |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 793 | error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | xfs_iunlock_map_shared(dp, lock_mode); |
Christoph Hellwig | eca450b | 2008-04-22 17:33:52 +1000 | [diff] [blame] | 795 | |
| 796 | if (error) |
| 797 | goto out; |
| 798 | |
Dave Chinner | 7b6259e | 2010-06-24 11:35:17 +1000 | [diff] [blame] | 799 | error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp); |
Christoph Hellwig | eca450b | 2008-04-22 17:33:52 +1000 | [diff] [blame] | 800 | if (error) |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 801 | goto out_free_name; |
Christoph Hellwig | eca450b | 2008-04-22 17:33:52 +1000 | [diff] [blame] | 802 | |
Christoph Hellwig | eca450b | 2008-04-22 17:33:52 +1000 | [diff] [blame] | 803 | return 0; |
| 804 | |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 805 | out_free_name: |
| 806 | if (ci_name) |
| 807 | kmem_free(ci_name->name); |
| 808 | out: |
Christoph Hellwig | eca450b | 2008-04-22 17:33:52 +1000 | [diff] [blame] | 809 | *ipp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | return error; |
| 811 | } |
| 812 | |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 813 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | xfs_create( |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 815 | xfs_inode_t *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 816 | struct xfs_name *name, |
Christoph Hellwig | 3e5daf0 | 2007-10-11 18:09:12 +1000 | [diff] [blame] | 817 | mode_t mode, |
| 818 | xfs_dev_t rdev, |
Christoph Hellwig | 6c77b0e | 2010-10-06 18:41:17 +0000 | [diff] [blame] | 819 | xfs_inode_t **ipp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | { |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 821 | int is_dir = S_ISDIR(mode); |
| 822 | struct xfs_mount *mp = dp->i_mount; |
| 823 | struct xfs_inode *ip = NULL; |
| 824 | struct xfs_trans *tp = NULL; |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 825 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | xfs_bmap_free_t free_list; |
| 827 | xfs_fsblock_t first_block; |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 828 | boolean_t unlock_dp_on_error = B_FALSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | uint cancel_flags; |
| 830 | int committed; |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 831 | prid_t prid; |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 832 | struct xfs_dquot *udqp = NULL; |
| 833 | struct xfs_dquot *gdqp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | uint resblks; |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 835 | uint log_res; |
| 836 | uint log_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | |
Christoph Hellwig | cca28fb | 2010-06-24 11:57:09 +1000 | [diff] [blame] | 838 | trace_xfs_create(dp, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 840 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 841 | return XFS_ERROR(EIO); |
| 842 | |
Nathan Scott | 365ca83 | 2005-06-21 15:39:12 +1000 | [diff] [blame] | 843 | if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 844 | prid = xfs_get_projid(dp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | else |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 846 | prid = XFS_PROJID_DEFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | |
| 848 | /* |
| 849 | * Make sure that we have allocated dquot(s) on disk. |
| 850 | */ |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 851 | error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid, |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 852 | XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | if (error) |
Christoph Hellwig | ec3ba85 | 2011-02-13 13:26:42 +0000 | [diff] [blame] | 854 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 856 | if (is_dir) { |
| 857 | rdev = 0; |
| 858 | resblks = XFS_MKDIR_SPACE_RES(mp, name->len); |
| 859 | log_res = XFS_MKDIR_LOG_RES(mp); |
| 860 | log_count = XFS_MKDIR_LOG_COUNT; |
| 861 | tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR); |
| 862 | } else { |
| 863 | resblks = XFS_CREATE_SPACE_RES(mp, name->len); |
| 864 | log_res = XFS_CREATE_LOG_RES(mp); |
| 865 | log_count = XFS_CREATE_LOG_COUNT; |
| 866 | tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE); |
| 867 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | cancel_flags = XFS_TRANS_RELEASE_LOG_RES; |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | /* |
| 872 | * Initially assume that the file does not exist and |
| 873 | * reserve the resources for that case. If that is not |
| 874 | * the case we'll drop the one we have and get a more |
| 875 | * appropriate transaction later. |
| 876 | */ |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 877 | error = xfs_trans_reserve(tp, resblks, log_res, 0, |
| 878 | XFS_TRANS_PERM_LOG_RES, log_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | if (error == ENOSPC) { |
Dave Chinner | 153fec4 | 2009-04-06 18:48:30 +0200 | [diff] [blame] | 880 | /* flush outstanding delalloc blocks and retry */ |
| 881 | xfs_flush_inodes(dp); |
Christoph Hellwig | 4734d40 | 2009-09-09 18:19:02 -0500 | [diff] [blame] | 882 | error = xfs_trans_reserve(tp, resblks, log_res, 0, |
| 883 | XFS_TRANS_PERM_LOG_RES, log_count); |
Dave Chinner | 153fec4 | 2009-04-06 18:48:30 +0200 | [diff] [blame] | 884 | } |
| 885 | if (error == ENOSPC) { |
| 886 | /* No space at all so try a "no-allocation" reservation */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | resblks = 0; |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 888 | error = xfs_trans_reserve(tp, 0, log_res, 0, |
| 889 | XFS_TRANS_PERM_LOG_RES, log_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | } |
| 891 | if (error) { |
| 892 | cancel_flags = 0; |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 893 | goto out_trans_cancel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | } |
| 895 | |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 896 | xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT); |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 897 | unlock_dp_on_error = B_TRUE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 899 | /* |
| 900 | * Check for directory link count overflow. |
| 901 | */ |
| 902 | if (is_dir && dp->i_d.di_nlink >= XFS_MAXLINK) { |
| 903 | error = XFS_ERROR(EMLINK); |
| 904 | goto out_trans_cancel; |
| 905 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 907 | xfs_bmap_init(&free_list, &first_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | |
| 909 | /* |
| 910 | * Reserve disk quota and the inode. |
| 911 | */ |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 912 | error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | if (error) |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 914 | goto out_trans_cancel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 916 | error = xfs_dir_canenter(tp, dp, name, resblks); |
| 917 | if (error) |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 918 | goto out_trans_cancel; |
| 919 | |
| 920 | /* |
| 921 | * A newly created regular or special file just has one directory |
| 922 | * entry pointing to them, but a directory also the "." entry |
| 923 | * pointing to itself. |
| 924 | */ |
Christoph Hellwig | 6c77b0e | 2010-10-06 18:41:17 +0000 | [diff] [blame] | 925 | error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev, |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 926 | prid, resblks > 0, &ip, &committed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | if (error) { |
| 928 | if (error == ENOSPC) |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 929 | goto out_trans_cancel; |
| 930 | goto out_trans_abort; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | |
| 933 | /* |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 934 | * Now we join the directory inode to the transaction. We do not do it |
| 935 | * earlier because xfs_dir_ialloc might commit the previous transaction |
| 936 | * (and release all the locks). An error from here on will result in |
| 937 | * the transaction cancel unlocking dp so don't do it explicitly in the |
| 938 | * error path. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 940 | xfs_trans_ijoin_ref(tp, dp, XFS_ILOCK_EXCL); |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 941 | unlock_dp_on_error = B_FALSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 943 | error = xfs_dir_createname(tp, dp, name, ip->i_ino, |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 944 | &first_block, &free_list, resblks ? |
| 945 | resblks - XFS_IALLOC_SPACE_RES(mp) : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | if (error) { |
| 947 | ASSERT(error != ENOSPC); |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 948 | goto out_trans_abort; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | } |
Dave Chinner | dcd79a1 | 2010-09-28 12:27:25 +1000 | [diff] [blame] | 950 | xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE); |
| 952 | |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 953 | if (is_dir) { |
| 954 | error = xfs_dir_init(tp, ip, dp); |
| 955 | if (error) |
| 956 | goto out_bmap_cancel; |
| 957 | |
| 958 | error = xfs_bumplink(tp, dp); |
| 959 | if (error) |
| 960 | goto out_bmap_cancel; |
| 961 | } |
| 962 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | /* |
| 964 | * If this is a synchronous mount, make sure that the |
| 965 | * create transaction goes to disk before returning to |
| 966 | * the user. |
| 967 | */ |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 968 | if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | xfs_trans_set_sync(tp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | /* |
| 972 | * Attach the dquot(s) to the inodes and modify them incore. |
| 973 | * These ids of the inode couldn't have changed since the new |
| 974 | * inode has been locked ever since it was created. |
| 975 | */ |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 976 | xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 978 | error = xfs_bmap_finish(&tp, &free_list, &committed); |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 979 | if (error) |
Christoph Hellwig | ec3ba85 | 2011-02-13 13:26:42 +0000 | [diff] [blame] | 980 | goto out_bmap_cancel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 982 | error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES); |
Christoph Hellwig | ec3ba85 | 2011-02-13 13:26:42 +0000 | [diff] [blame] | 983 | if (error) |
| 984 | goto out_release_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 986 | xfs_qm_dqrele(udqp); |
| 987 | xfs_qm_dqrele(gdqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | |
Christoph Hellwig | 979ebab | 2008-03-06 13:46:05 +1100 | [diff] [blame] | 989 | *ipp = ip; |
Christoph Hellwig | 288699f | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 990 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 992 | out_bmap_cancel: |
| 993 | xfs_bmap_cancel(&free_list); |
| 994 | out_trans_abort: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | cancel_flags |= XFS_TRANS_ABORT; |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 996 | out_trans_cancel: |
| 997 | xfs_trans_cancel(tp, cancel_flags); |
Christoph Hellwig | ec3ba85 | 2011-02-13 13:26:42 +0000 | [diff] [blame] | 998 | out_release_inode: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | /* |
| 1000 | * Wait until after the current transaction is aborted to |
| 1001 | * release the inode. This prevents recursive transactions |
| 1002 | * and deadlocks from xfs_inactive. |
| 1003 | */ |
Christoph Hellwig | ec3ba85 | 2011-02-13 13:26:42 +0000 | [diff] [blame] | 1004 | if (ip) |
| 1005 | IRELE(ip); |
| 1006 | |
| 1007 | xfs_qm_dqrele(udqp); |
| 1008 | xfs_qm_dqrele(gdqp); |
| 1009 | |
| 1010 | if (unlock_dp_on_error) |
| 1011 | xfs_iunlock(dp, XFS_ILOCK_EXCL); |
| 1012 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | } |
| 1014 | |
| 1015 | #ifdef DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | int xfs_locked_n; |
| 1017 | int xfs_small_retries; |
| 1018 | int xfs_middle_retries; |
| 1019 | int xfs_lots_retries; |
| 1020 | int xfs_lock_delays; |
| 1021 | #endif |
| 1022 | |
| 1023 | /* |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 1024 | * Bump the subclass so xfs_lock_inodes() acquires each lock with |
| 1025 | * a different value |
| 1026 | */ |
| 1027 | static inline int |
| 1028 | xfs_lock_inumorder(int lock_mode, int subclass) |
| 1029 | { |
| 1030 | if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL)) |
David Chinner | 0f1145c | 2007-06-29 17:26:09 +1000 | [diff] [blame] | 1031 | lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT; |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 1032 | if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) |
David Chinner | 0f1145c | 2007-06-29 17:26:09 +1000 | [diff] [blame] | 1033 | lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT; |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 1034 | |
| 1035 | return lock_mode; |
| 1036 | } |
| 1037 | |
| 1038 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | * The following routine will lock n inodes in exclusive mode. |
| 1040 | * We assume the caller calls us with the inodes in i_ino order. |
| 1041 | * |
| 1042 | * We need to detect deadlock where an inode that we lock |
| 1043 | * is in the AIL and we start waiting for another inode that is locked |
| 1044 | * by a thread in a long running transaction (such as truncate). This can |
| 1045 | * result in deadlock since the long running trans might need to wait |
| 1046 | * for the inode we just locked in order to push the tail and free space |
| 1047 | * in the log. |
| 1048 | */ |
| 1049 | void |
| 1050 | xfs_lock_inodes( |
| 1051 | xfs_inode_t **ips, |
| 1052 | int inodes, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | uint lock_mode) |
| 1054 | { |
| 1055 | int attempts = 0, i, j, try_lock; |
| 1056 | xfs_log_item_t *lp; |
| 1057 | |
| 1058 | ASSERT(ips && (inodes >= 2)); /* we need at least two */ |
| 1059 | |
Christoph Hellwig | cfa853e | 2008-04-22 17:34:06 +1000 | [diff] [blame] | 1060 | try_lock = 0; |
| 1061 | i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | |
| 1063 | again: |
| 1064 | for (; i < inodes; i++) { |
| 1065 | ASSERT(ips[i]); |
| 1066 | |
| 1067 | if (i && (ips[i] == ips[i-1])) /* Already locked */ |
| 1068 | continue; |
| 1069 | |
| 1070 | /* |
| 1071 | * If try_lock is not set yet, make sure all locked inodes |
| 1072 | * are not in the AIL. |
| 1073 | * If any are, set try_lock to be used later. |
| 1074 | */ |
| 1075 | |
| 1076 | if (!try_lock) { |
| 1077 | for (j = (i - 1); j >= 0 && !try_lock; j--) { |
| 1078 | lp = (xfs_log_item_t *)ips[j]->i_itemp; |
| 1079 | if (lp && (lp->li_flags & XFS_LI_IN_AIL)) { |
| 1080 | try_lock++; |
| 1081 | } |
| 1082 | } |
| 1083 | } |
| 1084 | |
| 1085 | /* |
| 1086 | * If any of the previous locks we have locked is in the AIL, |
| 1087 | * we must TRY to get the second and subsequent locks. If |
| 1088 | * we can't get any, we must release all we have |
| 1089 | * and try again. |
| 1090 | */ |
| 1091 | |
| 1092 | if (try_lock) { |
| 1093 | /* try_lock must be 0 if i is 0. */ |
| 1094 | /* |
| 1095 | * try_lock means we have an inode locked |
| 1096 | * that is in the AIL. |
| 1097 | */ |
| 1098 | ASSERT(i != 0); |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 1099 | if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | attempts++; |
| 1101 | |
| 1102 | /* |
| 1103 | * Unlock all previous guys and try again. |
| 1104 | * xfs_iunlock will try to push the tail |
| 1105 | * if the inode is in the AIL. |
| 1106 | */ |
| 1107 | |
| 1108 | for(j = i - 1; j >= 0; j--) { |
| 1109 | |
| 1110 | /* |
| 1111 | * Check to see if we've already |
| 1112 | * unlocked this one. |
| 1113 | * Not the first one going back, |
| 1114 | * and the inode ptr is the same. |
| 1115 | */ |
| 1116 | if ((j != (i - 1)) && ips[j] == |
| 1117 | ips[j+1]) |
| 1118 | continue; |
| 1119 | |
| 1120 | xfs_iunlock(ips[j], lock_mode); |
| 1121 | } |
| 1122 | |
| 1123 | if ((attempts % 5) == 0) { |
| 1124 | delay(1); /* Don't just spin the CPU */ |
| 1125 | #ifdef DEBUG |
| 1126 | xfs_lock_delays++; |
| 1127 | #endif |
| 1128 | } |
| 1129 | i = 0; |
| 1130 | try_lock = 0; |
| 1131 | goto again; |
| 1132 | } |
| 1133 | } else { |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 1134 | xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | } |
| 1136 | } |
| 1137 | |
| 1138 | #ifdef DEBUG |
| 1139 | if (attempts) { |
| 1140 | if (attempts < 5) xfs_small_retries++; |
| 1141 | else if (attempts < 100) xfs_middle_retries++; |
| 1142 | else xfs_lots_retries++; |
| 1143 | } else { |
| 1144 | xfs_locked_n++; |
| 1145 | } |
| 1146 | #endif |
| 1147 | } |
| 1148 | |
David Chinner | f9114eb | 2008-09-17 16:51:21 +1000 | [diff] [blame] | 1149 | /* |
| 1150 | * xfs_lock_two_inodes() can only be used to lock one type of lock |
| 1151 | * at a time - the iolock or the ilock, but not both at once. If |
| 1152 | * we lock both at once, lockdep will report false positives saying |
| 1153 | * we have violated locking orders. |
| 1154 | */ |
Christoph Hellwig | e1cccd9 | 2008-08-13 16:18:07 +1000 | [diff] [blame] | 1155 | void |
| 1156 | xfs_lock_two_inodes( |
| 1157 | xfs_inode_t *ip0, |
| 1158 | xfs_inode_t *ip1, |
| 1159 | uint lock_mode) |
| 1160 | { |
| 1161 | xfs_inode_t *temp; |
| 1162 | int attempts = 0; |
| 1163 | xfs_log_item_t *lp; |
| 1164 | |
David Chinner | f9114eb | 2008-09-17 16:51:21 +1000 | [diff] [blame] | 1165 | if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL)) |
| 1166 | ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0); |
Christoph Hellwig | e1cccd9 | 2008-08-13 16:18:07 +1000 | [diff] [blame] | 1167 | ASSERT(ip0->i_ino != ip1->i_ino); |
| 1168 | |
| 1169 | if (ip0->i_ino > ip1->i_ino) { |
| 1170 | temp = ip0; |
| 1171 | ip0 = ip1; |
| 1172 | ip1 = temp; |
| 1173 | } |
| 1174 | |
| 1175 | again: |
| 1176 | xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0)); |
| 1177 | |
| 1178 | /* |
| 1179 | * If the first lock we have locked is in the AIL, we must TRY to get |
| 1180 | * the second lock. If we can't get it, we must release the first one |
| 1181 | * and try again. |
| 1182 | */ |
| 1183 | lp = (xfs_log_item_t *)ip0->i_itemp; |
| 1184 | if (lp && (lp->li_flags & XFS_LI_IN_AIL)) { |
| 1185 | if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) { |
| 1186 | xfs_iunlock(ip0, lock_mode); |
| 1187 | if ((++attempts % 5) == 0) |
| 1188 | delay(1); /* Don't just spin the CPU */ |
| 1189 | goto again; |
| 1190 | } |
| 1191 | } else { |
| 1192 | xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1)); |
| 1193 | } |
| 1194 | } |
| 1195 | |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1196 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | xfs_remove( |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1198 | xfs_inode_t *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 1199 | struct xfs_name *name, |
| 1200 | xfs_inode_t *ip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | { |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1202 | xfs_mount_t *mp = dp->i_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | xfs_trans_t *tp = NULL; |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1204 | int is_dir = S_ISDIR(ip->i_d.di_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | int error = 0; |
| 1206 | xfs_bmap_free_t free_list; |
| 1207 | xfs_fsblock_t first_block; |
| 1208 | int cancel_flags; |
| 1209 | int committed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | int link_zero; |
| 1211 | uint resblks; |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1212 | uint log_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | |
Christoph Hellwig | cca28fb | 2010-06-24 11:57:09 +1000 | [diff] [blame] | 1214 | trace_xfs_remove(dp, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 1217 | return XFS_ERROR(EIO); |
| 1218 | |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1219 | error = xfs_qm_dqattach(dp, 0); |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1220 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | goto std_return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1223 | error = xfs_qm_dqattach(ip, 0); |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1224 | if (error) |
| 1225 | goto std_return; |
| 1226 | |
| 1227 | if (is_dir) { |
| 1228 | tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR); |
| 1229 | log_count = XFS_DEFAULT_LOG_COUNT; |
| 1230 | } else { |
| 1231 | tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE); |
| 1232 | log_count = XFS_REMOVE_LOG_COUNT; |
| 1233 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | cancel_flags = XFS_TRANS_RELEASE_LOG_RES; |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | /* |
| 1237 | * We try to get the real space reservation first, |
| 1238 | * allowing for directory btree deletion(s) implying |
| 1239 | * possible bmap insert(s). If we can't get the space |
| 1240 | * reservation then we use 0 instead, and avoid the bmap |
| 1241 | * btree insert(s) in the directory code by, if the bmap |
| 1242 | * insert tries to happen, instead trimming the LAST |
| 1243 | * block from the directory. |
| 1244 | */ |
| 1245 | resblks = XFS_REMOVE_SPACE_RES(mp); |
| 1246 | error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0, |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1247 | XFS_TRANS_PERM_LOG_RES, log_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | if (error == ENOSPC) { |
| 1249 | resblks = 0; |
| 1250 | error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0, |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1251 | XFS_TRANS_PERM_LOG_RES, log_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | } |
| 1253 | if (error) { |
| 1254 | ASSERT(error != ENOSPC); |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1255 | cancel_flags = 0; |
| 1256 | goto out_trans_cancel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | } |
| 1258 | |
Christoph Hellwig | e1cccd9 | 2008-08-13 16:18:07 +1000 | [diff] [blame] | 1259 | xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1261 | xfs_trans_ijoin_ref(tp, dp, XFS_ILOCK_EXCL); |
| 1262 | xfs_trans_ijoin_ref(tp, ip, XFS_ILOCK_EXCL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | |
| 1264 | /* |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1265 | * If we're removing a directory perform some additional validation. |
| 1266 | */ |
| 1267 | if (is_dir) { |
| 1268 | ASSERT(ip->i_d.di_nlink >= 2); |
| 1269 | if (ip->i_d.di_nlink != 2) { |
| 1270 | error = XFS_ERROR(ENOTEMPTY); |
| 1271 | goto out_trans_cancel; |
| 1272 | } |
| 1273 | if (!xfs_dir_isempty(ip)) { |
| 1274 | error = XFS_ERROR(ENOTEMPTY); |
| 1275 | goto out_trans_cancel; |
| 1276 | } |
| 1277 | } |
| 1278 | |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1279 | xfs_bmap_init(&free_list, &first_block); |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 1280 | error = xfs_dir_removename(tp, dp, name, ip->i_ino, |
Christoph Hellwig | d4377d8 | 2008-04-22 17:33:46 +1000 | [diff] [blame] | 1281 | &first_block, &free_list, resblks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | if (error) { |
| 1283 | ASSERT(error != ENOENT); |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1284 | goto out_bmap_cancel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | } |
Dave Chinner | dcd79a1 | 2010-09-28 12:27:25 +1000 | [diff] [blame] | 1286 | xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1288 | if (is_dir) { |
| 1289 | /* |
| 1290 | * Drop the link from ip's "..". |
| 1291 | */ |
| 1292 | error = xfs_droplink(tp, dp); |
| 1293 | if (error) |
| 1294 | goto out_bmap_cancel; |
| 1295 | |
| 1296 | /* |
Christoph Hellwig | 2b7035f | 2008-10-30 17:55:18 +1100 | [diff] [blame] | 1297 | * Drop the "." link from ip to self. |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1298 | */ |
| 1299 | error = xfs_droplink(tp, ip); |
| 1300 | if (error) |
| 1301 | goto out_bmap_cancel; |
| 1302 | } else { |
| 1303 | /* |
| 1304 | * When removing a non-directory we need to log the parent |
Dave Chinner | 26c5295 | 2008-11-28 14:23:37 +1100 | [diff] [blame] | 1305 | * inode here. For a directory this is done implicitly |
| 1306 | * by the xfs_droplink call for the ".." entry. |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1307 | */ |
| 1308 | xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | } |
| 1310 | |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1311 | /* |
Christoph Hellwig | 2b7035f | 2008-10-30 17:55:18 +1100 | [diff] [blame] | 1312 | * Drop the link from dp to ip. |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1313 | */ |
| 1314 | error = xfs_droplink(tp, ip); |
| 1315 | if (error) |
| 1316 | goto out_bmap_cancel; |
| 1317 | |
| 1318 | /* |
| 1319 | * Determine if this is the last link while |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | * we are in the transaction. |
| 1321 | */ |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1322 | link_zero = (ip->i_d.di_nlink == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | |
| 1324 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | * If this is a synchronous mount, make sure that the |
| 1326 | * remove transaction goes to disk before returning to |
| 1327 | * the user. |
| 1328 | */ |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1329 | if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | xfs_trans_set_sync(tp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 1332 | error = xfs_bmap_finish(&tp, &free_list, &committed); |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1333 | if (error) |
| 1334 | goto out_bmap_cancel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 1336 | error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES); |
Christoph Hellwig | 5df78e7 | 2008-04-22 17:34:24 +1000 | [diff] [blame] | 1337 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | goto std_return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | |
| 1340 | /* |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 1341 | * If we are using filestreams, kill the stream association. |
| 1342 | * If the file is still open it may get a new one but that |
| 1343 | * will get killed on last close in xfs_close() so we don't |
| 1344 | * have to worry about that. |
| 1345 | */ |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1346 | if (!is_dir && link_zero && xfs_inode_is_filestream(ip)) |
David Chinner | 2a82b8b | 2007-07-11 11:09:12 +1000 | [diff] [blame] | 1347 | xfs_filestream_deassociate(ip); |
| 1348 | |
Christoph Hellwig | 288699f | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1349 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1351 | out_bmap_cancel: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | xfs_bmap_cancel(&free_list); |
| 1353 | cancel_flags |= XFS_TRANS_ABORT; |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 1354 | out_trans_cancel: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | xfs_trans_cancel(tp, cancel_flags); |
Christoph Hellwig | 288699f | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1356 | std_return: |
| 1357 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | } |
| 1359 | |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1360 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | xfs_link( |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1362 | xfs_inode_t *tdp, |
Christoph Hellwig | a3da789 | 2008-03-06 13:46:12 +1100 | [diff] [blame] | 1363 | xfs_inode_t *sip, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 1364 | struct xfs_name *target_name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | { |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1366 | xfs_mount_t *mp = tdp->i_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | xfs_trans_t *tp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | int error; |
| 1369 | xfs_bmap_free_t free_list; |
| 1370 | xfs_fsblock_t first_block; |
| 1371 | int cancel_flags; |
| 1372 | int committed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | int resblks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | |
Christoph Hellwig | cca28fb | 2010-06-24 11:57:09 +1000 | [diff] [blame] | 1375 | trace_xfs_link(tdp, target_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | |
Christoph Hellwig | a3da789 | 2008-03-06 13:46:12 +1100 | [diff] [blame] | 1377 | ASSERT(!S_ISDIR(sip->i_d.di_mode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 1380 | return XFS_ERROR(EIO); |
| 1381 | |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1382 | error = xfs_qm_dqattach(sip, 0); |
Christoph Hellwig | cb3f35b | 2009-02-04 09:34:20 +0100 | [diff] [blame] | 1383 | if (error) |
| 1384 | goto std_return; |
| 1385 | |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1386 | error = xfs_qm_dqattach(tdp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | if (error) |
| 1388 | goto std_return; |
| 1389 | |
| 1390 | tp = xfs_trans_alloc(mp, XFS_TRANS_LINK); |
| 1391 | cancel_flags = XFS_TRANS_RELEASE_LOG_RES; |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 1392 | resblks = XFS_LINK_SPACE_RES(mp, target_name->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0, |
| 1394 | XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT); |
| 1395 | if (error == ENOSPC) { |
| 1396 | resblks = 0; |
| 1397 | error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0, |
| 1398 | XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT); |
| 1399 | } |
| 1400 | if (error) { |
| 1401 | cancel_flags = 0; |
| 1402 | goto error_return; |
| 1403 | } |
| 1404 | |
Christoph Hellwig | e1cccd9 | 2008-08-13 16:18:07 +1000 | [diff] [blame] | 1405 | xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1407 | xfs_trans_ijoin_ref(tp, sip, XFS_ILOCK_EXCL); |
| 1408 | xfs_trans_ijoin_ref(tp, tdp, XFS_ILOCK_EXCL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | |
| 1410 | /* |
| 1411 | * If the source has too many links, we can't make any more to it. |
| 1412 | */ |
| 1413 | if (sip->i_d.di_nlink >= XFS_MAXLINK) { |
| 1414 | error = XFS_ERROR(EMLINK); |
| 1415 | goto error_return; |
| 1416 | } |
| 1417 | |
Nathan Scott | 365ca83 | 2005-06-21 15:39:12 +1000 | [diff] [blame] | 1418 | /* |
| 1419 | * If we are using project inheritance, we only allow hard link |
| 1420 | * creation in our tree when the project IDs are the same; else |
| 1421 | * the tree quota mechanism could be circumvented. |
| 1422 | */ |
| 1423 | if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) && |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 1424 | (xfs_get_projid(tdp) != xfs_get_projid(sip)))) { |
Nathan Scott | b1ecdda | 2006-05-08 19:51:42 +1000 | [diff] [blame] | 1425 | error = XFS_ERROR(EXDEV); |
Nathan Scott | 365ca83 | 2005-06-21 15:39:12 +1000 | [diff] [blame] | 1426 | goto error_return; |
| 1427 | } |
| 1428 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 1429 | error = xfs_dir_canenter(tp, tdp, target_name, resblks); |
| 1430 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | goto error_return; |
| 1432 | |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1433 | xfs_bmap_init(&free_list, &first_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 1435 | error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino, |
| 1436 | &first_block, &free_list, resblks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | if (error) |
| 1438 | goto abort_return; |
Dave Chinner | dcd79a1 | 2010-09-28 12:27:25 +1000 | [diff] [blame] | 1439 | xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE); |
| 1441 | |
| 1442 | error = xfs_bumplink(tp, sip); |
Alexey Dobriyan | b71d300 | 2006-06-27 12:45:17 +1000 | [diff] [blame] | 1443 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | goto abort_return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | |
| 1446 | /* |
| 1447 | * If this is a synchronous mount, make sure that the |
| 1448 | * link transaction goes to disk before returning to |
| 1449 | * the user. |
| 1450 | */ |
| 1451 | if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) { |
| 1452 | xfs_trans_set_sync(tp); |
| 1453 | } |
| 1454 | |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 1455 | error = xfs_bmap_finish (&tp, &free_list, &committed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | if (error) { |
| 1457 | xfs_bmap_cancel(&free_list); |
| 1458 | goto abort_return; |
| 1459 | } |
| 1460 | |
Christoph Hellwig | 288699f | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1461 | return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | |
| 1463 | abort_return: |
| 1464 | cancel_flags |= XFS_TRANS_ABORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | error_return: |
| 1466 | xfs_trans_cancel(tp, cancel_flags); |
Christoph Hellwig | 288699f | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1467 | std_return: |
| 1468 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | } |
Alexey Dobriyan | b71d300 | 2006-06-27 12:45:17 +1000 | [diff] [blame] | 1470 | |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1471 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | xfs_symlink( |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1473 | xfs_inode_t *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 1474 | struct xfs_name *link_name, |
| 1475 | const char *target_path, |
Christoph Hellwig | 3e5daf0 | 2007-10-11 18:09:12 +1000 | [diff] [blame] | 1476 | mode_t mode, |
Christoph Hellwig | 6c77b0e | 2010-10-06 18:41:17 +0000 | [diff] [blame] | 1477 | xfs_inode_t **ipp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | { |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1479 | xfs_mount_t *mp = dp->i_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | xfs_trans_t *tp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | xfs_inode_t *ip; |
| 1482 | int error; |
| 1483 | int pathlen; |
| 1484 | xfs_bmap_free_t free_list; |
| 1485 | xfs_fsblock_t first_block; |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1486 | boolean_t unlock_dp_on_error = B_FALSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | uint cancel_flags; |
| 1488 | int committed; |
| 1489 | xfs_fileoff_t first_fsb; |
| 1490 | xfs_filblks_t fs_blocks; |
| 1491 | int nmaps; |
| 1492 | xfs_bmbt_irec_t mval[SYMLINK_MAPS]; |
| 1493 | xfs_daddr_t d; |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 1494 | const char *cur_chunk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | int byte_cnt; |
| 1496 | int n; |
| 1497 | xfs_buf_t *bp; |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 1498 | prid_t prid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | struct xfs_dquot *udqp, *gdqp; |
| 1500 | uint resblks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | |
Christoph Hellwig | 3937be5 | 2008-03-06 13:46:19 +1100 | [diff] [blame] | 1502 | *ipp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | error = 0; |
| 1504 | ip = NULL; |
| 1505 | tp = NULL; |
| 1506 | |
Christoph Hellwig | cca28fb | 2010-06-24 11:57:09 +1000 | [diff] [blame] | 1507 | trace_xfs_symlink(dp, link_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | |
| 1509 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 1510 | return XFS_ERROR(EIO); |
| 1511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | /* |
| 1513 | * Check component lengths of the target path name. |
| 1514 | */ |
| 1515 | pathlen = strlen(target_path); |
| 1516 | if (pathlen >= MAXPATHLEN) /* total string too long */ |
| 1517 | return XFS_ERROR(ENAMETOOLONG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | udqp = gdqp = NULL; |
Nathan Scott | 365ca83 | 2005-06-21 15:39:12 +1000 | [diff] [blame] | 1520 | if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 1521 | prid = xfs_get_projid(dp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | else |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 1523 | prid = XFS_PROJID_DEFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | |
| 1525 | /* |
| 1526 | * Make sure that we have allocated dquot(s) on disk. |
| 1527 | */ |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1528 | error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp); |
| 1530 | if (error) |
| 1531 | goto std_return; |
| 1532 | |
| 1533 | tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK); |
| 1534 | cancel_flags = XFS_TRANS_RELEASE_LOG_RES; |
| 1535 | /* |
| 1536 | * The symlink will fit into the inode data fork? |
| 1537 | * There can't be any attributes so we get the whole variable part. |
| 1538 | */ |
| 1539 | if (pathlen <= XFS_LITINO(mp)) |
| 1540 | fs_blocks = 0; |
| 1541 | else |
| 1542 | fs_blocks = XFS_B_TO_FSB(mp, pathlen); |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 1543 | resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0, |
| 1545 | XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT); |
| 1546 | if (error == ENOSPC && fs_blocks == 0) { |
| 1547 | resblks = 0; |
| 1548 | error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0, |
| 1549 | XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT); |
| 1550 | } |
| 1551 | if (error) { |
| 1552 | cancel_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | goto error_return; |
| 1554 | } |
| 1555 | |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 1556 | xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT); |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1557 | unlock_dp_on_error = B_TRUE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | |
| 1559 | /* |
| 1560 | * Check whether the directory allows new symlinks or not. |
| 1561 | */ |
| 1562 | if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) { |
| 1563 | error = XFS_ERROR(EPERM); |
| 1564 | goto error_return; |
| 1565 | } |
| 1566 | |
| 1567 | /* |
| 1568 | * Reserve disk quota : blocks and inode. |
| 1569 | */ |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1570 | error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | if (error) |
| 1572 | goto error_return; |
| 1573 | |
| 1574 | /* |
| 1575 | * Check for ability to enter directory entry, if no space reserved. |
| 1576 | */ |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 1577 | error = xfs_dir_canenter(tp, dp, link_name, resblks); |
| 1578 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | goto error_return; |
| 1580 | /* |
| 1581 | * Initialize the bmap freelist prior to calling either |
| 1582 | * bmapi or the directory create code. |
| 1583 | */ |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1584 | xfs_bmap_init(&free_list, &first_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | |
| 1586 | /* |
| 1587 | * Allocate an inode for the symlink. |
| 1588 | */ |
Christoph Hellwig | 6c77b0e | 2010-10-06 18:41:17 +0000 | [diff] [blame] | 1589 | error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT), 1, 0, |
| 1590 | prid, resblks > 0, &ip, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | if (error) { |
| 1592 | if (error == ENOSPC) |
| 1593 | goto error_return; |
| 1594 | goto error1; |
| 1595 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1597 | /* |
| 1598 | * An error after we've joined dp to the transaction will result in the |
| 1599 | * transaction cancel unlocking dp so don't do it explicitly in the |
| 1600 | * error path. |
| 1601 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1602 | xfs_trans_ijoin_ref(tp, dp, XFS_ILOCK_EXCL); |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1603 | unlock_dp_on_error = B_FALSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | |
| 1605 | /* |
| 1606 | * Also attach the dquot(s) to it, if applicable. |
| 1607 | */ |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1608 | xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | |
| 1610 | if (resblks) |
| 1611 | resblks -= XFS_IALLOC_SPACE_RES(mp); |
| 1612 | /* |
| 1613 | * If the symlink will fit into the inode, write it inline. |
| 1614 | */ |
| 1615 | if (pathlen <= XFS_IFORK_DSIZE(ip)) { |
| 1616 | xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK); |
| 1617 | memcpy(ip->i_df.if_u1.if_data, target_path, pathlen); |
| 1618 | ip->i_d.di_size = pathlen; |
| 1619 | |
| 1620 | /* |
| 1621 | * The inode was initially created in extent format. |
| 1622 | */ |
| 1623 | ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT); |
| 1624 | ip->i_df.if_flags |= XFS_IFINLINE; |
| 1625 | |
| 1626 | ip->i_d.di_format = XFS_DINODE_FMT_LOCAL; |
| 1627 | xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE); |
| 1628 | |
| 1629 | } else { |
| 1630 | first_fsb = 0; |
| 1631 | nmaps = SYMLINK_MAPS; |
| 1632 | |
| 1633 | error = xfs_bmapi(tp, ip, first_fsb, fs_blocks, |
| 1634 | XFS_BMAPI_WRITE | XFS_BMAPI_METADATA, |
| 1635 | &first_block, resblks, mval, &nmaps, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1636 | &free_list); |
Christoph Hellwig | ec3ba85 | 2011-02-13 13:26:42 +0000 | [diff] [blame] | 1637 | if (error) |
| 1638 | goto error2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | |
| 1640 | if (resblks) |
| 1641 | resblks -= fs_blocks; |
| 1642 | ip->i_d.di_size = pathlen; |
| 1643 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 1644 | |
| 1645 | cur_chunk = target_path; |
| 1646 | for (n = 0; n < nmaps; n++) { |
| 1647 | d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock); |
| 1648 | byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount); |
| 1649 | bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d, |
| 1650 | BTOBB(byte_cnt), 0); |
Chandra Seetharaman | 5a52c2a58 | 2011-07-22 23:39:51 +0000 | [diff] [blame] | 1651 | ASSERT(!xfs_buf_geterror(bp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | if (pathlen < byte_cnt) { |
| 1653 | byte_cnt = pathlen; |
| 1654 | } |
| 1655 | pathlen -= byte_cnt; |
| 1656 | |
Chandra Seetharaman | 6292604 | 2011-07-22 23:40:15 +0000 | [diff] [blame] | 1657 | memcpy(bp->b_addr, cur_chunk, byte_cnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | cur_chunk += byte_cnt; |
| 1659 | |
| 1660 | xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1); |
| 1661 | } |
| 1662 | } |
| 1663 | |
| 1664 | /* |
| 1665 | * Create the directory entry for the symlink. |
| 1666 | */ |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 1667 | error = xfs_dir_createname(tp, dp, link_name, ip->i_ino, |
| 1668 | &first_block, &free_list, resblks); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 1669 | if (error) |
Christoph Hellwig | ec3ba85 | 2011-02-13 13:26:42 +0000 | [diff] [blame] | 1670 | goto error2; |
Dave Chinner | dcd79a1 | 2010-09-28 12:27:25 +1000 | [diff] [blame] | 1671 | xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE); |
| 1673 | |
| 1674 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | * If this is a synchronous mount, make sure that the |
| 1676 | * symlink transaction goes to disk before returning to |
| 1677 | * the user. |
| 1678 | */ |
| 1679 | if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) { |
| 1680 | xfs_trans_set_sync(tp); |
| 1681 | } |
| 1682 | |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 1683 | error = xfs_bmap_finish(&tp, &free_list, &committed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | if (error) { |
| 1685 | goto error2; |
| 1686 | } |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 1687 | error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES); |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1688 | xfs_qm_dqrele(udqp); |
| 1689 | xfs_qm_dqrele(gdqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | |
Christoph Hellwig | 288699f | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1691 | *ipp = ip; |
| 1692 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | |
| 1694 | error2: |
| 1695 | IRELE(ip); |
| 1696 | error1: |
| 1697 | xfs_bmap_cancel(&free_list); |
| 1698 | cancel_flags |= XFS_TRANS_ABORT; |
| 1699 | error_return: |
| 1700 | xfs_trans_cancel(tp, cancel_flags); |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1701 | xfs_qm_dqrele(udqp); |
| 1702 | xfs_qm_dqrele(gdqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1704 | if (unlock_dp_on_error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | xfs_iunlock(dp, XFS_ILOCK_EXCL); |
Christoph Hellwig | 288699f | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1706 | std_return: |
| 1707 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | } |
| 1709 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1710 | int |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1711 | xfs_set_dmattrs( |
| 1712 | xfs_inode_t *ip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | u_int evmask, |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1714 | u_int16_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | { |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1716 | xfs_mount_t *mp = ip->i_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | xfs_trans_t *tp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | int error; |
| 1719 | |
| 1720 | if (!capable(CAP_SYS_ADMIN)) |
| 1721 | return XFS_ERROR(EPERM); |
| 1722 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 1724 | return XFS_ERROR(EIO); |
| 1725 | |
| 1726 | tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS); |
| 1727 | error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0); |
| 1728 | if (error) { |
| 1729 | xfs_trans_cancel(tp, 0); |
| 1730 | return error; |
| 1731 | } |
| 1732 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1733 | xfs_trans_ijoin_ref(tp, ip, XFS_ILOCK_EXCL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | |
Christoph Hellwig | 613d704 | 2007-10-11 17:44:08 +1000 | [diff] [blame] | 1735 | ip->i_d.di_dmevmask = evmask; |
| 1736 | ip->i_d.di_dmstate = state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | |
| 1738 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 1739 | error = xfs_trans_commit(tp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | |
| 1741 | return error; |
| 1742 | } |
| 1743 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | /* |
| 1745 | * xfs_alloc_file_space() |
| 1746 | * This routine allocates disk space for the given file. |
| 1747 | * |
| 1748 | * If alloc_type == 0, this request is for an ALLOCSP type |
| 1749 | * request which will change the file size. In this case, no |
| 1750 | * DMAPI event will be generated by the call. A TRUNCATE event |
| 1751 | * will be generated later by xfs_setattr. |
| 1752 | * |
| 1753 | * If alloc_type != 0, this request is for a RESVSP type |
| 1754 | * request, and a DMAPI DM_EVENT_WRITE will be generated if the |
| 1755 | * lower block boundary byte address is less than the file's |
| 1756 | * length. |
| 1757 | * |
| 1758 | * RETURNS: |
| 1759 | * 0 on success |
| 1760 | * errno on error |
| 1761 | * |
| 1762 | */ |
Christoph Hellwig | ba0f32d | 2005-06-21 15:36:52 +1000 | [diff] [blame] | 1763 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | xfs_alloc_file_space( |
| 1765 | xfs_inode_t *ip, |
| 1766 | xfs_off_t offset, |
| 1767 | xfs_off_t len, |
| 1768 | int alloc_type, |
| 1769 | int attr_flags) |
| 1770 | { |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1771 | xfs_mount_t *mp = ip->i_mount; |
| 1772 | xfs_off_t count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | xfs_filblks_t allocated_fsb; |
| 1774 | xfs_filblks_t allocatesize_fsb; |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1775 | xfs_extlen_t extsz, temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | xfs_fileoff_t startoffset_fsb; |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1777 | xfs_fsblock_t firstfsb; |
| 1778 | int nimaps; |
| 1779 | int bmapi_flag; |
| 1780 | int quota_flag; |
| 1781 | int rt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | xfs_trans_t *tp; |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1783 | xfs_bmbt_irec_t imaps[1], *imapp; |
| 1784 | xfs_bmap_free_t free_list; |
| 1785 | uint qblocks, resblks, resrtextents; |
| 1786 | int committed; |
| 1787 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | |
Christoph Hellwig | cca28fb | 2010-06-24 11:57:09 +1000 | [diff] [blame] | 1789 | trace_xfs_alloc_file_space(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | |
| 1791 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 1792 | return XFS_ERROR(EIO); |
| 1793 | |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1794 | error = xfs_qm_dqattach(ip, 0); |
| 1795 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1796 | return error; |
| 1797 | |
| 1798 | if (len <= 0) |
| 1799 | return XFS_ERROR(EINVAL); |
| 1800 | |
David Chinner | 957d0eb | 2007-06-18 16:50:37 +1000 | [diff] [blame] | 1801 | rt = XFS_IS_REALTIME_INODE(ip); |
| 1802 | extsz = xfs_get_extsz_hint(ip); |
| 1803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | count = len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | imapp = &imaps[0]; |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1806 | nimaps = 1; |
Dave Chinner | 4472235 | 2010-08-24 12:02:11 +1000 | [diff] [blame] | 1807 | bmapi_flag = XFS_BMAPI_WRITE | alloc_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | startoffset_fsb = XFS_B_TO_FSBT(mp, offset); |
| 1809 | allocatesize_fsb = XFS_B_TO_FSB(mp, count); |
| 1810 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | /* |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1812 | * Allocate file space until done or until there is an error |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | while (allocatesize_fsb && !error) { |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1815 | xfs_fileoff_t s, e; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1816 | |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1817 | /* |
Nathan Scott | 3ddb8fa | 2006-01-11 15:33:02 +1100 | [diff] [blame] | 1818 | * Determine space reservations for data/realtime. |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1819 | */ |
| 1820 | if (unlikely(extsz)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | s = startoffset_fsb; |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1822 | do_div(s, extsz); |
| 1823 | s *= extsz; |
| 1824 | e = startoffset_fsb + allocatesize_fsb; |
| 1825 | if ((temp = do_mod(startoffset_fsb, extsz))) |
| 1826 | e += temp; |
| 1827 | if ((temp = do_mod(e, extsz))) |
| 1828 | e += extsz - temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | } else { |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1830 | s = 0; |
| 1831 | e = allocatesize_fsb; |
| 1832 | } |
| 1833 | |
Dave Chinner | 72656c4 | 2010-09-03 12:19:33 +1000 | [diff] [blame] | 1834 | /* |
| 1835 | * The transaction reservation is limited to a 32-bit block |
| 1836 | * count, hence we need to limit the number of blocks we are |
| 1837 | * trying to reserve to avoid an overflow. We can't allocate |
| 1838 | * more than @nimaps extents, and an extent is limited on disk |
| 1839 | * to MAXEXTLEN (21 bits), so use that to enforce the limit. |
| 1840 | */ |
| 1841 | resblks = min_t(xfs_fileoff_t, (e - s), (MAXEXTLEN * nimaps)); |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1842 | if (unlikely(rt)) { |
Dave Chinner | 72656c4 | 2010-09-03 12:19:33 +1000 | [diff] [blame] | 1843 | resrtextents = qblocks = resblks; |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1844 | resrtextents /= mp->m_sb.sb_rextsize; |
| 1845 | resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0); |
| 1846 | quota_flag = XFS_QMOPT_RES_RTBLKS; |
| 1847 | } else { |
| 1848 | resrtextents = 0; |
Dave Chinner | 72656c4 | 2010-09-03 12:19:33 +1000 | [diff] [blame] | 1849 | resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks); |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1850 | quota_flag = XFS_QMOPT_RES_REGBLKS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | } |
| 1852 | |
| 1853 | /* |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1854 | * Allocate and setup the transaction. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | */ |
| 1856 | tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT); |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1857 | error = xfs_trans_reserve(tp, resblks, |
| 1858 | XFS_WRITE_LOG_RES(mp), resrtextents, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1859 | XFS_TRANS_PERM_LOG_RES, |
| 1860 | XFS_WRITE_LOG_COUNT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | /* |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1862 | * Check for running out of space |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1863 | */ |
| 1864 | if (error) { |
| 1865 | /* |
| 1866 | * Free the transaction structure. |
| 1867 | */ |
| 1868 | ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp)); |
| 1869 | xfs_trans_cancel(tp, 0); |
| 1870 | break; |
| 1871 | } |
| 1872 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1873 | error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks, |
| 1874 | 0, quota_flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | if (error) |
| 1876 | goto error1; |
| 1877 | |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1878 | xfs_trans_ijoin(tp, ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | |
| 1880 | /* |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1881 | * Issue the xfs_bmapi() call to allocate the blocks |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | */ |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1883 | xfs_bmap_init(&free_list, &firstfsb); |
Lachlan McIlroy | 541d7d3 | 2007-10-11 17:34:33 +1000 | [diff] [blame] | 1884 | error = xfs_bmapi(tp, ip, startoffset_fsb, |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1885 | allocatesize_fsb, bmapi_flag, |
| 1886 | &firstfsb, 0, imapp, &nimaps, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1887 | &free_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | if (error) { |
| 1889 | goto error0; |
| 1890 | } |
| 1891 | |
| 1892 | /* |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1893 | * Complete the transaction |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | */ |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 1895 | error = xfs_bmap_finish(&tp, &free_list, &committed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | if (error) { |
| 1897 | goto error0; |
| 1898 | } |
| 1899 | |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 1900 | error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1901 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 1902 | if (error) { |
| 1903 | break; |
| 1904 | } |
| 1905 | |
| 1906 | allocated_fsb = imapp->br_blockcount; |
| 1907 | |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1908 | if (nimaps == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | error = XFS_ERROR(ENOSPC); |
| 1910 | break; |
| 1911 | } |
| 1912 | |
| 1913 | startoffset_fsb += allocated_fsb; |
| 1914 | allocatesize_fsb -= allocated_fsb; |
| 1915 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | |
| 1917 | return error; |
| 1918 | |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1919 | error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1920 | xfs_bmap_cancel(&free_list); |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1921 | xfs_trans_unreserve_quota_nblks(tp, ip, qblocks, 0, quota_flag); |
Nathan Scott | dd9f438 | 2006-01-11 15:28:28 +1100 | [diff] [blame] | 1922 | |
| 1923 | error1: /* Just cancel transaction */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1924 | xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT); |
| 1925 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | 288699f | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1926 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | } |
| 1928 | |
| 1929 | /* |
| 1930 | * Zero file bytes between startoff and endoff inclusive. |
| 1931 | * The iolock is held exclusive and no blocks are buffered. |
Lachlan McIlroy | 2fd6f6e | 2008-09-17 16:52:50 +1000 | [diff] [blame] | 1932 | * |
| 1933 | * This function is used by xfs_free_file_space() to zero |
| 1934 | * partial blocks when the range to free is not block aligned. |
| 1935 | * When unreserving space with boundaries that are not block |
| 1936 | * aligned we round up the start and round down the end |
| 1937 | * boundaries and then use this function to zero the parts of |
| 1938 | * the blocks that got dropped during the rounding. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | */ |
| 1940 | STATIC int |
| 1941 | xfs_zero_remaining_bytes( |
| 1942 | xfs_inode_t *ip, |
| 1943 | xfs_off_t startoff, |
| 1944 | xfs_off_t endoff) |
| 1945 | { |
| 1946 | xfs_bmbt_irec_t imap; |
| 1947 | xfs_fileoff_t offset_fsb; |
| 1948 | xfs_off_t lastoffset; |
| 1949 | xfs_off_t offset; |
| 1950 | xfs_buf_t *bp; |
| 1951 | xfs_mount_t *mp = ip->i_mount; |
| 1952 | int nimap; |
| 1953 | int error = 0; |
| 1954 | |
Lachlan McIlroy | 2fd6f6e | 2008-09-17 16:52:50 +1000 | [diff] [blame] | 1955 | /* |
| 1956 | * Avoid doing I/O beyond eof - it's not necessary |
| 1957 | * since nothing can read beyond eof. The space will |
| 1958 | * be zeroed when the file is extended anyway. |
| 1959 | */ |
| 1960 | if (startoff >= ip->i_size) |
| 1961 | return 0; |
| 1962 | |
| 1963 | if (endoff > ip->i_size) |
| 1964 | endoff = ip->i_size; |
| 1965 | |
Dave Chinner | 686865f | 2010-09-24 20:07:47 +1000 | [diff] [blame] | 1966 | bp = xfs_buf_get_uncached(XFS_IS_REALTIME_INODE(ip) ? |
| 1967 | mp->m_rtdev_targp : mp->m_ddev_targp, |
| 1968 | mp->m_sb.sb_blocksize, XBF_DONT_BLOCK); |
Lachlan McIlroy | c642261 | 2008-12-05 13:16:15 +1100 | [diff] [blame] | 1969 | if (!bp) |
| 1970 | return XFS_ERROR(ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | |
Christoph Hellwig | c8da0fa | 2011-07-08 14:36:25 +0200 | [diff] [blame] | 1972 | xfs_buf_unlock(bp); |
| 1973 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1974 | for (offset = startoff; offset <= endoff; offset = lastoffset + 1) { |
| 1975 | offset_fsb = XFS_B_TO_FSBT(mp, offset); |
| 1976 | nimap = 1; |
Lachlan McIlroy | 541d7d3 | 2007-10-11 17:34:33 +1000 | [diff] [blame] | 1977 | error = xfs_bmapi(NULL, ip, offset_fsb, 1, 0, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1978 | NULL, 0, &imap, &nimap, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | if (error || nimap < 1) |
| 1980 | break; |
| 1981 | ASSERT(imap.br_blockcount >= 1); |
| 1982 | ASSERT(imap.br_startoff == offset_fsb); |
| 1983 | lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1; |
| 1984 | if (lastoffset > endoff) |
| 1985 | lastoffset = endoff; |
| 1986 | if (imap.br_startblock == HOLESTARTBLOCK) |
| 1987 | continue; |
| 1988 | ASSERT(imap.br_startblock != DELAYSTARTBLOCK); |
| 1989 | if (imap.br_state == XFS_EXT_UNWRITTEN) |
| 1990 | continue; |
| 1991 | XFS_BUF_UNDONE(bp); |
| 1992 | XFS_BUF_UNWRITE(bp); |
| 1993 | XFS_BUF_READ(bp); |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1994 | XFS_BUF_SET_ADDR(bp, xfs_fsb_to_db(ip, imap.br_startblock)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | xfsbdstrat(mp, bp); |
Christoph Hellwig | 1a1a3e9 | 2010-10-06 18:41:18 +0000 | [diff] [blame] | 1996 | error = xfs_buf_iowait(bp); |
David Chinner | d64e31a | 2008-04-10 12:22:17 +1000 | [diff] [blame] | 1997 | if (error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1998 | xfs_ioerror_alert("xfs_zero_remaining_bytes(read)", |
| 1999 | mp, bp, XFS_BUF_ADDR(bp)); |
| 2000 | break; |
| 2001 | } |
Chandra Seetharaman | 6292604 | 2011-07-22 23:40:15 +0000 | [diff] [blame] | 2002 | memset(bp->b_addr + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | (offset - XFS_FSB_TO_B(mp, imap.br_startoff)), |
| 2004 | 0, lastoffset - offset + 1); |
| 2005 | XFS_BUF_UNDONE(bp); |
| 2006 | XFS_BUF_UNREAD(bp); |
| 2007 | XFS_BUF_WRITE(bp); |
| 2008 | xfsbdstrat(mp, bp); |
Christoph Hellwig | 1a1a3e9 | 2010-10-06 18:41:18 +0000 | [diff] [blame] | 2009 | error = xfs_buf_iowait(bp); |
David Chinner | d64e31a | 2008-04-10 12:22:17 +1000 | [diff] [blame] | 2010 | if (error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | xfs_ioerror_alert("xfs_zero_remaining_bytes(write)", |
| 2012 | mp, bp, XFS_BUF_ADDR(bp)); |
| 2013 | break; |
| 2014 | } |
| 2015 | } |
| 2016 | xfs_buf_free(bp); |
| 2017 | return error; |
| 2018 | } |
| 2019 | |
| 2020 | /* |
| 2021 | * xfs_free_file_space() |
| 2022 | * This routine frees disk space for the given file. |
| 2023 | * |
| 2024 | * This routine is only called by xfs_change_file_space |
| 2025 | * for an UNRESVSP type call. |
| 2026 | * |
| 2027 | * RETURNS: |
| 2028 | * 0 on success |
| 2029 | * errno on error |
| 2030 | * |
| 2031 | */ |
| 2032 | STATIC int |
| 2033 | xfs_free_file_space( |
| 2034 | xfs_inode_t *ip, |
| 2035 | xfs_off_t offset, |
| 2036 | xfs_off_t len, |
| 2037 | int attr_flags) |
| 2038 | { |
| 2039 | int committed; |
| 2040 | int done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | xfs_fileoff_t endoffset_fsb; |
| 2042 | int error; |
| 2043 | xfs_fsblock_t firstfsb; |
| 2044 | xfs_bmap_free_t free_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | xfs_bmbt_irec_t imap; |
| 2046 | xfs_off_t ioffset; |
| 2047 | xfs_extlen_t mod=0; |
| 2048 | xfs_mount_t *mp; |
| 2049 | int nimap; |
| 2050 | uint resblks; |
Nathan Scott | 673cdf5 | 2006-09-28 10:56:26 +1000 | [diff] [blame] | 2051 | uint rounding; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | int rt; |
| 2053 | xfs_fileoff_t startoffset_fsb; |
| 2054 | xfs_trans_t *tp; |
Dean Roehrich | 5fcbab3 | 2005-05-05 13:27:19 -0700 | [diff] [blame] | 2055 | int need_iolock = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2057 | mp = ip->i_mount; |
| 2058 | |
Christoph Hellwig | cca28fb | 2010-06-24 11:57:09 +1000 | [diff] [blame] | 2059 | trace_xfs_free_file_space(ip); |
Christoph Hellwig | bd5a876 | 2005-06-21 15:47:39 +1000 | [diff] [blame] | 2060 | |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 2061 | error = xfs_qm_dqattach(ip, 0); |
| 2062 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | return error; |
| 2064 | |
| 2065 | error = 0; |
| 2066 | if (len <= 0) /* if nothing being freed */ |
| 2067 | return error; |
Eric Sandeen | 71ddabb | 2007-11-23 16:29:42 +1100 | [diff] [blame] | 2068 | rt = XFS_IS_REALTIME_INODE(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | startoffset_fsb = XFS_B_TO_FSB(mp, offset); |
Christoph Hellwig | 288699f | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 2070 | endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | |
Christoph Hellwig | 0f285c8 | 2008-07-18 17:13:28 +1000 | [diff] [blame] | 2072 | if (attr_flags & XFS_ATTR_NOLOCK) |
Dean Roehrich | 5fcbab3 | 2005-05-05 13:27:19 -0700 | [diff] [blame] | 2073 | need_iolock = 0; |
Yingping Lu | 9fa8046 | 2006-03-22 12:44:35 +1100 | [diff] [blame] | 2074 | if (need_iolock) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | xfs_ilock(ip, XFS_IOLOCK_EXCL); |
Christoph Hellwig | 25e41b3 | 2008-12-03 12:20:39 +0100 | [diff] [blame] | 2076 | /* wait for the completion of any pending DIOs */ |
Christoph Hellwig | 4a06fd2 | 2011-08-23 08:28:13 +0000 | [diff] [blame^] | 2077 | inode_dio_wait(VFS_I(ip)); |
Yingping Lu | 9fa8046 | 2006-03-22 12:44:35 +1100 | [diff] [blame] | 2078 | } |
Dean Roehrich | 5fcbab3 | 2005-05-05 13:27:19 -0700 | [diff] [blame] | 2079 | |
Tim Shimmin | e6a4b37 | 2007-11-23 16:30:42 +1100 | [diff] [blame] | 2080 | rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | ioffset = offset & ~(rounding - 1); |
Christoph Hellwig | bd5a876 | 2005-06-21 15:47:39 +1000 | [diff] [blame] | 2082 | |
Christoph Hellwig | df80c93 | 2008-08-13 16:22:09 +1000 | [diff] [blame] | 2083 | if (VN_CACHED(VFS_I(ip)) != 0) { |
Tim Shimmin | e6a4b37 | 2007-11-23 16:30:42 +1100 | [diff] [blame] | 2084 | error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED); |
Lachlan McIlroy | d3cf209 | 2007-05-08 13:49:27 +1000 | [diff] [blame] | 2085 | if (error) |
| 2086 | goto out_unlock_iolock; |
Christoph Hellwig | bd5a876 | 2005-06-21 15:47:39 +1000 | [diff] [blame] | 2087 | } |
| 2088 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2089 | /* |
| 2090 | * Need to zero the stuff we're not freeing, on disk. |
Malcolm Parsons | 9da096f | 2009-03-29 09:55:42 +0200 | [diff] [blame] | 2091 | * If it's a realtime file & can't use unwritten extents then we |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2092 | * actually need to zero the extent edges. Otherwise xfs_bunmapi |
| 2093 | * will take care of it for us. |
| 2094 | */ |
Eric Sandeen | 6211870 | 2008-03-06 13:44:28 +1100 | [diff] [blame] | 2095 | if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | nimap = 1; |
Lachlan McIlroy | 541d7d3 | 2007-10-11 17:34:33 +1000 | [diff] [blame] | 2097 | error = xfs_bmapi(NULL, ip, startoffset_fsb, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 2098 | 1, 0, NULL, 0, &imap, &nimap, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | if (error) |
| 2100 | goto out_unlock_iolock; |
| 2101 | ASSERT(nimap == 0 || nimap == 1); |
| 2102 | if (nimap && imap.br_startblock != HOLESTARTBLOCK) { |
| 2103 | xfs_daddr_t block; |
| 2104 | |
| 2105 | ASSERT(imap.br_startblock != DELAYSTARTBLOCK); |
| 2106 | block = imap.br_startblock; |
| 2107 | mod = do_div(block, mp->m_sb.sb_rextsize); |
| 2108 | if (mod) |
| 2109 | startoffset_fsb += mp->m_sb.sb_rextsize - mod; |
| 2110 | } |
| 2111 | nimap = 1; |
Lachlan McIlroy | 541d7d3 | 2007-10-11 17:34:33 +1000 | [diff] [blame] | 2112 | error = xfs_bmapi(NULL, ip, endoffset_fsb - 1, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 2113 | 1, 0, NULL, 0, &imap, &nimap, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | if (error) |
| 2115 | goto out_unlock_iolock; |
| 2116 | ASSERT(nimap == 0 || nimap == 1); |
| 2117 | if (nimap && imap.br_startblock != HOLESTARTBLOCK) { |
| 2118 | ASSERT(imap.br_startblock != DELAYSTARTBLOCK); |
| 2119 | mod++; |
| 2120 | if (mod && (mod != mp->m_sb.sb_rextsize)) |
| 2121 | endoffset_fsb -= mod; |
| 2122 | } |
| 2123 | } |
| 2124 | if ((done = (endoffset_fsb <= startoffset_fsb))) |
| 2125 | /* |
| 2126 | * One contiguous piece to clear |
| 2127 | */ |
| 2128 | error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1); |
| 2129 | else { |
| 2130 | /* |
| 2131 | * Some full blocks, possibly two pieces to clear |
| 2132 | */ |
| 2133 | if (offset < XFS_FSB_TO_B(mp, startoffset_fsb)) |
| 2134 | error = xfs_zero_remaining_bytes(ip, offset, |
| 2135 | XFS_FSB_TO_B(mp, startoffset_fsb) - 1); |
| 2136 | if (!error && |
| 2137 | XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len) |
| 2138 | error = xfs_zero_remaining_bytes(ip, |
| 2139 | XFS_FSB_TO_B(mp, endoffset_fsb), |
| 2140 | offset + len - 1); |
| 2141 | } |
| 2142 | |
| 2143 | /* |
| 2144 | * free file space until done or until there is an error |
| 2145 | */ |
| 2146 | resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0); |
| 2147 | while (!error && !done) { |
| 2148 | |
| 2149 | /* |
David Chinner | 91ebecc | 2007-07-19 16:28:30 +1000 | [diff] [blame] | 2150 | * allocate and setup the transaction. Allow this |
| 2151 | * transaction to dip into the reserve blocks to ensure |
| 2152 | * the freeing of the space succeeds at ENOSPC. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2153 | */ |
| 2154 | tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT); |
David Chinner | 91ebecc | 2007-07-19 16:28:30 +1000 | [diff] [blame] | 2155 | tp->t_flags |= XFS_TRANS_RESERVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | error = xfs_trans_reserve(tp, |
| 2157 | resblks, |
| 2158 | XFS_WRITE_LOG_RES(mp), |
| 2159 | 0, |
| 2160 | XFS_TRANS_PERM_LOG_RES, |
| 2161 | XFS_WRITE_LOG_COUNT); |
| 2162 | |
| 2163 | /* |
| 2164 | * check for running out of space |
| 2165 | */ |
| 2166 | if (error) { |
| 2167 | /* |
| 2168 | * Free the transaction structure. |
| 2169 | */ |
| 2170 | ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp)); |
| 2171 | xfs_trans_cancel(tp, 0); |
| 2172 | break; |
| 2173 | } |
| 2174 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 2175 | error = xfs_trans_reserve_quota(tp, mp, |
| 2176 | ip->i_udquot, ip->i_gdquot, |
| 2177 | resblks, 0, XFS_QMOPT_RES_REGBLKS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | if (error) |
| 2179 | goto error1; |
| 2180 | |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 2181 | xfs_trans_ijoin(tp, ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | |
| 2183 | /* |
| 2184 | * issue the bunmapi() call to free the blocks |
| 2185 | */ |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 2186 | xfs_bmap_init(&free_list, &firstfsb); |
Lachlan McIlroy | 541d7d3 | 2007-10-11 17:34:33 +1000 | [diff] [blame] | 2187 | error = xfs_bunmapi(tp, ip, startoffset_fsb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | endoffset_fsb - startoffset_fsb, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 2189 | 0, 2, &firstfsb, &free_list, &done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2190 | if (error) { |
| 2191 | goto error0; |
| 2192 | } |
| 2193 | |
| 2194 | /* |
| 2195 | * complete the transaction |
| 2196 | */ |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 2197 | error = xfs_bmap_finish(&tp, &free_list, &committed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | if (error) { |
| 2199 | goto error0; |
| 2200 | } |
| 2201 | |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 2202 | error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 2204 | } |
| 2205 | |
| 2206 | out_unlock_iolock: |
| 2207 | if (need_iolock) |
| 2208 | xfs_iunlock(ip, XFS_IOLOCK_EXCL); |
| 2209 | return error; |
| 2210 | |
| 2211 | error0: |
| 2212 | xfs_bmap_cancel(&free_list); |
| 2213 | error1: |
| 2214 | xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT); |
| 2215 | xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) : |
| 2216 | XFS_ILOCK_EXCL); |
| 2217 | return error; |
| 2218 | } |
| 2219 | |
| 2220 | /* |
| 2221 | * xfs_change_file_space() |
| 2222 | * This routine allocates or frees disk space for the given file. |
| 2223 | * The user specified parameters are checked for alignment and size |
| 2224 | * limitations. |
| 2225 | * |
| 2226 | * RETURNS: |
| 2227 | * 0 on success |
| 2228 | * errno on error |
| 2229 | * |
| 2230 | */ |
| 2231 | int |
| 2232 | xfs_change_file_space( |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 2233 | xfs_inode_t *ip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | int cmd, |
| 2235 | xfs_flock64_t *bf, |
| 2236 | xfs_off_t offset, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | int attr_flags) |
| 2238 | { |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 2239 | xfs_mount_t *mp = ip->i_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | int clrprealloc; |
| 2241 | int error; |
| 2242 | xfs_fsize_t fsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2243 | int setprealloc; |
| 2244 | xfs_off_t startoffset; |
| 2245 | xfs_off_t llen; |
| 2246 | xfs_trans_t *tp; |
Christoph Hellwig | 0f285c8 | 2008-07-18 17:13:28 +1000 | [diff] [blame] | 2247 | struct iattr iattr; |
Dave Chinner | 4472235 | 2010-08-24 12:02:11 +1000 | [diff] [blame] | 2248 | int prealloc_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | |
Christoph Hellwig | 993386c1 | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 2250 | if (!S_ISREG(ip->i_d.di_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2251 | return XFS_ERROR(EINVAL); |
| 2252 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2253 | switch (bf->l_whence) { |
| 2254 | case 0: /*SEEK_SET*/ |
| 2255 | break; |
| 2256 | case 1: /*SEEK_CUR*/ |
| 2257 | bf->l_start += offset; |
| 2258 | break; |
| 2259 | case 2: /*SEEK_END*/ |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 2260 | bf->l_start += ip->i_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2261 | break; |
| 2262 | default: |
| 2263 | return XFS_ERROR(EINVAL); |
| 2264 | } |
| 2265 | |
| 2266 | llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len; |
| 2267 | |
| 2268 | if ( (bf->l_start < 0) |
| 2269 | || (bf->l_start > XFS_MAXIOFFSET(mp)) |
| 2270 | || (bf->l_start + llen < 0) |
| 2271 | || (bf->l_start + llen > XFS_MAXIOFFSET(mp))) |
| 2272 | return XFS_ERROR(EINVAL); |
| 2273 | |
| 2274 | bf->l_whence = 0; |
| 2275 | |
| 2276 | startoffset = bf->l_start; |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 2277 | fsize = ip->i_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2278 | |
| 2279 | /* |
| 2280 | * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve |
| 2281 | * file space. |
| 2282 | * These calls do NOT zero the data space allocated to the file, |
| 2283 | * nor do they change the file size. |
| 2284 | * |
| 2285 | * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file |
| 2286 | * space. |
| 2287 | * These calls cause the new file data to be zeroed and the file |
| 2288 | * size to be changed. |
| 2289 | */ |
| 2290 | setprealloc = clrprealloc = 0; |
Dave Chinner | 4472235 | 2010-08-24 12:02:11 +1000 | [diff] [blame] | 2291 | prealloc_type = XFS_BMAPI_PREALLOC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2292 | |
| 2293 | switch (cmd) { |
Dave Chinner | 4472235 | 2010-08-24 12:02:11 +1000 | [diff] [blame] | 2294 | case XFS_IOC_ZERO_RANGE: |
| 2295 | prealloc_type |= XFS_BMAPI_CONVERT; |
| 2296 | xfs_tosspages(ip, startoffset, startoffset + bf->l_len, 0); |
| 2297 | /* FALLTHRU */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | case XFS_IOC_RESVSP: |
| 2299 | case XFS_IOC_RESVSP64: |
| 2300 | error = xfs_alloc_file_space(ip, startoffset, bf->l_len, |
Dave Chinner | 4472235 | 2010-08-24 12:02:11 +1000 | [diff] [blame] | 2301 | prealloc_type, attr_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2302 | if (error) |
| 2303 | return error; |
| 2304 | setprealloc = 1; |
| 2305 | break; |
| 2306 | |
| 2307 | case XFS_IOC_UNRESVSP: |
| 2308 | case XFS_IOC_UNRESVSP64: |
| 2309 | if ((error = xfs_free_file_space(ip, startoffset, bf->l_len, |
| 2310 | attr_flags))) |
| 2311 | return error; |
| 2312 | break; |
| 2313 | |
| 2314 | case XFS_IOC_ALLOCSP: |
| 2315 | case XFS_IOC_ALLOCSP64: |
| 2316 | case XFS_IOC_FREESP: |
| 2317 | case XFS_IOC_FREESP64: |
| 2318 | if (startoffset > fsize) { |
| 2319 | error = xfs_alloc_file_space(ip, fsize, |
| 2320 | startoffset - fsize, 0, attr_flags); |
| 2321 | if (error) |
| 2322 | break; |
| 2323 | } |
| 2324 | |
Christoph Hellwig | 0f285c8 | 2008-07-18 17:13:28 +1000 | [diff] [blame] | 2325 | iattr.ia_valid = ATTR_SIZE; |
| 2326 | iattr.ia_size = startoffset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | |
Christoph Hellwig | c4ed424 | 2011-07-08 14:34:23 +0200 | [diff] [blame] | 2328 | error = xfs_setattr_size(ip, &iattr, attr_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2329 | |
| 2330 | if (error) |
| 2331 | return error; |
| 2332 | |
| 2333 | clrprealloc = 1; |
| 2334 | break; |
| 2335 | |
| 2336 | default: |
| 2337 | ASSERT(0); |
| 2338 | return XFS_ERROR(EINVAL); |
| 2339 | } |
| 2340 | |
| 2341 | /* |
| 2342 | * update the inode timestamp, mode, and prealloc flag bits |
| 2343 | */ |
| 2344 | tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID); |
| 2345 | |
| 2346 | if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp), |
| 2347 | 0, 0, 0))) { |
| 2348 | /* ASSERT(0); */ |
| 2349 | xfs_trans_cancel(tp, 0); |
| 2350 | return error; |
| 2351 | } |
| 2352 | |
| 2353 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 2354 | |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 2355 | xfs_trans_ijoin(tp, ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2356 | |
Christoph Hellwig | 0f285c8 | 2008-07-18 17:13:28 +1000 | [diff] [blame] | 2357 | if ((attr_flags & XFS_ATTR_DMI) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2358 | ip->i_d.di_mode &= ~S_ISUID; |
| 2359 | |
| 2360 | /* |
| 2361 | * Note that we don't have to worry about mandatory |
| 2362 | * file locking being disabled here because we only |
| 2363 | * clear the S_ISGID bit if the Group execute bit is |
| 2364 | * on, but if it was on then mandatory locking wouldn't |
| 2365 | * have been enabled. |
| 2366 | */ |
| 2367 | if (ip->i_d.di_mode & S_IXGRP) |
| 2368 | ip->i_d.di_mode &= ~S_ISGID; |
| 2369 | |
Dave Chinner | dcd79a1 | 2010-09-28 12:27:25 +1000 | [diff] [blame] | 2370 | xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2371 | } |
| 2372 | if (setprealloc) |
| 2373 | ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC; |
| 2374 | else if (clrprealloc) |
| 2375 | ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC; |
| 2376 | |
| 2377 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
Dave Chinner | 8287889 | 2011-03-26 09:13:08 +1100 | [diff] [blame] | 2378 | if (attr_flags & XFS_ATTR_SYNC) |
| 2379 | xfs_trans_set_sync(tp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 2381 | error = xfs_trans_commit(tp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2382 | |
| 2383 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 2384 | |
| 2385 | return error; |
| 2386 | } |