blob: 79270430dafcb8dfd88eff98832780eb68e26a72 [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 Hellwig0b561852012-07-04 11:13:31 -0400557 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400558 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);
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400594 if (error)
Christoph Hellwig0b561852012-07-04 11:13:31 -0400595 goto out_unlock;
596
597 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400598
599 error = xfs_attr_inactive(ip);
600 if (error)
Christoph Hellwig0b561852012-07-04 11:13:31 -0400601 goto out;
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400602
603 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
604 error = xfs_trans_reserve(tp, 0,
605 XFS_IFREE_LOG_RES(mp),
606 0, XFS_TRANS_PERM_LOG_RES,
607 XFS_INACTIVE_LOG_COUNT);
Christoph Hellwig0b561852012-07-04 11:13:31 -0400608 if (error) {
609 xfs_trans_cancel(tp, 0);
610 goto out;
611 }
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400612
613 xfs_ilock(ip, XFS_ILOCK_EXCL);
614 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400617 if (ip->i_afp)
618 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
619
620 ASSERT(ip->i_d.di_anextents == 0);
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /*
623 * Free the inode.
624 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600625 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 error = xfs_ifree(tp, ip, &free_list);
627 if (error) {
628 /*
629 * If we fail to free the inode, shut down. The cancel
630 * might do that, we need to make sure. Otherwise the
631 * inode might be lost for a long time or forever.
632 */
633 if (!XFS_FORCED_SHUTDOWN(mp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100634 xfs_notice(mp, "%s: xfs_ifree returned error %d",
635 __func__, error);
Nathan Scott7d04a332006-06-09 14:58:38 +1000636 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
639 } else {
640 /*
641 * Credit the quota account(s). The inode is gone.
642 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200643 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 /*
David Chinner78e9da72008-04-10 12:24:17 +1000646 * Just ignore errors at this point. There is nothing we can
647 * do except to try to keep going. Make sure it's not a silent
648 * error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 */
David Chinner78e9da72008-04-10 12:24:17 +1000650 error = xfs_bmap_finish(&tp, &free_list, &committed);
651 if (error)
Dave Chinner53487782011-03-07 10:05:35 +1100652 xfs_notice(mp, "%s: xfs_bmap_finish returned error %d",
653 __func__, error);
David Chinner78e9da72008-04-10 12:24:17 +1000654 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
655 if (error)
Dave Chinner53487782011-03-07 10:05:35 +1100656 xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
657 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 /*
661 * Release the dquots held by inode, if any.
662 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200663 xfs_qm_dqdetach(ip);
Christoph Hellwig0b561852012-07-04 11:13:31 -0400664out_unlock:
665 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400666out:
667 return VN_INACTIVE_CACHE;
668out_cancel:
669 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
Christoph Hellwig0b561852012-07-04 11:13:31 -0400670 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Barry Naujok384f3ce2008-05-21 16:58:22 +1000673/*
674 * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
675 * is allowed, otherwise it has to be an exact match. If a CI match is found,
676 * ci_name->name will point to a the actual name (caller must free) or
677 * will be set to NULL if an exact match is found.
678 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000679int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680xfs_lookup(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000681 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000682 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000683 xfs_inode_t **ipp,
684 struct xfs_name *ci_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000686 xfs_ino_t inum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 int error;
688 uint lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000690 trace_xfs_lookup(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
693 return XFS_ERROR(EIO);
694
695 lock_mode = xfs_ilock_map_shared(dp);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000696 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 xfs_iunlock_map_shared(dp, lock_mode);
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000698
699 if (error)
700 goto out;
701
Dave Chinner7b6259e2010-06-24 11:35:17 +1000702 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000703 if (error)
Barry Naujok384f3ce2008-05-21 16:58:22 +1000704 goto out_free_name;
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000705
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000706 return 0;
707
Barry Naujok384f3ce2008-05-21 16:58:22 +1000708out_free_name:
709 if (ci_name)
710 kmem_free(ci_name->name);
711out:
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000712 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return error;
714}
715
Christoph Hellwig993386c2007-08-28 16:12:30 +1000716int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717xfs_create(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000718 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000719 struct xfs_name *name,
Al Viro576b1d62011-07-26 02:50:15 -0400720 umode_t mode,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000721 xfs_dev_t rdev,
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000722 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100724 int is_dir = S_ISDIR(mode);
725 struct xfs_mount *mp = dp->i_mount;
726 struct xfs_inode *ip = NULL;
727 struct xfs_trans *tp = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000728 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 xfs_bmap_free_t free_list;
730 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +1000731 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 uint cancel_flags;
733 int committed;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000734 prid_t prid;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100735 struct xfs_dquot *udqp = NULL;
736 struct xfs_dquot *gdqp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 uint resblks;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100738 uint log_res;
739 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000741 trace_xfs_create(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100743 if (XFS_FORCED_SHUTDOWN(mp))
744 return XFS_ERROR(EIO);
745
Nathan Scott365ca832005-06-21 15:39:12 +1000746 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000747 prid = xfs_get_projid(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 else
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000749 prid = XFS_PROJID_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 /*
752 * Make sure that we have allocated dquot(s) on disk.
753 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200754 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100755 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000757 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100759 if (is_dir) {
760 rdev = 0;
761 resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
762 log_res = XFS_MKDIR_LOG_RES(mp);
763 log_count = XFS_MKDIR_LOG_COUNT;
764 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
765 } else {
766 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
767 log_res = XFS_CREATE_LOG_RES(mp);
768 log_count = XFS_CREATE_LOG_COUNT;
769 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 /*
775 * Initially assume that the file does not exist and
776 * reserve the resources for that case. If that is not
777 * the case we'll drop the one we have and get a more
778 * appropriate transaction later.
779 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100780 error = xfs_trans_reserve(tp, resblks, log_res, 0,
781 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (error == ENOSPC) {
Dave Chinner153fec42009-04-06 18:48:30 +0200783 /* flush outstanding delalloc blocks and retry */
784 xfs_flush_inodes(dp);
Christoph Hellwig4734d402009-09-09 18:19:02 -0500785 error = xfs_trans_reserve(tp, resblks, log_res, 0,
786 XFS_TRANS_PERM_LOG_RES, log_count);
Dave Chinner153fec42009-04-06 18:48:30 +0200787 }
788 if (error == ENOSPC) {
789 /* No space at all so try a "no-allocation" reservation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 resblks = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100791 error = xfs_trans_reserve(tp, 0, log_res, 0,
792 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794 if (error) {
795 cancel_flags = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100796 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000799 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +1000800 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100802 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 /*
805 * Reserve disk quota and the inode.
806 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200807 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100809 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Barry Naujok556b8b12008-04-10 12:22:07 +1000811 error = xfs_dir_canenter(tp, dp, name, resblks);
812 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100813 goto out_trans_cancel;
814
815 /*
816 * A newly created regular or special file just has one directory
817 * entry pointing to them, but a directory also the "." entry
818 * pointing to itself.
819 */
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000820 error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev,
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100821 prid, resblks > 0, &ip, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (error) {
823 if (error == ENOSPC)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100824 goto out_trans_cancel;
825 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 /*
Christoph Hellwig993386c2007-08-28 16:12:30 +1000829 * Now we join the directory inode to the transaction. We do not do it
830 * earlier because xfs_dir_ialloc might commit the previous transaction
831 * (and release all the locks). An error from here on will result in
832 * the transaction cancel unlocking dp so don't do it explicitly in the
833 * error path.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000835 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +1000836 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Barry Naujok556b8b12008-04-10 12:22:07 +1000838 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000839 &first_block, &free_list, resblks ?
840 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (error) {
842 ASSERT(error != ENOSPC);
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100843 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000845 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
847
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100848 if (is_dir) {
849 error = xfs_dir_init(tp, ip, dp);
850 if (error)
851 goto out_bmap_cancel;
852
853 error = xfs_bumplink(tp, dp);
854 if (error)
855 goto out_bmap_cancel;
856 }
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /*
859 * If this is a synchronous mount, make sure that the
860 * create transaction goes to disk before returning to
861 * the user.
862 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100863 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /*
867 * Attach the dquot(s) to the inodes and modify them incore.
868 * These ids of the inode couldn't have changed since the new
869 * inode has been locked ever since it was created.
870 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200871 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100873 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100874 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000875 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000877 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000878 if (error)
879 goto out_release_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Christoph Hellwig7d095252009-06-08 15:33:32 +0200881 xfs_qm_dqrele(udqp);
882 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100884 *ipp = ip;
Christoph Hellwig288699f2010-06-23 18:11:15 +1000885 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100887 out_bmap_cancel:
888 xfs_bmap_cancel(&free_list);
889 out_trans_abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100891 out_trans_cancel:
892 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000893 out_release_inode:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /*
895 * Wait until after the current transaction is aborted to
896 * release the inode. This prevents recursive transactions
897 * and deadlocks from xfs_inactive.
898 */
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000899 if (ip)
900 IRELE(ip);
901
902 xfs_qm_dqrele(udqp);
903 xfs_qm_dqrele(gdqp);
904
905 if (unlock_dp_on_error)
906 xfs_iunlock(dp, XFS_ILOCK_EXCL);
907 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
910#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911int xfs_locked_n;
912int xfs_small_retries;
913int xfs_middle_retries;
914int xfs_lots_retries;
915int xfs_lock_delays;
916#endif
917
918/*
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000919 * Bump the subclass so xfs_lock_inodes() acquires each lock with
920 * a different value
921 */
922static inline int
923xfs_lock_inumorder(int lock_mode, int subclass)
924{
925 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +1000926 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000927 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +1000928 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000929
930 return lock_mode;
931}
932
933/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 * The following routine will lock n inodes in exclusive mode.
935 * We assume the caller calls us with the inodes in i_ino order.
936 *
937 * We need to detect deadlock where an inode that we lock
938 * is in the AIL and we start waiting for another inode that is locked
939 * by a thread in a long running transaction (such as truncate). This can
940 * result in deadlock since the long running trans might need to wait
941 * for the inode we just locked in order to push the tail and free space
942 * in the log.
943 */
944void
945xfs_lock_inodes(
946 xfs_inode_t **ips,
947 int inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 uint lock_mode)
949{
950 int attempts = 0, i, j, try_lock;
951 xfs_log_item_t *lp;
952
953 ASSERT(ips && (inodes >= 2)); /* we need at least two */
954
Christoph Hellwigcfa853e2008-04-22 17:34:06 +1000955 try_lock = 0;
956 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958again:
959 for (; i < inodes; i++) {
960 ASSERT(ips[i]);
961
962 if (i && (ips[i] == ips[i-1])) /* Already locked */
963 continue;
964
965 /*
966 * If try_lock is not set yet, make sure all locked inodes
967 * are not in the AIL.
968 * If any are, set try_lock to be used later.
969 */
970
971 if (!try_lock) {
972 for (j = (i - 1); j >= 0 && !try_lock; j--) {
973 lp = (xfs_log_item_t *)ips[j]->i_itemp;
974 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
975 try_lock++;
976 }
977 }
978 }
979
980 /*
981 * If any of the previous locks we have locked is in the AIL,
982 * we must TRY to get the second and subsequent locks. If
983 * we can't get any, we must release all we have
984 * and try again.
985 */
986
987 if (try_lock) {
988 /* try_lock must be 0 if i is 0. */
989 /*
990 * try_lock means we have an inode locked
991 * that is in the AIL.
992 */
993 ASSERT(i != 0);
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000994 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 attempts++;
996
997 /*
998 * Unlock all previous guys and try again.
999 * xfs_iunlock will try to push the tail
1000 * if the inode is in the AIL.
1001 */
1002
1003 for(j = i - 1; j >= 0; j--) {
1004
1005 /*
1006 * Check to see if we've already
1007 * unlocked this one.
1008 * Not the first one going back,
1009 * and the inode ptr is the same.
1010 */
1011 if ((j != (i - 1)) && ips[j] ==
1012 ips[j+1])
1013 continue;
1014
1015 xfs_iunlock(ips[j], lock_mode);
1016 }
1017
1018 if ((attempts % 5) == 0) {
1019 delay(1); /* Don't just spin the CPU */
1020#ifdef DEBUG
1021 xfs_lock_delays++;
1022#endif
1023 }
1024 i = 0;
1025 try_lock = 0;
1026 goto again;
1027 }
1028 } else {
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001029 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031 }
1032
1033#ifdef DEBUG
1034 if (attempts) {
1035 if (attempts < 5) xfs_small_retries++;
1036 else if (attempts < 100) xfs_middle_retries++;
1037 else xfs_lots_retries++;
1038 } else {
1039 xfs_locked_n++;
1040 }
1041#endif
1042}
1043
David Chinnerf9114eb2008-09-17 16:51:21 +10001044/*
1045 * xfs_lock_two_inodes() can only be used to lock one type of lock
1046 * at a time - the iolock or the ilock, but not both at once. If
1047 * we lock both at once, lockdep will report false positives saying
1048 * we have violated locking orders.
1049 */
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001050void
1051xfs_lock_two_inodes(
1052 xfs_inode_t *ip0,
1053 xfs_inode_t *ip1,
1054 uint lock_mode)
1055{
1056 xfs_inode_t *temp;
1057 int attempts = 0;
1058 xfs_log_item_t *lp;
1059
David Chinnerf9114eb2008-09-17 16:51:21 +10001060 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
1061 ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0);
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001062 ASSERT(ip0->i_ino != ip1->i_ino);
1063
1064 if (ip0->i_ino > ip1->i_ino) {
1065 temp = ip0;
1066 ip0 = ip1;
1067 ip1 = temp;
1068 }
1069
1070 again:
1071 xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0));
1072
1073 /*
1074 * If the first lock we have locked is in the AIL, we must TRY to get
1075 * the second lock. If we can't get it, we must release the first one
1076 * and try again.
1077 */
1078 lp = (xfs_log_item_t *)ip0->i_itemp;
1079 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1080 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) {
1081 xfs_iunlock(ip0, lock_mode);
1082 if ((++attempts % 5) == 0)
1083 delay(1); /* Don't just spin the CPU */
1084 goto again;
1085 }
1086 } else {
1087 xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1));
1088 }
1089}
1090
Christoph Hellwig993386c2007-08-28 16:12:30 +10001091int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092xfs_remove(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001093 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001094 struct xfs_name *name,
1095 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001097 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 xfs_trans_t *tp = NULL;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001099 int is_dir = S_ISDIR(ip->i_d.di_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 int error = 0;
1101 xfs_bmap_free_t free_list;
1102 xfs_fsblock_t first_block;
1103 int cancel_flags;
1104 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 int link_zero;
1106 uint resblks;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001107 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001109 trace_xfs_remove(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (XFS_FORCED_SHUTDOWN(mp))
1112 return XFS_ERROR(EIO);
1113
Christoph Hellwig7d095252009-06-08 15:33:32 +02001114 error = xfs_qm_dqattach(dp, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001115 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Christoph Hellwig7d095252009-06-08 15:33:32 +02001118 error = xfs_qm_dqattach(ip, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001119 if (error)
1120 goto std_return;
1121
1122 if (is_dir) {
1123 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
1124 log_count = XFS_DEFAULT_LOG_COUNT;
1125 } else {
1126 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
1127 log_count = XFS_REMOVE_LOG_COUNT;
1128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 /*
1132 * We try to get the real space reservation first,
1133 * allowing for directory btree deletion(s) implying
1134 * possible bmap insert(s). If we can't get the space
1135 * reservation then we use 0 instead, and avoid the bmap
1136 * btree insert(s) in the directory code by, if the bmap
1137 * insert tries to happen, instead trimming the LAST
1138 * block from the directory.
1139 */
1140 resblks = XFS_REMOVE_SPACE_RES(mp);
1141 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001142 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 if (error == ENOSPC) {
1144 resblks = 0;
1145 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001146 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148 if (error) {
1149 ASSERT(error != ENOSPC);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001150 cancel_flags = 0;
1151 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
1153
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001154 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Christoph Hellwigddc34152011-09-19 15:00:54 +00001156 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1157 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 /*
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001160 * If we're removing a directory perform some additional validation.
1161 */
1162 if (is_dir) {
1163 ASSERT(ip->i_d.di_nlink >= 2);
1164 if (ip->i_d.di_nlink != 2) {
1165 error = XFS_ERROR(ENOTEMPTY);
1166 goto out_trans_cancel;
1167 }
1168 if (!xfs_dir_isempty(ip)) {
1169 error = XFS_ERROR(ENOTEMPTY);
1170 goto out_trans_cancel;
1171 }
1172 }
1173
Eric Sandeen9d87c312009-01-14 23:22:07 -06001174 xfs_bmap_init(&free_list, &first_block);
Barry Naujok556b8b12008-04-10 12:22:07 +10001175 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
Christoph Hellwigd4377d82008-04-22 17:33:46 +10001176 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 if (error) {
1178 ASSERT(error != ENOENT);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001179 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001181 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001183 if (is_dir) {
1184 /*
1185 * Drop the link from ip's "..".
1186 */
1187 error = xfs_droplink(tp, dp);
1188 if (error)
1189 goto out_bmap_cancel;
1190
1191 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001192 * Drop the "." link from ip to self.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001193 */
1194 error = xfs_droplink(tp, ip);
1195 if (error)
1196 goto out_bmap_cancel;
1197 } else {
1198 /*
1199 * When removing a non-directory we need to log the parent
Dave Chinner26c52952008-11-28 14:23:37 +11001200 * inode here. For a directory this is done implicitly
1201 * by the xfs_droplink call for the ".." entry.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001202 */
1203 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
1205
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001206 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001207 * Drop the link from dp to ip.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001208 */
1209 error = xfs_droplink(tp, ip);
1210 if (error)
1211 goto out_bmap_cancel;
1212
1213 /*
1214 * Determine if this is the last link while
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 * we are in the transaction.
1216 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001217 link_zero = (ip->i_d.di_nlink == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 * If this is a synchronous mount, make sure that the
1221 * remove transaction goes to disk before returning to
1222 * the user.
1223 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001224 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001227 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001228 if (error)
1229 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001231 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig5df78e72008-04-22 17:34:24 +10001232 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 /*
David Chinner2a82b8b2007-07-11 11:09:12 +10001236 * If we are using filestreams, kill the stream association.
1237 * If the file is still open it may get a new one but that
1238 * will get killed on last close in xfs_close() so we don't
1239 * have to worry about that.
1240 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001241 if (!is_dir && link_zero && xfs_inode_is_filestream(ip))
David Chinner2a82b8b2007-07-11 11:09:12 +10001242 xfs_filestream_deassociate(ip);
1243
Christoph Hellwig288699f2010-06-23 18:11:15 +10001244 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001246 out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 xfs_bmap_cancel(&free_list);
1248 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001249 out_trans_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001251 std_return:
1252 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
Christoph Hellwig993386c2007-08-28 16:12:30 +10001255int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256xfs_link(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001257 xfs_inode_t *tdp,
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001258 xfs_inode_t *sip,
Barry Naujok556b8b12008-04-10 12:22:07 +10001259 struct xfs_name *target_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001261 xfs_mount_t *mp = tdp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 int error;
1264 xfs_bmap_free_t free_list;
1265 xfs_fsblock_t first_block;
1266 int cancel_flags;
1267 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 int resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001270 trace_xfs_link(tdp, target_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001272 ASSERT(!S_ISDIR(sip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (XFS_FORCED_SHUTDOWN(mp))
1275 return XFS_ERROR(EIO);
1276
Christoph Hellwig7d095252009-06-08 15:33:32 +02001277 error = xfs_qm_dqattach(sip, 0);
Christoph Hellwigcb3f35b2009-02-04 09:34:20 +01001278 if (error)
1279 goto std_return;
1280
Christoph Hellwig7d095252009-06-08 15:33:32 +02001281 error = xfs_qm_dqattach(tdp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (error)
1283 goto std_return;
1284
1285 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
1286 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10001287 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
1289 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1290 if (error == ENOSPC) {
1291 resblks = 0;
1292 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
1293 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1294 }
1295 if (error) {
1296 cancel_flags = 0;
1297 goto error_return;
1298 }
1299
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001300 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Christoph Hellwigddc34152011-09-19 15:00:54 +00001302 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
1303 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 /*
Nathan Scott365ca832005-06-21 15:39:12 +10001306 * If we are using project inheritance, we only allow hard link
1307 * creation in our tree when the project IDs are the same; else
1308 * the tree quota mechanism could be circumvented.
1309 */
1310 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001311 (xfs_get_projid(tdp) != xfs_get_projid(sip)))) {
Nathan Scottb1ecdda2006-05-08 19:51:42 +10001312 error = XFS_ERROR(EXDEV);
Nathan Scott365ca832005-06-21 15:39:12 +10001313 goto error_return;
1314 }
1315
Barry Naujok556b8b12008-04-10 12:22:07 +10001316 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
1317 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 goto error_return;
1319
Eric Sandeen9d87c312009-01-14 23:22:07 -06001320 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Barry Naujok556b8b12008-04-10 12:22:07 +10001322 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
1323 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 if (error)
1325 goto abort_return;
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001326 xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1328
1329 error = xfs_bumplink(tp, sip);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001330 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 /*
1334 * If this is a synchronous mount, make sure that the
1335 * link transaction goes to disk before returning to
1336 * the user.
1337 */
1338 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1339 xfs_trans_set_sync(tp);
1340 }
1341
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001342 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (error) {
1344 xfs_bmap_cancel(&free_list);
1345 goto abort_return;
1346 }
1347
Christoph Hellwig288699f2010-06-23 18:11:15 +10001348 return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
1350 abort_return:
1351 cancel_flags |= XFS_TRANS_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 error_return:
1353 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001354 std_return:
1355 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001357
Christoph Hellwig993386c2007-08-28 16:12:30 +10001358int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359xfs_symlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001360 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001361 struct xfs_name *link_name,
1362 const char *target_path,
Al Viro576b1d62011-07-26 02:50:15 -04001363 umode_t mode,
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001364 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001366 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 xfs_inode_t *ip;
1369 int error;
1370 int pathlen;
1371 xfs_bmap_free_t free_list;
1372 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001373 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 uint cancel_flags;
1375 int committed;
1376 xfs_fileoff_t first_fsb;
1377 xfs_filblks_t fs_blocks;
1378 int nmaps;
1379 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1380 xfs_daddr_t d;
Barry Naujok556b8b12008-04-10 12:22:07 +10001381 const char *cur_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 int byte_cnt;
1383 int n;
1384 xfs_buf_t *bp;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001385 prid_t prid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 struct xfs_dquot *udqp, *gdqp;
1387 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Christoph Hellwig3937be52008-03-06 13:46:19 +11001389 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 error = 0;
1391 ip = NULL;
1392 tp = NULL;
1393
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001394 trace_xfs_symlink(dp, link_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 if (XFS_FORCED_SHUTDOWN(mp))
1397 return XFS_ERROR(EIO);
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 /*
1400 * Check component lengths of the target path name.
1401 */
1402 pathlen = strlen(target_path);
1403 if (pathlen >= MAXPATHLEN) /* total string too long */
1404 return XFS_ERROR(ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10001407 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001408 prid = xfs_get_projid(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 else
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001410 prid = XFS_PROJID_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 /*
1413 * Make sure that we have allocated dquot(s) on disk.
1414 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001415 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
1417 if (error)
1418 goto std_return;
1419
1420 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
1421 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1422 /*
1423 * The symlink will fit into the inode data fork?
1424 * There can't be any attributes so we get the whole variable part.
1425 */
1426 if (pathlen <= XFS_LITINO(mp))
1427 fs_blocks = 0;
1428 else
1429 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
Barry Naujok556b8b12008-04-10 12:22:07 +10001430 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
1432 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
1433 if (error == ENOSPC && fs_blocks == 0) {
1434 resblks = 0;
1435 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
1436 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
1437 }
1438 if (error) {
1439 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 goto error_return;
1441 }
1442
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001443 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001444 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 /*
1447 * Check whether the directory allows new symlinks or not.
1448 */
1449 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
1450 error = XFS_ERROR(EPERM);
1451 goto error_return;
1452 }
1453
1454 /*
1455 * Reserve disk quota : blocks and inode.
1456 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001457 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 if (error)
1459 goto error_return;
1460
1461 /*
1462 * Check for ability to enter directory entry, if no space reserved.
1463 */
Barry Naujok556b8b12008-04-10 12:22:07 +10001464 error = xfs_dir_canenter(tp, dp, link_name, resblks);
1465 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 goto error_return;
1467 /*
1468 * Initialize the bmap freelist prior to calling either
1469 * bmapi or the directory create code.
1470 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06001471 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 /*
1474 * Allocate an inode for the symlink.
1475 */
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001476 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT), 1, 0,
1477 prid, resblks > 0, &ip, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (error) {
1479 if (error == ENOSPC)
1480 goto error_return;
1481 goto error1;
1482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Christoph Hellwig993386c2007-08-28 16:12:30 +10001484 /*
1485 * An error after we've joined dp to the transaction will result in the
1486 * transaction cancel unlocking dp so don't do it explicitly in the
1487 * error path.
1488 */
Christoph Hellwigddc34152011-09-19 15:00:54 +00001489 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001490 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
1492 /*
1493 * Also attach the dquot(s) to it, if applicable.
1494 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001495 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 if (resblks)
1498 resblks -= XFS_IALLOC_SPACE_RES(mp);
1499 /*
1500 * If the symlink will fit into the inode, write it inline.
1501 */
1502 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
1503 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
1504 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
1505 ip->i_d.di_size = pathlen;
1506
1507 /*
1508 * The inode was initially created in extent format.
1509 */
1510 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
1511 ip->i_df.if_flags |= XFS_IFINLINE;
1512
1513 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
1514 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
1515
1516 } else {
1517 first_fsb = 0;
1518 nmaps = SYMLINK_MAPS;
1519
Dave Chinnerc0dc7822011-09-18 20:40:52 +00001520 error = xfs_bmapi_write(tp, ip, first_fsb, fs_blocks,
1521 XFS_BMAPI_METADATA, &first_block, resblks,
1522 mval, &nmaps, &free_list);
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001523 if (error)
1524 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526 if (resblks)
1527 resblks -= fs_blocks;
1528 ip->i_d.di_size = pathlen;
1529 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1530
1531 cur_chunk = target_path;
1532 for (n = 0; n < nmaps; n++) {
1533 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
1534 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
1535 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
1536 BTOBB(byte_cnt), 0);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001537 if (!bp) {
1538 error = ENOMEM;
1539 goto error2;
1540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 if (pathlen < byte_cnt) {
1542 byte_cnt = pathlen;
1543 }
1544 pathlen -= byte_cnt;
1545
Chandra Seetharaman62926042011-07-22 23:40:15 +00001546 memcpy(bp->b_addr, cur_chunk, byte_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 cur_chunk += byte_cnt;
1548
1549 xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
1550 }
1551 }
1552
1553 /*
1554 * Create the directory entry for the symlink.
1555 */
Barry Naujok556b8b12008-04-10 12:22:07 +10001556 error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
1557 &first_block, &free_list, resblks);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001558 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001559 goto error2;
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001560 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1562
1563 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 * If this is a synchronous mount, make sure that the
1565 * symlink transaction goes to disk before returning to
1566 * the user.
1567 */
1568 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1569 xfs_trans_set_sync(tp);
1570 }
1571
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001572 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 if (error) {
1574 goto error2;
1575 }
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001576 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001577 xfs_qm_dqrele(udqp);
1578 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Christoph Hellwig288699f2010-06-23 18:11:15 +10001580 *ipp = ip;
1581 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 error2:
1584 IRELE(ip);
1585 error1:
1586 xfs_bmap_cancel(&free_list);
1587 cancel_flags |= XFS_TRANS_ABORT;
1588 error_return:
1589 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001590 xfs_qm_dqrele(udqp);
1591 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Christoph Hellwig993386c2007-08-28 16:12:30 +10001593 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001595 std_return:
1596 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599int
Christoph Hellwig993386c2007-08-28 16:12:30 +10001600xfs_set_dmattrs(
1601 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 u_int evmask,
Christoph Hellwig993386c2007-08-28 16:12:30 +10001603 u_int16_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001605 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 int error;
1608
1609 if (!capable(CAP_SYS_ADMIN))
1610 return XFS_ERROR(EPERM);
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (XFS_FORCED_SHUTDOWN(mp))
1613 return XFS_ERROR(EIO);
1614
1615 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
1616 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
1617 if (error) {
1618 xfs_trans_cancel(tp, 0);
1619 return error;
1620 }
1621 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +00001622 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Christoph Hellwig613d7042007-10-11 17:44:08 +10001624 ip->i_d.di_dmevmask = evmask;
1625 ip->i_d.di_dmstate = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001628 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 return error;
1631}
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633/*
1634 * xfs_alloc_file_space()
1635 * This routine allocates disk space for the given file.
1636 *
1637 * If alloc_type == 0, this request is for an ALLOCSP type
1638 * request which will change the file size. In this case, no
1639 * DMAPI event will be generated by the call. A TRUNCATE event
1640 * will be generated later by xfs_setattr.
1641 *
1642 * If alloc_type != 0, this request is for a RESVSP type
1643 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
1644 * lower block boundary byte address is less than the file's
1645 * length.
1646 *
1647 * RETURNS:
1648 * 0 on success
1649 * errno on error
1650 *
1651 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001652STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653xfs_alloc_file_space(
1654 xfs_inode_t *ip,
1655 xfs_off_t offset,
1656 xfs_off_t len,
1657 int alloc_type,
1658 int attr_flags)
1659{
Nathan Scottdd9f4382006-01-11 15:28:28 +11001660 xfs_mount_t *mp = ip->i_mount;
1661 xfs_off_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 xfs_filblks_t allocated_fsb;
1663 xfs_filblks_t allocatesize_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001664 xfs_extlen_t extsz, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 xfs_fileoff_t startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001666 xfs_fsblock_t firstfsb;
1667 int nimaps;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001668 int quota_flag;
1669 int rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 xfs_trans_t *tp;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001671 xfs_bmbt_irec_t imaps[1], *imapp;
1672 xfs_bmap_free_t free_list;
1673 uint qblocks, resblks, resrtextents;
1674 int committed;
1675 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001677 trace_xfs_alloc_file_space(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679 if (XFS_FORCED_SHUTDOWN(mp))
1680 return XFS_ERROR(EIO);
1681
Christoph Hellwig7d095252009-06-08 15:33:32 +02001682 error = xfs_qm_dqattach(ip, 0);
1683 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 return error;
1685
1686 if (len <= 0)
1687 return XFS_ERROR(EINVAL);
1688
David Chinner957d0eb2007-06-18 16:50:37 +10001689 rt = XFS_IS_REALTIME_INODE(ip);
1690 extsz = xfs_get_extsz_hint(ip);
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 count = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 imapp = &imaps[0];
Nathan Scottdd9f4382006-01-11 15:28:28 +11001694 nimaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
1696 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001699 * Allocate file space until done or until there is an error
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 while (allocatesize_fsb && !error) {
Nathan Scottdd9f4382006-01-11 15:28:28 +11001702 xfs_fileoff_t s, e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Nathan Scottdd9f4382006-01-11 15:28:28 +11001704 /*
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11001705 * Determine space reservations for data/realtime.
Nathan Scottdd9f4382006-01-11 15:28:28 +11001706 */
1707 if (unlikely(extsz)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 s = startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001709 do_div(s, extsz);
1710 s *= extsz;
1711 e = startoffset_fsb + allocatesize_fsb;
1712 if ((temp = do_mod(startoffset_fsb, extsz)))
1713 e += temp;
1714 if ((temp = do_mod(e, extsz)))
1715 e += extsz - temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 } else {
Nathan Scottdd9f4382006-01-11 15:28:28 +11001717 s = 0;
1718 e = allocatesize_fsb;
1719 }
1720
Dave Chinner72656c42010-09-03 12:19:33 +10001721 /*
1722 * The transaction reservation is limited to a 32-bit block
1723 * count, hence we need to limit the number of blocks we are
1724 * trying to reserve to avoid an overflow. We can't allocate
1725 * more than @nimaps extents, and an extent is limited on disk
1726 * to MAXEXTLEN (21 bits), so use that to enforce the limit.
1727 */
1728 resblks = min_t(xfs_fileoff_t, (e - s), (MAXEXTLEN * nimaps));
Nathan Scottdd9f4382006-01-11 15:28:28 +11001729 if (unlikely(rt)) {
Dave Chinner72656c42010-09-03 12:19:33 +10001730 resrtextents = qblocks = resblks;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001731 resrtextents /= mp->m_sb.sb_rextsize;
1732 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1733 quota_flag = XFS_QMOPT_RES_RTBLKS;
1734 } else {
1735 resrtextents = 0;
Dave Chinner72656c42010-09-03 12:19:33 +10001736 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001737 quota_flag = XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 }
1739
1740 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001741 * Allocate and setup the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 */
1743 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001744 error = xfs_trans_reserve(tp, resblks,
1745 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 XFS_TRANS_PERM_LOG_RES,
1747 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001749 * Check for running out of space
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 */
1751 if (error) {
1752 /*
1753 * Free the transaction structure.
1754 */
1755 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
1756 xfs_trans_cancel(tp, 0);
1757 break;
1758 }
1759 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001760 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
1761 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 if (error)
1763 goto error1;
1764
Christoph Hellwigddc34152011-09-19 15:00:54 +00001765 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Eric Sandeen9d87c312009-01-14 23:22:07 -06001767 xfs_bmap_init(&free_list, &firstfsb);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00001768 error = xfs_bmapi_write(tp, ip, startoffset_fsb,
1769 allocatesize_fsb, alloc_type, &firstfsb,
1770 0, imapp, &nimaps, &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 if (error) {
1772 goto error0;
1773 }
1774
1775 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001776 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001778 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if (error) {
1780 goto error0;
1781 }
1782
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001783 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1785 if (error) {
1786 break;
1787 }
1788
1789 allocated_fsb = imapp->br_blockcount;
1790
Nathan Scottdd9f4382006-01-11 15:28:28 +11001791 if (nimaps == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 error = XFS_ERROR(ENOSPC);
1793 break;
1794 }
1795
1796 startoffset_fsb += allocated_fsb;
1797 allocatesize_fsb -= allocated_fsb;
1798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800 return error;
1801
Nathan Scottdd9f4382006-01-11 15:28:28 +11001802error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 xfs_bmap_cancel(&free_list);
Dave Chinnerea562ed2012-05-08 20:48:53 +10001804 xfs_trans_unreserve_quota_nblks(tp, ip, (long)qblocks, 0, quota_flag);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001805
1806error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1808 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001809 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810}
1811
1812/*
1813 * Zero file bytes between startoff and endoff inclusive.
1814 * The iolock is held exclusive and no blocks are buffered.
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001815 *
1816 * This function is used by xfs_free_file_space() to zero
1817 * partial blocks when the range to free is not block aligned.
1818 * When unreserving space with boundaries that are not block
1819 * aligned we round up the start and round down the end
1820 * boundaries and then use this function to zero the parts of
1821 * the blocks that got dropped during the rounding.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 */
1823STATIC int
1824xfs_zero_remaining_bytes(
1825 xfs_inode_t *ip,
1826 xfs_off_t startoff,
1827 xfs_off_t endoff)
1828{
1829 xfs_bmbt_irec_t imap;
1830 xfs_fileoff_t offset_fsb;
1831 xfs_off_t lastoffset;
1832 xfs_off_t offset;
1833 xfs_buf_t *bp;
1834 xfs_mount_t *mp = ip->i_mount;
1835 int nimap;
1836 int error = 0;
1837
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001838 /*
1839 * Avoid doing I/O beyond eof - it's not necessary
1840 * since nothing can read beyond eof. The space will
1841 * be zeroed when the file is extended anyway.
1842 */
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001843 if (startoff >= XFS_ISIZE(ip))
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001844 return 0;
1845
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001846 if (endoff > XFS_ISIZE(ip))
1847 endoff = XFS_ISIZE(ip);
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001848
Dave Chinner686865f2010-09-24 20:07:47 +10001849 bp = xfs_buf_get_uncached(XFS_IS_REALTIME_INODE(ip) ?
1850 mp->m_rtdev_targp : mp->m_ddev_targp,
Dave Chinneraa5c1582012-04-23 15:58:56 +10001851 BTOBB(mp->m_sb.sb_blocksize), 0);
Lachlan McIlroyc6422612008-12-05 13:16:15 +11001852 if (!bp)
1853 return XFS_ERROR(ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Christoph Hellwigc8da0fa2011-07-08 14:36:25 +02001855 xfs_buf_unlock(bp);
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
1858 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1859 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001860 error = xfs_bmapi_read(ip, offset_fsb, 1, &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 if (error || nimap < 1)
1862 break;
1863 ASSERT(imap.br_blockcount >= 1);
1864 ASSERT(imap.br_startoff == offset_fsb);
1865 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
1866 if (lastoffset > endoff)
1867 lastoffset = endoff;
1868 if (imap.br_startblock == HOLESTARTBLOCK)
1869 continue;
1870 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1871 if (imap.br_state == XFS_EXT_UNWRITTEN)
1872 continue;
1873 XFS_BUF_UNDONE(bp);
1874 XFS_BUF_UNWRITE(bp);
1875 XFS_BUF_READ(bp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06001876 XFS_BUF_SET_ADDR(bp, xfs_fsb_to_db(ip, imap.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001878 error = xfs_buf_iowait(bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10001879 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +00001880 xfs_buf_ioerror_alert(bp,
1881 "xfs_zero_remaining_bytes(read)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 break;
1883 }
Chandra Seetharaman62926042011-07-22 23:40:15 +00001884 memset(bp->b_addr +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
1886 0, lastoffset - offset + 1);
1887 XFS_BUF_UNDONE(bp);
1888 XFS_BUF_UNREAD(bp);
1889 XFS_BUF_WRITE(bp);
1890 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001891 error = xfs_buf_iowait(bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10001892 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +00001893 xfs_buf_ioerror_alert(bp,
1894 "xfs_zero_remaining_bytes(write)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 break;
1896 }
1897 }
1898 xfs_buf_free(bp);
1899 return error;
1900}
1901
1902/*
1903 * xfs_free_file_space()
1904 * This routine frees disk space for the given file.
1905 *
1906 * This routine is only called by xfs_change_file_space
1907 * for an UNRESVSP type call.
1908 *
1909 * RETURNS:
1910 * 0 on success
1911 * errno on error
1912 *
1913 */
1914STATIC int
1915xfs_free_file_space(
1916 xfs_inode_t *ip,
1917 xfs_off_t offset,
1918 xfs_off_t len,
1919 int attr_flags)
1920{
1921 int committed;
1922 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 xfs_fileoff_t endoffset_fsb;
1924 int error;
1925 xfs_fsblock_t firstfsb;
1926 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 xfs_bmbt_irec_t imap;
1928 xfs_off_t ioffset;
1929 xfs_extlen_t mod=0;
1930 xfs_mount_t *mp;
1931 int nimap;
1932 uint resblks;
Nathan Scott673cdf52006-09-28 10:56:26 +10001933 uint rounding;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 int rt;
1935 xfs_fileoff_t startoffset_fsb;
1936 xfs_trans_t *tp;
Dean Roehrich5fcbab32005-05-05 13:27:19 -07001937 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 mp = ip->i_mount;
1940
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001941 trace_xfs_free_file_space(ip);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10001942
Christoph Hellwig7d095252009-06-08 15:33:32 +02001943 error = xfs_qm_dqattach(ip, 0);
1944 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 return error;
1946
1947 error = 0;
1948 if (len <= 0) /* if nothing being freed */
1949 return error;
Eric Sandeen71ddabb2007-11-23 16:29:42 +11001950 rt = XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001952 endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Christoph Hellwig0f285c82008-07-18 17:13:28 +10001954 if (attr_flags & XFS_ATTR_NOLOCK)
Dean Roehrich5fcbab32005-05-05 13:27:19 -07001955 need_iolock = 0;
Yingping Lu9fa80462006-03-22 12:44:35 +11001956 if (need_iolock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwig25e41b32008-12-03 12:20:39 +01001958 /* wait for the completion of any pending DIOs */
Christoph Hellwig4a06fd22011-08-23 08:28:13 +00001959 inode_dio_wait(VFS_I(ip));
Yingping Lu9fa80462006-03-22 12:44:35 +11001960 }
Dean Roehrich5fcbab32005-05-05 13:27:19 -07001961
Tim Shimmine6a4b372007-11-23 16:30:42 +11001962 rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 ioffset = offset & ~(rounding - 1);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10001964
Christoph Hellwigdf80c932008-08-13 16:22:09 +10001965 if (VN_CACHED(VFS_I(ip)) != 0) {
Tim Shimmine6a4b372007-11-23 16:30:42 +11001966 error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001967 if (error)
1968 goto out_unlock_iolock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10001969 }
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 /*
1972 * Need to zero the stuff we're not freeing, on disk.
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001973 * If it's a realtime file & can't use unwritten extents then we
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 * actually need to zero the extent edges. Otherwise xfs_bunmapi
1975 * will take care of it for us.
1976 */
Eric Sandeen62118702008-03-06 13:44:28 +11001977 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001979 error = xfs_bmapi_read(ip, startoffset_fsb, 1,
1980 &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 if (error)
1982 goto out_unlock_iolock;
1983 ASSERT(nimap == 0 || nimap == 1);
1984 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1985 xfs_daddr_t block;
1986
1987 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1988 block = imap.br_startblock;
1989 mod = do_div(block, mp->m_sb.sb_rextsize);
1990 if (mod)
1991 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
1992 }
1993 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001994 error = xfs_bmapi_read(ip, endoffset_fsb - 1, 1,
1995 &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 if (error)
1997 goto out_unlock_iolock;
1998 ASSERT(nimap == 0 || nimap == 1);
1999 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
2000 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2001 mod++;
2002 if (mod && (mod != mp->m_sb.sb_rextsize))
2003 endoffset_fsb -= mod;
2004 }
2005 }
2006 if ((done = (endoffset_fsb <= startoffset_fsb)))
2007 /*
2008 * One contiguous piece to clear
2009 */
2010 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
2011 else {
2012 /*
2013 * Some full blocks, possibly two pieces to clear
2014 */
2015 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
2016 error = xfs_zero_remaining_bytes(ip, offset,
2017 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
2018 if (!error &&
2019 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
2020 error = xfs_zero_remaining_bytes(ip,
2021 XFS_FSB_TO_B(mp, endoffset_fsb),
2022 offset + len - 1);
2023 }
2024
2025 /*
2026 * free file space until done or until there is an error
2027 */
2028 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
2029 while (!error && !done) {
2030
2031 /*
David Chinner91ebecc2007-07-19 16:28:30 +10002032 * allocate and setup the transaction. Allow this
2033 * transaction to dip into the reserve blocks to ensure
2034 * the freeing of the space succeeds at ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 */
2036 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
David Chinner91ebecc2007-07-19 16:28:30 +10002037 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 error = xfs_trans_reserve(tp,
2039 resblks,
2040 XFS_WRITE_LOG_RES(mp),
2041 0,
2042 XFS_TRANS_PERM_LOG_RES,
2043 XFS_WRITE_LOG_COUNT);
2044
2045 /*
2046 * check for running out of space
2047 */
2048 if (error) {
2049 /*
2050 * Free the transaction structure.
2051 */
2052 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
2053 xfs_trans_cancel(tp, 0);
2054 break;
2055 }
2056 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002057 error = xfs_trans_reserve_quota(tp, mp,
2058 ip->i_udquot, ip->i_gdquot,
2059 resblks, 0, XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 if (error)
2061 goto error1;
2062
Christoph Hellwigddc34152011-09-19 15:00:54 +00002063 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065 /*
2066 * issue the bunmapi() call to free the blocks
2067 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06002068 xfs_bmap_init(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10002069 error = xfs_bunmapi(tp, ip, startoffset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 endoffset_fsb - startoffset_fsb,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002071 0, 2, &firstfsb, &free_list, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 if (error) {
2073 goto error0;
2074 }
2075
2076 /*
2077 * complete the transaction
2078 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002079 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 if (error) {
2081 goto error0;
2082 }
2083
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002084 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2086 }
2087
2088 out_unlock_iolock:
2089 if (need_iolock)
2090 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
2091 return error;
2092
2093 error0:
2094 xfs_bmap_cancel(&free_list);
2095 error1:
2096 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
2097 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
2098 XFS_ILOCK_EXCL);
2099 return error;
2100}
2101
2102/*
2103 * xfs_change_file_space()
2104 * This routine allocates or frees disk space for the given file.
2105 * The user specified parameters are checked for alignment and size
2106 * limitations.
2107 *
2108 * RETURNS:
2109 * 0 on success
2110 * errno on error
2111 *
2112 */
2113int
2114xfs_change_file_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002115 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 int cmd,
2117 xfs_flock64_t *bf,
2118 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 int attr_flags)
2120{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002121 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 int clrprealloc;
2123 int error;
2124 xfs_fsize_t fsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 int setprealloc;
2126 xfs_off_t startoffset;
2127 xfs_off_t llen;
2128 xfs_trans_t *tp;
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002129 struct iattr iattr;
Dave Chinner44722352010-08-24 12:02:11 +10002130 int prealloc_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Christoph Hellwig993386c2007-08-28 16:12:30 +10002132 if (!S_ISREG(ip->i_d.di_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 return XFS_ERROR(EINVAL);
2134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 switch (bf->l_whence) {
2136 case 0: /*SEEK_SET*/
2137 break;
2138 case 1: /*SEEK_CUR*/
2139 bf->l_start += offset;
2140 break;
2141 case 2: /*SEEK_END*/
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002142 bf->l_start += XFS_ISIZE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 break;
2144 default:
2145 return XFS_ERROR(EINVAL);
2146 }
2147
2148 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
2149
Dave Chinner32972382012-06-08 15:44:54 +10002150 if (bf->l_start < 0 ||
2151 bf->l_start > mp->m_super->s_maxbytes ||
2152 bf->l_start + llen < 0 ||
2153 bf->l_start + llen > mp->m_super->s_maxbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 return XFS_ERROR(EINVAL);
2155
2156 bf->l_whence = 0;
2157
2158 startoffset = bf->l_start;
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002159 fsize = XFS_ISIZE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
2161 /*
2162 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
2163 * file space.
2164 * These calls do NOT zero the data space allocated to the file,
2165 * nor do they change the file size.
2166 *
2167 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
2168 * space.
2169 * These calls cause the new file data to be zeroed and the file
2170 * size to be changed.
2171 */
2172 setprealloc = clrprealloc = 0;
Dave Chinner44722352010-08-24 12:02:11 +10002173 prealloc_type = XFS_BMAPI_PREALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175 switch (cmd) {
Dave Chinner44722352010-08-24 12:02:11 +10002176 case XFS_IOC_ZERO_RANGE:
2177 prealloc_type |= XFS_BMAPI_CONVERT;
2178 xfs_tosspages(ip, startoffset, startoffset + bf->l_len, 0);
2179 /* FALLTHRU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 case XFS_IOC_RESVSP:
2181 case XFS_IOC_RESVSP64:
2182 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
Dave Chinner44722352010-08-24 12:02:11 +10002183 prealloc_type, attr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 if (error)
2185 return error;
2186 setprealloc = 1;
2187 break;
2188
2189 case XFS_IOC_UNRESVSP:
2190 case XFS_IOC_UNRESVSP64:
2191 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
2192 attr_flags)))
2193 return error;
2194 break;
2195
2196 case XFS_IOC_ALLOCSP:
2197 case XFS_IOC_ALLOCSP64:
2198 case XFS_IOC_FREESP:
2199 case XFS_IOC_FREESP64:
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002200 /*
2201 * These operations actually do IO when extending the file, but
2202 * the allocation is done seperately to the zeroing that is
2203 * done. This set of operations need to be serialised against
2204 * other IO operations, such as truncate and buffered IO. We
2205 * need to take the IOLOCK here to serialise the allocation and
2206 * zeroing IO to prevent other IOLOCK holders (e.g. getbmap,
2207 * truncate, direct IO) from racing against the transient
2208 * allocated but not written state we can have here.
2209 */
2210 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 if (startoffset > fsize) {
2212 error = xfs_alloc_file_space(ip, fsize,
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002213 startoffset - fsize, 0,
2214 attr_flags | XFS_ATTR_NOLOCK);
2215 if (error) {
2216 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 break;
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 }
2220
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002221 iattr.ia_valid = ATTR_SIZE;
2222 iattr.ia_size = startoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002224 error = xfs_setattr_size(ip, &iattr,
2225 attr_flags | XFS_ATTR_NOLOCK);
2226 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
2228 if (error)
2229 return error;
2230
2231 clrprealloc = 1;
2232 break;
2233
2234 default:
2235 ASSERT(0);
2236 return XFS_ERROR(EINVAL);
2237 }
2238
2239 /*
2240 * update the inode timestamp, mode, and prealloc flag bits
2241 */
2242 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
2243
2244 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
2245 0, 0, 0))) {
2246 /* ASSERT(0); */
2247 xfs_trans_cancel(tp, 0);
2248 return error;
2249 }
2250
2251 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +00002252 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002254 if ((attr_flags & XFS_ATTR_DMI) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 ip->i_d.di_mode &= ~S_ISUID;
2256
2257 /*
2258 * Note that we don't have to worry about mandatory
2259 * file locking being disabled here because we only
2260 * clear the S_ISGID bit if the Group execute bit is
2261 * on, but if it was on then mandatory locking wouldn't
2262 * have been enabled.
2263 */
2264 if (ip->i_d.di_mode & S_IXGRP)
2265 ip->i_d.di_mode &= ~S_ISGID;
2266
Dave Chinnerdcd79a12010-09-28 12:27:25 +10002267 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 }
2269 if (setprealloc)
2270 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
2271 else if (clrprealloc)
2272 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
2273
2274 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Dave Chinner82878892011-03-26 09:13:08 +11002275 if (attr_flags & XFS_ATTR_SYNC)
2276 xfs_trans_set_sync(tp);
Christoph Hellwig23bb0be2011-09-18 20:47:51 +00002277 return xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278}