blob: 3ac137dd531bb5481b5ec04ef085de3a6506878d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_trans.h"
26#include "xfs_sb.h"
27#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
32#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_dinode.h"
34#include "xfs_inode.h"
35#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_ialloc.h"
38#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_bmap.h"
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020040#include "xfs_acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_attr.h"
42#include "xfs_rw.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include "xfs_quota.h"
45#include "xfs_utils.h"
Nathan Scotta844f452005-11-02 14:38:42 +110046#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include "xfs_trans_space.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include "xfs_log_priv.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100049#include "xfs_filestream.h"
Christoph Hellwig993386c2007-08-28 16:12:30 +100050#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000051#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Christoph Hellwig993386c2007-08-28 16:12:30 +100053int
Linus Torvalds1da177e2005-04-16 15:20:36 -070054xfs_setattr(
Christoph Hellwig0f285c82008-07-18 17:13:28 +100055 struct xfs_inode *ip,
56 struct iattr *iattr,
Christoph Hellwigea5a3dc82008-10-30 18:27:48 +110057 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Christoph Hellwig993386c2007-08-28 16:12:30 +100059 xfs_mount_t *mp = ip->i_mount;
David Chinnere4f75292008-08-13 16:00:45 +100060 struct inode *inode = VFS_I(ip);
Christoph Hellwig0f285c82008-07-18 17:13:28 +100061 int mask = iattr->ia_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 int code;
64 uint lock_flags;
65 uint commit_flags=0;
66 uid_t uid=0, iuid=0;
67 gid_t gid=0, igid=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 struct xfs_dquot *udqp, *gdqp, *olddquot1, *olddquot2;
Dean Roehrich5fcbab32005-05-05 13:27:19 -070069 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Christoph Hellwigcca28fb2010-06-24 11:57:09 +100071 trace_xfs_setattr(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Christoph Hellwigbd186aa2007-08-30 17:21:12 +100073 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return XFS_ERROR(EROFS);
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (XFS_FORCED_SHUTDOWN(mp))
77 return XFS_ERROR(EIO);
78
Christoph Hellwigc4cd7472008-12-09 04:47:34 -050079 code = -inode_change_ok(inode, iattr);
80 if (code)
81 return code;
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 olddquot1 = olddquot2 = NULL;
84 udqp = gdqp = NULL;
85
86 /*
87 * If disk quotas is on, we make sure that the dquots do exist on disk,
88 * before we start any other transactions. Trying to do this later
89 * is messy. We don't care to take a readlock to look at the ids
90 * in inode here, because we can't hold it across the trans_reserve.
91 * If the IDs do change before we take the ilock, we're covered
92 * because the i_*dquot fields will get updated anyway.
93 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +100094 if (XFS_IS_QUOTA_ON(mp) && (mask & (ATTR_UID|ATTR_GID))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 uint qflags = 0;
96
Christoph Hellwig0f285c82008-07-18 17:13:28 +100097 if ((mask & ATTR_UID) && XFS_IS_UQUOTA_ON(mp)) {
98 uid = iattr->ia_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 qflags |= XFS_QMOPT_UQUOTA;
100 } else {
101 uid = ip->i_d.di_uid;
102 }
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000103 if ((mask & ATTR_GID) && XFS_IS_GQUOTA_ON(mp)) {
104 gid = iattr->ia_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 qflags |= XFS_QMOPT_GQUOTA;
106 } else {
107 gid = ip->i_d.di_gid;
108 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 /*
111 * We take a reference when we initialize udqp and gdqp,
112 * so it is important that we never blindly double trip on
113 * the same variable. See xfs_create() for an example.
114 */
115 ASSERT(udqp == NULL);
116 ASSERT(gdqp == NULL);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200117 code = xfs_qm_vop_dqalloc(ip, uid, gid, ip->i_d.di_projid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000118 qflags, &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (code)
Jesper Juhl014c2542006-01-15 02:37:08 +0100120 return code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122
123 /*
124 * For the other attributes, we acquire the inode lock and
125 * first do an error checking pass.
126 */
127 tp = NULL;
128 lock_flags = XFS_ILOCK_EXCL;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000129 if (flags & XFS_ATTR_NOLOCK)
Dean Roehrich5fcbab32005-05-05 13:27:19 -0700130 need_iolock = 0;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000131 if (!(mask & ATTR_SIZE)) {
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000132 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
133 commit_flags = 0;
134 code = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES(mp),
135 0, 0, 0);
136 if (code) {
137 lock_flags = 0;
138 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (need_iolock)
142 lock_flags |= XFS_IOLOCK_EXCL;
143 }
144
145 xfs_ilock(ip, lock_flags);
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /*
148 * Change file ownership. Must be the owner or privileged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000150 if (mask & (ATTR_UID|ATTR_GID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 /*
152 * These IDs could have changed since we last looked at them.
153 * But, we're assured that if the ownership did change
154 * while we didn't have the inode locked, inode's dquot(s)
155 * would have changed also.
156 */
157 iuid = ip->i_d.di_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 igid = ip->i_d.di_gid;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000159 gid = (mask & ATTR_GID) ? iattr->ia_gid : igid;
160 uid = (mask & ATTR_UID) ? iattr->ia_uid : iuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000163 * Do a quota reservation only if uid/gid is actually
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 * going to change.
165 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200166 if (XFS_IS_QUOTA_RUNNING(mp) &&
167 ((XFS_IS_UQUOTA_ON(mp) && iuid != uid) ||
168 (XFS_IS_GQUOTA_ON(mp) && igid != gid))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 ASSERT(tp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200170 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, gdqp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 capable(CAP_FOWNER) ?
172 XFS_QMOPT_FORCE_RES : 0);
173 if (code) /* out of quota */
174 goto error_return;
175 }
176 }
177
178 /*
179 * Truncate file. Must have write permission and not be a directory.
180 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000181 if (mask & ATTR_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /* Short circuit the truncate case for zero length files */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000183 if (iattr->ia_size == 0 &&
184 ip->i_size == 0 && ip->i_d.di_nextents == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 xfs_iunlock(ip, XFS_ILOCK_EXCL);
186 lock_flags &= ~XFS_ILOCK_EXCL;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000187 if (mask & ATTR_CTIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
189 code = 0;
190 goto error_return;
191 }
192
Christoph Hellwig42173f62008-04-22 17:33:25 +1000193 if (S_ISDIR(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 code = XFS_ERROR(EISDIR);
195 goto error_return;
Christoph Hellwig42173f62008-04-22 17:33:25 +1000196 } else if (!S_ISREG(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 code = XFS_ERROR(EINVAL);
198 goto error_return;
199 }
Christoph Hellwigc4cd7472008-12-09 04:47:34 -0500200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /*
202 * Make sure that the dquots are attached to the inode.
203 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200204 code = xfs_qm_dqattach_locked(ip, 0);
Christoph Hellwigc4cd7472008-12-09 04:47:34 -0500205 if (code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Christoph Hellwigc4cd7472008-12-09 04:47:34 -0500208 /*
209 * Now we can make the changes. Before we join the inode
210 * to the transaction, if ATTR_SIZE is set then take care of
211 * the part of the truncation that must be done without the
212 * inode lock. This needs to be done before joining the inode
213 * to the transaction, because the inode cannot be unlocked
214 * once it is a part of the transaction.
215 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000216 if (iattr->ia_size > ip->i_size) {
Christoph Hellwig61436fe2008-05-20 11:30:46 +1000217 /*
218 * Do the first part of growing a file: zero any data
219 * in the last block that is beyond the old EOF. We
220 * need to do this before the inode is joined to the
221 * transaction to modify the i_size.
222 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000223 code = xfs_zero_eof(ip, iattr->ia_size, ip->i_size);
Eric Sandeen374e2ac2005-11-02 15:07:34 +1100224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 xfs_iunlock(ip, XFS_ILOCK_EXCL);
David Chinnerc32676e2007-07-19 16:28:58 +1000226
227 /*
228 * We are going to log the inode size change in this
229 * transaction so any previous writes that are beyond the on
230 * disk EOF and the new EOF that have not been written out need
231 * to be written here. If we do not write the data out, we
232 * expose ourselves to the null files problem.
233 *
234 * Only flush from the on disk size to the smaller of the in
235 * memory file size or the new size as that's the range we
236 * really care about here and prevents waiting for other data
237 * not within the range we care about here.
238 */
239 if (!code &&
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000240 ip->i_size != ip->i_d.di_size &&
241 iattr->ia_size > ip->i_d.di_size) {
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000242 code = xfs_flush_pages(ip,
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000243 ip->i_d.di_size, iattr->ia_size,
Christoph Hellwig0cadda12010-01-19 09:56:44 +0000244 XBF_ASYNC, FI_NONE);
David Chinnerc32676e2007-07-19 16:28:58 +1000245 }
246
247 /* wait for all I/O to complete */
Christoph Hellwig25e41b32008-12-03 12:20:39 +0100248 xfs_ioend_wait(ip);
David Chinnerc32676e2007-07-19 16:28:58 +1000249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (!code)
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000251 code = xfs_itruncate_data(ip, iattr->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (code) {
253 ASSERT(tp == NULL);
254 lock_flags &= ~XFS_ILOCK_EXCL;
Dave Chinner07f1a4f2010-05-21 05:47:59 +0000255 ASSERT(lock_flags == XFS_IOLOCK_EXCL || !need_iolock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 goto error_return;
257 }
258 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_SIZE);
259 if ((code = xfs_trans_reserve(tp, 0,
260 XFS_ITRUNCATE_LOG_RES(mp), 0,
261 XFS_TRANS_PERM_LOG_RES,
262 XFS_ITRUNCATE_LOG_COUNT))) {
263 xfs_trans_cancel(tp, 0);
264 if (need_iolock)
265 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
266 return code;
267 }
268 commit_flags = XFS_TRANS_RELEASE_LOG_RES;
269 xfs_ilock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Christoph Hellwig898621d2010-06-24 11:36:58 +1000271 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
David Chinner44d814c2008-03-06 13:45:29 +1100273 /*
274 * Only change the c/mtime if we are changing the size
275 * or we are explicitly asked to change it. This handles
276 * the semantic difference between truncate() and ftruncate()
277 * as implemented in the VFS.
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000278 *
279 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME
280 * is a special case where we need to update the times despite
281 * not having these flags set. For all other operations the
282 * VFS set these flags explicitly if it wants a timestamp
283 * update.
David Chinner44d814c2008-03-06 13:45:29 +1100284 */
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000285 if (iattr->ia_size != ip->i_size &&
286 (!(mask & (ATTR_CTIME | ATTR_MTIME)))) {
287 iattr->ia_ctime = iattr->ia_mtime =
288 current_fs_time(inode->i_sb);
289 mask |= ATTR_CTIME | ATTR_MTIME;
290 }
David Chinner44d814c2008-03-06 13:45:29 +1100291
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000292 if (iattr->ia_size > ip->i_size) {
293 ip->i_d.di_size = iattr->ia_size;
294 ip->i_size = iattr->ia_size;
Christoph Hellwig61436fe2008-05-20 11:30:46 +1000295 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000296 } else if (iattr->ia_size <= ip->i_size ||
297 (iattr->ia_size == 0 && ip->i_d.di_nextents)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 /*
299 * signal a sync transaction unless
300 * we're truncating an already unlinked
301 * file on a wsync filesystem
302 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000303 code = xfs_itruncate_finish(&tp, ip, iattr->ia_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 XFS_DATA_FORK,
305 ((ip->i_d.di_nlink != 0 ||
306 !(mp->m_flags & XFS_MOUNT_WSYNC))
307 ? 1 : 0));
Nathan Scott7d4fb402006-06-09 15:27:16 +1000308 if (code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 goto abort_return;
Nathan Scott7d4fb402006-06-09 15:27:16 +1000310 /*
311 * Truncated "down", so we're removing references
312 * to old data here - if we now delay flushing for
313 * a long time, we expose ourselves unduly to the
314 * notorious NULL files problem. So, we mark this
315 * vnode and flush it when the file is closed, and
316 * do not wait the usual (long) time for writeout.
317 */
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000318 xfs_iflags_set(ip, XFS_ITRUNCATED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
Christoph Hellwigc4cd7472008-12-09 04:47:34 -0500320 } else if (tp) {
Christoph Hellwig898621d2010-06-24 11:36:58 +1000321 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323
324 /*
325 * Change file ownership. Must be the owner or privileged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000327 if (mask & (ATTR_UID|ATTR_GID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 /*
329 * CAP_FSETID overrides the following restrictions:
330 *
331 * The set-user-ID and set-group-ID bits of a file will be
332 * cleared upon successful return from chown()
333 */
334 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
335 !capable(CAP_FSETID)) {
336 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
337 }
338
339 /*
340 * Change the ownerships and register quota modifications
341 * in the transaction.
342 */
343 if (iuid != uid) {
Christoph Hellwig7d095252009-06-08 15:33:32 +0200344 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_UQUOTA_ON(mp)) {
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000345 ASSERT(mask & ATTR_UID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 ASSERT(udqp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200347 olddquot1 = xfs_qm_vop_chown(tp, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 &ip->i_udquot, udqp);
349 }
350 ip->i_d.di_uid = uid;
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000351 inode->i_uid = uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353 if (igid != gid) {
Christoph Hellwig7d095252009-06-08 15:33:32 +0200354 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_GQUOTA_ON(mp)) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000355 ASSERT(!XFS_IS_PQUOTA_ON(mp));
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000356 ASSERT(mask & ATTR_GID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 ASSERT(gdqp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200358 olddquot2 = xfs_qm_vop_chown(tp, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 &ip->i_gdquot, gdqp);
360 }
361 ip->i_d.di_gid = gid;
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000362 inode->i_gid = gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365
Christoph Hellwigc4cd7472008-12-09 04:47:34 -0500366 /*
367 * Change file access modes.
368 */
369 if (mask & ATTR_MODE) {
370 umode_t mode = iattr->ia_mode;
371
372 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
373 mode &= ~S_ISGID;
374
375 ip->i_d.di_mode &= S_IFMT;
376 ip->i_d.di_mode |= mode & ~S_IFMT;
377
378 inode->i_mode &= S_IFMT;
379 inode->i_mode |= mode & ~S_IFMT;
Christoph Hellwigc4cd7472008-12-09 04:47:34 -0500380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 /*
383 * Change file access or modified times.
384 */
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000385 if (mask & ATTR_ATIME) {
386 inode->i_atime = iattr->ia_atime;
387 ip->i_d.di_atime.t_sec = iattr->ia_atime.tv_sec;
388 ip->i_d.di_atime.t_nsec = iattr->ia_atime.tv_nsec;
389 ip->i_update_core = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000391 if (mask & ATTR_CTIME) {
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000392 inode->i_ctime = iattr->ia_ctime;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000393 ip->i_d.di_ctime.t_sec = iattr->ia_ctime.tv_sec;
394 ip->i_d.di_ctime.t_nsec = iattr->ia_ctime.tv_nsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 ip->i_update_core = 1;
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000396 }
397 if (mask & ATTR_MTIME) {
398 inode->i_mtime = iattr->ia_mtime;
399 ip->i_d.di_mtime.t_sec = iattr->ia_mtime.tv_sec;
400 ip->i_d.di_mtime.t_nsec = iattr->ia_mtime.tv_nsec;
401 ip->i_update_core = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403
404 /*
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000405 * And finally, log the inode core if any attribute in it
406 * has been changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 */
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000408 if (mask & (ATTR_UID|ATTR_GID|ATTR_MODE|
409 ATTR_ATIME|ATTR_CTIME|ATTR_MTIME))
410 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 XFS_STATS_INC(xs_ig_attrchg);
413
414 /*
415 * If this is a synchronous mount, make sure that the
416 * transaction goes to disk before returning to the user.
417 * This is slightly sub-optimal in that truncates require
Nathan Scottc41564b2006-03-29 08:55:14 +1000418 * two sync transactions instead of one for wsync filesystems.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 * One for the truncate and one for the timestamps since we
420 * don't want to change the timestamps unless we're sure the
421 * truncate worked. Truncates are less than 1% of the laddis
422 * mix so this probably isn't worth the trouble to optimize.
423 */
424 code = 0;
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000425 if (mp->m_flags & XFS_MOUNT_WSYNC)
426 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000428 code = xfs_trans_commit(tp, commit_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 xfs_iunlock(ip, lock_flags);
431
432 /*
433 * Release any dquot(s) the inode had kept before chown.
434 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200435 xfs_qm_dqrele(olddquot1);
436 xfs_qm_dqrele(olddquot2);
437 xfs_qm_dqrele(udqp);
438 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200440 if (code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return code;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200442
443 /*
444 * XXX(hch): Updating the ACL entries is not atomic vs the i_mode
445 * update. We could avoid this with linked transactions
446 * and passing down the transaction pointer all the way
447 * to attr_set. No previous user of the generic
448 * Posix ACL code seems to care about this issue either.
449 */
450 if ((mask & ATTR_MODE) && !(flags & XFS_ATTR_NOACL)) {
451 code = -xfs_acl_chmod(inode);
452 if (code)
453 return XFS_ERROR(code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return 0;
457
458 abort_return:
459 commit_flags |= XFS_TRANS_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 error_return:
Christoph Hellwig7d095252009-06-08 15:33:32 +0200461 xfs_qm_dqrele(udqp);
462 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (tp) {
464 xfs_trans_cancel(tp, commit_flags);
465 }
466 if (lock_flags != 0) {
467 xfs_iunlock(ip, lock_flags);
468 }
469 return code;
470}
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472/*
Nathan Scott7d4fb402006-06-09 15:27:16 +1000473 * The maximum pathlen is 1024 bytes. Since the minimum file system
474 * blocksize is 512 bytes, we can get a max of 2 extents back from
475 * bmapi.
476 */
477#define SYMLINK_MAPS 2
478
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000479STATIC int
480xfs_readlink_bmap(
481 xfs_inode_t *ip,
482 char *link)
483{
484 xfs_mount_t *mp = ip->i_mount;
485 int pathlen = ip->i_d.di_size;
486 int nmaps = SYMLINK_MAPS;
487 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
488 xfs_daddr_t d;
489 int byte_cnt;
490 int n;
491 xfs_buf_t *bp;
492 int error = 0;
493
494 error = xfs_bmapi(NULL, ip, 0, XFS_B_TO_FSB(mp, pathlen), 0, NULL, 0,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000495 mval, &nmaps, NULL);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000496 if (error)
497 goto out;
498
499 for (n = 0; n < nmaps; n++) {
500 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
501 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
502
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000503 bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt),
504 XBF_LOCK | XBF_MAPPED | XBF_DONT_BLOCK);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000505 error = XFS_BUF_GETERROR(bp);
506 if (error) {
507 xfs_ioerror_alert("xfs_readlink",
508 ip->i_mount, bp, XFS_BUF_ADDR(bp));
509 xfs_buf_relse(bp);
510 goto out;
511 }
512 if (pathlen < byte_cnt)
513 byte_cnt = pathlen;
514 pathlen -= byte_cnt;
515
516 memcpy(link, XFS_BUF_PTR(bp), byte_cnt);
517 xfs_buf_relse(bp);
518 }
519
520 link[ip->i_d.di_size] = '\0';
521 error = 0;
522
523 out:
524 return error;
525}
526
Christoph Hellwig993386c2007-08-28 16:12:30 +1000527int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528xfs_readlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000529 xfs_inode_t *ip,
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000530 char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000532 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000536 trace_xfs_readlink(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 if (XFS_FORCED_SHUTDOWN(mp))
539 return XFS_ERROR(EIO);
540
541 xfs_ilock(ip, XFS_ILOCK_SHARED);
542
543 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFLNK);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000544 ASSERT(ip->i_d.di_size <= MAXPATHLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000546 pathlen = ip->i_d.di_size;
547 if (!pathlen)
548 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 if (ip->i_df.if_flags & XFS_IFINLINE) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000551 memcpy(link, ip->i_df.if_u1.if_data, pathlen);
552 link[pathlen] = '\0';
553 } else {
554 error = xfs_readlink_bmap(ip, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000557 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return error;
560}
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562/*
Christoph Hellwigc56c9632009-10-19 04:03:46 +0000563 * Flags for xfs_free_eofblocks
564 */
565#define XFS_FREE_EOF_TRYLOCK (1<<0)
566
567/*
David Chinner92dfe8d2007-05-24 15:22:19 +1000568 * This is called by xfs_inactive to free any blocks beyond eof
569 * when the link count isn't zero and by xfs_dm_punch_hole() when
570 * punching a hole to EOF.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 */
Eric Sandeend96f8f82009-07-02 00:09:33 -0500572STATIC int
David Chinner92dfe8d2007-05-24 15:22:19 +1000573xfs_free_eofblocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 xfs_mount_t *mp,
David Chinner92dfe8d2007-05-24 15:22:19 +1000575 xfs_inode_t *ip,
576 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
578 xfs_trans_t *tp;
579 int error;
580 xfs_fileoff_t end_fsb;
581 xfs_fileoff_t last_fsb;
582 xfs_filblks_t map_len;
583 int nimaps;
584 xfs_bmbt_irec_t imap;
585
586 /*
587 * Figure out if there are any blocks beyond the end
588 * of the file. If not, then there is nothing to do.
589 */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000590 end_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)ip->i_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 last_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
Kulikov Vasiliy3f348852010-07-20 17:54:28 +1000592 if (last_fsb <= end_fsb)
Jesper Juhl014c2542006-01-15 02:37:08 +0100593 return 0;
Kulikov Vasiliy3f348852010-07-20 17:54:28 +1000594 map_len = last_fsb - end_fsb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 nimaps = 1;
597 xfs_ilock(ip, XFS_ILOCK_SHARED);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000598 error = xfs_bmapi(NULL, ip, end_fsb, map_len, 0,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000599 NULL, 0, &imap, &nimaps, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 xfs_iunlock(ip, XFS_ILOCK_SHARED);
601
602 if (!error && (nimaps != 0) &&
Yingping Lu68bdb6e2006-01-11 15:38:31 +1100603 (imap.br_startblock != HOLESTARTBLOCK ||
604 ip->i_delayed_blks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 /*
606 * Attach the dquots to the inode up front.
607 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200608 error = xfs_qm_dqattach(ip, 0);
609 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100610 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 /*
613 * There are blocks after the end of file.
614 * Free them up now by truncating the file to
615 * its current size.
616 */
617 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
618
619 /*
620 * Do the xfs_itruncate_start() call before
621 * reserving any log space because
622 * itruncate_start will call into the buffer
623 * cache and we can't
624 * do that within a transaction.
625 */
Christoph Hellwigc56c9632009-10-19 04:03:46 +0000626 if (flags & XFS_FREE_EOF_TRYLOCK) {
627 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
628 xfs_trans_cancel(tp, 0);
629 return 0;
630 }
631 } else {
David Chinner92dfe8d2007-05-24 15:22:19 +1000632 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigc56c9632009-10-19 04:03:46 +0000633 }
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +1000634 error = xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE,
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000635 ip->i_size);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +1000636 if (error) {
Jesper Juhl87ae3c22007-06-28 16:43:14 +1000637 xfs_trans_cancel(tp, 0);
Christoph Hellwigc56c9632009-10-19 04:03:46 +0000638 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +1000639 return error;
640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 error = xfs_trans_reserve(tp, 0,
643 XFS_ITRUNCATE_LOG_RES(mp),
644 0, XFS_TRANS_PERM_LOG_RES,
645 XFS_ITRUNCATE_LOG_COUNT);
646 if (error) {
647 ASSERT(XFS_FORCED_SHUTDOWN(mp));
648 xfs_trans_cancel(tp, 0);
649 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100650 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652
653 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig898621d2010-06-24 11:36:58 +1000654 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 error = xfs_itruncate_finish(&tp, ip,
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000657 ip->i_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 XFS_DATA_FORK,
659 0);
660 /*
661 * If we get an error at this point we
662 * simply don't bother truncating the file.
663 */
664 if (error) {
665 xfs_trans_cancel(tp,
666 (XFS_TRANS_RELEASE_LOG_RES |
667 XFS_TRANS_ABORT));
668 } else {
669 error = xfs_trans_commit(tp,
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000670 XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
Christoph Hellwigc56c9632009-10-19 04:03:46 +0000672 xfs_iunlock(ip, XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100674 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
677/*
678 * Free a symlink that has blocks associated with it.
679 */
680STATIC int
681xfs_inactive_symlink_rmt(
682 xfs_inode_t *ip,
683 xfs_trans_t **tpp)
684{
685 xfs_buf_t *bp;
686 int committed;
687 int done;
688 int error;
689 xfs_fsblock_t first_block;
690 xfs_bmap_free_t free_list;
691 int i;
692 xfs_mount_t *mp;
693 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
694 int nmaps;
695 xfs_trans_t *ntp;
696 int size;
697 xfs_trans_t *tp;
698
699 tp = *tpp;
700 mp = ip->i_mount;
701 ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip));
702 /*
703 * We're freeing a symlink that has some
704 * blocks allocated to it. Free the
705 * blocks here. We know that we've got
706 * either 1 or 2 extents and that we can
707 * free them all in one bunmapi call.
708 */
709 ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
710 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
711 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
712 ASSERT(XFS_FORCED_SHUTDOWN(mp));
713 xfs_trans_cancel(tp, 0);
714 *tpp = NULL;
715 return error;
716 }
717 /*
718 * Lock the inode, fix the size, and join it to the transaction.
719 * Hold it so in the normal path, we still have it locked for
720 * the second transaction. In the error paths we need it
721 * held so the cancel won't rele it, see below.
722 */
723 xfs_ilock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
724 size = (int)ip->i_d.di_size;
725 ip->i_d.di_size = 0;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000726 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
728 /*
729 * Find the block(s) so we can inval and unmap them.
730 */
731 done = 0;
Eric Sandeen9d87c312009-01-14 23:22:07 -0600732 xfs_bmap_init(&free_list, &first_block);
Tobias Klausere8c96f82006-03-24 03:15:34 -0800733 nmaps = ARRAY_SIZE(mval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if ((error = xfs_bmapi(tp, ip, 0, XFS_B_TO_FSB(mp, size),
735 XFS_BMAPI_METADATA, &first_block, 0, mval, &nmaps,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000736 &free_list)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 goto error0;
738 /*
739 * Invalidate the block(s).
740 */
741 for (i = 0; i < nmaps; i++) {
742 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
743 XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
744 XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
745 xfs_trans_binval(tp, bp);
746 }
747 /*
748 * Unmap the dead block(s) to the free_list.
749 */
750 if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000751 &first_block, &free_list, &done)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 goto error1;
753 ASSERT(done);
754 /*
755 * Commit the first transaction. This logs the EFI and the inode.
756 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100757 if ((error = xfs_bmap_finish(&tp, &free_list, &committed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 goto error1;
759 /*
760 * The transaction must have been committed, since there were
761 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
762 * The new tp has the extent freeing and EFDs.
763 */
764 ASSERT(committed);
765 /*
766 * The first xact was committed, so add the inode to the new one.
767 * Mark it dirty so it will be logged and moved forward in the log as
768 * part of every commit.
769 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000770 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
772 /*
773 * Get a new, empty transaction to return to our caller.
774 */
775 ntp = xfs_trans_dup(tp);
776 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000777 * Commit the transaction containing extent freeing and EFDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 * If we get an error on the commit here or on the reserve below,
779 * we need to unlock the inode since the new transaction doesn't
780 * have the inode attached.
781 */
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000782 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 tp = ntp;
784 if (error) {
785 ASSERT(XFS_FORCED_SHUTDOWN(mp));
786 goto error0;
787 }
788 /*
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100789 * transaction commit worked ok so we can drop the extra ticket
790 * reference that we gained in xfs_trans_dup()
791 */
792 xfs_log_ticket_put(tp->t_ticket);
793
794 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 * Remove the memory for extent descriptions (just bookkeeping).
796 */
797 if (ip->i_df.if_bytes)
798 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
799 ASSERT(ip->i_df.if_bytes == 0);
800 /*
801 * Put an itruncate log reservation in the new transaction
802 * for our caller.
803 */
804 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
805 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
806 ASSERT(XFS_FORCED_SHUTDOWN(mp));
807 goto error0;
808 }
809 /*
810 * Return with the inode locked but not joined to the transaction.
811 */
812 *tpp = tp;
813 return 0;
814
815 error1:
816 xfs_bmap_cancel(&free_list);
817 error0:
818 /*
819 * Have to come here with the inode locked and either
820 * (held and in the transaction) or (not in the transaction).
821 * If the inode isn't held then cancel would iput it, but
822 * that's wrong since this is inactive and the vnode ref
823 * count is 0 already.
824 * Cancel won't do anything to the inode if held, but it still
825 * needs to be locked until the cancel is done, if it was
826 * joined to the transaction.
827 */
828 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
829 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
830 *tpp = NULL;
831 return error;
832
833}
834
835STATIC int
836xfs_inactive_symlink_local(
837 xfs_inode_t *ip,
838 xfs_trans_t **tpp)
839{
840 int error;
841
842 ASSERT(ip->i_d.di_size <= XFS_IFORK_DSIZE(ip));
843 /*
844 * We're freeing a symlink which fit into
845 * the inode. Just free the memory used
846 * to hold the old symlink.
847 */
848 error = xfs_trans_reserve(*tpp, 0,
849 XFS_ITRUNCATE_LOG_RES(ip->i_mount),
850 0, XFS_TRANS_PERM_LOG_RES,
851 XFS_ITRUNCATE_LOG_COUNT);
852
853 if (error) {
854 xfs_trans_cancel(*tpp, 0);
855 *tpp = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +0100856 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
859
860 /*
861 * Zero length symlinks _can_ exist.
862 */
863 if (ip->i_df.if_bytes > 0) {
864 xfs_idata_realloc(ip,
865 -(ip->i_df.if_bytes),
866 XFS_DATA_FORK);
867 ASSERT(ip->i_df.if_bytes == 0);
868 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100869 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872STATIC int
873xfs_inactive_attrs(
874 xfs_inode_t *ip,
875 xfs_trans_t **tpp)
876{
877 xfs_trans_t *tp;
878 int error;
879 xfs_mount_t *mp;
880
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000881 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 tp = *tpp;
883 mp = ip->i_mount;
884 ASSERT(ip->i_d.di_forkoff != 0);
David Chinnere5720ee2008-04-10 12:21:18 +1000885 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 xfs_iunlock(ip, XFS_ILOCK_EXCL);
David Chinnere5720ee2008-04-10 12:21:18 +1000887 if (error)
888 goto error_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 error = xfs_attr_inactive(ip);
David Chinnere5720ee2008-04-10 12:21:18 +1000891 if (error)
892 goto error_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
895 error = xfs_trans_reserve(tp, 0,
896 XFS_IFREE_LOG_RES(mp),
897 0, XFS_TRANS_PERM_LOG_RES,
898 XFS_INACTIVE_LOG_COUNT);
David Chinnere5720ee2008-04-10 12:21:18 +1000899 if (error)
900 goto error_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig898621d2010-06-24 11:36:58 +1000903 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
905
906 ASSERT(ip->i_d.di_anextents == 0);
907
908 *tpp = tp;
Jesper Juhl014c2542006-01-15 02:37:08 +0100909 return 0;
David Chinnere5720ee2008-04-10 12:21:18 +1000910
911error_cancel:
912 ASSERT(XFS_FORCED_SHUTDOWN(mp));
913 xfs_trans_cancel(tp, 0);
914error_unlock:
915 *tpp = NULL;
916 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
917 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919
Christoph Hellwig993386c2007-08-28 16:12:30 +1000920int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921xfs_release(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000922 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Christoph Hellwig993386c2007-08-28 16:12:30 +1000924 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 int error;
926
Christoph Hellwig42173f62008-04-22 17:33:25 +1000927 if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000931 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return 0;
933
David Chinner2a82b8b2007-07-11 11:09:12 +1000934 if (!XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000935 int truncated;
936
David Chinner2a82b8b2007-07-11 11:09:12 +1000937 /*
938 * If we are using filestreams, and we have an unlinked
939 * file that we are processing the last close on, then nothing
940 * will be able to reopen and write to this file. Purge this
941 * inode from the filestreams cache so that it doesn't delay
942 * teardown of the inode.
943 */
944 if ((ip->i_d.di_nlink == 0) && xfs_inode_is_filestream(ip))
945 xfs_filestream_deassociate(ip);
946
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000947 /*
948 * If we previously truncated this file and removed old data
949 * in the process, we want to initiate "early" writeout on
950 * the last close. This is an attempt to combat the notorious
951 * NULL files problem which is particularly noticable from a
952 * truncate down, buffered (re-)write (delalloc), followed by
953 * a crash. What we are effectively doing here is
954 * significantly reducing the time window where we'd otherwise
955 * be exposed to that problem.
956 */
Christoph Hellwig09262b42007-08-29 11:44:50 +1000957 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000958 if (truncated && VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0)
Christoph Hellwig0cadda12010-01-19 09:56:44 +0000959 xfs_flush_pages(ip, 0, -1, XBF_ASYNC, FI_NONE);
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +1000960 }
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (ip->i_d.di_nlink != 0) {
963 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000964 ((ip->i_size > 0) || (VN_CACHED(VFS_I(ip)) > 0 ||
Yingping Lu68bdb6e2006-01-11 15:38:31 +1100965 ip->i_delayed_blks > 0)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
Nathan Scottdd9f4382006-01-11 15:28:28 +1100967 (!(ip->i_d.di_flags &
968 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)))) {
Christoph Hellwigc56c9632009-10-19 04:03:46 +0000969
970 /*
971 * If we can't get the iolock just skip truncating
972 * the blocks past EOF because we could deadlock
973 * with the mmap_sem otherwise. We'll get another
974 * chance to drop them once the last reference to
975 * the inode is dropped, so we'll never leak blocks
976 * permanently.
977 */
978 error = xfs_free_eofblocks(mp, ip,
979 XFS_FREE_EOF_TRYLOCK);
David Chinner92dfe8d2007-05-24 15:22:19 +1000980 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100981 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
983 }
984
985 return 0;
986}
987
988/*
989 * xfs_inactive
990 *
991 * This is called when the vnode reference count for the vnode
992 * goes to zero. If the file has been unlinked, then it must
993 * now be truncated. Also, we clear all of the read-ahead state
994 * kept for the inode here since the file is now closed.
995 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000996int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997xfs_inactive(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000998 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Nathan Scott67fcaa72006-06-09 17:00:52 +10001000 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 xfs_fsblock_t first_block;
1002 int committed;
1003 xfs_trans_t *tp;
1004 xfs_mount_t *mp;
1005 int error;
1006 int truncate;
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 /*
1009 * If the inode is already free, then there can be nothing
1010 * to clean up here.
1011 */
Christoph Hellwigcb4c8cc2009-03-16 08:25:25 +01001012 if (ip->i_d.di_mode == 0 || is_bad_inode(VFS_I(ip))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 ASSERT(ip->i_df.if_real_bytes == 0);
1014 ASSERT(ip->i_df.if_broot_bytes == 0);
1015 return VN_INACTIVE_CACHE;
1016 }
1017
1018 /*
1019 * Only do a truncate if it's a regular file with
1020 * some actual space in it. It's OK to look at the
1021 * inode's fields without the lock because we're the
1022 * only one with a reference to the inode.
1023 */
1024 truncate = ((ip->i_d.di_nlink == 0) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001025 ((ip->i_d.di_size != 0) || (ip->i_size != 0) ||
1026 (ip->i_d.di_nextents > 0) || (ip->i_delayed_blks > 0)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 ((ip->i_d.di_mode & S_IFMT) == S_IFREG));
1028
1029 mp = ip->i_mount;
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 error = 0;
1032
1033 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001034 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 goto out;
1036
1037 if (ip->i_d.di_nlink != 0) {
1038 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
Christoph Hellwigdf80c932008-08-13 16:22:09 +10001039 ((ip->i_size > 0) || (VN_CACHED(VFS_I(ip)) > 0 ||
Yingping Lu68bdb6e2006-01-11 15:38:31 +11001040 ip->i_delayed_blks > 0)) &&
Nathan Scottdd9f4382006-01-11 15:28:28 +11001041 (ip->i_df.if_flags & XFS_IFEXTENTS) &&
1042 (!(ip->i_d.di_flags &
1043 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)) ||
1044 (ip->i_delayed_blks != 0)))) {
Christoph Hellwigc56c9632009-10-19 04:03:46 +00001045 error = xfs_free_eofblocks(mp, ip, 0);
David Chinner92dfe8d2007-05-24 15:22:19 +10001046 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001047 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049 goto out;
1050 }
1051
1052 ASSERT(ip->i_d.di_nlink == 0);
1053
Christoph Hellwig7d095252009-06-08 15:33:32 +02001054 error = xfs_qm_dqattach(ip, 0);
1055 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001056 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1059 if (truncate) {
1060 /*
1061 * Do the xfs_itruncate_start() call before
1062 * reserving any log space because itruncate_start
1063 * will call into the buffer cache and we can't
1064 * do that within a transaction.
1065 */
1066 xfs_ilock(ip, XFS_IOLOCK_EXCL);
1067
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001068 error = xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE, 0);
1069 if (error) {
Jesper Juhl87ae3c22007-06-28 16:43:14 +10001070 xfs_trans_cancel(tp, 0);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001071 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1072 return VN_INACTIVE_CACHE;
1073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 error = xfs_trans_reserve(tp, 0,
1076 XFS_ITRUNCATE_LOG_RES(mp),
1077 0, XFS_TRANS_PERM_LOG_RES,
1078 XFS_ITRUNCATE_LOG_COUNT);
1079 if (error) {
1080 /* Don't call itruncate_cleanup */
1081 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1082 xfs_trans_cancel(tp, 0);
1083 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001084 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086
1087 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig898621d2010-06-24 11:36:58 +10001088 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 /*
1091 * normally, we have to run xfs_itruncate_finish sync.
1092 * But if filesystem is wsync and we're in the inactive
1093 * path, then we know that nlink == 0, and that the
1094 * xaction that made nlink == 0 is permanently committed
1095 * since xfs_remove runs as a synchronous transaction.
1096 */
1097 error = xfs_itruncate_finish(&tp, ip, 0, XFS_DATA_FORK,
1098 (!(mp->m_flags & XFS_MOUNT_WSYNC) ? 1 : 0));
1099
1100 if (error) {
1101 xfs_trans_cancel(tp,
1102 XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1103 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001104 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 }
1106 } else if ((ip->i_d.di_mode & S_IFMT) == S_IFLNK) {
1107
1108 /*
1109 * If we get an error while cleaning up a
1110 * symlink we bail out.
1111 */
1112 error = (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) ?
1113 xfs_inactive_symlink_rmt(ip, &tp) :
1114 xfs_inactive_symlink_local(ip, &tp);
1115
1116 if (error) {
1117 ASSERT(tp == NULL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001118 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120
Christoph Hellwig898621d2010-06-24 11:36:58 +10001121 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 } else {
1123 error = xfs_trans_reserve(tp, 0,
1124 XFS_IFREE_LOG_RES(mp),
1125 0, XFS_TRANS_PERM_LOG_RES,
1126 XFS_INACTIVE_LOG_COUNT);
1127 if (error) {
1128 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1129 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001130 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
1132
1133 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
Christoph Hellwig898621d2010-06-24 11:36:58 +10001134 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136
1137 /*
1138 * If there are attributes associated with the file
1139 * then blow them away now. The code calls a routine
1140 * that recursively deconstructs the attribute fork.
1141 * We need to just commit the current transaction
1142 * because we can't use it for xfs_attr_inactive().
1143 */
1144 if (ip->i_d.di_anextents > 0) {
1145 error = xfs_inactive_attrs(ip, &tp);
1146 /*
1147 * If we got an error, the transaction is already
1148 * cancelled, and the inode is unlocked. Just get out.
1149 */
1150 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001151 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 } else if (ip->i_afp) {
1153 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1154 }
1155
1156 /*
1157 * Free the inode.
1158 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06001159 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 error = xfs_ifree(tp, ip, &free_list);
1161 if (error) {
1162 /*
1163 * If we fail to free the inode, shut down. The cancel
1164 * might do that, we need to make sure. Otherwise the
1165 * inode might be lost for a long time or forever.
1166 */
1167 if (!XFS_FORCED_SHUTDOWN(mp)) {
1168 cmn_err(CE_NOTE,
1169 "xfs_inactive: xfs_ifree() returned an error = %d on %s",
1170 error, mp->m_fsname);
Nathan Scott7d04a332006-06-09 14:58:38 +10001171 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
1173 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
1174 } else {
1175 /*
1176 * Credit the quota account(s). The inode is gone.
1177 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001178 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 /*
David Chinner78e9da72008-04-10 12:24:17 +10001181 * Just ignore errors at this point. There is nothing we can
1182 * do except to try to keep going. Make sure it's not a silent
1183 * error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 */
David Chinner78e9da72008-04-10 12:24:17 +10001185 error = xfs_bmap_finish(&tp, &free_list, &committed);
1186 if (error)
1187 xfs_fs_cmn_err(CE_NOTE, mp, "xfs_inactive: "
1188 "xfs_bmap_finish() returned error %d", error);
1189 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1190 if (error)
1191 xfs_fs_cmn_err(CE_NOTE, mp, "xfs_inactive: "
1192 "xfs_trans_commit() returned error %d", error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
Christoph Hellwig7d095252009-06-08 15:33:32 +02001194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 /*
1196 * Release the dquots held by inode, if any.
1197 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001198 xfs_qm_dqdetach(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1200
1201 out:
1202 return VN_INACTIVE_CACHE;
1203}
1204
Barry Naujok384f3ce2008-05-21 16:58:22 +10001205/*
1206 * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
1207 * is allowed, otherwise it has to be an exact match. If a CI match is found,
1208 * ci_name->name will point to a the actual name (caller must free) or
1209 * will be set to NULL if an exact match is found.
1210 */
Christoph Hellwig993386c2007-08-28 16:12:30 +10001211int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212xfs_lookup(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001213 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001214 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +10001215 xfs_inode_t **ipp,
1216 struct xfs_name *ci_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001218 xfs_ino_t inum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 int error;
1220 uint lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001222 trace_xfs_lookup(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
1225 return XFS_ERROR(EIO);
1226
1227 lock_mode = xfs_ilock_map_shared(dp);
Barry Naujok384f3ce2008-05-21 16:58:22 +10001228 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 xfs_iunlock_map_shared(dp, lock_mode);
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001230
1231 if (error)
1232 goto out;
1233
Dave Chinner7b6259e2010-06-24 11:35:17 +10001234 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001235 if (error)
Barry Naujok384f3ce2008-05-21 16:58:22 +10001236 goto out_free_name;
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001237
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001238 return 0;
1239
Barry Naujok384f3ce2008-05-21 16:58:22 +10001240out_free_name:
1241 if (ci_name)
1242 kmem_free(ci_name->name);
1243out:
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001244 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return error;
1246}
1247
Christoph Hellwig993386c2007-08-28 16:12:30 +10001248int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249xfs_create(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001250 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001251 struct xfs_name *name,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001252 mode_t mode,
1253 xfs_dev_t rdev,
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001254 xfs_inode_t **ipp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 cred_t *credp)
1256{
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001257 int is_dir = S_ISDIR(mode);
1258 struct xfs_mount *mp = dp->i_mount;
1259 struct xfs_inode *ip = NULL;
1260 struct xfs_trans *tp = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +10001261 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 xfs_bmap_free_t free_list;
1263 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001264 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 uint cancel_flags;
1266 int committed;
1267 xfs_prid_t prid;
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001268 struct xfs_dquot *udqp = NULL;
1269 struct xfs_dquot *gdqp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 uint resblks;
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001271 uint log_res;
1272 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001274 trace_xfs_create(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001276 if (XFS_FORCED_SHUTDOWN(mp))
1277 return XFS_ERROR(EIO);
1278
Nathan Scott365ca832005-06-21 15:39:12 +10001279 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1280 prid = dp->i_d.di_projid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 else
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001282 prid = dfltprid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 /*
1285 * Make sure that we have allocated dquot(s) on disk.
1286 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001287 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001288 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (error)
1290 goto std_return;
1291
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001292 if (is_dir) {
1293 rdev = 0;
1294 resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
1295 log_res = XFS_MKDIR_LOG_RES(mp);
1296 log_count = XFS_MKDIR_LOG_COUNT;
1297 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
1298 } else {
1299 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
1300 log_res = XFS_CREATE_LOG_RES(mp);
1301 log_count = XFS_CREATE_LOG_COUNT;
1302 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
1303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 /*
1308 * Initially assume that the file does not exist and
1309 * reserve the resources for that case. If that is not
1310 * the case we'll drop the one we have and get a more
1311 * appropriate transaction later.
1312 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001313 error = xfs_trans_reserve(tp, resblks, log_res, 0,
1314 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (error == ENOSPC) {
Dave Chinner153fec42009-04-06 18:48:30 +02001316 /* flush outstanding delalloc blocks and retry */
1317 xfs_flush_inodes(dp);
Christoph Hellwig4734d402009-09-09 18:19:02 -05001318 error = xfs_trans_reserve(tp, resblks, log_res, 0,
1319 XFS_TRANS_PERM_LOG_RES, log_count);
Dave Chinner153fec42009-04-06 18:48:30 +02001320 }
1321 if (error == ENOSPC) {
1322 /* No space at all so try a "no-allocation" reservation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 resblks = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001324 error = xfs_trans_reserve(tp, 0, log_res, 0,
1325 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
1327 if (error) {
1328 cancel_flags = 0;
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001329 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
1331
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001332 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001333 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001335 /*
1336 * Check for directory link count overflow.
1337 */
1338 if (is_dir && dp->i_d.di_nlink >= XFS_MAXLINK) {
1339 error = XFS_ERROR(EMLINK);
1340 goto out_trans_cancel;
1341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001343 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 /*
1346 * Reserve disk quota and the inode.
1347 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001348 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001350 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Barry Naujok556b8b12008-04-10 12:22:07 +10001352 error = xfs_dir_canenter(tp, dp, name, resblks);
1353 if (error)
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001354 goto out_trans_cancel;
1355
1356 /*
1357 * A newly created regular or special file just has one directory
1358 * entry pointing to them, but a directory also the "." entry
1359 * pointing to itself.
1360 */
1361 error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev, credp,
1362 prid, resblks > 0, &ip, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (error) {
1364 if (error == ENOSPC)
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001365 goto out_trans_cancel;
1366 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 /*
1370 * At this point, we've gotten a newly allocated inode.
1371 * It is locked (and joined to the transaction).
1372 */
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001373 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 /*
Christoph Hellwig993386c2007-08-28 16:12:30 +10001376 * Now we join the directory inode to the transaction. We do not do it
1377 * earlier because xfs_dir_ialloc might commit the previous transaction
1378 * (and release all the locks). An error from here on will result in
1379 * the transaction cancel unlocking dp so don't do it explicitly in the
1380 * error path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001382 xfs_trans_ijoin_ref(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001383 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Barry Naujok556b8b12008-04-10 12:22:07 +10001385 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001386 &first_block, &free_list, resblks ?
1387 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (error) {
1389 ASSERT(error != ENOSPC);
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001390 goto out_trans_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
1392 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1393 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1394
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001395 if (is_dir) {
1396 error = xfs_dir_init(tp, ip, dp);
1397 if (error)
1398 goto out_bmap_cancel;
1399
1400 error = xfs_bumplink(tp, dp);
1401 if (error)
1402 goto out_bmap_cancel;
1403 }
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 /*
1406 * If this is a synchronous mount, make sure that the
1407 * create transaction goes to disk before returning to
1408 * the user.
1409 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001410 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 /*
1414 * Attach the dquot(s) to the inodes and modify them incore.
1415 * These ids of the inode couldn't have changed since the new
1416 * inode has been locked ever since it was created.
1417 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001418 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 /*
1421 * xfs_trans_commit normally decrements the vnode ref count
1422 * when it unlocks the inode. Since we want to return the
1423 * vnode to the caller, we bump the vnode ref count now.
1424 */
1425 IHOLD(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001427 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001428 if (error)
1429 goto out_abort_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001431 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (error) {
1433 IRELE(ip);
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001434 goto out_dqrele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
1436
Christoph Hellwig7d095252009-06-08 15:33:32 +02001437 xfs_qm_dqrele(udqp);
1438 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001440 *ipp = ip;
Christoph Hellwig288699f2010-06-23 18:11:15 +10001441 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001443 out_bmap_cancel:
1444 xfs_bmap_cancel(&free_list);
1445 out_trans_abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001447 out_trans_cancel:
1448 xfs_trans_cancel(tp, cancel_flags);
1449 out_dqrele:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001450 xfs_qm_dqrele(udqp);
1451 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Christoph Hellwig993386c2007-08-28 16:12:30 +10001453 if (unlock_dp_on_error)
1454 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001455 std_return:
1456 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001458 out_abort_rele:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 /*
1460 * Wait until after the current transaction is aborted to
1461 * release the inode. This prevents recursive transactions
1462 * and deadlocks from xfs_inactive.
1463 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001464 xfs_bmap_cancel(&free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 cancel_flags |= XFS_TRANS_ABORT;
1466 xfs_trans_cancel(tp, cancel_flags);
1467 IRELE(ip);
Christoph Hellwig517b5e82009-02-09 08:38:02 +01001468 unlock_dp_on_error = B_FALSE;
1469 goto out_dqrele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
1472#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473int xfs_locked_n;
1474int xfs_small_retries;
1475int xfs_middle_retries;
1476int xfs_lots_retries;
1477int xfs_lock_delays;
1478#endif
1479
1480/*
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001481 * Bump the subclass so xfs_lock_inodes() acquires each lock with
1482 * a different value
1483 */
1484static inline int
1485xfs_lock_inumorder(int lock_mode, int subclass)
1486{
1487 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +10001488 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001489 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +10001490 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001491
1492 return lock_mode;
1493}
1494
1495/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 * The following routine will lock n inodes in exclusive mode.
1497 * We assume the caller calls us with the inodes in i_ino order.
1498 *
1499 * We need to detect deadlock where an inode that we lock
1500 * is in the AIL and we start waiting for another inode that is locked
1501 * by a thread in a long running transaction (such as truncate). This can
1502 * result in deadlock since the long running trans might need to wait
1503 * for the inode we just locked in order to push the tail and free space
1504 * in the log.
1505 */
1506void
1507xfs_lock_inodes(
1508 xfs_inode_t **ips,
1509 int inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 uint lock_mode)
1511{
1512 int attempts = 0, i, j, try_lock;
1513 xfs_log_item_t *lp;
1514
1515 ASSERT(ips && (inodes >= 2)); /* we need at least two */
1516
Christoph Hellwigcfa853e2008-04-22 17:34:06 +10001517 try_lock = 0;
1518 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520again:
1521 for (; i < inodes; i++) {
1522 ASSERT(ips[i]);
1523
1524 if (i && (ips[i] == ips[i-1])) /* Already locked */
1525 continue;
1526
1527 /*
1528 * If try_lock is not set yet, make sure all locked inodes
1529 * are not in the AIL.
1530 * If any are, set try_lock to be used later.
1531 */
1532
1533 if (!try_lock) {
1534 for (j = (i - 1); j >= 0 && !try_lock; j--) {
1535 lp = (xfs_log_item_t *)ips[j]->i_itemp;
1536 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1537 try_lock++;
1538 }
1539 }
1540 }
1541
1542 /*
1543 * If any of the previous locks we have locked is in the AIL,
1544 * we must TRY to get the second and subsequent locks. If
1545 * we can't get any, we must release all we have
1546 * and try again.
1547 */
1548
1549 if (try_lock) {
1550 /* try_lock must be 0 if i is 0. */
1551 /*
1552 * try_lock means we have an inode locked
1553 * that is in the AIL.
1554 */
1555 ASSERT(i != 0);
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001556 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 attempts++;
1558
1559 /*
1560 * Unlock all previous guys and try again.
1561 * xfs_iunlock will try to push the tail
1562 * if the inode is in the AIL.
1563 */
1564
1565 for(j = i - 1; j >= 0; j--) {
1566
1567 /*
1568 * Check to see if we've already
1569 * unlocked this one.
1570 * Not the first one going back,
1571 * and the inode ptr is the same.
1572 */
1573 if ((j != (i - 1)) && ips[j] ==
1574 ips[j+1])
1575 continue;
1576
1577 xfs_iunlock(ips[j], lock_mode);
1578 }
1579
1580 if ((attempts % 5) == 0) {
1581 delay(1); /* Don't just spin the CPU */
1582#ifdef DEBUG
1583 xfs_lock_delays++;
1584#endif
1585 }
1586 i = 0;
1587 try_lock = 0;
1588 goto again;
1589 }
1590 } else {
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001591 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 }
1593 }
1594
1595#ifdef DEBUG
1596 if (attempts) {
1597 if (attempts < 5) xfs_small_retries++;
1598 else if (attempts < 100) xfs_middle_retries++;
1599 else xfs_lots_retries++;
1600 } else {
1601 xfs_locked_n++;
1602 }
1603#endif
1604}
1605
David Chinnerf9114eb2008-09-17 16:51:21 +10001606/*
1607 * xfs_lock_two_inodes() can only be used to lock one type of lock
1608 * at a time - the iolock or the ilock, but not both at once. If
1609 * we lock both at once, lockdep will report false positives saying
1610 * we have violated locking orders.
1611 */
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001612void
1613xfs_lock_two_inodes(
1614 xfs_inode_t *ip0,
1615 xfs_inode_t *ip1,
1616 uint lock_mode)
1617{
1618 xfs_inode_t *temp;
1619 int attempts = 0;
1620 xfs_log_item_t *lp;
1621
David Chinnerf9114eb2008-09-17 16:51:21 +10001622 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
1623 ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0);
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001624 ASSERT(ip0->i_ino != ip1->i_ino);
1625
1626 if (ip0->i_ino > ip1->i_ino) {
1627 temp = ip0;
1628 ip0 = ip1;
1629 ip1 = temp;
1630 }
1631
1632 again:
1633 xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0));
1634
1635 /*
1636 * If the first lock we have locked is in the AIL, we must TRY to get
1637 * the second lock. If we can't get it, we must release the first one
1638 * and try again.
1639 */
1640 lp = (xfs_log_item_t *)ip0->i_itemp;
1641 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1642 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) {
1643 xfs_iunlock(ip0, lock_mode);
1644 if ((++attempts % 5) == 0)
1645 delay(1); /* Don't just spin the CPU */
1646 goto again;
1647 }
1648 } else {
1649 xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1));
1650 }
1651}
1652
Christoph Hellwig993386c2007-08-28 16:12:30 +10001653int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654xfs_remove(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001655 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001656 struct xfs_name *name,
1657 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001659 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 xfs_trans_t *tp = NULL;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001661 int is_dir = S_ISDIR(ip->i_d.di_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 int error = 0;
1663 xfs_bmap_free_t free_list;
1664 xfs_fsblock_t first_block;
1665 int cancel_flags;
1666 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 int link_zero;
1668 uint resblks;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001669 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001671 trace_xfs_remove(dp, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 if (XFS_FORCED_SHUTDOWN(mp))
1674 return XFS_ERROR(EIO);
1675
Christoph Hellwig7d095252009-06-08 15:33:32 +02001676 error = xfs_qm_dqattach(dp, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001677 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Christoph Hellwig7d095252009-06-08 15:33:32 +02001680 error = xfs_qm_dqattach(ip, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001681 if (error)
1682 goto std_return;
1683
1684 if (is_dir) {
1685 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
1686 log_count = XFS_DEFAULT_LOG_COUNT;
1687 } else {
1688 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
1689 log_count = XFS_REMOVE_LOG_COUNT;
1690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 /*
1694 * We try to get the real space reservation first,
1695 * allowing for directory btree deletion(s) implying
1696 * possible bmap insert(s). If we can't get the space
1697 * reservation then we use 0 instead, and avoid the bmap
1698 * btree insert(s) in the directory code by, if the bmap
1699 * insert tries to happen, instead trimming the LAST
1700 * block from the directory.
1701 */
1702 resblks = XFS_REMOVE_SPACE_RES(mp);
1703 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001704 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if (error == ENOSPC) {
1706 resblks = 0;
1707 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001708 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
1710 if (error) {
1711 ASSERT(error != ENOSPC);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001712 cancel_flags = 0;
1713 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 }
1715
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001716 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Christoph Hellwig898621d2010-06-24 11:36:58 +10001718 xfs_trans_ijoin_ref(tp, dp, XFS_ILOCK_EXCL);
1719 xfs_trans_ijoin_ref(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721 /*
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001722 * If we're removing a directory perform some additional validation.
1723 */
1724 if (is_dir) {
1725 ASSERT(ip->i_d.di_nlink >= 2);
1726 if (ip->i_d.di_nlink != 2) {
1727 error = XFS_ERROR(ENOTEMPTY);
1728 goto out_trans_cancel;
1729 }
1730 if (!xfs_dir_isempty(ip)) {
1731 error = XFS_ERROR(ENOTEMPTY);
1732 goto out_trans_cancel;
1733 }
1734 }
1735
Eric Sandeen9d87c312009-01-14 23:22:07 -06001736 xfs_bmap_init(&free_list, &first_block);
Barry Naujok556b8b12008-04-10 12:22:07 +10001737 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
Christoph Hellwigd4377d82008-04-22 17:33:46 +10001738 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (error) {
1740 ASSERT(error != ENOENT);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001741 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
1743 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1744
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001745 if (is_dir) {
1746 /*
1747 * Drop the link from ip's "..".
1748 */
1749 error = xfs_droplink(tp, dp);
1750 if (error)
1751 goto out_bmap_cancel;
1752
1753 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001754 * Drop the "." link from ip to self.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001755 */
1756 error = xfs_droplink(tp, ip);
1757 if (error)
1758 goto out_bmap_cancel;
1759 } else {
1760 /*
1761 * When removing a non-directory we need to log the parent
Dave Chinner26c52952008-11-28 14:23:37 +11001762 * inode here. For a directory this is done implicitly
1763 * by the xfs_droplink call for the ".." entry.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001764 */
1765 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
1767
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001768 /*
Christoph Hellwig2b7035f2008-10-30 17:55:18 +11001769 * Drop the link from dp to ip.
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001770 */
1771 error = xfs_droplink(tp, ip);
1772 if (error)
1773 goto out_bmap_cancel;
1774
1775 /*
1776 * Determine if this is the last link while
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 * we are in the transaction.
1778 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001779 link_zero = (ip->i_d.di_nlink == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 * If this is a synchronous mount, make sure that the
1783 * remove transaction goes to disk before returning to
1784 * the user.
1785 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001786 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001789 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001790 if (error)
1791 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001793 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig5df78e72008-04-22 17:34:24 +10001794 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797 /*
David Chinner2a82b8b2007-07-11 11:09:12 +10001798 * If we are using filestreams, kill the stream association.
1799 * If the file is still open it may get a new one but that
1800 * will get killed on last close in xfs_close() so we don't
1801 * have to worry about that.
1802 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001803 if (!is_dir && link_zero && xfs_inode_is_filestream(ip))
David Chinner2a82b8b2007-07-11 11:09:12 +10001804 xfs_filestream_deassociate(ip);
1805
Christoph Hellwig288699f2010-06-23 18:11:15 +10001806 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001808 out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 xfs_bmap_cancel(&free_list);
1810 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001811 out_trans_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001813 std_return:
1814 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
Christoph Hellwig993386c2007-08-28 16:12:30 +10001817int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818xfs_link(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001819 xfs_inode_t *tdp,
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001820 xfs_inode_t *sip,
Barry Naujok556b8b12008-04-10 12:22:07 +10001821 struct xfs_name *target_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001823 xfs_mount_t *mp = tdp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 int error;
1826 xfs_bmap_free_t free_list;
1827 xfs_fsblock_t first_block;
1828 int cancel_flags;
1829 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 int resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001832 trace_xfs_link(tdp, target_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Christoph Hellwiga3da7892008-03-06 13:46:12 +11001834 ASSERT(!S_ISDIR(sip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 if (XFS_FORCED_SHUTDOWN(mp))
1837 return XFS_ERROR(EIO);
1838
Christoph Hellwig7d095252009-06-08 15:33:32 +02001839 error = xfs_qm_dqattach(sip, 0);
Christoph Hellwigcb3f35b2009-02-04 09:34:20 +01001840 if (error)
1841 goto std_return;
1842
Christoph Hellwig7d095252009-06-08 15:33:32 +02001843 error = xfs_qm_dqattach(tdp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (error)
1845 goto std_return;
1846
1847 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
1848 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10001849 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
1851 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1852 if (error == ENOSPC) {
1853 resblks = 0;
1854 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
1855 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1856 }
1857 if (error) {
1858 cancel_flags = 0;
1859 goto error_return;
1860 }
1861
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001862 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Christoph Hellwig898621d2010-06-24 11:36:58 +10001864 xfs_trans_ijoin_ref(tp, sip, XFS_ILOCK_EXCL);
1865 xfs_trans_ijoin_ref(tp, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 /*
1868 * If the source has too many links, we can't make any more to it.
1869 */
1870 if (sip->i_d.di_nlink >= XFS_MAXLINK) {
1871 error = XFS_ERROR(EMLINK);
1872 goto error_return;
1873 }
1874
Nathan Scott365ca832005-06-21 15:39:12 +10001875 /*
1876 * If we are using project inheritance, we only allow hard link
1877 * creation in our tree when the project IDs are the same; else
1878 * the tree quota mechanism could be circumvented.
1879 */
1880 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
1881 (tdp->i_d.di_projid != sip->i_d.di_projid))) {
Nathan Scottb1ecdda2006-05-08 19:51:42 +10001882 error = XFS_ERROR(EXDEV);
Nathan Scott365ca832005-06-21 15:39:12 +10001883 goto error_return;
1884 }
1885
Barry Naujok556b8b12008-04-10 12:22:07 +10001886 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
1887 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 goto error_return;
1889
Eric Sandeen9d87c312009-01-14 23:22:07 -06001890 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Barry Naujok556b8b12008-04-10 12:22:07 +10001892 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
1893 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (error)
1895 goto abort_return;
1896 xfs_ichgtime(tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1898
1899 error = xfs_bumplink(tp, sip);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001900 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 /*
1904 * If this is a synchronous mount, make sure that the
1905 * link transaction goes to disk before returning to
1906 * the user.
1907 */
1908 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1909 xfs_trans_set_sync(tp);
1910 }
1911
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001912 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 if (error) {
1914 xfs_bmap_cancel(&free_list);
1915 goto abort_return;
1916 }
1917
Christoph Hellwig288699f2010-06-23 18:11:15 +10001918 return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920 abort_return:
1921 cancel_flags |= XFS_TRANS_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 error_return:
1923 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig288699f2010-06-23 18:11:15 +10001924 std_return:
1925 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926}
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10001927
Christoph Hellwig993386c2007-08-28 16:12:30 +10001928int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929xfs_symlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001930 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001931 struct xfs_name *link_name,
1932 const char *target_path,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001933 mode_t mode,
Christoph Hellwig3937be52008-03-06 13:46:19 +11001934 xfs_inode_t **ipp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 cred_t *credp)
1936{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001937 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 xfs_inode_t *ip;
1940 int error;
1941 int pathlen;
1942 xfs_bmap_free_t free_list;
1943 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001944 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 uint cancel_flags;
1946 int committed;
1947 xfs_fileoff_t first_fsb;
1948 xfs_filblks_t fs_blocks;
1949 int nmaps;
1950 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1951 xfs_daddr_t d;
Barry Naujok556b8b12008-04-10 12:22:07 +10001952 const char *cur_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 int byte_cnt;
1954 int n;
1955 xfs_buf_t *bp;
1956 xfs_prid_t prid;
1957 struct xfs_dquot *udqp, *gdqp;
1958 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Christoph Hellwig3937be52008-03-06 13:46:19 +11001960 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 error = 0;
1962 ip = NULL;
1963 tp = NULL;
1964
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001965 trace_xfs_symlink(dp, link_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
1967 if (XFS_FORCED_SHUTDOWN(mp))
1968 return XFS_ERROR(EIO);
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 /*
1971 * Check component lengths of the target path name.
1972 */
1973 pathlen = strlen(target_path);
1974 if (pathlen >= MAXPATHLEN) /* total string too long */
1975 return XFS_ERROR(ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10001978 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1979 prid = dp->i_d.di_projid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 else
1981 prid = (xfs_prid_t)dfltprid;
1982
1983 /*
1984 * Make sure that we have allocated dquot(s) on disk.
1985 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001986 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
1988 if (error)
1989 goto std_return;
1990
1991 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
1992 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1993 /*
1994 * The symlink will fit into the inode data fork?
1995 * There can't be any attributes so we get the whole variable part.
1996 */
1997 if (pathlen <= XFS_LITINO(mp))
1998 fs_blocks = 0;
1999 else
2000 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
Barry Naujok556b8b12008-04-10 12:22:07 +10002001 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
2003 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
2004 if (error == ENOSPC && fs_blocks == 0) {
2005 resblks = 0;
2006 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
2007 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
2008 }
2009 if (error) {
2010 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 goto error_return;
2012 }
2013
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002014 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10002015 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
2017 /*
2018 * Check whether the directory allows new symlinks or not.
2019 */
2020 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
2021 error = XFS_ERROR(EPERM);
2022 goto error_return;
2023 }
2024
2025 /*
2026 * Reserve disk quota : blocks and inode.
2027 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02002028 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 if (error)
2030 goto error_return;
2031
2032 /*
2033 * Check for ability to enter directory entry, if no space reserved.
2034 */
Barry Naujok556b8b12008-04-10 12:22:07 +10002035 error = xfs_dir_canenter(tp, dp, link_name, resblks);
2036 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 goto error_return;
2038 /*
2039 * Initialize the bmap freelist prior to calling either
2040 * bmapi or the directory create code.
2041 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06002042 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044 /*
2045 * Allocate an inode for the symlink.
2046 */
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002047 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 1, 0, credp, prid, resblks > 0, &ip, NULL);
2049 if (error) {
2050 if (error == ENOSPC)
2051 goto error_return;
2052 goto error1;
2053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Christoph Hellwig993386c2007-08-28 16:12:30 +10002055 /*
2056 * An error after we've joined dp to the transaction will result in the
2057 * transaction cancel unlocking dp so don't do it explicitly in the
2058 * error path.
2059 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10002060 xfs_trans_ijoin_ref(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10002061 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
2063 /*
2064 * Also attach the dquot(s) to it, if applicable.
2065 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02002066 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
2068 if (resblks)
2069 resblks -= XFS_IALLOC_SPACE_RES(mp);
2070 /*
2071 * If the symlink will fit into the inode, write it inline.
2072 */
2073 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
2074 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
2075 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
2076 ip->i_d.di_size = pathlen;
2077
2078 /*
2079 * The inode was initially created in extent format.
2080 */
2081 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
2082 ip->i_df.if_flags |= XFS_IFINLINE;
2083
2084 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
2085 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
2086
2087 } else {
2088 first_fsb = 0;
2089 nmaps = SYMLINK_MAPS;
2090
2091 error = xfs_bmapi(tp, ip, first_fsb, fs_blocks,
2092 XFS_BMAPI_WRITE | XFS_BMAPI_METADATA,
2093 &first_block, resblks, mval, &nmaps,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002094 &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 if (error) {
2096 goto error1;
2097 }
2098
2099 if (resblks)
2100 resblks -= fs_blocks;
2101 ip->i_d.di_size = pathlen;
2102 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2103
2104 cur_chunk = target_path;
2105 for (n = 0; n < nmaps; n++) {
2106 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
2107 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
2108 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
2109 BTOBB(byte_cnt), 0);
2110 ASSERT(bp && !XFS_BUF_GETERROR(bp));
2111 if (pathlen < byte_cnt) {
2112 byte_cnt = pathlen;
2113 }
2114 pathlen -= byte_cnt;
2115
2116 memcpy(XFS_BUF_PTR(bp), cur_chunk, byte_cnt);
2117 cur_chunk += byte_cnt;
2118
2119 xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
2120 }
2121 }
2122
2123 /*
2124 * Create the directory entry for the symlink.
2125 */
Barry Naujok556b8b12008-04-10 12:22:07 +10002126 error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
2127 &first_block, &free_list, resblks);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002128 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2131 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2132
2133 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 * If this is a synchronous mount, make sure that the
2135 * symlink transaction goes to disk before returning to
2136 * the user.
2137 */
2138 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2139 xfs_trans_set_sync(tp);
2140 }
2141
2142 /*
2143 * xfs_trans_commit normally decrements the vnode ref count
2144 * when it unlocks the inode. Since we want to return the
2145 * vnode to the caller, we bump the vnode ref count now.
2146 */
2147 IHOLD(ip);
2148
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002149 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 if (error) {
2151 goto error2;
2152 }
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002153 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002154 xfs_qm_dqrele(udqp);
2155 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Christoph Hellwig288699f2010-06-23 18:11:15 +10002157 *ipp = ip;
2158 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 error2:
2161 IRELE(ip);
2162 error1:
2163 xfs_bmap_cancel(&free_list);
2164 cancel_flags |= XFS_TRANS_ABORT;
2165 error_return:
2166 xfs_trans_cancel(tp, cancel_flags);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002167 xfs_qm_dqrele(udqp);
2168 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Christoph Hellwig993386c2007-08-28 16:12:30 +10002170 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10002172 std_return:
2173 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176int
Christoph Hellwig993386c2007-08-28 16:12:30 +10002177xfs_set_dmattrs(
2178 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 u_int evmask,
Christoph Hellwig993386c2007-08-28 16:12:30 +10002180 u_int16_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002182 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 int error;
2185
2186 if (!capable(CAP_SYS_ADMIN))
2187 return XFS_ERROR(EPERM);
2188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (XFS_FORCED_SHUTDOWN(mp))
2190 return XFS_ERROR(EIO);
2191
2192 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
2193 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
2194 if (error) {
2195 xfs_trans_cancel(tp, 0);
2196 return error;
2197 }
2198 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig898621d2010-06-24 11:36:58 +10002199 xfs_trans_ijoin_ref(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Christoph Hellwig613d7042007-10-11 17:44:08 +10002201 ip->i_d.di_dmevmask = evmask;
2202 ip->i_d.di_dmstate = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
2204 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002205 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207 return error;
2208}
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210/*
2211 * xfs_alloc_file_space()
2212 * This routine allocates disk space for the given file.
2213 *
2214 * If alloc_type == 0, this request is for an ALLOCSP type
2215 * request which will change the file size. In this case, no
2216 * DMAPI event will be generated by the call. A TRUNCATE event
2217 * will be generated later by xfs_setattr.
2218 *
2219 * If alloc_type != 0, this request is for a RESVSP type
2220 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
2221 * lower block boundary byte address is less than the file's
2222 * length.
2223 *
2224 * RETURNS:
2225 * 0 on success
2226 * errno on error
2227 *
2228 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002229STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230xfs_alloc_file_space(
2231 xfs_inode_t *ip,
2232 xfs_off_t offset,
2233 xfs_off_t len,
2234 int alloc_type,
2235 int attr_flags)
2236{
Nathan Scottdd9f4382006-01-11 15:28:28 +11002237 xfs_mount_t *mp = ip->i_mount;
2238 xfs_off_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 xfs_filblks_t allocated_fsb;
2240 xfs_filblks_t allocatesize_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11002241 xfs_extlen_t extsz, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 xfs_fileoff_t startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11002243 xfs_fsblock_t firstfsb;
2244 int nimaps;
2245 int bmapi_flag;
2246 int quota_flag;
2247 int rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 xfs_trans_t *tp;
Nathan Scottdd9f4382006-01-11 15:28:28 +11002249 xfs_bmbt_irec_t imaps[1], *imapp;
2250 xfs_bmap_free_t free_list;
2251 uint qblocks, resblks, resrtextents;
2252 int committed;
2253 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10002255 trace_xfs_alloc_file_space(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
2257 if (XFS_FORCED_SHUTDOWN(mp))
2258 return XFS_ERROR(EIO);
2259
Christoph Hellwig7d095252009-06-08 15:33:32 +02002260 error = xfs_qm_dqattach(ip, 0);
2261 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 return error;
2263
2264 if (len <= 0)
2265 return XFS_ERROR(EINVAL);
2266
David Chinner957d0eb2007-06-18 16:50:37 +10002267 rt = XFS_IS_REALTIME_INODE(ip);
2268 extsz = xfs_get_extsz_hint(ip);
2269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 count = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 imapp = &imaps[0];
Nathan Scottdd9f4382006-01-11 15:28:28 +11002272 nimaps = 1;
2273 bmapi_flag = XFS_BMAPI_WRITE | (alloc_type ? XFS_BMAPI_PREALLOC : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
2275 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
2276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11002278 * Allocate file space until done or until there is an error
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 while (allocatesize_fsb && !error) {
Nathan Scottdd9f4382006-01-11 15:28:28 +11002281 xfs_fileoff_t s, e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Nathan Scottdd9f4382006-01-11 15:28:28 +11002283 /*
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11002284 * Determine space reservations for data/realtime.
Nathan Scottdd9f4382006-01-11 15:28:28 +11002285 */
2286 if (unlikely(extsz)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 s = startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11002288 do_div(s, extsz);
2289 s *= extsz;
2290 e = startoffset_fsb + allocatesize_fsb;
2291 if ((temp = do_mod(startoffset_fsb, extsz)))
2292 e += temp;
2293 if ((temp = do_mod(e, extsz)))
2294 e += extsz - temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 } else {
Nathan Scottdd9f4382006-01-11 15:28:28 +11002296 s = 0;
2297 e = allocatesize_fsb;
2298 }
2299
2300 if (unlikely(rt)) {
2301 resrtextents = qblocks = (uint)(e - s);
2302 resrtextents /= mp->m_sb.sb_rextsize;
2303 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
2304 quota_flag = XFS_QMOPT_RES_RTBLKS;
2305 } else {
2306 resrtextents = 0;
2307 resblks = qblocks = \
2308 XFS_DIOSTRAT_SPACE_RES(mp, (uint)(e - s));
2309 quota_flag = XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311
2312 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11002313 * Allocate and setup the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 */
2315 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Nathan Scottdd9f4382006-01-11 15:28:28 +11002316 error = xfs_trans_reserve(tp, resblks,
2317 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 XFS_TRANS_PERM_LOG_RES,
2319 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11002321 * Check for running out of space
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 */
2323 if (error) {
2324 /*
2325 * Free the transaction structure.
2326 */
2327 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
2328 xfs_trans_cancel(tp, 0);
2329 break;
2330 }
2331 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002332 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
2333 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 if (error)
2335 goto error1;
2336
Christoph Hellwig898621d2010-06-24 11:36:58 +10002337 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
2339 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11002340 * Issue the xfs_bmapi() call to allocate the blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06002342 xfs_bmap_init(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10002343 error = xfs_bmapi(tp, ip, startoffset_fsb,
Nathan Scottdd9f4382006-01-11 15:28:28 +11002344 allocatesize_fsb, bmapi_flag,
2345 &firstfsb, 0, imapp, &nimaps,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002346 &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 if (error) {
2348 goto error0;
2349 }
2350
2351 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11002352 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002354 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 if (error) {
2356 goto error0;
2357 }
2358
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002359 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2361 if (error) {
2362 break;
2363 }
2364
2365 allocated_fsb = imapp->br_blockcount;
2366
Nathan Scottdd9f4382006-01-11 15:28:28 +11002367 if (nimaps == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 error = XFS_ERROR(ENOSPC);
2369 break;
2370 }
2371
2372 startoffset_fsb += allocated_fsb;
2373 allocatesize_fsb -= allocated_fsb;
2374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
2376 return error;
2377
Nathan Scottdd9f4382006-01-11 15:28:28 +11002378error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 xfs_bmap_cancel(&free_list);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002380 xfs_trans_unreserve_quota_nblks(tp, ip, qblocks, 0, quota_flag);
Nathan Scottdd9f4382006-01-11 15:28:28 +11002381
2382error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
2384 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig288699f2010-06-23 18:11:15 +10002385 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386}
2387
2388/*
2389 * Zero file bytes between startoff and endoff inclusive.
2390 * The iolock is held exclusive and no blocks are buffered.
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10002391 *
2392 * This function is used by xfs_free_file_space() to zero
2393 * partial blocks when the range to free is not block aligned.
2394 * When unreserving space with boundaries that are not block
2395 * aligned we round up the start and round down the end
2396 * boundaries and then use this function to zero the parts of
2397 * the blocks that got dropped during the rounding.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 */
2399STATIC int
2400xfs_zero_remaining_bytes(
2401 xfs_inode_t *ip,
2402 xfs_off_t startoff,
2403 xfs_off_t endoff)
2404{
2405 xfs_bmbt_irec_t imap;
2406 xfs_fileoff_t offset_fsb;
2407 xfs_off_t lastoffset;
2408 xfs_off_t offset;
2409 xfs_buf_t *bp;
2410 xfs_mount_t *mp = ip->i_mount;
2411 int nimap;
2412 int error = 0;
2413
Lachlan McIlroy2fd6f6e2008-09-17 16:52:50 +10002414 /*
2415 * Avoid doing I/O beyond eof - it's not necessary
2416 * since nothing can read beyond eof. The space will
2417 * be zeroed when the file is extended anyway.
2418 */
2419 if (startoff >= ip->i_size)
2420 return 0;
2421
2422 if (endoff > ip->i_size)
2423 endoff = ip->i_size;
2424
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 bp = xfs_buf_get_noaddr(mp->m_sb.sb_blocksize,
Eric Sandeen71ddabb2007-11-23 16:29:42 +11002426 XFS_IS_REALTIME_INODE(ip) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 mp->m_rtdev_targp : mp->m_ddev_targp);
Lachlan McIlroyc6422612008-12-05 13:16:15 +11002428 if (!bp)
2429 return XFS_ERROR(ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
2431 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
2432 offset_fsb = XFS_B_TO_FSBT(mp, offset);
2433 nimap = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10002434 error = xfs_bmapi(NULL, ip, offset_fsb, 1, 0,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002435 NULL, 0, &imap, &nimap, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 if (error || nimap < 1)
2437 break;
2438 ASSERT(imap.br_blockcount >= 1);
2439 ASSERT(imap.br_startoff == offset_fsb);
2440 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
2441 if (lastoffset > endoff)
2442 lastoffset = endoff;
2443 if (imap.br_startblock == HOLESTARTBLOCK)
2444 continue;
2445 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2446 if (imap.br_state == XFS_EXT_UNWRITTEN)
2447 continue;
2448 XFS_BUF_UNDONE(bp);
2449 XFS_BUF_UNWRITE(bp);
2450 XFS_BUF_READ(bp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002451 XFS_BUF_SET_ADDR(bp, xfs_fsb_to_db(ip, imap.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 xfsbdstrat(mp, bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10002453 error = xfs_iowait(bp);
2454 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 xfs_ioerror_alert("xfs_zero_remaining_bytes(read)",
2456 mp, bp, XFS_BUF_ADDR(bp));
2457 break;
2458 }
2459 memset(XFS_BUF_PTR(bp) +
2460 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
2461 0, lastoffset - offset + 1);
2462 XFS_BUF_UNDONE(bp);
2463 XFS_BUF_UNREAD(bp);
2464 XFS_BUF_WRITE(bp);
2465 xfsbdstrat(mp, bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10002466 error = xfs_iowait(bp);
2467 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 xfs_ioerror_alert("xfs_zero_remaining_bytes(write)",
2469 mp, bp, XFS_BUF_ADDR(bp));
2470 break;
2471 }
2472 }
2473 xfs_buf_free(bp);
2474 return error;
2475}
2476
2477/*
2478 * xfs_free_file_space()
2479 * This routine frees disk space for the given file.
2480 *
2481 * This routine is only called by xfs_change_file_space
2482 * for an UNRESVSP type call.
2483 *
2484 * RETURNS:
2485 * 0 on success
2486 * errno on error
2487 *
2488 */
2489STATIC int
2490xfs_free_file_space(
2491 xfs_inode_t *ip,
2492 xfs_off_t offset,
2493 xfs_off_t len,
2494 int attr_flags)
2495{
2496 int committed;
2497 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 xfs_fileoff_t endoffset_fsb;
2499 int error;
2500 xfs_fsblock_t firstfsb;
2501 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 xfs_bmbt_irec_t imap;
2503 xfs_off_t ioffset;
2504 xfs_extlen_t mod=0;
2505 xfs_mount_t *mp;
2506 int nimap;
2507 uint resblks;
Nathan Scott673cdf52006-09-28 10:56:26 +10002508 uint rounding;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 int rt;
2510 xfs_fileoff_t startoffset_fsb;
2511 xfs_trans_t *tp;
Dean Roehrich5fcbab32005-05-05 13:27:19 -07002512 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 mp = ip->i_mount;
2515
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10002516 trace_xfs_free_file_space(ip);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10002517
Christoph Hellwig7d095252009-06-08 15:33:32 +02002518 error = xfs_qm_dqattach(ip, 0);
2519 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 return error;
2521
2522 error = 0;
2523 if (len <= 0) /* if nothing being freed */
2524 return error;
Eric Sandeen71ddabb2007-11-23 16:29:42 +11002525 rt = XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
Christoph Hellwig288699f2010-06-23 18:11:15 +10002527 endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002529 if (attr_flags & XFS_ATTR_NOLOCK)
Dean Roehrich5fcbab32005-05-05 13:27:19 -07002530 need_iolock = 0;
Yingping Lu9fa80462006-03-22 12:44:35 +11002531 if (need_iolock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwig25e41b32008-12-03 12:20:39 +01002533 /* wait for the completion of any pending DIOs */
2534 xfs_ioend_wait(ip);
Yingping Lu9fa80462006-03-22 12:44:35 +11002535 }
Dean Roehrich5fcbab32005-05-05 13:27:19 -07002536
Tim Shimmine6a4b372007-11-23 16:30:42 +11002537 rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 ioffset = offset & ~(rounding - 1);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10002539
Christoph Hellwigdf80c932008-08-13 16:22:09 +10002540 if (VN_CACHED(VFS_I(ip)) != 0) {
Tim Shimmine6a4b372007-11-23 16:30:42 +11002541 error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10002542 if (error)
2543 goto out_unlock_iolock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10002544 }
2545
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 /*
2547 * Need to zero the stuff we're not freeing, on disk.
Malcolm Parsons9da096f2009-03-29 09:55:42 +02002548 * If it's a realtime file & can't use unwritten extents then we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 * actually need to zero the extent edges. Otherwise xfs_bunmapi
2550 * will take care of it for us.
2551 */
Eric Sandeen62118702008-03-06 13:44:28 +11002552 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 nimap = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10002554 error = xfs_bmapi(NULL, ip, startoffset_fsb,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002555 1, 0, NULL, 0, &imap, &nimap, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 if (error)
2557 goto out_unlock_iolock;
2558 ASSERT(nimap == 0 || nimap == 1);
2559 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
2560 xfs_daddr_t block;
2561
2562 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2563 block = imap.br_startblock;
2564 mod = do_div(block, mp->m_sb.sb_rextsize);
2565 if (mod)
2566 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
2567 }
2568 nimap = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10002569 error = xfs_bmapi(NULL, ip, endoffset_fsb - 1,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002570 1, 0, NULL, 0, &imap, &nimap, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 if (error)
2572 goto out_unlock_iolock;
2573 ASSERT(nimap == 0 || nimap == 1);
2574 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
2575 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2576 mod++;
2577 if (mod && (mod != mp->m_sb.sb_rextsize))
2578 endoffset_fsb -= mod;
2579 }
2580 }
2581 if ((done = (endoffset_fsb <= startoffset_fsb)))
2582 /*
2583 * One contiguous piece to clear
2584 */
2585 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
2586 else {
2587 /*
2588 * Some full blocks, possibly two pieces to clear
2589 */
2590 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
2591 error = xfs_zero_remaining_bytes(ip, offset,
2592 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
2593 if (!error &&
2594 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
2595 error = xfs_zero_remaining_bytes(ip,
2596 XFS_FSB_TO_B(mp, endoffset_fsb),
2597 offset + len - 1);
2598 }
2599
2600 /*
2601 * free file space until done or until there is an error
2602 */
2603 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
2604 while (!error && !done) {
2605
2606 /*
David Chinner91ebecc2007-07-19 16:28:30 +10002607 * allocate and setup the transaction. Allow this
2608 * transaction to dip into the reserve blocks to ensure
2609 * the freeing of the space succeeds at ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 */
2611 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
David Chinner91ebecc2007-07-19 16:28:30 +10002612 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 error = xfs_trans_reserve(tp,
2614 resblks,
2615 XFS_WRITE_LOG_RES(mp),
2616 0,
2617 XFS_TRANS_PERM_LOG_RES,
2618 XFS_WRITE_LOG_COUNT);
2619
2620 /*
2621 * check for running out of space
2622 */
2623 if (error) {
2624 /*
2625 * Free the transaction structure.
2626 */
2627 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
2628 xfs_trans_cancel(tp, 0);
2629 break;
2630 }
2631 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002632 error = xfs_trans_reserve_quota(tp, mp,
2633 ip->i_udquot, ip->i_gdquot,
2634 resblks, 0, XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 if (error)
2636 goto error1;
2637
Christoph Hellwig898621d2010-06-24 11:36:58 +10002638 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
2640 /*
2641 * issue the bunmapi() call to free the blocks
2642 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06002643 xfs_bmap_init(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10002644 error = xfs_bunmapi(tp, ip, startoffset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 endoffset_fsb - startoffset_fsb,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002646 0, 2, &firstfsb, &free_list, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 if (error) {
2648 goto error0;
2649 }
2650
2651 /*
2652 * complete the transaction
2653 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002654 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 if (error) {
2656 goto error0;
2657 }
2658
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002659 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2661 }
2662
2663 out_unlock_iolock:
2664 if (need_iolock)
2665 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
2666 return error;
2667
2668 error0:
2669 xfs_bmap_cancel(&free_list);
2670 error1:
2671 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
2672 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
2673 XFS_ILOCK_EXCL);
2674 return error;
2675}
2676
2677/*
2678 * xfs_change_file_space()
2679 * This routine allocates or frees disk space for the given file.
2680 * The user specified parameters are checked for alignment and size
2681 * limitations.
2682 *
2683 * RETURNS:
2684 * 0 on success
2685 * errno on error
2686 *
2687 */
2688int
2689xfs_change_file_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002690 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 int cmd,
2692 xfs_flock64_t *bf,
2693 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 int attr_flags)
2695{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002696 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 int clrprealloc;
2698 int error;
2699 xfs_fsize_t fsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 int setprealloc;
2701 xfs_off_t startoffset;
2702 xfs_off_t llen;
2703 xfs_trans_t *tp;
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002704 struct iattr iattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
Christoph Hellwig993386c2007-08-28 16:12:30 +10002706 if (!S_ISREG(ip->i_d.di_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 return XFS_ERROR(EINVAL);
2708
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 switch (bf->l_whence) {
2710 case 0: /*SEEK_SET*/
2711 break;
2712 case 1: /*SEEK_CUR*/
2713 bf->l_start += offset;
2714 break;
2715 case 2: /*SEEK_END*/
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10002716 bf->l_start += ip->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 break;
2718 default:
2719 return XFS_ERROR(EINVAL);
2720 }
2721
2722 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
2723
2724 if ( (bf->l_start < 0)
2725 || (bf->l_start > XFS_MAXIOFFSET(mp))
2726 || (bf->l_start + llen < 0)
2727 || (bf->l_start + llen > XFS_MAXIOFFSET(mp)))
2728 return XFS_ERROR(EINVAL);
2729
2730 bf->l_whence = 0;
2731
2732 startoffset = bf->l_start;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10002733 fsize = ip->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
2735 /*
2736 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
2737 * file space.
2738 * These calls do NOT zero the data space allocated to the file,
2739 * nor do they change the file size.
2740 *
2741 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
2742 * space.
2743 * These calls cause the new file data to be zeroed and the file
2744 * size to be changed.
2745 */
2746 setprealloc = clrprealloc = 0;
2747
2748 switch (cmd) {
2749 case XFS_IOC_RESVSP:
2750 case XFS_IOC_RESVSP64:
2751 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
2752 1, attr_flags);
2753 if (error)
2754 return error;
2755 setprealloc = 1;
2756 break;
2757
2758 case XFS_IOC_UNRESVSP:
2759 case XFS_IOC_UNRESVSP64:
2760 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
2761 attr_flags)))
2762 return error;
2763 break;
2764
2765 case XFS_IOC_ALLOCSP:
2766 case XFS_IOC_ALLOCSP64:
2767 case XFS_IOC_FREESP:
2768 case XFS_IOC_FREESP64:
2769 if (startoffset > fsize) {
2770 error = xfs_alloc_file_space(ip, fsize,
2771 startoffset - fsize, 0, attr_flags);
2772 if (error)
2773 break;
2774 }
2775
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002776 iattr.ia_valid = ATTR_SIZE;
2777 iattr.ia_size = startoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
Christoph Hellwigea5a3dc82008-10-30 18:27:48 +11002779 error = xfs_setattr(ip, &iattr, attr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
2781 if (error)
2782 return error;
2783
2784 clrprealloc = 1;
2785 break;
2786
2787 default:
2788 ASSERT(0);
2789 return XFS_ERROR(EINVAL);
2790 }
2791
2792 /*
2793 * update the inode timestamp, mode, and prealloc flag bits
2794 */
2795 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
2796
2797 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
2798 0, 0, 0))) {
2799 /* ASSERT(0); */
2800 xfs_trans_cancel(tp, 0);
2801 return error;
2802 }
2803
2804 xfs_ilock(ip, XFS_ILOCK_EXCL);
2805
Christoph Hellwig898621d2010-06-24 11:36:58 +10002806 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
Christoph Hellwig0f285c82008-07-18 17:13:28 +10002808 if ((attr_flags & XFS_ATTR_DMI) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 ip->i_d.di_mode &= ~S_ISUID;
2810
2811 /*
2812 * Note that we don't have to worry about mandatory
2813 * file locking being disabled here because we only
2814 * clear the S_ISGID bit if the Group execute bit is
2815 * on, but if it was on then mandatory locking wouldn't
2816 * have been enabled.
2817 */
2818 if (ip->i_d.di_mode & S_IXGRP)
2819 ip->i_d.di_mode &= ~S_ISGID;
2820
2821 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2822 }
2823 if (setprealloc)
2824 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
2825 else if (clrprealloc)
2826 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
2827
2828 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2829 xfs_trans_set_sync(tp);
2830
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002831 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
2833 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2834
2835 return error;
2836}