blob: c4c15390020569494d58662c2c2de2275c467c94 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_log.h"
24#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
31#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_dinode.h"
33#include "xfs_inode.h"
34#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_ialloc.h"
37#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_bmap.h"
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020039#include "xfs_acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_attr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_quota.h"
43#include "xfs_utils.h"
Nathan Scotta844f452005-11-02 14:38:42 +110044#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_trans_space.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "xfs_log_priv.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100047#include "xfs_filestream.h"
Christoph Hellwig993386c2007-08-28 16:12:30 +100048#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000049#include "xfs_trace.h"
Dave Chinner33479e02012-10-08 21:56:11 +110050#include "xfs_icache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/*
Nathan Scott7d4fb402006-06-09 15:27:16 +100053 * The maximum pathlen is 1024 bytes. Since the minimum file system
54 * blocksize is 512 bytes, we can get a max of 2 extents back from
55 * bmapi.
56 */
57#define SYMLINK_MAPS 2
58
Christoph Hellwig804c83c2007-08-28 13:59:03 +100059STATIC int
60xfs_readlink_bmap(
61 xfs_inode_t *ip,
62 char *link)
63{
64 xfs_mount_t *mp = ip->i_mount;
65 int pathlen = ip->i_d.di_size;
66 int nmaps = SYMLINK_MAPS;
67 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
68 xfs_daddr_t d;
69 int byte_cnt;
70 int n;
71 xfs_buf_t *bp;
72 int error = 0;
73
Dave Chinner5c8ed202011-09-18 20:40:45 +000074 error = xfs_bmapi_read(ip, 0, XFS_B_TO_FSB(mp, pathlen), mval, &nmaps,
75 0);
Christoph Hellwig804c83c2007-08-28 13:59:03 +100076 if (error)
77 goto out;
78
79 for (n = 0; n < nmaps; n++) {
80 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
81 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
82
Dave Chinner611c9942012-04-23 15:59:07 +100083 bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt), 0);
Chandra Seetharamanac4d6882011-08-03 02:18:29 +000084 if (!bp)
85 return XFS_ERROR(ENOMEM);
Chandra Seetharamane5702802011-08-03 02:18:34 +000086 error = bp->b_error;
Christoph Hellwig804c83c2007-08-28 13:59:03 +100087 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +000088 xfs_buf_ioerror_alert(bp, __func__);
Christoph Hellwig804c83c2007-08-28 13:59:03 +100089 xfs_buf_relse(bp);
90 goto out;
91 }
92 if (pathlen < byte_cnt)
93 byte_cnt = pathlen;
94 pathlen -= byte_cnt;
95
Chandra Seetharaman62926042011-07-22 23:40:15 +000096 memcpy(link, bp->b_addr, byte_cnt);
Christoph Hellwig804c83c2007-08-28 13:59:03 +100097 xfs_buf_relse(bp);
98 }
99
100 link[ip->i_d.di_size] = '\0';
101 error = 0;
102
103 out:
104 return error;
105}
106
Christoph Hellwig993386c2007-08-28 16:12:30 +1000107int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108xfs_readlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000109 xfs_inode_t *ip,
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000110 char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000112 xfs_mount_t *mp = ip->i_mount;
Carlos Maiolinob52a3602011-11-07 16:10:24 +0000113 xfs_fsize_t pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000116 trace_xfs_readlink(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 if (XFS_FORCED_SHUTDOWN(mp))
119 return XFS_ERROR(EIO);
120
121 xfs_ilock(ip, XFS_ILOCK_SHARED);
122
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000123 pathlen = ip->i_d.di_size;
124 if (!pathlen)
125 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Carlos Maiolinob52a3602011-11-07 16:10:24 +0000127 if (pathlen < 0 || pathlen > MAXPATHLEN) {
128 xfs_alert(mp, "%s: inode (%llu) bad symlink length (%lld)",
129 __func__, (unsigned long long) ip->i_ino,
130 (long long) pathlen);
131 ASSERT(0);
Jan Kara9b025eb2012-01-11 18:52:10 +0000132 error = XFS_ERROR(EFSCORRUPTED);
133 goto out;
Carlos Maiolinob52a3602011-11-07 16:10:24 +0000134 }
135
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (ip->i_df.if_flags & XFS_IFINLINE) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000138 memcpy(link, ip->i_df.if_u1.if_data, pathlen);
139 link[pathlen] = '\0';
140 } else {
141 error = xfs_readlink_bmap(ip, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
143
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000144 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return error;
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/*
David Chinner92dfe8d2007-05-24 15:22:19 +1000150 * This is called by xfs_inactive to free any blocks beyond eof
151 * when the link count isn't zero and by xfs_dm_punch_hole() when
152 * punching a hole to EOF.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 */
Eric Sandeend96f8f82009-07-02 00:09:33 -0500154STATIC int
David Chinner92dfe8d2007-05-24 15:22:19 +1000155xfs_free_eofblocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 xfs_mount_t *mp,
David Chinner92dfe8d2007-05-24 15:22:19 +1000157 xfs_inode_t *ip,
Christoph Hellwig5a153222012-07-04 11:13:32 -0400158 bool need_iolock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 xfs_trans_t *tp;
161 int error;
162 xfs_fileoff_t end_fsb;
163 xfs_fileoff_t last_fsb;
164 xfs_filblks_t map_len;
165 int nimaps;
166 xfs_bmbt_irec_t imap;
167
168 /*
169 * Figure out if there are any blocks beyond the end
170 * of the file. If not, then there is nothing to do.
171 */
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000172 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_ISIZE(ip));
Dave Chinner32972382012-06-08 15:44:54 +1000173 last_fsb = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Kulikov Vasiliy3f348852010-07-20 17:54:28 +1000174 if (last_fsb <= end_fsb)
Jesper Juhl014c2542006-01-15 02:37:08 +0100175 return 0;
Kulikov Vasiliy3f348852010-07-20 17:54:28 +1000176 map_len = last_fsb - end_fsb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 nimaps = 1;
179 xfs_ilock(ip, XFS_ILOCK_SHARED);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000180 error = xfs_bmapi_read(ip, end_fsb, map_len, &imap, &nimaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 xfs_iunlock(ip, XFS_ILOCK_SHARED);
182
183 if (!error && (nimaps != 0) &&
Yingping Lu68bdb6e2006-01-11 15:38:31 +1100184 (imap.br_startblock != HOLESTARTBLOCK ||
185 ip->i_delayed_blks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 /*
187 * Attach the dquots to the inode up front.
188 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200189 error = xfs_qm_dqattach(ip, 0);
190 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100191 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 /*
194 * There are blocks after the end of file.
195 * Free them up now by truncating the file to
196 * its current size.
197 */
198 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
199
Christoph Hellwig5a153222012-07-04 11:13:32 -0400200 if (need_iolock) {
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000201 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
202 xfs_trans_cancel(tp, 0);
203 return 0;
204 }
Christoph Hellwigc56c96312009-10-19 04:03:46 +0000205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 error = xfs_trans_reserve(tp, 0,
208 XFS_ITRUNCATE_LOG_RES(mp),
209 0, XFS_TRANS_PERM_LOG_RES,
210 XFS_ITRUNCATE_LOG_COUNT);
211 if (error) {
212 ASSERT(XFS_FORCED_SHUTDOWN(mp));
213 xfs_trans_cancel(tp, 0);
Christoph Hellwig5a153222012-07-04 11:13:32 -0400214 if (need_iolock)
215 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100216 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218
219 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +0000220 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000222 /*
223 * Do not update the on-disk file size. If we update the
224 * on-disk file size and then the system crashes before the
225 * contents of the file are flushed to disk then the files
226 * may be full of holes (ie NULL files bug).
227 */
228 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK,
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000229 XFS_ISIZE(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (error) {
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200231 /*
232 * If we get an error at this point we simply don't
233 * bother truncating the file.
234 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 xfs_trans_cancel(tp,
236 (XFS_TRANS_RELEASE_LOG_RES |
237 XFS_TRANS_ABORT));
238 } else {
239 error = xfs_trans_commit(tp,
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000240 XFS_TRANS_RELEASE_LOG_RES);
Brian Foster27b52862012-11-06 09:50:38 -0500241 if (!error)
242 xfs_inode_clear_eofblocks_tag(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
Christoph Hellwig5a153222012-07-04 11:13:32 -0400244
245 xfs_iunlock(ip, XFS_ILOCK_EXCL);
246 if (need_iolock)
247 xfs_iunlock(ip, XFS_IOLOCK_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
Brian Foster72b53ef2012-11-06 09:50:40 -0500439 if (xfs_can_free_eofblocks(ip, false)) {
Dave Chinner6e857562010-12-23 12:02:31 +1100440
441 /*
442 * If we can't get the iolock just skip truncating the blocks
443 * past EOF because we could deadlock with the mmap_sem
444 * otherwise. We'll get another chance to drop them once the
445 * last reference to the inode is dropped, so we'll never leak
446 * blocks permanently.
447 *
448 * Further, check if the inode is being opened, written and
449 * closed frequently and we have delayed allocation blocks
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300450 * outstanding (e.g. streaming writes from the NFS server),
Dave Chinner6e857562010-12-23 12:02:31 +1100451 * truncating the blocks past EOF will cause fragmentation to
452 * occur.
453 *
454 * In this case don't do the truncation, either, but we have to
455 * be careful how we detect this case. Blocks beyond EOF show
456 * up as i_delayed_blks even when the inode is clean, so we
457 * need to truncate them away first before checking for a dirty
458 * release. Hence on the first dirty close we will still remove
459 * the speculative allocation, but after that we will leave it
460 * in place.
461 */
462 if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE))
463 return 0;
464
Christoph Hellwig5a153222012-07-04 11:13:32 -0400465 error = xfs_free_eofblocks(mp, ip, true);
Dave Chinner6e857562010-12-23 12:02:31 +1100466 if (error)
467 return error;
468
469 /* delalloc blocks after truncation means it really is dirty */
470 if (ip->i_delayed_blks)
471 xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return 0;
474}
475
476/*
477 * xfs_inactive
478 *
479 * This is called when the vnode reference count for the vnode
480 * goes to zero. If the file has been unlinked, then it must
481 * now be truncated. Also, we clear all of the read-ahead state
482 * kept for the inode here since the file is now closed.
483 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000484int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485xfs_inactive(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000486 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000488 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 xfs_fsblock_t first_block;
490 int committed;
491 xfs_trans_t *tp;
492 xfs_mount_t *mp;
493 int error;
Christoph Hellwigb373e982012-07-04 11:13:29 -0400494 int truncate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /*
497 * If the inode is already free, then there can be nothing
498 * to clean up here.
499 */
Christoph Hellwigcb4c8cc2009-03-16 08:25:25 +0100500 if (ip->i_d.di_mode == 0 || is_bad_inode(VFS_I(ip))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 ASSERT(ip->i_df.if_real_bytes == 0);
502 ASSERT(ip->i_df.if_broot_bytes == 0);
503 return VN_INACTIVE_CACHE;
504 }
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 mp = ip->i_mount;
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 error = 0;
509
510 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000511 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 goto out;
513
514 if (ip->i_d.di_nlink != 0) {
Brian Foster72b53ef2012-11-06 09:50:40 -0500515 /*
516 * force is true because we are evicting an inode from the
517 * cache. Post-eof blocks must be freed, lest we end up with
518 * broken free space accounting.
519 */
520 if (xfs_can_free_eofblocks(ip, true)) {
Christoph Hellwig5a153222012-07-04 11:13:32 -0400521 error = xfs_free_eofblocks(mp, ip, false);
David Chinner92dfe8d2007-05-24 15:22:19 +1000522 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100523 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525 goto out;
526 }
527
Christoph Hellwigb373e982012-07-04 11:13:29 -0400528 if (S_ISREG(ip->i_d.di_mode) &&
529 (ip->i_d.di_size != 0 || XFS_ISIZE(ip) != 0 ||
530 ip->i_d.di_nextents > 0 || ip->i_delayed_blks > 0))
531 truncate = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Christoph Hellwig7d095252009-06-08 15:33:32 +0200533 error = xfs_qm_dqattach(ip, 0);
534 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100535 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400538 error = xfs_trans_reserve(tp, 0,
539 (truncate || S_ISLNK(ip->i_d.di_mode)) ?
540 XFS_ITRUNCATE_LOG_RES(mp) :
541 XFS_IFREE_LOG_RES(mp),
542 0,
543 XFS_TRANS_PERM_LOG_RES,
544 XFS_ITRUNCATE_LOG_COUNT);
545 if (error) {
546 ASSERT(XFS_FORCED_SHUTDOWN(mp));
547 xfs_trans_cancel(tp, 0);
548 return VN_INACTIVE_CACHE;
549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Christoph Hellwig0b561852012-07-04 11:13:31 -0400551 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400552 xfs_trans_ijoin(tp, ip, 0);
553
554 if (S_ISLNK(ip->i_d.di_mode)) {
555 /*
556 * Zero length symlinks _can_ exist.
557 */
558 if (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) {
559 error = xfs_inactive_symlink_rmt(ip, &tp);
560 if (error)
561 goto out_cancel;
562 } else if (ip->i_df.if_bytes > 0) {
563 xfs_idata_realloc(ip, -(ip->i_df.if_bytes),
564 XFS_DATA_FORK);
565 ASSERT(ip->i_df.if_bytes == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
Christoph Hellwigb373e982012-07-04 11:13:29 -0400567 } else if (truncate) {
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000568 ip->i_d.di_size = 0;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000569 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
570
571 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400572 if (error)
573 goto out_cancel;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000574
575 ASSERT(ip->i_d.di_nextents == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577
578 /*
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400579 * If there are attributes associated with the file then blow them away
580 * now. The code calls a routine that recursively deconstructs the
581 * attribute fork. We need to just commit the current transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 * because we can't use it for xfs_attr_inactive().
583 */
584 if (ip->i_d.di_anextents > 0) {
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400585 ASSERT(ip->i_d.di_forkoff != 0);
586
587 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400588 if (error)
Christoph Hellwig0b561852012-07-04 11:13:31 -0400589 goto out_unlock;
590
591 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400592
593 error = xfs_attr_inactive(ip);
594 if (error)
Christoph Hellwig0b561852012-07-04 11:13:31 -0400595 goto out;
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400596
597 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
598 error = xfs_trans_reserve(tp, 0,
599 XFS_IFREE_LOG_RES(mp),
600 0, XFS_TRANS_PERM_LOG_RES,
601 XFS_INACTIVE_LOG_COUNT);
Christoph Hellwig0b561852012-07-04 11:13:31 -0400602 if (error) {
603 xfs_trans_cancel(tp, 0);
604 goto out;
605 }
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400606
607 xfs_ilock(ip, XFS_ILOCK_EXCL);
608 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
Christoph Hellwigfe67be02012-07-04 11:13:30 -0400611 if (ip->i_afp)
612 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
613
614 ASSERT(ip->i_d.di_anextents == 0);
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 /*
617 * Free the inode.
618 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600619 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 error = xfs_ifree(tp, ip, &free_list);
621 if (error) {
622 /*
623 * If we fail to free the inode, shut down. The cancel
624 * might do that, we need to make sure. Otherwise the
625 * inode might be lost for a long time or forever.
626 */
627 if (!XFS_FORCED_SHUTDOWN(mp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100628 xfs_notice(mp, "%s: xfs_ifree returned error %d",
629 __func__, error);
Nathan Scott7d04a332006-06-09 14:58:38 +1000630 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
632 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
633 } else {
634 /*
635 * Credit the quota account(s). The inode is gone.
636 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200637 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 /*
David Chinner78e9da72008-04-10 12:24:17 +1000640 * Just ignore errors at this point. There is nothing we can
641 * do except to try to keep going. Make sure it's not a silent
642 * error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 */
David Chinner78e9da72008-04-10 12:24:17 +1000644 error = xfs_bmap_finish(&tp, &free_list, &committed);
645 if (error)
Dave Chinner53487782011-03-07 10:05:35 +1100646 xfs_notice(mp, "%s: xfs_bmap_finish returned error %d",
647 __func__, error);
David Chinner78e9da72008-04-10 12:24:17 +1000648 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
649 if (error)
Dave Chinner53487782011-03-07 10:05:35 +1100650 xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
651 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /*
655 * Release the dquots held by inode, if any.
656 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200657 xfs_qm_dqdetach(ip);
Christoph Hellwig0b561852012-07-04 11:13:31 -0400658out_unlock:
659 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigb373e982012-07-04 11:13:29 -0400660out:
661 return VN_INACTIVE_CACHE;
662out_cancel:
663 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
Christoph Hellwig0b561852012-07-04 11:13:31 -0400664 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Barry Naujok384f3ce2008-05-21 16:58:22 +1000667/*
668 * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
669 * is allowed, otherwise it has to be an exact match. If a CI match is found,
670 * ci_name->name will point to a the actual name (caller must free) or
671 * will be set to NULL if an exact match is found.
672 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000673int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674xfs_lookup(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000675 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000676 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000677 xfs_inode_t **ipp,
678 struct xfs_name *ci_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000680 xfs_ino_t inum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 int error;
682 uint lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000684 trace_xfs_lookup(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
687 return XFS_ERROR(EIO);
688
689 lock_mode = xfs_ilock_map_shared(dp);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000690 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 xfs_iunlock_map_shared(dp, lock_mode);
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000692
693 if (error)
694 goto out;
695
Dave Chinner7b6259e2010-06-24 11:35:17 +1000696 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000697 if (error)
Barry Naujok384f3ce2008-05-21 16:58:22 +1000698 goto out_free_name;
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000699
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000700 return 0;
701
Barry Naujok384f3ce2008-05-21 16:58:22 +1000702out_free_name:
703 if (ci_name)
704 kmem_free(ci_name->name);
705out:
Christoph Hellwigeca450b2008-04-22 17:33:52 +1000706 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return error;
708}
709
Christoph Hellwig993386c2007-08-28 16:12:30 +1000710int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711xfs_create(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000712 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000713 struct xfs_name *name,
Al Viro576b1d62011-07-26 02:50:15 -0400714 umode_t mode,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000715 xfs_dev_t rdev,
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000716 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100718 int is_dir = S_ISDIR(mode);
719 struct xfs_mount *mp = dp->i_mount;
720 struct xfs_inode *ip = NULL;
721 struct xfs_trans *tp = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000722 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 xfs_bmap_free_t free_list;
724 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +1000725 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 uint cancel_flags;
727 int committed;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000728 prid_t prid;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100729 struct xfs_dquot *udqp = NULL;
730 struct xfs_dquot *gdqp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 uint resblks;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100732 uint log_res;
733 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000735 trace_xfs_create(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100737 if (XFS_FORCED_SHUTDOWN(mp))
738 return XFS_ERROR(EIO);
739
Nathan Scott365ca832005-06-21 15:39:12 +1000740 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000741 prid = xfs_get_projid(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 else
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000743 prid = XFS_PROJID_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 /*
746 * Make sure that we have allocated dquot(s) on disk.
747 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200748 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100749 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000751 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100753 if (is_dir) {
754 rdev = 0;
755 resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
756 log_res = XFS_MKDIR_LOG_RES(mp);
757 log_count = XFS_MKDIR_LOG_COUNT;
758 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
759 } else {
760 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
761 log_res = XFS_CREATE_LOG_RES(mp);
762 log_count = XFS_CREATE_LOG_COUNT;
763 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 /*
769 * Initially assume that the file does not exist and
770 * reserve the resources for that case. If that is not
771 * the case we'll drop the one we have and get a more
772 * appropriate transaction later.
773 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100774 error = xfs_trans_reserve(tp, resblks, log_res, 0,
775 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (error == ENOSPC) {
Dave Chinner153fec42009-04-06 18:48:30 +0200777 /* flush outstanding delalloc blocks and retry */
Dave Chinner9aa05002012-10-08 21:56:04 +1100778 xfs_flush_inodes(mp);
Christoph Hellwig4734d402009-09-09 18:19:02 -0500779 error = xfs_trans_reserve(tp, resblks, log_res, 0,
780 XFS_TRANS_PERM_LOG_RES, log_count);
Dave Chinner153fec42009-04-06 18:48:30 +0200781 }
782 if (error == ENOSPC) {
783 /* No space at all so try a "no-allocation" reservation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 resblks = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100785 error = xfs_trans_reserve(tp, 0, log_res, 0,
786 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788 if (error) {
789 cancel_flags = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100790 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
792
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000793 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +1000794 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100796 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 /*
799 * Reserve disk quota and the inode.
800 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200801 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100803 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Barry Naujok556b8b12008-04-10 12:22:07 +1000805 error = xfs_dir_canenter(tp, dp, name, resblks);
806 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100807 goto out_trans_cancel;
808
809 /*
810 * A newly created regular or special file just has one directory
811 * entry pointing to them, but a directory also the "." entry
812 * pointing to itself.
813 */
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000814 error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev,
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100815 prid, resblks > 0, &ip, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (error) {
817 if (error == ENOSPC)
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100818 goto out_trans_cancel;
819 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /*
Christoph Hellwig993386c2007-08-28 16:12:30 +1000823 * Now we join the directory inode to the transaction. We do not do it
824 * earlier because xfs_dir_ialloc might commit the previous transaction
825 * (and release all the locks). An error from here on will result in
826 * the transaction cancel unlocking dp so don't do it explicitly in the
827 * error path.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000829 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +1000830 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Barry Naujok556b8b12008-04-10 12:22:07 +1000832 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000833 &first_block, &free_list, resblks ?
834 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (error) {
836 ASSERT(error != ENOSPC);
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100837 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000839 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
841
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100842 if (is_dir) {
843 error = xfs_dir_init(tp, ip, dp);
844 if (error)
845 goto out_bmap_cancel;
846
847 error = xfs_bumplink(tp, dp);
848 if (error)
849 goto out_bmap_cancel;
850 }
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 /*
853 * If this is a synchronous mount, make sure that the
854 * create transaction goes to disk before returning to
855 * the user.
856 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100857 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /*
861 * Attach the dquot(s) to the inodes and modify them incore.
862 * These ids of the inode couldn't have changed since the new
863 * inode has been locked ever since it was created.
864 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200865 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100867 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100868 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000869 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000871 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000872 if (error)
873 goto out_release_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Christoph Hellwig7d095252009-06-08 15:33:32 +0200875 xfs_qm_dqrele(udqp);
876 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100878 *ipp = ip;
Christoph Hellwig288699f2010-06-23 18:11:15 +1000879 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100881 out_bmap_cancel:
882 xfs_bmap_cancel(&free_list);
883 out_trans_abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100885 out_trans_cancel:
886 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000887 out_release_inode:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 /*
889 * Wait until after the current transaction is aborted to
890 * release the inode. This prevents recursive transactions
891 * and deadlocks from xfs_inactive.
892 */
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000893 if (ip)
894 IRELE(ip);
895
896 xfs_qm_dqrele(udqp);
897 xfs_qm_dqrele(gdqp);
898
899 if (unlock_dp_on_error)
900 xfs_iunlock(dp, XFS_ILOCK_EXCL);
901 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
904#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905int xfs_locked_n;
906int xfs_small_retries;
907int xfs_middle_retries;
908int xfs_lots_retries;
909int xfs_lock_delays;
910#endif
911
912/*
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000913 * Bump the subclass so xfs_lock_inodes() acquires each lock with
914 * a different value
915 */
916static inline int
917xfs_lock_inumorder(int lock_mode, int subclass)
918{
919 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +1000920 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000921 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +1000922 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000923
924 return lock_mode;
925}
926
927/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 * The following routine will lock n inodes in exclusive mode.
929 * We assume the caller calls us with the inodes in i_ino order.
930 *
931 * We need to detect deadlock where an inode that we lock
932 * is in the AIL and we start waiting for another inode that is locked
933 * by a thread in a long running transaction (such as truncate). This can
934 * result in deadlock since the long running trans might need to wait
935 * for the inode we just locked in order to push the tail and free space
936 * in the log.
937 */
938void
939xfs_lock_inodes(
940 xfs_inode_t **ips,
941 int inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 uint lock_mode)
943{
944 int attempts = 0, i, j, try_lock;
945 xfs_log_item_t *lp;
946
947 ASSERT(ips && (inodes >= 2)); /* we need at least two */
948
Christoph Hellwigcfa853e2008-04-22 17:34:06 +1000949 try_lock = 0;
950 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952again:
953 for (; i < inodes; i++) {
954 ASSERT(ips[i]);
955
956 if (i && (ips[i] == ips[i-1])) /* Already locked */
957 continue;
958
959 /*
960 * If try_lock is not set yet, make sure all locked inodes
961 * are not in the AIL.
962 * If any are, set try_lock to be used later.
963 */
964
965 if (!try_lock) {
966 for (j = (i - 1); j >= 0 && !try_lock; j--) {
967 lp = (xfs_log_item_t *)ips[j]->i_itemp;
968 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
969 try_lock++;
970 }
971 }
972 }
973
974 /*
975 * If any of the previous locks we have locked is in the AIL,
976 * we must TRY to get the second and subsequent locks. If
977 * we can't get any, we must release all we have
978 * and try again.
979 */
980
981 if (try_lock) {
982 /* try_lock must be 0 if i is 0. */
983 /*
984 * try_lock means we have an inode locked
985 * that is in the AIL.
986 */
987 ASSERT(i != 0);
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000988 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 attempts++;
990
991 /*
992 * Unlock all previous guys and try again.
993 * xfs_iunlock will try to push the tail
994 * if the inode is in the AIL.
995 */
996
997 for(j = i - 1; j >= 0; j--) {
998
999 /*
1000 * Check to see if we've already
1001 * unlocked this one.
1002 * Not the first one going back,
1003 * and the inode ptr is the same.
1004 */
1005 if ((j != (i - 1)) && ips[j] ==
1006 ips[j+1])
1007 continue;
1008
1009 xfs_iunlock(ips[j], lock_mode);
1010 }
1011
1012 if ((attempts % 5) == 0) {
1013 delay(1); /* Don't just spin the CPU */
1014#ifdef DEBUG
1015 xfs_lock_delays++;
1016#endif
1017 }
1018 i = 0;
1019 try_lock = 0;
1020 goto again;
1021 }
1022 } else {
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001023 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025 }
1026
1027#ifdef DEBUG
1028 if (attempts) {
1029 if (attempts < 5) xfs_small_retries++;
1030 else if (attempts < 100) xfs_middle_retries++;
1031 else xfs_lots_retries++;
1032 } else {
1033 xfs_locked_n++;
1034 }
1035#endif
1036}
1037
David Chinnerf9114eb2008-09-17 16:51:21 +10001038/*
1039 * xfs_lock_two_inodes() can only be used to lock one type of lock
1040 * at a time - the iolock or the ilock, but not both at once. If
1041 * we lock both at once, lockdep will report false positives saying
1042 * we have violated locking orders.
1043 */
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001044void
1045xfs_lock_two_inodes(
1046 xfs_inode_t *ip0,
1047 xfs_inode_t *ip1,
1048 uint lock_mode)
1049{
1050 xfs_inode_t *temp;
1051 int attempts = 0;
1052 xfs_log_item_t *lp;
1053
David Chinnerf9114eb2008-09-17 16:51:21 +10001054 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
1055 ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0);
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001056 ASSERT(ip0->i_ino != ip1->i_ino);
1057
1058 if (ip0->i_ino > ip1->i_ino) {
1059 temp = ip0;
1060 ip0 = ip1;
1061 ip1 = temp;
1062 }
1063
1064 again:
1065 xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0));
1066
1067 /*
1068 * If the first lock we have locked is in the AIL, we must TRY to get
1069 * the second lock. If we can't get it, we must release the first one
1070 * and try again.
1071 */
1072 lp = (xfs_log_item_t *)ip0->i_itemp;
1073 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1074 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) {
1075 xfs_iunlock(ip0, lock_mode);
1076 if ((++attempts % 5) == 0)
1077 delay(1); /* Don't just spin the CPU */
1078 goto again;
1079 }
1080 } else {
1081 xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1));
1082 }
1083}
1084
Christoph Hellwig993386c2007-08-28 16:12:30 +10001085int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086xfs_remove(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001087 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001088 struct xfs_name *name,
1089 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001091 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 xfs_trans_t *tp = NULL;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001093 int is_dir = S_ISDIR(ip->i_d.di_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 int error = 0;
1095 xfs_bmap_free_t free_list;
1096 xfs_fsblock_t first_block;
1097 int cancel_flags;
1098 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 int link_zero;
1100 uint resblks;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001101 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001103 trace_xfs_remove(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (XFS_FORCED_SHUTDOWN(mp))
1106 return XFS_ERROR(EIO);
1107
Christoph Hellwig7d095252009-06-08 15:33:32 +02001108 error = xfs_qm_dqattach(dp, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001109 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Christoph Hellwig7d095252009-06-08 15:33:32 +02001112 error = xfs_qm_dqattach(ip, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001113 if (error)
1114 goto std_return;
1115
1116 if (is_dir) {
1117 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
1118 log_count = XFS_DEFAULT_LOG_COUNT;
1119 } else {
1120 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
1121 log_count = XFS_REMOVE_LOG_COUNT;
1122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 /*
1126 * We try to get the real space reservation first,
1127 * allowing for directory btree deletion(s) implying
1128 * possible bmap insert(s). If we can't get the space
1129 * reservation then we use 0 instead, and avoid the bmap
1130 * btree insert(s) in the directory code by, if the bmap
1131 * insert tries to happen, instead trimming the LAST
1132 * block from the directory.
1133 */
1134 resblks = XFS_REMOVE_SPACE_RES(mp);
1135 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001136 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (error == ENOSPC) {
1138 resblks = 0;
1139 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001140 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
1142 if (error) {
1143 ASSERT(error != ENOSPC);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001144 cancel_flags = 0;
1145 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
1147
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001148 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Christoph Hellwigddc34152011-09-19 15:00:54 +00001150 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1151 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 /*
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001154 * If we're removing a directory perform some additional validation.
1155 */
1156 if (is_dir) {
1157 ASSERT(ip->i_d.di_nlink >= 2);
1158 if (ip->i_d.di_nlink != 2) {
1159 error = XFS_ERROR(ENOTEMPTY);
1160 goto out_trans_cancel;
1161 }
1162 if (!xfs_dir_isempty(ip)) {
1163 error = XFS_ERROR(ENOTEMPTY);
1164 goto out_trans_cancel;
1165 }
1166 }
1167
Eric Sandeen9d87c312009-01-14 23:22:07 -06001168 xfs_bmap_init(&free_list, &first_block);
Barry Naujok556b8b12008-04-10 12:22:07 +10001169 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
Christoph Hellwigd4377d82008-04-22 17:33:46 +10001170 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (error) {
1172 ASSERT(error != ENOENT);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001173 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001175 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001177 if (is_dir) {
1178 /*
1179 * Drop the link from ip's "..".
1180 */
1181 error = xfs_droplink(tp, dp);
1182 if (error)
1183 goto out_bmap_cancel;
1184
1185 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001186 * Drop the "." link from ip to self.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001187 */
1188 error = xfs_droplink(tp, ip);
1189 if (error)
1190 goto out_bmap_cancel;
1191 } else {
1192 /*
1193 * When removing a non-directory we need to log the parent
Dave Chinner26c52952008-11-28 14:23:37 +11001194 * inode here. For a directory this is done implicitly
1195 * by the xfs_droplink call for the ".." entry.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001196 */
1197 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
1199
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001200 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001201 * Drop the link from dp to ip.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001202 */
1203 error = xfs_droplink(tp, ip);
1204 if (error)
1205 goto out_bmap_cancel;
1206
1207 /*
1208 * Determine if this is the last link while
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 * we are in the transaction.
1210 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001211 link_zero = (ip->i_d.di_nlink == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 * If this is a synchronous mount, make sure that the
1215 * remove transaction goes to disk before returning to
1216 * the user.
1217 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001218 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001221 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001222 if (error)
1223 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001225 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig5df78e72008-04-22 17:34:24 +10001226 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 /*
David Chinner2a82b8b2007-07-11 11:09:12 +10001230 * If we are using filestreams, kill the stream association.
1231 * If the file is still open it may get a new one but that
1232 * will get killed on last close in xfs_close() so we don't
1233 * have to worry about that.
1234 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001235 if (!is_dir && link_zero && xfs_inode_is_filestream(ip))
David Chinner2a82b8b2007-07-11 11:09:12 +10001236 xfs_filestream_deassociate(ip);
1237
Christoph Hellwig288699f2010-06-23 18:11:15 +10001238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001240 out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 xfs_bmap_cancel(&free_list);
1242 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001243 out_trans_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001245 std_return:
1246 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Christoph Hellwig993386c2007-08-28 16:12:30 +10001249int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250xfs_link(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001251 xfs_inode_t *tdp,
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001252 xfs_inode_t *sip,
Barry Naujok556b8b12008-04-10 12:22:07 +10001253 struct xfs_name *target_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001255 xfs_mount_t *mp = tdp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 int error;
1258 xfs_bmap_free_t free_list;
1259 xfs_fsblock_t first_block;
1260 int cancel_flags;
1261 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 int resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001264 trace_xfs_link(tdp, target_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001266 ASSERT(!S_ISDIR(sip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (XFS_FORCED_SHUTDOWN(mp))
1269 return XFS_ERROR(EIO);
1270
Christoph Hellwig7d095252009-06-08 15:33:32 +02001271 error = xfs_qm_dqattach(sip, 0);
Christoph Hellwigcb3f35b2009-02-04 09:34:20 +01001272 if (error)
1273 goto std_return;
1274
Christoph Hellwig7d095252009-06-08 15:33:32 +02001275 error = xfs_qm_dqattach(tdp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 if (error)
1277 goto std_return;
1278
1279 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
1280 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10001281 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
1283 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1284 if (error == ENOSPC) {
1285 resblks = 0;
1286 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
1287 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1288 }
1289 if (error) {
1290 cancel_flags = 0;
1291 goto error_return;
1292 }
1293
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001294 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Christoph Hellwigddc34152011-09-19 15:00:54 +00001296 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
1297 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 /*
Nathan Scott365ca832005-06-21 15:39:12 +10001300 * If we are using project inheritance, we only allow hard link
1301 * creation in our tree when the project IDs are the same; else
1302 * the tree quota mechanism could be circumvented.
1303 */
1304 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001305 (xfs_get_projid(tdp) != xfs_get_projid(sip)))) {
Nathan Scottb1ecdda2006-05-08 19:51:42 +10001306 error = XFS_ERROR(EXDEV);
Nathan Scott365ca832005-06-21 15:39:12 +10001307 goto error_return;
1308 }
1309
Barry Naujok556b8b12008-04-10 12:22:07 +10001310 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
1311 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 goto error_return;
1313
Eric Sandeen9d87c312009-01-14 23:22:07 -06001314 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Barry Naujok556b8b12008-04-10 12:22:07 +10001316 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
1317 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 if (error)
1319 goto abort_return;
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001320 xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1322
1323 error = xfs_bumplink(tp, sip);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001324 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 /*
1328 * If this is a synchronous mount, make sure that the
1329 * link transaction goes to disk before returning to
1330 * the user.
1331 */
1332 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1333 xfs_trans_set_sync(tp);
1334 }
1335
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001336 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 if (error) {
1338 xfs_bmap_cancel(&free_list);
1339 goto abort_return;
1340 }
1341
Christoph Hellwig288699f2010-06-23 18:11:15 +10001342 return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 abort_return:
1345 cancel_flags |= XFS_TRANS_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 error_return:
1347 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001348 std_return:
1349 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001351
Christoph Hellwig993386c2007-08-28 16:12:30 +10001352int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353xfs_symlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001354 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001355 struct xfs_name *link_name,
1356 const char *target_path,
Al Viro576b1d62011-07-26 02:50:15 -04001357 umode_t mode,
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001358 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001360 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 xfs_inode_t *ip;
1363 int error;
1364 int pathlen;
1365 xfs_bmap_free_t free_list;
1366 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001367 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 uint cancel_flags;
1369 int committed;
1370 xfs_fileoff_t first_fsb;
1371 xfs_filblks_t fs_blocks;
1372 int nmaps;
1373 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1374 xfs_daddr_t d;
Barry Naujok556b8b12008-04-10 12:22:07 +10001375 const char *cur_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 int byte_cnt;
1377 int n;
1378 xfs_buf_t *bp;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001379 prid_t prid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 struct xfs_dquot *udqp, *gdqp;
1381 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Christoph Hellwig3937be52008-03-06 13:46:19 +11001383 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 error = 0;
1385 ip = NULL;
1386 tp = NULL;
1387
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001388 trace_xfs_symlink(dp, link_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 if (XFS_FORCED_SHUTDOWN(mp))
1391 return XFS_ERROR(EIO);
1392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 /*
1394 * Check component lengths of the target path name.
1395 */
1396 pathlen = strlen(target_path);
1397 if (pathlen >= MAXPATHLEN) /* total string too long */
1398 return XFS_ERROR(ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10001401 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001402 prid = xfs_get_projid(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 else
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001404 prid = XFS_PROJID_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
1406 /*
1407 * Make sure that we have allocated dquot(s) on disk.
1408 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001409 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
1411 if (error)
1412 goto std_return;
1413
1414 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
1415 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1416 /*
1417 * The symlink will fit into the inode data fork?
1418 * There can't be any attributes so we get the whole variable part.
1419 */
1420 if (pathlen <= XFS_LITINO(mp))
1421 fs_blocks = 0;
1422 else
1423 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
Barry Naujok556b8b12008-04-10 12:22:07 +10001424 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
1426 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
1427 if (error == ENOSPC && fs_blocks == 0) {
1428 resblks = 0;
1429 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
1430 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
1431 }
1432 if (error) {
1433 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 goto error_return;
1435 }
1436
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001437 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001438 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440 /*
1441 * Check whether the directory allows new symlinks or not.
1442 */
1443 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
1444 error = XFS_ERROR(EPERM);
1445 goto error_return;
1446 }
1447
1448 /*
1449 * Reserve disk quota : blocks and inode.
1450 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001451 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 if (error)
1453 goto error_return;
1454
1455 /*
1456 * Check for ability to enter directory entry, if no space reserved.
1457 */
Barry Naujok556b8b12008-04-10 12:22:07 +10001458 error = xfs_dir_canenter(tp, dp, link_name, resblks);
1459 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 goto error_return;
1461 /*
1462 * Initialize the bmap freelist prior to calling either
1463 * bmapi or the directory create code.
1464 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06001465 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 /*
1468 * Allocate an inode for the symlink.
1469 */
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001470 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT), 1, 0,
1471 prid, resblks > 0, &ip, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (error) {
1473 if (error == ENOSPC)
1474 goto error_return;
1475 goto error1;
1476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Christoph Hellwig993386c2007-08-28 16:12:30 +10001478 /*
1479 * An error after we've joined dp to the transaction will result in the
1480 * transaction cancel unlocking dp so don't do it explicitly in the
1481 * error path.
1482 */
Christoph Hellwigddc34152011-09-19 15:00:54 +00001483 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001484 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 /*
1487 * Also attach the dquot(s) to it, if applicable.
1488 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001489 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 if (resblks)
1492 resblks -= XFS_IALLOC_SPACE_RES(mp);
1493 /*
1494 * If the symlink will fit into the inode, write it inline.
1495 */
1496 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
1497 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
1498 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
1499 ip->i_d.di_size = pathlen;
1500
1501 /*
1502 * The inode was initially created in extent format.
1503 */
1504 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
1505 ip->i_df.if_flags |= XFS_IFINLINE;
1506
1507 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
1508 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
1509
1510 } else {
1511 first_fsb = 0;
1512 nmaps = SYMLINK_MAPS;
1513
Dave Chinnerc0dc7822011-09-18 20:40:52 +00001514 error = xfs_bmapi_write(tp, ip, first_fsb, fs_blocks,
1515 XFS_BMAPI_METADATA, &first_block, resblks,
1516 mval, &nmaps, &free_list);
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001517 if (error)
1518 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520 if (resblks)
1521 resblks -= fs_blocks;
1522 ip->i_d.di_size = pathlen;
1523 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1524
1525 cur_chunk = target_path;
1526 for (n = 0; n < nmaps; n++) {
1527 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
1528 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
1529 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
1530 BTOBB(byte_cnt), 0);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001531 if (!bp) {
1532 error = ENOMEM;
1533 goto error2;
1534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (pathlen < byte_cnt) {
1536 byte_cnt = pathlen;
1537 }
1538 pathlen -= byte_cnt;
1539
Chandra Seetharaman62926042011-07-22 23:40:15 +00001540 memcpy(bp->b_addr, cur_chunk, byte_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 cur_chunk += byte_cnt;
1542
1543 xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
1544 }
1545 }
1546
1547 /*
1548 * Create the directory entry for the symlink.
1549 */
Barry Naujok556b8b12008-04-10 12:22:07 +10001550 error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
1551 &first_block, &free_list, resblks);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001552 if (error)
Christoph Hellwigec3ba852011-02-13 13:26:42 +00001553 goto error2;
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001554 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1556
1557 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 * If this is a synchronous mount, make sure that the
1559 * symlink transaction goes to disk before returning to
1560 * the user.
1561 */
1562 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1563 xfs_trans_set_sync(tp);
1564 }
1565
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001566 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (error) {
1568 goto error2;
1569 }
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001570 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001571 xfs_qm_dqrele(udqp);
1572 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Christoph Hellwig288699f2010-06-23 18:11:15 +10001574 *ipp = ip;
1575 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 error2:
1578 IRELE(ip);
1579 error1:
1580 xfs_bmap_cancel(&free_list);
1581 cancel_flags |= XFS_TRANS_ABORT;
1582 error_return:
1583 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001584 xfs_qm_dqrele(udqp);
1585 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Christoph Hellwig993386c2007-08-28 16:12:30 +10001587 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001589 std_return:
1590 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593int
Christoph Hellwig993386c2007-08-28 16:12:30 +10001594xfs_set_dmattrs(
1595 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 u_int evmask,
Christoph Hellwig993386c2007-08-28 16:12:30 +10001597 u_int16_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001599 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 int error;
1602
1603 if (!capable(CAP_SYS_ADMIN))
1604 return XFS_ERROR(EPERM);
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (XFS_FORCED_SHUTDOWN(mp))
1607 return XFS_ERROR(EIO);
1608
1609 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
1610 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
1611 if (error) {
1612 xfs_trans_cancel(tp, 0);
1613 return error;
1614 }
1615 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +00001616 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Christoph Hellwig613d7042007-10-11 17:44:08 +10001618 ip->i_d.di_dmevmask = evmask;
1619 ip->i_d.di_dmstate = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
1621 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001622 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 return error;
1625}
1626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627/*
1628 * xfs_alloc_file_space()
1629 * This routine allocates disk space for the given file.
1630 *
1631 * If alloc_type == 0, this request is for an ALLOCSP type
1632 * request which will change the file size. In this case, no
1633 * DMAPI event will be generated by the call. A TRUNCATE event
1634 * will be generated later by xfs_setattr.
1635 *
1636 * If alloc_type != 0, this request is for a RESVSP type
1637 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
1638 * lower block boundary byte address is less than the file's
1639 * length.
1640 *
1641 * RETURNS:
1642 * 0 on success
1643 * errno on error
1644 *
1645 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001646STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647xfs_alloc_file_space(
1648 xfs_inode_t *ip,
1649 xfs_off_t offset,
1650 xfs_off_t len,
1651 int alloc_type,
1652 int attr_flags)
1653{
Nathan Scottdd9f4382006-01-11 15:28:28 +11001654 xfs_mount_t *mp = ip->i_mount;
1655 xfs_off_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 xfs_filblks_t allocated_fsb;
1657 xfs_filblks_t allocatesize_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001658 xfs_extlen_t extsz, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 xfs_fileoff_t startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001660 xfs_fsblock_t firstfsb;
1661 int nimaps;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001662 int quota_flag;
1663 int rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 xfs_trans_t *tp;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001665 xfs_bmbt_irec_t imaps[1], *imapp;
1666 xfs_bmap_free_t free_list;
1667 uint qblocks, resblks, resrtextents;
1668 int committed;
1669 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001671 trace_xfs_alloc_file_space(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 if (XFS_FORCED_SHUTDOWN(mp))
1674 return XFS_ERROR(EIO);
1675
Christoph Hellwig7d095252009-06-08 15:33:32 +02001676 error = xfs_qm_dqattach(ip, 0);
1677 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 return error;
1679
1680 if (len <= 0)
1681 return XFS_ERROR(EINVAL);
1682
David Chinner957d0eb2007-06-18 16:50:37 +10001683 rt = XFS_IS_REALTIME_INODE(ip);
1684 extsz = xfs_get_extsz_hint(ip);
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 count = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 imapp = &imaps[0];
Nathan Scottdd9f4382006-01-11 15:28:28 +11001688 nimaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
1690 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001693 * Allocate file space until done or until there is an error
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 while (allocatesize_fsb && !error) {
Nathan Scottdd9f4382006-01-11 15:28:28 +11001696 xfs_fileoff_t s, e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Nathan Scottdd9f4382006-01-11 15:28:28 +11001698 /*
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11001699 * Determine space reservations for data/realtime.
Nathan Scottdd9f4382006-01-11 15:28:28 +11001700 */
1701 if (unlikely(extsz)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 s = startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001703 do_div(s, extsz);
1704 s *= extsz;
1705 e = startoffset_fsb + allocatesize_fsb;
1706 if ((temp = do_mod(startoffset_fsb, extsz)))
1707 e += temp;
1708 if ((temp = do_mod(e, extsz)))
1709 e += extsz - temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 } else {
Nathan Scottdd9f4382006-01-11 15:28:28 +11001711 s = 0;
1712 e = allocatesize_fsb;
1713 }
1714
Dave Chinner72656c42010-09-03 12:19:33 +10001715 /*
1716 * The transaction reservation is limited to a 32-bit block
1717 * count, hence we need to limit the number of blocks we are
1718 * trying to reserve to avoid an overflow. We can't allocate
1719 * more than @nimaps extents, and an extent is limited on disk
1720 * to MAXEXTLEN (21 bits), so use that to enforce the limit.
1721 */
1722 resblks = min_t(xfs_fileoff_t, (e - s), (MAXEXTLEN * nimaps));
Nathan Scottdd9f4382006-01-11 15:28:28 +11001723 if (unlikely(rt)) {
Dave Chinner72656c42010-09-03 12:19:33 +10001724 resrtextents = qblocks = resblks;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001725 resrtextents /= mp->m_sb.sb_rextsize;
1726 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1727 quota_flag = XFS_QMOPT_RES_RTBLKS;
1728 } else {
1729 resrtextents = 0;
Dave Chinner72656c42010-09-03 12:19:33 +10001730 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001731 quota_flag = XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 }
1733
1734 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001735 * Allocate and setup the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 */
1737 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001738 error = xfs_trans_reserve(tp, resblks,
1739 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 XFS_TRANS_PERM_LOG_RES,
1741 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001743 * Check for running out of space
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 */
1745 if (error) {
1746 /*
1747 * Free the transaction structure.
1748 */
1749 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
1750 xfs_trans_cancel(tp, 0);
1751 break;
1752 }
1753 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001754 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
1755 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 if (error)
1757 goto error1;
1758
Christoph Hellwigddc34152011-09-19 15:00:54 +00001759 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Eric Sandeen9d87c312009-01-14 23:22:07 -06001761 xfs_bmap_init(&free_list, &firstfsb);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00001762 error = xfs_bmapi_write(tp, ip, startoffset_fsb,
1763 allocatesize_fsb, alloc_type, &firstfsb,
1764 0, imapp, &nimaps, &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 if (error) {
1766 goto error0;
1767 }
1768
1769 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11001770 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001772 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 if (error) {
1774 goto error0;
1775 }
1776
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001777 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1779 if (error) {
1780 break;
1781 }
1782
1783 allocated_fsb = imapp->br_blockcount;
1784
Nathan Scottdd9f4382006-01-11 15:28:28 +11001785 if (nimaps == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 error = XFS_ERROR(ENOSPC);
1787 break;
1788 }
1789
1790 startoffset_fsb += allocated_fsb;
1791 allocatesize_fsb -= allocated_fsb;
1792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 return error;
1795
Nathan Scottdd9f4382006-01-11 15:28:28 +11001796error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 xfs_bmap_cancel(&free_list);
Dave Chinnerea562ed2012-05-08 20:48:53 +10001798 xfs_trans_unreserve_quota_nblks(tp, ip, (long)qblocks, 0, quota_flag);
Nathan Scottdd9f4382006-01-11 15:28:28 +11001799
1800error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1802 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001803 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804}
1805
1806/*
1807 * Zero file bytes between startoff and endoff inclusive.
1808 * The iolock is held exclusive and no blocks are buffered.
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001809 *
1810 * This function is used by xfs_free_file_space() to zero
1811 * partial blocks when the range to free is not block aligned.
1812 * When unreserving space with boundaries that are not block
1813 * aligned we round up the start and round down the end
1814 * boundaries and then use this function to zero the parts of
1815 * the blocks that got dropped during the rounding.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 */
1817STATIC int
1818xfs_zero_remaining_bytes(
1819 xfs_inode_t *ip,
1820 xfs_off_t startoff,
1821 xfs_off_t endoff)
1822{
1823 xfs_bmbt_irec_t imap;
1824 xfs_fileoff_t offset_fsb;
1825 xfs_off_t lastoffset;
1826 xfs_off_t offset;
1827 xfs_buf_t *bp;
1828 xfs_mount_t *mp = ip->i_mount;
1829 int nimap;
1830 int error = 0;
1831
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001832 /*
1833 * Avoid doing I/O beyond eof - it's not necessary
1834 * since nothing can read beyond eof. The space will
1835 * be zeroed when the file is extended anyway.
1836 */
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001837 if (startoff >= XFS_ISIZE(ip))
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001838 return 0;
1839
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001840 if (endoff > XFS_ISIZE(ip))
1841 endoff = XFS_ISIZE(ip);
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10001842
Dave Chinner686865f2010-09-24 20:07:47 +10001843 bp = xfs_buf_get_uncached(XFS_IS_REALTIME_INODE(ip) ?
1844 mp->m_rtdev_targp : mp->m_ddev_targp,
Dave Chinneraa5c1582012-04-23 15:58:56 +10001845 BTOBB(mp->m_sb.sb_blocksize), 0);
Lachlan McIlroyc6422612008-12-05 13:16:15 +11001846 if (!bp)
1847 return XFS_ERROR(ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Christoph Hellwigc8da0fa2011-07-08 14:36:25 +02001849 xfs_buf_unlock(bp);
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
1852 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1853 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001854 error = xfs_bmapi_read(ip, offset_fsb, 1, &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 if (error || nimap < 1)
1856 break;
1857 ASSERT(imap.br_blockcount >= 1);
1858 ASSERT(imap.br_startoff == offset_fsb);
1859 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
1860 if (lastoffset > endoff)
1861 lastoffset = endoff;
1862 if (imap.br_startblock == HOLESTARTBLOCK)
1863 continue;
1864 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1865 if (imap.br_state == XFS_EXT_UNWRITTEN)
1866 continue;
1867 XFS_BUF_UNDONE(bp);
1868 XFS_BUF_UNWRITE(bp);
1869 XFS_BUF_READ(bp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06001870 XFS_BUF_SET_ADDR(bp, xfs_fsb_to_db(ip, imap.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001872 error = xfs_buf_iowait(bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10001873 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +00001874 xfs_buf_ioerror_alert(bp,
1875 "xfs_zero_remaining_bytes(read)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 break;
1877 }
Chandra Seetharaman62926042011-07-22 23:40:15 +00001878 memset(bp->b_addr +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
1880 0, lastoffset - offset + 1);
1881 XFS_BUF_UNDONE(bp);
1882 XFS_BUF_UNREAD(bp);
1883 XFS_BUF_WRITE(bp);
1884 xfsbdstrat(mp, bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001885 error = xfs_buf_iowait(bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10001886 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +00001887 xfs_buf_ioerror_alert(bp,
1888 "xfs_zero_remaining_bytes(write)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 break;
1890 }
1891 }
1892 xfs_buf_free(bp);
1893 return error;
1894}
1895
1896/*
1897 * xfs_free_file_space()
1898 * This routine frees disk space for the given file.
1899 *
1900 * This routine is only called by xfs_change_file_space
1901 * for an UNRESVSP type call.
1902 *
1903 * RETURNS:
1904 * 0 on success
1905 * errno on error
1906 *
1907 */
1908STATIC int
1909xfs_free_file_space(
1910 xfs_inode_t *ip,
1911 xfs_off_t offset,
1912 xfs_off_t len,
1913 int attr_flags)
1914{
1915 int committed;
1916 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 xfs_fileoff_t endoffset_fsb;
1918 int error;
1919 xfs_fsblock_t firstfsb;
1920 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 xfs_bmbt_irec_t imap;
1922 xfs_off_t ioffset;
1923 xfs_extlen_t mod=0;
1924 xfs_mount_t *mp;
1925 int nimap;
1926 uint resblks;
Nathan Scott673cdf52006-09-28 10:56:26 +10001927 uint rounding;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 int rt;
1929 xfs_fileoff_t startoffset_fsb;
1930 xfs_trans_t *tp;
Dean Roehrich5fcbab32005-05-05 13:27:19 -07001931 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 mp = ip->i_mount;
1934
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001935 trace_xfs_free_file_space(ip);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10001936
Christoph Hellwig7d095252009-06-08 15:33:32 +02001937 error = xfs_qm_dqattach(ip, 0);
1938 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return error;
1940
1941 error = 0;
1942 if (len <= 0) /* if nothing being freed */
1943 return error;
Eric Sandeen71ddabb2007-11-23 16:29:42 +11001944 rt = XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001946 endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Christoph Hellwig0f285c82008-07-18 17:13:28 +10001948 if (attr_flags & XFS_ATTR_NOLOCK)
Dean Roehrich5fcbab32005-05-05 13:27:19 -07001949 need_iolock = 0;
Yingping Lu9fa80462006-03-22 12:44:35 +11001950 if (need_iolock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwig25e41b32008-12-03 12:20:39 +01001952 /* wait for the completion of any pending DIOs */
Christoph Hellwig4a06fd22011-08-23 08:28:13 +00001953 inode_dio_wait(VFS_I(ip));
Yingping Lu9fa80462006-03-22 12:44:35 +11001954 }
Dean Roehrich5fcbab32005-05-05 13:27:19 -07001955
Tim Shimmine6a4b372007-11-23 16:30:42 +11001956 rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 ioffset = offset & ~(rounding - 1);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10001958
Christoph Hellwigdf80c932008-08-13 16:22:09 +10001959 if (VN_CACHED(VFS_I(ip)) != 0) {
Tim Shimmine6a4b372007-11-23 16:30:42 +11001960 error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001961 if (error)
1962 goto out_unlock_iolock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10001963 }
1964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 /*
1966 * Need to zero the stuff we're not freeing, on disk.
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001967 * If it's a realtime file & can't use unwritten extents then we
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 * actually need to zero the extent edges. Otherwise xfs_bunmapi
1969 * will take care of it for us.
1970 */
Eric Sandeen62118702008-03-06 13:44:28 +11001971 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001973 error = xfs_bmapi_read(ip, startoffset_fsb, 1,
1974 &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 if (error)
1976 goto out_unlock_iolock;
1977 ASSERT(nimap == 0 || nimap == 1);
1978 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1979 xfs_daddr_t block;
1980
1981 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1982 block = imap.br_startblock;
1983 mod = do_div(block, mp->m_sb.sb_rextsize);
1984 if (mod)
1985 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
1986 }
1987 nimap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001988 error = xfs_bmapi_read(ip, endoffset_fsb - 1, 1,
1989 &imap, &nimap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 if (error)
1991 goto out_unlock_iolock;
1992 ASSERT(nimap == 0 || nimap == 1);
1993 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1994 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1995 mod++;
1996 if (mod && (mod != mp->m_sb.sb_rextsize))
1997 endoffset_fsb -= mod;
1998 }
1999 }
2000 if ((done = (endoffset_fsb <= startoffset_fsb)))
2001 /*
2002 * One contiguous piece to clear
2003 */
2004 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
2005 else {
2006 /*
2007 * Some full blocks, possibly two pieces to clear
2008 */
2009 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
2010 error = xfs_zero_remaining_bytes(ip, offset,
2011 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
2012 if (!error &&
2013 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
2014 error = xfs_zero_remaining_bytes(ip,
2015 XFS_FSB_TO_B(mp, endoffset_fsb),
2016 offset + len - 1);
2017 }
2018
2019 /*
2020 * free file space until done or until there is an error
2021 */
2022 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
2023 while (!error && !done) {
2024
2025 /*
David Chinner91ebecc2007-07-19 16:28:30 +10002026 * allocate and setup the transaction. Allow this
2027 * transaction to dip into the reserve blocks to ensure
2028 * the freeing of the space succeeds at ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 */
2030 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
David Chinner91ebecc2007-07-19 16:28:30 +10002031 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 error = xfs_trans_reserve(tp,
2033 resblks,
2034 XFS_WRITE_LOG_RES(mp),
2035 0,
2036 XFS_TRANS_PERM_LOG_RES,
2037 XFS_WRITE_LOG_COUNT);
2038
2039 /*
2040 * check for running out of space
2041 */
2042 if (error) {
2043 /*
2044 * Free the transaction structure.
2045 */
2046 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
2047 xfs_trans_cancel(tp, 0);
2048 break;
2049 }
2050 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002051 error = xfs_trans_reserve_quota(tp, mp,
2052 ip->i_udquot, ip->i_gdquot,
2053 resblks, 0, XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 if (error)
2055 goto error1;
2056
Christoph Hellwigddc34152011-09-19 15:00:54 +00002057 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
2059 /*
2060 * issue the bunmapi() call to free the blocks
2061 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06002062 xfs_bmap_init(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10002063 error = xfs_bunmapi(tp, ip, startoffset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 endoffset_fsb - startoffset_fsb,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002065 0, 2, &firstfsb, &free_list, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 if (error) {
2067 goto error0;
2068 }
2069
2070 /*
2071 * complete the transaction
2072 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002073 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 if (error) {
2075 goto error0;
2076 }
2077
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002078 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2080 }
2081
2082 out_unlock_iolock:
2083 if (need_iolock)
2084 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
2085 return error;
2086
2087 error0:
2088 xfs_bmap_cancel(&free_list);
2089 error1:
2090 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
2091 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
2092 XFS_ILOCK_EXCL);
2093 return error;
2094}
2095
2096/*
2097 * xfs_change_file_space()
2098 * This routine allocates or frees disk space for the given file.
2099 * The user specified parameters are checked for alignment and size
2100 * limitations.
2101 *
2102 * RETURNS:
2103 * 0 on success
2104 * errno on error
2105 *
2106 */
2107int
2108xfs_change_file_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002109 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 int cmd,
2111 xfs_flock64_t *bf,
2112 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 int attr_flags)
2114{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002115 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 int clrprealloc;
2117 int error;
2118 xfs_fsize_t fsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 int setprealloc;
2120 xfs_off_t startoffset;
2121 xfs_off_t llen;
2122 xfs_trans_t *tp;
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002123 struct iattr iattr;
Dave Chinner44722352010-08-24 12:02:11 +10002124 int prealloc_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Christoph Hellwig993386c2007-08-28 16:12:30 +10002126 if (!S_ISREG(ip->i_d.di_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return XFS_ERROR(EINVAL);
2128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 switch (bf->l_whence) {
2130 case 0: /*SEEK_SET*/
2131 break;
2132 case 1: /*SEEK_CUR*/
2133 bf->l_start += offset;
2134 break;
2135 case 2: /*SEEK_END*/
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002136 bf->l_start += XFS_ISIZE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 break;
2138 default:
2139 return XFS_ERROR(EINVAL);
2140 }
2141
2142 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
2143
Dave Chinner32972382012-06-08 15:44:54 +10002144 if (bf->l_start < 0 ||
2145 bf->l_start > mp->m_super->s_maxbytes ||
2146 bf->l_start + llen < 0 ||
2147 bf->l_start + llen > mp->m_super->s_maxbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 return XFS_ERROR(EINVAL);
2149
2150 bf->l_whence = 0;
2151
2152 startoffset = bf->l_start;
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002153 fsize = XFS_ISIZE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
2155 /*
2156 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
2157 * file space.
2158 * These calls do NOT zero the data space allocated to the file,
2159 * nor do they change the file size.
2160 *
2161 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
2162 * space.
2163 * These calls cause the new file data to be zeroed and the file
2164 * size to be changed.
2165 */
2166 setprealloc = clrprealloc = 0;
Dave Chinner44722352010-08-24 12:02:11 +10002167 prealloc_type = XFS_BMAPI_PREALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
2169 switch (cmd) {
Dave Chinner44722352010-08-24 12:02:11 +10002170 case XFS_IOC_ZERO_RANGE:
2171 prealloc_type |= XFS_BMAPI_CONVERT;
2172 xfs_tosspages(ip, startoffset, startoffset + bf->l_len, 0);
2173 /* FALLTHRU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 case XFS_IOC_RESVSP:
2175 case XFS_IOC_RESVSP64:
2176 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
Dave Chinner44722352010-08-24 12:02:11 +10002177 prealloc_type, attr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 if (error)
2179 return error;
2180 setprealloc = 1;
2181 break;
2182
2183 case XFS_IOC_UNRESVSP:
2184 case XFS_IOC_UNRESVSP64:
2185 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
2186 attr_flags)))
2187 return error;
2188 break;
2189
2190 case XFS_IOC_ALLOCSP:
2191 case XFS_IOC_ALLOCSP64:
2192 case XFS_IOC_FREESP:
2193 case XFS_IOC_FREESP64:
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002194 /*
2195 * These operations actually do IO when extending the file, but
2196 * the allocation is done seperately to the zeroing that is
2197 * done. This set of operations need to be serialised against
2198 * other IO operations, such as truncate and buffered IO. We
2199 * need to take the IOLOCK here to serialise the allocation and
2200 * zeroing IO to prevent other IOLOCK holders (e.g. getbmap,
2201 * truncate, direct IO) from racing against the transient
2202 * allocated but not written state we can have here.
2203 */
2204 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 if (startoffset > fsize) {
2206 error = xfs_alloc_file_space(ip, fsize,
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002207 startoffset - fsize, 0,
2208 attr_flags | XFS_ATTR_NOLOCK);
2209 if (error) {
2210 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 break;
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 }
2214
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002215 iattr.ia_valid = ATTR_SIZE;
2216 iattr.ia_size = startoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Dave Chinnerbc4010ec2012-04-23 15:58:57 +10002218 error = xfs_setattr_size(ip, &iattr,
2219 attr_flags | XFS_ATTR_NOLOCK);
2220 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222 if (error)
2223 return error;
2224
2225 clrprealloc = 1;
2226 break;
2227
2228 default:
2229 ASSERT(0);
2230 return XFS_ERROR(EINVAL);
2231 }
2232
2233 /*
2234 * update the inode timestamp, mode, and prealloc flag bits
2235 */
2236 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
2237
2238 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
2239 0, 0, 0))) {
2240 /* ASSERT(0); */
2241 xfs_trans_cancel(tp, 0);
2242 return error;
2243 }
2244
2245 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +00002246 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002248 if ((attr_flags & XFS_ATTR_DMI) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 ip->i_d.di_mode &= ~S_ISUID;
2250
2251 /*
2252 * Note that we don't have to worry about mandatory
2253 * file locking being disabled here because we only
2254 * clear the S_ISGID bit if the Group execute bit is
2255 * on, but if it was on then mandatory locking wouldn't
2256 * have been enabled.
2257 */
2258 if (ip->i_d.di_mode & S_IXGRP)
2259 ip->i_d.di_mode &= ~S_ISGID;
2260
Dave Chinnerdcd79a12010-09-28 12:27:25 +10002261 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 }
2263 if (setprealloc)
2264 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
2265 else if (clrprealloc)
2266 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
2267
2268 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Dave Chinner82878892011-03-26 09:13:08 +11002269 if (attr_flags & XFS_ATTR_SYNC)
2270 xfs_trans_set_sync(tp);
Christoph Hellwig23bb0be2011-09-18 20:47:51 +00002271 return xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272}