blob: 077c86b6cb22756dd1e57ec46366b2df63cb76a0 [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"
29#include "xfs_dmapi.h"
30#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_dir2_sf.h"
36#include "xfs_attr_sf.h"
37#include "xfs_dinode.h"
38#include "xfs_inode.h"
39#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_itable.h"
41#include "xfs_btree.h"
42#include "xfs_ialloc.h"
43#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_attr.h"
46#include "xfs_rw.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include "xfs_quota.h"
49#include "xfs_utils.h"
Nathan Scotta844f452005-11-02 14:38:42 +110050#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include "xfs_trans_space.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include "xfs_log_priv.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100053#include "xfs_filestream.h"
Christoph Hellwig993386c2007-08-28 16:12:30 +100054#include "xfs_vnodeops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Christoph Hellwig993386c2007-08-28 16:12:30 +100056int
Linus Torvalds1da177e2005-04-16 15:20:36 -070057xfs_open(
Christoph Hellwig993386c2007-08-28 16:12:30 +100058 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
63 return XFS_ERROR(EIO);
64
65 /*
66 * If it's a directory with any blocks, read-ahead block 0
67 * as we're almost certain to have the next operation be a read there.
68 */
Christoph Hellwig993386c2007-08-28 16:12:30 +100069 if (S_ISDIR(ip->i_d.di_mode) && ip->i_d.di_nextents > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 mode = xfs_ilock_map_shared(ip);
71 if (ip->i_d.di_nextents > 0)
72 (void)xfs_da_reada_buf(NULL, ip, 0, XFS_DATA_FORK);
73 xfs_iunlock(ip, mode);
74 }
75 return 0;
76}
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078int
79xfs_setattr(
Christoph Hellwig0f285c82008-07-18 17:13:28 +100080 struct xfs_inode *ip,
81 struct iattr *iattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 int flags,
83 cred_t *credp)
84{
Christoph Hellwig993386c2007-08-28 16:12:30 +100085 xfs_mount_t *mp = ip->i_mount;
David Chinnere4f75292008-08-13 16:00:45 +100086 struct inode *inode = VFS_I(ip);
Christoph Hellwig0f285c82008-07-18 17:13:28 +100087 int mask = iattr->ia_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int code;
90 uint lock_flags;
91 uint commit_flags=0;
92 uid_t uid=0, iuid=0;
93 gid_t gid=0, igid=0;
94 int timeflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct xfs_dquot *udqp, *gdqp, *olddquot1, *olddquot2;
96 int file_owner;
Dean Roehrich5fcbab32005-05-05 13:27:19 -070097 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Lachlan McIlroycf441ee2008-02-07 16:42:19 +110099 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000101 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return XFS_ERROR(EROFS);
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (XFS_FORCED_SHUTDOWN(mp))
105 return XFS_ERROR(EIO);
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 olddquot1 = olddquot2 = NULL;
108 udqp = gdqp = NULL;
109
110 /*
111 * If disk quotas is on, we make sure that the dquots do exist on disk,
112 * before we start any other transactions. Trying to do this later
113 * is messy. We don't care to take a readlock to look at the ids
114 * in inode here, because we can't hold it across the trans_reserve.
115 * If the IDs do change before we take the ilock, we're covered
116 * because the i_*dquot fields will get updated anyway.
117 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000118 if (XFS_IS_QUOTA_ON(mp) && (mask & (ATTR_UID|ATTR_GID))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 uint qflags = 0;
120
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000121 if ((mask & ATTR_UID) && XFS_IS_UQUOTA_ON(mp)) {
122 uid = iattr->ia_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 qflags |= XFS_QMOPT_UQUOTA;
124 } else {
125 uid = ip->i_d.di_uid;
126 }
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000127 if ((mask & ATTR_GID) && XFS_IS_GQUOTA_ON(mp)) {
128 gid = iattr->ia_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 qflags |= XFS_QMOPT_GQUOTA;
130 } else {
131 gid = ip->i_d.di_gid;
132 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 /*
135 * We take a reference when we initialize udqp and gdqp,
136 * so it is important that we never blindly double trip on
137 * the same variable. See xfs_create() for an example.
138 */
139 ASSERT(udqp == NULL);
140 ASSERT(gdqp == NULL);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000141 code = XFS_QM_DQVOPALLOC(mp, ip, uid, gid, ip->i_d.di_projid,
142 qflags, &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (code)
Jesper Juhl014c2542006-01-15 02:37:08 +0100144 return code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
146
147 /*
148 * For the other attributes, we acquire the inode lock and
149 * first do an error checking pass.
150 */
151 tp = NULL;
152 lock_flags = XFS_ILOCK_EXCL;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000153 if (flags & XFS_ATTR_NOLOCK)
Dean Roehrich5fcbab32005-05-05 13:27:19 -0700154 need_iolock = 0;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000155 if (!(mask & ATTR_SIZE)) {
156 if ((mask != (ATTR_CTIME|ATTR_ATIME|ATTR_MTIME)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 (mp->m_flags & XFS_MOUNT_WSYNC)) {
158 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
159 commit_flags = 0;
160 if ((code = xfs_trans_reserve(tp, 0,
161 XFS_ICHANGE_LOG_RES(mp), 0,
162 0, 0))) {
163 lock_flags = 0;
164 goto error_return;
165 }
166 }
167 } else {
Christoph Hellwigeb9df392007-08-16 18:42:07 +1000168 if (DM_EVENT_ENABLED(ip, DM_EVENT_TRUNCATE) &&
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000169 !(flags & XFS_ATTR_DMI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 int dmflags = AT_DELAY_FLAG(flags) | DM_SEM_FLAG_WR;
Christoph Hellwigbc4ac742008-03-06 13:45:58 +1100171 code = XFS_SEND_DATA(mp, DM_EVENT_TRUNCATE, ip,
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000172 iattr->ia_size, 0, dmflags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (code) {
174 lock_flags = 0;
175 goto error_return;
176 }
177 }
178 if (need_iolock)
179 lock_flags |= XFS_IOLOCK_EXCL;
180 }
181
182 xfs_ilock(ip, lock_flags);
183
184 /* boolean: are we the file owner? */
185 file_owner = (current_fsuid(credp) == ip->i_d.di_uid);
186
187 /*
188 * Change various properties of a file.
189 * Only the owner or users with CAP_FOWNER
190 * capability may do these things.
191 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000192 if (mask & (ATTR_MODE|ATTR_UID|ATTR_GID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 /*
194 * CAP_FOWNER overrides the following restrictions:
195 *
196 * The user ID of the calling process must be equal
197 * to the file owner ID, except in cases where the
198 * CAP_FSETID capability is applicable.
199 */
200 if (!file_owner && !capable(CAP_FOWNER)) {
201 code = XFS_ERROR(EPERM);
202 goto error_return;
203 }
204
205 /*
206 * CAP_FSETID overrides the following restrictions:
207 *
208 * The effective user ID of the calling process shall match
209 * the file owner when setting the set-user-ID and
210 * set-group-ID bits on that file.
211 *
212 * The effective group ID or one of the supplementary group
213 * IDs of the calling process shall match the group owner of
214 * the file when setting the set-group-ID bit on that file
215 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000216 if (mask & ATTR_MODE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 mode_t m = 0;
218
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000219 if ((iattr->ia_mode & S_ISUID) && !file_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 m |= S_ISUID;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000221 if ((iattr->ia_mode & S_ISGID) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 !in_group_p((gid_t)ip->i_d.di_gid))
223 m |= S_ISGID;
224#if 0
225 /* Linux allows this, Irix doesn't. */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000226 if ((iattr->ia_mode & S_ISVTX) && !S_ISDIR(ip->i_d.di_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 m |= S_ISVTX;
228#endif
229 if (m && !capable(CAP_FSETID))
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000230 iattr->ia_mode &= ~m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232 }
233
234 /*
235 * Change file ownership. Must be the owner or privileged.
236 * If the system was configured with the "restricted_chown"
237 * option, the owner is not permitted to give away the file,
238 * and can change the group id only to a group of which he
239 * or she is a member.
240 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000241 if (mask & (ATTR_UID|ATTR_GID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /*
243 * These IDs could have changed since we last looked at them.
244 * But, we're assured that if the ownership did change
245 * while we didn't have the inode locked, inode's dquot(s)
246 * would have changed also.
247 */
248 iuid = ip->i_d.di_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 igid = ip->i_d.di_gid;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000250 gid = (mask & ATTR_GID) ? iattr->ia_gid : igid;
251 uid = (mask & ATTR_UID) ? iattr->ia_uid : iuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 /*
254 * CAP_CHOWN overrides the following restrictions:
255 *
256 * If _POSIX_CHOWN_RESTRICTED is defined, this capability
257 * shall override the restriction that a process cannot
258 * change the user ID of a file it owns and the restriction
259 * that the group ID supplied to the chown() function
260 * shall be equal to either the group ID or one of the
261 * supplementary group IDs of the calling process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 */
263 if (restricted_chown &&
264 (iuid != uid || (igid != gid &&
265 !in_group_p((gid_t)gid))) &&
266 !capable(CAP_CHOWN)) {
267 code = XFS_ERROR(EPERM);
268 goto error_return;
269 }
270 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000271 * Do a quota reservation only if uid/gid is actually
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 * going to change.
273 */
274 if ((XFS_IS_UQUOTA_ON(mp) && iuid != uid) ||
275 (XFS_IS_GQUOTA_ON(mp) && igid != gid)) {
276 ASSERT(tp);
277 code = XFS_QM_DQVOPCHOWNRESV(mp, tp, ip, udqp, gdqp,
278 capable(CAP_FOWNER) ?
279 XFS_QMOPT_FORCE_RES : 0);
280 if (code) /* out of quota */
281 goto error_return;
282 }
283 }
284
285 /*
286 * Truncate file. Must have write permission and not be a directory.
287 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000288 if (mask & ATTR_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /* Short circuit the truncate case for zero length files */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000290 if (iattr->ia_size == 0 &&
291 ip->i_size == 0 && ip->i_d.di_nextents == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 xfs_iunlock(ip, XFS_ILOCK_EXCL);
293 lock_flags &= ~XFS_ILOCK_EXCL;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000294 if (mask & ATTR_CTIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
296 code = 0;
297 goto error_return;
298 }
299
Christoph Hellwig42173f62008-04-22 17:33:25 +1000300 if (S_ISDIR(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 code = XFS_ERROR(EISDIR);
302 goto error_return;
Christoph Hellwig42173f62008-04-22 17:33:25 +1000303 } else if (!S_ISREG(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 code = XFS_ERROR(EINVAL);
305 goto error_return;
306 }
307 /*
308 * Make sure that the dquots are attached to the inode.
309 */
310 if ((code = XFS_QM_DQATTACH(mp, ip, XFS_QMOPT_ILOCKED)))
311 goto error_return;
312 }
313
314 /*
315 * Change file access or modified times.
316 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000317 if (mask & (ATTR_ATIME|ATTR_MTIME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (!file_owner) {
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000319 if ((mask & (ATTR_MTIME_SET|ATTR_ATIME_SET)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 !capable(CAP_FOWNER)) {
321 code = XFS_ERROR(EPERM);
322 goto error_return;
323 }
324 }
325 }
326
327 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 * Now we can make the changes. Before we join the inode
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000329 * to the transaction, if ATTR_SIZE is set then take care of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 * the part of the truncation that must be done without the
331 * inode lock. This needs to be done before joining the inode
332 * to the transaction, because the inode cannot be unlocked
333 * once it is a part of the transaction.
334 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000335 if (mask & ATTR_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 code = 0;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000337 if (iattr->ia_size > ip->i_size) {
Christoph Hellwig61436fe2008-05-20 11:30:46 +1000338 /*
339 * Do the first part of growing a file: zero any data
340 * in the last block that is beyond the old EOF. We
341 * need to do this before the inode is joined to the
342 * transaction to modify the i_size.
343 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000344 code = xfs_zero_eof(ip, iattr->ia_size, ip->i_size);
Eric Sandeen374e2ac2005-11-02 15:07:34 +1100345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 xfs_iunlock(ip, XFS_ILOCK_EXCL);
David Chinnerc32676e2007-07-19 16:28:58 +1000347
348 /*
349 * We are going to log the inode size change in this
350 * transaction so any previous writes that are beyond the on
351 * disk EOF and the new EOF that have not been written out need
352 * to be written here. If we do not write the data out, we
353 * expose ourselves to the null files problem.
354 *
355 * Only flush from the on disk size to the smaller of the in
356 * memory file size or the new size as that's the range we
357 * really care about here and prevents waiting for other data
358 * not within the range we care about here.
359 */
360 if (!code &&
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000361 ip->i_size != ip->i_d.di_size &&
362 iattr->ia_size > ip->i_d.di_size) {
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000363 code = xfs_flush_pages(ip,
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000364 ip->i_d.di_size, iattr->ia_size,
David Chinnerc32676e2007-07-19 16:28:58 +1000365 XFS_B_ASYNC, FI_NONE);
366 }
367
368 /* wait for all I/O to complete */
Christoph Hellwigb677c212007-08-29 11:46:28 +1000369 vn_iowait(ip);
David Chinnerc32676e2007-07-19 16:28:58 +1000370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (!code)
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000372 code = xfs_itruncate_data(ip, iattr->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (code) {
374 ASSERT(tp == NULL);
375 lock_flags &= ~XFS_ILOCK_EXCL;
376 ASSERT(lock_flags == XFS_IOLOCK_EXCL);
377 goto error_return;
378 }
379 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_SIZE);
380 if ((code = xfs_trans_reserve(tp, 0,
381 XFS_ITRUNCATE_LOG_RES(mp), 0,
382 XFS_TRANS_PERM_LOG_RES,
383 XFS_ITRUNCATE_LOG_COUNT))) {
384 xfs_trans_cancel(tp, 0);
385 if (need_iolock)
386 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
387 return code;
388 }
389 commit_flags = XFS_TRANS_RELEASE_LOG_RES;
390 xfs_ilock(ip, XFS_ILOCK_EXCL);
391 }
392
393 if (tp) {
394 xfs_trans_ijoin(tp, ip, lock_flags);
395 xfs_trans_ihold(tp, ip);
396 }
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 /*
399 * Truncate file. Must have write permission and not be a directory.
400 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000401 if (mask & ATTR_SIZE) {
David Chinner44d814c2008-03-06 13:45:29 +1100402 /*
403 * Only change the c/mtime if we are changing the size
404 * or we are explicitly asked to change it. This handles
405 * the semantic difference between truncate() and ftruncate()
406 * as implemented in the VFS.
407 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000408 if (iattr->ia_size != ip->i_size || (mask & ATTR_CTIME))
David Chinner44d814c2008-03-06 13:45:29 +1100409 timeflags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
410
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000411 if (iattr->ia_size > ip->i_size) {
412 ip->i_d.di_size = iattr->ia_size;
413 ip->i_size = iattr->ia_size;
414 if (!(flags & XFS_ATTR_DMI))
Christoph Hellwig61436fe2008-05-20 11:30:46 +1000415 xfs_ichgtime(ip, XFS_ICHGTIME_CHG);
416 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000417 } else if (iattr->ia_size <= ip->i_size ||
418 (iattr->ia_size == 0 && ip->i_d.di_nextents)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 /*
420 * signal a sync transaction unless
421 * we're truncating an already unlinked
422 * file on a wsync filesystem
423 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000424 code = xfs_itruncate_finish(&tp, ip, iattr->ia_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 XFS_DATA_FORK,
426 ((ip->i_d.di_nlink != 0 ||
427 !(mp->m_flags & XFS_MOUNT_WSYNC))
428 ? 1 : 0));
Nathan Scott7d4fb402006-06-09 15:27:16 +1000429 if (code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 goto abort_return;
Nathan Scott7d4fb402006-06-09 15:27:16 +1000431 /*
432 * Truncated "down", so we're removing references
433 * to old data here - if we now delay flushing for
434 * a long time, we expose ourselves unduly to the
435 * notorious NULL files problem. So, we mark this
436 * vnode and flush it when the file is closed, and
437 * do not wait the usual (long) time for writeout.
438 */
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000439 xfs_iflags_set(ip, XFS_ITRUNCATED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
443 /*
444 * Change file access modes.
445 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000446 if (mask & ATTR_MODE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 ip->i_d.di_mode &= S_IFMT;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000448 ip->i_d.di_mode |= iattr->ia_mode & ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000450 inode->i_mode &= S_IFMT;
451 inode->i_mode |= iattr->ia_mode & ~S_IFMT;
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
454 timeflags |= XFS_ICHGTIME_CHG;
455 }
456
457 /*
458 * Change file ownership. Must be the owner or privileged.
459 * If the system was configured with the "restricted_chown"
460 * option, the owner is not permitted to give away the file,
461 * and can change the group id only to a group of which he
462 * or she is a member.
463 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000464 if (mask & (ATTR_UID|ATTR_GID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /*
466 * CAP_FSETID overrides the following restrictions:
467 *
468 * The set-user-ID and set-group-ID bits of a file will be
469 * cleared upon successful return from chown()
470 */
471 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
472 !capable(CAP_FSETID)) {
473 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
474 }
475
476 /*
477 * Change the ownerships and register quota modifications
478 * in the transaction.
479 */
480 if (iuid != uid) {
481 if (XFS_IS_UQUOTA_ON(mp)) {
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000482 ASSERT(mask & ATTR_UID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 ASSERT(udqp);
484 olddquot1 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
485 &ip->i_udquot, udqp);
486 }
487 ip->i_d.di_uid = uid;
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000488 inode->i_uid = uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490 if (igid != gid) {
491 if (XFS_IS_GQUOTA_ON(mp)) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000492 ASSERT(!XFS_IS_PQUOTA_ON(mp));
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000493 ASSERT(mask & ATTR_GID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 ASSERT(gdqp);
495 olddquot2 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
496 &ip->i_gdquot, gdqp);
497 }
498 ip->i_d.di_gid = gid;
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000499 inode->i_gid = gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
503 timeflags |= XFS_ICHGTIME_CHG;
504 }
505
506
507 /*
508 * Change file access or modified times.
509 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000510 if (mask & (ATTR_ATIME|ATTR_MTIME)) {
511 if (mask & ATTR_ATIME) {
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000512 inode->i_atime = iattr->ia_atime;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000513 ip->i_d.di_atime.t_sec = iattr->ia_atime.tv_sec;
514 ip->i_d.di_atime.t_nsec = iattr->ia_atime.tv_nsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 ip->i_update_core = 1;
516 timeflags &= ~XFS_ICHGTIME_ACC;
517 }
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000518 if (mask & ATTR_MTIME) {
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000519 inode->i_mtime = iattr->ia_mtime;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000520 ip->i_d.di_mtime.t_sec = iattr->ia_mtime.tv_sec;
521 ip->i_d.di_mtime.t_nsec = iattr->ia_mtime.tv_nsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 timeflags &= ~XFS_ICHGTIME_MOD;
523 timeflags |= XFS_ICHGTIME_CHG;
524 }
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000525 if (tp && (mask & (ATTR_MTIME_SET|ATTR_ATIME_SET)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
527 }
528
529 /*
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000530 * Change file inode change time only if ATTR_CTIME set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 * AND we have been called by a DMI function.
532 */
533
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000534 if ((flags & XFS_ATTR_DMI) && (mask & ATTR_CTIME)) {
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000535 inode->i_ctime = iattr->ia_ctime;
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000536 ip->i_d.di_ctime.t_sec = iattr->ia_ctime.tv_sec;
537 ip->i_d.di_ctime.t_nsec = iattr->ia_ctime.tv_nsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 ip->i_update_core = 1;
539 timeflags &= ~XFS_ICHGTIME_CHG;
540 }
541
542 /*
543 * Send out timestamp changes that need to be set to the
544 * current time. Not done when called by a DMI function.
545 */
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000546 if (timeflags && !(flags & XFS_ATTR_DMI))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 xfs_ichgtime(ip, timeflags);
548
549 XFS_STATS_INC(xs_ig_attrchg);
550
551 /*
552 * If this is a synchronous mount, make sure that the
553 * transaction goes to disk before returning to the user.
554 * This is slightly sub-optimal in that truncates require
Nathan Scottc41564b2006-03-29 08:55:14 +1000555 * two sync transactions instead of one for wsync filesystems.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 * One for the truncate and one for the timestamps since we
557 * don't want to change the timestamps unless we're sure the
558 * truncate worked. Truncates are less than 1% of the laddis
559 * mix so this probably isn't worth the trouble to optimize.
560 */
561 code = 0;
562 if (tp) {
563 if (mp->m_flags & XFS_MOUNT_WSYNC)
564 xfs_trans_set_sync(tp);
565
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000566 code = xfs_trans_commit(tp, commit_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 xfs_iunlock(ip, lock_flags);
570
571 /*
572 * Release any dquot(s) the inode had kept before chown.
573 */
574 XFS_QM_DQRELE(mp, olddquot1);
575 XFS_QM_DQRELE(mp, olddquot2);
576 XFS_QM_DQRELE(mp, udqp);
577 XFS_QM_DQRELE(mp, gdqp);
578
579 if (code) {
580 return code;
581 }
582
Christoph Hellwigeb9df392007-08-16 18:42:07 +1000583 if (DM_EVENT_ENABLED(ip, DM_EVENT_ATTRIBUTE) &&
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000584 !(flags & XFS_ATTR_DMI)) {
Christoph Hellwigbc4ac742008-03-06 13:45:58 +1100585 (void) XFS_SEND_NAMESP(mp, DM_EVENT_ATTRIBUTE, ip, DM_RIGHT_NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 NULL, DM_RIGHT_NULL, NULL, NULL,
587 0, 0, AT_DELAY_FLAG(flags));
588 }
589 return 0;
590
591 abort_return:
592 commit_flags |= XFS_TRANS_ABORT;
593 /* FALLTHROUGH */
594 error_return:
595 XFS_QM_DQRELE(mp, udqp);
596 XFS_QM_DQRELE(mp, gdqp);
597 if (tp) {
598 xfs_trans_cancel(tp, commit_flags);
599 }
600 if (lock_flags != 0) {
601 xfs_iunlock(ip, lock_flags);
602 }
603 return code;
604}
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606/*
Nathan Scott7d4fb402006-06-09 15:27:16 +1000607 * The maximum pathlen is 1024 bytes. Since the minimum file system
608 * blocksize is 512 bytes, we can get a max of 2 extents back from
609 * bmapi.
610 */
611#define SYMLINK_MAPS 2
612
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000613STATIC int
614xfs_readlink_bmap(
615 xfs_inode_t *ip,
616 char *link)
617{
618 xfs_mount_t *mp = ip->i_mount;
619 int pathlen = ip->i_d.di_size;
620 int nmaps = SYMLINK_MAPS;
621 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
622 xfs_daddr_t d;
623 int byte_cnt;
624 int n;
625 xfs_buf_t *bp;
626 int error = 0;
627
628 error = xfs_bmapi(NULL, ip, 0, XFS_B_TO_FSB(mp, pathlen), 0, NULL, 0,
629 mval, &nmaps, NULL, NULL);
630 if (error)
631 goto out;
632
633 for (n = 0; n < nmaps; n++) {
634 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
635 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
636
637 bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt), 0);
638 error = XFS_BUF_GETERROR(bp);
639 if (error) {
640 xfs_ioerror_alert("xfs_readlink",
641 ip->i_mount, bp, XFS_BUF_ADDR(bp));
642 xfs_buf_relse(bp);
643 goto out;
644 }
645 if (pathlen < byte_cnt)
646 byte_cnt = pathlen;
647 pathlen -= byte_cnt;
648
649 memcpy(link, XFS_BUF_PTR(bp), byte_cnt);
650 xfs_buf_relse(bp);
651 }
652
653 link[ip->i_d.di_size] = '\0';
654 error = 0;
655
656 out:
657 return error;
658}
659
Christoph Hellwig993386c2007-08-28 16:12:30 +1000660int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661xfs_readlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000662 xfs_inode_t *ip,
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000663 char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000665 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100669 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 if (XFS_FORCED_SHUTDOWN(mp))
672 return XFS_ERROR(EIO);
673
674 xfs_ilock(ip, XFS_ILOCK_SHARED);
675
676 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFLNK);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000677 ASSERT(ip->i_d.di_size <= MAXPATHLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000679 pathlen = ip->i_d.di_size;
680 if (!pathlen)
681 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 if (ip->i_df.if_flags & XFS_IFINLINE) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000684 memcpy(link, ip->i_df.if_u1.if_data, pathlen);
685 link[pathlen] = '\0';
686 } else {
687 error = xfs_readlink_bmap(ip, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000690 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return error;
693}
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695/*
696 * xfs_fsync
697 *
David Chinner978b7232008-05-19 16:29:46 +1000698 * This is called to sync the inode and its data out to disk. We need to hold
699 * the I/O lock while flushing the data, and the inode lock while flushing the
700 * inode. The inode lock CANNOT be held while flushing the data, so acquire
701 * after we're done with that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000703int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704xfs_fsync(
David Chinner978b7232008-05-19 16:29:46 +1000705 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 xfs_trans_t *tp;
708 int error;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100709 int log_flushed = 0, changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100711 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
714 return XFS_ERROR(EIO);
715
David Chinner978b7232008-05-19 16:29:46 +1000716 /* capture size updates in I/O completion before writing the inode. */
Christoph Hellwig863890c2008-08-13 16:12:05 +1000717 error = filemap_fdatawait(VFS_I(ip)->i_mapping);
David Chinner978b7232008-05-19 16:29:46 +1000718 if (error)
719 return XFS_ERROR(error);
Lachlan McIlroy776a75f2007-09-14 15:22:50 +1000720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /*
David Chinner978b7232008-05-19 16:29:46 +1000722 * We always need to make sure that the required inode state is safe on
723 * disk. The vnode might be clean but we still might need to force the
724 * log because of committed transactions that haven't hit the disk yet.
725 * Likewise, there could be unflushed non-transactional changes to the
726 * inode core that have to go to disk and this requires us to issue
727 * a synchronous transaction to capture these changes correctly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 *
David Chinner978b7232008-05-19 16:29:46 +1000729 * This code relies on the assumption that if the update_* fields
730 * of the inode are clear and the inode is unpinned then it is clean
731 * and no action is required.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 */
733 xfs_ilock(ip, XFS_ILOCK_SHARED);
734
David Chinner978b7232008-05-19 16:29:46 +1000735 if (!(ip->i_update_size || ip->i_update_core)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 /*
David Chinner978b7232008-05-19 16:29:46 +1000737 * Timestamps/size haven't changed since last inode flush or
738 * inode transaction commit. That means either nothing got
739 * written or a transaction committed which caught the updates.
740 * If the latter happened and the transaction hasn't hit the
741 * disk yet, the inode will be still be pinned. If it is,
742 * force the log.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 */
744
745 xfs_iunlock(ip, XFS_ILOCK_SHARED);
746
747 if (xfs_ipincount(ip)) {
David Chinner978b7232008-05-19 16:29:46 +1000748 error = _xfs_log_force(ip->i_mount, (xfs_lsn_t)0,
749 XFS_LOG_FORCE | XFS_LOG_SYNC,
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100750 &log_flushed);
751 } else {
752 /*
David Chinner978b7232008-05-19 16:29:46 +1000753 * If the inode is not pinned and nothing has changed
754 * we don't need to flush the cache.
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100755 */
756 changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 } else {
759 /*
David Chinner978b7232008-05-19 16:29:46 +1000760 * Kick off a transaction to log the inode core to get the
761 * updates. The sync transaction will also force the log.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 */
763 xfs_iunlock(ip, XFS_ILOCK_SHARED);
764 tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_FSYNC_TS);
David Chinner978b7232008-05-19 16:29:46 +1000765 error = xfs_trans_reserve(tp, 0,
766 XFS_FSYNC_TS_LOG_RES(ip->i_mount), 0, 0, 0);
767 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 xfs_trans_cancel(tp, 0);
769 return error;
770 }
771 xfs_ilock(ip, XFS_ILOCK_EXCL);
772
773 /*
David Chinner978b7232008-05-19 16:29:46 +1000774 * Note - it's possible that we might have pushed ourselves out
775 * of the way during trans_reserve which would flush the inode.
776 * But there's no guarantee that the inode buffer has actually
777 * gone out yet (it's delwri). Plus the buffer could be pinned
778 * anyway if it's part of an inode in another recent
779 * transaction. So we play it safe and fire off the
780 * transaction anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 */
782 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
783 xfs_trans_ihold(tp, ip);
784 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
David Chinner978b7232008-05-19 16:29:46 +1000785 xfs_trans_set_sync(tp);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000786 error = _xfs_trans_commit(tp, 0, &log_flushed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 xfs_iunlock(ip, XFS_ILOCK_EXCL);
789 }
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100790
791 if ((ip->i_mount->m_flags & XFS_MOUNT_BARRIER) && changed) {
792 /*
793 * If the log write didn't issue an ordered tag we need
794 * to flush the disk cache for the data device now.
795 */
796 if (!log_flushed)
797 xfs_blkdev_issue_flush(ip->i_mount->m_ddev_targp);
798
799 /*
800 * If this inode is on the RT dev we need to flush that
Nathan Scottc41564b2006-03-29 08:55:14 +1000801 * cache as well.
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100802 */
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100803 if (XFS_IS_REALTIME_INODE(ip))
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100804 xfs_blkdev_issue_flush(ip->i_mount->m_rtdev_targp);
805 }
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return error;
808}
809
810/*
David Chinner92dfe8d2007-05-24 15:22:19 +1000811 * This is called by xfs_inactive to free any blocks beyond eof
812 * when the link count isn't zero and by xfs_dm_punch_hole() when
813 * punching a hole to EOF.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 */
David Chinner92dfe8d2007-05-24 15:22:19 +1000815int
816xfs_free_eofblocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 xfs_mount_t *mp,
David Chinner92dfe8d2007-05-24 15:22:19 +1000818 xfs_inode_t *ip,
819 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821 xfs_trans_t *tp;
822 int error;
823 xfs_fileoff_t end_fsb;
824 xfs_fileoff_t last_fsb;
825 xfs_filblks_t map_len;
826 int nimaps;
827 xfs_bmbt_irec_t imap;
David Chinner92dfe8d2007-05-24 15:22:19 +1000828 int use_iolock = (flags & XFS_FREE_EOF_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 /*
831 * Figure out if there are any blocks beyond the end
832 * of the file. If not, then there is nothing to do.
833 */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000834 end_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)ip->i_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 last_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
836 map_len = last_fsb - end_fsb;
837 if (map_len <= 0)
Jesper Juhl014c2542006-01-15 02:37:08 +0100838 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 nimaps = 1;
841 xfs_ilock(ip, XFS_ILOCK_SHARED);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000842 error = xfs_bmapi(NULL, ip, end_fsb, map_len, 0,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000843 NULL, 0, &imap, &nimaps, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 xfs_iunlock(ip, XFS_ILOCK_SHARED);
845
846 if (!error && (nimaps != 0) &&
Yingping Lu68bdb6e2006-01-11 15:38:31 +1100847 (imap.br_startblock != HOLESTARTBLOCK ||
848 ip->i_delayed_blks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 /*
850 * Attach the dquots to the inode up front.
851 */
852 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
Jesper Juhl014c2542006-01-15 02:37:08 +0100853 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 /*
856 * There are blocks after the end of file.
857 * Free them up now by truncating the file to
858 * its current size.
859 */
860 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
861
862 /*
863 * Do the xfs_itruncate_start() call before
864 * reserving any log space because
865 * itruncate_start will call into the buffer
866 * cache and we can't
867 * do that within a transaction.
868 */
David Chinner92dfe8d2007-05-24 15:22:19 +1000869 if (use_iolock)
870 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +1000871 error = xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE,
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000872 ip->i_size);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +1000873 if (error) {
Jesper Juhl87ae3c22007-06-28 16:43:14 +1000874 xfs_trans_cancel(tp, 0);
David Chinner92dfe8d2007-05-24 15:22:19 +1000875 if (use_iolock)
876 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +1000877 return error;
878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 error = xfs_trans_reserve(tp, 0,
881 XFS_ITRUNCATE_LOG_RES(mp),
882 0, XFS_TRANS_PERM_LOG_RES,
883 XFS_ITRUNCATE_LOG_COUNT);
884 if (error) {
885 ASSERT(XFS_FORCED_SHUTDOWN(mp));
886 xfs_trans_cancel(tp, 0);
887 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +0100888 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
890
891 xfs_ilock(ip, XFS_ILOCK_EXCL);
892 xfs_trans_ijoin(tp, ip,
893 XFS_IOLOCK_EXCL |
894 XFS_ILOCK_EXCL);
895 xfs_trans_ihold(tp, ip);
896
897 error = xfs_itruncate_finish(&tp, ip,
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000898 ip->i_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 XFS_DATA_FORK,
900 0);
901 /*
902 * If we get an error at this point we
903 * simply don't bother truncating the file.
904 */
905 if (error) {
906 xfs_trans_cancel(tp,
907 (XFS_TRANS_RELEASE_LOG_RES |
908 XFS_TRANS_ABORT));
909 } else {
910 error = xfs_trans_commit(tp,
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000911 XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
David Chinner92dfe8d2007-05-24 15:22:19 +1000913 xfs_iunlock(ip, (use_iolock ? (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)
914 : XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100916 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
919/*
920 * Free a symlink that has blocks associated with it.
921 */
922STATIC int
923xfs_inactive_symlink_rmt(
924 xfs_inode_t *ip,
925 xfs_trans_t **tpp)
926{
927 xfs_buf_t *bp;
928 int committed;
929 int done;
930 int error;
931 xfs_fsblock_t first_block;
932 xfs_bmap_free_t free_list;
933 int i;
934 xfs_mount_t *mp;
935 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
936 int nmaps;
937 xfs_trans_t *ntp;
938 int size;
939 xfs_trans_t *tp;
940
941 tp = *tpp;
942 mp = ip->i_mount;
943 ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip));
944 /*
945 * We're freeing a symlink that has some
946 * blocks allocated to it. Free the
947 * blocks here. We know that we've got
948 * either 1 or 2 extents and that we can
949 * free them all in one bunmapi call.
950 */
951 ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
952 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
953 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
954 ASSERT(XFS_FORCED_SHUTDOWN(mp));
955 xfs_trans_cancel(tp, 0);
956 *tpp = NULL;
957 return error;
958 }
959 /*
960 * Lock the inode, fix the size, and join it to the transaction.
961 * Hold it so in the normal path, we still have it locked for
962 * the second transaction. In the error paths we need it
963 * held so the cancel won't rele it, see below.
964 */
965 xfs_ilock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
966 size = (int)ip->i_d.di_size;
967 ip->i_d.di_size = 0;
968 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
969 xfs_trans_ihold(tp, ip);
970 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
971 /*
972 * Find the block(s) so we can inval and unmap them.
973 */
974 done = 0;
975 XFS_BMAP_INIT(&free_list, &first_block);
Tobias Klausere8c96f82006-03-24 03:15:34 -0800976 nmaps = ARRAY_SIZE(mval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if ((error = xfs_bmapi(tp, ip, 0, XFS_B_TO_FSB(mp, size),
978 XFS_BMAPI_METADATA, &first_block, 0, mval, &nmaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000979 &free_list, NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 goto error0;
981 /*
982 * Invalidate the block(s).
983 */
984 for (i = 0; i < nmaps; i++) {
985 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
986 XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
987 XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
988 xfs_trans_binval(tp, bp);
989 }
990 /*
991 * Unmap the dead block(s) to the free_list.
992 */
993 if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000994 &first_block, &free_list, NULL, &done)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 goto error1;
996 ASSERT(done);
997 /*
998 * Commit the first transaction. This logs the EFI and the inode.
999 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001000 if ((error = xfs_bmap_finish(&tp, &free_list, &committed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 goto error1;
1002 /*
1003 * The transaction must have been committed, since there were
1004 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
1005 * The new tp has the extent freeing and EFDs.
1006 */
1007 ASSERT(committed);
1008 /*
1009 * The first xact was committed, so add the inode to the new one.
1010 * Mark it dirty so it will be logged and moved forward in the log as
1011 * part of every commit.
1012 */
1013 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1014 xfs_trans_ihold(tp, ip);
1015 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1016 /*
1017 * Get a new, empty transaction to return to our caller.
1018 */
1019 ntp = xfs_trans_dup(tp);
1020 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001021 * Commit the transaction containing extent freeing and EFDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 * If we get an error on the commit here or on the reserve below,
1023 * we need to unlock the inode since the new transaction doesn't
1024 * have the inode attached.
1025 */
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001026 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 tp = ntp;
1028 if (error) {
1029 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1030 goto error0;
1031 }
1032 /*
1033 * Remove the memory for extent descriptions (just bookkeeping).
1034 */
1035 if (ip->i_df.if_bytes)
1036 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
1037 ASSERT(ip->i_df.if_bytes == 0);
1038 /*
1039 * Put an itruncate log reservation in the new transaction
1040 * for our caller.
1041 */
1042 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
1043 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
1044 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1045 goto error0;
1046 }
1047 /*
1048 * Return with the inode locked but not joined to the transaction.
1049 */
1050 *tpp = tp;
1051 return 0;
1052
1053 error1:
1054 xfs_bmap_cancel(&free_list);
1055 error0:
1056 /*
1057 * Have to come here with the inode locked and either
1058 * (held and in the transaction) or (not in the transaction).
1059 * If the inode isn't held then cancel would iput it, but
1060 * that's wrong since this is inactive and the vnode ref
1061 * count is 0 already.
1062 * Cancel won't do anything to the inode if held, but it still
1063 * needs to be locked until the cancel is done, if it was
1064 * joined to the transaction.
1065 */
1066 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1067 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1068 *tpp = NULL;
1069 return error;
1070
1071}
1072
1073STATIC int
1074xfs_inactive_symlink_local(
1075 xfs_inode_t *ip,
1076 xfs_trans_t **tpp)
1077{
1078 int error;
1079
1080 ASSERT(ip->i_d.di_size <= XFS_IFORK_DSIZE(ip));
1081 /*
1082 * We're freeing a symlink which fit into
1083 * the inode. Just free the memory used
1084 * to hold the old symlink.
1085 */
1086 error = xfs_trans_reserve(*tpp, 0,
1087 XFS_ITRUNCATE_LOG_RES(ip->i_mount),
1088 0, XFS_TRANS_PERM_LOG_RES,
1089 XFS_ITRUNCATE_LOG_COUNT);
1090
1091 if (error) {
1092 xfs_trans_cancel(*tpp, 0);
1093 *tpp = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +01001094 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
1096 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1097
1098 /*
1099 * Zero length symlinks _can_ exist.
1100 */
1101 if (ip->i_df.if_bytes > 0) {
1102 xfs_idata_realloc(ip,
1103 -(ip->i_df.if_bytes),
1104 XFS_DATA_FORK);
1105 ASSERT(ip->i_df.if_bytes == 0);
1106 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001107 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110STATIC int
1111xfs_inactive_attrs(
1112 xfs_inode_t *ip,
1113 xfs_trans_t **tpp)
1114{
1115 xfs_trans_t *tp;
1116 int error;
1117 xfs_mount_t *mp;
1118
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001119 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 tp = *tpp;
1121 mp = ip->i_mount;
1122 ASSERT(ip->i_d.di_forkoff != 0);
David Chinnere5720ee2008-04-10 12:21:18 +10001123 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 xfs_iunlock(ip, XFS_ILOCK_EXCL);
David Chinnere5720ee2008-04-10 12:21:18 +10001125 if (error)
1126 goto error_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 error = xfs_attr_inactive(ip);
David Chinnere5720ee2008-04-10 12:21:18 +10001129 if (error)
1130 goto error_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1133 error = xfs_trans_reserve(tp, 0,
1134 XFS_IFREE_LOG_RES(mp),
1135 0, XFS_TRANS_PERM_LOG_RES,
1136 XFS_INACTIVE_LOG_COUNT);
David Chinnere5720ee2008-04-10 12:21:18 +10001137 if (error)
1138 goto error_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 xfs_ilock(ip, XFS_ILOCK_EXCL);
1141 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1142 xfs_trans_ihold(tp, ip);
1143 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1144
1145 ASSERT(ip->i_d.di_anextents == 0);
1146
1147 *tpp = tp;
Jesper Juhl014c2542006-01-15 02:37:08 +01001148 return 0;
David Chinnere5720ee2008-04-10 12:21:18 +10001149
1150error_cancel:
1151 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1152 xfs_trans_cancel(tp, 0);
1153error_unlock:
1154 *tpp = NULL;
1155 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1156 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
Christoph Hellwig993386c2007-08-28 16:12:30 +10001159int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160xfs_release(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001161 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
David Chinnere4f75292008-08-13 16:00:45 +10001163 bhv_vnode_t *vp = VFS_I(ip);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001164 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 int error;
1166
Christoph Hellwig42173f62008-04-22 17:33:25 +10001167 if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001171 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return 0;
1173
David Chinner2a82b8b2007-07-11 11:09:12 +10001174 if (!XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001175 int truncated;
1176
David Chinner2a82b8b2007-07-11 11:09:12 +10001177 /*
1178 * If we are using filestreams, and we have an unlinked
1179 * file that we are processing the last close on, then nothing
1180 * will be able to reopen and write to this file. Purge this
1181 * inode from the filestreams cache so that it doesn't delay
1182 * teardown of the inode.
1183 */
1184 if ((ip->i_d.di_nlink == 0) && xfs_inode_is_filestream(ip))
1185 xfs_filestream_deassociate(ip);
1186
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +10001187 /*
1188 * If we previously truncated this file and removed old data
1189 * in the process, we want to initiate "early" writeout on
1190 * the last close. This is an attempt to combat the notorious
1191 * NULL files problem which is particularly noticable from a
1192 * truncate down, buffered (re-)write (delalloc), followed by
1193 * a crash. What we are effectively doing here is
1194 * significantly reducing the time window where we'd otherwise
1195 * be exposed to that problem.
1196 */
Christoph Hellwig09262b42007-08-29 11:44:50 +10001197 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001198 if (truncated && VN_DIRTY(vp) && ip->i_delayed_blks > 0)
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001199 xfs_flush_pages(ip, 0, -1, XFS_B_ASYNC, FI_NONE);
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +10001200 }
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (ip->i_d.di_nlink != 0) {
1203 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001204 ((ip->i_size > 0) || (VN_CACHED(vp) > 0 ||
Yingping Lu68bdb6e2006-01-11 15:38:31 +11001205 ip->i_delayed_blks > 0)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
Nathan Scottdd9f4382006-01-11 15:28:28 +11001207 (!(ip->i_d.di_flags &
1208 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)))) {
David Chinner92dfe8d2007-05-24 15:22:19 +10001209 error = xfs_free_eofblocks(mp, ip, XFS_FREE_EOF_LOCK);
1210 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001211 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
1213 }
1214
1215 return 0;
1216}
1217
1218/*
1219 * xfs_inactive
1220 *
1221 * This is called when the vnode reference count for the vnode
1222 * goes to zero. If the file has been unlinked, then it must
1223 * now be truncated. Also, we clear all of the read-ahead state
1224 * kept for the inode here since the file is now closed.
1225 */
Christoph Hellwig993386c2007-08-28 16:12:30 +10001226int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227xfs_inactive(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001228 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
David Chinnere4f75292008-08-13 16:00:45 +10001230 bhv_vnode_t *vp = VFS_I(ip);
Nathan Scott67fcaa72006-06-09 17:00:52 +10001231 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 xfs_fsblock_t first_block;
1233 int committed;
1234 xfs_trans_t *tp;
1235 xfs_mount_t *mp;
1236 int error;
1237 int truncate;
1238
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001239 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 /*
1242 * If the inode is already free, then there can be nothing
1243 * to clean up here.
1244 */
1245 if (ip->i_d.di_mode == 0 || VN_BAD(vp)) {
1246 ASSERT(ip->i_df.if_real_bytes == 0);
1247 ASSERT(ip->i_df.if_broot_bytes == 0);
1248 return VN_INACTIVE_CACHE;
1249 }
1250
1251 /*
1252 * Only do a truncate if it's a regular file with
1253 * some actual space in it. It's OK to look at the
1254 * inode's fields without the lock because we're the
1255 * only one with a reference to the inode.
1256 */
1257 truncate = ((ip->i_d.di_nlink == 0) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001258 ((ip->i_d.di_size != 0) || (ip->i_size != 0) ||
1259 (ip->i_d.di_nextents > 0) || (ip->i_delayed_blks > 0)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 ((ip->i_d.di_mode & S_IFMT) == S_IFREG));
1261
1262 mp = ip->i_mount;
1263
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11001264 if (ip->i_d.di_nlink == 0 && DM_EVENT_ENABLED(ip, DM_EVENT_DESTROY))
1265 XFS_SEND_DESTROY(mp, ip, DM_RIGHT_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 error = 0;
1268
1269 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001270 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 goto out;
1272
1273 if (ip->i_d.di_nlink != 0) {
1274 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001275 ((ip->i_size > 0) || (VN_CACHED(vp) > 0 ||
Yingping Lu68bdb6e2006-01-11 15:38:31 +11001276 ip->i_delayed_blks > 0)) &&
Nathan Scottdd9f4382006-01-11 15:28:28 +11001277 (ip->i_df.if_flags & XFS_IFEXTENTS) &&
1278 (!(ip->i_d.di_flags &
1279 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)) ||
1280 (ip->i_delayed_blks != 0)))) {
David Chinner92dfe8d2007-05-24 15:22:19 +10001281 error = xfs_free_eofblocks(mp, ip, XFS_FREE_EOF_LOCK);
1282 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001283 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 }
1285 goto out;
1286 }
1287
1288 ASSERT(ip->i_d.di_nlink == 0);
1289
1290 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001291 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1294 if (truncate) {
1295 /*
1296 * Do the xfs_itruncate_start() call before
1297 * reserving any log space because itruncate_start
1298 * will call into the buffer cache and we can't
1299 * do that within a transaction.
1300 */
1301 xfs_ilock(ip, XFS_IOLOCK_EXCL);
1302
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001303 error = xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE, 0);
1304 if (error) {
Jesper Juhl87ae3c22007-06-28 16:43:14 +10001305 xfs_trans_cancel(tp, 0);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001306 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1307 return VN_INACTIVE_CACHE;
1308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 error = xfs_trans_reserve(tp, 0,
1311 XFS_ITRUNCATE_LOG_RES(mp),
1312 0, XFS_TRANS_PERM_LOG_RES,
1313 XFS_ITRUNCATE_LOG_COUNT);
1314 if (error) {
1315 /* Don't call itruncate_cleanup */
1316 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1317 xfs_trans_cancel(tp, 0);
1318 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001319 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321
1322 xfs_ilock(ip, XFS_ILOCK_EXCL);
1323 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1324 xfs_trans_ihold(tp, ip);
1325
1326 /*
1327 * normally, we have to run xfs_itruncate_finish sync.
1328 * But if filesystem is wsync and we're in the inactive
1329 * path, then we know that nlink == 0, and that the
1330 * xaction that made nlink == 0 is permanently committed
1331 * since xfs_remove runs as a synchronous transaction.
1332 */
1333 error = xfs_itruncate_finish(&tp, ip, 0, XFS_DATA_FORK,
1334 (!(mp->m_flags & XFS_MOUNT_WSYNC) ? 1 : 0));
1335
1336 if (error) {
1337 xfs_trans_cancel(tp,
1338 XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1339 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001340 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
1342 } else if ((ip->i_d.di_mode & S_IFMT) == S_IFLNK) {
1343
1344 /*
1345 * If we get an error while cleaning up a
1346 * symlink we bail out.
1347 */
1348 error = (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) ?
1349 xfs_inactive_symlink_rmt(ip, &tp) :
1350 xfs_inactive_symlink_local(ip, &tp);
1351
1352 if (error) {
1353 ASSERT(tp == NULL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001354 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
1356
1357 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1358 xfs_trans_ihold(tp, ip);
1359 } else {
1360 error = xfs_trans_reserve(tp, 0,
1361 XFS_IFREE_LOG_RES(mp),
1362 0, XFS_TRANS_PERM_LOG_RES,
1363 XFS_INACTIVE_LOG_COUNT);
1364 if (error) {
1365 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1366 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001367 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
1369
1370 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1371 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1372 xfs_trans_ihold(tp, ip);
1373 }
1374
1375 /*
1376 * If there are attributes associated with the file
1377 * then blow them away now. The code calls a routine
1378 * that recursively deconstructs the attribute fork.
1379 * We need to just commit the current transaction
1380 * because we can't use it for xfs_attr_inactive().
1381 */
1382 if (ip->i_d.di_anextents > 0) {
1383 error = xfs_inactive_attrs(ip, &tp);
1384 /*
1385 * If we got an error, the transaction is already
1386 * cancelled, and the inode is unlocked. Just get out.
1387 */
1388 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001389 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 } else if (ip->i_afp) {
1391 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1392 }
1393
1394 /*
1395 * Free the inode.
1396 */
1397 XFS_BMAP_INIT(&free_list, &first_block);
1398 error = xfs_ifree(tp, ip, &free_list);
1399 if (error) {
1400 /*
1401 * If we fail to free the inode, shut down. The cancel
1402 * might do that, we need to make sure. Otherwise the
1403 * inode might be lost for a long time or forever.
1404 */
1405 if (!XFS_FORCED_SHUTDOWN(mp)) {
1406 cmn_err(CE_NOTE,
1407 "xfs_inactive: xfs_ifree() returned an error = %d on %s",
1408 error, mp->m_fsname);
Nathan Scott7d04a332006-06-09 14:58:38 +10001409 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 }
1411 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
1412 } else {
1413 /*
1414 * Credit the quota account(s). The inode is gone.
1415 */
1416 XFS_TRANS_MOD_DQUOT_BYINO(mp, tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1417
1418 /*
David Chinner78e9da72008-04-10 12:24:17 +10001419 * Just ignore errors at this point. There is nothing we can
1420 * do except to try to keep going. Make sure it's not a silent
1421 * error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 */
David Chinner78e9da72008-04-10 12:24:17 +10001423 error = xfs_bmap_finish(&tp, &free_list, &committed);
1424 if (error)
1425 xfs_fs_cmn_err(CE_NOTE, mp, "xfs_inactive: "
1426 "xfs_bmap_finish() returned error %d", error);
1427 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1428 if (error)
1429 xfs_fs_cmn_err(CE_NOTE, mp, "xfs_inactive: "
1430 "xfs_trans_commit() returned error %d", error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432 /*
1433 * Release the dquots held by inode, if any.
1434 */
1435 XFS_QM_DQDETACH(mp, ip);
1436
1437 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1438
1439 out:
1440 return VN_INACTIVE_CACHE;
1441}
1442
Barry Naujok384f3ce2008-05-21 16:58:22 +10001443/*
1444 * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
1445 * is allowed, otherwise it has to be an exact match. If a CI match is found,
1446 * ci_name->name will point to a the actual name (caller must free) or
1447 * will be set to NULL if an exact match is found.
1448 */
Christoph Hellwig993386c2007-08-28 16:12:30 +10001449int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450xfs_lookup(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001451 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001452 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +10001453 xfs_inode_t **ipp,
1454 struct xfs_name *ci_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455{
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001456 xfs_ino_t inum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 int error;
1458 uint lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001460 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
1463 return XFS_ERROR(EIO);
1464
1465 lock_mode = xfs_ilock_map_shared(dp);
Barry Naujok384f3ce2008-05-21 16:58:22 +10001466 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 xfs_iunlock_map_shared(dp, lock_mode);
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001468
1469 if (error)
1470 goto out;
1471
1472 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp, 0);
1473 if (error)
Barry Naujok384f3ce2008-05-21 16:58:22 +10001474 goto out_free_name;
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001475
1476 xfs_itrace_ref(*ipp);
1477 return 0;
1478
Barry Naujok384f3ce2008-05-21 16:58:22 +10001479out_free_name:
1480 if (ci_name)
1481 kmem_free(ci_name->name);
1482out:
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001483 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 return error;
1485}
1486
Christoph Hellwig993386c2007-08-28 16:12:30 +10001487int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488xfs_create(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001489 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001490 struct xfs_name *name,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001491 mode_t mode,
1492 xfs_dev_t rdev,
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001493 xfs_inode_t **ipp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 cred_t *credp)
1495{
Barry Naujok556b8b12008-04-10 12:22:07 +10001496 xfs_mount_t *mp = dp->i_mount;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001497 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 xfs_trans_t *tp;
Barry Naujok556b8b12008-04-10 12:22:07 +10001499 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 xfs_bmap_free_t free_list;
1501 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001502 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 int dm_event_sent = 0;
1504 uint cancel_flags;
1505 int committed;
1506 xfs_prid_t prid;
1507 struct xfs_dquot *udqp, *gdqp;
1508 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001510 ASSERT(!*ipp);
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001511 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Christoph Hellwigeb9df392007-08-16 18:42:07 +10001513 if (DM_EVENT_ENABLED(dp, DM_EVENT_CREATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11001515 dp, DM_RIGHT_NULL, NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10001516 DM_RIGHT_NULL, name->name, NULL,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001517 mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 if (error)
1520 return error;
1521 dm_event_sent = 1;
1522 }
1523
1524 if (XFS_FORCED_SHUTDOWN(mp))
1525 return XFS_ERROR(EIO);
1526
1527 /* Return through std_return after this point. */
1528
1529 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10001530 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1531 prid = dp->i_d.di_projid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 else
1533 prid = (xfs_prid_t)dfltprid;
1534
1535 /*
1536 * Make sure that we have allocated dquot(s) on disk.
1537 */
1538 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001539 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 XFS_QMOPT_QUOTALL|XFS_QMOPT_INHERIT, &udqp, &gdqp);
1541 if (error)
1542 goto std_return;
1543
1544 ip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
1547 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10001548 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 /*
1550 * Initially assume that the file does not exist and
1551 * reserve the resources for that case. If that is not
1552 * the case we'll drop the one we have and get a more
1553 * appropriate transaction later.
1554 */
1555 error = xfs_trans_reserve(tp, resblks, XFS_CREATE_LOG_RES(mp), 0,
1556 XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT);
1557 if (error == ENOSPC) {
1558 resblks = 0;
1559 error = xfs_trans_reserve(tp, 0, XFS_CREATE_LOG_RES(mp), 0,
1560 XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT);
1561 }
1562 if (error) {
1563 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 goto error_return;
1565 }
1566
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001567 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001568 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 XFS_BMAP_INIT(&free_list, &first_block);
1571
1572 ASSERT(ip == NULL);
1573
1574 /*
1575 * Reserve disk quota and the inode.
1576 */
1577 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
1578 if (error)
1579 goto error_return;
1580
Barry Naujok556b8b12008-04-10 12:22:07 +10001581 error = xfs_dir_canenter(tp, dp, name, resblks);
1582 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 goto error_return;
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001584 error = xfs_dir_ialloc(&tp, dp, mode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 rdev, credp, prid, resblks > 0,
1586 &ip, &committed);
1587 if (error) {
1588 if (error == ENOSPC)
1589 goto error_return;
1590 goto abort_return;
1591 }
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001592 xfs_itrace_ref(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 /*
1595 * At this point, we've gotten a newly allocated inode.
1596 * It is locked (and joined to the transaction).
1597 */
1598
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001599 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 /*
Christoph Hellwig993386c2007-08-28 16:12:30 +10001602 * Now we join the directory inode to the transaction. We do not do it
1603 * earlier because xfs_dir_ialloc might commit the previous transaction
1604 * (and release all the locks). An error from here on will result in
1605 * the transaction cancel unlocking dp so don't do it explicitly in the
1606 * error path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 */
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001608 IHOLD(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001610 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Barry Naujok556b8b12008-04-10 12:22:07 +10001612 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001613 &first_block, &free_list, resblks ?
1614 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (error) {
1616 ASSERT(error != ENOSPC);
1617 goto abort_return;
1618 }
1619 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1620 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1621
1622 /*
1623 * If this is a synchronous mount, make sure that the
1624 * create transaction goes to disk before returning to
1625 * the user.
1626 */
1627 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1628 xfs_trans_set_sync(tp);
1629 }
1630
1631 dp->i_gen++;
1632
1633 /*
1634 * Attach the dquot(s) to the inodes and modify them incore.
1635 * These ids of the inode couldn't have changed since the new
1636 * inode has been locked ever since it was created.
1637 */
1638 XFS_QM_DQVOPCREATE(mp, tp, ip, udqp, gdqp);
1639
1640 /*
1641 * xfs_trans_commit normally decrements the vnode ref count
1642 * when it unlocks the inode. Since we want to return the
1643 * vnode to the caller, we bump the vnode ref count now.
1644 */
1645 IHOLD(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001647 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 if (error) {
1649 xfs_bmap_cancel(&free_list);
1650 goto abort_rele;
1651 }
1652
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001653 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 if (error) {
1655 IRELE(ip);
1656 tp = NULL;
1657 goto error_return;
1658 }
1659
1660 XFS_QM_DQRELE(mp, udqp);
1661 XFS_QM_DQRELE(mp, gdqp);
1662
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001663 *ipp = ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
1665 /* Fallthrough to std_return with error = 0 */
1666
1667std_return:
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001668 if ((*ipp || (error != 0 && dm_event_sent != 0)) &&
Christoph Hellwig993386c2007-08-28 16:12:30 +10001669 DM_EVENT_ENABLED(dp, DM_EVENT_POSTCREATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11001671 dp, DM_RIGHT_NULL,
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001672 *ipp ? ip : NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10001673 DM_RIGHT_NULL, name->name, NULL,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001674 mode, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
1676 return error;
1677
1678 abort_return:
1679 cancel_flags |= XFS_TRANS_ABORT;
1680 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Jesper Juhl014c2542006-01-15 02:37:08 +01001682 error_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (tp != NULL)
1684 xfs_trans_cancel(tp, cancel_flags);
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 XFS_QM_DQRELE(mp, udqp);
1687 XFS_QM_DQRELE(mp, gdqp);
1688
Christoph Hellwig993386c2007-08-28 16:12:30 +10001689 if (unlock_dp_on_error)
1690 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 goto std_return;
1693
1694 abort_rele:
1695 /*
1696 * Wait until after the current transaction is aborted to
1697 * release the inode. This prevents recursive transactions
1698 * and deadlocks from xfs_inactive.
1699 */
1700 cancel_flags |= XFS_TRANS_ABORT;
1701 xfs_trans_cancel(tp, cancel_flags);
1702 IRELE(ip);
1703
1704 XFS_QM_DQRELE(mp, udqp);
1705 XFS_QM_DQRELE(mp, gdqp);
1706
1707 goto std_return;
1708}
1709
1710#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711int xfs_locked_n;
1712int xfs_small_retries;
1713int xfs_middle_retries;
1714int xfs_lots_retries;
1715int xfs_lock_delays;
1716#endif
1717
1718/*
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001719 * Bump the subclass so xfs_lock_inodes() acquires each lock with
1720 * a different value
1721 */
1722static inline int
1723xfs_lock_inumorder(int lock_mode, int subclass)
1724{
1725 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +10001726 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001727 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +10001728 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001729
1730 return lock_mode;
1731}
1732
1733/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 * The following routine will lock n inodes in exclusive mode.
1735 * We assume the caller calls us with the inodes in i_ino order.
1736 *
1737 * We need to detect deadlock where an inode that we lock
1738 * is in the AIL and we start waiting for another inode that is locked
1739 * by a thread in a long running transaction (such as truncate). This can
1740 * result in deadlock since the long running trans might need to wait
1741 * for the inode we just locked in order to push the tail and free space
1742 * in the log.
1743 */
1744void
1745xfs_lock_inodes(
1746 xfs_inode_t **ips,
1747 int inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 uint lock_mode)
1749{
1750 int attempts = 0, i, j, try_lock;
1751 xfs_log_item_t *lp;
1752
1753 ASSERT(ips && (inodes >= 2)); /* we need at least two */
1754
Christoph Hellwigcfa853e2008-04-22 17:34:06 +10001755 try_lock = 0;
1756 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758again:
1759 for (; i < inodes; i++) {
1760 ASSERT(ips[i]);
1761
1762 if (i && (ips[i] == ips[i-1])) /* Already locked */
1763 continue;
1764
1765 /*
1766 * If try_lock is not set yet, make sure all locked inodes
1767 * are not in the AIL.
1768 * If any are, set try_lock to be used later.
1769 */
1770
1771 if (!try_lock) {
1772 for (j = (i - 1); j >= 0 && !try_lock; j--) {
1773 lp = (xfs_log_item_t *)ips[j]->i_itemp;
1774 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1775 try_lock++;
1776 }
1777 }
1778 }
1779
1780 /*
1781 * If any of the previous locks we have locked is in the AIL,
1782 * we must TRY to get the second and subsequent locks. If
1783 * we can't get any, we must release all we have
1784 * and try again.
1785 */
1786
1787 if (try_lock) {
1788 /* try_lock must be 0 if i is 0. */
1789 /*
1790 * try_lock means we have an inode locked
1791 * that is in the AIL.
1792 */
1793 ASSERT(i != 0);
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001794 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 attempts++;
1796
1797 /*
1798 * Unlock all previous guys and try again.
1799 * xfs_iunlock will try to push the tail
1800 * if the inode is in the AIL.
1801 */
1802
1803 for(j = i - 1; j >= 0; j--) {
1804
1805 /*
1806 * Check to see if we've already
1807 * unlocked this one.
1808 * Not the first one going back,
1809 * and the inode ptr is the same.
1810 */
1811 if ((j != (i - 1)) && ips[j] ==
1812 ips[j+1])
1813 continue;
1814
1815 xfs_iunlock(ips[j], lock_mode);
1816 }
1817
1818 if ((attempts % 5) == 0) {
1819 delay(1); /* Don't just spin the CPU */
1820#ifdef DEBUG
1821 xfs_lock_delays++;
1822#endif
1823 }
1824 i = 0;
1825 try_lock = 0;
1826 goto again;
1827 }
1828 } else {
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001829 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 }
1831 }
1832
1833#ifdef DEBUG
1834 if (attempts) {
1835 if (attempts < 5) xfs_small_retries++;
1836 else if (attempts < 100) xfs_middle_retries++;
1837 else xfs_lots_retries++;
1838 } else {
1839 xfs_locked_n++;
1840 }
1841#endif
1842}
1843
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001844void
1845xfs_lock_two_inodes(
1846 xfs_inode_t *ip0,
1847 xfs_inode_t *ip1,
1848 uint lock_mode)
1849{
1850 xfs_inode_t *temp;
1851 int attempts = 0;
1852 xfs_log_item_t *lp;
1853
1854 ASSERT(ip0->i_ino != ip1->i_ino);
1855
1856 if (ip0->i_ino > ip1->i_ino) {
1857 temp = ip0;
1858 ip0 = ip1;
1859 ip1 = temp;
1860 }
1861
1862 again:
1863 xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0));
1864
1865 /*
1866 * If the first lock we have locked is in the AIL, we must TRY to get
1867 * the second lock. If we can't get it, we must release the first one
1868 * and try again.
1869 */
1870 lp = (xfs_log_item_t *)ip0->i_itemp;
1871 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1872 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) {
1873 xfs_iunlock(ip0, lock_mode);
1874 if ((++attempts % 5) == 0)
1875 delay(1); /* Don't just spin the CPU */
1876 goto again;
1877 }
1878 } else {
1879 xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1));
1880 }
1881}
1882
Christoph Hellwig993386c2007-08-28 16:12:30 +10001883int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884xfs_remove(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001885 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001886 struct xfs_name *name,
1887 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001889 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 xfs_trans_t *tp = NULL;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001891 int is_dir = S_ISDIR(ip->i_d.di_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 int error = 0;
1893 xfs_bmap_free_t free_list;
1894 xfs_fsblock_t first_block;
1895 int cancel_flags;
1896 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 int link_zero;
1898 uint resblks;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001899 uint log_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001901 xfs_itrace_entry(dp);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001902 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (XFS_FORCED_SHUTDOWN(mp))
1905 return XFS_ERROR(EIO);
1906
Christoph Hellwigeb9df392007-08-16 18:42:07 +10001907 if (DM_EVENT_ENABLED(dp, DM_EVENT_REMOVE)) {
Barry Naujok556b8b12008-04-10 12:22:07 +10001908 error = XFS_SEND_NAMESP(mp, DM_EVENT_REMOVE, dp, DM_RIGHT_NULL,
1909 NULL, DM_RIGHT_NULL, name->name, NULL,
1910 ip->i_d.di_mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 if (error)
1912 return error;
1913 }
1914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 error = XFS_QM_DQATTACH(mp, dp, 0);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001916 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001919 error = XFS_QM_DQATTACH(mp, ip, 0);
1920 if (error)
1921 goto std_return;
1922
1923 if (is_dir) {
1924 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
1925 log_count = XFS_DEFAULT_LOG_COUNT;
1926 } else {
1927 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
1928 log_count = XFS_REMOVE_LOG_COUNT;
1929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 /*
1933 * We try to get the real space reservation first,
1934 * allowing for directory btree deletion(s) implying
1935 * possible bmap insert(s). If we can't get the space
1936 * reservation then we use 0 instead, and avoid the bmap
1937 * btree insert(s) in the directory code by, if the bmap
1938 * insert tries to happen, instead trimming the LAST
1939 * block from the directory.
1940 */
1941 resblks = XFS_REMOVE_SPACE_RES(mp);
1942 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001943 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 if (error == ENOSPC) {
1945 resblks = 0;
1946 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001947 XFS_TRANS_PERM_LOG_RES, log_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
1949 if (error) {
1950 ASSERT(error != ENOSPC);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001951 cancel_flags = 0;
1952 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 }
1954
Christoph Hellwige1cccd92008-08-13 16:18:07 +10001955 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 /*
1958 * At this point, we've gotten both the directory and the entry
1959 * inodes locked.
1960 */
Christoph Hellwig5df78e72008-04-22 17:34:24 +10001961 IHOLD(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig82dab942008-04-22 17:34:18 +10001963
1964 IHOLD(dp);
1965 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
1967 /*
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001968 * If we're removing a directory perform some additional validation.
1969 */
1970 if (is_dir) {
1971 ASSERT(ip->i_d.di_nlink >= 2);
1972 if (ip->i_d.di_nlink != 2) {
1973 error = XFS_ERROR(ENOTEMPTY);
1974 goto out_trans_cancel;
1975 }
1976 if (!xfs_dir_isempty(ip)) {
1977 error = XFS_ERROR(ENOTEMPTY);
1978 goto out_trans_cancel;
1979 }
1980 }
1981
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 XFS_BMAP_INIT(&free_list, &first_block);
Barry Naujok556b8b12008-04-10 12:22:07 +10001983 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
Christoph Hellwigd4377d82008-04-22 17:33:46 +10001984 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 if (error) {
1986 ASSERT(error != ENOENT);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001987 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
1989 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1990
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001991 /*
1992 * Bump the in memory generation count on the parent
1993 * directory so that other can know that it has changed.
1994 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 dp->i_gen++;
1996 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1997
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001998 if (is_dir) {
1999 /*
2000 * Drop the link from ip's "..".
2001 */
2002 error = xfs_droplink(tp, dp);
2003 if (error)
2004 goto out_bmap_cancel;
2005
2006 /*
2007 * Drop the link from dp to ip.
2008 */
2009 error = xfs_droplink(tp, ip);
2010 if (error)
2011 goto out_bmap_cancel;
2012 } else {
2013 /*
2014 * When removing a non-directory we need to log the parent
2015 * inode here for the i_gen update. For a directory this is
2016 * done implicitly by the xfs_droplink call for the ".." entry.
2017 */
2018 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 }
2020
Christoph Hellwig8f112e32008-06-23 13:25:17 +10002021 /*
2022 * Drop the "." link from ip to self.
2023 */
2024 error = xfs_droplink(tp, ip);
2025 if (error)
2026 goto out_bmap_cancel;
2027
2028 /*
2029 * Determine if this is the last link while
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 * we are in the transaction.
2031 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10002032 link_zero = (ip->i_d.di_nlink == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 * If this is a synchronous mount, make sure that the
2036 * remove transaction goes to disk before returning to
2037 * the user.
2038 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10002039 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002042 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10002043 if (error)
2044 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002046 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwig5df78e72008-04-22 17:34:24 +10002047 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
2050 /*
David Chinner2a82b8b2007-07-11 11:09:12 +10002051 * If we are using filestreams, kill the stream association.
2052 * If the file is still open it may get a new one but that
2053 * will get killed on last close in xfs_close() so we don't
2054 * have to worry about that.
2055 */
Christoph Hellwig8f112e32008-06-23 13:25:17 +10002056 if (!is_dir && link_zero && xfs_inode_is_filestream(ip))
David Chinner2a82b8b2007-07-11 11:09:12 +10002057 xfs_filestream_deassociate(ip);
2058
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002059 xfs_itrace_exit(ip);
Christoph Hellwig8f112e32008-06-23 13:25:17 +10002060 xfs_itrace_exit(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 std_return:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002063 if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTREMOVE)) {
Christoph Hellwig8f112e32008-06-23 13:25:17 +10002064 XFS_SEND_NAMESP(mp, DM_EVENT_POSTREMOVE, dp, DM_RIGHT_NULL,
2065 NULL, DM_RIGHT_NULL, name->name, NULL,
2066 ip->i_d.di_mode, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
Christoph Hellwig8f112e32008-06-23 13:25:17 +10002068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 return error;
2070
Christoph Hellwig8f112e32008-06-23 13:25:17 +10002071 out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 xfs_bmap_cancel(&free_list);
2073 cancel_flags |= XFS_TRANS_ABORT;
Christoph Hellwig8f112e32008-06-23 13:25:17 +10002074 out_trans_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 xfs_trans_cancel(tp, cancel_flags);
2076 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
2078
Christoph Hellwig993386c2007-08-28 16:12:30 +10002079int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080xfs_link(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002081 xfs_inode_t *tdp,
Christoph Hellwiga3da7892008-03-06 13:46:12 +11002082 xfs_inode_t *sip,
Barry Naujok556b8b12008-04-10 12:22:07 +10002083 struct xfs_name *target_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002085 xfs_mount_t *mp = tdp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 int error;
2088 xfs_bmap_free_t free_list;
2089 xfs_fsblock_t first_block;
2090 int cancel_flags;
2091 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 int resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002094 xfs_itrace_entry(tdp);
Christoph Hellwiga3da7892008-03-06 13:46:12 +11002095 xfs_itrace_entry(sip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Christoph Hellwiga3da7892008-03-06 13:46:12 +11002097 ASSERT(!S_ISDIR(sip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 if (XFS_FORCED_SHUTDOWN(mp))
2100 return XFS_ERROR(EIO);
2101
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002102 if (DM_EVENT_ENABLED(tdp, DM_EVENT_LINK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 error = XFS_SEND_NAMESP(mp, DM_EVENT_LINK,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002104 tdp, DM_RIGHT_NULL,
2105 sip, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002106 target_name->name, NULL, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 if (error)
2108 return error;
2109 }
2110
2111 /* Return through std_return after this point. */
2112
2113 error = XFS_QM_DQATTACH(mp, sip, 0);
2114 if (!error && sip != tdp)
2115 error = XFS_QM_DQATTACH(mp, tdp, 0);
2116 if (error)
2117 goto std_return;
2118
2119 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
2120 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10002121 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
2123 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2124 if (error == ENOSPC) {
2125 resblks = 0;
2126 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
2127 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2128 }
2129 if (error) {
2130 cancel_flags = 0;
2131 goto error_return;
2132 }
2133
Christoph Hellwige1cccd92008-08-13 16:18:07 +10002134 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 /*
2137 * Increment vnode ref counts since xfs_trans_commit &
2138 * xfs_trans_cancel will both unlock the inodes and
2139 * decrement the associated ref counts.
2140 */
Christoph Hellwiga3da7892008-03-06 13:46:12 +11002141 IHOLD(sip);
2142 IHOLD(tdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
2144 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
2145
2146 /*
2147 * If the source has too many links, we can't make any more to it.
2148 */
2149 if (sip->i_d.di_nlink >= XFS_MAXLINK) {
2150 error = XFS_ERROR(EMLINK);
2151 goto error_return;
2152 }
2153
Nathan Scott365ca832005-06-21 15:39:12 +10002154 /*
2155 * If we are using project inheritance, we only allow hard link
2156 * creation in our tree when the project IDs are the same; else
2157 * the tree quota mechanism could be circumvented.
2158 */
2159 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
2160 (tdp->i_d.di_projid != sip->i_d.di_projid))) {
Nathan Scottb1ecdda2006-05-08 19:51:42 +10002161 error = XFS_ERROR(EXDEV);
Nathan Scott365ca832005-06-21 15:39:12 +10002162 goto error_return;
2163 }
2164
Barry Naujok556b8b12008-04-10 12:22:07 +10002165 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
2166 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 goto error_return;
2168
2169 XFS_BMAP_INIT(&free_list, &first_block);
2170
Barry Naujok556b8b12008-04-10 12:22:07 +10002171 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
2172 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 if (error)
2174 goto abort_return;
2175 xfs_ichgtime(tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2176 tdp->i_gen++;
2177 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
2178
2179 error = xfs_bumplink(tp, sip);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002180 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
2183 /*
2184 * If this is a synchronous mount, make sure that the
2185 * link transaction goes to disk before returning to
2186 * the user.
2187 */
2188 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2189 xfs_trans_set_sync(tp);
2190 }
2191
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002192 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 if (error) {
2194 xfs_bmap_cancel(&free_list);
2195 goto abort_return;
2196 }
2197
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002198 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002199 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202 /* Fall through to std_return with error = 0. */
2203std_return:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002204 if (DM_EVENT_ENABLED(sip, DM_EVENT_POSTLINK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTLINK,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002206 tdp, DM_RIGHT_NULL,
2207 sip, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002208 target_name->name, NULL, 0, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 }
2210 return error;
2211
2212 abort_return:
2213 cancel_flags |= XFS_TRANS_ABORT;
2214 /* FALLTHROUGH */
Jesper Juhl014c2542006-01-15 02:37:08 +01002215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 error_return:
2217 xfs_trans_cancel(tp, cancel_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 goto std_return;
2219}
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002220
2221
Christoph Hellwig993386c2007-08-28 16:12:30 +10002222int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223xfs_mkdir(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002224 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10002225 struct xfs_name *dir_name,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002226 mode_t mode,
Christoph Hellwig979ebab2008-03-06 13:46:05 +11002227 xfs_inode_t **ipp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 cred_t *credp)
2229{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002230 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 xfs_inode_t *cdp; /* inode of created dir */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 int cancel_flags;
2234 int error;
2235 int committed;
2236 xfs_bmap_free_t free_list;
2237 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10002238 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 boolean_t created = B_FALSE;
2240 int dm_event_sent = 0;
2241 xfs_prid_t prid;
2242 struct xfs_dquot *udqp, *gdqp;
2243 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245 if (XFS_FORCED_SHUTDOWN(mp))
2246 return XFS_ERROR(EIO);
2247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 tp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002250 if (DM_EVENT_ENABLED(dp, DM_EVENT_CREATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002252 dp, DM_RIGHT_NULL, NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002253 DM_RIGHT_NULL, dir_name->name, NULL,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002254 mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 if (error)
2256 return error;
2257 dm_event_sent = 1;
2258 }
2259
2260 /* Return through std_return after this point. */
2261
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002262 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264 mp = dp->i_mount;
2265 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10002266 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
2267 prid = dp->i_d.di_projid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 else
2269 prid = (xfs_prid_t)dfltprid;
2270
2271 /*
2272 * Make sure that we have allocated dquot(s) on disk.
2273 */
2274 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002275 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
2277 if (error)
2278 goto std_return;
2279
2280 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
2281 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10002282 resblks = XFS_MKDIR_SPACE_RES(mp, dir_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 error = xfs_trans_reserve(tp, resblks, XFS_MKDIR_LOG_RES(mp), 0,
2284 XFS_TRANS_PERM_LOG_RES, XFS_MKDIR_LOG_COUNT);
2285 if (error == ENOSPC) {
2286 resblks = 0;
2287 error = xfs_trans_reserve(tp, 0, XFS_MKDIR_LOG_RES(mp), 0,
2288 XFS_TRANS_PERM_LOG_RES,
2289 XFS_MKDIR_LOG_COUNT);
2290 }
2291 if (error) {
2292 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 goto error_return;
2294 }
2295
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002296 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10002297 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299 /*
2300 * Check for directory link count overflow.
2301 */
2302 if (dp->i_d.di_nlink >= XFS_MAXLINK) {
2303 error = XFS_ERROR(EMLINK);
2304 goto error_return;
2305 }
2306
2307 /*
2308 * Reserve disk quota and the inode.
2309 */
2310 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
2311 if (error)
2312 goto error_return;
2313
Barry Naujok556b8b12008-04-10 12:22:07 +10002314 error = xfs_dir_canenter(tp, dp, dir_name, resblks);
2315 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 goto error_return;
2317 /*
2318 * create the directory inode.
2319 */
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002320 error = xfs_dir_ialloc(&tp, dp, mode, 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 0, credp, prid, resblks > 0,
2322 &cdp, NULL);
2323 if (error) {
2324 if (error == ENOSPC)
2325 goto error_return;
2326 goto abort_return;
2327 }
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002328 xfs_itrace_ref(cdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330 /*
2331 * Now we add the directory inode to the transaction.
2332 * We waited until now since xfs_dir_ialloc might start
2333 * a new transaction. Had we joined the transaction
Christoph Hellwig993386c2007-08-28 16:12:30 +10002334 * earlier, the locks might have gotten released. An error
2335 * from here on will result in the transaction cancel
2336 * unlocking dp so don't do it explicitly in the error path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 */
Christoph Hellwig979ebab2008-03-06 13:46:05 +11002338 IHOLD(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10002340 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
2342 XFS_BMAP_INIT(&free_list, &first_block);
2343
Barry Naujok556b8b12008-04-10 12:22:07 +10002344 error = xfs_dir_createname(tp, dp, dir_name, cdp->i_ino,
2345 &first_block, &free_list, resblks ?
2346 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 if (error) {
2348 ASSERT(error != ENOSPC);
2349 goto error1;
2350 }
2351 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2352
2353 /*
2354 * Bump the in memory version number of the parent directory
2355 * so that other processes accessing it will recognize that
2356 * the directory has changed.
2357 */
2358 dp->i_gen++;
2359
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002360 error = xfs_dir_init(tp, cdp, dp);
2361 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
2364 cdp->i_gen = 1;
2365 error = xfs_bumplink(tp, dp);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002366 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 created = B_TRUE;
2370
Christoph Hellwig979ebab2008-03-06 13:46:05 +11002371 *ipp = cdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 IHOLD(cdp);
2373
2374 /*
2375 * Attach the dquots to the new inode and modify the icount incore.
2376 */
2377 XFS_QM_DQVOPCREATE(mp, tp, cdp, udqp, gdqp);
2378
2379 /*
2380 * If this is a synchronous mount, make sure that the
2381 * mkdir transaction goes to disk before returning to
2382 * the user.
2383 */
2384 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2385 xfs_trans_set_sync(tp);
2386 }
2387
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002388 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 if (error) {
2390 IRELE(cdp);
2391 goto error2;
2392 }
2393
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002394 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 XFS_QM_DQRELE(mp, udqp);
2396 XFS_QM_DQRELE(mp, gdqp);
2397 if (error) {
2398 IRELE(cdp);
2399 }
2400
2401 /* Fall through to std_return with error = 0 or errno from
2402 * xfs_trans_commit. */
2403
2404std_return:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002405 if ((created || (error != 0 && dm_event_sent != 0)) &&
Christoph Hellwig993386c2007-08-28 16:12:30 +10002406 DM_EVENT_ENABLED(dp, DM_EVENT_POSTCREATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002408 dp, DM_RIGHT_NULL,
2409 created ? cdp : NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002411 dir_name->name, NULL,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002412 mode, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 }
2414 return error;
2415
2416 error2:
2417 error1:
2418 xfs_bmap_cancel(&free_list);
2419 abort_return:
2420 cancel_flags |= XFS_TRANS_ABORT;
2421 error_return:
2422 xfs_trans_cancel(tp, cancel_flags);
2423 XFS_QM_DQRELE(mp, udqp);
2424 XFS_QM_DQRELE(mp, gdqp);
2425
Christoph Hellwig993386c2007-08-28 16:12:30 +10002426 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
2429 goto std_return;
2430}
2431
Christoph Hellwig993386c2007-08-28 16:12:30 +10002432int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433xfs_symlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002434 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10002435 struct xfs_name *link_name,
2436 const char *target_path,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002437 mode_t mode,
Christoph Hellwig3937be52008-03-06 13:46:19 +11002438 xfs_inode_t **ipp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 cred_t *credp)
2440{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002441 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 xfs_inode_t *ip;
2444 int error;
2445 int pathlen;
2446 xfs_bmap_free_t free_list;
2447 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10002448 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 uint cancel_flags;
2450 int committed;
2451 xfs_fileoff_t first_fsb;
2452 xfs_filblks_t fs_blocks;
2453 int nmaps;
2454 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
2455 xfs_daddr_t d;
Barry Naujok556b8b12008-04-10 12:22:07 +10002456 const char *cur_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 int byte_cnt;
2458 int n;
2459 xfs_buf_t *bp;
2460 xfs_prid_t prid;
2461 struct xfs_dquot *udqp, *gdqp;
2462 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
Christoph Hellwig3937be52008-03-06 13:46:19 +11002464 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 error = 0;
2466 ip = NULL;
2467 tp = NULL;
2468
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002469 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471 if (XFS_FORCED_SHUTDOWN(mp))
2472 return XFS_ERROR(EIO);
2473
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 /*
2475 * Check component lengths of the target path name.
2476 */
2477 pathlen = strlen(target_path);
2478 if (pathlen >= MAXPATHLEN) /* total string too long */
2479 return XFS_ERROR(ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002481 if (DM_EVENT_ENABLED(dp, DM_EVENT_SYMLINK)) {
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002482 error = XFS_SEND_NAMESP(mp, DM_EVENT_SYMLINK, dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 DM_RIGHT_NULL, NULL, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002484 link_name->name, target_path, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 if (error)
2486 return error;
2487 }
2488
2489 /* Return through std_return after this point. */
2490
2491 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10002492 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
2493 prid = dp->i_d.di_projid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 else
2495 prid = (xfs_prid_t)dfltprid;
2496
2497 /*
2498 * Make sure that we have allocated dquot(s) on disk.
2499 */
2500 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002501 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
2503 if (error)
2504 goto std_return;
2505
2506 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
2507 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2508 /*
2509 * The symlink will fit into the inode data fork?
2510 * There can't be any attributes so we get the whole variable part.
2511 */
2512 if (pathlen <= XFS_LITINO(mp))
2513 fs_blocks = 0;
2514 else
2515 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
Barry Naujok556b8b12008-04-10 12:22:07 +10002516 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
2518 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
2519 if (error == ENOSPC && fs_blocks == 0) {
2520 resblks = 0;
2521 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
2522 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
2523 }
2524 if (error) {
2525 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 goto error_return;
2527 }
2528
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002529 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10002530 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
2532 /*
2533 * Check whether the directory allows new symlinks or not.
2534 */
2535 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
2536 error = XFS_ERROR(EPERM);
2537 goto error_return;
2538 }
2539
2540 /*
2541 * Reserve disk quota : blocks and inode.
2542 */
2543 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
2544 if (error)
2545 goto error_return;
2546
2547 /*
2548 * Check for ability to enter directory entry, if no space reserved.
2549 */
Barry Naujok556b8b12008-04-10 12:22:07 +10002550 error = xfs_dir_canenter(tp, dp, link_name, resblks);
2551 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 goto error_return;
2553 /*
2554 * Initialize the bmap freelist prior to calling either
2555 * bmapi or the directory create code.
2556 */
2557 XFS_BMAP_INIT(&free_list, &first_block);
2558
2559 /*
2560 * Allocate an inode for the symlink.
2561 */
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002562 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 1, 0, credp, prid, resblks > 0, &ip, NULL);
2564 if (error) {
2565 if (error == ENOSPC)
2566 goto error_return;
2567 goto error1;
2568 }
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002569 xfs_itrace_ref(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
Christoph Hellwig993386c2007-08-28 16:12:30 +10002571 /*
2572 * An error after we've joined dp to the transaction will result in the
2573 * transaction cancel unlocking dp so don't do it explicitly in the
2574 * error path.
2575 */
Christoph Hellwig3937be52008-03-06 13:46:19 +11002576 IHOLD(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10002578 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
2580 /*
2581 * Also attach the dquot(s) to it, if applicable.
2582 */
2583 XFS_QM_DQVOPCREATE(mp, tp, ip, udqp, gdqp);
2584
2585 if (resblks)
2586 resblks -= XFS_IALLOC_SPACE_RES(mp);
2587 /*
2588 * If the symlink will fit into the inode, write it inline.
2589 */
2590 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
2591 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
2592 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
2593 ip->i_d.di_size = pathlen;
2594
2595 /*
2596 * The inode was initially created in extent format.
2597 */
2598 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
2599 ip->i_df.if_flags |= XFS_IFINLINE;
2600
2601 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
2602 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
2603
2604 } else {
2605 first_fsb = 0;
2606 nmaps = SYMLINK_MAPS;
2607
2608 error = xfs_bmapi(tp, ip, first_fsb, fs_blocks,
2609 XFS_BMAPI_WRITE | XFS_BMAPI_METADATA,
2610 &first_block, resblks, mval, &nmaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002611 &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 if (error) {
2613 goto error1;
2614 }
2615
2616 if (resblks)
2617 resblks -= fs_blocks;
2618 ip->i_d.di_size = pathlen;
2619 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2620
2621 cur_chunk = target_path;
2622 for (n = 0; n < nmaps; n++) {
2623 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
2624 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
2625 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
2626 BTOBB(byte_cnt), 0);
2627 ASSERT(bp && !XFS_BUF_GETERROR(bp));
2628 if (pathlen < byte_cnt) {
2629 byte_cnt = pathlen;
2630 }
2631 pathlen -= byte_cnt;
2632
2633 memcpy(XFS_BUF_PTR(bp), cur_chunk, byte_cnt);
2634 cur_chunk += byte_cnt;
2635
2636 xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
2637 }
2638 }
2639
2640 /*
2641 * Create the directory entry for the symlink.
2642 */
Barry Naujok556b8b12008-04-10 12:22:07 +10002643 error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
2644 &first_block, &free_list, resblks);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002645 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2648 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2649
2650 /*
2651 * Bump the in memory version number of the parent directory
2652 * so that other processes accessing it will recognize that
2653 * the directory has changed.
2654 */
2655 dp->i_gen++;
2656
2657 /*
2658 * If this is a synchronous mount, make sure that the
2659 * symlink transaction goes to disk before returning to
2660 * the user.
2661 */
2662 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2663 xfs_trans_set_sync(tp);
2664 }
2665
2666 /*
2667 * xfs_trans_commit normally decrements the vnode ref count
2668 * when it unlocks the inode. Since we want to return the
2669 * vnode to the caller, we bump the vnode ref count now.
2670 */
2671 IHOLD(ip);
2672
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002673 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 if (error) {
2675 goto error2;
2676 }
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002677 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 XFS_QM_DQRELE(mp, udqp);
2679 XFS_QM_DQRELE(mp, gdqp);
2680
2681 /* Fall through to std_return with error = 0 or errno from
2682 * xfs_trans_commit */
2683std_return:
Christoph Hellwig993386c2007-08-28 16:12:30 +10002684 if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTSYMLINK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTSYMLINK,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002686 dp, DM_RIGHT_NULL,
2687 error ? NULL : ip,
Barry Naujok556b8b12008-04-10 12:22:07 +10002688 DM_RIGHT_NULL, link_name->name,
2689 target_path, 0, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 }
2691
Christoph Hellwig3937be52008-03-06 13:46:19 +11002692 if (!error)
2693 *ipp = ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 return error;
2695
2696 error2:
2697 IRELE(ip);
2698 error1:
2699 xfs_bmap_cancel(&free_list);
2700 cancel_flags |= XFS_TRANS_ABORT;
2701 error_return:
2702 xfs_trans_cancel(tp, cancel_flags);
2703 XFS_QM_DQRELE(mp, udqp);
2704 XFS_QM_DQRELE(mp, gdqp);
2705
Christoph Hellwig993386c2007-08-28 16:12:30 +10002706 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
2709 goto std_return;
2710}
2711
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713xfs_inode_flush(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002714 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 int flags)
2716{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002717 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 int error = 0;
2719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 if (XFS_FORCED_SHUTDOWN(mp))
2721 return XFS_ERROR(EIO);
2722
2723 /*
2724 * Bypass inodes which have already been cleaned by
2725 * the inode flush clustering code inside xfs_iflush
2726 */
David Chinner33540402008-03-06 13:43:59 +11002727 if (xfs_inode_clean(ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 return 0;
2729
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 /*
2731 * We make this non-blocking if the inode is contended,
2732 * return EAGAIN to indicate to the caller that they
2733 * did not succeed. This prevents the flush path from
2734 * blocking on inodes inside another operation right
2735 * now, they get caught later by xfs_sync.
2736 */
David Chinnera3f74ff2008-03-06 13:43:42 +11002737 if (flags & FLUSH_SYNC) {
2738 xfs_ilock(ip, XFS_ILOCK_SHARED);
2739 xfs_iflock(ip);
2740 } else if (xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) {
2741 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip)) {
2742 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 return EAGAIN;
2744 }
David Chinnera3f74ff2008-03-06 13:43:42 +11002745 } else {
2746 return EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 }
2748
David Chinnera3f74ff2008-03-06 13:43:42 +11002749 error = xfs_iflush(ip, (flags & FLUSH_SYNC) ? XFS_IFLUSH_SYNC
2750 : XFS_IFLUSH_ASYNC_NOBLOCK);
2751 xfs_iunlock(ip, XFS_ILOCK_SHARED);
2752
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 return error;
2754}
2755
Christoph Hellwig993386c2007-08-28 16:12:30 +10002756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757int
Christoph Hellwig993386c2007-08-28 16:12:30 +10002758xfs_set_dmattrs(
2759 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 u_int evmask,
Christoph Hellwig993386c2007-08-28 16:12:30 +10002761 u_int16_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002763 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 int error;
2766
2767 if (!capable(CAP_SYS_ADMIN))
2768 return XFS_ERROR(EPERM);
2769
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 if (XFS_FORCED_SHUTDOWN(mp))
2771 return XFS_ERROR(EIO);
2772
2773 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
2774 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
2775 if (error) {
2776 xfs_trans_cancel(tp, 0);
2777 return error;
2778 }
2779 xfs_ilock(ip, XFS_ILOCK_EXCL);
2780 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2781
Christoph Hellwig613d7042007-10-11 17:44:08 +10002782 ip->i_d.di_dmevmask = evmask;
2783 ip->i_d.di_dmstate = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
2785 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2786 IHOLD(ip);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002787 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
2789 return error;
2790}
2791
Christoph Hellwig993386c2007-08-28 16:12:30 +10002792int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793xfs_reclaim(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002794 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795{
David Chinnere4f75292008-08-13 16:00:45 +10002796 bhv_vnode_t *vp = VFS_I(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002798 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
2800 ASSERT(!VN_MAPPED(vp));
2801
2802 /* bad inode, get out here ASAP */
2803 if (VN_BAD(vp)) {
2804 xfs_ireclaim(ip);
2805 return 0;
2806 }
2807
Christoph Hellwigb677c212007-08-29 11:46:28 +10002808 vn_iowait(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Christoph Hellwig51c91ed2005-09-02 16:58:38 +10002810 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
Christoph Hellwig42fe2b12006-01-11 15:35:17 +11002812 /*
2813 * Make sure the atime in the XFS inode is correct before freeing the
2814 * Linux inode.
2815 */
2816 xfs_synchronize_atime(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
David Chinner4c606582006-11-11 18:05:00 +11002818 /*
2819 * If we have nothing to flush with this inode then complete the
2820 * teardown now, otherwise break the link between the xfs inode and the
2821 * linux inode and clean up the xfs inode later. This avoids flushing
2822 * the inode to disk during the delete operation itself.
2823 *
2824 * When breaking the link, we need to set the XFS_IRECLAIMABLE flag
2825 * first to ensure that xfs_iunpin() will never see an xfs inode
2826 * that has a linux inode being reclaimed. Synchronisation is provided
2827 * by the i_flags_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 */
2829 if (!ip->i_update_core && (ip->i_itemp == NULL)) {
2830 xfs_ilock(ip, XFS_ILOCK_EXCL);
2831 xfs_iflock(ip);
2832 return xfs_finish_reclaim(ip, 1, XFS_IFLUSH_DELWRI_ELSE_SYNC);
2833 } else {
2834 xfs_mount_t *mp = ip->i_mount;
2835
David Chinner4c606582006-11-11 18:05:00 +11002836 /* Protect sync and unpin from us */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 XFS_MOUNT_ILOCK(mp);
David Chinner4c606582006-11-11 18:05:00 +11002838 spin_lock(&ip->i_flags_lock);
2839 __xfs_iflags_set(ip, XFS_IRECLAIMABLE);
Christoph Hellwig863890c2008-08-13 16:12:05 +10002840 vp->i_private = NULL;
Christoph Hellwig739bfb22007-08-29 10:58:01 +10002841 ip->i_vnode = NULL;
David Chinner4c606582006-11-11 18:05:00 +11002842 spin_unlock(&ip->i_flags_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 list_add_tail(&ip->i_reclaim, &mp->m_del_inodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 XFS_MOUNT_IUNLOCK(mp);
2845 }
2846 return 0;
2847}
2848
2849int
2850xfs_finish_reclaim(
2851 xfs_inode_t *ip,
2852 int locked,
2853 int sync_mode)
2854{
David Chinnerda353b02007-08-28 14:00:13 +10002855 xfs_perag_t *pag = xfs_get_perag(ip->i_mount, ip->i_ino);
David Chinner705db4a2008-08-13 15:47:43 +10002856 bhv_vnode_t *vp = VFS_I(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
2858 if (vp && VN_BAD(vp))
2859 goto reclaim;
2860
2861 /* The hash lock here protects a thread in xfs_iget_core from
2862 * racing with us on linking the inode back with a vnode.
2863 * Once we have the XFS_IRECLAIM flag set it will not touch
2864 * us.
2865 */
David Chinnerda353b02007-08-28 14:00:13 +10002866 write_lock(&pag->pag_ici_lock);
David Chinnerf273ab82006-09-28 11:06:03 +10002867 spin_lock(&ip->i_flags_lock);
David Chinner7a18c382006-11-11 18:04:54 +11002868 if (__xfs_iflags_test(ip, XFS_IRECLAIM) ||
2869 (!__xfs_iflags_test(ip, XFS_IRECLAIMABLE) && vp == NULL)) {
David Chinnerf273ab82006-09-28 11:06:03 +10002870 spin_unlock(&ip->i_flags_lock);
David Chinnerda353b02007-08-28 14:00:13 +10002871 write_unlock(&pag->pag_ici_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 if (locked) {
2873 xfs_ifunlock(ip);
2874 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2875 }
Jesper Juhl014c2542006-01-15 02:37:08 +01002876 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 }
David Chinner7a18c382006-11-11 18:04:54 +11002878 __xfs_iflags_set(ip, XFS_IRECLAIM);
David Chinnerf273ab82006-09-28 11:06:03 +10002879 spin_unlock(&ip->i_flags_lock);
David Chinnerda353b02007-08-28 14:00:13 +10002880 write_unlock(&pag->pag_ici_lock);
2881 xfs_put_perag(ip->i_mount, pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
2883 /*
2884 * If the inode is still dirty, then flush it out. If the inode
2885 * is not in the AIL, then it will be OK to flush it delwri as
2886 * long as xfs_iflush() does not keep any references to the inode.
2887 * We leave that decision up to xfs_iflush() since it has the
2888 * knowledge of whether it's OK to simply do a delwri flush of
2889 * the inode or whether we need to wait until the inode is
2890 * pulled from the AIL.
2891 * We get the flush lock regardless, though, just to make sure
2892 * we don't free it while it is being flushed.
2893 */
Lachlan McIlroy461aa8a2008-03-06 13:43:11 +11002894 if (!locked) {
2895 xfs_ilock(ip, XFS_ILOCK_EXCL);
2896 xfs_iflock(ip);
2897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
Lachlan McIlroy7f871d52008-06-23 13:23:57 +10002899 /*
2900 * In the case of a forced shutdown we rely on xfs_iflush() to
2901 * wait for the inode to be unpinned before returning an error.
2902 */
2903 if (xfs_iflush(ip, sync_mode) == 0) {
2904 /* synchronize with xfs_iflush_done */
2905 xfs_iflock(ip);
2906 xfs_ifunlock(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 }
2908
Lachlan McIlroy461aa8a2008-03-06 13:43:11 +11002909 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2910
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 reclaim:
2912 xfs_ireclaim(ip);
2913 return 0;
2914}
2915
2916int
2917xfs_finish_reclaim_all(xfs_mount_t *mp, int noblock)
2918{
2919 int purged;
2920 xfs_inode_t *ip, *n;
2921 int done = 0;
2922
2923 while (!done) {
2924 purged = 0;
2925 XFS_MOUNT_ILOCK(mp);
2926 list_for_each_entry_safe(ip, n, &mp->m_del_inodes, i_reclaim) {
2927 if (noblock) {
2928 if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL) == 0)
2929 continue;
2930 if (xfs_ipincount(ip) ||
2931 !xfs_iflock_nowait(ip)) {
2932 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2933 continue;
2934 }
2935 }
2936 XFS_MOUNT_IUNLOCK(mp);
Felix Blyakher6b2cf612005-11-25 16:42:13 +11002937 if (xfs_finish_reclaim(ip, noblock,
2938 XFS_IFLUSH_DELWRI_ELSE_ASYNC))
2939 delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 purged = 1;
2941 break;
2942 }
2943
2944 done = !purged;
2945 }
2946
2947 XFS_MOUNT_IUNLOCK(mp);
2948 return 0;
2949}
2950
2951/*
2952 * xfs_alloc_file_space()
2953 * This routine allocates disk space for the given file.
2954 *
2955 * If alloc_type == 0, this request is for an ALLOCSP type
2956 * request which will change the file size. In this case, no
2957 * DMAPI event will be generated by the call. A TRUNCATE event
2958 * will be generated later by xfs_setattr.
2959 *
2960 * If alloc_type != 0, this request is for a RESVSP type
2961 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
2962 * lower block boundary byte address is less than the file's
2963 * length.
2964 *
2965 * RETURNS:
2966 * 0 on success
2967 * errno on error
2968 *
2969 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002970STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971xfs_alloc_file_space(
2972 xfs_inode_t *ip,
2973 xfs_off_t offset,
2974 xfs_off_t len,
2975 int alloc_type,
2976 int attr_flags)
2977{
Nathan Scottdd9f4382006-01-11 15:28:28 +11002978 xfs_mount_t *mp = ip->i_mount;
2979 xfs_off_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 xfs_filblks_t allocated_fsb;
2981 xfs_filblks_t allocatesize_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11002982 xfs_extlen_t extsz, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 xfs_fileoff_t startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11002984 xfs_fsblock_t firstfsb;
2985 int nimaps;
2986 int bmapi_flag;
2987 int quota_flag;
2988 int rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 xfs_trans_t *tp;
Nathan Scottdd9f4382006-01-11 15:28:28 +11002990 xfs_bmbt_irec_t imaps[1], *imapp;
2991 xfs_bmap_free_t free_list;
2992 uint qblocks, resblks, resrtextents;
2993 int committed;
2994 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002996 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
2998 if (XFS_FORCED_SHUTDOWN(mp))
2999 return XFS_ERROR(EIO);
3000
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
3002 return error;
3003
3004 if (len <= 0)
3005 return XFS_ERROR(EINVAL);
3006
David Chinner957d0eb2007-06-18 16:50:37 +10003007 rt = XFS_IS_REALTIME_INODE(ip);
3008 extsz = xfs_get_extsz_hint(ip);
3009
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 count = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 imapp = &imaps[0];
Nathan Scottdd9f4382006-01-11 15:28:28 +11003012 nimaps = 1;
3013 bmapi_flag = XFS_BMAPI_WRITE | (alloc_type ? XFS_BMAPI_PREALLOC : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
3015 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
3016
3017 /* Generate a DMAPI event if needed. */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003018 if (alloc_type != 0 && offset < ip->i_size &&
Christoph Hellwig0f285c82008-07-18 17:13:28 +10003019 (attr_flags & XFS_ATTR_DMI) == 0 &&
Christoph Hellwigeb9df392007-08-16 18:42:07 +10003020 DM_EVENT_ENABLED(ip, DM_EVENT_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 xfs_off_t end_dmi_offset;
3022
3023 end_dmi_offset = offset+len;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003024 if (end_dmi_offset > ip->i_size)
3025 end_dmi_offset = ip->i_size;
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003026 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip, offset,
3027 end_dmi_offset - offset, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01003029 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 }
3031
3032 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003033 * Allocate file space until done or until there is an error
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 */
3035retry:
3036 while (allocatesize_fsb && !error) {
Nathan Scottdd9f4382006-01-11 15:28:28 +11003037 xfs_fileoff_t s, e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Nathan Scottdd9f4382006-01-11 15:28:28 +11003039 /*
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11003040 * Determine space reservations for data/realtime.
Nathan Scottdd9f4382006-01-11 15:28:28 +11003041 */
3042 if (unlikely(extsz)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 s = startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11003044 do_div(s, extsz);
3045 s *= extsz;
3046 e = startoffset_fsb + allocatesize_fsb;
3047 if ((temp = do_mod(startoffset_fsb, extsz)))
3048 e += temp;
3049 if ((temp = do_mod(e, extsz)))
3050 e += extsz - temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 } else {
Nathan Scottdd9f4382006-01-11 15:28:28 +11003052 s = 0;
3053 e = allocatesize_fsb;
3054 }
3055
3056 if (unlikely(rt)) {
3057 resrtextents = qblocks = (uint)(e - s);
3058 resrtextents /= mp->m_sb.sb_rextsize;
3059 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
3060 quota_flag = XFS_QMOPT_RES_RTBLKS;
3061 } else {
3062 resrtextents = 0;
3063 resblks = qblocks = \
3064 XFS_DIOSTRAT_SPACE_RES(mp, (uint)(e - s));
3065 quota_flag = XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 }
3067
3068 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003069 * Allocate and setup the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 */
3071 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Nathan Scottdd9f4382006-01-11 15:28:28 +11003072 error = xfs_trans_reserve(tp, resblks,
3073 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 XFS_TRANS_PERM_LOG_RES,
3075 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003077 * Check for running out of space
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 */
3079 if (error) {
3080 /*
3081 * Free the transaction structure.
3082 */
3083 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
3084 xfs_trans_cancel(tp, 0);
3085 break;
3086 }
3087 xfs_ilock(ip, XFS_ILOCK_EXCL);
Nathan Scottdd9f4382006-01-11 15:28:28 +11003088 error = XFS_TRANS_RESERVE_QUOTA_NBLKS(mp, tp, ip,
3089 qblocks, 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 if (error)
3091 goto error1;
3092
3093 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3094 xfs_trans_ihold(tp, ip);
3095
3096 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003097 * Issue the xfs_bmapi() call to allocate the blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 */
3099 XFS_BMAP_INIT(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003100 error = xfs_bmapi(tp, ip, startoffset_fsb,
Nathan Scottdd9f4382006-01-11 15:28:28 +11003101 allocatesize_fsb, bmapi_flag,
3102 &firstfsb, 0, imapp, &nimaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003103 &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 if (error) {
3105 goto error0;
3106 }
3107
3108 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003109 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11003111 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 if (error) {
3113 goto error0;
3114 }
3115
Eric Sandeen1c72bf92007-05-08 13:48:42 +10003116 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3118 if (error) {
3119 break;
3120 }
3121
3122 allocated_fsb = imapp->br_blockcount;
3123
Nathan Scottdd9f4382006-01-11 15:28:28 +11003124 if (nimaps == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 error = XFS_ERROR(ENOSPC);
3126 break;
3127 }
3128
3129 startoffset_fsb += allocated_fsb;
3130 allocatesize_fsb -= allocated_fsb;
3131 }
3132dmapi_enospc_check:
Christoph Hellwig0f285c82008-07-18 17:13:28 +10003133 if (error == ENOSPC && (attr_flags & XFS_ATTR_DMI) == 0 &&
Christoph Hellwigeb9df392007-08-16 18:42:07 +10003134 DM_EVENT_ENABLED(ip, DM_EVENT_NOSPACE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 error = XFS_SEND_NAMESP(mp, DM_EVENT_NOSPACE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003136 ip, DM_RIGHT_NULL,
3137 ip, DM_RIGHT_NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 NULL, NULL, 0, 0, 0); /* Delay flag intentionally unused */
3139 if (error == 0)
3140 goto retry; /* Maybe DMAPI app. has made space */
3141 /* else fall through with error from XFS_SEND_DATA */
3142 }
3143
3144 return error;
3145
Nathan Scottdd9f4382006-01-11 15:28:28 +11003146error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 xfs_bmap_cancel(&free_list);
Nathan Scottdd9f4382006-01-11 15:28:28 +11003148 XFS_TRANS_UNRESERVE_QUOTA_NBLKS(mp, tp, ip, qblocks, 0, quota_flag);
3149
3150error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
3152 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3153 goto dmapi_enospc_check;
3154}
3155
3156/*
3157 * Zero file bytes between startoff and endoff inclusive.
3158 * The iolock is held exclusive and no blocks are buffered.
3159 */
3160STATIC int
3161xfs_zero_remaining_bytes(
3162 xfs_inode_t *ip,
3163 xfs_off_t startoff,
3164 xfs_off_t endoff)
3165{
3166 xfs_bmbt_irec_t imap;
3167 xfs_fileoff_t offset_fsb;
3168 xfs_off_t lastoffset;
3169 xfs_off_t offset;
3170 xfs_buf_t *bp;
3171 xfs_mount_t *mp = ip->i_mount;
3172 int nimap;
3173 int error = 0;
3174
3175 bp = xfs_buf_get_noaddr(mp->m_sb.sb_blocksize,
Eric Sandeen71ddabb2007-11-23 16:29:42 +11003176 XFS_IS_REALTIME_INODE(ip) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 mp->m_rtdev_targp : mp->m_ddev_targp);
3178
3179 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
3180 offset_fsb = XFS_B_TO_FSBT(mp, offset);
3181 nimap = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003182 error = xfs_bmapi(NULL, ip, offset_fsb, 1, 0,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003183 NULL, 0, &imap, &nimap, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 if (error || nimap < 1)
3185 break;
3186 ASSERT(imap.br_blockcount >= 1);
3187 ASSERT(imap.br_startoff == offset_fsb);
3188 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
3189 if (lastoffset > endoff)
3190 lastoffset = endoff;
3191 if (imap.br_startblock == HOLESTARTBLOCK)
3192 continue;
3193 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
3194 if (imap.br_state == XFS_EXT_UNWRITTEN)
3195 continue;
3196 XFS_BUF_UNDONE(bp);
3197 XFS_BUF_UNWRITE(bp);
3198 XFS_BUF_READ(bp);
3199 XFS_BUF_SET_ADDR(bp, XFS_FSB_TO_DB(ip, imap.br_startblock));
3200 xfsbdstrat(mp, bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10003201 error = xfs_iowait(bp);
3202 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 xfs_ioerror_alert("xfs_zero_remaining_bytes(read)",
3204 mp, bp, XFS_BUF_ADDR(bp));
3205 break;
3206 }
3207 memset(XFS_BUF_PTR(bp) +
3208 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
3209 0, lastoffset - offset + 1);
3210 XFS_BUF_UNDONE(bp);
3211 XFS_BUF_UNREAD(bp);
3212 XFS_BUF_WRITE(bp);
3213 xfsbdstrat(mp, bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10003214 error = xfs_iowait(bp);
3215 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 xfs_ioerror_alert("xfs_zero_remaining_bytes(write)",
3217 mp, bp, XFS_BUF_ADDR(bp));
3218 break;
3219 }
3220 }
3221 xfs_buf_free(bp);
3222 return error;
3223}
3224
3225/*
3226 * xfs_free_file_space()
3227 * This routine frees disk space for the given file.
3228 *
3229 * This routine is only called by xfs_change_file_space
3230 * for an UNRESVSP type call.
3231 *
3232 * RETURNS:
3233 * 0 on success
3234 * errno on error
3235 *
3236 */
3237STATIC int
3238xfs_free_file_space(
3239 xfs_inode_t *ip,
3240 xfs_off_t offset,
3241 xfs_off_t len,
3242 int attr_flags)
3243{
Nathan Scott67fcaa72006-06-09 17:00:52 +10003244 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 int committed;
3246 int done;
3247 xfs_off_t end_dmi_offset;
3248 xfs_fileoff_t endoffset_fsb;
3249 int error;
3250 xfs_fsblock_t firstfsb;
3251 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 xfs_bmbt_irec_t imap;
3253 xfs_off_t ioffset;
3254 xfs_extlen_t mod=0;
3255 xfs_mount_t *mp;
3256 int nimap;
3257 uint resblks;
Nathan Scott673cdf52006-09-28 10:56:26 +10003258 uint rounding;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 int rt;
3260 xfs_fileoff_t startoffset_fsb;
3261 xfs_trans_t *tp;
Dean Roehrich5fcbab32005-05-05 13:27:19 -07003262 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
David Chinnere4f75292008-08-13 16:00:45 +10003264 vp = VFS_I(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 mp = ip->i_mount;
3266
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11003267 xfs_itrace_entry(ip);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10003268
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
3270 return error;
3271
3272 error = 0;
3273 if (len <= 0) /* if nothing being freed */
3274 return error;
Eric Sandeen71ddabb2007-11-23 16:29:42 +11003275 rt = XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
3277 end_dmi_offset = offset + len;
3278 endoffset_fsb = XFS_B_TO_FSBT(mp, end_dmi_offset);
3279
Christoph Hellwig0f285c82008-07-18 17:13:28 +10003280 if (offset < ip->i_size && (attr_flags & XFS_ATTR_DMI) == 0 &&
Christoph Hellwigeb9df392007-08-16 18:42:07 +10003281 DM_EVENT_ENABLED(ip, DM_EVENT_WRITE)) {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003282 if (end_dmi_offset > ip->i_size)
3283 end_dmi_offset = ip->i_size;
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003284 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 offset, end_dmi_offset - offset,
3286 AT_DELAY_FLAG(attr_flags), NULL);
3287 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01003288 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 }
3290
Christoph Hellwig0f285c82008-07-18 17:13:28 +10003291 if (attr_flags & XFS_ATTR_NOLOCK)
Dean Roehrich5fcbab32005-05-05 13:27:19 -07003292 need_iolock = 0;
Yingping Lu9fa80462006-03-22 12:44:35 +11003293 if (need_iolock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigb677c212007-08-29 11:46:28 +10003295 vn_iowait(ip); /* wait for the completion of any pending DIOs */
Yingping Lu9fa80462006-03-22 12:44:35 +11003296 }
Dean Roehrich5fcbab32005-05-05 13:27:19 -07003297
Tim Shimmine6a4b372007-11-23 16:30:42 +11003298 rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 ioffset = offset & ~(rounding - 1);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10003300
3301 if (VN_CACHED(vp) != 0) {
Tim Shimmine6a4b372007-11-23 16:30:42 +11003302 xfs_inval_cached_trace(ip, ioffset, -1, ioffset, -1);
3303 error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10003304 if (error)
3305 goto out_unlock_iolock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10003306 }
3307
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 /*
3309 * Need to zero the stuff we're not freeing, on disk.
3310 * If its a realtime file & can't use unwritten extents then we
3311 * actually need to zero the extent edges. Otherwise xfs_bunmapi
3312 * will take care of it for us.
3313 */
Eric Sandeen62118702008-03-06 13:44:28 +11003314 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 nimap = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003316 error = xfs_bmapi(NULL, ip, startoffset_fsb,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003317 1, 0, NULL, 0, &imap, &nimap, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 if (error)
3319 goto out_unlock_iolock;
3320 ASSERT(nimap == 0 || nimap == 1);
3321 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
3322 xfs_daddr_t block;
3323
3324 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
3325 block = imap.br_startblock;
3326 mod = do_div(block, mp->m_sb.sb_rextsize);
3327 if (mod)
3328 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
3329 }
3330 nimap = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003331 error = xfs_bmapi(NULL, ip, endoffset_fsb - 1,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003332 1, 0, NULL, 0, &imap, &nimap, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 if (error)
3334 goto out_unlock_iolock;
3335 ASSERT(nimap == 0 || nimap == 1);
3336 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
3337 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
3338 mod++;
3339 if (mod && (mod != mp->m_sb.sb_rextsize))
3340 endoffset_fsb -= mod;
3341 }
3342 }
3343 if ((done = (endoffset_fsb <= startoffset_fsb)))
3344 /*
3345 * One contiguous piece to clear
3346 */
3347 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
3348 else {
3349 /*
3350 * Some full blocks, possibly two pieces to clear
3351 */
3352 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
3353 error = xfs_zero_remaining_bytes(ip, offset,
3354 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
3355 if (!error &&
3356 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
3357 error = xfs_zero_remaining_bytes(ip,
3358 XFS_FSB_TO_B(mp, endoffset_fsb),
3359 offset + len - 1);
3360 }
3361
3362 /*
3363 * free file space until done or until there is an error
3364 */
3365 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
3366 while (!error && !done) {
3367
3368 /*
David Chinner91ebecc2007-07-19 16:28:30 +10003369 * allocate and setup the transaction. Allow this
3370 * transaction to dip into the reserve blocks to ensure
3371 * the freeing of the space succeeds at ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 */
3373 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
David Chinner91ebecc2007-07-19 16:28:30 +10003374 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 error = xfs_trans_reserve(tp,
3376 resblks,
3377 XFS_WRITE_LOG_RES(mp),
3378 0,
3379 XFS_TRANS_PERM_LOG_RES,
3380 XFS_WRITE_LOG_COUNT);
3381
3382 /*
3383 * check for running out of space
3384 */
3385 if (error) {
3386 /*
3387 * Free the transaction structure.
3388 */
3389 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
3390 xfs_trans_cancel(tp, 0);
3391 break;
3392 }
3393 xfs_ilock(ip, XFS_ILOCK_EXCL);
3394 error = XFS_TRANS_RESERVE_QUOTA(mp, tp,
Nathan Scottdd9f4382006-01-11 15:28:28 +11003395 ip->i_udquot, ip->i_gdquot, resblks, 0,
3396 XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 if (error)
3398 goto error1;
3399
3400 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3401 xfs_trans_ihold(tp, ip);
3402
3403 /*
3404 * issue the bunmapi() call to free the blocks
3405 */
3406 XFS_BMAP_INIT(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003407 error = xfs_bunmapi(tp, ip, startoffset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 endoffset_fsb - startoffset_fsb,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003409 0, 2, &firstfsb, &free_list, NULL, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 if (error) {
3411 goto error0;
3412 }
3413
3414 /*
3415 * complete the transaction
3416 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11003417 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 if (error) {
3419 goto error0;
3420 }
3421
Eric Sandeen1c72bf92007-05-08 13:48:42 +10003422 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3424 }
3425
3426 out_unlock_iolock:
3427 if (need_iolock)
3428 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
3429 return error;
3430
3431 error0:
3432 xfs_bmap_cancel(&free_list);
3433 error1:
3434 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
3435 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
3436 XFS_ILOCK_EXCL);
3437 return error;
3438}
3439
3440/*
3441 * xfs_change_file_space()
3442 * This routine allocates or frees disk space for the given file.
3443 * The user specified parameters are checked for alignment and size
3444 * limitations.
3445 *
3446 * RETURNS:
3447 * 0 on success
3448 * errno on error
3449 *
3450 */
3451int
3452xfs_change_file_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +10003453 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 int cmd,
3455 xfs_flock64_t *bf,
3456 xfs_off_t offset,
3457 cred_t *credp,
3458 int attr_flags)
3459{
Christoph Hellwig993386c2007-08-28 16:12:30 +10003460 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 int clrprealloc;
3462 int error;
3463 xfs_fsize_t fsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 int setprealloc;
3465 xfs_off_t startoffset;
3466 xfs_off_t llen;
3467 xfs_trans_t *tp;
Christoph Hellwig0f285c82008-07-18 17:13:28 +10003468 struct iattr iattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11003470 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
Christoph Hellwig993386c2007-08-28 16:12:30 +10003472 if (!S_ISREG(ip->i_d.di_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 return XFS_ERROR(EINVAL);
3474
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 switch (bf->l_whence) {
3476 case 0: /*SEEK_SET*/
3477 break;
3478 case 1: /*SEEK_CUR*/
3479 bf->l_start += offset;
3480 break;
3481 case 2: /*SEEK_END*/
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003482 bf->l_start += ip->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 break;
3484 default:
3485 return XFS_ERROR(EINVAL);
3486 }
3487
3488 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
3489
3490 if ( (bf->l_start < 0)
3491 || (bf->l_start > XFS_MAXIOFFSET(mp))
3492 || (bf->l_start + llen < 0)
3493 || (bf->l_start + llen > XFS_MAXIOFFSET(mp)))
3494 return XFS_ERROR(EINVAL);
3495
3496 bf->l_whence = 0;
3497
3498 startoffset = bf->l_start;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003499 fsize = ip->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
3501 /*
3502 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
3503 * file space.
3504 * These calls do NOT zero the data space allocated to the file,
3505 * nor do they change the file size.
3506 *
3507 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
3508 * space.
3509 * These calls cause the new file data to be zeroed and the file
3510 * size to be changed.
3511 */
3512 setprealloc = clrprealloc = 0;
3513
3514 switch (cmd) {
3515 case XFS_IOC_RESVSP:
3516 case XFS_IOC_RESVSP64:
3517 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
3518 1, attr_flags);
3519 if (error)
3520 return error;
3521 setprealloc = 1;
3522 break;
3523
3524 case XFS_IOC_UNRESVSP:
3525 case XFS_IOC_UNRESVSP64:
3526 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
3527 attr_flags)))
3528 return error;
3529 break;
3530
3531 case XFS_IOC_ALLOCSP:
3532 case XFS_IOC_ALLOCSP64:
3533 case XFS_IOC_FREESP:
3534 case XFS_IOC_FREESP64:
3535 if (startoffset > fsize) {
3536 error = xfs_alloc_file_space(ip, fsize,
3537 startoffset - fsize, 0, attr_flags);
3538 if (error)
3539 break;
3540 }
3541
Christoph Hellwig0f285c82008-07-18 17:13:28 +10003542 iattr.ia_valid = ATTR_SIZE;
3543 iattr.ia_size = startoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
Christoph Hellwig0f285c82008-07-18 17:13:28 +10003545 error = xfs_setattr(ip, &iattr, attr_flags, credp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546
3547 if (error)
3548 return error;
3549
3550 clrprealloc = 1;
3551 break;
3552
3553 default:
3554 ASSERT(0);
3555 return XFS_ERROR(EINVAL);
3556 }
3557
3558 /*
3559 * update the inode timestamp, mode, and prealloc flag bits
3560 */
3561 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
3562
3563 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
3564 0, 0, 0))) {
3565 /* ASSERT(0); */
3566 xfs_trans_cancel(tp, 0);
3567 return error;
3568 }
3569
3570 xfs_ilock(ip, XFS_ILOCK_EXCL);
3571
3572 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3573 xfs_trans_ihold(tp, ip);
3574
Christoph Hellwig0f285c82008-07-18 17:13:28 +10003575 if ((attr_flags & XFS_ATTR_DMI) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 ip->i_d.di_mode &= ~S_ISUID;
3577
3578 /*
3579 * Note that we don't have to worry about mandatory
3580 * file locking being disabled here because we only
3581 * clear the S_ISGID bit if the Group execute bit is
3582 * on, but if it was on then mandatory locking wouldn't
3583 * have been enabled.
3584 */
3585 if (ip->i_d.di_mode & S_IXGRP)
3586 ip->i_d.di_mode &= ~S_ISGID;
3587
3588 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3589 }
3590 if (setprealloc)
3591 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
3592 else if (clrprealloc)
3593 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
3594
3595 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3596 xfs_trans_set_sync(tp);
3597
Eric Sandeen1c72bf92007-05-08 13:48:42 +10003598 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
3600 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3601
3602 return error;
3603}