blob: 9a2ae8c0ecc437ff10d05df30a74666b3669ccd7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_log.h"
24#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
31#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_dinode.h"
33#include "xfs_inode.h"
34#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_ialloc.h"
37#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_bmap.h"
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020039#include "xfs_acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_attr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_quota.h"
43#include "xfs_utils.h"
Nathan Scotta844f452005-11-02 14:38:42 +110044#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_trans_space.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "xfs_log_priv.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100047#include "xfs_filestream.h"
Christoph Hellwig993386c2007-08-28 16:12:30 +100048#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000049#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/*
Nathan Scott7d4fb402006-06-09 15:27:16 +100052 * The maximum pathlen is 1024 bytes. Since the minimum file system
53 * blocksize is 512 bytes, we can get a max of 2 extents back from
54 * bmapi.
55 */
56#define SYMLINK_MAPS 2
57
Christoph Hellwig804c83c2007-08-28 13:59:03 +100058STATIC int
59xfs_readlink_bmap(
60 xfs_inode_t *ip,
61 char *link)
62{
63 xfs_mount_t *mp = ip->i_mount;
64 int pathlen = ip->i_d.di_size;
65 int nmaps = SYMLINK_MAPS;
66 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
67 xfs_daddr_t d;
68 int byte_cnt;
69 int n;
70 xfs_buf_t *bp;
71 int error = 0;
72
Dave Chinner5c8ed202011-09-18 20:40:45 +000073 error = xfs_bmapi_read(ip, 0, XFS_B_TO_FSB(mp, pathlen), mval, &nmaps,
74 0);
Christoph Hellwig804c83c2007-08-28 13:59:03 +100075 if (error)
76 goto out;
77
78 for (n = 0; n < nmaps; n++) {
79 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
80 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
81
Dave Chinner611c9942012-04-23 15:59:07 +100082 bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt), 0);
Chandra Seetharamanac4d6882011-08-03 02:18:29 +000083 if (!bp)
84 return XFS_ERROR(ENOMEM);
Chandra Seetharamane5702802011-08-03 02:18:34 +000085 error = bp->b_error;
Christoph Hellwig804c83c2007-08-28 13:59:03 +100086 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +000087 xfs_buf_ioerror_alert(bp, __func__);
Christoph Hellwig804c83c2007-08-28 13:59:03 +100088 xfs_buf_relse(bp);
89 goto out;
90 }
91 if (pathlen < byte_cnt)
92 byte_cnt = pathlen;
93 pathlen -= byte_cnt;
94
Chandra Seetharaman62926042011-07-22 23:40:15 +000095 memcpy(link, bp->b_addr, byte_cnt);
Christoph Hellwig804c83c2007-08-28 13:59:03 +100096 xfs_buf_relse(bp);
97 }
98
99 link[ip->i_d.di_size] = '\0';
100 error = 0;
101
102 out:
103 return error;
104}
105
Christoph Hellwig993386c2007-08-28 16:12:30 +1000106int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107xfs_readlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000108 xfs_inode_t *ip,
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000109 char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000111 xfs_mount_t *mp = ip->i_mount;
Carlos Maiolinob52a3602011-11-07 16:10:24 +0000112 xfs_fsize_t pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000115 trace_xfs_readlink(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 if (XFS_FORCED_SHUTDOWN(mp))
118 return XFS_ERROR(EIO);
119
120 xfs_ilock(ip, XFS_ILOCK_SHARED);
121
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000122 pathlen = ip->i_d.di_size;
123 if (!pathlen)
124 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Carlos Maiolinob52a3602011-11-07 16:10:24 +0000126 if (pathlen < 0 || pathlen > MAXPATHLEN) {
127 xfs_alert(mp, "%s: inode (%llu) bad symlink length (%lld)",
128 __func__, (unsigned long long) ip->i_ino,
129 (long long) pathlen);
130 ASSERT(0);
Jan Kara9b025eb2012-01-11 18:52:10 +0000131 error = XFS_ERROR(EFSCORRUPTED);
132 goto out;
Carlos Maiolinob52a3602011-11-07 16:10:24 +0000133 }
134
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (ip->i_df.if_flags & XFS_IFINLINE) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000137 memcpy(link, ip->i_df.if_u1.if_data, pathlen);
138 link[pathlen] = '\0';
139 } else {
140 error = xfs_readlink_bmap(ip, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000143 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return error;
146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000149 * Flags for xfs_free_eofblocks
150 */
151#define XFS_FREE_EOF_TRYLOCK (1<<0)
152
153/*
David Chinner92dfe8d2007-05-24 15:22:19 +1000154 * This is called by xfs_inactive to free any blocks beyond eof
155 * when the link count isn't zero and by xfs_dm_punch_hole() when
156 * punching a hole to EOF.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 */
Eric Sandeend96f8f82009-07-02 00:09:33 -0500158STATIC int
David Chinner92dfe8d2007-05-24 15:22:19 +1000159xfs_free_eofblocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 xfs_mount_t *mp,
David Chinner92dfe8d2007-05-24 15:22:19 +1000161 xfs_inode_t *ip,
162 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 xfs_trans_t *tp;
165 int error;
166 xfs_fileoff_t end_fsb;
167 xfs_fileoff_t last_fsb;
168 xfs_filblks_t map_len;
169 int nimaps;
170 xfs_bmbt_irec_t imap;
171
172 /*
173 * Figure out if there are any blocks beyond the end
174 * of the file. If not, then there is nothing to do.
175 */
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000176 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_ISIZE(ip));
Dave Chinner32972382012-06-08 15:44:54 +1000177 last_fsb = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Kulikov Vasiliy3f348852010-07-20 17:54:28 +1000178 if (last_fsb <= end_fsb)
Jesper Juhl014c2542006-01-15 02:37:08 +0100179 return 0;
Kulikov Vasiliy3f348852010-07-20 17:54:28 +1000180 map_len = last_fsb - end_fsb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 nimaps = 1;
183 xfs_ilock(ip, XFS_ILOCK_SHARED);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000184 error = xfs_bmapi_read(ip, end_fsb, map_len, &imap, &nimaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 xfs_iunlock(ip, XFS_ILOCK_SHARED);
186
187 if (!error && (nimaps != 0) &&
Yingping Lu68bdb6e2006-01-11 15:38:31 +1100188 (imap.br_startblock != HOLESTARTBLOCK ||
189 ip->i_delayed_blks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 /*
191 * Attach the dquots to the inode up front.
192 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200193 error = xfs_qm_dqattach(ip, 0);
194 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100195 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 /*
198 * There are blocks after the end of file.
199 * Free them up now by truncating the file to
200 * its current size.
201 */
202 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
203
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000204 if (flags & XFS_FREE_EOF_TRYLOCK) {
205 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
206 xfs_trans_cancel(tp, 0);
207 return 0;
208 }
209 } else {
David Chinner92dfe8d2007-05-24 15:22:19 +1000210 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 error = xfs_trans_reserve(tp, 0,
214 XFS_ITRUNCATE_LOG_RES(mp),
215 0, XFS_TRANS_PERM_LOG_RES,
216 XFS_ITRUNCATE_LOG_COUNT);
217 if (error) {
218 ASSERT(XFS_FORCED_SHUTDOWN(mp));
219 xfs_trans_cancel(tp, 0);
220 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100221 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223
224 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +0000225 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000227 /*
228 * Do not update the on-disk file size. If we update the
229 * on-disk file size and then the system crashes before the
230 * contents of the file are flushed to disk then the files
231 * may be full of holes (ie NULL files bug).
232 */
233 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK,
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000234 XFS_ISIZE(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (error) {
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200236 /*
237 * If we get an error at this point we simply don't
238 * bother truncating the file.
239 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 xfs_trans_cancel(tp,
241 (XFS_TRANS_RELEASE_LOG_RES |
242 XFS_TRANS_ABORT));
243 } else {
244 error = xfs_trans_commit(tp,
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000245 XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000247 xfs_iunlock(ip, XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100249 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252/*
253 * Free a symlink that has blocks associated with it.
254 */
255STATIC int
256xfs_inactive_symlink_rmt(
257 xfs_inode_t *ip,
258 xfs_trans_t **tpp)
259{
260 xfs_buf_t *bp;
261 int committed;
262 int done;
263 int error;
264 xfs_fsblock_t first_block;
265 xfs_bmap_free_t free_list;
266 int i;
267 xfs_mount_t *mp;
268 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
269 int nmaps;
270 xfs_trans_t *ntp;
271 int size;
272 xfs_trans_t *tp;
273
274 tp = *tpp;
275 mp = ip->i_mount;
276 ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip));
277 /*
278 * We're freeing a symlink that has some
279 * blocks allocated to it. Free the
280 * blocks here. We know that we've got
281 * either 1 or 2 extents and that we can
282 * free them all in one bunmapi call.
283 */
284 ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /*
287 * Lock the inode, fix the size, and join it to the transaction.
288 * Hold it so in the normal path, we still have it locked for
289 * the second transaction. In the error paths we need it
290 * held so the cancel won't rele it, see below.
291 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 size = (int)ip->i_d.di_size;
293 ip->i_d.di_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
295 /*
296 * Find the block(s) so we can inval and unmap them.
297 */
298 done = 0;
Eric Sandeen9d87c312009-01-14 23:22:07 -0600299 xfs_bmap_init(&free_list, &first_block);
Tobias Klausere8c96f82006-03-24 03:15:34 -0800300 nmaps = ARRAY_SIZE(mval);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000301 error = xfs_bmapi_read(ip, 0, XFS_B_TO_FSB(mp, size),
302 mval, &nmaps, 0);
303 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 goto error0;
305 /*
306 * Invalidate the block(s).
307 */
308 for (i = 0; i < nmaps; i++) {
309 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
310 XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
311 XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000312 if (!bp) {
313 error = ENOMEM;
314 goto error1;
315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 xfs_trans_binval(tp, bp);
317 }
318 /*
319 * Unmap the dead block(s) to the free_list.
320 */
321 if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000322 &first_block, &free_list, &done)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 goto error1;
324 ASSERT(done);
325 /*
326 * Commit the first transaction. This logs the EFI and the inode.
327 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100328 if ((error = xfs_bmap_finish(&tp, &free_list, &committed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 goto error1;
330 /*
331 * The transaction must have been committed, since there were
332 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
333 * The new tp has the extent freeing and EFDs.
334 */
335 ASSERT(committed);
336 /*
337 * The first xact was committed, so add the inode to the new one.
338 * Mark it dirty so it will be logged and moved forward in the log as
339 * part of every commit.
340 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000341 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
343 /*
344 * Get a new, empty transaction to return to our caller.
345 */
346 ntp = xfs_trans_dup(tp);
347 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000348 * Commit the transaction containing extent freeing and EFDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * If we get an error on the commit here or on the reserve below,
350 * we need to unlock the inode since the new transaction doesn't
351 * have the inode attached.
352 */
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000353 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 tp = ntp;
355 if (error) {
356 ASSERT(XFS_FORCED_SHUTDOWN(mp));
357 goto error0;
358 }
359 /*
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100360 * transaction commit worked ok so we can drop the extra ticket
361 * reference that we gained in xfs_trans_dup()
362 */
363 xfs_log_ticket_put(tp->t_ticket);
364
365 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 * Remove the memory for extent descriptions (just bookkeeping).
367 */
368 if (ip->i_df.if_bytes)
369 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
370 ASSERT(ip->i_df.if_bytes == 0);
371 /*
372 * Put an itruncate log reservation in the new transaction
373 * for our caller.
374 */
375 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
376 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
377 ASSERT(XFS_FORCED_SHUTDOWN(mp));
378 goto error0;
379 }
Christoph Hellwigb373e982012-07-04 11:13:29 -0400380
381 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 *tpp = tp;
383 return 0;
384
385 error1:
386 xfs_bmap_cancel(&free_list);
387 error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Christoph Hellwig993386c2007-08-28 16:12:30 +1000391int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392xfs_release(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000393 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Christoph Hellwig993386c2007-08-28 16:12:30 +1000395 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 int error;
397
Christoph Hellwig42173f62008-04-22 17:33:25 +1000398 if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000402 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return 0;
404
David Chinner2a82b8b2007-07-11 11:09:12 +1000405 if (!XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000406 int truncated;
407
David Chinner2a82b8b2007-07-11 11:09:12 +1000408 /*
409 * If we are using filestreams, and we have an unlinked
410 * file that we are processing the last close on, then nothing
411 * will be able to reopen and write to this file. Purge this
412 * inode from the filestreams cache so that it doesn't delay
413 * teardown of the inode.
414 */
415 if ((ip->i_d.di_nlink == 0) && xfs_inode_is_filestream(ip))
416 xfs_filestream_deassociate(ip);
417
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000418 /*
419 * If we previously truncated this file and removed old data
420 * in the process, we want to initiate "early" writeout on
421 * the last close. This is an attempt to combat the notorious
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300422 * NULL files problem which is particularly noticeable from a
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000423 * truncate down, buffered (re-)write (delalloc), followed by
424 * a crash. What we are effectively doing here is
425 * significantly reducing the time window where we'd otherwise
426 * be exposed to that problem.
427 */
Christoph Hellwig09262b42007-08-29 11:44:50 +1000428 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
Dave Chinnerdf4368a2011-06-23 01:35:00 +0000429 if (truncated) {
430 xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE);
431 if (VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0)
432 xfs_flush_pages(ip, 0, -1, XBF_ASYNC, FI_NONE);
433 }
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000434 }
435
Dave Chinner6e857562010-12-23 12:02:31 +1100436 if (ip->i_d.di_nlink == 0)
437 return 0;
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000438
Al Viroabbede12011-07-26 02:31:30 -0400439 if ((S_ISREG(ip->i_d.di_mode) &&
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000440 (VFS_I(ip)->i_size > 0 ||
441 (VN_CACHED(VFS_I(ip)) > 0 || ip->i_delayed_blks > 0)) &&
Dave Chinner6e857562010-12-23 12:02:31 +1100442 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
443 (!(ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)))) {
444
445 /*
446 * If we can't get the iolock just skip truncating the blocks
447 * past EOF because we could deadlock with the mmap_sem
448 * otherwise. We'll get another chance to drop them once the
449 * last reference to the inode is dropped, so we'll never leak
450 * blocks permanently.
451 *
452 * Further, check if the inode is being opened, written and
453 * closed frequently and we have delayed allocation blocks
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300454 * outstanding (e.g. streaming writes from the NFS server),
Dave Chinner6e857562010-12-23 12:02:31 +1100455 * truncating the blocks past EOF will cause fragmentation to
456 * occur.
457 *
458 * In this case don't do the truncation, either, but we have to
459 * be careful how we detect this case. Blocks beyond EOF show
460 * up as i_delayed_blks even when the inode is clean, so we
461 * need to truncate them away first before checking for a dirty
462 * release. Hence on the first dirty close we will still remove
463 * the speculative allocation, but after that we will leave it
464 * in place.
465 */
466 if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE))
467 return 0;
468
469 error = xfs_free_eofblocks(mp, ip,
470 XFS_FREE_EOF_TRYLOCK);
471 if (error)
472 return error;
473
474 /* delalloc blocks after truncation means it really is dirty */
475 if (ip->i_delayed_blks)
476 xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return 0;
479}
480
481/*
482 * xfs_inactive
483 *
484 * This is called when the vnode reference count for the vnode
485 * goes to zero. If the file has been unlinked, then it must
486 * now be truncated. Also, we clear all of the read-ahead state
487 * kept for the inode here since the file is now closed.
488 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000489int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490xfs_inactive(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000491 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000493 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 xfs_fsblock_t first_block;
495 int committed;
496 xfs_trans_t *tp;
497 xfs_mount_t *mp;
498 int error;
Christoph Hellwigb373e982012-07-04 11:13:29 -0400499 int truncate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 /*
502 * If the inode is already free, then there can be nothing
503 * to clean up here.
504 */
Christoph Hellwigcb4c8cc2009-03-16 08:25:25 +0100505 if (ip->i_d.di_mode == 0 || is_bad_inode(VFS_I(ip))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 ASSERT(ip->i_df.if_real_bytes == 0);
507 ASSERT(ip->i_df.if_broot_bytes == 0);
508 return VN_INACTIVE_CACHE;
509 }
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 mp = ip->i_mount;
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 error = 0;
514
515 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000516 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 goto out;
518
519 if (ip->i_d.di_nlink != 0) {
Al Viroabbede12011-07-26 02:31:30 -0400520 if ((S_ISREG(ip->i_d.di_mode) &&
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000521 (VFS_I(ip)->i_size > 0 ||
522 (VN_CACHED(VFS_I(ip)) > 0 || ip->i_delayed_blks > 0)) &&
523 (ip->i_df.if_flags & XFS_IFEXTENTS) &&
524 (!(ip->i_d.di_flags &
Nathan Scottdd9f4382006-01-11 15:28:28 +1100525 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)) ||
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000526 ip->i_delayed_blks != 0))) {
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000527 error = xfs_free_eofblocks(mp, ip, 0);
David Chinner92dfe8d2007-05-24 15:22:19 +1000528 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100529 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531 goto out;
532 }
533
Christoph Hellwigb373e982012-07-04 11:13:29 -0400534 if (S_ISREG(ip->i_d.di_mode) &&
535 (ip->i_d.di_size != 0 || XFS_ISIZE(ip) != 0 ||
536 ip->i_d.di_nextents > 0 || ip->i_delayed_blks > 0))
537 truncate = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Christoph Hellwig7d095252009-06-08 15:33:32 +0200539 error = xfs_qm_dqattach(ip, 0);
540 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100541 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400544 error = xfs_trans_reserve(tp, 0,
545 (truncate || S_ISLNK(ip->i_d.di_mode)) ?
546 XFS_ITRUNCATE_LOG_RES(mp) :
547 XFS_IFREE_LOG_RES(mp),
548 0,
549 XFS_TRANS_PERM_LOG_RES,
550 XFS_ITRUNCATE_LOG_COUNT);
551 if (error) {
552 ASSERT(XFS_FORCED_SHUTDOWN(mp));
553 xfs_trans_cancel(tp, 0);
554 return VN_INACTIVE_CACHE;
555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Christoph Hellwigb373e982012-07-04 11:13:29 -0400557 xfs_ilock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
558 xfs_trans_ijoin(tp, ip, 0);
559
560 if (S_ISLNK(ip->i_d.di_mode)) {
561 /*
562 * Zero length symlinks _can_ exist.
563 */
564 if (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) {
565 error = xfs_inactive_symlink_rmt(ip, &tp);
566 if (error)
567 goto out_cancel;
568 } else if (ip->i_df.if_bytes > 0) {
569 xfs_idata_realloc(ip, -(ip->i_df.if_bytes),
570 XFS_DATA_FORK);
571 ASSERT(ip->i_df.if_bytes == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
Christoph Hellwigb373e982012-07-04 11:13:29 -0400573 } else if (truncate) {
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000574 ip->i_d.di_size = 0;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000575 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
576
577 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400578 if (error)
579 goto out_cancel;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000580
581 ASSERT(ip->i_d.di_nextents == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583
584 /*
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400585 * If there are attributes associated with the file then blow them away
586 * now. The code calls a routine that recursively deconstructs the
587 * attribute fork. We need to just commit the current transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 * because we can't use it for xfs_attr_inactive().
589 */
590 if (ip->i_d.di_anextents > 0) {
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400591 ASSERT(ip->i_d.di_forkoff != 0);
592
593 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
594 xfs_iunlock(ip, XFS_ILOCK_EXCL);
595 if (error)
596 goto error_unlock;
597
598 error = xfs_attr_inactive(ip);
599 if (error)
600 goto error_unlock;
601
602 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
603 error = xfs_trans_reserve(tp, 0,
604 XFS_IFREE_LOG_RES(mp),
605 0, XFS_TRANS_PERM_LOG_RES,
606 XFS_INACTIVE_LOG_COUNT);
607 if (error)
608 goto error_cancel;
609
610 xfs_ilock(ip, XFS_ILOCK_EXCL);
611 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400614 if (ip->i_afp)
615 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
616
617 ASSERT(ip->i_d.di_anextents == 0);
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /*
620 * Free the inode.
621 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600622 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 error = xfs_ifree(tp, ip, &free_list);
624 if (error) {
625 /*
626 * If we fail to free the inode, shut down. The cancel
627 * might do that, we need to make sure. Otherwise the
628 * inode might be lost for a long time or forever.
629 */
630 if (!XFS_FORCED_SHUTDOWN(mp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100631 xfs_notice(mp, "%s: xfs_ifree returned error %d",
632 __func__, error);
Nathan Scott7d04a332006-06-09 14:58:38 +1000633 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
636 } else {
637 /*
638 * Credit the quota account(s). The inode is gone.
639 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200640 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 /*
David Chinner78e9da72008-04-10 12:24:17 +1000643 * Just ignore errors at this point. There is nothing we can
644 * do except to try to keep going. Make sure it's not a silent
645 * error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 */
David Chinner78e9da72008-04-10 12:24:17 +1000647 error = xfs_bmap_finish(&tp, &free_list, &committed);
648 if (error)
Dave Chinner53487782011-03-07 10:05:35 +1100649 xfs_notice(mp, "%s: xfs_bmap_finish returned error %d",
650 __func__, error);
David Chinner78e9da72008-04-10 12:24:17 +1000651 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
652 if (error)
Dave Chinner53487782011-03-07 10:05:35 +1100653 xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
654 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /*
658 * Release the dquots held by inode, if any.
659 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200660 xfs_qm_dqdetach(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
662
Christoph Hellwigb373e982012-07-04 11:13:29 -0400663out:
664 return VN_INACTIVE_CACHE;
665out_cancel:
666 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
667 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return VN_INACTIVE_CACHE;
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400669
670error_cancel:
671 ASSERT(XFS_FORCED_SHUTDOWN(mp));
672 xfs_trans_cancel(tp, 0);
673error_unlock:
674 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
675 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Barry Naujok384f3ce2008-05-21 16:58:22 +1000678/*
679 * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
680 * is allowed, otherwise it has to be an exact match. If a CI match is found,
681 * ci_name->name will point to a the actual name (caller must free) or
682 * will be set to NULL if an exact match is found.
683 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000684int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685xfs_lookup(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000686 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000687 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000688 xfs_inode_t **ipp,
689 struct xfs_name *ci_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000691 xfs_ino_t inum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 int error;
693 uint lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000695 trace_xfs_lookup(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
698 return XFS_ERROR(EIO);
699
700 lock_mode = xfs_ilock_map_shared(dp);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000701 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 xfs_iunlock_map_shared(dp, lock_mode);
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000703
704 if (error)
705 goto out;
706
Dave Chinner7b6259e2010-06-24 11:35:17 +1000707 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000708 if (error)
Barry Naujok384f3ce2008-05-21 16:58:22 +1000709 goto out_free_name;
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000710
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000711 return 0;
712
Barry Naujok384f3ce2008-05-21 16:58:22 +1000713out_free_name:
714 if (ci_name)
715 kmem_free(ci_name->name);
716out:
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000717 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return error;
719}
720
Christoph Hellwig993386c2007-08-28 16:12:30 +1000721int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722xfs_create(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000723 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000724 struct xfs_name *name,
Al Viro576b1d62011-07-26 02:50:15 -0400725 umode_t mode,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000726 xfs_dev_t rdev,
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000727 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100729 int is_dir = S_ISDIR(mode);
730 struct xfs_mount *mp = dp->i_mount;
731 struct xfs_inode *ip = NULL;
732 struct xfs_trans *tp = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000733 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 xfs_bmap_free_t free_list;
735 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +1000736 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 uint cancel_flags;
738 int committed;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000739 prid_t prid;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100740 struct xfs_dquot *udqp = NULL;
741 struct xfs_dquot *gdqp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 uint resblks;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100743 uint log_res;
744 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000746 trace_xfs_create(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100748 if (XFS_FORCED_SHUTDOWN(mp))
749 return XFS_ERROR(EIO);
750
Nathan Scott365ca832005-06-21 15:39:12 +1000751 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000752 prid = xfs_get_projid(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 else
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000754 prid = XFS_PROJID_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 /*
757 * Make sure that we have allocated dquot(s) on disk.
758 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200759 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100760 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000762 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100764 if (is_dir) {
765 rdev = 0;
766 resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
767 log_res = XFS_MKDIR_LOG_RES(mp);
768 log_count = XFS_MKDIR_LOG_COUNT;
769 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
770 } else {
771 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
772 log_res = XFS_CREATE_LOG_RES(mp);
773 log_count = XFS_CREATE_LOG_COUNT;
774 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 /*
780 * Initially assume that the file does not exist and
781 * reserve the resources for that case. If that is not
782 * the case we'll drop the one we have and get a more
783 * appropriate transaction later.
784 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100785 error = xfs_trans_reserve(tp, resblks, log_res, 0,
786 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (error == ENOSPC) {
Dave Chinner153fec42009-04-06 18:48:30 +0200788 /* flush outstanding delalloc blocks and retry */
789 xfs_flush_inodes(dp);
Christoph Hellwig4734d402009-09-09 18:19:02 -0500790 error = xfs_trans_reserve(tp, resblks, log_res, 0,
791 XFS_TRANS_PERM_LOG_RES, log_count);
Dave Chinner153fec42009-04-06 18:48:30 +0200792 }
793 if (error == ENOSPC) {
794 /* No space at all so try a "no-allocation" reservation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 resblks = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100796 error = xfs_trans_reserve(tp, 0, log_res, 0,
797 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799 if (error) {
800 cancel_flags = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100801 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000804 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +1000805 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100807 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 /*
810 * Reserve disk quota and the inode.
811 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200812 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100814 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Barry Naujok556b8b12008-04-10 12:22:07 +1000816 error = xfs_dir_canenter(tp, dp, name, resblks);
817 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100818 goto out_trans_cancel;
819
820 /*
821 * A newly created regular or special file just has one directory
822 * entry pointing to them, but a directory also the "." entry
823 * pointing to itself.
824 */
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000825 error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev,
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100826 prid, resblks > 0, &ip, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (error) {
828 if (error == ENOSPC)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100829 goto out_trans_cancel;
830 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 /*
Christoph Hellwig993386c2007-08-28 16:12:30 +1000834 * Now we join the directory inode to the transaction. We do not do it
835 * earlier because xfs_dir_ialloc might commit the previous transaction
836 * (and release all the locks). An error from here on will result in
837 * the transaction cancel unlocking dp so don't do it explicitly in the
838 * error path.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000840 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +1000841 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Barry Naujok556b8b12008-04-10 12:22:07 +1000843 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000844 &first_block, &free_list, resblks ?
845 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (error) {
847 ASSERT(error != ENOSPC);
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100848 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000850 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
852
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100853 if (is_dir) {
854 error = xfs_dir_init(tp, ip, dp);
855 if (error)
856 goto out_bmap_cancel;
857
858 error = xfs_bumplink(tp, dp);
859 if (error)
860 goto out_bmap_cancel;
861 }
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /*
864 * If this is a synchronous mount, make sure that the
865 * create transaction goes to disk before returning to
866 * the user.
867 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100868 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 /*
872 * Attach the dquot(s) to the inodes and modify them incore.
873 * These ids of the inode couldn't have changed since the new
874 * inode has been locked ever since it was created.
875 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200876 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100878 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100879 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000880 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000882 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000883 if (error)
884 goto out_release_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Christoph Hellwig7d095252009-06-08 15:33:32 +0200886 xfs_qm_dqrele(udqp);
887 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100889 *ipp = ip;
Christoph Hellwig288699f2010-06-23 18:11:15 +1000890 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100892 out_bmap_cancel:
893 xfs_bmap_cancel(&free_list);
894 out_trans_abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100896 out_trans_cancel:
897 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000898 out_release_inode:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 /*
900 * Wait until after the current transaction is aborted to
901 * release the inode. This prevents recursive transactions
902 * and deadlocks from xfs_inactive.
903 */
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000904 if (ip)
905 IRELE(ip);
906
907 xfs_qm_dqrele(udqp);
908 xfs_qm_dqrele(gdqp);
909
910 if (unlock_dp_on_error)
911 xfs_iunlock(dp, XFS_ILOCK_EXCL);
912 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
915#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916int xfs_locked_n;
917int xfs_small_retries;
918int xfs_middle_retries;
919int xfs_lots_retries;
920int xfs_lock_delays;
921#endif
922
923/*
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000924 * Bump the subclass so xfs_lock_inodes() acquires each lock with
925 * a different value
926 */
927static inline int
928xfs_lock_inumorder(int lock_mode, int subclass)
929{
930 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +1000931 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000932 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +1000933 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000934
935 return lock_mode;
936}
937
938/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 * The following routine will lock n inodes in exclusive mode.
940 * We assume the caller calls us with the inodes in i_ino order.
941 *
942 * We need to detect deadlock where an inode that we lock
943 * is in the AIL and we start waiting for another inode that is locked
944 * by a thread in a long running transaction (such as truncate). This can
945 * result in deadlock since the long running trans might need to wait
946 * for the inode we just locked in order to push the tail and free space
947 * in the log.
948 */
949void
950xfs_lock_inodes(
951 xfs_inode_t **ips,
952 int inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 uint lock_mode)
954{
955 int attempts = 0, i, j, try_lock;
956 xfs_log_item_t *lp;
957
958 ASSERT(ips && (inodes >= 2)); /* we need at least two */
959
Christoph Hellwigcfa853e2008-04-22 17:34:06 +1000960 try_lock = 0;
961 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963again:
964 for (; i < inodes; i++) {
965 ASSERT(ips[i]);
966
967 if (i && (ips[i] == ips[i-1])) /* Already locked */
968 continue;
969
970 /*
971 * If try_lock is not set yet, make sure all locked inodes
972 * are not in the AIL.
973 * If any are, set try_lock to be used later.
974 */
975
976 if (!try_lock) {
977 for (j = (i - 1); j >= 0 && !try_lock; j--) {
978 lp = (xfs_log_item_t *)ips[j]->i_itemp;
979 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
980 try_lock++;
981 }
982 }
983 }
984
985 /*
986 * If any of the previous locks we have locked is in the AIL,
987 * we must TRY to get the second and subsequent locks. If
988 * we can't get any, we must release all we have
989 * and try again.
990 */
991
992 if (try_lock) {
993 /* try_lock must be 0 if i is 0. */
994 /*
995 * try_lock means we have an inode locked
996 * that is in the AIL.
997 */
998 ASSERT(i != 0);
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000999 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 attempts++;
1001
1002 /*
1003 * Unlock all previous guys and try again.
1004 * xfs_iunlock will try to push the tail
1005 * if the inode is in the AIL.
1006 */
1007
1008 for(j = i - 1; j >= 0; j--) {
1009
1010 /*
1011 * Check to see if we've already
1012 * unlocked this one.
1013 * Not the first one going back,
1014 * and the inode ptr is the same.
1015 */
1016 if ((j != (i - 1)) && ips[j] ==
1017 ips[j+1])
1018 continue;
1019
1020 xfs_iunlock(ips[j], lock_mode);
1021 }
1022
1023 if ((attempts % 5) == 0) {
1024 delay(1); /* Don't just spin the CPU */
1025#ifdef DEBUG
1026 xfs_lock_delays++;
1027#endif
1028 }
1029 i = 0;
1030 try_lock = 0;
1031 goto again;
1032 }
1033 } else {
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001034 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036 }
1037
1038#ifdef DEBUG
1039 if (attempts) {
1040 if (attempts < 5) xfs_small_retries++;
1041 else if (attempts < 100) xfs_middle_retries++;
1042 else xfs_lots_retries++;
1043 } else {
1044 xfs_locked_n++;
1045 }
1046#endif
1047}
1048
David Chinnerf9114eb2008-09-17 16:51:21 +10001049/*
1050 * xfs_lock_two_inodes() can only be used to lock one type of lock
1051 * at a time - the iolock or the ilock, but not both at once. If
1052 * we lock both at once, lockdep will report false positives saying
1053 * we have violated locking orders.
1054 */
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001055void
1056xfs_lock_two_inodes(
1057 xfs_inode_t *ip0,
1058 xfs_inode_t *ip1,
1059 uint lock_mode)
1060{
1061 xfs_inode_t *temp;
1062 int attempts = 0;
1063 xfs_log_item_t *lp;
1064
David Chinnerf9114eb2008-09-17 16:51:21 +10001065 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
1066 ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0);
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001067 ASSERT(ip0->i_ino != ip1->i_ino);
1068
1069 if (ip0->i_ino > ip1->i_ino) {
1070 temp = ip0;
1071 ip0 = ip1;
1072 ip1 = temp;
1073 }
1074
1075 again:
1076 xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0));
1077
1078 /*
1079 * If the first lock we have locked is in the AIL, we must TRY to get
1080 * the second lock. If we can't get it, we must release the first one
1081 * and try again.
1082 */
1083 lp = (xfs_log_item_t *)ip0->i_itemp;
1084 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1085 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) {
1086 xfs_iunlock(ip0, lock_mode);
1087 if ((++attempts % 5) == 0)
1088 delay(1); /* Don't just spin the CPU */
1089 goto again;
1090 }
1091 } else {
1092 xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1));
1093 }
1094}
1095
Christoph Hellwig993386c2007-08-28 16:12:30 +10001096int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097xfs_remove(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001098 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001099 struct xfs_name *name,
1100 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001102 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 xfs_trans_t *tp = NULL;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001104 int is_dir = S_ISDIR(ip->i_d.di_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 int error = 0;
1106 xfs_bmap_free_t free_list;
1107 xfs_fsblock_t first_block;
1108 int cancel_flags;
1109 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 int link_zero;
1111 uint resblks;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001112 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001114 trace_xfs_remove(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 if (XFS_FORCED_SHUTDOWN(mp))
1117 return XFS_ERROR(EIO);
1118
Christoph Hellwig7d095252009-06-08 15:33:32 +02001119 error = xfs_qm_dqattach(dp, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001120 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Christoph Hellwig7d095252009-06-08 15:33:32 +02001123 error = xfs_qm_dqattach(ip, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001124 if (error)
1125 goto std_return;
1126
1127 if (is_dir) {
1128 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
1129 log_count = XFS_DEFAULT_LOG_COUNT;
1130 } else {
1131 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
1132 log_count = XFS_REMOVE_LOG_COUNT;
1133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 /*
1137 * We try to get the real space reservation first,
1138 * allowing for directory btree deletion(s) implying
1139 * possible bmap insert(s). If we can't get the space
1140 * reservation then we use 0 instead, and avoid the bmap
1141 * btree insert(s) in the directory code by, if the bmap
1142 * insert tries to happen, instead trimming the LAST
1143 * block from the directory.
1144 */
1145 resblks = XFS_REMOVE_SPACE_RES(mp);
1146 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001147 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (error == ENOSPC) {
1149 resblks = 0;
1150 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001151 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
1153 if (error) {
1154 ASSERT(error != ENOSPC);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001155 cancel_flags = 0;
1156 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
1158
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001159 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Christoph Hellwigddc34152011-09-19 15:00:54 +00001161 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1162 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 /*
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001165 * If we're removing a directory perform some additional validation.
1166 */
1167 if (is_dir) {
1168 ASSERT(ip->i_d.di_nlink >= 2);
1169 if (ip->i_d.di_nlink != 2) {
1170 error = XFS_ERROR(ENOTEMPTY);
1171 goto out_trans_cancel;
1172 }
1173 if (!xfs_dir_isempty(ip)) {
1174 error = XFS_ERROR(ENOTEMPTY);
1175 goto out_trans_cancel;
1176 }
1177 }
1178
Eric Sandeen9d87c312009-01-14 23:22:07 -06001179 xfs_bmap_init(&free_list, &first_block);
Barry Naujok556b8b12008-04-10 12:22:07 +10001180 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
Christoph Hellwigd4377d82008-04-22 17:33:46 +10001181 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (error) {
1183 ASSERT(error != ENOENT);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001184 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001186 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001188 if (is_dir) {
1189 /*
1190 * Drop the link from ip's "..".
1191 */
1192 error = xfs_droplink(tp, dp);
1193 if (error)
1194 goto out_bmap_cancel;
1195
1196 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001197 * Drop the "." link from ip to self.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001198 */
1199 error = xfs_droplink(tp, ip);
1200 if (error)
1201 goto out_bmap_cancel;
1202 } else {
1203 /*
1204 * When removing a non-directory we need to log the parent
Dave Chinner26c52952008-11-28 14:23:37 +11001205 * inode here. For a directory this is done implicitly
1206 * by the xfs_droplink call for the ".." entry.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001207 */
1208 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
1210
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001211 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001212 * Drop the link from dp to ip.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001213 */
1214 error = xfs_droplink(tp, ip);
1215 if (error)
1216 goto out_bmap_cancel;
1217
1218 /*
1219 * Determine if this is the last link while
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 * we are in the transaction.
1221 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001222 link_zero = (ip->i_d.di_nlink == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 * If this is a synchronous mount, make sure that the
1226 * remove transaction goes to disk before returning to
1227 * the user.
1228 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001229 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001232 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001233 if (error)
1234 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001236 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig5df78e72008-04-22 17:34:24 +10001237 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
1240 /*
David Chinner2a82b8b2007-07-11 11:09:12 +10001241 * If we are using filestreams, kill the stream association.
1242 * If the file is still open it may get a new one but that
1243 * will get killed on last close in xfs_close() so we don't
1244 * have to worry about that.
1245 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001246 if (!is_dir && link_zero && xfs_inode_is_filestream(ip))
David Chinner2a82b8b2007-07-11 11:09:12 +10001247 xfs_filestream_deassociate(ip);
1248
Christoph Hellwig288699f2010-06-23 18:11:15 +10001249 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001251 out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 xfs_bmap_cancel(&free_list);
1253 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001254 out_trans_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001256 std_return:
1257 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
Christoph Hellwig993386c2007-08-28 16:12:30 +10001260int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261xfs_link(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001262 xfs_inode_t *tdp,
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001263 xfs_inode_t *sip,
Barry Naujok556b8b12008-04-10 12:22:07 +10001264 struct xfs_name *target_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001266 xfs_mount_t *mp = tdp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 int error;
1269 xfs_bmap_free_t free_list;
1270 xfs_fsblock_t first_block;
1271 int cancel_flags;
1272 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 int resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001275 trace_xfs_link(tdp, target_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001277 ASSERT(!S_ISDIR(sip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 if (XFS_FORCED_SHUTDOWN(mp))
1280 return XFS_ERROR(EIO);
1281
Christoph Hellwig7d095252009-06-08 15:33:32 +02001282 error = xfs_qm_dqattach(sip, 0);
Christoph Hellwigcb3f35b2009-02-04 09:34:20 +01001283 if (error)
1284 goto std_return;
1285
Christoph Hellwig7d095252009-06-08 15:33:32 +02001286 error = xfs_qm_dqattach(tdp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (error)
1288 goto std_return;
1289
1290 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
1291 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10001292 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
1294 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1295 if (error == ENOSPC) {
1296 resblks = 0;
1297 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
1298 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1299 }
1300 if (error) {
1301 cancel_flags = 0;
1302 goto error_return;
1303 }
1304
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001305 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Christoph Hellwigddc34152011-09-19 15:00:54 +00001307 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
1308 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 /*
Nathan Scott365ca832005-06-21 15:39:12 +10001311 * If we are using project inheritance, we only allow hard link
1312 * creation in our tree when the project IDs are the same; else
1313 * the tree quota mechanism could be circumvented.
1314 */
1315 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001316 (xfs_get_projid(tdp) != xfs_get_projid(sip)))) {
Nathan Scottb1ecdda2006-05-08 19:51:42 +10001317 error = XFS_ERROR(EXDEV);
Nathan Scott365ca832005-06-21 15:39:12 +10001318 goto error_return;
1319 }
1320
Barry Naujok556b8b12008-04-10 12:22:07 +10001321 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
1322 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 goto error_return;
1324
Eric Sandeen9d87c312009-01-14 23:22:07 -06001325 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Barry Naujok556b8b12008-04-10 12:22:07 +10001327 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
1328 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (error)
1330 goto abort_return;
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001331 xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1333
1334 error = xfs_bumplink(tp, sip);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001335 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338 /*
1339 * If this is a synchronous mount, make sure that the
1340 * link transaction goes to disk before returning to
1341 * the user.
1342 */
1343 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1344 xfs_trans_set_sync(tp);
1345 }
1346
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001347 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (error) {
1349 xfs_bmap_cancel(&free_list);
1350 goto abort_return;
1351 }
1352
Christoph Hellwig288699f2010-06-23 18:11:15 +10001353 return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355 abort_return:
1356 cancel_flags |= XFS_TRANS_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 error_return:
1358 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}
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001362
Christoph Hellwig993386c2007-08-28 16:12:30 +10001363int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364xfs_symlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001365 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001366 struct xfs_name *link_name,
1367 const char *target_path,
Al Viro576b1d62011-07-26 02:50:15 -04001368 umode_t mode,
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001369 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001371 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 xfs_inode_t *ip;
1374 int error;
1375 int pathlen;
1376 xfs_bmap_free_t free_list;
1377 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001378 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 uint cancel_flags;
1380 int committed;
1381 xfs_fileoff_t first_fsb;
1382 xfs_filblks_t fs_blocks;
1383 int nmaps;
1384 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1385 xfs_daddr_t d;
Barry Naujok556b8b12008-04-10 12:22:07 +10001386 const char *cur_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 int byte_cnt;
1388 int n;
1389 xfs_buf_t *bp;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001390 prid_t prid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 struct xfs_dquot *udqp, *gdqp;
1392 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Christoph Hellwig3937be52008-03-06 13:46:19 +11001394 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 error = 0;
1396 ip = NULL;
1397 tp = NULL;
1398
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001399 trace_xfs_symlink(dp, link_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 if (XFS_FORCED_SHUTDOWN(mp))
1402 return XFS_ERROR(EIO);
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /*
1405 * Check component lengths of the target path name.
1406 */
1407 pathlen = strlen(target_path);
1408 if (pathlen >= MAXPATHLEN) /* total string too long */
1409 return XFS_ERROR(ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10001412 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001413 prid = xfs_get_projid(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 else
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001415 prid = XFS_PROJID_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 /*
1418 * Make sure that we have allocated dquot(s) on disk.
1419 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001420 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
1422 if (error)
1423 goto std_return;
1424
1425 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
1426 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1427 /*
1428 * The symlink will fit into the inode data fork?
1429 * There can't be any attributes so we get the whole variable part.
1430 */
1431 if (pathlen <= XFS_LITINO(mp))
1432 fs_blocks = 0;
1433 else
1434 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
Barry Naujok556b8b12008-04-10 12:22:07 +10001435 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
1437 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
1438 if (error == ENOSPC && fs_blocks == 0) {
1439 resblks = 0;
1440 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
1441 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
1442 }
1443 if (error) {
1444 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 goto error_return;
1446 }
1447
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001448 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001449 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451 /*
1452 * Check whether the directory allows new symlinks or not.
1453 */
1454 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
1455 error = XFS_ERROR(EPERM);
1456 goto error_return;
1457 }
1458
1459 /*
1460 * Reserve disk quota : blocks and inode.
1461 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001462 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 if (error)
1464 goto error_return;
1465
1466 /*
1467 * Check for ability to enter directory entry, if no space reserved.
1468 */
Barry Naujok556b8b12008-04-10 12:22:07 +10001469 error = xfs_dir_canenter(tp, dp, link_name, resblks);
1470 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 goto error_return;
1472 /*
1473 * Initialize the bmap freelist prior to calling either
1474 * bmapi or the directory create code.
1475 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06001476 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 /*
1479 * Allocate an inode for the symlink.
1480 */
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001481 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT), 1, 0,
1482 prid, resblks > 0, &ip, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 if (error) {
1484 if (error == ENOSPC)
1485 goto error_return;
1486 goto error1;
1487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Christoph Hellwig993386c2007-08-28 16:12:30 +10001489 /*
1490 * An error after we've joined dp to the transaction will result in the
1491 * transaction cancel unlocking dp so don't do it explicitly in the
1492 * error path.
1493 */
Christoph Hellwigddc34152011-09-19 15:00:54 +00001494 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001495 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 /*
1498 * Also attach the dquot(s) to it, if applicable.
1499 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001500 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 if (resblks)
1503 resblks -= XFS_IALLOC_SPACE_RES(mp);
1504 /*
1505 * If the symlink will fit into the inode, write it inline.
1506 */
1507 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
1508 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
1509 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
1510 ip->i_d.di_size = pathlen;
1511
1512 /*
1513 * The inode was initially created in extent format.
1514 */
1515 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
1516 ip->i_df.if_flags |= XFS_IFINLINE;
1517
1518 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
1519 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
1520
1521 } else {
1522 first_fsb = 0;
1523 nmaps = SYMLINK_MAPS;
1524
Dave Chinnerc0dc7822011-09-18 20:40:52 +00001525 error = xfs_bmapi_write(tp, ip, first_fsb, fs_blocks,
1526 XFS_BMAPI_METADATA, &first_block, resblks,
1527 mval, &nmaps, &free_list);
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001528 if (error)
1529 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531 if (resblks)
1532 resblks -= fs_blocks;
1533 ip->i_d.di_size = pathlen;
1534 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1535
1536 cur_chunk = target_path;
1537 for (n = 0; n < nmaps; n++) {
1538 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
1539 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
1540 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
1541 BTOBB(byte_cnt), 0);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001542 if (!bp) {
1543 error = ENOMEM;
1544 goto error2;
1545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 if (pathlen < byte_cnt) {
1547 byte_cnt = pathlen;
1548 }
1549 pathlen -= byte_cnt;
1550
Chandra Seetharaman62926042011-07-22 23:40:15 +00001551 memcpy(bp->b_addr, cur_chunk, byte_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 cur_chunk += byte_cnt;
1553
1554 xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
1555 }
1556 }
1557
1558 /*
1559 * Create the directory entry for the symlink.
1560 */
Barry Naujok556b8b12008-04-10 12:22:07 +10001561 error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
1562 &first_block, &free_list, resblks);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001563 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001564 goto error2;
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001565 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1567
1568 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 * If this is a synchronous mount, make sure that the
1570 * symlink transaction goes to disk before returning to
1571 * the user.
1572 */
1573 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1574 xfs_trans_set_sync(tp);
1575 }
1576
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001577 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (error) {
1579 goto error2;
1580 }
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001581 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001582 xfs_qm_dqrele(udqp);
1583 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Christoph Hellwig288699f2010-06-23 18:11:15 +10001585 *ipp = ip;
1586 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 error2:
1589 IRELE(ip);
1590 error1:
1591 xfs_bmap_cancel(&free_list);
1592 cancel_flags |= XFS_TRANS_ABORT;
1593 error_return:
1594 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001595 xfs_qm_dqrele(udqp);
1596 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Christoph Hellwig993386c2007-08-28 16:12:30 +10001598 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001600 std_return:
1601 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602}
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604int
Christoph Hellwig993386c2007-08-28 16:12:30 +10001605xfs_set_dmattrs(
1606 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 u_int evmask,
Christoph Hellwig993386c2007-08-28 16:12:30 +10001608 u_int16_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001610 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 int error;
1613
1614 if (!capable(CAP_SYS_ADMIN))
1615 return XFS_ERROR(EPERM);
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (XFS_FORCED_SHUTDOWN(mp))
1618 return XFS_ERROR(EIO);
1619
1620 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
1621 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
1622 if (error) {
1623 xfs_trans_cancel(tp, 0);
1624 return error;
1625 }
1626 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +00001627 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Christoph Hellwig613d7042007-10-11 17:44:08 +10001629 ip->i_d.di_dmevmask = evmask;
1630 ip->i_d.di_dmstate = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001633 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 return error;
1636}
1637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638/*
1639 * xfs_alloc_file_space()
1640 * This routine allocates disk space for the given file.
1641 *
1642 * If alloc_type == 0, this request is for an ALLOCSP type
1643 * request which will change the file size. In this case, no
1644 * DMAPI event will be generated by the call. A TRUNCATE event
1645 * will be generated later by xfs_setattr.
1646 *
1647 * If alloc_type != 0, this request is for a RESVSP type
1648 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
1649 * lower block boundary byte address is less than the file's
1650 * length.
1651 *
1652 * RETURNS:
1653 * 0 on success
1654 * errno on error
1655 *
1656 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001657STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658xfs_alloc_file_space(
1659 xfs_inode_t *ip,
1660 xfs_off_t offset,
1661 xfs_off_t len,
1662 int alloc_type,
1663 int attr_flags)
1664{
Nathan Scottdd9f4382006-01-11 15:28:28 +11001665 xfs_mount_t *mp = ip->i_mount;
1666 xfs_off_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 xfs_filblks_t allocated_fsb;
1668 xfs_filblks_t allocatesize_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001669 xfs_extlen_t extsz, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 xfs_fileoff_t startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001671 xfs_fsblock_t firstfsb;
1672 int nimaps;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001673 int quota_flag;
1674 int rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 xfs_trans_t *tp;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001676 xfs_bmbt_irec_t imaps[1], *imapp;
1677 xfs_bmap_free_t free_list;
1678 uint qblocks, resblks, resrtextents;
1679 int committed;
1680 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001682 trace_xfs_alloc_file_space(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 if (XFS_FORCED_SHUTDOWN(mp))
1685 return XFS_ERROR(EIO);
1686
Christoph Hellwig7d095252009-06-08 15:33:32 +02001687 error = xfs_qm_dqattach(ip, 0);
1688 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return error;
1690
1691 if (len <= 0)
1692 return XFS_ERROR(EINVAL);
1693
David Chinner957d0eb2007-06-18 16:50:37 +10001694 rt = XFS_IS_REALTIME_INODE(ip);
1695 extsz = xfs_get_extsz_hint(ip);
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 count = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 imapp = &imaps[0];
Nathan Scottdd9f4382006-01-11 15:28:28 +11001699 nimaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
1701 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001704 * Allocate file space until done or until there is an error
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 while (allocatesize_fsb && !error) {
Nathan Scottdd9f4382006-01-11 15:28:28 +11001707 xfs_fileoff_t s, e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Nathan Scottdd9f4382006-01-11 15:28:28 +11001709 /*
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11001710 * Determine space reservations for data/realtime.
Nathan Scottdd9f4382006-01-11 15:28:28 +11001711 */
1712 if (unlikely(extsz)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 s = startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001714 do_div(s, extsz);
1715 s *= extsz;
1716 e = startoffset_fsb + allocatesize_fsb;
1717 if ((temp = do_mod(startoffset_fsb, extsz)))
1718 e += temp;
1719 if ((temp = do_mod(e, extsz)))
1720 e += extsz - temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 } else {
Nathan Scottdd9f4382006-01-11 15:28:28 +11001722 s = 0;
1723 e = allocatesize_fsb;
1724 }
1725
Dave Chinner72656c42010-09-03 12:19:33 +10001726 /*
1727 * The transaction reservation is limited to a 32-bit block
1728 * count, hence we need to limit the number of blocks we are
1729 * trying to reserve to avoid an overflow. We can't allocate
1730 * more than @nimaps extents, and an extent is limited on disk
1731 * to MAXEXTLEN (21 bits), so use that to enforce the limit.
1732 */
1733 resblks = min_t(xfs_fileoff_t, (e - s), (MAXEXTLEN * nimaps));
Nathan Scottdd9f4382006-01-11 15:28:28 +11001734 if (unlikely(rt)) {
Dave Chinner72656c42010-09-03 12:19:33 +10001735 resrtextents = qblocks = resblks;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001736 resrtextents /= mp->m_sb.sb_rextsize;
1737 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1738 quota_flag = XFS_QMOPT_RES_RTBLKS;
1739 } else {
1740 resrtextents = 0;
Dave Chinner72656c42010-09-03 12:19:33 +10001741 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001742 quota_flag = XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
1744
1745 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001746 * Allocate and setup the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 */
1748 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001749 error = xfs_trans_reserve(tp, resblks,
1750 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 XFS_TRANS_PERM_LOG_RES,
1752 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001754 * Check for running out of space
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 */
1756 if (error) {
1757 /*
1758 * Free the transaction structure.
1759 */
1760 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
1761 xfs_trans_cancel(tp, 0);
1762 break;
1763 }
1764 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001765 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
1766 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 if (error)
1768 goto error1;
1769
Christoph Hellwigddc34152011-09-19 15:00:54 +00001770 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Eric Sandeen9d87c312009-01-14 23:22:07 -06001772 xfs_bmap_init(&free_list, &firstfsb);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00001773 error = xfs_bmapi_write(tp, ip, startoffset_fsb,
1774 allocatesize_fsb, alloc_type, &firstfsb,
1775 0, imapp, &nimaps, &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 if (error) {
1777 goto error0;
1778 }
1779
1780 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001781 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001783 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 if (error) {
1785 goto error0;
1786 }
1787
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001788 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1790 if (error) {
1791 break;
1792 }
1793
1794 allocated_fsb = imapp->br_blockcount;
1795
Nathan Scottdd9f4382006-01-11 15:28:28 +11001796 if (nimaps == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 error = XFS_ERROR(ENOSPC);
1798 break;
1799 }
1800
1801 startoffset_fsb += allocated_fsb;
1802 allocatesize_fsb -= allocated_fsb;
1803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805 return error;
1806
Nathan Scottdd9f4382006-01-11 15:28:28 +11001807error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 xfs_bmap_cancel(&free_list);
Dave Chinnerea562ed2012-05-08 20:48:53 +10001809 xfs_trans_unreserve_quota_nblks(tp, ip, (long)qblocks, 0, quota_flag);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001810
1811error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1813 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001814 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
1817/*
1818 * Zero file bytes between startoff and endoff inclusive.
1819 * The iolock is held exclusive and no blocks are buffered.
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001820 *
1821 * This function is used by xfs_free_file_space() to zero
1822 * partial blocks when the range to free is not block aligned.
1823 * When unreserving space with boundaries that are not block
1824 * aligned we round up the start and round down the end
1825 * boundaries and then use this function to zero the parts of
1826 * the blocks that got dropped during the rounding.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 */
1828STATIC int
1829xfs_zero_remaining_bytes(
1830 xfs_inode_t *ip,
1831 xfs_off_t startoff,
1832 xfs_off_t endoff)
1833{
1834 xfs_bmbt_irec_t imap;
1835 xfs_fileoff_t offset_fsb;
1836 xfs_off_t lastoffset;
1837 xfs_off_t offset;
1838 xfs_buf_t *bp;
1839 xfs_mount_t *mp = ip->i_mount;
1840 int nimap;
1841 int error = 0;
1842
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001843 /*
1844 * Avoid doing I/O beyond eof - it's not necessary
1845 * since nothing can read beyond eof. The space will
1846 * be zeroed when the file is extended anyway.
1847 */
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001848 if (startoff >= XFS_ISIZE(ip))
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001849 return 0;
1850
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001851 if (endoff > XFS_ISIZE(ip))
1852 endoff = XFS_ISIZE(ip);
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001853
Dave Chinner686865f2010-09-24 20:07:47 +10001854 bp = xfs_buf_get_uncached(XFS_IS_REALTIME_INODE(ip) ?
1855 mp->m_rtdev_targp : mp->m_ddev_targp,
Dave Chinneraa5c1582012-04-23 15:58:56 +10001856 BTOBB(mp->m_sb.sb_blocksize), 0);
Lachlan McIlroyc6422612008-12-05 13:16:15 +11001857 if (!bp)
1858 return XFS_ERROR(ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Christoph Hellwigc8da0fa2011-07-08 14:36:25 +02001860 xfs_buf_unlock(bp);
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
1863 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1864 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001865 error = xfs_bmapi_read(ip, offset_fsb, 1, &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (error || nimap < 1)
1867 break;
1868 ASSERT(imap.br_blockcount >= 1);
1869 ASSERT(imap.br_startoff == offset_fsb);
1870 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
1871 if (lastoffset > endoff)
1872 lastoffset = endoff;
1873 if (imap.br_startblock == HOLESTARTBLOCK)
1874 continue;
1875 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1876 if (imap.br_state == XFS_EXT_UNWRITTEN)
1877 continue;
1878 XFS_BUF_UNDONE(bp);
1879 XFS_BUF_UNWRITE(bp);
1880 XFS_BUF_READ(bp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06001881 XFS_BUF_SET_ADDR(bp, xfs_fsb_to_db(ip, imap.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001883 error = xfs_buf_iowait(bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10001884 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +00001885 xfs_buf_ioerror_alert(bp,
1886 "xfs_zero_remaining_bytes(read)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 break;
1888 }
Chandra Seetharaman62926042011-07-22 23:40:15 +00001889 memset(bp->b_addr +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
1891 0, lastoffset - offset + 1);
1892 XFS_BUF_UNDONE(bp);
1893 XFS_BUF_UNREAD(bp);
1894 XFS_BUF_WRITE(bp);
1895 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001896 error = xfs_buf_iowait(bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10001897 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +00001898 xfs_buf_ioerror_alert(bp,
1899 "xfs_zero_remaining_bytes(write)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 break;
1901 }
1902 }
1903 xfs_buf_free(bp);
1904 return error;
1905}
1906
1907/*
1908 * xfs_free_file_space()
1909 * This routine frees disk space for the given file.
1910 *
1911 * This routine is only called by xfs_change_file_space
1912 * for an UNRESVSP type call.
1913 *
1914 * RETURNS:
1915 * 0 on success
1916 * errno on error
1917 *
1918 */
1919STATIC int
1920xfs_free_file_space(
1921 xfs_inode_t *ip,
1922 xfs_off_t offset,
1923 xfs_off_t len,
1924 int attr_flags)
1925{
1926 int committed;
1927 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 xfs_fileoff_t endoffset_fsb;
1929 int error;
1930 xfs_fsblock_t firstfsb;
1931 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 xfs_bmbt_irec_t imap;
1933 xfs_off_t ioffset;
1934 xfs_extlen_t mod=0;
1935 xfs_mount_t *mp;
1936 int nimap;
1937 uint resblks;
Nathan Scott673cdf52006-09-28 10:56:26 +10001938 uint rounding;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 int rt;
1940 xfs_fileoff_t startoffset_fsb;
1941 xfs_trans_t *tp;
Dean Roehrich5fcbab32005-05-05 13:27:19 -07001942 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 mp = ip->i_mount;
1945
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001946 trace_xfs_free_file_space(ip);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10001947
Christoph Hellwig7d095252009-06-08 15:33:32 +02001948 error = xfs_qm_dqattach(ip, 0);
1949 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 return error;
1951
1952 error = 0;
1953 if (len <= 0) /* if nothing being freed */
1954 return error;
Eric Sandeen71ddabb2007-11-23 16:29:42 +11001955 rt = XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001957 endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Christoph Hellwig0f285c82008-07-18 17:13:28 +10001959 if (attr_flags & XFS_ATTR_NOLOCK)
Dean Roehrich5fcbab32005-05-05 13:27:19 -07001960 need_iolock = 0;
Yingping Lu9fa80462006-03-22 12:44:35 +11001961 if (need_iolock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwig25e41b32008-12-03 12:20:39 +01001963 /* wait for the completion of any pending DIOs */
Christoph Hellwig4a06fd22011-08-23 08:28:13 +00001964 inode_dio_wait(VFS_I(ip));
Yingping Lu9fa80462006-03-22 12:44:35 +11001965 }
Dean Roehrich5fcbab32005-05-05 13:27:19 -07001966
Tim Shimmine6a4b372007-11-23 16:30:42 +11001967 rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 ioffset = offset & ~(rounding - 1);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10001969
Christoph Hellwigdf80c932008-08-13 16:22:09 +10001970 if (VN_CACHED(VFS_I(ip)) != 0) {
Tim Shimmine6a4b372007-11-23 16:30:42 +11001971 error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001972 if (error)
1973 goto out_unlock_iolock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10001974 }
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 /*
1977 * Need to zero the stuff we're not freeing, on disk.
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001978 * If it's a realtime file & can't use unwritten extents then we
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 * actually need to zero the extent edges. Otherwise xfs_bunmapi
1980 * will take care of it for us.
1981 */
Eric Sandeen62118702008-03-06 13:44:28 +11001982 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001984 error = xfs_bmapi_read(ip, startoffset_fsb, 1,
1985 &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 if (error)
1987 goto out_unlock_iolock;
1988 ASSERT(nimap == 0 || nimap == 1);
1989 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1990 xfs_daddr_t block;
1991
1992 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1993 block = imap.br_startblock;
1994 mod = do_div(block, mp->m_sb.sb_rextsize);
1995 if (mod)
1996 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
1997 }
1998 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001999 error = xfs_bmapi_read(ip, endoffset_fsb - 1, 1,
2000 &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 if (error)
2002 goto out_unlock_iolock;
2003 ASSERT(nimap == 0 || nimap == 1);
2004 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
2005 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2006 mod++;
2007 if (mod && (mod != mp->m_sb.sb_rextsize))
2008 endoffset_fsb -= mod;
2009 }
2010 }
2011 if ((done = (endoffset_fsb <= startoffset_fsb)))
2012 /*
2013 * One contiguous piece to clear
2014 */
2015 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
2016 else {
2017 /*
2018 * Some full blocks, possibly two pieces to clear
2019 */
2020 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
2021 error = xfs_zero_remaining_bytes(ip, offset,
2022 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
2023 if (!error &&
2024 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
2025 error = xfs_zero_remaining_bytes(ip,
2026 XFS_FSB_TO_B(mp, endoffset_fsb),
2027 offset + len - 1);
2028 }
2029
2030 /*
2031 * free file space until done or until there is an error
2032 */
2033 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
2034 while (!error && !done) {
2035
2036 /*
David Chinner91ebecc2007-07-19 16:28:30 +10002037 * allocate and setup the transaction. Allow this
2038 * transaction to dip into the reserve blocks to ensure
2039 * the freeing of the space succeeds at ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 */
2041 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
David Chinner91ebecc2007-07-19 16:28:30 +10002042 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 error = xfs_trans_reserve(tp,
2044 resblks,
2045 XFS_WRITE_LOG_RES(mp),
2046 0,
2047 XFS_TRANS_PERM_LOG_RES,
2048 XFS_WRITE_LOG_COUNT);
2049
2050 /*
2051 * check for running out of space
2052 */
2053 if (error) {
2054 /*
2055 * Free the transaction structure.
2056 */
2057 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
2058 xfs_trans_cancel(tp, 0);
2059 break;
2060 }
2061 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002062 error = xfs_trans_reserve_quota(tp, mp,
2063 ip->i_udquot, ip->i_gdquot,
2064 resblks, 0, XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 if (error)
2066 goto error1;
2067
Christoph Hellwigddc34152011-09-19 15:00:54 +00002068 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
2070 /*
2071 * issue the bunmapi() call to free the blocks
2072 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06002073 xfs_bmap_init(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10002074 error = xfs_bunmapi(tp, ip, startoffset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 endoffset_fsb - startoffset_fsb,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002076 0, 2, &firstfsb, &free_list, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (error) {
2078 goto error0;
2079 }
2080
2081 /*
2082 * complete the transaction
2083 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002084 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 if (error) {
2086 goto error0;
2087 }
2088
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002089 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2091 }
2092
2093 out_unlock_iolock:
2094 if (need_iolock)
2095 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
2096 return error;
2097
2098 error0:
2099 xfs_bmap_cancel(&free_list);
2100 error1:
2101 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
2102 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
2103 XFS_ILOCK_EXCL);
2104 return error;
2105}
2106
2107/*
2108 * xfs_change_file_space()
2109 * This routine allocates or frees disk space for the given file.
2110 * The user specified parameters are checked for alignment and size
2111 * limitations.
2112 *
2113 * RETURNS:
2114 * 0 on success
2115 * errno on error
2116 *
2117 */
2118int
2119xfs_change_file_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002120 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 int cmd,
2122 xfs_flock64_t *bf,
2123 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 int attr_flags)
2125{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002126 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 int clrprealloc;
2128 int error;
2129 xfs_fsize_t fsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 int setprealloc;
2131 xfs_off_t startoffset;
2132 xfs_off_t llen;
2133 xfs_trans_t *tp;
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002134 struct iattr iattr;
Dave Chinner44722352010-08-24 12:02:11 +10002135 int prealloc_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Christoph Hellwig993386c2007-08-28 16:12:30 +10002137 if (!S_ISREG(ip->i_d.di_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 return XFS_ERROR(EINVAL);
2139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 switch (bf->l_whence) {
2141 case 0: /*SEEK_SET*/
2142 break;
2143 case 1: /*SEEK_CUR*/
2144 bf->l_start += offset;
2145 break;
2146 case 2: /*SEEK_END*/
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002147 bf->l_start += XFS_ISIZE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 break;
2149 default:
2150 return XFS_ERROR(EINVAL);
2151 }
2152
2153 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
2154
Dave Chinner32972382012-06-08 15:44:54 +10002155 if (bf->l_start < 0 ||
2156 bf->l_start > mp->m_super->s_maxbytes ||
2157 bf->l_start + llen < 0 ||
2158 bf->l_start + llen > mp->m_super->s_maxbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 return XFS_ERROR(EINVAL);
2160
2161 bf->l_whence = 0;
2162
2163 startoffset = bf->l_start;
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002164 fsize = XFS_ISIZE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
2166 /*
2167 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
2168 * file space.
2169 * These calls do NOT zero the data space allocated to the file,
2170 * nor do they change the file size.
2171 *
2172 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
2173 * space.
2174 * These calls cause the new file data to be zeroed and the file
2175 * size to be changed.
2176 */
2177 setprealloc = clrprealloc = 0;
Dave Chinner44722352010-08-24 12:02:11 +10002178 prealloc_type = XFS_BMAPI_PREALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 switch (cmd) {
Dave Chinner44722352010-08-24 12:02:11 +10002181 case XFS_IOC_ZERO_RANGE:
2182 prealloc_type |= XFS_BMAPI_CONVERT;
2183 xfs_tosspages(ip, startoffset, startoffset + bf->l_len, 0);
2184 /* FALLTHRU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 case XFS_IOC_RESVSP:
2186 case XFS_IOC_RESVSP64:
2187 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
Dave Chinner44722352010-08-24 12:02:11 +10002188 prealloc_type, attr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (error)
2190 return error;
2191 setprealloc = 1;
2192 break;
2193
2194 case XFS_IOC_UNRESVSP:
2195 case XFS_IOC_UNRESVSP64:
2196 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
2197 attr_flags)))
2198 return error;
2199 break;
2200
2201 case XFS_IOC_ALLOCSP:
2202 case XFS_IOC_ALLOCSP64:
2203 case XFS_IOC_FREESP:
2204 case XFS_IOC_FREESP64:
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002205 /*
2206 * These operations actually do IO when extending the file, but
2207 * the allocation is done seperately to the zeroing that is
2208 * done. This set of operations need to be serialised against
2209 * other IO operations, such as truncate and buffered IO. We
2210 * need to take the IOLOCK here to serialise the allocation and
2211 * zeroing IO to prevent other IOLOCK holders (e.g. getbmap,
2212 * truncate, direct IO) from racing against the transient
2213 * allocated but not written state we can have here.
2214 */
2215 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 if (startoffset > fsize) {
2217 error = xfs_alloc_file_space(ip, fsize,
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002218 startoffset - fsize, 0,
2219 attr_flags | XFS_ATTR_NOLOCK);
2220 if (error) {
2221 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 break;
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
2225
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002226 iattr.ia_valid = ATTR_SIZE;
2227 iattr.ia_size = startoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002229 error = xfs_setattr_size(ip, &iattr,
2230 attr_flags | XFS_ATTR_NOLOCK);
2231 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233 if (error)
2234 return error;
2235
2236 clrprealloc = 1;
2237 break;
2238
2239 default:
2240 ASSERT(0);
2241 return XFS_ERROR(EINVAL);
2242 }
2243
2244 /*
2245 * update the inode timestamp, mode, and prealloc flag bits
2246 */
2247 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
2248
2249 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
2250 0, 0, 0))) {
2251 /* ASSERT(0); */
2252 xfs_trans_cancel(tp, 0);
2253 return error;
2254 }
2255
2256 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +00002257 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002259 if ((attr_flags & XFS_ATTR_DMI) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 ip->i_d.di_mode &= ~S_ISUID;
2261
2262 /*
2263 * Note that we don't have to worry about mandatory
2264 * file locking being disabled here because we only
2265 * clear the S_ISGID bit if the Group execute bit is
2266 * on, but if it was on then mandatory locking wouldn't
2267 * have been enabled.
2268 */
2269 if (ip->i_d.di_mode & S_IXGRP)
2270 ip->i_d.di_mode &= ~S_ISGID;
2271
Dave Chinnerdcd79a12010-09-28 12:27:25 +10002272 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 }
2274 if (setprealloc)
2275 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
2276 else if (clrprealloc)
2277 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
2278
2279 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Dave Chinner82878892011-03-26 09:13:08 +11002280 if (attr_flags & XFS_ATTR_SYNC)
2281 xfs_trans_set_sync(tp);
Christoph Hellwig23bb0be2011-09-18 20:47:51 +00002282 return xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283}