blob: 0cf52da9d2468a547a614f55cf0191a396f82574 [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"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_trans.h"
26#include "xfs_sb.h"
27#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
32#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_dinode.h"
34#include "xfs_inode.h"
35#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_ialloc.h"
38#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_bmap.h"
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020040#include "xfs_acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_attr.h"
42#include "xfs_rw.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include "xfs_quota.h"
45#include "xfs_utils.h"
Nathan Scotta844f452005-11-02 14:38:42 +110046#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include "xfs_trans_space.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include "xfs_log_priv.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100049#include "xfs_filestream.h"
Christoph Hellwig993386c2007-08-28 16:12:30 +100050#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000051#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
Nathan Scott7d4fb402006-06-09 15:27:16 +100054 * The maximum pathlen is 1024 bytes. Since the minimum file system
55 * blocksize is 512 bytes, we can get a max of 2 extents back from
56 * bmapi.
57 */
58#define SYMLINK_MAPS 2
59
Christoph Hellwig804c83c2007-08-28 13:59:03 +100060STATIC int
61xfs_readlink_bmap(
62 xfs_inode_t *ip,
63 char *link)
64{
65 xfs_mount_t *mp = ip->i_mount;
66 int pathlen = ip->i_d.di_size;
67 int nmaps = SYMLINK_MAPS;
68 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
69 xfs_daddr_t d;
70 int byte_cnt;
71 int n;
72 xfs_buf_t *bp;
73 int error = 0;
74
Dave Chinner5c8ed202011-09-18 20:40:45 +000075 error = xfs_bmapi_read(ip, 0, XFS_B_TO_FSB(mp, pathlen), mval, &nmaps,
76 0);
Christoph Hellwig804c83c2007-08-28 13:59:03 +100077 if (error)
78 goto out;
79
80 for (n = 0; n < nmaps; n++) {
81 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
82 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
83
Christoph Hellwig6ad112b2009-11-24 18:02:23 +000084 bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt),
85 XBF_LOCK | XBF_MAPPED | XBF_DONT_BLOCK);
Chandra Seetharamanac4d6882011-08-03 02:18:29 +000086 if (!bp)
87 return XFS_ERROR(ENOMEM);
Chandra Seetharamane5702802011-08-03 02:18:34 +000088 error = bp->b_error;
Christoph Hellwig804c83c2007-08-28 13:59:03 +100089 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +000090 xfs_buf_ioerror_alert(bp, __func__);
Christoph Hellwig804c83c2007-08-28 13:59:03 +100091 xfs_buf_relse(bp);
92 goto out;
93 }
94 if (pathlen < byte_cnt)
95 byte_cnt = pathlen;
96 pathlen -= byte_cnt;
97
Chandra Seetharaman62926042011-07-22 23:40:15 +000098 memcpy(link, bp->b_addr, byte_cnt);
Christoph Hellwig804c83c2007-08-28 13:59:03 +100099 xfs_buf_relse(bp);
100 }
101
102 link[ip->i_d.di_size] = '\0';
103 error = 0;
104
105 out:
106 return error;
107}
108
Christoph Hellwig993386c2007-08-28 16:12:30 +1000109int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110xfs_readlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000111 xfs_inode_t *ip,
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000112 char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000114 xfs_mount_t *mp = ip->i_mount;
Carlos Maiolinob52a3602011-11-07 16:10:24 +0000115 xfs_fsize_t pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000118 trace_xfs_readlink(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 if (XFS_FORCED_SHUTDOWN(mp))
121 return XFS_ERROR(EIO);
122
123 xfs_ilock(ip, XFS_ILOCK_SHARED);
124
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000125 pathlen = ip->i_d.di_size;
126 if (!pathlen)
127 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Carlos Maiolinob52a3602011-11-07 16:10:24 +0000129 if (pathlen < 0 || pathlen > MAXPATHLEN) {
130 xfs_alert(mp, "%s: inode (%llu) bad symlink length (%lld)",
131 __func__, (unsigned long long) ip->i_ino,
132 (long long) pathlen);
133 ASSERT(0);
134 return XFS_ERROR(EFSCORRUPTED);
135 }
136
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (ip->i_df.if_flags & XFS_IFINLINE) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000139 memcpy(link, ip->i_df.if_u1.if_data, pathlen);
140 link[pathlen] = '\0';
141 } else {
142 error = xfs_readlink_bmap(ip, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
144
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000145 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return error;
148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/*
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000151 * Flags for xfs_free_eofblocks
152 */
153#define XFS_FREE_EOF_TRYLOCK (1<<0)
154
155/*
David Chinner92dfe8d2007-05-24 15:22:19 +1000156 * This is called by xfs_inactive to free any blocks beyond eof
157 * when the link count isn't zero and by xfs_dm_punch_hole() when
158 * punching a hole to EOF.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 */
Eric Sandeend96f8f82009-07-02 00:09:33 -0500160STATIC int
David Chinner92dfe8d2007-05-24 15:22:19 +1000161xfs_free_eofblocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 xfs_mount_t *mp,
David Chinner92dfe8d2007-05-24 15:22:19 +1000163 xfs_inode_t *ip,
164 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 xfs_trans_t *tp;
167 int error;
168 xfs_fileoff_t end_fsb;
169 xfs_fileoff_t last_fsb;
170 xfs_filblks_t map_len;
171 int nimaps;
172 xfs_bmbt_irec_t imap;
173
174 /*
175 * Figure out if there are any blocks beyond the end
176 * of the file. If not, then there is nothing to do.
177 */
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000178 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_ISIZE(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 last_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
Kulikov Vasiliy3f348852010-07-20 17:54:28 +1000180 if (last_fsb <= end_fsb)
Jesper Juhl014c2542006-01-15 02:37:08 +0100181 return 0;
Kulikov Vasiliy3f348852010-07-20 17:54:28 +1000182 map_len = last_fsb - end_fsb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 nimaps = 1;
185 xfs_ilock(ip, XFS_ILOCK_SHARED);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000186 error = xfs_bmapi_read(ip, end_fsb, map_len, &imap, &nimaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 xfs_iunlock(ip, XFS_ILOCK_SHARED);
188
189 if (!error && (nimaps != 0) &&
Yingping Lu68bdb6e2006-01-11 15:38:31 +1100190 (imap.br_startblock != HOLESTARTBLOCK ||
191 ip->i_delayed_blks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 /*
193 * Attach the dquots to the inode up front.
194 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200195 error = xfs_qm_dqattach(ip, 0);
196 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100197 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /*
200 * There are blocks after the end of file.
201 * Free them up now by truncating the file to
202 * its current size.
203 */
204 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
205
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000206 if (flags & XFS_FREE_EOF_TRYLOCK) {
207 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
208 xfs_trans_cancel(tp, 0);
209 return 0;
210 }
211 } else {
David Chinner92dfe8d2007-05-24 15:22:19 +1000212 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 error = xfs_trans_reserve(tp, 0,
216 XFS_ITRUNCATE_LOG_RES(mp),
217 0, XFS_TRANS_PERM_LOG_RES,
218 XFS_ITRUNCATE_LOG_COUNT);
219 if (error) {
220 ASSERT(XFS_FORCED_SHUTDOWN(mp));
221 xfs_trans_cancel(tp, 0);
222 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100223 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225
226 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +0000227 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000229 /*
230 * Do not update the on-disk file size. If we update the
231 * on-disk file size and then the system crashes before the
232 * contents of the file are flushed to disk then the files
233 * may be full of holes (ie NULL files bug).
234 */
235 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK,
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000236 XFS_ISIZE(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (error) {
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200238 /*
239 * If we get an error at this point we simply don't
240 * bother truncating the file.
241 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 xfs_trans_cancel(tp,
243 (XFS_TRANS_RELEASE_LOG_RES |
244 XFS_TRANS_ABORT));
245 } else {
246 error = xfs_trans_commit(tp,
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000247 XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000249 xfs_iunlock(ip, XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100251 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
254/*
255 * Free a symlink that has blocks associated with it.
256 */
257STATIC int
258xfs_inactive_symlink_rmt(
259 xfs_inode_t *ip,
260 xfs_trans_t **tpp)
261{
262 xfs_buf_t *bp;
263 int committed;
264 int done;
265 int error;
266 xfs_fsblock_t first_block;
267 xfs_bmap_free_t free_list;
268 int i;
269 xfs_mount_t *mp;
270 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
271 int nmaps;
272 xfs_trans_t *ntp;
273 int size;
274 xfs_trans_t *tp;
275
276 tp = *tpp;
277 mp = ip->i_mount;
278 ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip));
279 /*
280 * We're freeing a symlink that has some
281 * blocks allocated to it. Free the
282 * blocks here. We know that we've got
283 * either 1 or 2 extents and that we can
284 * free them all in one bunmapi call.
285 */
286 ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
287 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
288 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
289 ASSERT(XFS_FORCED_SHUTDOWN(mp));
290 xfs_trans_cancel(tp, 0);
291 *tpp = NULL;
292 return error;
293 }
294 /*
295 * Lock the inode, fix the size, and join it to the transaction.
296 * Hold it so in the normal path, we still have it locked for
297 * the second transaction. In the error paths we need it
298 * held so the cancel won't rele it, see below.
299 */
300 xfs_ilock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
301 size = (int)ip->i_d.di_size;
302 ip->i_d.di_size = 0;
Christoph Hellwigddc34152011-09-19 15:00:54 +0000303 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
305 /*
306 * Find the block(s) so we can inval and unmap them.
307 */
308 done = 0;
Eric Sandeen9d87c312009-01-14 23:22:07 -0600309 xfs_bmap_init(&free_list, &first_block);
Tobias Klausere8c96f82006-03-24 03:15:34 -0800310 nmaps = ARRAY_SIZE(mval);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000311 error = xfs_bmapi_read(ip, 0, XFS_B_TO_FSB(mp, size),
312 mval, &nmaps, 0);
313 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 goto error0;
315 /*
316 * Invalidate the block(s).
317 */
318 for (i = 0; i < nmaps; i++) {
319 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
320 XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
321 XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000322 if (!bp) {
323 error = ENOMEM;
324 goto error1;
325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 xfs_trans_binval(tp, bp);
327 }
328 /*
329 * Unmap the dead block(s) to the free_list.
330 */
331 if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000332 &first_block, &free_list, &done)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 goto error1;
334 ASSERT(done);
335 /*
336 * Commit the first transaction. This logs the EFI and the inode.
337 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100338 if ((error = xfs_bmap_finish(&tp, &free_list, &committed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 goto error1;
340 /*
341 * The transaction must have been committed, since there were
342 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
343 * The new tp has the extent freeing and EFDs.
344 */
345 ASSERT(committed);
346 /*
347 * The first xact was committed, so add the inode to the new one.
348 * Mark it dirty so it will be logged and moved forward in the log as
349 * part of every commit.
350 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000351 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
353 /*
354 * Get a new, empty transaction to return to our caller.
355 */
356 ntp = xfs_trans_dup(tp);
357 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000358 * Commit the transaction containing extent freeing and EFDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * If we get an error on the commit here or on the reserve below,
360 * we need to unlock the inode since the new transaction doesn't
361 * have the inode attached.
362 */
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000363 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 tp = ntp;
365 if (error) {
366 ASSERT(XFS_FORCED_SHUTDOWN(mp));
367 goto error0;
368 }
369 /*
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100370 * transaction commit worked ok so we can drop the extra ticket
371 * reference that we gained in xfs_trans_dup()
372 */
373 xfs_log_ticket_put(tp->t_ticket);
374
375 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 * Remove the memory for extent descriptions (just bookkeeping).
377 */
378 if (ip->i_df.if_bytes)
379 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
380 ASSERT(ip->i_df.if_bytes == 0);
381 /*
382 * Put an itruncate log reservation in the new transaction
383 * for our caller.
384 */
385 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
386 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
387 ASSERT(XFS_FORCED_SHUTDOWN(mp));
388 goto error0;
389 }
390 /*
391 * Return with the inode locked but not joined to the transaction.
392 */
393 *tpp = tp;
394 return 0;
395
396 error1:
397 xfs_bmap_cancel(&free_list);
398 error0:
399 /*
400 * Have to come here with the inode locked and either
401 * (held and in the transaction) or (not in the transaction).
402 * If the inode isn't held then cancel would iput it, but
403 * that's wrong since this is inactive and the vnode ref
404 * count is 0 already.
405 * Cancel won't do anything to the inode if held, but it still
406 * needs to be locked until the cancel is done, if it was
407 * joined to the transaction.
408 */
409 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
410 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
411 *tpp = NULL;
412 return error;
413
414}
415
416STATIC int
417xfs_inactive_symlink_local(
418 xfs_inode_t *ip,
419 xfs_trans_t **tpp)
420{
421 int error;
422
423 ASSERT(ip->i_d.di_size <= XFS_IFORK_DSIZE(ip));
424 /*
425 * We're freeing a symlink which fit into
426 * the inode. Just free the memory used
427 * to hold the old symlink.
428 */
429 error = xfs_trans_reserve(*tpp, 0,
430 XFS_ITRUNCATE_LOG_RES(ip->i_mount),
431 0, XFS_TRANS_PERM_LOG_RES,
432 XFS_ITRUNCATE_LOG_COUNT);
433
434 if (error) {
435 xfs_trans_cancel(*tpp, 0);
436 *tpp = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +0100437 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
440
441 /*
442 * Zero length symlinks _can_ exist.
443 */
444 if (ip->i_df.if_bytes > 0) {
445 xfs_idata_realloc(ip,
446 -(ip->i_df.if_bytes),
447 XFS_DATA_FORK);
448 ASSERT(ip->i_df.if_bytes == 0);
449 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100450 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453STATIC int
454xfs_inactive_attrs(
455 xfs_inode_t *ip,
456 xfs_trans_t **tpp)
457{
458 xfs_trans_t *tp;
459 int error;
460 xfs_mount_t *mp;
461
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000462 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 tp = *tpp;
464 mp = ip->i_mount;
465 ASSERT(ip->i_d.di_forkoff != 0);
David Chinnere5720ee2008-04-10 12:21:18 +1000466 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 xfs_iunlock(ip, XFS_ILOCK_EXCL);
David Chinnere5720ee2008-04-10 12:21:18 +1000468 if (error)
469 goto error_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 error = xfs_attr_inactive(ip);
David Chinnere5720ee2008-04-10 12:21:18 +1000472 if (error)
473 goto error_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
476 error = xfs_trans_reserve(tp, 0,
477 XFS_IFREE_LOG_RES(mp),
478 0, XFS_TRANS_PERM_LOG_RES,
479 XFS_INACTIVE_LOG_COUNT);
David Chinnere5720ee2008-04-10 12:21:18 +1000480 if (error)
481 goto error_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +0000484 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
486
487 ASSERT(ip->i_d.di_anextents == 0);
488
489 *tpp = tp;
Jesper Juhl014c2542006-01-15 02:37:08 +0100490 return 0;
David Chinnere5720ee2008-04-10 12:21:18 +1000491
492error_cancel:
493 ASSERT(XFS_FORCED_SHUTDOWN(mp));
494 xfs_trans_cancel(tp, 0);
495error_unlock:
496 *tpp = NULL;
497 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
498 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
Christoph Hellwig993386c2007-08-28 16:12:30 +1000501int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502xfs_release(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000503 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Christoph Hellwig993386c2007-08-28 16:12:30 +1000505 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 int error;
507
Christoph Hellwig42173f62008-04-22 17:33:25 +1000508 if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000512 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return 0;
514
David Chinner2a82b8b2007-07-11 11:09:12 +1000515 if (!XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000516 int truncated;
517
David Chinner2a82b8b2007-07-11 11:09:12 +1000518 /*
519 * If we are using filestreams, and we have an unlinked
520 * file that we are processing the last close on, then nothing
521 * will be able to reopen and write to this file. Purge this
522 * inode from the filestreams cache so that it doesn't delay
523 * teardown of the inode.
524 */
525 if ((ip->i_d.di_nlink == 0) && xfs_inode_is_filestream(ip))
526 xfs_filestream_deassociate(ip);
527
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000528 /*
529 * If we previously truncated this file and removed old data
530 * in the process, we want to initiate "early" writeout on
531 * the last close. This is an attempt to combat the notorious
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300532 * NULL files problem which is particularly noticeable from a
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000533 * truncate down, buffered (re-)write (delalloc), followed by
534 * a crash. What we are effectively doing here is
535 * significantly reducing the time window where we'd otherwise
536 * be exposed to that problem.
537 */
Christoph Hellwig09262b42007-08-29 11:44:50 +1000538 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
Dave Chinnerdf4368a2011-06-23 01:35:00 +0000539 if (truncated) {
540 xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE);
541 if (VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0)
542 xfs_flush_pages(ip, 0, -1, XBF_ASYNC, FI_NONE);
543 }
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000544 }
545
Dave Chinner6e857562010-12-23 12:02:31 +1100546 if (ip->i_d.di_nlink == 0)
547 return 0;
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000548
Al Viroabbede12011-07-26 02:31:30 -0400549 if ((S_ISREG(ip->i_d.di_mode) &&
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000550 (VFS_I(ip)->i_size > 0 ||
551 (VN_CACHED(VFS_I(ip)) > 0 || ip->i_delayed_blks > 0)) &&
Dave Chinner6e857562010-12-23 12:02:31 +1100552 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
553 (!(ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)))) {
554
555 /*
556 * If we can't get the iolock just skip truncating the blocks
557 * past EOF because we could deadlock with the mmap_sem
558 * otherwise. We'll get another chance to drop them once the
559 * last reference to the inode is dropped, so we'll never leak
560 * blocks permanently.
561 *
562 * Further, check if the inode is being opened, written and
563 * closed frequently and we have delayed allocation blocks
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300564 * outstanding (e.g. streaming writes from the NFS server),
Dave Chinner6e857562010-12-23 12:02:31 +1100565 * truncating the blocks past EOF will cause fragmentation to
566 * occur.
567 *
568 * In this case don't do the truncation, either, but we have to
569 * be careful how we detect this case. Blocks beyond EOF show
570 * up as i_delayed_blks even when the inode is clean, so we
571 * need to truncate them away first before checking for a dirty
572 * release. Hence on the first dirty close we will still remove
573 * the speculative allocation, but after that we will leave it
574 * in place.
575 */
576 if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE))
577 return 0;
578
579 error = xfs_free_eofblocks(mp, ip,
580 XFS_FREE_EOF_TRYLOCK);
581 if (error)
582 return error;
583
584 /* delalloc blocks after truncation means it really is dirty */
585 if (ip->i_delayed_blks)
586 xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return 0;
589}
590
591/*
592 * xfs_inactive
593 *
594 * This is called when the vnode reference count for the vnode
595 * goes to zero. If the file has been unlinked, then it must
596 * now be truncated. Also, we clear all of the read-ahead state
597 * kept for the inode here since the file is now closed.
598 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000599int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600xfs_inactive(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000601 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000603 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 xfs_fsblock_t first_block;
605 int committed;
606 xfs_trans_t *tp;
607 xfs_mount_t *mp;
608 int error;
609 int truncate;
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 /*
612 * If the inode is already free, then there can be nothing
613 * to clean up here.
614 */
Christoph Hellwigcb4c8cc2009-03-16 08:25:25 +0100615 if (ip->i_d.di_mode == 0 || is_bad_inode(VFS_I(ip))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 ASSERT(ip->i_df.if_real_bytes == 0);
617 ASSERT(ip->i_df.if_broot_bytes == 0);
618 return VN_INACTIVE_CACHE;
619 }
620
621 /*
622 * Only do a truncate if it's a regular file with
623 * some actual space in it. It's OK to look at the
624 * inode's fields without the lock because we're the
625 * only one with a reference to the inode.
626 */
627 truncate = ((ip->i_d.di_nlink == 0) &&
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000628 ((ip->i_d.di_size != 0) || XFS_ISIZE(ip) != 0 ||
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000629 (ip->i_d.di_nextents > 0) || (ip->i_delayed_blks > 0)) &&
Al Viroabbede12011-07-26 02:31:30 -0400630 S_ISREG(ip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 mp = ip->i_mount;
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 error = 0;
635
636 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000637 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 goto out;
639
640 if (ip->i_d.di_nlink != 0) {
Al Viroabbede12011-07-26 02:31:30 -0400641 if ((S_ISREG(ip->i_d.di_mode) &&
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000642 (VFS_I(ip)->i_size > 0 ||
643 (VN_CACHED(VFS_I(ip)) > 0 || ip->i_delayed_blks > 0)) &&
644 (ip->i_df.if_flags & XFS_IFEXTENTS) &&
645 (!(ip->i_d.di_flags &
Nathan Scottdd9f4382006-01-11 15:28:28 +1100646 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)) ||
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000647 ip->i_delayed_blks != 0))) {
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000648 error = xfs_free_eofblocks(mp, ip, 0);
David Chinner92dfe8d2007-05-24 15:22:19 +1000649 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100650 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652 goto out;
653 }
654
655 ASSERT(ip->i_d.di_nlink == 0);
656
Christoph Hellwig7d095252009-06-08 15:33:32 +0200657 error = xfs_qm_dqattach(ip, 0);
658 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100659 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
662 if (truncate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 xfs_ilock(ip, XFS_IOLOCK_EXCL);
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 error = xfs_trans_reserve(tp, 0,
666 XFS_ITRUNCATE_LOG_RES(mp),
667 0, XFS_TRANS_PERM_LOG_RES,
668 XFS_ITRUNCATE_LOG_COUNT);
669 if (error) {
670 /* Don't call itruncate_cleanup */
671 ASSERT(XFS_FORCED_SHUTDOWN(mp));
672 xfs_trans_cancel(tp, 0);
673 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100674 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
676
677 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +0000678 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000680 ip->i_d.di_size = 0;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000681 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
682
683 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (error) {
685 xfs_trans_cancel(tp,
686 XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
687 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100688 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000690
691 ASSERT(ip->i_d.di_nextents == 0);
Al Viroabbede12011-07-26 02:31:30 -0400692 } else if (S_ISLNK(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 /*
695 * If we get an error while cleaning up a
696 * symlink we bail out.
697 */
698 error = (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) ?
699 xfs_inactive_symlink_rmt(ip, &tp) :
700 xfs_inactive_symlink_local(ip, &tp);
701
702 if (error) {
703 ASSERT(tp == NULL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100704 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
706
Christoph Hellwigddc34152011-09-19 15:00:54 +0000707 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 } else {
709 error = xfs_trans_reserve(tp, 0,
710 XFS_IFREE_LOG_RES(mp),
711 0, XFS_TRANS_PERM_LOG_RES,
712 XFS_INACTIVE_LOG_COUNT);
713 if (error) {
714 ASSERT(XFS_FORCED_SHUTDOWN(mp));
715 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +0100716 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
718
719 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +0000720 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722
723 /*
724 * If there are attributes associated with the file
725 * then blow them away now. The code calls a routine
726 * that recursively deconstructs the attribute fork.
727 * We need to just commit the current transaction
728 * because we can't use it for xfs_attr_inactive().
729 */
730 if (ip->i_d.di_anextents > 0) {
731 error = xfs_inactive_attrs(ip, &tp);
732 /*
733 * If we got an error, the transaction is already
734 * cancelled, and the inode is unlocked. Just get out.
735 */
736 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100737 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 } else if (ip->i_afp) {
739 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
740 }
741
742 /*
743 * Free the inode.
744 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600745 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 error = xfs_ifree(tp, ip, &free_list);
747 if (error) {
748 /*
749 * If we fail to free the inode, shut down. The cancel
750 * might do that, we need to make sure. Otherwise the
751 * inode might be lost for a long time or forever.
752 */
753 if (!XFS_FORCED_SHUTDOWN(mp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100754 xfs_notice(mp, "%s: xfs_ifree returned error %d",
755 __func__, error);
Nathan Scott7d04a332006-06-09 14:58:38 +1000756 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
759 } else {
760 /*
761 * Credit the quota account(s). The inode is gone.
762 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200763 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 /*
David Chinner78e9da72008-04-10 12:24:17 +1000766 * Just ignore errors at this point. There is nothing we can
767 * do except to try to keep going. Make sure it's not a silent
768 * error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 */
David Chinner78e9da72008-04-10 12:24:17 +1000770 error = xfs_bmap_finish(&tp, &free_list, &committed);
771 if (error)
Dave Chinner53487782011-03-07 10:05:35 +1100772 xfs_notice(mp, "%s: xfs_bmap_finish returned error %d",
773 __func__, error);
David Chinner78e9da72008-04-10 12:24:17 +1000774 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
775 if (error)
Dave Chinner53487782011-03-07 10:05:35 +1100776 xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
777 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 /*
781 * Release the dquots held by inode, if any.
782 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200783 xfs_qm_dqdetach(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
785
786 out:
787 return VN_INACTIVE_CACHE;
788}
789
Barry Naujok384f3ce2008-05-21 16:58:22 +1000790/*
791 * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
792 * is allowed, otherwise it has to be an exact match. If a CI match is found,
793 * ci_name->name will point to a the actual name (caller must free) or
794 * will be set to NULL if an exact match is found.
795 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000796int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797xfs_lookup(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000798 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000799 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000800 xfs_inode_t **ipp,
801 struct xfs_name *ci_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000803 xfs_ino_t inum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 int error;
805 uint lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000807 trace_xfs_lookup(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
810 return XFS_ERROR(EIO);
811
812 lock_mode = xfs_ilock_map_shared(dp);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000813 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 xfs_iunlock_map_shared(dp, lock_mode);
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000815
816 if (error)
817 goto out;
818
Dave Chinner7b6259e2010-06-24 11:35:17 +1000819 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000820 if (error)
Barry Naujok384f3ce2008-05-21 16:58:22 +1000821 goto out_free_name;
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000822
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000823 return 0;
824
Barry Naujok384f3ce2008-05-21 16:58:22 +1000825out_free_name:
826 if (ci_name)
827 kmem_free(ci_name->name);
828out:
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000829 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return error;
831}
832
Christoph Hellwig993386c2007-08-28 16:12:30 +1000833int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834xfs_create(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000835 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000836 struct xfs_name *name,
Al Viro576b1d62011-07-26 02:50:15 -0400837 umode_t mode,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000838 xfs_dev_t rdev,
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000839 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100841 int is_dir = S_ISDIR(mode);
842 struct xfs_mount *mp = dp->i_mount;
843 struct xfs_inode *ip = NULL;
844 struct xfs_trans *tp = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000845 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 xfs_bmap_free_t free_list;
847 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +1000848 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 uint cancel_flags;
850 int committed;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000851 prid_t prid;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100852 struct xfs_dquot *udqp = NULL;
853 struct xfs_dquot *gdqp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 uint resblks;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100855 uint log_res;
856 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000858 trace_xfs_create(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100860 if (XFS_FORCED_SHUTDOWN(mp))
861 return XFS_ERROR(EIO);
862
Nathan Scott365ca832005-06-21 15:39:12 +1000863 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000864 prid = xfs_get_projid(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 else
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000866 prid = XFS_PROJID_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 /*
869 * Make sure that we have allocated dquot(s) on disk.
870 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200871 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100872 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000874 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100876 if (is_dir) {
877 rdev = 0;
878 resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
879 log_res = XFS_MKDIR_LOG_RES(mp);
880 log_count = XFS_MKDIR_LOG_COUNT;
881 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
882 } else {
883 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
884 log_res = XFS_CREATE_LOG_RES(mp);
885 log_count = XFS_CREATE_LOG_COUNT;
886 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 /*
892 * Initially assume that the file does not exist and
893 * reserve the resources for that case. If that is not
894 * the case we'll drop the one we have and get a more
895 * appropriate transaction later.
896 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100897 error = xfs_trans_reserve(tp, resblks, log_res, 0,
898 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (error == ENOSPC) {
Dave Chinner153fec42009-04-06 18:48:30 +0200900 /* flush outstanding delalloc blocks and retry */
901 xfs_flush_inodes(dp);
Christoph Hellwig4734d402009-09-09 18:19:02 -0500902 error = xfs_trans_reserve(tp, resblks, log_res, 0,
903 XFS_TRANS_PERM_LOG_RES, log_count);
Dave Chinner153fec42009-04-06 18:48:30 +0200904 }
905 if (error == ENOSPC) {
906 /* No space at all so try a "no-allocation" reservation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 resblks = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100908 error = xfs_trans_reserve(tp, 0, log_res, 0,
909 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911 if (error) {
912 cancel_flags = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100913 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000916 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +1000917 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100919 /*
920 * Check for directory link count overflow.
921 */
922 if (is_dir && dp->i_d.di_nlink >= XFS_MAXLINK) {
923 error = XFS_ERROR(EMLINK);
924 goto out_trans_cancel;
925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100927 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 /*
930 * Reserve disk quota and the inode.
931 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200932 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100934 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Barry Naujok556b8b12008-04-10 12:22:07 +1000936 error = xfs_dir_canenter(tp, dp, name, resblks);
937 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100938 goto out_trans_cancel;
939
940 /*
941 * A newly created regular or special file just has one directory
942 * entry pointing to them, but a directory also the "." entry
943 * pointing to itself.
944 */
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000945 error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev,
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100946 prid, resblks > 0, &ip, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (error) {
948 if (error == ENOSPC)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100949 goto out_trans_cancel;
950 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 /*
Christoph Hellwig993386c2007-08-28 16:12:30 +1000954 * Now we join the directory inode to the transaction. We do not do it
955 * earlier because xfs_dir_ialloc might commit the previous transaction
956 * (and release all the locks). An error from here on will result in
957 * the transaction cancel unlocking dp so don't do it explicitly in the
958 * error path.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000960 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +1000961 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Barry Naujok556b8b12008-04-10 12:22:07 +1000963 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000964 &first_block, &free_list, resblks ?
965 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (error) {
967 ASSERT(error != ENOSPC);
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100968 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000970 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
972
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100973 if (is_dir) {
974 error = xfs_dir_init(tp, ip, dp);
975 if (error)
976 goto out_bmap_cancel;
977
978 error = xfs_bumplink(tp, dp);
979 if (error)
980 goto out_bmap_cancel;
981 }
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 /*
984 * If this is a synchronous mount, make sure that the
985 * create transaction goes to disk before returning to
986 * the user.
987 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100988 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 /*
992 * Attach the dquot(s) to the inodes and modify them incore.
993 * These ids of the inode couldn't have changed since the new
994 * inode has been locked ever since it was created.
995 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200996 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100998 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100999 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001000 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001002 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001003 if (error)
1004 goto out_release_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Christoph Hellwig7d095252009-06-08 15:33:32 +02001006 xfs_qm_dqrele(udqp);
1007 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001009 *ipp = ip;
Christoph Hellwig288699f2010-06-23 18:11:15 +10001010 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001012 out_bmap_cancel:
1013 xfs_bmap_cancel(&free_list);
1014 out_trans_abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001016 out_trans_cancel:
1017 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001018 out_release_inode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 /*
1020 * Wait until after the current transaction is aborted to
1021 * release the inode. This prevents recursive transactions
1022 * and deadlocks from xfs_inactive.
1023 */
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001024 if (ip)
1025 IRELE(ip);
1026
1027 xfs_qm_dqrele(udqp);
1028 xfs_qm_dqrele(gdqp);
1029
1030 if (unlock_dp_on_error)
1031 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1032 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
1035#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036int xfs_locked_n;
1037int xfs_small_retries;
1038int xfs_middle_retries;
1039int xfs_lots_retries;
1040int xfs_lock_delays;
1041#endif
1042
1043/*
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001044 * Bump the subclass so xfs_lock_inodes() acquires each lock with
1045 * a different value
1046 */
1047static inline int
1048xfs_lock_inumorder(int lock_mode, int subclass)
1049{
1050 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +10001051 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001052 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +10001053 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001054
1055 return lock_mode;
1056}
1057
1058/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 * The following routine will lock n inodes in exclusive mode.
1060 * We assume the caller calls us with the inodes in i_ino order.
1061 *
1062 * We need to detect deadlock where an inode that we lock
1063 * is in the AIL and we start waiting for another inode that is locked
1064 * by a thread in a long running transaction (such as truncate). This can
1065 * result in deadlock since the long running trans might need to wait
1066 * for the inode we just locked in order to push the tail and free space
1067 * in the log.
1068 */
1069void
1070xfs_lock_inodes(
1071 xfs_inode_t **ips,
1072 int inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 uint lock_mode)
1074{
1075 int attempts = 0, i, j, try_lock;
1076 xfs_log_item_t *lp;
1077
1078 ASSERT(ips && (inodes >= 2)); /* we need at least two */
1079
Christoph Hellwigcfa853e2008-04-22 17:34:06 +10001080 try_lock = 0;
1081 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083again:
1084 for (; i < inodes; i++) {
1085 ASSERT(ips[i]);
1086
1087 if (i && (ips[i] == ips[i-1])) /* Already locked */
1088 continue;
1089
1090 /*
1091 * If try_lock is not set yet, make sure all locked inodes
1092 * are not in the AIL.
1093 * If any are, set try_lock to be used later.
1094 */
1095
1096 if (!try_lock) {
1097 for (j = (i - 1); j >= 0 && !try_lock; j--) {
1098 lp = (xfs_log_item_t *)ips[j]->i_itemp;
1099 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1100 try_lock++;
1101 }
1102 }
1103 }
1104
1105 /*
1106 * If any of the previous locks we have locked is in the AIL,
1107 * we must TRY to get the second and subsequent locks. If
1108 * we can't get any, we must release all we have
1109 * and try again.
1110 */
1111
1112 if (try_lock) {
1113 /* try_lock must be 0 if i is 0. */
1114 /*
1115 * try_lock means we have an inode locked
1116 * that is in the AIL.
1117 */
1118 ASSERT(i != 0);
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001119 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 attempts++;
1121
1122 /*
1123 * Unlock all previous guys and try again.
1124 * xfs_iunlock will try to push the tail
1125 * if the inode is in the AIL.
1126 */
1127
1128 for(j = i - 1; j >= 0; j--) {
1129
1130 /*
1131 * Check to see if we've already
1132 * unlocked this one.
1133 * Not the first one going back,
1134 * and the inode ptr is the same.
1135 */
1136 if ((j != (i - 1)) && ips[j] ==
1137 ips[j+1])
1138 continue;
1139
1140 xfs_iunlock(ips[j], lock_mode);
1141 }
1142
1143 if ((attempts % 5) == 0) {
1144 delay(1); /* Don't just spin the CPU */
1145#ifdef DEBUG
1146 xfs_lock_delays++;
1147#endif
1148 }
1149 i = 0;
1150 try_lock = 0;
1151 goto again;
1152 }
1153 } else {
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001154 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156 }
1157
1158#ifdef DEBUG
1159 if (attempts) {
1160 if (attempts < 5) xfs_small_retries++;
1161 else if (attempts < 100) xfs_middle_retries++;
1162 else xfs_lots_retries++;
1163 } else {
1164 xfs_locked_n++;
1165 }
1166#endif
1167}
1168
David Chinnerf9114eb2008-09-17 16:51:21 +10001169/*
1170 * xfs_lock_two_inodes() can only be used to lock one type of lock
1171 * at a time - the iolock or the ilock, but not both at once. If
1172 * we lock both at once, lockdep will report false positives saying
1173 * we have violated locking orders.
1174 */
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001175void
1176xfs_lock_two_inodes(
1177 xfs_inode_t *ip0,
1178 xfs_inode_t *ip1,
1179 uint lock_mode)
1180{
1181 xfs_inode_t *temp;
1182 int attempts = 0;
1183 xfs_log_item_t *lp;
1184
David Chinnerf9114eb2008-09-17 16:51:21 +10001185 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
1186 ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0);
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001187 ASSERT(ip0->i_ino != ip1->i_ino);
1188
1189 if (ip0->i_ino > ip1->i_ino) {
1190 temp = ip0;
1191 ip0 = ip1;
1192 ip1 = temp;
1193 }
1194
1195 again:
1196 xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0));
1197
1198 /*
1199 * If the first lock we have locked is in the AIL, we must TRY to get
1200 * the second lock. If we can't get it, we must release the first one
1201 * and try again.
1202 */
1203 lp = (xfs_log_item_t *)ip0->i_itemp;
1204 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1205 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) {
1206 xfs_iunlock(ip0, lock_mode);
1207 if ((++attempts % 5) == 0)
1208 delay(1); /* Don't just spin the CPU */
1209 goto again;
1210 }
1211 } else {
1212 xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1));
1213 }
1214}
1215
Christoph Hellwig993386c2007-08-28 16:12:30 +10001216int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217xfs_remove(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001218 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001219 struct xfs_name *name,
1220 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001222 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 xfs_trans_t *tp = NULL;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001224 int is_dir = S_ISDIR(ip->i_d.di_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 int error = 0;
1226 xfs_bmap_free_t free_list;
1227 xfs_fsblock_t first_block;
1228 int cancel_flags;
1229 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 int link_zero;
1231 uint resblks;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001232 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001234 trace_xfs_remove(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (XFS_FORCED_SHUTDOWN(mp))
1237 return XFS_ERROR(EIO);
1238
Christoph Hellwig7d095252009-06-08 15:33:32 +02001239 error = xfs_qm_dqattach(dp, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001240 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Christoph Hellwig7d095252009-06-08 15:33:32 +02001243 error = xfs_qm_dqattach(ip, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001244 if (error)
1245 goto std_return;
1246
1247 if (is_dir) {
1248 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
1249 log_count = XFS_DEFAULT_LOG_COUNT;
1250 } else {
1251 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
1252 log_count = XFS_REMOVE_LOG_COUNT;
1253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 /*
1257 * We try to get the real space reservation first,
1258 * allowing for directory btree deletion(s) implying
1259 * possible bmap insert(s). If we can't get the space
1260 * reservation then we use 0 instead, and avoid the bmap
1261 * btree insert(s) in the directory code by, if the bmap
1262 * insert tries to happen, instead trimming the LAST
1263 * block from the directory.
1264 */
1265 resblks = XFS_REMOVE_SPACE_RES(mp);
1266 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001267 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (error == ENOSPC) {
1269 resblks = 0;
1270 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001271 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273 if (error) {
1274 ASSERT(error != ENOSPC);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001275 cancel_flags = 0;
1276 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
1278
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001279 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Christoph Hellwigddc34152011-09-19 15:00:54 +00001281 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1282 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 /*
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001285 * If we're removing a directory perform some additional validation.
1286 */
1287 if (is_dir) {
1288 ASSERT(ip->i_d.di_nlink >= 2);
1289 if (ip->i_d.di_nlink != 2) {
1290 error = XFS_ERROR(ENOTEMPTY);
1291 goto out_trans_cancel;
1292 }
1293 if (!xfs_dir_isempty(ip)) {
1294 error = XFS_ERROR(ENOTEMPTY);
1295 goto out_trans_cancel;
1296 }
1297 }
1298
Eric Sandeen9d87c312009-01-14 23:22:07 -06001299 xfs_bmap_init(&free_list, &first_block);
Barry Naujok556b8b12008-04-10 12:22:07 +10001300 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
Christoph Hellwigd4377d82008-04-22 17:33:46 +10001301 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 if (error) {
1303 ASSERT(error != ENOENT);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001304 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001306 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001308 if (is_dir) {
1309 /*
1310 * Drop the link from ip's "..".
1311 */
1312 error = xfs_droplink(tp, dp);
1313 if (error)
1314 goto out_bmap_cancel;
1315
1316 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001317 * Drop the "." link from ip to self.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001318 */
1319 error = xfs_droplink(tp, ip);
1320 if (error)
1321 goto out_bmap_cancel;
1322 } else {
1323 /*
1324 * When removing a non-directory we need to log the parent
Dave Chinner26c52952008-11-28 14:23:37 +11001325 * inode here. For a directory this is done implicitly
1326 * by the xfs_droplink call for the ".." entry.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001327 */
1328 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
1330
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001331 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001332 * Drop the link from dp to ip.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001333 */
1334 error = xfs_droplink(tp, ip);
1335 if (error)
1336 goto out_bmap_cancel;
1337
1338 /*
1339 * Determine if this is the last link while
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 * we are in the transaction.
1341 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001342 link_zero = (ip->i_d.di_nlink == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 * If this is a synchronous mount, make sure that the
1346 * remove transaction goes to disk before returning to
1347 * the user.
1348 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001349 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001352 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001353 if (error)
1354 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001356 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig5df78e72008-04-22 17:34:24 +10001357 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 /*
David Chinner2a82b8b2007-07-11 11:09:12 +10001361 * If we are using filestreams, kill the stream association.
1362 * If the file is still open it may get a new one but that
1363 * will get killed on last close in xfs_close() so we don't
1364 * have to worry about that.
1365 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001366 if (!is_dir && link_zero && xfs_inode_is_filestream(ip))
David Chinner2a82b8b2007-07-11 11:09:12 +10001367 xfs_filestream_deassociate(ip);
1368
Christoph Hellwig288699f2010-06-23 18:11:15 +10001369 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001371 out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 xfs_bmap_cancel(&free_list);
1373 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001374 out_trans_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001376 std_return:
1377 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
Christoph Hellwig993386c2007-08-28 16:12:30 +10001380int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381xfs_link(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001382 xfs_inode_t *tdp,
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001383 xfs_inode_t *sip,
Barry Naujok556b8b12008-04-10 12:22:07 +10001384 struct xfs_name *target_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001386 xfs_mount_t *mp = tdp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 int error;
1389 xfs_bmap_free_t free_list;
1390 xfs_fsblock_t first_block;
1391 int cancel_flags;
1392 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 int resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001395 trace_xfs_link(tdp, target_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001397 ASSERT(!S_ISDIR(sip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (XFS_FORCED_SHUTDOWN(mp))
1400 return XFS_ERROR(EIO);
1401
Christoph Hellwig7d095252009-06-08 15:33:32 +02001402 error = xfs_qm_dqattach(sip, 0);
Christoph Hellwigcb3f35b2009-02-04 09:34:20 +01001403 if (error)
1404 goto std_return;
1405
Christoph Hellwig7d095252009-06-08 15:33:32 +02001406 error = xfs_qm_dqattach(tdp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (error)
1408 goto std_return;
1409
1410 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
1411 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10001412 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
1414 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1415 if (error == ENOSPC) {
1416 resblks = 0;
1417 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
1418 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1419 }
1420 if (error) {
1421 cancel_flags = 0;
1422 goto error_return;
1423 }
1424
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001425 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Christoph Hellwigddc34152011-09-19 15:00:54 +00001427 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
1428 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 /*
1431 * If the source has too many links, we can't make any more to it.
1432 */
1433 if (sip->i_d.di_nlink >= XFS_MAXLINK) {
1434 error = XFS_ERROR(EMLINK);
1435 goto error_return;
1436 }
1437
Nathan Scott365ca832005-06-21 15:39:12 +10001438 /*
1439 * If we are using project inheritance, we only allow hard link
1440 * creation in our tree when the project IDs are the same; else
1441 * the tree quota mechanism could be circumvented.
1442 */
1443 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001444 (xfs_get_projid(tdp) != xfs_get_projid(sip)))) {
Nathan Scottb1ecdda2006-05-08 19:51:42 +10001445 error = XFS_ERROR(EXDEV);
Nathan Scott365ca832005-06-21 15:39:12 +10001446 goto error_return;
1447 }
1448
Barry Naujok556b8b12008-04-10 12:22:07 +10001449 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
1450 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 goto error_return;
1452
Eric Sandeen9d87c312009-01-14 23:22:07 -06001453 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Barry Naujok556b8b12008-04-10 12:22:07 +10001455 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
1456 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 if (error)
1458 goto abort_return;
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001459 xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1461
1462 error = xfs_bumplink(tp, sip);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001463 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 /*
1467 * If this is a synchronous mount, make sure that the
1468 * link transaction goes to disk before returning to
1469 * the user.
1470 */
1471 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1472 xfs_trans_set_sync(tp);
1473 }
1474
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001475 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (error) {
1477 xfs_bmap_cancel(&free_list);
1478 goto abort_return;
1479 }
1480
Christoph Hellwig288699f2010-06-23 18:11:15 +10001481 return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483 abort_return:
1484 cancel_flags |= XFS_TRANS_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 error_return:
1486 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001487 std_return:
1488 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489}
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001490
Christoph Hellwig993386c2007-08-28 16:12:30 +10001491int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492xfs_symlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001493 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001494 struct xfs_name *link_name,
1495 const char *target_path,
Al Viro576b1d62011-07-26 02:50:15 -04001496 umode_t mode,
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001497 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001499 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 xfs_inode_t *ip;
1502 int error;
1503 int pathlen;
1504 xfs_bmap_free_t free_list;
1505 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001506 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 uint cancel_flags;
1508 int committed;
1509 xfs_fileoff_t first_fsb;
1510 xfs_filblks_t fs_blocks;
1511 int nmaps;
1512 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1513 xfs_daddr_t d;
Barry Naujok556b8b12008-04-10 12:22:07 +10001514 const char *cur_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 int byte_cnt;
1516 int n;
1517 xfs_buf_t *bp;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001518 prid_t prid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 struct xfs_dquot *udqp, *gdqp;
1520 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Christoph Hellwig3937be52008-03-06 13:46:19 +11001522 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 error = 0;
1524 ip = NULL;
1525 tp = NULL;
1526
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001527 trace_xfs_symlink(dp, link_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529 if (XFS_FORCED_SHUTDOWN(mp))
1530 return XFS_ERROR(EIO);
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 /*
1533 * Check component lengths of the target path name.
1534 */
1535 pathlen = strlen(target_path);
1536 if (pathlen >= MAXPATHLEN) /* total string too long */
1537 return XFS_ERROR(ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10001540 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001541 prid = xfs_get_projid(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 else
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001543 prid = XFS_PROJID_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 /*
1546 * Make sure that we have allocated dquot(s) on disk.
1547 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001548 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
1550 if (error)
1551 goto std_return;
1552
1553 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
1554 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1555 /*
1556 * The symlink will fit into the inode data fork?
1557 * There can't be any attributes so we get the whole variable part.
1558 */
1559 if (pathlen <= XFS_LITINO(mp))
1560 fs_blocks = 0;
1561 else
1562 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
Barry Naujok556b8b12008-04-10 12:22:07 +10001563 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
1565 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
1566 if (error == ENOSPC && fs_blocks == 0) {
1567 resblks = 0;
1568 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
1569 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
1570 }
1571 if (error) {
1572 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 goto error_return;
1574 }
1575
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001576 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001577 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 /*
1580 * Check whether the directory allows new symlinks or not.
1581 */
1582 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
1583 error = XFS_ERROR(EPERM);
1584 goto error_return;
1585 }
1586
1587 /*
1588 * Reserve disk quota : blocks and inode.
1589 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001590 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 if (error)
1592 goto error_return;
1593
1594 /*
1595 * Check for ability to enter directory entry, if no space reserved.
1596 */
Barry Naujok556b8b12008-04-10 12:22:07 +10001597 error = xfs_dir_canenter(tp, dp, link_name, resblks);
1598 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 goto error_return;
1600 /*
1601 * Initialize the bmap freelist prior to calling either
1602 * bmapi or the directory create code.
1603 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06001604 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 /*
1607 * Allocate an inode for the symlink.
1608 */
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001609 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT), 1, 0,
1610 prid, resblks > 0, &ip, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (error) {
1612 if (error == ENOSPC)
1613 goto error_return;
1614 goto error1;
1615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Christoph Hellwig993386c2007-08-28 16:12:30 +10001617 /*
1618 * An error after we've joined dp to the transaction will result in the
1619 * transaction cancel unlocking dp so don't do it explicitly in the
1620 * error path.
1621 */
Christoph Hellwigddc34152011-09-19 15:00:54 +00001622 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001623 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 /*
1626 * Also attach the dquot(s) to it, if applicable.
1627 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001628 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 if (resblks)
1631 resblks -= XFS_IALLOC_SPACE_RES(mp);
1632 /*
1633 * If the symlink will fit into the inode, write it inline.
1634 */
1635 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
1636 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
1637 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
1638 ip->i_d.di_size = pathlen;
1639
1640 /*
1641 * The inode was initially created in extent format.
1642 */
1643 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
1644 ip->i_df.if_flags |= XFS_IFINLINE;
1645
1646 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
1647 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
1648
1649 } else {
1650 first_fsb = 0;
1651 nmaps = SYMLINK_MAPS;
1652
Dave Chinnerc0dc7822011-09-18 20:40:52 +00001653 error = xfs_bmapi_write(tp, ip, first_fsb, fs_blocks,
1654 XFS_BMAPI_METADATA, &first_block, resblks,
1655 mval, &nmaps, &free_list);
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001656 if (error)
1657 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 if (resblks)
1660 resblks -= fs_blocks;
1661 ip->i_d.di_size = pathlen;
1662 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1663
1664 cur_chunk = target_path;
1665 for (n = 0; n < nmaps; n++) {
1666 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
1667 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
1668 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
1669 BTOBB(byte_cnt), 0);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001670 if (!bp) {
1671 error = ENOMEM;
1672 goto error2;
1673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if (pathlen < byte_cnt) {
1675 byte_cnt = pathlen;
1676 }
1677 pathlen -= byte_cnt;
1678
Chandra Seetharaman62926042011-07-22 23:40:15 +00001679 memcpy(bp->b_addr, cur_chunk, byte_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 cur_chunk += byte_cnt;
1681
1682 xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
1683 }
1684 }
1685
1686 /*
1687 * Create the directory entry for the symlink.
1688 */
Barry Naujok556b8b12008-04-10 12:22:07 +10001689 error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
1690 &first_block, &free_list, resblks);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001691 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001692 goto error2;
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001693 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1695
1696 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 * If this is a synchronous mount, make sure that the
1698 * symlink transaction goes to disk before returning to
1699 * the user.
1700 */
1701 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1702 xfs_trans_set_sync(tp);
1703 }
1704
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001705 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 if (error) {
1707 goto error2;
1708 }
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001709 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001710 xfs_qm_dqrele(udqp);
1711 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Christoph Hellwig288699f2010-06-23 18:11:15 +10001713 *ipp = ip;
1714 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716 error2:
1717 IRELE(ip);
1718 error1:
1719 xfs_bmap_cancel(&free_list);
1720 cancel_flags |= XFS_TRANS_ABORT;
1721 error_return:
1722 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001723 xfs_qm_dqrele(udqp);
1724 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Christoph Hellwig993386c2007-08-28 16:12:30 +10001726 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001728 std_return:
1729 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730}
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732int
Christoph Hellwig993386c2007-08-28 16:12:30 +10001733xfs_set_dmattrs(
1734 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 u_int evmask,
Christoph Hellwig993386c2007-08-28 16:12:30 +10001736 u_int16_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001738 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 int error;
1741
1742 if (!capable(CAP_SYS_ADMIN))
1743 return XFS_ERROR(EPERM);
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 if (XFS_FORCED_SHUTDOWN(mp))
1746 return XFS_ERROR(EIO);
1747
1748 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
1749 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
1750 if (error) {
1751 xfs_trans_cancel(tp, 0);
1752 return error;
1753 }
1754 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +00001755 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Christoph Hellwig613d7042007-10-11 17:44:08 +10001757 ip->i_d.di_dmevmask = evmask;
1758 ip->i_d.di_dmstate = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001761 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
1763 return error;
1764}
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766/*
1767 * xfs_alloc_file_space()
1768 * This routine allocates disk space for the given file.
1769 *
1770 * If alloc_type == 0, this request is for an ALLOCSP type
1771 * request which will change the file size. In this case, no
1772 * DMAPI event will be generated by the call. A TRUNCATE event
1773 * will be generated later by xfs_setattr.
1774 *
1775 * If alloc_type != 0, this request is for a RESVSP type
1776 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
1777 * lower block boundary byte address is less than the file's
1778 * length.
1779 *
1780 * RETURNS:
1781 * 0 on success
1782 * errno on error
1783 *
1784 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001785STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786xfs_alloc_file_space(
1787 xfs_inode_t *ip,
1788 xfs_off_t offset,
1789 xfs_off_t len,
1790 int alloc_type,
1791 int attr_flags)
1792{
Nathan Scottdd9f4382006-01-11 15:28:28 +11001793 xfs_mount_t *mp = ip->i_mount;
1794 xfs_off_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 xfs_filblks_t allocated_fsb;
1796 xfs_filblks_t allocatesize_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001797 xfs_extlen_t extsz, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 xfs_fileoff_t startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001799 xfs_fsblock_t firstfsb;
1800 int nimaps;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001801 int quota_flag;
1802 int rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 xfs_trans_t *tp;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001804 xfs_bmbt_irec_t imaps[1], *imapp;
1805 xfs_bmap_free_t free_list;
1806 uint qblocks, resblks, resrtextents;
1807 int committed;
1808 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001810 trace_xfs_alloc_file_space(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 if (XFS_FORCED_SHUTDOWN(mp))
1813 return XFS_ERROR(EIO);
1814
Christoph Hellwig7d095252009-06-08 15:33:32 +02001815 error = xfs_qm_dqattach(ip, 0);
1816 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return error;
1818
1819 if (len <= 0)
1820 return XFS_ERROR(EINVAL);
1821
David Chinner957d0eb2007-06-18 16:50:37 +10001822 rt = XFS_IS_REALTIME_INODE(ip);
1823 extsz = xfs_get_extsz_hint(ip);
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 count = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 imapp = &imaps[0];
Nathan Scottdd9f4382006-01-11 15:28:28 +11001827 nimaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
1829 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001832 * Allocate file space until done or until there is an error
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 while (allocatesize_fsb && !error) {
Nathan Scottdd9f4382006-01-11 15:28:28 +11001835 xfs_fileoff_t s, e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Nathan Scottdd9f4382006-01-11 15:28:28 +11001837 /*
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11001838 * Determine space reservations for data/realtime.
Nathan Scottdd9f4382006-01-11 15:28:28 +11001839 */
1840 if (unlikely(extsz)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 s = startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001842 do_div(s, extsz);
1843 s *= extsz;
1844 e = startoffset_fsb + allocatesize_fsb;
1845 if ((temp = do_mod(startoffset_fsb, extsz)))
1846 e += temp;
1847 if ((temp = do_mod(e, extsz)))
1848 e += extsz - temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 } else {
Nathan Scottdd9f4382006-01-11 15:28:28 +11001850 s = 0;
1851 e = allocatesize_fsb;
1852 }
1853
Dave Chinner72656c42010-09-03 12:19:33 +10001854 /*
1855 * The transaction reservation is limited to a 32-bit block
1856 * count, hence we need to limit the number of blocks we are
1857 * trying to reserve to avoid an overflow. We can't allocate
1858 * more than @nimaps extents, and an extent is limited on disk
1859 * to MAXEXTLEN (21 bits), so use that to enforce the limit.
1860 */
1861 resblks = min_t(xfs_fileoff_t, (e - s), (MAXEXTLEN * nimaps));
Nathan Scottdd9f4382006-01-11 15:28:28 +11001862 if (unlikely(rt)) {
Dave Chinner72656c42010-09-03 12:19:33 +10001863 resrtextents = qblocks = resblks;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001864 resrtextents /= mp->m_sb.sb_rextsize;
1865 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1866 quota_flag = XFS_QMOPT_RES_RTBLKS;
1867 } else {
1868 resrtextents = 0;
Dave Chinner72656c42010-09-03 12:19:33 +10001869 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001870 quota_flag = XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872
1873 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001874 * Allocate and setup the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 */
1876 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001877 error = xfs_trans_reserve(tp, resblks,
1878 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 XFS_TRANS_PERM_LOG_RES,
1880 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001882 * Check for running out of space
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 */
1884 if (error) {
1885 /*
1886 * Free the transaction structure.
1887 */
1888 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
1889 xfs_trans_cancel(tp, 0);
1890 break;
1891 }
1892 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001893 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
1894 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 if (error)
1896 goto error1;
1897
Christoph Hellwigddc34152011-09-19 15:00:54 +00001898 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Eric Sandeen9d87c312009-01-14 23:22:07 -06001900 xfs_bmap_init(&free_list, &firstfsb);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00001901 error = xfs_bmapi_write(tp, ip, startoffset_fsb,
1902 allocatesize_fsb, alloc_type, &firstfsb,
1903 0, imapp, &nimaps, &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (error) {
1905 goto error0;
1906 }
1907
1908 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001909 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001911 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 if (error) {
1913 goto error0;
1914 }
1915
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001916 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1918 if (error) {
1919 break;
1920 }
1921
1922 allocated_fsb = imapp->br_blockcount;
1923
Nathan Scottdd9f4382006-01-11 15:28:28 +11001924 if (nimaps == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 error = XFS_ERROR(ENOSPC);
1926 break;
1927 }
1928
1929 startoffset_fsb += allocated_fsb;
1930 allocatesize_fsb -= allocated_fsb;
1931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 return error;
1934
Nathan Scottdd9f4382006-01-11 15:28:28 +11001935error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 xfs_bmap_cancel(&free_list);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001937 xfs_trans_unreserve_quota_nblks(tp, ip, qblocks, 0, quota_flag);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001938
1939error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1941 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001942 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943}
1944
1945/*
1946 * Zero file bytes between startoff and endoff inclusive.
1947 * The iolock is held exclusive and no blocks are buffered.
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001948 *
1949 * This function is used by xfs_free_file_space() to zero
1950 * partial blocks when the range to free is not block aligned.
1951 * When unreserving space with boundaries that are not block
1952 * aligned we round up the start and round down the end
1953 * boundaries and then use this function to zero the parts of
1954 * the blocks that got dropped during the rounding.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 */
1956STATIC int
1957xfs_zero_remaining_bytes(
1958 xfs_inode_t *ip,
1959 xfs_off_t startoff,
1960 xfs_off_t endoff)
1961{
1962 xfs_bmbt_irec_t imap;
1963 xfs_fileoff_t offset_fsb;
1964 xfs_off_t lastoffset;
1965 xfs_off_t offset;
1966 xfs_buf_t *bp;
1967 xfs_mount_t *mp = ip->i_mount;
1968 int nimap;
1969 int error = 0;
1970
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001971 /*
1972 * Avoid doing I/O beyond eof - it's not necessary
1973 * since nothing can read beyond eof. The space will
1974 * be zeroed when the file is extended anyway.
1975 */
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001976 if (startoff >= XFS_ISIZE(ip))
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001977 return 0;
1978
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001979 if (endoff > XFS_ISIZE(ip))
1980 endoff = XFS_ISIZE(ip);
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001981
Dave Chinner686865f2010-09-24 20:07:47 +10001982 bp = xfs_buf_get_uncached(XFS_IS_REALTIME_INODE(ip) ?
1983 mp->m_rtdev_targp : mp->m_ddev_targp,
1984 mp->m_sb.sb_blocksize, XBF_DONT_BLOCK);
Lachlan McIlroyc6422612008-12-05 13:16:15 +11001985 if (!bp)
1986 return XFS_ERROR(ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Christoph Hellwigc8da0fa2011-07-08 14:36:25 +02001988 xfs_buf_unlock(bp);
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
1991 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1992 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001993 error = xfs_bmapi_read(ip, offset_fsb, 1, &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 if (error || nimap < 1)
1995 break;
1996 ASSERT(imap.br_blockcount >= 1);
1997 ASSERT(imap.br_startoff == offset_fsb);
1998 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
1999 if (lastoffset > endoff)
2000 lastoffset = endoff;
2001 if (imap.br_startblock == HOLESTARTBLOCK)
2002 continue;
2003 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2004 if (imap.br_state == XFS_EXT_UNWRITTEN)
2005 continue;
2006 XFS_BUF_UNDONE(bp);
2007 XFS_BUF_UNWRITE(bp);
2008 XFS_BUF_READ(bp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002009 XFS_BUF_SET_ADDR(bp, xfs_fsb_to_db(ip, imap.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00002011 error = xfs_buf_iowait(bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10002012 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +00002013 xfs_buf_ioerror_alert(bp,
2014 "xfs_zero_remaining_bytes(read)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 break;
2016 }
Chandra Seetharaman62926042011-07-22 23:40:15 +00002017 memset(bp->b_addr +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
2019 0, lastoffset - offset + 1);
2020 XFS_BUF_UNDONE(bp);
2021 XFS_BUF_UNREAD(bp);
2022 XFS_BUF_WRITE(bp);
2023 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00002024 error = xfs_buf_iowait(bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10002025 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +00002026 xfs_buf_ioerror_alert(bp,
2027 "xfs_zero_remaining_bytes(write)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 break;
2029 }
2030 }
2031 xfs_buf_free(bp);
2032 return error;
2033}
2034
2035/*
2036 * xfs_free_file_space()
2037 * This routine frees disk space for the given file.
2038 *
2039 * This routine is only called by xfs_change_file_space
2040 * for an UNRESVSP type call.
2041 *
2042 * RETURNS:
2043 * 0 on success
2044 * errno on error
2045 *
2046 */
2047STATIC int
2048xfs_free_file_space(
2049 xfs_inode_t *ip,
2050 xfs_off_t offset,
2051 xfs_off_t len,
2052 int attr_flags)
2053{
2054 int committed;
2055 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 xfs_fileoff_t endoffset_fsb;
2057 int error;
2058 xfs_fsblock_t firstfsb;
2059 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 xfs_bmbt_irec_t imap;
2061 xfs_off_t ioffset;
2062 xfs_extlen_t mod=0;
2063 xfs_mount_t *mp;
2064 int nimap;
2065 uint resblks;
Nathan Scott673cdf52006-09-28 10:56:26 +10002066 uint rounding;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 int rt;
2068 xfs_fileoff_t startoffset_fsb;
2069 xfs_trans_t *tp;
Dean Roehrich5fcbab32005-05-05 13:27:19 -07002070 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 mp = ip->i_mount;
2073
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10002074 trace_xfs_free_file_space(ip);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10002075
Christoph Hellwig7d095252009-06-08 15:33:32 +02002076 error = xfs_qm_dqattach(ip, 0);
2077 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 return error;
2079
2080 error = 0;
2081 if (len <= 0) /* if nothing being freed */
2082 return error;
Eric Sandeen71ddabb2007-11-23 16:29:42 +11002083 rt = XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
Christoph Hellwig288699f2010-06-23 18:11:15 +10002085 endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002087 if (attr_flags & XFS_ATTR_NOLOCK)
Dean Roehrich5fcbab32005-05-05 13:27:19 -07002088 need_iolock = 0;
Yingping Lu9fa80462006-03-22 12:44:35 +11002089 if (need_iolock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwig25e41b32008-12-03 12:20:39 +01002091 /* wait for the completion of any pending DIOs */
Christoph Hellwig4a06fd22011-08-23 08:28:13 +00002092 inode_dio_wait(VFS_I(ip));
Yingping Lu9fa80462006-03-22 12:44:35 +11002093 }
Dean Roehrich5fcbab32005-05-05 13:27:19 -07002094
Tim Shimmine6a4b372007-11-23 16:30:42 +11002095 rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 ioffset = offset & ~(rounding - 1);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10002097
Christoph Hellwigdf80c932008-08-13 16:22:09 +10002098 if (VN_CACHED(VFS_I(ip)) != 0) {
Tim Shimmine6a4b372007-11-23 16:30:42 +11002099 error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10002100 if (error)
2101 goto out_unlock_iolock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10002102 }
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 /*
2105 * Need to zero the stuff we're not freeing, on disk.
Malcolm Parsons9da096f2009-03-29 09:55:42 +02002106 * If it's a realtime file & can't use unwritten extents then we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 * actually need to zero the extent edges. Otherwise xfs_bunmapi
2108 * will take care of it for us.
2109 */
Eric Sandeen62118702008-03-06 13:44:28 +11002110 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00002112 error = xfs_bmapi_read(ip, startoffset_fsb, 1,
2113 &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 if (error)
2115 goto out_unlock_iolock;
2116 ASSERT(nimap == 0 || nimap == 1);
2117 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
2118 xfs_daddr_t block;
2119
2120 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2121 block = imap.br_startblock;
2122 mod = do_div(block, mp->m_sb.sb_rextsize);
2123 if (mod)
2124 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
2125 }
2126 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00002127 error = xfs_bmapi_read(ip, endoffset_fsb - 1, 1,
2128 &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if (error)
2130 goto out_unlock_iolock;
2131 ASSERT(nimap == 0 || nimap == 1);
2132 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
2133 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2134 mod++;
2135 if (mod && (mod != mp->m_sb.sb_rextsize))
2136 endoffset_fsb -= mod;
2137 }
2138 }
2139 if ((done = (endoffset_fsb <= startoffset_fsb)))
2140 /*
2141 * One contiguous piece to clear
2142 */
2143 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
2144 else {
2145 /*
2146 * Some full blocks, possibly two pieces to clear
2147 */
2148 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
2149 error = xfs_zero_remaining_bytes(ip, offset,
2150 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
2151 if (!error &&
2152 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
2153 error = xfs_zero_remaining_bytes(ip,
2154 XFS_FSB_TO_B(mp, endoffset_fsb),
2155 offset + len - 1);
2156 }
2157
2158 /*
2159 * free file space until done or until there is an error
2160 */
2161 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
2162 while (!error && !done) {
2163
2164 /*
David Chinner91ebecc2007-07-19 16:28:30 +10002165 * allocate and setup the transaction. Allow this
2166 * transaction to dip into the reserve blocks to ensure
2167 * the freeing of the space succeeds at ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 */
2169 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
David Chinner91ebecc2007-07-19 16:28:30 +10002170 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 error = xfs_trans_reserve(tp,
2172 resblks,
2173 XFS_WRITE_LOG_RES(mp),
2174 0,
2175 XFS_TRANS_PERM_LOG_RES,
2176 XFS_WRITE_LOG_COUNT);
2177
2178 /*
2179 * check for running out of space
2180 */
2181 if (error) {
2182 /*
2183 * Free the transaction structure.
2184 */
2185 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
2186 xfs_trans_cancel(tp, 0);
2187 break;
2188 }
2189 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002190 error = xfs_trans_reserve_quota(tp, mp,
2191 ip->i_udquot, ip->i_gdquot,
2192 resblks, 0, XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 if (error)
2194 goto error1;
2195
Christoph Hellwigddc34152011-09-19 15:00:54 +00002196 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 /*
2199 * issue the bunmapi() call to free the blocks
2200 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06002201 xfs_bmap_init(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10002202 error = xfs_bunmapi(tp, ip, startoffset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 endoffset_fsb - startoffset_fsb,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002204 0, 2, &firstfsb, &free_list, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 if (error) {
2206 goto error0;
2207 }
2208
2209 /*
2210 * complete the transaction
2211 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002212 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 if (error) {
2214 goto error0;
2215 }
2216
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002217 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2219 }
2220
2221 out_unlock_iolock:
2222 if (need_iolock)
2223 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
2224 return error;
2225
2226 error0:
2227 xfs_bmap_cancel(&free_list);
2228 error1:
2229 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
2230 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
2231 XFS_ILOCK_EXCL);
2232 return error;
2233}
2234
2235/*
2236 * xfs_change_file_space()
2237 * This routine allocates or frees disk space for the given file.
2238 * The user specified parameters are checked for alignment and size
2239 * limitations.
2240 *
2241 * RETURNS:
2242 * 0 on success
2243 * errno on error
2244 *
2245 */
2246int
2247xfs_change_file_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002248 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 int cmd,
2250 xfs_flock64_t *bf,
2251 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 int attr_flags)
2253{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002254 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 int clrprealloc;
2256 int error;
2257 xfs_fsize_t fsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 int setprealloc;
2259 xfs_off_t startoffset;
2260 xfs_off_t llen;
2261 xfs_trans_t *tp;
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002262 struct iattr iattr;
Dave Chinner44722352010-08-24 12:02:11 +10002263 int prealloc_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Christoph Hellwig993386c2007-08-28 16:12:30 +10002265 if (!S_ISREG(ip->i_d.di_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 return XFS_ERROR(EINVAL);
2267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 switch (bf->l_whence) {
2269 case 0: /*SEEK_SET*/
2270 break;
2271 case 1: /*SEEK_CUR*/
2272 bf->l_start += offset;
2273 break;
2274 case 2: /*SEEK_END*/
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002275 bf->l_start += XFS_ISIZE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 break;
2277 default:
2278 return XFS_ERROR(EINVAL);
2279 }
2280
2281 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
2282
2283 if ( (bf->l_start < 0)
2284 || (bf->l_start > XFS_MAXIOFFSET(mp))
2285 || (bf->l_start + llen < 0)
2286 || (bf->l_start + llen > XFS_MAXIOFFSET(mp)))
2287 return XFS_ERROR(EINVAL);
2288
2289 bf->l_whence = 0;
2290
2291 startoffset = bf->l_start;
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002292 fsize = XFS_ISIZE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
2294 /*
2295 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
2296 * file space.
2297 * These calls do NOT zero the data space allocated to the file,
2298 * nor do they change the file size.
2299 *
2300 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
2301 * space.
2302 * These calls cause the new file data to be zeroed and the file
2303 * size to be changed.
2304 */
2305 setprealloc = clrprealloc = 0;
Dave Chinner44722352010-08-24 12:02:11 +10002306 prealloc_type = XFS_BMAPI_PREALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 switch (cmd) {
Dave Chinner44722352010-08-24 12:02:11 +10002309 case XFS_IOC_ZERO_RANGE:
2310 prealloc_type |= XFS_BMAPI_CONVERT;
2311 xfs_tosspages(ip, startoffset, startoffset + bf->l_len, 0);
2312 /* FALLTHRU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 case XFS_IOC_RESVSP:
2314 case XFS_IOC_RESVSP64:
2315 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
Dave Chinner44722352010-08-24 12:02:11 +10002316 prealloc_type, attr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 if (error)
2318 return error;
2319 setprealloc = 1;
2320 break;
2321
2322 case XFS_IOC_UNRESVSP:
2323 case XFS_IOC_UNRESVSP64:
2324 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
2325 attr_flags)))
2326 return error;
2327 break;
2328
2329 case XFS_IOC_ALLOCSP:
2330 case XFS_IOC_ALLOCSP64:
2331 case XFS_IOC_FREESP:
2332 case XFS_IOC_FREESP64:
2333 if (startoffset > fsize) {
2334 error = xfs_alloc_file_space(ip, fsize,
2335 startoffset - fsize, 0, attr_flags);
2336 if (error)
2337 break;
2338 }
2339
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002340 iattr.ia_valid = ATTR_SIZE;
2341 iattr.ia_size = startoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Christoph Hellwigc4ed4242011-07-08 14:34:23 +02002343 error = xfs_setattr_size(ip, &iattr, attr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
2345 if (error)
2346 return error;
2347
2348 clrprealloc = 1;
2349 break;
2350
2351 default:
2352 ASSERT(0);
2353 return XFS_ERROR(EINVAL);
2354 }
2355
2356 /*
2357 * update the inode timestamp, mode, and prealloc flag bits
2358 */
2359 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
2360
2361 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
2362 0, 0, 0))) {
2363 /* ASSERT(0); */
2364 xfs_trans_cancel(tp, 0);
2365 return error;
2366 }
2367
2368 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +00002369 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002371 if ((attr_flags & XFS_ATTR_DMI) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 ip->i_d.di_mode &= ~S_ISUID;
2373
2374 /*
2375 * Note that we don't have to worry about mandatory
2376 * file locking being disabled here because we only
2377 * clear the S_ISGID bit if the Group execute bit is
2378 * on, but if it was on then mandatory locking wouldn't
2379 * have been enabled.
2380 */
2381 if (ip->i_d.di_mode & S_IXGRP)
2382 ip->i_d.di_mode &= ~S_ISGID;
2383
Dave Chinnerdcd79a12010-09-28 12:27:25 +10002384 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 }
2386 if (setprealloc)
2387 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
2388 else if (clrprealloc)
2389 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
2390
2391 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Dave Chinner82878892011-03-26 09:13:08 +11002392 if (attr_flags & XFS_ATTR_SYNC)
2393 xfs_trans_set_sync(tp);
Christoph Hellwig23bb0be2011-09-18 20:47:51 +00002394 return xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395}