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