blob: 63874a87b3782fd83ff2138e01ce2fb75d215374 [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) {
90 xfs_ioerror_alert("xfs_readlink",
91 ip->i_mount, bp, XFS_BUF_ADDR(bp));
92 xfs_buf_relse(bp);
93 goto out;
94 }
95 if (pathlen < byte_cnt)
96 byte_cnt = pathlen;
97 pathlen -= byte_cnt;
98
Chandra Seetharaman62926042011-07-22 23:40:15 +000099 memcpy(link, bp->b_addr, byte_cnt);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000100 xfs_buf_relse(bp);
101 }
102
103 link[ip->i_d.di_size] = '\0';
104 error = 0;
105
106 out:
107 return error;
108}
109
Christoph Hellwig993386c2007-08-28 16:12:30 +1000110int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111xfs_readlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000112 xfs_inode_t *ip,
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000113 char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000115 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000119 trace_xfs_readlink(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 if (XFS_FORCED_SHUTDOWN(mp))
122 return XFS_ERROR(EIO);
123
124 xfs_ilock(ip, XFS_ILOCK_SHARED);
125
Al Viroabbede12011-07-26 02:31:30 -0400126 ASSERT(S_ISLNK(ip->i_d.di_mode));
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000127 ASSERT(ip->i_d.di_size <= MAXPATHLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000129 pathlen = ip->i_d.di_size;
130 if (!pathlen)
131 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 if (ip->i_df.if_flags & XFS_IFINLINE) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000134 memcpy(link, ip->i_df.if_u1.if_data, pathlen);
135 link[pathlen] = '\0';
136 } else {
137 error = xfs_readlink_bmap(ip, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000140 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return error;
143}
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/*
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000146 * Flags for xfs_free_eofblocks
147 */
148#define XFS_FREE_EOF_TRYLOCK (1<<0)
149
150/*
David Chinner92dfe8d2007-05-24 15:22:19 +1000151 * This is called by xfs_inactive to free any blocks beyond eof
152 * when the link count isn't zero and by xfs_dm_punch_hole() when
153 * punching a hole to EOF.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 */
Eric Sandeend96f8f82009-07-02 00:09:33 -0500155STATIC int
David Chinner92dfe8d2007-05-24 15:22:19 +1000156xfs_free_eofblocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 xfs_mount_t *mp,
David Chinner92dfe8d2007-05-24 15:22:19 +1000158 xfs_inode_t *ip,
159 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 xfs_trans_t *tp;
162 int error;
163 xfs_fileoff_t end_fsb;
164 xfs_fileoff_t last_fsb;
165 xfs_filblks_t map_len;
166 int nimaps;
167 xfs_bmbt_irec_t imap;
168
169 /*
170 * Figure out if there are any blocks beyond the end
171 * of the file. If not, then there is nothing to do.
172 */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000173 end_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)ip->i_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 last_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
Kulikov Vasiliy3f348852010-07-20 17:54:28 +1000175 if (last_fsb <= end_fsb)
Jesper Juhl014c2542006-01-15 02:37:08 +0100176 return 0;
Kulikov Vasiliy3f348852010-07-20 17:54:28 +1000177 map_len = last_fsb - end_fsb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 nimaps = 1;
180 xfs_ilock(ip, XFS_ILOCK_SHARED);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000181 error = xfs_bmapi_read(ip, end_fsb, map_len, &imap, &nimaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 xfs_iunlock(ip, XFS_ILOCK_SHARED);
183
184 if (!error && (nimaps != 0) &&
Yingping Lu68bdb6e2006-01-11 15:38:31 +1100185 (imap.br_startblock != HOLESTARTBLOCK ||
186 ip->i_delayed_blks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /*
188 * Attach the dquots to the inode up front.
189 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200190 error = xfs_qm_dqattach(ip, 0);
191 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100192 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 /*
195 * There are blocks after the end of file.
196 * Free them up now by truncating the file to
197 * its current size.
198 */
199 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
200
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000201 if (flags & XFS_FREE_EOF_TRYLOCK) {
202 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
203 xfs_trans_cancel(tp, 0);
204 return 0;
205 }
206 } else {
David Chinner92dfe8d2007-05-24 15:22:19 +1000207 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 error = xfs_trans_reserve(tp, 0,
211 XFS_ITRUNCATE_LOG_RES(mp),
212 0, XFS_TRANS_PERM_LOG_RES,
213 XFS_ITRUNCATE_LOG_COUNT);
214 if (error) {
215 ASSERT(XFS_FORCED_SHUTDOWN(mp));
216 xfs_trans_cancel(tp, 0);
217 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100218 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220
221 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig898621d2010-06-24 11:36:58 +1000222 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200224 error = xfs_itruncate_data(&tp, ip, ip->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (error) {
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200226 /*
227 * If we get an error at this point we simply don't
228 * bother truncating the file.
229 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 xfs_trans_cancel(tp,
231 (XFS_TRANS_RELEASE_LOG_RES |
232 XFS_TRANS_ABORT));
233 } else {
234 error = xfs_trans_commit(tp,
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000235 XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000237 xfs_iunlock(ip, XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100239 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
242/*
243 * Free a symlink that has blocks associated with it.
244 */
245STATIC int
246xfs_inactive_symlink_rmt(
247 xfs_inode_t *ip,
248 xfs_trans_t **tpp)
249{
250 xfs_buf_t *bp;
251 int committed;
252 int done;
253 int error;
254 xfs_fsblock_t first_block;
255 xfs_bmap_free_t free_list;
256 int i;
257 xfs_mount_t *mp;
258 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
259 int nmaps;
260 xfs_trans_t *ntp;
261 int size;
262 xfs_trans_t *tp;
263
264 tp = *tpp;
265 mp = ip->i_mount;
266 ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip));
267 /*
268 * We're freeing a symlink that has some
269 * blocks allocated to it. Free the
270 * blocks here. We know that we've got
271 * either 1 or 2 extents and that we can
272 * free them all in one bunmapi call.
273 */
274 ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
275 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
276 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
277 ASSERT(XFS_FORCED_SHUTDOWN(mp));
278 xfs_trans_cancel(tp, 0);
279 *tpp = NULL;
280 return error;
281 }
282 /*
283 * Lock the inode, fix the size, and join it to the transaction.
284 * Hold it so in the normal path, we still have it locked for
285 * the second transaction. In the error paths we need it
286 * held so the cancel won't rele it, see below.
287 */
288 xfs_ilock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
289 size = (int)ip->i_d.di_size;
290 ip->i_d.di_size = 0;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000291 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
293 /*
294 * Find the block(s) so we can inval and unmap them.
295 */
296 done = 0;
Eric Sandeen9d87c312009-01-14 23:22:07 -0600297 xfs_bmap_init(&free_list, &first_block);
Tobias Klausere8c96f82006-03-24 03:15:34 -0800298 nmaps = ARRAY_SIZE(mval);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000299 error = xfs_bmapi_read(ip, 0, XFS_B_TO_FSB(mp, size),
300 mval, &nmaps, 0);
301 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 goto error0;
303 /*
304 * Invalidate the block(s).
305 */
306 for (i = 0; i < nmaps; i++) {
307 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
308 XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
309 XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000310 if (!bp) {
311 error = ENOMEM;
312 goto error1;
313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 xfs_trans_binval(tp, bp);
315 }
316 /*
317 * Unmap the dead block(s) to the free_list.
318 */
319 if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000320 &first_block, &free_list, &done)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 goto error1;
322 ASSERT(done);
323 /*
324 * Commit the first transaction. This logs the EFI and the inode.
325 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100326 if ((error = xfs_bmap_finish(&tp, &free_list, &committed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 goto error1;
328 /*
329 * The transaction must have been committed, since there were
330 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
331 * The new tp has the extent freeing and EFDs.
332 */
333 ASSERT(committed);
334 /*
335 * The first xact was committed, so add the inode to the new one.
336 * Mark it dirty so it will be logged and moved forward in the log as
337 * part of every commit.
338 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000339 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
341 /*
342 * Get a new, empty transaction to return to our caller.
343 */
344 ntp = xfs_trans_dup(tp);
345 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000346 * Commit the transaction containing extent freeing and EFDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 * If we get an error on the commit here or on the reserve below,
348 * we need to unlock the inode since the new transaction doesn't
349 * have the inode attached.
350 */
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000351 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 tp = ntp;
353 if (error) {
354 ASSERT(XFS_FORCED_SHUTDOWN(mp));
355 goto error0;
356 }
357 /*
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100358 * transaction commit worked ok so we can drop the extra ticket
359 * reference that we gained in xfs_trans_dup()
360 */
361 xfs_log_ticket_put(tp->t_ticket);
362
363 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 * Remove the memory for extent descriptions (just bookkeeping).
365 */
366 if (ip->i_df.if_bytes)
367 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
368 ASSERT(ip->i_df.if_bytes == 0);
369 /*
370 * Put an itruncate log reservation in the new transaction
371 * for our caller.
372 */
373 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
374 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
375 ASSERT(XFS_FORCED_SHUTDOWN(mp));
376 goto error0;
377 }
378 /*
379 * Return with the inode locked but not joined to the transaction.
380 */
381 *tpp = tp;
382 return 0;
383
384 error1:
385 xfs_bmap_cancel(&free_list);
386 error0:
387 /*
388 * Have to come here with the inode locked and either
389 * (held and in the transaction) or (not in the transaction).
390 * If the inode isn't held then cancel would iput it, but
391 * that's wrong since this is inactive and the vnode ref
392 * count is 0 already.
393 * Cancel won't do anything to the inode if held, but it still
394 * needs to be locked until the cancel is done, if it was
395 * joined to the transaction.
396 */
397 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
398 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
399 *tpp = NULL;
400 return error;
401
402}
403
404STATIC int
405xfs_inactive_symlink_local(
406 xfs_inode_t *ip,
407 xfs_trans_t **tpp)
408{
409 int error;
410
411 ASSERT(ip->i_d.di_size <= XFS_IFORK_DSIZE(ip));
412 /*
413 * We're freeing a symlink which fit into
414 * the inode. Just free the memory used
415 * to hold the old symlink.
416 */
417 error = xfs_trans_reserve(*tpp, 0,
418 XFS_ITRUNCATE_LOG_RES(ip->i_mount),
419 0, XFS_TRANS_PERM_LOG_RES,
420 XFS_ITRUNCATE_LOG_COUNT);
421
422 if (error) {
423 xfs_trans_cancel(*tpp, 0);
424 *tpp = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +0100425 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
428
429 /*
430 * Zero length symlinks _can_ exist.
431 */
432 if (ip->i_df.if_bytes > 0) {
433 xfs_idata_realloc(ip,
434 -(ip->i_df.if_bytes),
435 XFS_DATA_FORK);
436 ASSERT(ip->i_df.if_bytes == 0);
437 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100438 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441STATIC int
442xfs_inactive_attrs(
443 xfs_inode_t *ip,
444 xfs_trans_t **tpp)
445{
446 xfs_trans_t *tp;
447 int error;
448 xfs_mount_t *mp;
449
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000450 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 tp = *tpp;
452 mp = ip->i_mount;
453 ASSERT(ip->i_d.di_forkoff != 0);
David Chinnere5720ee2008-04-10 12:21:18 +1000454 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 xfs_iunlock(ip, XFS_ILOCK_EXCL);
David Chinnere5720ee2008-04-10 12:21:18 +1000456 if (error)
457 goto error_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 error = xfs_attr_inactive(ip);
David Chinnere5720ee2008-04-10 12:21:18 +1000460 if (error)
461 goto error_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
464 error = xfs_trans_reserve(tp, 0,
465 XFS_IFREE_LOG_RES(mp),
466 0, XFS_TRANS_PERM_LOG_RES,
467 XFS_INACTIVE_LOG_COUNT);
David Chinnere5720ee2008-04-10 12:21:18 +1000468 if (error)
469 goto error_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig898621d2010-06-24 11:36:58 +1000472 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
474
475 ASSERT(ip->i_d.di_anextents == 0);
476
477 *tpp = tp;
Jesper Juhl014c2542006-01-15 02:37:08 +0100478 return 0;
David Chinnere5720ee2008-04-10 12:21:18 +1000479
480error_cancel:
481 ASSERT(XFS_FORCED_SHUTDOWN(mp));
482 xfs_trans_cancel(tp, 0);
483error_unlock:
484 *tpp = NULL;
485 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
486 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Christoph Hellwig993386c2007-08-28 16:12:30 +1000489int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490xfs_release(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000491 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Christoph Hellwig993386c2007-08-28 16:12:30 +1000493 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 int error;
495
Christoph Hellwig42173f62008-04-22 17:33:25 +1000496 if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000500 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return 0;
502
David Chinner2a82b8b2007-07-11 11:09:12 +1000503 if (!XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000504 int truncated;
505
David Chinner2a82b8b2007-07-11 11:09:12 +1000506 /*
507 * If we are using filestreams, and we have an unlinked
508 * file that we are processing the last close on, then nothing
509 * will be able to reopen and write to this file. Purge this
510 * inode from the filestreams cache so that it doesn't delay
511 * teardown of the inode.
512 */
513 if ((ip->i_d.di_nlink == 0) && xfs_inode_is_filestream(ip))
514 xfs_filestream_deassociate(ip);
515
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000516 /*
517 * If we previously truncated this file and removed old data
518 * in the process, we want to initiate "early" writeout on
519 * the last close. This is an attempt to combat the notorious
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300520 * NULL files problem which is particularly noticeable from a
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000521 * truncate down, buffered (re-)write (delalloc), followed by
522 * a crash. What we are effectively doing here is
523 * significantly reducing the time window where we'd otherwise
524 * be exposed to that problem.
525 */
Christoph Hellwig09262b42007-08-29 11:44:50 +1000526 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
Dave Chinnerdf4368a2011-06-23 01:35:00 +0000527 if (truncated) {
528 xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE);
529 if (VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0)
530 xfs_flush_pages(ip, 0, -1, XBF_ASYNC, FI_NONE);
531 }
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000532 }
533
Dave Chinner6e857562010-12-23 12:02:31 +1100534 if (ip->i_d.di_nlink == 0)
535 return 0;
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000536
Al Viroabbede12011-07-26 02:31:30 -0400537 if ((S_ISREG(ip->i_d.di_mode) &&
Dave Chinner6e857562010-12-23 12:02:31 +1100538 ((ip->i_size > 0) || (VN_CACHED(VFS_I(ip)) > 0 ||
539 ip->i_delayed_blks > 0)) &&
540 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
541 (!(ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)))) {
542
543 /*
544 * If we can't get the iolock just skip truncating the blocks
545 * past EOF because we could deadlock with the mmap_sem
546 * otherwise. We'll get another chance to drop them once the
547 * last reference to the inode is dropped, so we'll never leak
548 * blocks permanently.
549 *
550 * Further, check if the inode is being opened, written and
551 * closed frequently and we have delayed allocation blocks
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300552 * outstanding (e.g. streaming writes from the NFS server),
Dave Chinner6e857562010-12-23 12:02:31 +1100553 * truncating the blocks past EOF will cause fragmentation to
554 * occur.
555 *
556 * In this case don't do the truncation, either, but we have to
557 * be careful how we detect this case. Blocks beyond EOF show
558 * up as i_delayed_blks even when the inode is clean, so we
559 * need to truncate them away first before checking for a dirty
560 * release. Hence on the first dirty close we will still remove
561 * the speculative allocation, but after that we will leave it
562 * in place.
563 */
564 if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE))
565 return 0;
566
567 error = xfs_free_eofblocks(mp, ip,
568 XFS_FREE_EOF_TRYLOCK);
569 if (error)
570 return error;
571
572 /* delalloc blocks after truncation means it really is dirty */
573 if (ip->i_delayed_blks)
574 xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return 0;
577}
578
579/*
580 * xfs_inactive
581 *
582 * This is called when the vnode reference count for the vnode
583 * goes to zero. If the file has been unlinked, then it must
584 * now be truncated. Also, we clear all of the read-ahead state
585 * kept for the inode here since the file is now closed.
586 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000587int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588xfs_inactive(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000589 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000591 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 xfs_fsblock_t first_block;
593 int committed;
594 xfs_trans_t *tp;
595 xfs_mount_t *mp;
596 int error;
597 int truncate;
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /*
600 * If the inode is already free, then there can be nothing
601 * to clean up here.
602 */
Christoph Hellwigcb4c8cc2009-03-16 08:25:25 +0100603 if (ip->i_d.di_mode == 0 || is_bad_inode(VFS_I(ip))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 ASSERT(ip->i_df.if_real_bytes == 0);
605 ASSERT(ip->i_df.if_broot_bytes == 0);
606 return VN_INACTIVE_CACHE;
607 }
608
609 /*
610 * Only do a truncate if it's a regular file with
611 * some actual space in it. It's OK to look at the
612 * inode's fields without the lock because we're the
613 * only one with a reference to the inode.
614 */
615 truncate = ((ip->i_d.di_nlink == 0) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000616 ((ip->i_d.di_size != 0) || (ip->i_size != 0) ||
617 (ip->i_d.di_nextents > 0) || (ip->i_delayed_blks > 0)) &&
Al Viroabbede12011-07-26 02:31:30 -0400618 S_ISREG(ip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 mp = ip->i_mount;
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 error = 0;
623
624 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000625 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 goto out;
627
628 if (ip->i_d.di_nlink != 0) {
Al Viroabbede12011-07-26 02:31:30 -0400629 if ((S_ISREG(ip->i_d.di_mode) &&
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000630 ((ip->i_size > 0) || (VN_CACHED(VFS_I(ip)) > 0 ||
Yingping Lu68bdb6e2006-01-11 15:38:31 +1100631 ip->i_delayed_blks > 0)) &&
Nathan Scottdd9f4382006-01-11 15:28:28 +1100632 (ip->i_df.if_flags & XFS_IFEXTENTS) &&
633 (!(ip->i_d.di_flags &
634 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)) ||
635 (ip->i_delayed_blks != 0)))) {
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000636 error = xfs_free_eofblocks(mp, ip, 0);
David Chinner92dfe8d2007-05-24 15:22:19 +1000637 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100638 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640 goto out;
641 }
642
643 ASSERT(ip->i_d.di_nlink == 0);
644
Christoph Hellwig7d095252009-06-08 15:33:32 +0200645 error = xfs_qm_dqattach(ip, 0);
646 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100647 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
650 if (truncate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 xfs_ilock(ip, XFS_IOLOCK_EXCL);
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 error = xfs_trans_reserve(tp, 0,
654 XFS_ITRUNCATE_LOG_RES(mp),
655 0, XFS_TRANS_PERM_LOG_RES,
656 XFS_ITRUNCATE_LOG_COUNT);
657 if (error) {
658 /* Don't call itruncate_cleanup */
659 ASSERT(XFS_FORCED_SHUTDOWN(mp));
660 xfs_trans_cancel(tp, 0);
661 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100662 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
665 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig898621d2010-06-24 11:36:58 +1000666 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200668 error = xfs_itruncate_data(&tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (error) {
670 xfs_trans_cancel(tp,
671 XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
672 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100673 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
Al Viroabbede12011-07-26 02:31:30 -0400675 } else if (S_ISLNK(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 /*
678 * If we get an error while cleaning up a
679 * symlink we bail out.
680 */
681 error = (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) ?
682 xfs_inactive_symlink_rmt(ip, &tp) :
683 xfs_inactive_symlink_local(ip, &tp);
684
685 if (error) {
686 ASSERT(tp == NULL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100687 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689
Christoph Hellwig898621d2010-06-24 11:36:58 +1000690 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 } else {
692 error = xfs_trans_reserve(tp, 0,
693 XFS_IFREE_LOG_RES(mp),
694 0, XFS_TRANS_PERM_LOG_RES,
695 XFS_INACTIVE_LOG_COUNT);
696 if (error) {
697 ASSERT(XFS_FORCED_SHUTDOWN(mp));
698 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +0100699 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701
702 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
Christoph Hellwig898621d2010-06-24 11:36:58 +1000703 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705
706 /*
707 * If there are attributes associated with the file
708 * then blow them away now. The code calls a routine
709 * that recursively deconstructs the attribute fork.
710 * We need to just commit the current transaction
711 * because we can't use it for xfs_attr_inactive().
712 */
713 if (ip->i_d.di_anextents > 0) {
714 error = xfs_inactive_attrs(ip, &tp);
715 /*
716 * If we got an error, the transaction is already
717 * cancelled, and the inode is unlocked. Just get out.
718 */
719 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100720 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 } else if (ip->i_afp) {
722 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
723 }
724
725 /*
726 * Free the inode.
727 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600728 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 error = xfs_ifree(tp, ip, &free_list);
730 if (error) {
731 /*
732 * If we fail to free the inode, shut down. The cancel
733 * might do that, we need to make sure. Otherwise the
734 * inode might be lost for a long time or forever.
735 */
736 if (!XFS_FORCED_SHUTDOWN(mp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100737 xfs_notice(mp, "%s: xfs_ifree returned error %d",
738 __func__, error);
Nathan Scott7d04a332006-06-09 14:58:38 +1000739 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
741 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
742 } else {
743 /*
744 * Credit the quota account(s). The inode is gone.
745 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200746 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 /*
David Chinner78e9da72008-04-10 12:24:17 +1000749 * Just ignore errors at this point. There is nothing we can
750 * do except to try to keep going. Make sure it's not a silent
751 * error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 */
David Chinner78e9da72008-04-10 12:24:17 +1000753 error = xfs_bmap_finish(&tp, &free_list, &committed);
754 if (error)
Dave Chinner53487782011-03-07 10:05:35 +1100755 xfs_notice(mp, "%s: xfs_bmap_finish returned error %d",
756 __func__, error);
David Chinner78e9da72008-04-10 12:24:17 +1000757 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
758 if (error)
Dave Chinner53487782011-03-07 10:05:35 +1100759 xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
760 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 /*
764 * Release the dquots held by inode, if any.
765 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200766 xfs_qm_dqdetach(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
768
769 out:
770 return VN_INACTIVE_CACHE;
771}
772
Barry Naujok384f3ce2008-05-21 16:58:22 +1000773/*
774 * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
775 * is allowed, otherwise it has to be an exact match. If a CI match is found,
776 * ci_name->name will point to a the actual name (caller must free) or
777 * will be set to NULL if an exact match is found.
778 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000779int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780xfs_lookup(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000781 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000782 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000783 xfs_inode_t **ipp,
784 struct xfs_name *ci_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000786 xfs_ino_t inum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 int error;
788 uint lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000790 trace_xfs_lookup(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
793 return XFS_ERROR(EIO);
794
795 lock_mode = xfs_ilock_map_shared(dp);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000796 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 xfs_iunlock_map_shared(dp, lock_mode);
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000798
799 if (error)
800 goto out;
801
Dave Chinner7b6259e2010-06-24 11:35:17 +1000802 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000803 if (error)
Barry Naujok384f3ce2008-05-21 16:58:22 +1000804 goto out_free_name;
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000805
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000806 return 0;
807
Barry Naujok384f3ce2008-05-21 16:58:22 +1000808out_free_name:
809 if (ci_name)
810 kmem_free(ci_name->name);
811out:
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000812 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return error;
814}
815
Christoph Hellwig993386c2007-08-28 16:12:30 +1000816int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817xfs_create(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000818 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000819 struct xfs_name *name,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000820 mode_t mode,
821 xfs_dev_t rdev,
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000822 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100824 int is_dir = S_ISDIR(mode);
825 struct xfs_mount *mp = dp->i_mount;
826 struct xfs_inode *ip = NULL;
827 struct xfs_trans *tp = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000828 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 xfs_bmap_free_t free_list;
830 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +1000831 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 uint cancel_flags;
833 int committed;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000834 prid_t prid;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100835 struct xfs_dquot *udqp = NULL;
836 struct xfs_dquot *gdqp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 uint resblks;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100838 uint log_res;
839 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000841 trace_xfs_create(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100843 if (XFS_FORCED_SHUTDOWN(mp))
844 return XFS_ERROR(EIO);
845
Nathan Scott365ca832005-06-21 15:39:12 +1000846 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000847 prid = xfs_get_projid(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 else
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000849 prid = XFS_PROJID_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 /*
852 * Make sure that we have allocated dquot(s) on disk.
853 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200854 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100855 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000857 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100859 if (is_dir) {
860 rdev = 0;
861 resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
862 log_res = XFS_MKDIR_LOG_RES(mp);
863 log_count = XFS_MKDIR_LOG_COUNT;
864 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
865 } else {
866 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
867 log_res = XFS_CREATE_LOG_RES(mp);
868 log_count = XFS_CREATE_LOG_COUNT;
869 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 /*
875 * Initially assume that the file does not exist and
876 * reserve the resources for that case. If that is not
877 * the case we'll drop the one we have and get a more
878 * appropriate transaction later.
879 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100880 error = xfs_trans_reserve(tp, resblks, log_res, 0,
881 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (error == ENOSPC) {
Dave Chinner153fec42009-04-06 18:48:30 +0200883 /* flush outstanding delalloc blocks and retry */
884 xfs_flush_inodes(dp);
Christoph Hellwig4734d402009-09-09 18:19:02 -0500885 error = xfs_trans_reserve(tp, resblks, log_res, 0,
886 XFS_TRANS_PERM_LOG_RES, log_count);
Dave Chinner153fec42009-04-06 18:48:30 +0200887 }
888 if (error == ENOSPC) {
889 /* No space at all so try a "no-allocation" reservation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 resblks = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100891 error = xfs_trans_reserve(tp, 0, log_res, 0,
892 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
894 if (error) {
895 cancel_flags = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100896 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000899 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +1000900 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100902 /*
903 * Check for directory link count overflow.
904 */
905 if (is_dir && dp->i_d.di_nlink >= XFS_MAXLINK) {
906 error = XFS_ERROR(EMLINK);
907 goto out_trans_cancel;
908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100910 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 /*
913 * Reserve disk quota and the inode.
914 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200915 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100917 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Barry Naujok556b8b12008-04-10 12:22:07 +1000919 error = xfs_dir_canenter(tp, dp, name, resblks);
920 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100921 goto out_trans_cancel;
922
923 /*
924 * A newly created regular or special file just has one directory
925 * entry pointing to them, but a directory also the "." entry
926 * pointing to itself.
927 */
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000928 error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev,
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100929 prid, resblks > 0, &ip, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 if (error) {
931 if (error == ENOSPC)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100932 goto out_trans_cancel;
933 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 /*
Christoph Hellwig993386c2007-08-28 16:12:30 +1000937 * Now we join the directory inode to the transaction. We do not do it
938 * earlier because xfs_dir_ialloc might commit the previous transaction
939 * (and release all the locks). An error from here on will result in
940 * the transaction cancel unlocking dp so don't do it explicitly in the
941 * error path.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000943 xfs_trans_ijoin_ref(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +1000944 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Barry Naujok556b8b12008-04-10 12:22:07 +1000946 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000947 &first_block, &free_list, resblks ?
948 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (error) {
950 ASSERT(error != ENOSPC);
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100951 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000953 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
955
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100956 if (is_dir) {
957 error = xfs_dir_init(tp, ip, dp);
958 if (error)
959 goto out_bmap_cancel;
960
961 error = xfs_bumplink(tp, dp);
962 if (error)
963 goto out_bmap_cancel;
964 }
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 /*
967 * If this is a synchronous mount, make sure that the
968 * create transaction goes to disk before returning to
969 * the user.
970 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100971 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 /*
975 * Attach the dquot(s) to the inodes and modify them incore.
976 * These ids of the inode couldn't have changed since the new
977 * inode has been locked ever since it was created.
978 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200979 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100981 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100982 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000983 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000985 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000986 if (error)
987 goto out_release_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Christoph Hellwig7d095252009-06-08 15:33:32 +0200989 xfs_qm_dqrele(udqp);
990 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100992 *ipp = ip;
Christoph Hellwig288699f2010-06-23 18:11:15 +1000993 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100995 out_bmap_cancel:
996 xfs_bmap_cancel(&free_list);
997 out_trans_abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100999 out_trans_cancel:
1000 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001001 out_release_inode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /*
1003 * Wait until after the current transaction is aborted to
1004 * release the inode. This prevents recursive transactions
1005 * and deadlocks from xfs_inactive.
1006 */
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001007 if (ip)
1008 IRELE(ip);
1009
1010 xfs_qm_dqrele(udqp);
1011 xfs_qm_dqrele(gdqp);
1012
1013 if (unlock_dp_on_error)
1014 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1015 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
1018#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019int xfs_locked_n;
1020int xfs_small_retries;
1021int xfs_middle_retries;
1022int xfs_lots_retries;
1023int xfs_lock_delays;
1024#endif
1025
1026/*
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001027 * Bump the subclass so xfs_lock_inodes() acquires each lock with
1028 * a different value
1029 */
1030static inline int
1031xfs_lock_inumorder(int lock_mode, int subclass)
1032{
1033 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +10001034 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001035 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +10001036 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001037
1038 return lock_mode;
1039}
1040
1041/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 * The following routine will lock n inodes in exclusive mode.
1043 * We assume the caller calls us with the inodes in i_ino order.
1044 *
1045 * We need to detect deadlock where an inode that we lock
1046 * is in the AIL and we start waiting for another inode that is locked
1047 * by a thread in a long running transaction (such as truncate). This can
1048 * result in deadlock since the long running trans might need to wait
1049 * for the inode we just locked in order to push the tail and free space
1050 * in the log.
1051 */
1052void
1053xfs_lock_inodes(
1054 xfs_inode_t **ips,
1055 int inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 uint lock_mode)
1057{
1058 int attempts = 0, i, j, try_lock;
1059 xfs_log_item_t *lp;
1060
1061 ASSERT(ips && (inodes >= 2)); /* we need at least two */
1062
Christoph Hellwigcfa853e2008-04-22 17:34:06 +10001063 try_lock = 0;
1064 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066again:
1067 for (; i < inodes; i++) {
1068 ASSERT(ips[i]);
1069
1070 if (i && (ips[i] == ips[i-1])) /* Already locked */
1071 continue;
1072
1073 /*
1074 * If try_lock is not set yet, make sure all locked inodes
1075 * are not in the AIL.
1076 * If any are, set try_lock to be used later.
1077 */
1078
1079 if (!try_lock) {
1080 for (j = (i - 1); j >= 0 && !try_lock; j--) {
1081 lp = (xfs_log_item_t *)ips[j]->i_itemp;
1082 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1083 try_lock++;
1084 }
1085 }
1086 }
1087
1088 /*
1089 * If any of the previous locks we have locked is in the AIL,
1090 * we must TRY to get the second and subsequent locks. If
1091 * we can't get any, we must release all we have
1092 * and try again.
1093 */
1094
1095 if (try_lock) {
1096 /* try_lock must be 0 if i is 0. */
1097 /*
1098 * try_lock means we have an inode locked
1099 * that is in the AIL.
1100 */
1101 ASSERT(i != 0);
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001102 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 attempts++;
1104
1105 /*
1106 * Unlock all previous guys and try again.
1107 * xfs_iunlock will try to push the tail
1108 * if the inode is in the AIL.
1109 */
1110
1111 for(j = i - 1; j >= 0; j--) {
1112
1113 /*
1114 * Check to see if we've already
1115 * unlocked this one.
1116 * Not the first one going back,
1117 * and the inode ptr is the same.
1118 */
1119 if ((j != (i - 1)) && ips[j] ==
1120 ips[j+1])
1121 continue;
1122
1123 xfs_iunlock(ips[j], lock_mode);
1124 }
1125
1126 if ((attempts % 5) == 0) {
1127 delay(1); /* Don't just spin the CPU */
1128#ifdef DEBUG
1129 xfs_lock_delays++;
1130#endif
1131 }
1132 i = 0;
1133 try_lock = 0;
1134 goto again;
1135 }
1136 } else {
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001137 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 }
1139 }
1140
1141#ifdef DEBUG
1142 if (attempts) {
1143 if (attempts < 5) xfs_small_retries++;
1144 else if (attempts < 100) xfs_middle_retries++;
1145 else xfs_lots_retries++;
1146 } else {
1147 xfs_locked_n++;
1148 }
1149#endif
1150}
1151
David Chinnerf9114eb2008-09-17 16:51:21 +10001152/*
1153 * xfs_lock_two_inodes() can only be used to lock one type of lock
1154 * at a time - the iolock or the ilock, but not both at once. If
1155 * we lock both at once, lockdep will report false positives saying
1156 * we have violated locking orders.
1157 */
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001158void
1159xfs_lock_two_inodes(
1160 xfs_inode_t *ip0,
1161 xfs_inode_t *ip1,
1162 uint lock_mode)
1163{
1164 xfs_inode_t *temp;
1165 int attempts = 0;
1166 xfs_log_item_t *lp;
1167
David Chinnerf9114eb2008-09-17 16:51:21 +10001168 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
1169 ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0);
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001170 ASSERT(ip0->i_ino != ip1->i_ino);
1171
1172 if (ip0->i_ino > ip1->i_ino) {
1173 temp = ip0;
1174 ip0 = ip1;
1175 ip1 = temp;
1176 }
1177
1178 again:
1179 xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0));
1180
1181 /*
1182 * If the first lock we have locked is in the AIL, we must TRY to get
1183 * the second lock. If we can't get it, we must release the first one
1184 * and try again.
1185 */
1186 lp = (xfs_log_item_t *)ip0->i_itemp;
1187 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1188 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) {
1189 xfs_iunlock(ip0, lock_mode);
1190 if ((++attempts % 5) == 0)
1191 delay(1); /* Don't just spin the CPU */
1192 goto again;
1193 }
1194 } else {
1195 xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1));
1196 }
1197}
1198
Christoph Hellwig993386c2007-08-28 16:12:30 +10001199int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200xfs_remove(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001201 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001202 struct xfs_name *name,
1203 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001205 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 xfs_trans_t *tp = NULL;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001207 int is_dir = S_ISDIR(ip->i_d.di_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 int error = 0;
1209 xfs_bmap_free_t free_list;
1210 xfs_fsblock_t first_block;
1211 int cancel_flags;
1212 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 int link_zero;
1214 uint resblks;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001215 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001217 trace_xfs_remove(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if (XFS_FORCED_SHUTDOWN(mp))
1220 return XFS_ERROR(EIO);
1221
Christoph Hellwig7d095252009-06-08 15:33:32 +02001222 error = xfs_qm_dqattach(dp, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001223 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Christoph Hellwig7d095252009-06-08 15:33:32 +02001226 error = xfs_qm_dqattach(ip, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001227 if (error)
1228 goto std_return;
1229
1230 if (is_dir) {
1231 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
1232 log_count = XFS_DEFAULT_LOG_COUNT;
1233 } else {
1234 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
1235 log_count = XFS_REMOVE_LOG_COUNT;
1236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 /*
1240 * We try to get the real space reservation first,
1241 * allowing for directory btree deletion(s) implying
1242 * possible bmap insert(s). If we can't get the space
1243 * reservation then we use 0 instead, and avoid the bmap
1244 * btree insert(s) in the directory code by, if the bmap
1245 * insert tries to happen, instead trimming the LAST
1246 * block from the directory.
1247 */
1248 resblks = XFS_REMOVE_SPACE_RES(mp);
1249 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001250 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 if (error == ENOSPC) {
1252 resblks = 0;
1253 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001254 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
1256 if (error) {
1257 ASSERT(error != ENOSPC);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001258 cancel_flags = 0;
1259 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
1261
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001262 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Christoph Hellwig898621d2010-06-24 11:36:58 +10001264 xfs_trans_ijoin_ref(tp, dp, XFS_ILOCK_EXCL);
1265 xfs_trans_ijoin_ref(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 /*
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001268 * If we're removing a directory perform some additional validation.
1269 */
1270 if (is_dir) {
1271 ASSERT(ip->i_d.di_nlink >= 2);
1272 if (ip->i_d.di_nlink != 2) {
1273 error = XFS_ERROR(ENOTEMPTY);
1274 goto out_trans_cancel;
1275 }
1276 if (!xfs_dir_isempty(ip)) {
1277 error = XFS_ERROR(ENOTEMPTY);
1278 goto out_trans_cancel;
1279 }
1280 }
1281
Eric Sandeen9d87c312009-01-14 23:22:07 -06001282 xfs_bmap_init(&free_list, &first_block);
Barry Naujok556b8b12008-04-10 12:22:07 +10001283 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
Christoph Hellwigd4377d82008-04-22 17:33:46 +10001284 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (error) {
1286 ASSERT(error != ENOENT);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001287 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001289 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001291 if (is_dir) {
1292 /*
1293 * Drop the link from ip's "..".
1294 */
1295 error = xfs_droplink(tp, dp);
1296 if (error)
1297 goto out_bmap_cancel;
1298
1299 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001300 * Drop the "." link from ip to self.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001301 */
1302 error = xfs_droplink(tp, ip);
1303 if (error)
1304 goto out_bmap_cancel;
1305 } else {
1306 /*
1307 * When removing a non-directory we need to log the parent
Dave Chinner26c52952008-11-28 14:23:37 +11001308 * inode here. For a directory this is done implicitly
1309 * by the xfs_droplink call for the ".." entry.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001310 */
1311 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 }
1313
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001314 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001315 * Drop the link from dp to ip.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001316 */
1317 error = xfs_droplink(tp, ip);
1318 if (error)
1319 goto out_bmap_cancel;
1320
1321 /*
1322 * Determine if this is the last link while
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 * we are in the transaction.
1324 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001325 link_zero = (ip->i_d.di_nlink == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 * If this is a synchronous mount, make sure that the
1329 * remove transaction goes to disk before returning to
1330 * the user.
1331 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001332 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001335 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001336 if (error)
1337 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001339 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig5df78e72008-04-22 17:34:24 +10001340 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 /*
David Chinner2a82b8b2007-07-11 11:09:12 +10001344 * If we are using filestreams, kill the stream association.
1345 * If the file is still open it may get a new one but that
1346 * will get killed on last close in xfs_close() so we don't
1347 * have to worry about that.
1348 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001349 if (!is_dir && link_zero && xfs_inode_is_filestream(ip))
David Chinner2a82b8b2007-07-11 11:09:12 +10001350 xfs_filestream_deassociate(ip);
1351
Christoph Hellwig288699f2010-06-23 18:11:15 +10001352 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001354 out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 xfs_bmap_cancel(&free_list);
1356 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001357 out_trans_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001359 std_return:
1360 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
Christoph Hellwig993386c2007-08-28 16:12:30 +10001363int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364xfs_link(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001365 xfs_inode_t *tdp,
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001366 xfs_inode_t *sip,
Barry Naujok556b8b12008-04-10 12:22:07 +10001367 struct xfs_name *target_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001369 xfs_mount_t *mp = tdp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 int error;
1372 xfs_bmap_free_t free_list;
1373 xfs_fsblock_t first_block;
1374 int cancel_flags;
1375 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 int resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001378 trace_xfs_link(tdp, target_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001380 ASSERT(!S_ISDIR(sip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (XFS_FORCED_SHUTDOWN(mp))
1383 return XFS_ERROR(EIO);
1384
Christoph Hellwig7d095252009-06-08 15:33:32 +02001385 error = xfs_qm_dqattach(sip, 0);
Christoph Hellwigcb3f35b2009-02-04 09:34:20 +01001386 if (error)
1387 goto std_return;
1388
Christoph Hellwig7d095252009-06-08 15:33:32 +02001389 error = xfs_qm_dqattach(tdp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (error)
1391 goto std_return;
1392
1393 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
1394 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10001395 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
1397 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1398 if (error == ENOSPC) {
1399 resblks = 0;
1400 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
1401 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1402 }
1403 if (error) {
1404 cancel_flags = 0;
1405 goto error_return;
1406 }
1407
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001408 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Christoph Hellwig898621d2010-06-24 11:36:58 +10001410 xfs_trans_ijoin_ref(tp, sip, XFS_ILOCK_EXCL);
1411 xfs_trans_ijoin_ref(tp, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 /*
1414 * If the source has too many links, we can't make any more to it.
1415 */
1416 if (sip->i_d.di_nlink >= XFS_MAXLINK) {
1417 error = XFS_ERROR(EMLINK);
1418 goto error_return;
1419 }
1420
Nathan Scott365ca832005-06-21 15:39:12 +10001421 /*
1422 * If we are using project inheritance, we only allow hard link
1423 * creation in our tree when the project IDs are the same; else
1424 * the tree quota mechanism could be circumvented.
1425 */
1426 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001427 (xfs_get_projid(tdp) != xfs_get_projid(sip)))) {
Nathan Scottb1ecdda2006-05-08 19:51:42 +10001428 error = XFS_ERROR(EXDEV);
Nathan Scott365ca832005-06-21 15:39:12 +10001429 goto error_return;
1430 }
1431
Barry Naujok556b8b12008-04-10 12:22:07 +10001432 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
1433 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 goto error_return;
1435
Eric Sandeen9d87c312009-01-14 23:22:07 -06001436 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Barry Naujok556b8b12008-04-10 12:22:07 +10001438 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
1439 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 if (error)
1441 goto abort_return;
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001442 xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1444
1445 error = xfs_bumplink(tp, sip);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001446 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 /*
1450 * If this is a synchronous mount, make sure that the
1451 * link transaction goes to disk before returning to
1452 * the user.
1453 */
1454 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1455 xfs_trans_set_sync(tp);
1456 }
1457
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001458 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (error) {
1460 xfs_bmap_cancel(&free_list);
1461 goto abort_return;
1462 }
1463
Christoph Hellwig288699f2010-06-23 18:11:15 +10001464 return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 abort_return:
1467 cancel_flags |= XFS_TRANS_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 error_return:
1469 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001470 std_return:
1471 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472}
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001473
Christoph Hellwig993386c2007-08-28 16:12:30 +10001474int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475xfs_symlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001476 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001477 struct xfs_name *link_name,
1478 const char *target_path,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001479 mode_t mode,
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001480 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001482 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 xfs_inode_t *ip;
1485 int error;
1486 int pathlen;
1487 xfs_bmap_free_t free_list;
1488 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001489 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 uint cancel_flags;
1491 int committed;
1492 xfs_fileoff_t first_fsb;
1493 xfs_filblks_t fs_blocks;
1494 int nmaps;
1495 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1496 xfs_daddr_t d;
Barry Naujok556b8b12008-04-10 12:22:07 +10001497 const char *cur_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 int byte_cnt;
1499 int n;
1500 xfs_buf_t *bp;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001501 prid_t prid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 struct xfs_dquot *udqp, *gdqp;
1503 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Christoph Hellwig3937be52008-03-06 13:46:19 +11001505 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 error = 0;
1507 ip = NULL;
1508 tp = NULL;
1509
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001510 trace_xfs_symlink(dp, link_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
1512 if (XFS_FORCED_SHUTDOWN(mp))
1513 return XFS_ERROR(EIO);
1514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 /*
1516 * Check component lengths of the target path name.
1517 */
1518 pathlen = strlen(target_path);
1519 if (pathlen >= MAXPATHLEN) /* total string too long */
1520 return XFS_ERROR(ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10001523 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001524 prid = xfs_get_projid(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 else
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001526 prid = XFS_PROJID_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 /*
1529 * Make sure that we have allocated dquot(s) on disk.
1530 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001531 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
1533 if (error)
1534 goto std_return;
1535
1536 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
1537 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1538 /*
1539 * The symlink will fit into the inode data fork?
1540 * There can't be any attributes so we get the whole variable part.
1541 */
1542 if (pathlen <= XFS_LITINO(mp))
1543 fs_blocks = 0;
1544 else
1545 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
Barry Naujok556b8b12008-04-10 12:22:07 +10001546 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
1548 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
1549 if (error == ENOSPC && fs_blocks == 0) {
1550 resblks = 0;
1551 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
1552 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
1553 }
1554 if (error) {
1555 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 goto error_return;
1557 }
1558
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001559 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001560 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562 /*
1563 * Check whether the directory allows new symlinks or not.
1564 */
1565 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
1566 error = XFS_ERROR(EPERM);
1567 goto error_return;
1568 }
1569
1570 /*
1571 * Reserve disk quota : blocks and inode.
1572 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001573 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 if (error)
1575 goto error_return;
1576
1577 /*
1578 * Check for ability to enter directory entry, if no space reserved.
1579 */
Barry Naujok556b8b12008-04-10 12:22:07 +10001580 error = xfs_dir_canenter(tp, dp, link_name, resblks);
1581 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 goto error_return;
1583 /*
1584 * Initialize the bmap freelist prior to calling either
1585 * bmapi or the directory create code.
1586 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06001587 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589 /*
1590 * Allocate an inode for the symlink.
1591 */
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001592 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT), 1, 0,
1593 prid, resblks > 0, &ip, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (error) {
1595 if (error == ENOSPC)
1596 goto error_return;
1597 goto error1;
1598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Christoph Hellwig993386c2007-08-28 16:12:30 +10001600 /*
1601 * An error after we've joined dp to the transaction will result in the
1602 * transaction cancel unlocking dp so don't do it explicitly in the
1603 * error path.
1604 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001605 xfs_trans_ijoin_ref(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001606 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 /*
1609 * Also attach the dquot(s) to it, if applicable.
1610 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001611 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613 if (resblks)
1614 resblks -= XFS_IALLOC_SPACE_RES(mp);
1615 /*
1616 * If the symlink will fit into the inode, write it inline.
1617 */
1618 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
1619 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
1620 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
1621 ip->i_d.di_size = pathlen;
1622
1623 /*
1624 * The inode was initially created in extent format.
1625 */
1626 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
1627 ip->i_df.if_flags |= XFS_IFINLINE;
1628
1629 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
1630 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
1631
1632 } else {
1633 first_fsb = 0;
1634 nmaps = SYMLINK_MAPS;
1635
1636 error = xfs_bmapi(tp, ip, first_fsb, fs_blocks,
1637 XFS_BMAPI_WRITE | XFS_BMAPI_METADATA,
1638 &first_block, resblks, mval, &nmaps,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10001639 &free_list);
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001640 if (error)
1641 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643 if (resblks)
1644 resblks -= fs_blocks;
1645 ip->i_d.di_size = pathlen;
1646 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1647
1648 cur_chunk = target_path;
1649 for (n = 0; n < nmaps; n++) {
1650 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
1651 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
1652 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
1653 BTOBB(byte_cnt), 0);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001654 if (!bp) {
1655 error = ENOMEM;
1656 goto error2;
1657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 if (pathlen < byte_cnt) {
1659 byte_cnt = pathlen;
1660 }
1661 pathlen -= byte_cnt;
1662
Chandra Seetharaman62926042011-07-22 23:40:15 +00001663 memcpy(bp->b_addr, cur_chunk, byte_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 cur_chunk += byte_cnt;
1665
1666 xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
1667 }
1668 }
1669
1670 /*
1671 * Create the directory entry for the symlink.
1672 */
Barry Naujok556b8b12008-04-10 12:22:07 +10001673 error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
1674 &first_block, &free_list, resblks);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001675 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001676 goto error2;
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001677 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1679
1680 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 * If this is a synchronous mount, make sure that the
1682 * symlink transaction goes to disk before returning to
1683 * the user.
1684 */
1685 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1686 xfs_trans_set_sync(tp);
1687 }
1688
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001689 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 if (error) {
1691 goto error2;
1692 }
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001693 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001694 xfs_qm_dqrele(udqp);
1695 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Christoph Hellwig288699f2010-06-23 18:11:15 +10001697 *ipp = ip;
1698 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 error2:
1701 IRELE(ip);
1702 error1:
1703 xfs_bmap_cancel(&free_list);
1704 cancel_flags |= XFS_TRANS_ABORT;
1705 error_return:
1706 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001707 xfs_qm_dqrele(udqp);
1708 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Christoph Hellwig993386c2007-08-28 16:12:30 +10001710 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001712 std_return:
1713 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714}
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716int
Christoph Hellwig993386c2007-08-28 16:12:30 +10001717xfs_set_dmattrs(
1718 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 u_int evmask,
Christoph Hellwig993386c2007-08-28 16:12:30 +10001720 u_int16_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001722 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 int error;
1725
1726 if (!capable(CAP_SYS_ADMIN))
1727 return XFS_ERROR(EPERM);
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 if (XFS_FORCED_SHUTDOWN(mp))
1730 return XFS_ERROR(EIO);
1731
1732 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
1733 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
1734 if (error) {
1735 xfs_trans_cancel(tp, 0);
1736 return error;
1737 }
1738 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig898621d2010-06-24 11:36:58 +10001739 xfs_trans_ijoin_ref(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Christoph Hellwig613d7042007-10-11 17:44:08 +10001741 ip->i_d.di_dmevmask = evmask;
1742 ip->i_d.di_dmstate = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001745 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
1747 return error;
1748}
1749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750/*
1751 * xfs_alloc_file_space()
1752 * This routine allocates disk space for the given file.
1753 *
1754 * If alloc_type == 0, this request is for an ALLOCSP type
1755 * request which will change the file size. In this case, no
1756 * DMAPI event will be generated by the call. A TRUNCATE event
1757 * will be generated later by xfs_setattr.
1758 *
1759 * If alloc_type != 0, this request is for a RESVSP type
1760 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
1761 * lower block boundary byte address is less than the file's
1762 * length.
1763 *
1764 * RETURNS:
1765 * 0 on success
1766 * errno on error
1767 *
1768 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001769STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770xfs_alloc_file_space(
1771 xfs_inode_t *ip,
1772 xfs_off_t offset,
1773 xfs_off_t len,
1774 int alloc_type,
1775 int attr_flags)
1776{
Nathan Scottdd9f4382006-01-11 15:28:28 +11001777 xfs_mount_t *mp = ip->i_mount;
1778 xfs_off_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 xfs_filblks_t allocated_fsb;
1780 xfs_filblks_t allocatesize_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001781 xfs_extlen_t extsz, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 xfs_fileoff_t startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001783 xfs_fsblock_t firstfsb;
1784 int nimaps;
1785 int bmapi_flag;
1786 int quota_flag;
1787 int rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 xfs_trans_t *tp;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001789 xfs_bmbt_irec_t imaps[1], *imapp;
1790 xfs_bmap_free_t free_list;
1791 uint qblocks, resblks, resrtextents;
1792 int committed;
1793 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001795 trace_xfs_alloc_file_space(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797 if (XFS_FORCED_SHUTDOWN(mp))
1798 return XFS_ERROR(EIO);
1799
Christoph Hellwig7d095252009-06-08 15:33:32 +02001800 error = xfs_qm_dqattach(ip, 0);
1801 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return error;
1803
1804 if (len <= 0)
1805 return XFS_ERROR(EINVAL);
1806
David Chinner957d0eb2007-06-18 16:50:37 +10001807 rt = XFS_IS_REALTIME_INODE(ip);
1808 extsz = xfs_get_extsz_hint(ip);
1809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 count = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 imapp = &imaps[0];
Nathan Scottdd9f4382006-01-11 15:28:28 +11001812 nimaps = 1;
Dave Chinner44722352010-08-24 12:02:11 +10001813 bmapi_flag = XFS_BMAPI_WRITE | alloc_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
1815 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001818 * Allocate file space until done or until there is an error
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 while (allocatesize_fsb && !error) {
Nathan Scottdd9f4382006-01-11 15:28:28 +11001821 xfs_fileoff_t s, e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Nathan Scottdd9f4382006-01-11 15:28:28 +11001823 /*
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11001824 * Determine space reservations for data/realtime.
Nathan Scottdd9f4382006-01-11 15:28:28 +11001825 */
1826 if (unlikely(extsz)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 s = startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001828 do_div(s, extsz);
1829 s *= extsz;
1830 e = startoffset_fsb + allocatesize_fsb;
1831 if ((temp = do_mod(startoffset_fsb, extsz)))
1832 e += temp;
1833 if ((temp = do_mod(e, extsz)))
1834 e += extsz - temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 } else {
Nathan Scottdd9f4382006-01-11 15:28:28 +11001836 s = 0;
1837 e = allocatesize_fsb;
1838 }
1839
Dave Chinner72656c42010-09-03 12:19:33 +10001840 /*
1841 * The transaction reservation is limited to a 32-bit block
1842 * count, hence we need to limit the number of blocks we are
1843 * trying to reserve to avoid an overflow. We can't allocate
1844 * more than @nimaps extents, and an extent is limited on disk
1845 * to MAXEXTLEN (21 bits), so use that to enforce the limit.
1846 */
1847 resblks = min_t(xfs_fileoff_t, (e - s), (MAXEXTLEN * nimaps));
Nathan Scottdd9f4382006-01-11 15:28:28 +11001848 if (unlikely(rt)) {
Dave Chinner72656c42010-09-03 12:19:33 +10001849 resrtextents = qblocks = resblks;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001850 resrtextents /= mp->m_sb.sb_rextsize;
1851 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1852 quota_flag = XFS_QMOPT_RES_RTBLKS;
1853 } else {
1854 resrtextents = 0;
Dave Chinner72656c42010-09-03 12:19:33 +10001855 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001856 quota_flag = XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 }
1858
1859 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001860 * Allocate and setup the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 */
1862 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001863 error = xfs_trans_reserve(tp, resblks,
1864 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 XFS_TRANS_PERM_LOG_RES,
1866 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001868 * Check for running out of space
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 */
1870 if (error) {
1871 /*
1872 * Free the transaction structure.
1873 */
1874 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
1875 xfs_trans_cancel(tp, 0);
1876 break;
1877 }
1878 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001879 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
1880 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 if (error)
1882 goto error1;
1883
Christoph Hellwig898621d2010-06-24 11:36:58 +10001884 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001887 * Issue the xfs_bmapi() call to allocate the blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06001889 xfs_bmap_init(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10001890 error = xfs_bmapi(tp, ip, startoffset_fsb,
Nathan Scottdd9f4382006-01-11 15:28:28 +11001891 allocatesize_fsb, bmapi_flag,
1892 &firstfsb, 0, imapp, &nimaps,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10001893 &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (error) {
1895 goto error0;
1896 }
1897
1898 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001899 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001901 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 if (error) {
1903 goto error0;
1904 }
1905
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001906 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1908 if (error) {
1909 break;
1910 }
1911
1912 allocated_fsb = imapp->br_blockcount;
1913
Nathan Scottdd9f4382006-01-11 15:28:28 +11001914 if (nimaps == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 error = XFS_ERROR(ENOSPC);
1916 break;
1917 }
1918
1919 startoffset_fsb += allocated_fsb;
1920 allocatesize_fsb -= allocated_fsb;
1921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 return error;
1924
Nathan Scottdd9f4382006-01-11 15:28:28 +11001925error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 xfs_bmap_cancel(&free_list);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001927 xfs_trans_unreserve_quota_nblks(tp, ip, qblocks, 0, quota_flag);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001928
1929error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1931 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001932 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933}
1934
1935/*
1936 * Zero file bytes between startoff and endoff inclusive.
1937 * The iolock is held exclusive and no blocks are buffered.
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001938 *
1939 * This function is used by xfs_free_file_space() to zero
1940 * partial blocks when the range to free is not block aligned.
1941 * When unreserving space with boundaries that are not block
1942 * aligned we round up the start and round down the end
1943 * boundaries and then use this function to zero the parts of
1944 * the blocks that got dropped during the rounding.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 */
1946STATIC int
1947xfs_zero_remaining_bytes(
1948 xfs_inode_t *ip,
1949 xfs_off_t startoff,
1950 xfs_off_t endoff)
1951{
1952 xfs_bmbt_irec_t imap;
1953 xfs_fileoff_t offset_fsb;
1954 xfs_off_t lastoffset;
1955 xfs_off_t offset;
1956 xfs_buf_t *bp;
1957 xfs_mount_t *mp = ip->i_mount;
1958 int nimap;
1959 int error = 0;
1960
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001961 /*
1962 * Avoid doing I/O beyond eof - it's not necessary
1963 * since nothing can read beyond eof. The space will
1964 * be zeroed when the file is extended anyway.
1965 */
1966 if (startoff >= ip->i_size)
1967 return 0;
1968
1969 if (endoff > ip->i_size)
1970 endoff = ip->i_size;
1971
Dave Chinner686865f2010-09-24 20:07:47 +10001972 bp = xfs_buf_get_uncached(XFS_IS_REALTIME_INODE(ip) ?
1973 mp->m_rtdev_targp : mp->m_ddev_targp,
1974 mp->m_sb.sb_blocksize, XBF_DONT_BLOCK);
Lachlan McIlroyc6422612008-12-05 13:16:15 +11001975 if (!bp)
1976 return XFS_ERROR(ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Christoph Hellwigc8da0fa2011-07-08 14:36:25 +02001978 xfs_buf_unlock(bp);
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
1981 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1982 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001983 error = xfs_bmapi_read(ip, offset_fsb, 1, &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 if (error || nimap < 1)
1985 break;
1986 ASSERT(imap.br_blockcount >= 1);
1987 ASSERT(imap.br_startoff == offset_fsb);
1988 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
1989 if (lastoffset > endoff)
1990 lastoffset = endoff;
1991 if (imap.br_startblock == HOLESTARTBLOCK)
1992 continue;
1993 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1994 if (imap.br_state == XFS_EXT_UNWRITTEN)
1995 continue;
1996 XFS_BUF_UNDONE(bp);
1997 XFS_BUF_UNWRITE(bp);
1998 XFS_BUF_READ(bp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06001999 XFS_BUF_SET_ADDR(bp, xfs_fsb_to_db(ip, imap.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00002001 error = xfs_buf_iowait(bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10002002 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 xfs_ioerror_alert("xfs_zero_remaining_bytes(read)",
2004 mp, bp, XFS_BUF_ADDR(bp));
2005 break;
2006 }
Chandra Seetharaman62926042011-07-22 23:40:15 +00002007 memset(bp->b_addr +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
2009 0, lastoffset - offset + 1);
2010 XFS_BUF_UNDONE(bp);
2011 XFS_BUF_UNREAD(bp);
2012 XFS_BUF_WRITE(bp);
2013 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00002014 error = xfs_buf_iowait(bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10002015 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 xfs_ioerror_alert("xfs_zero_remaining_bytes(write)",
2017 mp, bp, XFS_BUF_ADDR(bp));
2018 break;
2019 }
2020 }
2021 xfs_buf_free(bp);
2022 return error;
2023}
2024
2025/*
2026 * xfs_free_file_space()
2027 * This routine frees disk space for the given file.
2028 *
2029 * This routine is only called by xfs_change_file_space
2030 * for an UNRESVSP type call.
2031 *
2032 * RETURNS:
2033 * 0 on success
2034 * errno on error
2035 *
2036 */
2037STATIC int
2038xfs_free_file_space(
2039 xfs_inode_t *ip,
2040 xfs_off_t offset,
2041 xfs_off_t len,
2042 int attr_flags)
2043{
2044 int committed;
2045 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 xfs_fileoff_t endoffset_fsb;
2047 int error;
2048 xfs_fsblock_t firstfsb;
2049 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 xfs_bmbt_irec_t imap;
2051 xfs_off_t ioffset;
2052 xfs_extlen_t mod=0;
2053 xfs_mount_t *mp;
2054 int nimap;
2055 uint resblks;
Nathan Scott673cdf52006-09-28 10:56:26 +10002056 uint rounding;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 int rt;
2058 xfs_fileoff_t startoffset_fsb;
2059 xfs_trans_t *tp;
Dean Roehrich5fcbab32005-05-05 13:27:19 -07002060 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 mp = ip->i_mount;
2063
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10002064 trace_xfs_free_file_space(ip);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10002065
Christoph Hellwig7d095252009-06-08 15:33:32 +02002066 error = xfs_qm_dqattach(ip, 0);
2067 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 return error;
2069
2070 error = 0;
2071 if (len <= 0) /* if nothing being freed */
2072 return error;
Eric Sandeen71ddabb2007-11-23 16:29:42 +11002073 rt = XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
Christoph Hellwig288699f2010-06-23 18:11:15 +10002075 endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002077 if (attr_flags & XFS_ATTR_NOLOCK)
Dean Roehrich5fcbab32005-05-05 13:27:19 -07002078 need_iolock = 0;
Yingping Lu9fa80462006-03-22 12:44:35 +11002079 if (need_iolock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwig25e41b32008-12-03 12:20:39 +01002081 /* wait for the completion of any pending DIOs */
Christoph Hellwig4a06fd22011-08-23 08:28:13 +00002082 inode_dio_wait(VFS_I(ip));
Yingping Lu9fa80462006-03-22 12:44:35 +11002083 }
Dean Roehrich5fcbab32005-05-05 13:27:19 -07002084
Tim Shimmine6a4b372007-11-23 16:30:42 +11002085 rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 ioffset = offset & ~(rounding - 1);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10002087
Christoph Hellwigdf80c932008-08-13 16:22:09 +10002088 if (VN_CACHED(VFS_I(ip)) != 0) {
Tim Shimmine6a4b372007-11-23 16:30:42 +11002089 error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10002090 if (error)
2091 goto out_unlock_iolock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10002092 }
2093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 /*
2095 * Need to zero the stuff we're not freeing, on disk.
Malcolm Parsons9da096f2009-03-29 09:55:42 +02002096 * If it's a realtime file & can't use unwritten extents then we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 * actually need to zero the extent edges. Otherwise xfs_bunmapi
2098 * will take care of it for us.
2099 */
Eric Sandeen62118702008-03-06 13:44:28 +11002100 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00002102 error = xfs_bmapi_read(ip, startoffset_fsb, 1,
2103 &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 if (error)
2105 goto out_unlock_iolock;
2106 ASSERT(nimap == 0 || nimap == 1);
2107 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
2108 xfs_daddr_t block;
2109
2110 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2111 block = imap.br_startblock;
2112 mod = do_div(block, mp->m_sb.sb_rextsize);
2113 if (mod)
2114 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
2115 }
2116 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00002117 error = xfs_bmapi_read(ip, endoffset_fsb - 1, 1,
2118 &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 if (error)
2120 goto out_unlock_iolock;
2121 ASSERT(nimap == 0 || nimap == 1);
2122 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
2123 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2124 mod++;
2125 if (mod && (mod != mp->m_sb.sb_rextsize))
2126 endoffset_fsb -= mod;
2127 }
2128 }
2129 if ((done = (endoffset_fsb <= startoffset_fsb)))
2130 /*
2131 * One contiguous piece to clear
2132 */
2133 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
2134 else {
2135 /*
2136 * Some full blocks, possibly two pieces to clear
2137 */
2138 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
2139 error = xfs_zero_remaining_bytes(ip, offset,
2140 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
2141 if (!error &&
2142 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
2143 error = xfs_zero_remaining_bytes(ip,
2144 XFS_FSB_TO_B(mp, endoffset_fsb),
2145 offset + len - 1);
2146 }
2147
2148 /*
2149 * free file space until done or until there is an error
2150 */
2151 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
2152 while (!error && !done) {
2153
2154 /*
David Chinner91ebecc2007-07-19 16:28:30 +10002155 * allocate and setup the transaction. Allow this
2156 * transaction to dip into the reserve blocks to ensure
2157 * the freeing of the space succeeds at ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 */
2159 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
David Chinner91ebecc2007-07-19 16:28:30 +10002160 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 error = xfs_trans_reserve(tp,
2162 resblks,
2163 XFS_WRITE_LOG_RES(mp),
2164 0,
2165 XFS_TRANS_PERM_LOG_RES,
2166 XFS_WRITE_LOG_COUNT);
2167
2168 /*
2169 * check for running out of space
2170 */
2171 if (error) {
2172 /*
2173 * Free the transaction structure.
2174 */
2175 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
2176 xfs_trans_cancel(tp, 0);
2177 break;
2178 }
2179 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002180 error = xfs_trans_reserve_quota(tp, mp,
2181 ip->i_udquot, ip->i_gdquot,
2182 resblks, 0, XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 if (error)
2184 goto error1;
2185
Christoph Hellwig898621d2010-06-24 11:36:58 +10002186 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188 /*
2189 * issue the bunmapi() call to free the blocks
2190 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06002191 xfs_bmap_init(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10002192 error = xfs_bunmapi(tp, ip, startoffset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 endoffset_fsb - startoffset_fsb,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002194 0, 2, &firstfsb, &free_list, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 if (error) {
2196 goto error0;
2197 }
2198
2199 /*
2200 * complete the transaction
2201 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002202 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 if (error) {
2204 goto error0;
2205 }
2206
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002207 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2209 }
2210
2211 out_unlock_iolock:
2212 if (need_iolock)
2213 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
2214 return error;
2215
2216 error0:
2217 xfs_bmap_cancel(&free_list);
2218 error1:
2219 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
2220 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
2221 XFS_ILOCK_EXCL);
2222 return error;
2223}
2224
2225/*
2226 * xfs_change_file_space()
2227 * This routine allocates or frees disk space for the given file.
2228 * The user specified parameters are checked for alignment and size
2229 * limitations.
2230 *
2231 * RETURNS:
2232 * 0 on success
2233 * errno on error
2234 *
2235 */
2236int
2237xfs_change_file_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002238 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 int cmd,
2240 xfs_flock64_t *bf,
2241 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 int attr_flags)
2243{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002244 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 int clrprealloc;
2246 int error;
2247 xfs_fsize_t fsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 int setprealloc;
2249 xfs_off_t startoffset;
2250 xfs_off_t llen;
2251 xfs_trans_t *tp;
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002252 struct iattr iattr;
Dave Chinner44722352010-08-24 12:02:11 +10002253 int prealloc_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Christoph Hellwig993386c2007-08-28 16:12:30 +10002255 if (!S_ISREG(ip->i_d.di_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 return XFS_ERROR(EINVAL);
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 switch (bf->l_whence) {
2259 case 0: /*SEEK_SET*/
2260 break;
2261 case 1: /*SEEK_CUR*/
2262 bf->l_start += offset;
2263 break;
2264 case 2: /*SEEK_END*/
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10002265 bf->l_start += ip->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 break;
2267 default:
2268 return XFS_ERROR(EINVAL);
2269 }
2270
2271 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
2272
2273 if ( (bf->l_start < 0)
2274 || (bf->l_start > XFS_MAXIOFFSET(mp))
2275 || (bf->l_start + llen < 0)
2276 || (bf->l_start + llen > XFS_MAXIOFFSET(mp)))
2277 return XFS_ERROR(EINVAL);
2278
2279 bf->l_whence = 0;
2280
2281 startoffset = bf->l_start;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10002282 fsize = ip->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
2284 /*
2285 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
2286 * file space.
2287 * These calls do NOT zero the data space allocated to the file,
2288 * nor do they change the file size.
2289 *
2290 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
2291 * space.
2292 * These calls cause the new file data to be zeroed and the file
2293 * size to be changed.
2294 */
2295 setprealloc = clrprealloc = 0;
Dave Chinner44722352010-08-24 12:02:11 +10002296 prealloc_type = XFS_BMAPI_PREALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
2298 switch (cmd) {
Dave Chinner44722352010-08-24 12:02:11 +10002299 case XFS_IOC_ZERO_RANGE:
2300 prealloc_type |= XFS_BMAPI_CONVERT;
2301 xfs_tosspages(ip, startoffset, startoffset + bf->l_len, 0);
2302 /* FALLTHRU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 case XFS_IOC_RESVSP:
2304 case XFS_IOC_RESVSP64:
2305 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
Dave Chinner44722352010-08-24 12:02:11 +10002306 prealloc_type, attr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 if (error)
2308 return error;
2309 setprealloc = 1;
2310 break;
2311
2312 case XFS_IOC_UNRESVSP:
2313 case XFS_IOC_UNRESVSP64:
2314 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
2315 attr_flags)))
2316 return error;
2317 break;
2318
2319 case XFS_IOC_ALLOCSP:
2320 case XFS_IOC_ALLOCSP64:
2321 case XFS_IOC_FREESP:
2322 case XFS_IOC_FREESP64:
2323 if (startoffset > fsize) {
2324 error = xfs_alloc_file_space(ip, fsize,
2325 startoffset - fsize, 0, attr_flags);
2326 if (error)
2327 break;
2328 }
2329
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002330 iattr.ia_valid = ATTR_SIZE;
2331 iattr.ia_size = startoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Christoph Hellwigc4ed4242011-07-08 14:34:23 +02002333 error = xfs_setattr_size(ip, &iattr, attr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
2335 if (error)
2336 return error;
2337
2338 clrprealloc = 1;
2339 break;
2340
2341 default:
2342 ASSERT(0);
2343 return XFS_ERROR(EINVAL);
2344 }
2345
2346 /*
2347 * update the inode timestamp, mode, and prealloc flag bits
2348 */
2349 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
2350
2351 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
2352 0, 0, 0))) {
2353 /* ASSERT(0); */
2354 xfs_trans_cancel(tp, 0);
2355 return error;
2356 }
2357
2358 xfs_ilock(ip, XFS_ILOCK_EXCL);
2359
Christoph Hellwig898621d2010-06-24 11:36:58 +10002360 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002362 if ((attr_flags & XFS_ATTR_DMI) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 ip->i_d.di_mode &= ~S_ISUID;
2364
2365 /*
2366 * Note that we don't have to worry about mandatory
2367 * file locking being disabled here because we only
2368 * clear the S_ISGID bit if the Group execute bit is
2369 * on, but if it was on then mandatory locking wouldn't
2370 * have been enabled.
2371 */
2372 if (ip->i_d.di_mode & S_IXGRP)
2373 ip->i_d.di_mode &= ~S_ISGID;
2374
Dave Chinnerdcd79a12010-09-28 12:27:25 +10002375 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
2377 if (setprealloc)
2378 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
2379 else if (clrprealloc)
2380 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
2381
2382 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Dave Chinner82878892011-03-26 09:13:08 +11002383 if (attr_flags & XFS_ATTR_SYNC)
2384 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002386 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
2388 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2389
2390 return error;
2391}