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