blob: 2ee1f49da0aa70eed076c03d4ebfef78f172acef [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * 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 Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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 Torvalds1da177e2005-04-16 15:20:36 -070017 */
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_log.h"
24#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
31#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_dinode.h"
33#include "xfs_inode.h"
34#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_ialloc.h"
37#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_bmap.h"
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020039#include "xfs_acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_attr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_quota.h"
43#include "xfs_utils.h"
Nathan Scotta844f452005-11-02 14:38:42 +110044#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_trans_space.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "xfs_log_priv.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100047#include "xfs_filestream.h"
Christoph Hellwig993386c2007-08-28 16:12:30 +100048#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000049#include "xfs_trace.h"
Dave Chinner33479e02012-10-08 21:56:11 +110050#include "xfs_icache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/*
Nathan Scott7d4fb402006-06-09 15:27:16 +100053 * 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 Hellwig804c83c2007-08-28 13:59:03 +100059STATIC int
60xfs_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 Chinner5c8ed202011-09-18 20:40:45 +000074 error = xfs_bmapi_read(ip, 0, XFS_B_TO_FSB(mp, pathlen), mval, &nmaps,
75 0);
Christoph Hellwig804c83c2007-08-28 13:59:03 +100076 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 Chinner611c9942012-04-23 15:59:07 +100083 bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt), 0);
Chandra Seetharamanac4d6882011-08-03 02:18:29 +000084 if (!bp)
85 return XFS_ERROR(ENOMEM);
Chandra Seetharamane5702802011-08-03 02:18:34 +000086 error = bp->b_error;
Christoph Hellwig804c83c2007-08-28 13:59:03 +100087 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +000088 xfs_buf_ioerror_alert(bp, __func__);
Christoph Hellwig804c83c2007-08-28 13:59:03 +100089 xfs_buf_relse(bp);
90 goto out;
91 }
92 if (pathlen < byte_cnt)
93 byte_cnt = pathlen;
94 pathlen -= byte_cnt;
95
Chandra Seetharaman62926042011-07-22 23:40:15 +000096 memcpy(link, bp->b_addr, byte_cnt);
Christoph Hellwig804c83c2007-08-28 13:59:03 +100097 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 Hellwig993386c2007-08-28 16:12:30 +1000107int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108xfs_readlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000109 xfs_inode_t *ip,
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000110 char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000112 xfs_mount_t *mp = ip->i_mount;
Carlos Maiolinob52a3602011-11-07 16:10:24 +0000113 xfs_fsize_t pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000116 trace_xfs_readlink(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 if (XFS_FORCED_SHUTDOWN(mp))
119 return XFS_ERROR(EIO);
120
121 xfs_ilock(ip, XFS_ILOCK_SHARED);
122
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000123 pathlen = ip->i_d.di_size;
124 if (!pathlen)
125 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Carlos Maiolinob52a3602011-11-07 16:10:24 +0000127 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 Kara9b025eb2012-01-11 18:52:10 +0000132 error = XFS_ERROR(EFSCORRUPTED);
133 goto out;
Carlos Maiolinob52a3602011-11-07 16:10:24 +0000134 }
135
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (ip->i_df.if_flags & XFS_IFINLINE) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000138 memcpy(link, ip->i_df.if_u1.if_data, pathlen);
139 link[pathlen] = '\0';
140 } else {
141 error = xfs_readlink_bmap(ip, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
143
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000144 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return error;
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/*
David Chinner92dfe8d2007-05-24 15:22:19 +1000150 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700153 */
Eric Sandeend96f8f82009-07-02 00:09:33 -0500154STATIC int
David Chinner92dfe8d2007-05-24 15:22:19 +1000155xfs_free_eofblocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 xfs_mount_t *mp,
David Chinner92dfe8d2007-05-24 15:22:19 +1000157 xfs_inode_t *ip,
Christoph Hellwig5a153222012-07-04 11:13:32 -0400158 bool need_iolock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
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 Hellwigce7ae1512011-12-18 20:00:11 +0000172 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_ISIZE(ip));
Dave Chinner32972382012-06-08 15:44:54 +1000173 last_fsb = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Kulikov Vasiliy3f348852010-07-20 17:54:28 +1000174 if (last_fsb <= end_fsb)
Jesper Juhl014c2542006-01-15 02:37:08 +0100175 return 0;
Kulikov Vasiliy3f348852010-07-20 17:54:28 +1000176 map_len = last_fsb - end_fsb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 nimaps = 1;
179 xfs_ilock(ip, XFS_ILOCK_SHARED);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000180 error = xfs_bmapi_read(ip, end_fsb, map_len, &imap, &nimaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 xfs_iunlock(ip, XFS_ILOCK_SHARED);
182
183 if (!error && (nimaps != 0) &&
Yingping Lu68bdb6e2006-01-11 15:38:31 +1100184 (imap.br_startblock != HOLESTARTBLOCK ||
185 ip->i_delayed_blks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 /*
187 * Attach the dquots to the inode up front.
188 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200189 error = xfs_qm_dqattach(ip, 0);
190 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100191 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
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 Hellwig5a153222012-07-04 11:13:32 -0400200 if (need_iolock) {
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000201 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
202 xfs_trans_cancel(tp, 0);
203 return 0;
204 }
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
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 Hellwig5a153222012-07-04 11:13:32 -0400214 if (need_iolock)
215 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100216 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218
219 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +0000220 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000222 /*
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 Hellwigce7ae1512011-12-18 20:00:11 +0000229 XFS_ISIZE(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (error) {
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200231 /*
232 * If we get an error at this point we simply don't
233 * bother truncating the file.
234 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 xfs_trans_cancel(tp,
236 (XFS_TRANS_RELEASE_LOG_RES |
237 XFS_TRANS_ABORT));
238 } else {
239 error = xfs_trans_commit(tp,
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000240 XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
Christoph Hellwig5a153222012-07-04 11:13:32 -0400242
243 xfs_iunlock(ip, XFS_ILOCK_EXCL);
244 if (need_iolock)
245 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100247 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
250/*
251 * Free a symlink that has blocks associated with it.
252 */
253STATIC int
254xfs_inactive_symlink_rmt(
255 xfs_inode_t *ip,
256 xfs_trans_t **tpp)
257{
258 xfs_buf_t *bp;
259 int committed;
260 int done;
261 int error;
262 xfs_fsblock_t first_block;
263 xfs_bmap_free_t free_list;
264 int i;
265 xfs_mount_t *mp;
266 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
267 int nmaps;
268 xfs_trans_t *ntp;
269 int size;
270 xfs_trans_t *tp;
271
272 tp = *tpp;
273 mp = ip->i_mount;
274 ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip));
275 /*
276 * We're freeing a symlink that has some
277 * blocks allocated to it. Free the
278 * blocks here. We know that we've got
279 * either 1 or 2 extents and that we can
280 * free them all in one bunmapi call.
281 */
282 ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /*
285 * Lock the inode, fix the size, and join it to the transaction.
286 * Hold it so in the normal path, we still have it locked for
287 * the second transaction. In the error paths we need it
288 * held so the cancel won't rele it, see below.
289 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 size = (int)ip->i_d.di_size;
291 ip->i_d.di_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
293 /*
294 * Find the block(s) so we can inval and unmap them.
295 */
296 done = 0;
Eric Sandeen9d87c312009-01-14 23:22:07 -0600297 xfs_bmap_init(&free_list, &first_block);
Tobias Klausere8c96f82006-03-24 03:15:34 -0800298 nmaps = ARRAY_SIZE(mval);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000299 error = xfs_bmapi_read(ip, 0, XFS_B_TO_FSB(mp, size),
300 mval, &nmaps, 0);
301 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 goto error0;
303 /*
304 * Invalidate the block(s).
305 */
306 for (i = 0; i < nmaps; i++) {
307 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
308 XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
309 XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000310 if (!bp) {
311 error = ENOMEM;
312 goto error1;
313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 xfs_trans_binval(tp, bp);
315 }
316 /*
317 * Unmap the dead block(s) to the free_list.
318 */
319 if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000320 &first_block, &free_list, &done)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 goto error1;
322 ASSERT(done);
323 /*
324 * Commit the first transaction. This logs the EFI and the inode.
325 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100326 if ((error = xfs_bmap_finish(&tp, &free_list, &committed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 goto error1;
328 /*
329 * The transaction must have been committed, since there were
330 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
331 * The new tp has the extent freeing and EFDs.
332 */
333 ASSERT(committed);
334 /*
335 * The first xact was committed, so add the inode to the new one.
336 * Mark it dirty so it will be logged and moved forward in the log as
337 * part of every commit.
338 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000339 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
341 /*
342 * Get a new, empty transaction to return to our caller.
343 */
344 ntp = xfs_trans_dup(tp);
345 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000346 * Commit the transaction containing extent freeing and EFDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 * If we get an error on the commit here or on the reserve below,
348 * we need to unlock the inode since the new transaction doesn't
349 * have the inode attached.
350 */
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000351 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 tp = ntp;
353 if (error) {
354 ASSERT(XFS_FORCED_SHUTDOWN(mp));
355 goto error0;
356 }
357 /*
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100358 * transaction commit worked ok so we can drop the extra ticket
359 * reference that we gained in xfs_trans_dup()
360 */
361 xfs_log_ticket_put(tp->t_ticket);
362
363 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 * Remove the memory for extent descriptions (just bookkeeping).
365 */
366 if (ip->i_df.if_bytes)
367 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
368 ASSERT(ip->i_df.if_bytes == 0);
369 /*
370 * Put an itruncate log reservation in the new transaction
371 * for our caller.
372 */
373 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
374 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
375 ASSERT(XFS_FORCED_SHUTDOWN(mp));
376 goto error0;
377 }
Christoph Hellwigb373e982012-07-04 11:13:29 -0400378
379 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 *tpp = tp;
381 return 0;
382
383 error1:
384 xfs_bmap_cancel(&free_list);
385 error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Christoph Hellwig993386c2007-08-28 16:12:30 +1000389int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390xfs_release(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000391 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Christoph Hellwig993386c2007-08-28 16:12:30 +1000393 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 int error;
395
Christoph Hellwig42173f62008-04-22 17:33:25 +1000396 if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000400 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return 0;
402
David Chinner2a82b8b2007-07-11 11:09:12 +1000403 if (!XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000404 int truncated;
405
David Chinner2a82b8b2007-07-11 11:09:12 +1000406 /*
407 * If we are using filestreams, and we have an unlinked
408 * file that we are processing the last close on, then nothing
409 * will be able to reopen and write to this file. Purge this
410 * inode from the filestreams cache so that it doesn't delay
411 * teardown of the inode.
412 */
413 if ((ip->i_d.di_nlink == 0) && xfs_inode_is_filestream(ip))
414 xfs_filestream_deassociate(ip);
415
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000416 /*
417 * If we previously truncated this file and removed old data
418 * in the process, we want to initiate "early" writeout on
419 * the last close. This is an attempt to combat the notorious
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300420 * NULL files problem which is particularly noticeable from a
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000421 * truncate down, buffered (re-)write (delalloc), followed by
422 * a crash. What we are effectively doing here is
423 * significantly reducing the time window where we'd otherwise
424 * be exposed to that problem.
425 */
Christoph Hellwig09262b42007-08-29 11:44:50 +1000426 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
Dave Chinnerdf4368a2011-06-23 01:35:00 +0000427 if (truncated) {
428 xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE);
429 if (VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0)
430 xfs_flush_pages(ip, 0, -1, XBF_ASYNC, FI_NONE);
431 }
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000432 }
433
Dave Chinner6e857562010-12-23 12:02:31 +1100434 if (ip->i_d.di_nlink == 0)
435 return 0;
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000436
Al Viroabbede12011-07-26 02:31:30 -0400437 if ((S_ISREG(ip->i_d.di_mode) &&
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000438 (VFS_I(ip)->i_size > 0 ||
439 (VN_CACHED(VFS_I(ip)) > 0 || ip->i_delayed_blks > 0)) &&
Dave Chinner6e857562010-12-23 12:02:31 +1100440 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
441 (!(ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)))) {
442
443 /*
444 * If we can't get the iolock just skip truncating the blocks
445 * past EOF because we could deadlock with the mmap_sem
446 * otherwise. We'll get another chance to drop them once the
447 * last reference to the inode is dropped, so we'll never leak
448 * blocks permanently.
449 *
450 * Further, check if the inode is being opened, written and
451 * closed frequently and we have delayed allocation blocks
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300452 * outstanding (e.g. streaming writes from the NFS server),
Dave Chinner6e857562010-12-23 12:02:31 +1100453 * truncating the blocks past EOF will cause fragmentation to
454 * occur.
455 *
456 * In this case don't do the truncation, either, but we have to
457 * be careful how we detect this case. Blocks beyond EOF show
458 * up as i_delayed_blks even when the inode is clean, so we
459 * need to truncate them away first before checking for a dirty
460 * release. Hence on the first dirty close we will still remove
461 * the speculative allocation, but after that we will leave it
462 * in place.
463 */
464 if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE))
465 return 0;
466
Christoph Hellwig5a153222012-07-04 11:13:32 -0400467 error = xfs_free_eofblocks(mp, ip, true);
Dave Chinner6e857562010-12-23 12:02:31 +1100468 if (error)
469 return error;
470
471 /* delalloc blocks after truncation means it really is dirty */
472 if (ip->i_delayed_blks)
473 xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return 0;
476}
477
478/*
479 * xfs_inactive
480 *
481 * This is called when the vnode reference count for the vnode
482 * goes to zero. If the file has been unlinked, then it must
483 * now be truncated. Also, we clear all of the read-ahead state
484 * kept for the inode here since the file is now closed.
485 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000486int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487xfs_inactive(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000488 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000490 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 xfs_fsblock_t first_block;
492 int committed;
493 xfs_trans_t *tp;
494 xfs_mount_t *mp;
495 int error;
Christoph Hellwigb373e982012-07-04 11:13:29 -0400496 int truncate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /*
499 * If the inode is already free, then there can be nothing
500 * to clean up here.
501 */
Christoph Hellwigcb4c8cc2009-03-16 08:25:25 +0100502 if (ip->i_d.di_mode == 0 || is_bad_inode(VFS_I(ip))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 ASSERT(ip->i_df.if_real_bytes == 0);
504 ASSERT(ip->i_df.if_broot_bytes == 0);
505 return VN_INACTIVE_CACHE;
506 }
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 mp = ip->i_mount;
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 error = 0;
511
512 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000513 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 goto out;
515
516 if (ip->i_d.di_nlink != 0) {
Al Viroabbede12011-07-26 02:31:30 -0400517 if ((S_ISREG(ip->i_d.di_mode) &&
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000518 (VFS_I(ip)->i_size > 0 ||
519 (VN_CACHED(VFS_I(ip)) > 0 || ip->i_delayed_blks > 0)) &&
520 (ip->i_df.if_flags & XFS_IFEXTENTS) &&
521 (!(ip->i_d.di_flags &
Nathan Scottdd9f4382006-01-11 15:28:28 +1100522 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)) ||
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000523 ip->i_delayed_blks != 0))) {
Christoph Hellwig5a153222012-07-04 11:13:32 -0400524 error = xfs_free_eofblocks(mp, ip, false);
David Chinner92dfe8d2007-05-24 15:22:19 +1000525 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100526 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528 goto out;
529 }
530
Christoph Hellwigb373e982012-07-04 11:13:29 -0400531 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 Torvalds1da177e2005-04-16 15:20:36 -0700535
Christoph Hellwig7d095252009-06-08 15:33:32 +0200536 error = xfs_qm_dqattach(ip, 0);
537 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100538 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400541 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 Torvalds1da177e2005-04-16 15:20:36 -0700553
Christoph Hellwig0b561852012-07-04 11:13:31 -0400554 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400555 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 Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Christoph Hellwigb373e982012-07-04 11:13:29 -0400570 } else if (truncate) {
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000571 ip->i_d.di_size = 0;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000572 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
573
574 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400575 if (error)
576 goto out_cancel;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000577
578 ASSERT(ip->i_d.di_nextents == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
580
581 /*
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400582 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700585 * because we can't use it for xfs_attr_inactive().
586 */
587 if (ip->i_d.di_anextents > 0) {
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400588 ASSERT(ip->i_d.di_forkoff != 0);
589
590 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400591 if (error)
Christoph Hellwig0b561852012-07-04 11:13:31 -0400592 goto out_unlock;
593
594 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400595
596 error = xfs_attr_inactive(ip);
597 if (error)
Christoph Hellwig0b561852012-07-04 11:13:31 -0400598 goto out;
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400599
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 Hellwig0b561852012-07-04 11:13:31 -0400605 if (error) {
606 xfs_trans_cancel(tp, 0);
607 goto out;
608 }
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400609
610 xfs_ilock(ip, XFS_ILOCK_EXCL);
611 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400614 if (ip->i_afp)
615 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
616
617 ASSERT(ip->i_d.di_anextents == 0);
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /*
620 * Free the inode.
621 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600622 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 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 Chinner0b932cc2011-03-07 10:08:35 +1100631 xfs_notice(mp, "%s: xfs_ifree returned error %d",
632 __func__, error);
Nathan Scott7d04a332006-06-09 14:58:38 +1000633 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
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 Hellwig7d095252009-06-08 15:33:32 +0200640 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 /*
David Chinner78e9da72008-04-10 12:24:17 +1000643 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700646 */
David Chinner78e9da72008-04-10 12:24:17 +1000647 error = xfs_bmap_finish(&tp, &free_list, &committed);
648 if (error)
Dave Chinner53487782011-03-07 10:05:35 +1100649 xfs_notice(mp, "%s: xfs_bmap_finish returned error %d",
650 __func__, error);
David Chinner78e9da72008-04-10 12:24:17 +1000651 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
652 if (error)
Dave Chinner53487782011-03-07 10:05:35 +1100653 xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
654 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /*
658 * Release the dquots held by inode, if any.
659 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200660 xfs_qm_dqdetach(ip);
Christoph Hellwig0b561852012-07-04 11:13:31 -0400661out_unlock:
662 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400663out:
664 return VN_INACTIVE_CACHE;
665out_cancel:
666 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
Christoph Hellwig0b561852012-07-04 11:13:31 -0400667 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Barry Naujok384f3ce2008-05-21 16:58:22 +1000670/*
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 Hellwig993386c2007-08-28 16:12:30 +1000676int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677xfs_lookup(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000678 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000679 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000680 xfs_inode_t **ipp,
681 struct xfs_name *ci_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000683 xfs_ino_t inum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 int error;
685 uint lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000687 trace_xfs_lookup(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
690 return XFS_ERROR(EIO);
691
692 lock_mode = xfs_ilock_map_shared(dp);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000693 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 xfs_iunlock_map_shared(dp, lock_mode);
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000695
696 if (error)
697 goto out;
698
Dave Chinner7b6259e2010-06-24 11:35:17 +1000699 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000700 if (error)
Barry Naujok384f3ce2008-05-21 16:58:22 +1000701 goto out_free_name;
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000702
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000703 return 0;
704
Barry Naujok384f3ce2008-05-21 16:58:22 +1000705out_free_name:
706 if (ci_name)
707 kmem_free(ci_name->name);
708out:
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000709 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return error;
711}
712
Christoph Hellwig993386c2007-08-28 16:12:30 +1000713int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714xfs_create(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000715 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000716 struct xfs_name *name,
Al Viro576b1d62011-07-26 02:50:15 -0400717 umode_t mode,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000718 xfs_dev_t rdev,
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000719 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100721 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 Naujok556b8b12008-04-10 12:22:07 +1000725 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 xfs_bmap_free_t free_list;
727 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +1000728 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 uint cancel_flags;
730 int committed;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000731 prid_t prid;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100732 struct xfs_dquot *udqp = NULL;
733 struct xfs_dquot *gdqp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 uint resblks;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100735 uint log_res;
736 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000738 trace_xfs_create(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100740 if (XFS_FORCED_SHUTDOWN(mp))
741 return XFS_ERROR(EIO);
742
Nathan Scott365ca832005-06-21 15:39:12 +1000743 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000744 prid = xfs_get_projid(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 else
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000746 prid = XFS_PROJID_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 /*
749 * Make sure that we have allocated dquot(s) on disk.
750 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200751 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100752 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000754 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100756 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 Torvalds1da177e2005-04-16 15:20:36 -0700768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 /*
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 Hellwig517b5e82009-02-09 08:38:02 +0100777 error = xfs_trans_reserve(tp, resblks, log_res, 0,
778 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (error == ENOSPC) {
Dave Chinner153fec42009-04-06 18:48:30 +0200780 /* flush outstanding delalloc blocks and retry */
Dave Chinner9aa05002012-10-08 21:56:04 +1100781 xfs_flush_inodes(mp);
Christoph Hellwig4734d402009-09-09 18:19:02 -0500782 error = xfs_trans_reserve(tp, resblks, log_res, 0,
783 XFS_TRANS_PERM_LOG_RES, log_count);
Dave Chinner153fec42009-04-06 18:48:30 +0200784 }
785 if (error == ENOSPC) {
786 /* No space at all so try a "no-allocation" reservation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 resblks = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100788 error = xfs_trans_reserve(tp, 0, log_res, 0,
789 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791 if (error) {
792 cancel_flags = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100793 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000796 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +1000797 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100799 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 /*
802 * Reserve disk quota and the inode.
803 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200804 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100806 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Barry Naujok556b8b12008-04-10 12:22:07 +1000808 error = xfs_dir_canenter(tp, dp, name, resblks);
809 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100810 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 Hellwig6c77b0e2010-10-06 18:41:17 +0000817 error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev,
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100818 prid, resblks > 0, &ip, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (error) {
820 if (error == ENOSPC)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100821 goto out_trans_cancel;
822 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 /*
Christoph Hellwig993386c2007-08-28 16:12:30 +1000826 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700831 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000832 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +1000833 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Barry Naujok556b8b12008-04-10 12:22:07 +1000835 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000836 &first_block, &free_list, resblks ?
837 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (error) {
839 ASSERT(error != ENOSPC);
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100840 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000842 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
844
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100845 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 Torvalds1da177e2005-04-16 15:20:36 -0700855 /*
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 Hellwig517b5e82009-02-09 08:38:02 +0100860 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /*
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 Hellwig7d095252009-06-08 15:33:32 +0200868 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100870 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100871 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000872 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000874 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000875 if (error)
876 goto out_release_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Christoph Hellwig7d095252009-06-08 15:33:32 +0200878 xfs_qm_dqrele(udqp);
879 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100881 *ipp = ip;
Christoph Hellwig288699f2010-06-23 18:11:15 +1000882 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100884 out_bmap_cancel:
885 xfs_bmap_cancel(&free_list);
886 out_trans_abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100888 out_trans_cancel:
889 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000890 out_release_inode:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 /*
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 Hellwigec3ba852011-02-13 13:26:42 +0000896 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 Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
907#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908int xfs_locked_n;
909int xfs_small_retries;
910int xfs_middle_retries;
911int xfs_lots_retries;
912int xfs_lock_delays;
913#endif
914
915/*
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000916 * Bump the subclass so xfs_lock_inodes() acquires each lock with
917 * a different value
918 */
919static inline int
920xfs_lock_inumorder(int lock_mode, int subclass)
921{
922 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +1000923 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000924 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +1000925 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000926
927 return lock_mode;
928}
929
930/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 * 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 */
941void
942xfs_lock_inodes(
943 xfs_inode_t **ips,
944 int inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 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 Hellwigcfa853e2008-04-22 17:34:06 +1000952 try_lock = 0;
953 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955again:
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 McIlroyf7c66ce2007-05-08 13:50:19 +1000991 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 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 McIlroyf7c66ce2007-05-08 13:50:19 +10001026 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 }
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 Chinnerf9114eb2008-09-17 16:51:21 +10001041/*
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 Hellwige1cccd92008-08-13 16:18:07 +10001047void
1048xfs_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 Chinnerf9114eb2008-09-17 16:51:21 +10001057 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
1058 ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0);
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001059 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 Hellwig993386c2007-08-28 16:12:30 +10001088int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089xfs_remove(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001090 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001091 struct xfs_name *name,
1092 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001094 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 xfs_trans_t *tp = NULL;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001096 int is_dir = S_ISDIR(ip->i_d.di_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 int error = 0;
1098 xfs_bmap_free_t free_list;
1099 xfs_fsblock_t first_block;
1100 int cancel_flags;
1101 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 int link_zero;
1103 uint resblks;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001104 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001106 trace_xfs_remove(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (XFS_FORCED_SHUTDOWN(mp))
1109 return XFS_ERROR(EIO);
1110
Christoph Hellwig7d095252009-06-08 15:33:32 +02001111 error = xfs_qm_dqattach(dp, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001112 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Christoph Hellwig7d095252009-06-08 15:33:32 +02001115 error = xfs_qm_dqattach(ip, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001116 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 Torvalds1da177e2005-04-16 15:20:36 -07001126 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 /*
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 Hellwig8f112e32008-06-23 13:25:17 +10001139 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (error == ENOSPC) {
1141 resblks = 0;
1142 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001143 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145 if (error) {
1146 ASSERT(error != ENOSPC);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001147 cancel_flags = 0;
1148 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
1150
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001151 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Christoph Hellwigddc34152011-09-19 15:00:54 +00001153 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1154 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 /*
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001157 * 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 Sandeen9d87c312009-01-14 23:22:07 -06001171 xfs_bmap_init(&free_list, &first_block);
Barry Naujok556b8b12008-04-10 12:22:07 +10001172 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
Christoph Hellwigd4377d82008-04-22 17:33:46 +10001173 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (error) {
1175 ASSERT(error != ENOENT);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001176 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001178 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001180 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 Hellwig2b7035f2008-10-30 17:55:18 +11001189 * Drop the "." link from ip to self.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001190 */
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 Chinner26c52952008-11-28 14:23:37 +11001197 * inode here. For a directory this is done implicitly
1198 * by the xfs_droplink call for the ".." entry.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001199 */
1200 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
1202
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001203 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001204 * Drop the link from dp to ip.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001205 */
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 Torvalds1da177e2005-04-16 15:20:36 -07001212 * we are in the transaction.
1213 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001214 link_zero = (ip->i_d.di_nlink == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 * If this is a synchronous mount, make sure that the
1218 * remove transaction goes to disk before returning to
1219 * the user.
1220 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001221 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001224 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001225 if (error)
1226 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001228 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig5df78e72008-04-22 17:34:24 +10001229 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 /*
David Chinner2a82b8b2007-07-11 11:09:12 +10001233 * 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 Hellwig8f112e32008-06-23 13:25:17 +10001238 if (!is_dir && link_zero && xfs_inode_is_filestream(ip))
David Chinner2a82b8b2007-07-11 11:09:12 +10001239 xfs_filestream_deassociate(ip);
1240
Christoph Hellwig288699f2010-06-23 18:11:15 +10001241 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001243 out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 xfs_bmap_cancel(&free_list);
1245 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001246 out_trans_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001248 std_return:
1249 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251
Christoph Hellwig993386c2007-08-28 16:12:30 +10001252int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253xfs_link(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001254 xfs_inode_t *tdp,
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001255 xfs_inode_t *sip,
Barry Naujok556b8b12008-04-10 12:22:07 +10001256 struct xfs_name *target_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001258 xfs_mount_t *mp = tdp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 int error;
1261 xfs_bmap_free_t free_list;
1262 xfs_fsblock_t first_block;
1263 int cancel_flags;
1264 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 int resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001267 trace_xfs_link(tdp, target_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001269 ASSERT(!S_ISDIR(sip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 if (XFS_FORCED_SHUTDOWN(mp))
1272 return XFS_ERROR(EIO);
1273
Christoph Hellwig7d095252009-06-08 15:33:32 +02001274 error = xfs_qm_dqattach(sip, 0);
Christoph Hellwigcb3f35b2009-02-04 09:34:20 +01001275 if (error)
1276 goto std_return;
1277
Christoph Hellwig7d095252009-06-08 15:33:32 +02001278 error = xfs_qm_dqattach(tdp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 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 Naujok556b8b12008-04-10 12:22:07 +10001284 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 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 Hellwige1cccd92008-08-13 16:18:07 +10001297 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Christoph Hellwigddc34152011-09-19 15:00:54 +00001299 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
1300 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302 /*
Nathan Scott365ca832005-06-21 15:39:12 +10001303 * 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?kiewicz67430992010-09-26 06:10:18 +00001308 (xfs_get_projid(tdp) != xfs_get_projid(sip)))) {
Nathan Scottb1ecdda2006-05-08 19:51:42 +10001309 error = XFS_ERROR(EXDEV);
Nathan Scott365ca832005-06-21 15:39:12 +10001310 goto error_return;
1311 }
1312
Barry Naujok556b8b12008-04-10 12:22:07 +10001313 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
1314 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 goto error_return;
1316
Eric Sandeen9d87c312009-01-14 23:22:07 -06001317 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Barry Naujok556b8b12008-04-10 12:22:07 +10001319 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
1320 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (error)
1322 goto abort_return;
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001323 xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1325
1326 error = xfs_bumplink(tp, sip);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001327 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
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 Sandeenf7c99b62007-02-10 18:37:16 +11001339 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (error) {
1341 xfs_bmap_cancel(&free_list);
1342 goto abort_return;
1343 }
1344
Christoph Hellwig288699f2010-06-23 18:11:15 +10001345 return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 abort_return:
1348 cancel_flags |= XFS_TRANS_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 error_return:
1350 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001351 std_return:
1352 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001354
Christoph Hellwig993386c2007-08-28 16:12:30 +10001355int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356xfs_symlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001357 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001358 struct xfs_name *link_name,
1359 const char *target_path,
Al Viro576b1d62011-07-26 02:50:15 -04001360 umode_t mode,
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001361 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001363 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 xfs_inode_t *ip;
1366 int error;
1367 int pathlen;
1368 xfs_bmap_free_t free_list;
1369 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001370 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 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 Naujok556b8b12008-04-10 12:22:07 +10001378 const char *cur_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 int byte_cnt;
1380 int n;
1381 xfs_buf_t *bp;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001382 prid_t prid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 struct xfs_dquot *udqp, *gdqp;
1384 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Christoph Hellwig3937be52008-03-06 13:46:19 +11001386 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 error = 0;
1388 ip = NULL;
1389 tp = NULL;
1390
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001391 trace_xfs_symlink(dp, link_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 if (XFS_FORCED_SHUTDOWN(mp))
1394 return XFS_ERROR(EIO);
1395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 /*
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 Torvalds1da177e2005-04-16 15:20:36 -07001402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10001404 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001405 prid = xfs_get_projid(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 else
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001407 prid = XFS_PROJID_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 /*
1410 * Make sure that we have allocated dquot(s) on disk.
1411 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001412 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 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 Naujok556b8b12008-04-10 12:22:07 +10001427 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 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 Torvalds1da177e2005-04-16 15:20:36 -07001437 goto error_return;
1438 }
1439
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001440 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001441 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
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 Hellwig7d095252009-06-08 15:33:32 +02001454 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (error)
1456 goto error_return;
1457
1458 /*
1459 * Check for ability to enter directory entry, if no space reserved.
1460 */
Barry Naujok556b8b12008-04-10 12:22:07 +10001461 error = xfs_dir_canenter(tp, dp, link_name, resblks);
1462 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 goto error_return;
1464 /*
1465 * Initialize the bmap freelist prior to calling either
1466 * bmapi or the directory create code.
1467 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06001468 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 /*
1471 * Allocate an inode for the symlink.
1472 */
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001473 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT), 1, 0,
1474 prid, resblks > 0, &ip, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 if (error) {
1476 if (error == ENOSPC)
1477 goto error_return;
1478 goto error1;
1479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Christoph Hellwig993386c2007-08-28 16:12:30 +10001481 /*
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 Hellwigddc34152011-09-19 15:00:54 +00001486 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001487 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 /*
1490 * Also attach the dquot(s) to it, if applicable.
1491 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001492 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
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 Chinnerc0dc7822011-09-18 20:40:52 +00001517 error = xfs_bmapi_write(tp, ip, first_fsb, fs_blocks,
1518 XFS_BMAPI_METADATA, &first_block, resblks,
1519 mval, &nmaps, &free_list);
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001520 if (error)
1521 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
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 Seetharaman2a30f36d2011-09-20 13:56:55 +00001534 if (!bp) {
1535 error = ENOMEM;
1536 goto error2;
1537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (pathlen < byte_cnt) {
1539 byte_cnt = pathlen;
1540 }
1541 pathlen -= byte_cnt;
1542
Chandra Seetharaman62926042011-07-22 23:40:15 +00001543 memcpy(bp->b_addr, cur_chunk, byte_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 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 Naujok556b8b12008-04-10 12:22:07 +10001553 error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
1554 &first_block, &free_list, resblks);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001555 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001556 goto error2;
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001557 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1559
1560 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 * 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 Sandeenf7c99b62007-02-10 18:37:16 +11001569 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 if (error) {
1571 goto error2;
1572 }
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001573 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001574 xfs_qm_dqrele(udqp);
1575 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Christoph Hellwig288699f2010-06-23 18:11:15 +10001577 *ipp = ip;
1578 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
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 Hellwig7d095252009-06-08 15:33:32 +02001587 xfs_qm_dqrele(udqp);
1588 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Christoph Hellwig993386c2007-08-28 16:12:30 +10001590 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001592 std_return:
1593 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596int
Christoph Hellwig993386c2007-08-28 16:12:30 +10001597xfs_set_dmattrs(
1598 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 u_int evmask,
Christoph Hellwig993386c2007-08-28 16:12:30 +10001600 u_int16_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001602 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 int error;
1605
1606 if (!capable(CAP_SYS_ADMIN))
1607 return XFS_ERROR(EPERM);
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 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 Hellwigddc34152011-09-19 15:00:54 +00001619 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Christoph Hellwig613d7042007-10-11 17:44:08 +10001621 ip->i_d.di_dmevmask = evmask;
1622 ip->i_d.di_dmstate = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001625 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627 return error;
1628}
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630/*
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 Hellwigba0f32d2005-06-21 15:36:52 +10001649STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650xfs_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 Scottdd9f4382006-01-11 15:28:28 +11001657 xfs_mount_t *mp = ip->i_mount;
1658 xfs_off_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 xfs_filblks_t allocated_fsb;
1660 xfs_filblks_t allocatesize_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001661 xfs_extlen_t extsz, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 xfs_fileoff_t startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001663 xfs_fsblock_t firstfsb;
1664 int nimaps;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001665 int quota_flag;
1666 int rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 xfs_trans_t *tp;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001668 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 Torvalds1da177e2005-04-16 15:20:36 -07001673
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001674 trace_xfs_alloc_file_space(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 if (XFS_FORCED_SHUTDOWN(mp))
1677 return XFS_ERROR(EIO);
1678
Christoph Hellwig7d095252009-06-08 15:33:32 +02001679 error = xfs_qm_dqattach(ip, 0);
1680 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 return error;
1682
1683 if (len <= 0)
1684 return XFS_ERROR(EINVAL);
1685
David Chinner957d0eb2007-06-18 16:50:37 +10001686 rt = XFS_IS_REALTIME_INODE(ip);
1687 extsz = xfs_get_extsz_hint(ip);
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 count = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 imapp = &imaps[0];
Nathan Scottdd9f4382006-01-11 15:28:28 +11001691 nimaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
1693 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001696 * Allocate file space until done or until there is an error
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 while (allocatesize_fsb && !error) {
Nathan Scottdd9f4382006-01-11 15:28:28 +11001699 xfs_fileoff_t s, e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Nathan Scottdd9f4382006-01-11 15:28:28 +11001701 /*
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11001702 * Determine space reservations for data/realtime.
Nathan Scottdd9f4382006-01-11 15:28:28 +11001703 */
1704 if (unlikely(extsz)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 s = startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001706 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 Torvalds1da177e2005-04-16 15:20:36 -07001713 } else {
Nathan Scottdd9f4382006-01-11 15:28:28 +11001714 s = 0;
1715 e = allocatesize_fsb;
1716 }
1717
Dave Chinner72656c42010-09-03 12:19:33 +10001718 /*
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 Scottdd9f4382006-01-11 15:28:28 +11001726 if (unlikely(rt)) {
Dave Chinner72656c42010-09-03 12:19:33 +10001727 resrtextents = qblocks = resblks;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001728 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 Chinner72656c42010-09-03 12:19:33 +10001733 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001734 quota_flag = XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 }
1736
1737 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001738 * Allocate and setup the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 */
1740 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001741 error = xfs_trans_reserve(tp, resblks,
1742 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 XFS_TRANS_PERM_LOG_RES,
1744 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001746 * Check for running out of space
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 */
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 Hellwig7d095252009-06-08 15:33:32 +02001757 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
1758 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 if (error)
1760 goto error1;
1761
Christoph Hellwigddc34152011-09-19 15:00:54 +00001762 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Eric Sandeen9d87c312009-01-14 23:22:07 -06001764 xfs_bmap_init(&free_list, &firstfsb);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00001765 error = xfs_bmapi_write(tp, ip, startoffset_fsb,
1766 allocatesize_fsb, alloc_type, &firstfsb,
1767 0, imapp, &nimaps, &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 if (error) {
1769 goto error0;
1770 }
1771
1772 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001773 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001775 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 if (error) {
1777 goto error0;
1778 }
1779
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001780 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1782 if (error) {
1783 break;
1784 }
1785
1786 allocated_fsb = imapp->br_blockcount;
1787
Nathan Scottdd9f4382006-01-11 15:28:28 +11001788 if (nimaps == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 error = XFS_ERROR(ENOSPC);
1790 break;
1791 }
1792
1793 startoffset_fsb += allocated_fsb;
1794 allocatesize_fsb -= allocated_fsb;
1795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797 return error;
1798
Nathan Scottdd9f4382006-01-11 15:28:28 +11001799error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 xfs_bmap_cancel(&free_list);
Dave Chinnerea562ed2012-05-08 20:48:53 +10001801 xfs_trans_unreserve_quota_nblks(tp, ip, (long)qblocks, 0, quota_flag);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001802
1803error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1805 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001806 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807}
1808
1809/*
1810 * Zero file bytes between startoff and endoff inclusive.
1811 * The iolock is held exclusive and no blocks are buffered.
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001812 *
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 Torvalds1da177e2005-04-16 15:20:36 -07001819 */
1820STATIC int
1821xfs_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 McIlroy2fd6f6e2008-09-17 16:52:50 +10001835 /*
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 Hellwigce7ae1512011-12-18 20:00:11 +00001840 if (startoff >= XFS_ISIZE(ip))
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001841 return 0;
1842
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001843 if (endoff > XFS_ISIZE(ip))
1844 endoff = XFS_ISIZE(ip);
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001845
Dave Chinner686865f2010-09-24 20:07:47 +10001846 bp = xfs_buf_get_uncached(XFS_IS_REALTIME_INODE(ip) ?
1847 mp->m_rtdev_targp : mp->m_ddev_targp,
Dave Chinneraa5c1582012-04-23 15:58:56 +10001848 BTOBB(mp->m_sb.sb_blocksize), 0);
Lachlan McIlroyc6422612008-12-05 13:16:15 +11001849 if (!bp)
1850 return XFS_ERROR(ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Christoph Hellwigc8da0fa2011-07-08 14:36:25 +02001852 xfs_buf_unlock(bp);
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
1855 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1856 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001857 error = xfs_bmapi_read(ip, offset_fsb, 1, &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 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 Sandeen9d87c312009-01-14 23:22:07 -06001873 XFS_BUF_SET_ADDR(bp, xfs_fsb_to_db(ip, imap.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001875 error = xfs_buf_iowait(bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10001876 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +00001877 xfs_buf_ioerror_alert(bp,
1878 "xfs_zero_remaining_bytes(read)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 break;
1880 }
Chandra Seetharaman62926042011-07-22 23:40:15 +00001881 memset(bp->b_addr +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 (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 Hellwig1a1a3e92010-10-06 18:41:18 +00001888 error = xfs_buf_iowait(bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10001889 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +00001890 xfs_buf_ioerror_alert(bp,
1891 "xfs_zero_remaining_bytes(write)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 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 */
1911STATIC int
1912xfs_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 Torvalds1da177e2005-04-16 15:20:36 -07001920 xfs_fileoff_t endoffset_fsb;
1921 int error;
1922 xfs_fsblock_t firstfsb;
1923 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 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 Scott673cdf52006-09-28 10:56:26 +10001930 uint rounding;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 int rt;
1932 xfs_fileoff_t startoffset_fsb;
1933 xfs_trans_t *tp;
Dean Roehrich5fcbab32005-05-05 13:27:19 -07001934 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 mp = ip->i_mount;
1937
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001938 trace_xfs_free_file_space(ip);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10001939
Christoph Hellwig7d095252009-06-08 15:33:32 +02001940 error = xfs_qm_dqattach(ip, 0);
1941 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 return error;
1943
1944 error = 0;
1945 if (len <= 0) /* if nothing being freed */
1946 return error;
Eric Sandeen71ddabb2007-11-23 16:29:42 +11001947 rt = XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001949 endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Christoph Hellwig0f285c82008-07-18 17:13:28 +10001951 if (attr_flags & XFS_ATTR_NOLOCK)
Dean Roehrich5fcbab32005-05-05 13:27:19 -07001952 need_iolock = 0;
Yingping Lu9fa80462006-03-22 12:44:35 +11001953 if (need_iolock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwig25e41b32008-12-03 12:20:39 +01001955 /* wait for the completion of any pending DIOs */
Christoph Hellwig4a06fd22011-08-23 08:28:13 +00001956 inode_dio_wait(VFS_I(ip));
Yingping Lu9fa80462006-03-22 12:44:35 +11001957 }
Dean Roehrich5fcbab32005-05-05 13:27:19 -07001958
Tim Shimmine6a4b372007-11-23 16:30:42 +11001959 rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 ioffset = offset & ~(rounding - 1);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10001961
Christoph Hellwigdf80c932008-08-13 16:22:09 +10001962 if (VN_CACHED(VFS_I(ip)) != 0) {
Tim Shimmine6a4b372007-11-23 16:30:42 +11001963 error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001964 if (error)
1965 goto out_unlock_iolock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10001966 }
1967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 /*
1969 * Need to zero the stuff we're not freeing, on disk.
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001970 * If it's a realtime file & can't use unwritten extents then we
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 * actually need to zero the extent edges. Otherwise xfs_bunmapi
1972 * will take care of it for us.
1973 */
Eric Sandeen62118702008-03-06 13:44:28 +11001974 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001976 error = xfs_bmapi_read(ip, startoffset_fsb, 1,
1977 &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 if (error)
1979 goto out_unlock_iolock;
1980 ASSERT(nimap == 0 || nimap == 1);
1981 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1982 xfs_daddr_t block;
1983
1984 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1985 block = imap.br_startblock;
1986 mod = do_div(block, mp->m_sb.sb_rextsize);
1987 if (mod)
1988 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
1989 }
1990 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001991 error = xfs_bmapi_read(ip, endoffset_fsb - 1, 1,
1992 &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 if (error)
1994 goto out_unlock_iolock;
1995 ASSERT(nimap == 0 || nimap == 1);
1996 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1997 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1998 mod++;
1999 if (mod && (mod != mp->m_sb.sb_rextsize))
2000 endoffset_fsb -= mod;
2001 }
2002 }
2003 if ((done = (endoffset_fsb <= startoffset_fsb)))
2004 /*
2005 * One contiguous piece to clear
2006 */
2007 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
2008 else {
2009 /*
2010 * Some full blocks, possibly two pieces to clear
2011 */
2012 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
2013 error = xfs_zero_remaining_bytes(ip, offset,
2014 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
2015 if (!error &&
2016 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
2017 error = xfs_zero_remaining_bytes(ip,
2018 XFS_FSB_TO_B(mp, endoffset_fsb),
2019 offset + len - 1);
2020 }
2021
2022 /*
2023 * free file space until done or until there is an error
2024 */
2025 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
2026 while (!error && !done) {
2027
2028 /*
David Chinner91ebecc2007-07-19 16:28:30 +10002029 * allocate and setup the transaction. Allow this
2030 * transaction to dip into the reserve blocks to ensure
2031 * the freeing of the space succeeds at ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 */
2033 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
David Chinner91ebecc2007-07-19 16:28:30 +10002034 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 error = xfs_trans_reserve(tp,
2036 resblks,
2037 XFS_WRITE_LOG_RES(mp),
2038 0,
2039 XFS_TRANS_PERM_LOG_RES,
2040 XFS_WRITE_LOG_COUNT);
2041
2042 /*
2043 * check for running out of space
2044 */
2045 if (error) {
2046 /*
2047 * Free the transaction structure.
2048 */
2049 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
2050 xfs_trans_cancel(tp, 0);
2051 break;
2052 }
2053 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002054 error = xfs_trans_reserve_quota(tp, mp,
2055 ip->i_udquot, ip->i_gdquot,
2056 resblks, 0, XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 if (error)
2058 goto error1;
2059
Christoph Hellwigddc34152011-09-19 15:00:54 +00002060 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 /*
2063 * issue the bunmapi() call to free the blocks
2064 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06002065 xfs_bmap_init(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10002066 error = xfs_bunmapi(tp, ip, startoffset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 endoffset_fsb - startoffset_fsb,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002068 0, 2, &firstfsb, &free_list, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 if (error) {
2070 goto error0;
2071 }
2072
2073 /*
2074 * complete the transaction
2075 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002076 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (error) {
2078 goto error0;
2079 }
2080
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002081 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2083 }
2084
2085 out_unlock_iolock:
2086 if (need_iolock)
2087 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
2088 return error;
2089
2090 error0:
2091 xfs_bmap_cancel(&free_list);
2092 error1:
2093 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
2094 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
2095 XFS_ILOCK_EXCL);
2096 return error;
2097}
2098
2099/*
2100 * xfs_change_file_space()
2101 * This routine allocates or frees disk space for the given file.
2102 * The user specified parameters are checked for alignment and size
2103 * limitations.
2104 *
2105 * RETURNS:
2106 * 0 on success
2107 * errno on error
2108 *
2109 */
2110int
2111xfs_change_file_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002112 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 int cmd,
2114 xfs_flock64_t *bf,
2115 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 int attr_flags)
2117{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002118 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 int clrprealloc;
2120 int error;
2121 xfs_fsize_t fsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 int setprealloc;
2123 xfs_off_t startoffset;
2124 xfs_off_t llen;
2125 xfs_trans_t *tp;
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002126 struct iattr iattr;
Dave Chinner44722352010-08-24 12:02:11 +10002127 int prealloc_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Christoph Hellwig993386c2007-08-28 16:12:30 +10002129 if (!S_ISREG(ip->i_d.di_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 return XFS_ERROR(EINVAL);
2131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 switch (bf->l_whence) {
2133 case 0: /*SEEK_SET*/
2134 break;
2135 case 1: /*SEEK_CUR*/
2136 bf->l_start += offset;
2137 break;
2138 case 2: /*SEEK_END*/
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002139 bf->l_start += XFS_ISIZE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 break;
2141 default:
2142 return XFS_ERROR(EINVAL);
2143 }
2144
2145 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
2146
Dave Chinner32972382012-06-08 15:44:54 +10002147 if (bf->l_start < 0 ||
2148 bf->l_start > mp->m_super->s_maxbytes ||
2149 bf->l_start + llen < 0 ||
2150 bf->l_start + llen > mp->m_super->s_maxbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 return XFS_ERROR(EINVAL);
2152
2153 bf->l_whence = 0;
2154
2155 startoffset = bf->l_start;
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002156 fsize = XFS_ISIZE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158 /*
2159 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
2160 * file space.
2161 * These calls do NOT zero the data space allocated to the file,
2162 * nor do they change the file size.
2163 *
2164 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
2165 * space.
2166 * These calls cause the new file data to be zeroed and the file
2167 * size to be changed.
2168 */
2169 setprealloc = clrprealloc = 0;
Dave Chinner44722352010-08-24 12:02:11 +10002170 prealloc_type = XFS_BMAPI_PREALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
2172 switch (cmd) {
Dave Chinner44722352010-08-24 12:02:11 +10002173 case XFS_IOC_ZERO_RANGE:
2174 prealloc_type |= XFS_BMAPI_CONVERT;
2175 xfs_tosspages(ip, startoffset, startoffset + bf->l_len, 0);
2176 /* FALLTHRU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 case XFS_IOC_RESVSP:
2178 case XFS_IOC_RESVSP64:
2179 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
Dave Chinner44722352010-08-24 12:02:11 +10002180 prealloc_type, attr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 if (error)
2182 return error;
2183 setprealloc = 1;
2184 break;
2185
2186 case XFS_IOC_UNRESVSP:
2187 case XFS_IOC_UNRESVSP64:
2188 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
2189 attr_flags)))
2190 return error;
2191 break;
2192
2193 case XFS_IOC_ALLOCSP:
2194 case XFS_IOC_ALLOCSP64:
2195 case XFS_IOC_FREESP:
2196 case XFS_IOC_FREESP64:
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002197 /*
2198 * These operations actually do IO when extending the file, but
2199 * the allocation is done seperately to the zeroing that is
2200 * done. This set of operations need to be serialised against
2201 * other IO operations, such as truncate and buffered IO. We
2202 * need to take the IOLOCK here to serialise the allocation and
2203 * zeroing IO to prevent other IOLOCK holders (e.g. getbmap,
2204 * truncate, direct IO) from racing against the transient
2205 * allocated but not written state we can have here.
2206 */
2207 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if (startoffset > fsize) {
2209 error = xfs_alloc_file_space(ip, fsize,
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002210 startoffset - fsize, 0,
2211 attr_flags | XFS_ATTR_NOLOCK);
2212 if (error) {
2213 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 break;
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 }
2217
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002218 iattr.ia_valid = ATTR_SIZE;
2219 iattr.ia_size = startoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002221 error = xfs_setattr_size(ip, &iattr,
2222 attr_flags | XFS_ATTR_NOLOCK);
2223 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225 if (error)
2226 return error;
2227
2228 clrprealloc = 1;
2229 break;
2230
2231 default:
2232 ASSERT(0);
2233 return XFS_ERROR(EINVAL);
2234 }
2235
2236 /*
2237 * update the inode timestamp, mode, and prealloc flag bits
2238 */
2239 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
2240
2241 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
2242 0, 0, 0))) {
2243 /* ASSERT(0); */
2244 xfs_trans_cancel(tp, 0);
2245 return error;
2246 }
2247
2248 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +00002249 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002251 if ((attr_flags & XFS_ATTR_DMI) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 ip->i_d.di_mode &= ~S_ISUID;
2253
2254 /*
2255 * Note that we don't have to worry about mandatory
2256 * file locking being disabled here because we only
2257 * clear the S_ISGID bit if the Group execute bit is
2258 * on, but if it was on then mandatory locking wouldn't
2259 * have been enabled.
2260 */
2261 if (ip->i_d.di_mode & S_IXGRP)
2262 ip->i_d.di_mode &= ~S_ISGID;
2263
Dave Chinnerdcd79a12010-09-28 12:27:25 +10002264 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 }
2266 if (setprealloc)
2267 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
2268 else if (clrprealloc)
2269 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
2270
2271 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Dave Chinner82878892011-03-26 09:13:08 +11002272 if (attr_flags & XFS_ATTR_SYNC)
2273 xfs_trans_set_sync(tp);
Christoph Hellwig23bb0be2011-09-18 20:47:51 +00002274 return xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275}