blob: 2ebfc60097d1aff9c8b4b56154cd7ece30bdb908 [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 -070078/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * xfs_setattr
80 */
81int
82xfs_setattr(
Christoph Hellwig993386c2007-08-28 16:12:30 +100083 xfs_inode_t *ip,
Nathan Scott8285fb52006-06-09 17:07:12 +100084 bhv_vattr_t *vap,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 int flags,
86 cred_t *credp)
87{
Christoph Hellwig993386c2007-08-28 16:12:30 +100088 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 int mask;
91 int code;
92 uint lock_flags;
93 uint commit_flags=0;
94 uid_t uid=0, iuid=0;
95 gid_t gid=0, igid=0;
96 int timeflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 xfs_prid_t projid=0, iprojid=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 struct xfs_dquot *udqp, *gdqp, *olddquot1, *olddquot2;
99 int file_owner;
Dean Roehrich5fcbab32005-05-05 13:27:19 -0700100 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100102 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000104 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 return XFS_ERROR(EROFS);
106
107 /*
108 * Cannot set certain attributes.
109 */
110 mask = vap->va_mask;
111 if (mask & XFS_AT_NOSET) {
112 return XFS_ERROR(EINVAL);
113 }
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (XFS_FORCED_SHUTDOWN(mp))
116 return XFS_ERROR(EIO);
117
118 /*
119 * Timestamps do not need to be logged and hence do not
120 * need to be done within a transaction.
121 */
122 if (mask & XFS_AT_UPDTIMES) {
123 ASSERT((mask & ~XFS_AT_UPDTIMES) == 0);
124 timeflags = ((mask & XFS_AT_UPDATIME) ? XFS_ICHGTIME_ACC : 0) |
125 ((mask & XFS_AT_UPDCTIME) ? XFS_ICHGTIME_CHG : 0) |
126 ((mask & XFS_AT_UPDMTIME) ? XFS_ICHGTIME_MOD : 0);
127 xfs_ichgtime(ip, timeflags);
128 return 0;
129 }
130
131 olddquot1 = olddquot2 = NULL;
132 udqp = gdqp = NULL;
133
134 /*
135 * If disk quotas is on, we make sure that the dquots do exist on disk,
136 * before we start any other transactions. Trying to do this later
137 * is messy. We don't care to take a readlock to look at the ids
138 * in inode here, because we can't hold it across the trans_reserve.
139 * If the IDs do change before we take the ilock, we're covered
140 * because the i_*dquot fields will get updated anyway.
141 */
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000142 if (XFS_IS_QUOTA_ON(mp) &&
143 (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 uint qflags = 0;
145
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000146 if ((mask & XFS_AT_UID) && XFS_IS_UQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 uid = vap->va_uid;
148 qflags |= XFS_QMOPT_UQUOTA;
149 } else {
150 uid = ip->i_d.di_uid;
151 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000152 if ((mask & XFS_AT_GID) && XFS_IS_GQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 gid = vap->va_gid;
154 qflags |= XFS_QMOPT_GQUOTA;
155 } else {
156 gid = ip->i_d.di_gid;
157 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000158 if ((mask & XFS_AT_PROJID) && XFS_IS_PQUOTA_ON(mp)) {
159 projid = vap->va_projid;
160 qflags |= XFS_QMOPT_PQUOTA;
161 } else {
162 projid = ip->i_d.di_projid;
163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /*
165 * We take a reference when we initialize udqp and gdqp,
166 * so it is important that we never blindly double trip on
167 * the same variable. See xfs_create() for an example.
168 */
169 ASSERT(udqp == NULL);
170 ASSERT(gdqp == NULL);
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000171 code = XFS_QM_DQVOPALLOC(mp, ip, uid, gid, projid, qflags,
172 &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (code)
Jesper Juhl014c2542006-01-15 02:37:08 +0100174 return code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176
177 /*
178 * For the other attributes, we acquire the inode lock and
179 * first do an error checking pass.
180 */
181 tp = NULL;
182 lock_flags = XFS_ILOCK_EXCL;
Dean Roehrich5fcbab32005-05-05 13:27:19 -0700183 if (flags & ATTR_NOLOCK)
184 need_iolock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (!(mask & XFS_AT_SIZE)) {
186 if ((mask != (XFS_AT_CTIME|XFS_AT_ATIME|XFS_AT_MTIME)) ||
187 (mp->m_flags & XFS_MOUNT_WSYNC)) {
188 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
189 commit_flags = 0;
190 if ((code = xfs_trans_reserve(tp, 0,
191 XFS_ICHANGE_LOG_RES(mp), 0,
192 0, 0))) {
193 lock_flags = 0;
194 goto error_return;
195 }
196 }
197 } else {
Christoph Hellwigeb9df392007-08-16 18:42:07 +1000198 if (DM_EVENT_ENABLED(ip, DM_EVENT_TRUNCATE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 !(flags & ATTR_DMI)) {
200 int dmflags = AT_DELAY_FLAG(flags) | DM_SEM_FLAG_WR;
Christoph Hellwigbc4ac742008-03-06 13:45:58 +1100201 code = XFS_SEND_DATA(mp, DM_EVENT_TRUNCATE, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 vap->va_size, 0, dmflags, NULL);
203 if (code) {
204 lock_flags = 0;
205 goto error_return;
206 }
207 }
208 if (need_iolock)
209 lock_flags |= XFS_IOLOCK_EXCL;
210 }
211
212 xfs_ilock(ip, lock_flags);
213
214 /* boolean: are we the file owner? */
215 file_owner = (current_fsuid(credp) == ip->i_d.di_uid);
216
217 /*
218 * Change various properties of a file.
219 * Only the owner or users with CAP_FOWNER
220 * capability may do these things.
221 */
222 if (mask &
223 (XFS_AT_MODE|XFS_AT_XFLAGS|XFS_AT_EXTSIZE|XFS_AT_UID|
224 XFS_AT_GID|XFS_AT_PROJID)) {
225 /*
226 * CAP_FOWNER overrides the following restrictions:
227 *
228 * The user ID of the calling process must be equal
229 * to the file owner ID, except in cases where the
230 * CAP_FSETID capability is applicable.
231 */
232 if (!file_owner && !capable(CAP_FOWNER)) {
233 code = XFS_ERROR(EPERM);
234 goto error_return;
235 }
236
237 /*
238 * CAP_FSETID overrides the following restrictions:
239 *
240 * The effective user ID of the calling process shall match
241 * the file owner when setting the set-user-ID and
242 * set-group-ID bits on that file.
243 *
244 * The effective group ID or one of the supplementary group
245 * IDs of the calling process shall match the group owner of
246 * the file when setting the set-group-ID bit on that file
247 */
248 if (mask & XFS_AT_MODE) {
249 mode_t m = 0;
250
251 if ((vap->va_mode & S_ISUID) && !file_owner)
252 m |= S_ISUID;
253 if ((vap->va_mode & S_ISGID) &&
254 !in_group_p((gid_t)ip->i_d.di_gid))
255 m |= S_ISGID;
256#if 0
257 /* Linux allows this, Irix doesn't. */
Christoph Hellwig42173f62008-04-22 17:33:25 +1000258 if ((vap->va_mode & S_ISVTX) && !S_ISDIR(ip->i_d.di_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 m |= S_ISVTX;
260#endif
261 if (m && !capable(CAP_FSETID))
262 vap->va_mode &= ~m;
263 }
264 }
265
266 /*
267 * Change file ownership. Must be the owner or privileged.
268 * If the system was configured with the "restricted_chown"
269 * option, the owner is not permitted to give away the file,
270 * and can change the group id only to a group of which he
271 * or she is a member.
272 */
273 if (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID)) {
274 /*
275 * These IDs could have changed since we last looked at them.
276 * But, we're assured that if the ownership did change
277 * while we didn't have the inode locked, inode's dquot(s)
278 * would have changed also.
279 */
280 iuid = ip->i_d.di_uid;
281 iprojid = ip->i_d.di_projid;
282 igid = ip->i_d.di_gid;
283 gid = (mask & XFS_AT_GID) ? vap->va_gid : igid;
284 uid = (mask & XFS_AT_UID) ? vap->va_uid : iuid;
285 projid = (mask & XFS_AT_PROJID) ? (xfs_prid_t)vap->va_projid :
286 iprojid;
287
288 /*
289 * CAP_CHOWN overrides the following restrictions:
290 *
291 * If _POSIX_CHOWN_RESTRICTED is defined, this capability
292 * shall override the restriction that a process cannot
293 * change the user ID of a file it owns and the restriction
294 * that the group ID supplied to the chown() function
295 * shall be equal to either the group ID or one of the
296 * supplementary group IDs of the calling process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 */
298 if (restricted_chown &&
299 (iuid != uid || (igid != gid &&
300 !in_group_p((gid_t)gid))) &&
301 !capable(CAP_CHOWN)) {
302 code = XFS_ERROR(EPERM);
303 goto error_return;
304 }
305 /*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000306 * Do a quota reservation only if uid/projid/gid is actually
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 * going to change.
308 */
309 if ((XFS_IS_UQUOTA_ON(mp) && iuid != uid) ||
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000310 (XFS_IS_PQUOTA_ON(mp) && iprojid != projid) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 (XFS_IS_GQUOTA_ON(mp) && igid != gid)) {
312 ASSERT(tp);
313 code = XFS_QM_DQVOPCHOWNRESV(mp, tp, ip, udqp, gdqp,
314 capable(CAP_FOWNER) ?
315 XFS_QMOPT_FORCE_RES : 0);
316 if (code) /* out of quota */
317 goto error_return;
318 }
319 }
320
321 /*
322 * Truncate file. Must have write permission and not be a directory.
323 */
324 if (mask & XFS_AT_SIZE) {
325 /* Short circuit the truncate case for zero length files */
326 if ((vap->va_size == 0) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000327 (ip->i_size == 0) && (ip->i_d.di_nextents == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 xfs_iunlock(ip, XFS_ILOCK_EXCL);
329 lock_flags &= ~XFS_ILOCK_EXCL;
330 if (mask & XFS_AT_CTIME)
331 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
332 code = 0;
333 goto error_return;
334 }
335
Christoph Hellwig42173f62008-04-22 17:33:25 +1000336 if (S_ISDIR(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 code = XFS_ERROR(EISDIR);
338 goto error_return;
Christoph Hellwig42173f62008-04-22 17:33:25 +1000339 } else if (!S_ISREG(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 code = XFS_ERROR(EINVAL);
341 goto error_return;
342 }
343 /*
344 * Make sure that the dquots are attached to the inode.
345 */
346 if ((code = XFS_QM_DQATTACH(mp, ip, XFS_QMOPT_ILOCKED)))
347 goto error_return;
348 }
349
350 /*
351 * Change file access or modified times.
352 */
353 if (mask & (XFS_AT_ATIME|XFS_AT_MTIME)) {
354 if (!file_owner) {
355 if ((flags & ATTR_UTIME) &&
356 !capable(CAP_FOWNER)) {
357 code = XFS_ERROR(EPERM);
358 goto error_return;
359 }
360 }
361 }
362
363 /*
364 * Change extent size or realtime flag.
365 */
366 if (mask & (XFS_AT_EXTSIZE|XFS_AT_XFLAGS)) {
367 /*
368 * Can't change extent size if any extents are allocated.
369 */
Eric Sandeene94af022005-11-02 15:10:41 +1100370 if (ip->i_d.di_nextents && (mask & XFS_AT_EXTSIZE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
372 vap->va_extsize) ) {
373 code = XFS_ERROR(EINVAL); /* EFBIG? */
374 goto error_return;
375 }
376
377 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 * Can't change realtime flag if any extents are allocated.
379 */
Eric Sandeene94af022005-11-02 15:10:41 +1100380 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
381 (mask & XFS_AT_XFLAGS) &&
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100382 (XFS_IS_REALTIME_INODE(ip)) !=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 (vap->va_xflags & XFS_XFLAG_REALTIME)) {
384 code = XFS_ERROR(EINVAL); /* EFBIG? */
385 goto error_return;
386 }
387 /*
388 * Extent size must be a multiple of the appropriate block
389 * size, if set at all.
390 */
391 if ((mask & XFS_AT_EXTSIZE) && vap->va_extsize != 0) {
392 xfs_extlen_t size;
393
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100394 if (XFS_IS_REALTIME_INODE(ip) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 ((mask & XFS_AT_XFLAGS) &&
396 (vap->va_xflags & XFS_XFLAG_REALTIME))) {
397 size = mp->m_sb.sb_rextsize <<
398 mp->m_sb.sb_blocklog;
399 } else {
400 size = mp->m_sb.sb_blocksize;
401 }
402 if (vap->va_extsize % size) {
403 code = XFS_ERROR(EINVAL);
404 goto error_return;
405 }
406 }
407 /*
408 * If realtime flag is set then must have realtime data.
409 */
410 if ((mask & XFS_AT_XFLAGS) &&
411 (vap->va_xflags & XFS_XFLAG_REALTIME)) {
412 if ((mp->m_sb.sb_rblocks == 0) ||
413 (mp->m_sb.sb_rextsize == 0) ||
414 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize)) {
415 code = XFS_ERROR(EINVAL);
416 goto error_return;
417 }
418 }
419
420 /*
421 * Can't modify an immutable/append-only file unless
422 * we have appropriate permission.
423 */
424 if ((mask & XFS_AT_XFLAGS) &&
425 (ip->i_d.di_flags &
426 (XFS_DIFLAG_IMMUTABLE|XFS_DIFLAG_APPEND) ||
427 (vap->va_xflags &
428 (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
429 !capable(CAP_LINUX_IMMUTABLE)) {
430 code = XFS_ERROR(EPERM);
431 goto error_return;
432 }
433 }
434
435 /*
436 * Now we can make the changes. Before we join the inode
437 * to the transaction, if XFS_AT_SIZE is set then take care of
438 * the part of the truncation that must be done without the
439 * inode lock. This needs to be done before joining the inode
440 * to the transaction, because the inode cannot be unlocked
441 * once it is a part of the transaction.
442 */
443 if (mask & XFS_AT_SIZE) {
444 code = 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000445 if ((vap->va_size > ip->i_size) &&
Eric Sandeen374e2ac2005-11-02 15:07:34 +1100446 (flags & ATTR_NOSIZETOK) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 code = xfs_igrow_start(ip, vap->va_size, credp);
Eric Sandeen374e2ac2005-11-02 15:07:34 +1100448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 xfs_iunlock(ip, XFS_ILOCK_EXCL);
David Chinnerc32676e2007-07-19 16:28:58 +1000450
451 /*
452 * We are going to log the inode size change in this
453 * transaction so any previous writes that are beyond the on
454 * disk EOF and the new EOF that have not been written out need
455 * to be written here. If we do not write the data out, we
456 * expose ourselves to the null files problem.
457 *
458 * Only flush from the on disk size to the smaller of the in
459 * memory file size or the new size as that's the range we
460 * really care about here and prevents waiting for other data
461 * not within the range we care about here.
462 */
463 if (!code &&
464 (ip->i_size != ip->i_d.di_size) &&
465 (vap->va_size > ip->i_d.di_size)) {
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000466 code = xfs_flush_pages(ip,
David Chinnerc32676e2007-07-19 16:28:58 +1000467 ip->i_d.di_size, vap->va_size,
468 XFS_B_ASYNC, FI_NONE);
469 }
470
471 /* wait for all I/O to complete */
Christoph Hellwigb677c212007-08-29 11:46:28 +1000472 vn_iowait(ip);
David Chinnerc32676e2007-07-19 16:28:58 +1000473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (!code)
475 code = xfs_itruncate_data(ip, vap->va_size);
476 if (code) {
477 ASSERT(tp == NULL);
478 lock_flags &= ~XFS_ILOCK_EXCL;
479 ASSERT(lock_flags == XFS_IOLOCK_EXCL);
480 goto error_return;
481 }
482 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_SIZE);
483 if ((code = xfs_trans_reserve(tp, 0,
484 XFS_ITRUNCATE_LOG_RES(mp), 0,
485 XFS_TRANS_PERM_LOG_RES,
486 XFS_ITRUNCATE_LOG_COUNT))) {
487 xfs_trans_cancel(tp, 0);
488 if (need_iolock)
489 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
490 return code;
491 }
492 commit_flags = XFS_TRANS_RELEASE_LOG_RES;
493 xfs_ilock(ip, XFS_ILOCK_EXCL);
494 }
495
496 if (tp) {
497 xfs_trans_ijoin(tp, ip, lock_flags);
498 xfs_trans_ihold(tp, ip);
499 }
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 /*
502 * Truncate file. Must have write permission and not be a directory.
503 */
504 if (mask & XFS_AT_SIZE) {
David Chinner44d814c2008-03-06 13:45:29 +1100505 /*
506 * Only change the c/mtime if we are changing the size
507 * or we are explicitly asked to change it. This handles
508 * the semantic difference between truncate() and ftruncate()
509 * as implemented in the VFS.
510 */
511 if (vap->va_size != ip->i_size || (mask & XFS_AT_CTIME))
512 timeflags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
513
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000514 if (vap->va_size > ip->i_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 xfs_igrow_finish(tp, ip, vap->va_size,
516 !(flags & ATTR_DMI));
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000517 } else if ((vap->va_size <= ip->i_size) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 ((vap->va_size == 0) && ip->i_d.di_nextents)) {
519 /*
520 * signal a sync transaction unless
521 * we're truncating an already unlinked
522 * file on a wsync filesystem
523 */
524 code = xfs_itruncate_finish(&tp, ip,
525 (xfs_fsize_t)vap->va_size,
526 XFS_DATA_FORK,
527 ((ip->i_d.di_nlink != 0 ||
528 !(mp->m_flags & XFS_MOUNT_WSYNC))
529 ? 1 : 0));
Nathan Scott7d4fb402006-06-09 15:27:16 +1000530 if (code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 goto abort_return;
Nathan Scott7d4fb402006-06-09 15:27:16 +1000532 /*
533 * Truncated "down", so we're removing references
534 * to old data here - if we now delay flushing for
535 * a long time, we expose ourselves unduly to the
536 * notorious NULL files problem. So, we mark this
537 * vnode and flush it when the file is closed, and
538 * do not wait the usual (long) time for writeout.
539 */
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000540 xfs_iflags_set(ip, XFS_ITRUNCATED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543
544 /*
545 * Change file access modes.
546 */
547 if (mask & XFS_AT_MODE) {
548 ip->i_d.di_mode &= S_IFMT;
549 ip->i_d.di_mode |= vap->va_mode & ~S_IFMT;
550
551 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
552 timeflags |= XFS_ICHGTIME_CHG;
553 }
554
555 /*
556 * Change file ownership. Must be the owner or privileged.
557 * If the system was configured with the "restricted_chown"
558 * option, the owner is not permitted to give away the file,
559 * and can change the group id only to a group of which he
560 * or she is a member.
561 */
562 if (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID)) {
563 /*
564 * CAP_FSETID overrides the following restrictions:
565 *
566 * The set-user-ID and set-group-ID bits of a file will be
567 * cleared upon successful return from chown()
568 */
569 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
570 !capable(CAP_FSETID)) {
571 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
572 }
573
574 /*
575 * Change the ownerships and register quota modifications
576 * in the transaction.
577 */
578 if (iuid != uid) {
579 if (XFS_IS_UQUOTA_ON(mp)) {
580 ASSERT(mask & XFS_AT_UID);
581 ASSERT(udqp);
582 olddquot1 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
583 &ip->i_udquot, udqp);
584 }
585 ip->i_d.di_uid = uid;
586 }
587 if (igid != gid) {
588 if (XFS_IS_GQUOTA_ON(mp)) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000589 ASSERT(!XFS_IS_PQUOTA_ON(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 ASSERT(mask & XFS_AT_GID);
591 ASSERT(gdqp);
592 olddquot2 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
593 &ip->i_gdquot, gdqp);
594 }
595 ip->i_d.di_gid = gid;
596 }
597 if (iprojid != projid) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000598 if (XFS_IS_PQUOTA_ON(mp)) {
599 ASSERT(!XFS_IS_GQUOTA_ON(mp));
600 ASSERT(mask & XFS_AT_PROJID);
601 ASSERT(gdqp);
602 olddquot2 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
603 &ip->i_gdquot, gdqp);
604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 ip->i_d.di_projid = projid;
606 /*
607 * We may have to rev the inode as well as
608 * the superblock version number since projids didn't
609 * exist before DINODE_VERSION_2 and SB_VERSION_NLINK.
610 */
611 if (ip->i_d.di_version == XFS_DINODE_VERSION_1)
612 xfs_bump_ino_vers2(tp, ip);
613 }
614
615 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
616 timeflags |= XFS_ICHGTIME_CHG;
617 }
618
619
620 /*
621 * Change file access or modified times.
622 */
623 if (mask & (XFS_AT_ATIME|XFS_AT_MTIME)) {
624 if (mask & XFS_AT_ATIME) {
625 ip->i_d.di_atime.t_sec = vap->va_atime.tv_sec;
626 ip->i_d.di_atime.t_nsec = vap->va_atime.tv_nsec;
627 ip->i_update_core = 1;
628 timeflags &= ~XFS_ICHGTIME_ACC;
629 }
630 if (mask & XFS_AT_MTIME) {
631 ip->i_d.di_mtime.t_sec = vap->va_mtime.tv_sec;
632 ip->i_d.di_mtime.t_nsec = vap->va_mtime.tv_nsec;
633 timeflags &= ~XFS_ICHGTIME_MOD;
634 timeflags |= XFS_ICHGTIME_CHG;
635 }
636 if (tp && (flags & ATTR_UTIME))
637 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
638 }
639
640 /*
641 * Change XFS-added attributes.
642 */
643 if (mask & (XFS_AT_EXTSIZE|XFS_AT_XFLAGS)) {
644 if (mask & XFS_AT_EXTSIZE) {
645 /*
646 * Converting bytes to fs blocks.
647 */
648 ip->i_d.di_extsize = vap->va_extsize >>
649 mp->m_sb.sb_blocklog;
650 }
651 if (mask & XFS_AT_XFLAGS) {
652 uint di_flags;
653
654 /* can't set PREALLOC this way, just preserve it */
655 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
656 if (vap->va_xflags & XFS_XFLAG_IMMUTABLE)
657 di_flags |= XFS_DIFLAG_IMMUTABLE;
658 if (vap->va_xflags & XFS_XFLAG_APPEND)
659 di_flags |= XFS_DIFLAG_APPEND;
660 if (vap->va_xflags & XFS_XFLAG_SYNC)
661 di_flags |= XFS_DIFLAG_SYNC;
662 if (vap->va_xflags & XFS_XFLAG_NOATIME)
663 di_flags |= XFS_DIFLAG_NOATIME;
664 if (vap->va_xflags & XFS_XFLAG_NODUMP)
665 di_flags |= XFS_DIFLAG_NODUMP;
Nathan Scott365ca832005-06-21 15:39:12 +1000666 if (vap->va_xflags & XFS_XFLAG_PROJINHERIT)
667 di_flags |= XFS_DIFLAG_PROJINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000668 if (vap->va_xflags & XFS_XFLAG_NODEFRAG)
669 di_flags |= XFS_DIFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000670 if (vap->va_xflags & XFS_XFLAG_FILESTREAM)
671 di_flags |= XFS_DIFLAG_FILESTREAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if ((ip->i_d.di_mode & S_IFMT) == S_IFDIR) {
673 if (vap->va_xflags & XFS_XFLAG_RTINHERIT)
674 di_flags |= XFS_DIFLAG_RTINHERIT;
675 if (vap->va_xflags & XFS_XFLAG_NOSYMLINKS)
676 di_flags |= XFS_DIFLAG_NOSYMLINKS;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100677 if (vap->va_xflags & XFS_XFLAG_EXTSZINHERIT)
678 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
679 } else if ((ip->i_d.di_mode & S_IFMT) == S_IFREG) {
Christoph Hellwig613d7042007-10-11 17:44:08 +1000680 if (vap->va_xflags & XFS_XFLAG_REALTIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 di_flags |= XFS_DIFLAG_REALTIME;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100682 if (vap->va_xflags & XFS_XFLAG_EXTSIZE)
683 di_flags |= XFS_DIFLAG_EXTSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685 ip->i_d.di_flags = di_flags;
686 }
687 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
688 timeflags |= XFS_ICHGTIME_CHG;
689 }
690
691 /*
692 * Change file inode change time only if XFS_AT_CTIME set
693 * AND we have been called by a DMI function.
694 */
695
696 if ( (flags & ATTR_DMI) && (mask & XFS_AT_CTIME) ) {
697 ip->i_d.di_ctime.t_sec = vap->va_ctime.tv_sec;
698 ip->i_d.di_ctime.t_nsec = vap->va_ctime.tv_nsec;
699 ip->i_update_core = 1;
700 timeflags &= ~XFS_ICHGTIME_CHG;
701 }
702
703 /*
704 * Send out timestamp changes that need to be set to the
705 * current time. Not done when called by a DMI function.
706 */
707 if (timeflags && !(flags & ATTR_DMI))
708 xfs_ichgtime(ip, timeflags);
709
710 XFS_STATS_INC(xs_ig_attrchg);
711
712 /*
713 * If this is a synchronous mount, make sure that the
714 * transaction goes to disk before returning to the user.
715 * This is slightly sub-optimal in that truncates require
Nathan Scottc41564b2006-03-29 08:55:14 +1000716 * two sync transactions instead of one for wsync filesystems.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 * One for the truncate and one for the timestamps since we
718 * don't want to change the timestamps unless we're sure the
719 * truncate worked. Truncates are less than 1% of the laddis
720 * mix so this probably isn't worth the trouble to optimize.
721 */
722 code = 0;
723 if (tp) {
724 if (mp->m_flags & XFS_MOUNT_WSYNC)
725 xfs_trans_set_sync(tp);
726
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000727 code = xfs_trans_commit(tp, commit_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 xfs_iunlock(ip, lock_flags);
731
732 /*
733 * Release any dquot(s) the inode had kept before chown.
734 */
735 XFS_QM_DQRELE(mp, olddquot1);
736 XFS_QM_DQRELE(mp, olddquot2);
737 XFS_QM_DQRELE(mp, udqp);
738 XFS_QM_DQRELE(mp, gdqp);
739
740 if (code) {
741 return code;
742 }
743
Christoph Hellwigeb9df392007-08-16 18:42:07 +1000744 if (DM_EVENT_ENABLED(ip, DM_EVENT_ATTRIBUTE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 !(flags & ATTR_DMI)) {
Christoph Hellwigbc4ac742008-03-06 13:45:58 +1100746 (void) XFS_SEND_NAMESP(mp, DM_EVENT_ATTRIBUTE, ip, DM_RIGHT_NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 NULL, DM_RIGHT_NULL, NULL, NULL,
748 0, 0, AT_DELAY_FLAG(flags));
749 }
750 return 0;
751
752 abort_return:
753 commit_flags |= XFS_TRANS_ABORT;
754 /* FALLTHROUGH */
755 error_return:
756 XFS_QM_DQRELE(mp, udqp);
757 XFS_QM_DQRELE(mp, gdqp);
758 if (tp) {
759 xfs_trans_cancel(tp, commit_flags);
760 }
761 if (lock_flags != 0) {
762 xfs_iunlock(ip, lock_flags);
763 }
764 return code;
765}
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767/*
Nathan Scott7d4fb402006-06-09 15:27:16 +1000768 * The maximum pathlen is 1024 bytes. Since the minimum file system
769 * blocksize is 512 bytes, we can get a max of 2 extents back from
770 * bmapi.
771 */
772#define SYMLINK_MAPS 2
773
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000774STATIC int
775xfs_readlink_bmap(
776 xfs_inode_t *ip,
777 char *link)
778{
779 xfs_mount_t *mp = ip->i_mount;
780 int pathlen = ip->i_d.di_size;
781 int nmaps = SYMLINK_MAPS;
782 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
783 xfs_daddr_t d;
784 int byte_cnt;
785 int n;
786 xfs_buf_t *bp;
787 int error = 0;
788
789 error = xfs_bmapi(NULL, ip, 0, XFS_B_TO_FSB(mp, pathlen), 0, NULL, 0,
790 mval, &nmaps, NULL, NULL);
791 if (error)
792 goto out;
793
794 for (n = 0; n < nmaps; n++) {
795 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
796 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
797
798 bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt), 0);
799 error = XFS_BUF_GETERROR(bp);
800 if (error) {
801 xfs_ioerror_alert("xfs_readlink",
802 ip->i_mount, bp, XFS_BUF_ADDR(bp));
803 xfs_buf_relse(bp);
804 goto out;
805 }
806 if (pathlen < byte_cnt)
807 byte_cnt = pathlen;
808 pathlen -= byte_cnt;
809
810 memcpy(link, XFS_BUF_PTR(bp), byte_cnt);
811 xfs_buf_relse(bp);
812 }
813
814 link[ip->i_d.di_size] = '\0';
815 error = 0;
816
817 out:
818 return error;
819}
820
Christoph Hellwig993386c2007-08-28 16:12:30 +1000821int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822xfs_readlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000823 xfs_inode_t *ip,
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000824 char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000826 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100830 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 if (XFS_FORCED_SHUTDOWN(mp))
833 return XFS_ERROR(EIO);
834
835 xfs_ilock(ip, XFS_ILOCK_SHARED);
836
837 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFLNK);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000838 ASSERT(ip->i_d.di_size <= MAXPATHLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000840 pathlen = ip->i_d.di_size;
841 if (!pathlen)
842 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 if (ip->i_df.if_flags & XFS_IFINLINE) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000845 memcpy(link, ip->i_df.if_u1.if_data, pathlen);
846 link[pathlen] = '\0';
847 } else {
848 error = xfs_readlink_bmap(ip, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000851 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return error;
854}
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856/*
857 * xfs_fsync
858 *
859 * This is called to sync the inode and its data out to disk.
860 * We need to hold the I/O lock while flushing the data, and
861 * the inode lock while flushing the inode. The inode lock CANNOT
862 * be held while flushing the data, so acquire after we're done
863 * with that.
864 */
Christoph Hellwig993386c2007-08-28 16:12:30 +1000865int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866xfs_fsync(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000867 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 int flag,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 xfs_off_t start,
870 xfs_off_t stop)
871{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 xfs_trans_t *tp;
873 int error;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100874 int log_flushed = 0, changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100876 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 ASSERT(start >= 0 && stop >= -1);
879
880 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
881 return XFS_ERROR(EIO);
882
Lachlan McIlroy776a75fa2007-09-14 15:22:50 +1000883 if (flag & FSYNC_DATA)
884 filemap_fdatawait(vn_to_inode(XFS_ITOV(ip))->i_mapping);
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 /*
887 * We always need to make sure that the required inode state
888 * is safe on disk. The vnode might be clean but because
889 * of committed transactions that haven't hit the disk yet.
890 * Likewise, there could be unflushed non-transactional
891 * changes to the inode core that have to go to disk.
892 *
893 * The following code depends on one assumption: that
894 * any transaction that changes an inode logs the core
895 * because it has to change some field in the inode core
896 * (typically nextents or nblocks). That assumption
897 * implies that any transactions against an inode will
898 * catch any non-transactional updates. If inode-altering
899 * transactions exist that violate this assumption, the
900 * code breaks. Right now, it figures that if the involved
901 * update_* field is clear and the inode is unpinned, the
902 * inode is clean. Either it's been flushed or it's been
903 * committed and the commit has hit the disk unpinning the inode.
904 * (Note that xfs_inode_item_format() called at commit clears
905 * the update_* fields.)
906 */
907 xfs_ilock(ip, XFS_ILOCK_SHARED);
908
909 /* If we are flushing data then we care about update_size
910 * being set, otherwise we care about update_core
911 */
912 if ((flag & FSYNC_DATA) ?
913 (ip->i_update_size == 0) :
914 (ip->i_update_core == 0)) {
915 /*
916 * Timestamps/size haven't changed since last inode
917 * flush or inode transaction commit. That means
918 * either nothing got written or a transaction
919 * committed which caught the updates. If the
920 * latter happened and the transaction hasn't
921 * hit the disk yet, the inode will be still
922 * be pinned. If it is, force the log.
923 */
924
925 xfs_iunlock(ip, XFS_ILOCK_SHARED);
926
927 if (xfs_ipincount(ip)) {
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100928 _xfs_log_force(ip->i_mount, (xfs_lsn_t)0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 XFS_LOG_FORCE |
930 ((flag & FSYNC_WAIT)
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100931 ? XFS_LOG_SYNC : 0),
932 &log_flushed);
933 } else {
934 /*
935 * If the inode is not pinned and nothing
936 * has changed we don't need to flush the
937 * cache.
938 */
939 changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 }
941 error = 0;
942 } else {
943 /*
944 * Kick off a transaction to log the inode
945 * core to get the updates. Make it
946 * sync if FSYNC_WAIT is passed in (which
947 * is done by everybody but specfs). The
948 * sync transaction will also force the log.
949 */
950 xfs_iunlock(ip, XFS_ILOCK_SHARED);
951 tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_FSYNC_TS);
952 if ((error = xfs_trans_reserve(tp, 0,
953 XFS_FSYNC_TS_LOG_RES(ip->i_mount),
954 0, 0, 0))) {
955 xfs_trans_cancel(tp, 0);
956 return error;
957 }
958 xfs_ilock(ip, XFS_ILOCK_EXCL);
959
960 /*
961 * Note - it's possible that we might have pushed
962 * ourselves out of the way during trans_reserve
963 * which would flush the inode. But there's no
964 * guarantee that the inode buffer has actually
965 * gone out yet (it's delwri). Plus the buffer
966 * could be pinned anyway if it's part of an
967 * inode in another recent transaction. So we
968 * play it safe and fire off the transaction anyway.
969 */
970 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
971 xfs_trans_ihold(tp, ip);
972 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
973 if (flag & FSYNC_WAIT)
974 xfs_trans_set_sync(tp);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000975 error = _xfs_trans_commit(tp, 0, &log_flushed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 xfs_iunlock(ip, XFS_ILOCK_EXCL);
978 }
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100979
980 if ((ip->i_mount->m_flags & XFS_MOUNT_BARRIER) && changed) {
981 /*
982 * If the log write didn't issue an ordered tag we need
983 * to flush the disk cache for the data device now.
984 */
985 if (!log_flushed)
986 xfs_blkdev_issue_flush(ip->i_mount->m_ddev_targp);
987
988 /*
989 * If this inode is on the RT dev we need to flush that
Nathan Scottc41564b2006-03-29 08:55:14 +1000990 * cache as well.
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100991 */
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100992 if (XFS_IS_REALTIME_INODE(ip))
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100993 xfs_blkdev_issue_flush(ip->i_mount->m_rtdev_targp);
994 }
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return error;
997}
998
999/*
David Chinner92dfe8d2007-05-24 15:22:19 +10001000 * This is called by xfs_inactive to free any blocks beyond eof
1001 * when the link count isn't zero and by xfs_dm_punch_hole() when
1002 * punching a hole to EOF.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 */
David Chinner92dfe8d2007-05-24 15:22:19 +10001004int
1005xfs_free_eofblocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 xfs_mount_t *mp,
David Chinner92dfe8d2007-05-24 15:22:19 +10001007 xfs_inode_t *ip,
1008 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
1010 xfs_trans_t *tp;
1011 int error;
1012 xfs_fileoff_t end_fsb;
1013 xfs_fileoff_t last_fsb;
1014 xfs_filblks_t map_len;
1015 int nimaps;
1016 xfs_bmbt_irec_t imap;
David Chinner92dfe8d2007-05-24 15:22:19 +10001017 int use_iolock = (flags & XFS_FREE_EOF_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 /*
1020 * Figure out if there are any blocks beyond the end
1021 * of the file. If not, then there is nothing to do.
1022 */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001023 end_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)ip->i_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 last_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
1025 map_len = last_fsb - end_fsb;
1026 if (map_len <= 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01001027 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 nimaps = 1;
1030 xfs_ilock(ip, XFS_ILOCK_SHARED);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10001031 error = xfs_bmapi(NULL, ip, end_fsb, map_len, 0,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001032 NULL, 0, &imap, &nimaps, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1034
1035 if (!error && (nimaps != 0) &&
Yingping Lu68bdb6e2006-01-11 15:38:31 +11001036 (imap.br_startblock != HOLESTARTBLOCK ||
1037 ip->i_delayed_blks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 /*
1039 * Attach the dquots to the inode up front.
1040 */
1041 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001042 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 /*
1045 * There are blocks after the end of file.
1046 * Free them up now by truncating the file to
1047 * its current size.
1048 */
1049 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1050
1051 /*
1052 * Do the xfs_itruncate_start() call before
1053 * reserving any log space because
1054 * itruncate_start will call into the buffer
1055 * cache and we can't
1056 * do that within a transaction.
1057 */
David Chinner92dfe8d2007-05-24 15:22:19 +10001058 if (use_iolock)
1059 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001060 error = xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE,
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001061 ip->i_size);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001062 if (error) {
Jesper Juhl87ae3c22007-06-28 16:43:14 +10001063 xfs_trans_cancel(tp, 0);
David Chinner92dfe8d2007-05-24 15:22:19 +10001064 if (use_iolock)
1065 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001066 return error;
1067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 error = xfs_trans_reserve(tp, 0,
1070 XFS_ITRUNCATE_LOG_RES(mp),
1071 0, XFS_TRANS_PERM_LOG_RES,
1072 XFS_ITRUNCATE_LOG_COUNT);
1073 if (error) {
1074 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1075 xfs_trans_cancel(tp, 0);
1076 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001077 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079
1080 xfs_ilock(ip, XFS_ILOCK_EXCL);
1081 xfs_trans_ijoin(tp, ip,
1082 XFS_IOLOCK_EXCL |
1083 XFS_ILOCK_EXCL);
1084 xfs_trans_ihold(tp, ip);
1085
1086 error = xfs_itruncate_finish(&tp, ip,
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001087 ip->i_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 XFS_DATA_FORK,
1089 0);
1090 /*
1091 * If we get an error at this point we
1092 * simply don't bother truncating the file.
1093 */
1094 if (error) {
1095 xfs_trans_cancel(tp,
1096 (XFS_TRANS_RELEASE_LOG_RES |
1097 XFS_TRANS_ABORT));
1098 } else {
1099 error = xfs_trans_commit(tp,
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001100 XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
David Chinner92dfe8d2007-05-24 15:22:19 +10001102 xfs_iunlock(ip, (use_iolock ? (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)
1103 : XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001105 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
1108/*
1109 * Free a symlink that has blocks associated with it.
1110 */
1111STATIC int
1112xfs_inactive_symlink_rmt(
1113 xfs_inode_t *ip,
1114 xfs_trans_t **tpp)
1115{
1116 xfs_buf_t *bp;
1117 int committed;
1118 int done;
1119 int error;
1120 xfs_fsblock_t first_block;
1121 xfs_bmap_free_t free_list;
1122 int i;
1123 xfs_mount_t *mp;
1124 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1125 int nmaps;
1126 xfs_trans_t *ntp;
1127 int size;
1128 xfs_trans_t *tp;
1129
1130 tp = *tpp;
1131 mp = ip->i_mount;
1132 ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip));
1133 /*
1134 * We're freeing a symlink that has some
1135 * blocks allocated to it. Free the
1136 * blocks here. We know that we've got
1137 * either 1 or 2 extents and that we can
1138 * free them all in one bunmapi call.
1139 */
1140 ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
1141 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
1142 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
1143 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1144 xfs_trans_cancel(tp, 0);
1145 *tpp = NULL;
1146 return error;
1147 }
1148 /*
1149 * Lock the inode, fix the size, and join it to the transaction.
1150 * Hold it so in the normal path, we still have it locked for
1151 * the second transaction. In the error paths we need it
1152 * held so the cancel won't rele it, see below.
1153 */
1154 xfs_ilock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1155 size = (int)ip->i_d.di_size;
1156 ip->i_d.di_size = 0;
1157 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1158 xfs_trans_ihold(tp, ip);
1159 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1160 /*
1161 * Find the block(s) so we can inval and unmap them.
1162 */
1163 done = 0;
1164 XFS_BMAP_INIT(&free_list, &first_block);
Tobias Klausere8c96f82006-03-24 03:15:34 -08001165 nmaps = ARRAY_SIZE(mval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if ((error = xfs_bmapi(tp, ip, 0, XFS_B_TO_FSB(mp, size),
1167 XFS_BMAPI_METADATA, &first_block, 0, mval, &nmaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001168 &free_list, NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 goto error0;
1170 /*
1171 * Invalidate the block(s).
1172 */
1173 for (i = 0; i < nmaps; i++) {
1174 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
1175 XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
1176 XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
1177 xfs_trans_binval(tp, bp);
1178 }
1179 /*
1180 * Unmap the dead block(s) to the free_list.
1181 */
1182 if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001183 &first_block, &free_list, NULL, &done)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 goto error1;
1185 ASSERT(done);
1186 /*
1187 * Commit the first transaction. This logs the EFI and the inode.
1188 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001189 if ((error = xfs_bmap_finish(&tp, &free_list, &committed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 goto error1;
1191 /*
1192 * The transaction must have been committed, since there were
1193 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
1194 * The new tp has the extent freeing and EFDs.
1195 */
1196 ASSERT(committed);
1197 /*
1198 * The first xact was committed, so add the inode to the new one.
1199 * Mark it dirty so it will be logged and moved forward in the log as
1200 * part of every commit.
1201 */
1202 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1203 xfs_trans_ihold(tp, ip);
1204 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1205 /*
1206 * Get a new, empty transaction to return to our caller.
1207 */
1208 ntp = xfs_trans_dup(tp);
1209 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001210 * Commit the transaction containing extent freeing and EFDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 * If we get an error on the commit here or on the reserve below,
1212 * we need to unlock the inode since the new transaction doesn't
1213 * have the inode attached.
1214 */
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001215 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 tp = ntp;
1217 if (error) {
1218 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1219 goto error0;
1220 }
1221 /*
1222 * Remove the memory for extent descriptions (just bookkeeping).
1223 */
1224 if (ip->i_df.if_bytes)
1225 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
1226 ASSERT(ip->i_df.if_bytes == 0);
1227 /*
1228 * Put an itruncate log reservation in the new transaction
1229 * for our caller.
1230 */
1231 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
1232 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
1233 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1234 goto error0;
1235 }
1236 /*
1237 * Return with the inode locked but not joined to the transaction.
1238 */
1239 *tpp = tp;
1240 return 0;
1241
1242 error1:
1243 xfs_bmap_cancel(&free_list);
1244 error0:
1245 /*
1246 * Have to come here with the inode locked and either
1247 * (held and in the transaction) or (not in the transaction).
1248 * If the inode isn't held then cancel would iput it, but
1249 * that's wrong since this is inactive and the vnode ref
1250 * count is 0 already.
1251 * Cancel won't do anything to the inode if held, but it still
1252 * needs to be locked until the cancel is done, if it was
1253 * joined to the transaction.
1254 */
1255 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1256 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1257 *tpp = NULL;
1258 return error;
1259
1260}
1261
1262STATIC int
1263xfs_inactive_symlink_local(
1264 xfs_inode_t *ip,
1265 xfs_trans_t **tpp)
1266{
1267 int error;
1268
1269 ASSERT(ip->i_d.di_size <= XFS_IFORK_DSIZE(ip));
1270 /*
1271 * We're freeing a symlink which fit into
1272 * the inode. Just free the memory used
1273 * to hold the old symlink.
1274 */
1275 error = xfs_trans_reserve(*tpp, 0,
1276 XFS_ITRUNCATE_LOG_RES(ip->i_mount),
1277 0, XFS_TRANS_PERM_LOG_RES,
1278 XFS_ITRUNCATE_LOG_COUNT);
1279
1280 if (error) {
1281 xfs_trans_cancel(*tpp, 0);
1282 *tpp = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +01001283 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 }
1285 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1286
1287 /*
1288 * Zero length symlinks _can_ exist.
1289 */
1290 if (ip->i_df.if_bytes > 0) {
1291 xfs_idata_realloc(ip,
1292 -(ip->i_df.if_bytes),
1293 XFS_DATA_FORK);
1294 ASSERT(ip->i_df.if_bytes == 0);
1295 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001296 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299STATIC int
1300xfs_inactive_attrs(
1301 xfs_inode_t *ip,
1302 xfs_trans_t **tpp)
1303{
1304 xfs_trans_t *tp;
1305 int error;
1306 xfs_mount_t *mp;
1307
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001308 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 tp = *tpp;
1310 mp = ip->i_mount;
1311 ASSERT(ip->i_d.di_forkoff != 0);
David Chinnere5720ee2008-04-10 12:21:18 +10001312 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 xfs_iunlock(ip, XFS_ILOCK_EXCL);
David Chinnere5720ee2008-04-10 12:21:18 +10001314 if (error)
1315 goto error_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 error = xfs_attr_inactive(ip);
David Chinnere5720ee2008-04-10 12:21:18 +10001318 if (error)
1319 goto error_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1322 error = xfs_trans_reserve(tp, 0,
1323 XFS_IFREE_LOG_RES(mp),
1324 0, XFS_TRANS_PERM_LOG_RES,
1325 XFS_INACTIVE_LOG_COUNT);
David Chinnere5720ee2008-04-10 12:21:18 +10001326 if (error)
1327 goto error_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 xfs_ilock(ip, XFS_ILOCK_EXCL);
1330 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1331 xfs_trans_ihold(tp, ip);
1332 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1333
1334 ASSERT(ip->i_d.di_anextents == 0);
1335
1336 *tpp = tp;
Jesper Juhl014c2542006-01-15 02:37:08 +01001337 return 0;
David Chinnere5720ee2008-04-10 12:21:18 +10001338
1339error_cancel:
1340 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1341 xfs_trans_cancel(tp, 0);
1342error_unlock:
1343 *tpp = NULL;
1344 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1345 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
Christoph Hellwig993386c2007-08-28 16:12:30 +10001348int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349xfs_release(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001350 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001352 bhv_vnode_t *vp = XFS_ITOV(ip);
1353 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 int error;
1355
Christoph Hellwig42173f62008-04-22 17:33:25 +10001356 if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001360 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return 0;
1362
David Chinner2a82b8b2007-07-11 11:09:12 +10001363 if (!XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001364 int truncated;
1365
David Chinner2a82b8b2007-07-11 11:09:12 +10001366 /*
1367 * If we are using filestreams, and we have an unlinked
1368 * file that we are processing the last close on, then nothing
1369 * will be able to reopen and write to this file. Purge this
1370 * inode from the filestreams cache so that it doesn't delay
1371 * teardown of the inode.
1372 */
1373 if ((ip->i_d.di_nlink == 0) && xfs_inode_is_filestream(ip))
1374 xfs_filestream_deassociate(ip);
1375
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +10001376 /*
1377 * If we previously truncated this file and removed old data
1378 * in the process, we want to initiate "early" writeout on
1379 * the last close. This is an attempt to combat the notorious
1380 * NULL files problem which is particularly noticable from a
1381 * truncate down, buffered (re-)write (delalloc), followed by
1382 * a crash. What we are effectively doing here is
1383 * significantly reducing the time window where we'd otherwise
1384 * be exposed to that problem.
1385 */
Christoph Hellwig09262b42007-08-29 11:44:50 +10001386 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001387 if (truncated && VN_DIRTY(vp) && ip->i_delayed_blks > 0)
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001388 xfs_flush_pages(ip, 0, -1, XFS_B_ASYNC, FI_NONE);
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +10001389 }
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (ip->i_d.di_nlink != 0) {
1392 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001393 ((ip->i_size > 0) || (VN_CACHED(vp) > 0 ||
Yingping Lu68bdb6e2006-01-11 15:38:31 +11001394 ip->i_delayed_blks > 0)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
Nathan Scottdd9f4382006-01-11 15:28:28 +11001396 (!(ip->i_d.di_flags &
1397 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)))) {
David Chinner92dfe8d2007-05-24 15:22:19 +10001398 error = xfs_free_eofblocks(mp, ip, XFS_FREE_EOF_LOCK);
1399 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001400 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402 }
1403
1404 return 0;
1405}
1406
1407/*
1408 * xfs_inactive
1409 *
1410 * This is called when the vnode reference count for the vnode
1411 * goes to zero. If the file has been unlinked, then it must
1412 * now be truncated. Also, we clear all of the read-ahead state
1413 * kept for the inode here since the file is now closed.
1414 */
Christoph Hellwig993386c2007-08-28 16:12:30 +10001415int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416xfs_inactive(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001417 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001419 bhv_vnode_t *vp = XFS_ITOV(ip);
Nathan Scott67fcaa72006-06-09 17:00:52 +10001420 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 xfs_fsblock_t first_block;
1422 int committed;
1423 xfs_trans_t *tp;
1424 xfs_mount_t *mp;
1425 int error;
1426 int truncate;
1427
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001428 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 /*
1431 * If the inode is already free, then there can be nothing
1432 * to clean up here.
1433 */
1434 if (ip->i_d.di_mode == 0 || VN_BAD(vp)) {
1435 ASSERT(ip->i_df.if_real_bytes == 0);
1436 ASSERT(ip->i_df.if_broot_bytes == 0);
1437 return VN_INACTIVE_CACHE;
1438 }
1439
1440 /*
1441 * Only do a truncate if it's a regular file with
1442 * some actual space in it. It's OK to look at the
1443 * inode's fields without the lock because we're the
1444 * only one with a reference to the inode.
1445 */
1446 truncate = ((ip->i_d.di_nlink == 0) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001447 ((ip->i_d.di_size != 0) || (ip->i_size != 0) ||
1448 (ip->i_d.di_nextents > 0) || (ip->i_delayed_blks > 0)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 ((ip->i_d.di_mode & S_IFMT) == S_IFREG));
1450
1451 mp = ip->i_mount;
1452
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11001453 if (ip->i_d.di_nlink == 0 && DM_EVENT_ENABLED(ip, DM_EVENT_DESTROY))
1454 XFS_SEND_DESTROY(mp, ip, DM_RIGHT_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 error = 0;
1457
1458 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001459 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 goto out;
1461
1462 if (ip->i_d.di_nlink != 0) {
1463 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001464 ((ip->i_size > 0) || (VN_CACHED(vp) > 0 ||
Yingping Lu68bdb6e2006-01-11 15:38:31 +11001465 ip->i_delayed_blks > 0)) &&
Nathan Scottdd9f4382006-01-11 15:28:28 +11001466 (ip->i_df.if_flags & XFS_IFEXTENTS) &&
1467 (!(ip->i_d.di_flags &
1468 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)) ||
1469 (ip->i_delayed_blks != 0)))) {
David Chinner92dfe8d2007-05-24 15:22:19 +10001470 error = xfs_free_eofblocks(mp, ip, XFS_FREE_EOF_LOCK);
1471 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001472 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
1474 goto out;
1475 }
1476
1477 ASSERT(ip->i_d.di_nlink == 0);
1478
1479 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001480 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1483 if (truncate) {
1484 /*
1485 * Do the xfs_itruncate_start() call before
1486 * reserving any log space because itruncate_start
1487 * will call into the buffer cache and we can't
1488 * do that within a transaction.
1489 */
1490 xfs_ilock(ip, XFS_IOLOCK_EXCL);
1491
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001492 error = xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE, 0);
1493 if (error) {
Jesper Juhl87ae3c22007-06-28 16:43:14 +10001494 xfs_trans_cancel(tp, 0);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001495 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1496 return VN_INACTIVE_CACHE;
1497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 error = xfs_trans_reserve(tp, 0,
1500 XFS_ITRUNCATE_LOG_RES(mp),
1501 0, XFS_TRANS_PERM_LOG_RES,
1502 XFS_ITRUNCATE_LOG_COUNT);
1503 if (error) {
1504 /* Don't call itruncate_cleanup */
1505 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1506 xfs_trans_cancel(tp, 0);
1507 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001508 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 }
1510
1511 xfs_ilock(ip, XFS_ILOCK_EXCL);
1512 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1513 xfs_trans_ihold(tp, ip);
1514
1515 /*
1516 * normally, we have to run xfs_itruncate_finish sync.
1517 * But if filesystem is wsync and we're in the inactive
1518 * path, then we know that nlink == 0, and that the
1519 * xaction that made nlink == 0 is permanently committed
1520 * since xfs_remove runs as a synchronous transaction.
1521 */
1522 error = xfs_itruncate_finish(&tp, ip, 0, XFS_DATA_FORK,
1523 (!(mp->m_flags & XFS_MOUNT_WSYNC) ? 1 : 0));
1524
1525 if (error) {
1526 xfs_trans_cancel(tp,
1527 XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1528 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001529 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 }
1531 } else if ((ip->i_d.di_mode & S_IFMT) == S_IFLNK) {
1532
1533 /*
1534 * If we get an error while cleaning up a
1535 * symlink we bail out.
1536 */
1537 error = (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) ?
1538 xfs_inactive_symlink_rmt(ip, &tp) :
1539 xfs_inactive_symlink_local(ip, &tp);
1540
1541 if (error) {
1542 ASSERT(tp == NULL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001543 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 }
1545
1546 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1547 xfs_trans_ihold(tp, ip);
1548 } else {
1549 error = xfs_trans_reserve(tp, 0,
1550 XFS_IFREE_LOG_RES(mp),
1551 0, XFS_TRANS_PERM_LOG_RES,
1552 XFS_INACTIVE_LOG_COUNT);
1553 if (error) {
1554 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1555 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001556 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
1558
1559 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1560 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1561 xfs_trans_ihold(tp, ip);
1562 }
1563
1564 /*
1565 * If there are attributes associated with the file
1566 * then blow them away now. The code calls a routine
1567 * that recursively deconstructs the attribute fork.
1568 * We need to just commit the current transaction
1569 * because we can't use it for xfs_attr_inactive().
1570 */
1571 if (ip->i_d.di_anextents > 0) {
1572 error = xfs_inactive_attrs(ip, &tp);
1573 /*
1574 * If we got an error, the transaction is already
1575 * cancelled, and the inode is unlocked. Just get out.
1576 */
1577 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001578 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 } else if (ip->i_afp) {
1580 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1581 }
1582
1583 /*
1584 * Free the inode.
1585 */
1586 XFS_BMAP_INIT(&free_list, &first_block);
1587 error = xfs_ifree(tp, ip, &free_list);
1588 if (error) {
1589 /*
1590 * If we fail to free the inode, shut down. The cancel
1591 * might do that, we need to make sure. Otherwise the
1592 * inode might be lost for a long time or forever.
1593 */
1594 if (!XFS_FORCED_SHUTDOWN(mp)) {
1595 cmn_err(CE_NOTE,
1596 "xfs_inactive: xfs_ifree() returned an error = %d on %s",
1597 error, mp->m_fsname);
Nathan Scott7d04a332006-06-09 14:58:38 +10001598 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
1600 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
1601 } else {
1602 /*
1603 * Credit the quota account(s). The inode is gone.
1604 */
1605 XFS_TRANS_MOD_DQUOT_BYINO(mp, tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1606
1607 /*
David Chinner78e9da72008-04-10 12:24:17 +10001608 * Just ignore errors at this point. There is nothing we can
1609 * do except to try to keep going. Make sure it's not a silent
1610 * error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 */
David Chinner78e9da72008-04-10 12:24:17 +10001612 error = xfs_bmap_finish(&tp, &free_list, &committed);
1613 if (error)
1614 xfs_fs_cmn_err(CE_NOTE, mp, "xfs_inactive: "
1615 "xfs_bmap_finish() returned error %d", error);
1616 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1617 if (error)
1618 xfs_fs_cmn_err(CE_NOTE, mp, "xfs_inactive: "
1619 "xfs_trans_commit() returned error %d", error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 }
1621 /*
1622 * Release the dquots held by inode, if any.
1623 */
1624 XFS_QM_DQDETACH(mp, ip);
1625
1626 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1627
1628 out:
1629 return VN_INACTIVE_CACHE;
1630}
1631
1632
Christoph Hellwig993386c2007-08-28 16:12:30 +10001633int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634xfs_lookup(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001635 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001636 struct xfs_name *name,
Christoph Hellwigef1f5e72008-03-06 13:46:25 +11001637 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001639 xfs_ino_t inum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 int error;
1641 uint lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001643 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
1645 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
1646 return XFS_ERROR(EIO);
1647
1648 lock_mode = xfs_ilock_map_shared(dp);
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001649 error = xfs_dir_lookup(NULL, dp, name, &inum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 xfs_iunlock_map_shared(dp, lock_mode);
Christoph Hellwigeca450b2008-04-22 17:33:52 +10001651
1652 if (error)
1653 goto out;
1654
1655 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp, 0);
1656 if (error)
1657 goto out;
1658
1659 xfs_itrace_ref(*ipp);
1660 return 0;
1661
1662 out:
1663 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 return error;
1665}
1666
Christoph Hellwig993386c2007-08-28 16:12:30 +10001667int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668xfs_create(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001669 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001670 struct xfs_name *name,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001671 mode_t mode,
1672 xfs_dev_t rdev,
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001673 xfs_inode_t **ipp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 cred_t *credp)
1675{
Barry Naujok556b8b12008-04-10 12:22:07 +10001676 xfs_mount_t *mp = dp->i_mount;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001677 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 xfs_trans_t *tp;
Barry Naujok556b8b12008-04-10 12:22:07 +10001679 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 xfs_bmap_free_t free_list;
1681 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001682 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 int dm_event_sent = 0;
1684 uint cancel_flags;
1685 int committed;
1686 xfs_prid_t prid;
1687 struct xfs_dquot *udqp, *gdqp;
1688 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001690 ASSERT(!*ipp);
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001691 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Christoph Hellwigeb9df392007-08-16 18:42:07 +10001693 if (DM_EVENT_ENABLED(dp, DM_EVENT_CREATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11001695 dp, DM_RIGHT_NULL, NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10001696 DM_RIGHT_NULL, name->name, NULL,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001697 mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 if (error)
1700 return error;
1701 dm_event_sent = 1;
1702 }
1703
1704 if (XFS_FORCED_SHUTDOWN(mp))
1705 return XFS_ERROR(EIO);
1706
1707 /* Return through std_return after this point. */
1708
1709 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10001710 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1711 prid = dp->i_d.di_projid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 else
1713 prid = (xfs_prid_t)dfltprid;
1714
1715 /*
1716 * Make sure that we have allocated dquot(s) on disk.
1717 */
1718 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001719 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 XFS_QMOPT_QUOTALL|XFS_QMOPT_INHERIT, &udqp, &gdqp);
1721 if (error)
1722 goto std_return;
1723
1724 ip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
1727 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10001728 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 /*
1730 * Initially assume that the file does not exist and
1731 * reserve the resources for that case. If that is not
1732 * the case we'll drop the one we have and get a more
1733 * appropriate transaction later.
1734 */
1735 error = xfs_trans_reserve(tp, resblks, XFS_CREATE_LOG_RES(mp), 0,
1736 XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT);
1737 if (error == ENOSPC) {
1738 resblks = 0;
1739 error = xfs_trans_reserve(tp, 0, XFS_CREATE_LOG_RES(mp), 0,
1740 XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT);
1741 }
1742 if (error) {
1743 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 goto error_return;
1745 }
1746
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001747 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001748 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 XFS_BMAP_INIT(&free_list, &first_block);
1751
1752 ASSERT(ip == NULL);
1753
1754 /*
1755 * Reserve disk quota and the inode.
1756 */
1757 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
1758 if (error)
1759 goto error_return;
1760
Barry Naujok556b8b12008-04-10 12:22:07 +10001761 error = xfs_dir_canenter(tp, dp, name, resblks);
1762 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 goto error_return;
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001764 error = xfs_dir_ialloc(&tp, dp, mode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 rdev, credp, prid, resblks > 0,
1766 &ip, &committed);
1767 if (error) {
1768 if (error == ENOSPC)
1769 goto error_return;
1770 goto abort_return;
1771 }
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001772 xfs_itrace_ref(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 /*
1775 * At this point, we've gotten a newly allocated inode.
1776 * It is locked (and joined to the transaction).
1777 */
1778
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001779 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 /*
Christoph Hellwig993386c2007-08-28 16:12:30 +10001782 * Now we join the directory inode to the transaction. We do not do it
1783 * earlier because xfs_dir_ialloc might commit the previous transaction
1784 * (and release all the locks). An error from here on will result in
1785 * the transaction cancel unlocking dp so don't do it explicitly in the
1786 * error path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 */
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001788 IHOLD(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001790 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Barry Naujok556b8b12008-04-10 12:22:07 +10001792 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001793 &first_block, &free_list, resblks ?
1794 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 if (error) {
1796 ASSERT(error != ENOSPC);
1797 goto abort_return;
1798 }
1799 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1800 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1801
1802 /*
1803 * If this is a synchronous mount, make sure that the
1804 * create transaction goes to disk before returning to
1805 * the user.
1806 */
1807 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1808 xfs_trans_set_sync(tp);
1809 }
1810
1811 dp->i_gen++;
1812
1813 /*
1814 * Attach the dquot(s) to the inodes and modify them incore.
1815 * These ids of the inode couldn't have changed since the new
1816 * inode has been locked ever since it was created.
1817 */
1818 XFS_QM_DQVOPCREATE(mp, tp, ip, udqp, gdqp);
1819
1820 /*
1821 * xfs_trans_commit normally decrements the vnode ref count
1822 * when it unlocks the inode. Since we want to return the
1823 * vnode to the caller, we bump the vnode ref count now.
1824 */
1825 IHOLD(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001827 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 if (error) {
1829 xfs_bmap_cancel(&free_list);
1830 goto abort_rele;
1831 }
1832
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001833 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (error) {
1835 IRELE(ip);
1836 tp = NULL;
1837 goto error_return;
1838 }
1839
1840 XFS_QM_DQRELE(mp, udqp);
1841 XFS_QM_DQRELE(mp, gdqp);
1842
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001843 *ipp = ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
1845 /* Fallthrough to std_return with error = 0 */
1846
1847std_return:
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001848 if ((*ipp || (error != 0 && dm_event_sent != 0)) &&
Christoph Hellwig993386c2007-08-28 16:12:30 +10001849 DM_EVENT_ENABLED(dp, DM_EVENT_POSTCREATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11001851 dp, DM_RIGHT_NULL,
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001852 *ipp ? ip : NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10001853 DM_RIGHT_NULL, name->name, NULL,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001854 mode, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 }
1856 return error;
1857
1858 abort_return:
1859 cancel_flags |= XFS_TRANS_ABORT;
1860 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Jesper Juhl014c2542006-01-15 02:37:08 +01001862 error_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 if (tp != NULL)
1864 xfs_trans_cancel(tp, cancel_flags);
1865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 XFS_QM_DQRELE(mp, udqp);
1867 XFS_QM_DQRELE(mp, gdqp);
1868
Christoph Hellwig993386c2007-08-28 16:12:30 +10001869 if (unlock_dp_on_error)
1870 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 goto std_return;
1873
1874 abort_rele:
1875 /*
1876 * Wait until after the current transaction is aborted to
1877 * release the inode. This prevents recursive transactions
1878 * and deadlocks from xfs_inactive.
1879 */
1880 cancel_flags |= XFS_TRANS_ABORT;
1881 xfs_trans_cancel(tp, cancel_flags);
1882 IRELE(ip);
1883
1884 XFS_QM_DQRELE(mp, udqp);
1885 XFS_QM_DQRELE(mp, gdqp);
1886
1887 goto std_return;
1888}
1889
1890#ifdef DEBUG
1891/*
1892 * Some counters to see if (and how often) we are hitting some deadlock
1893 * prevention code paths.
1894 */
1895
1896int xfs_rm_locks;
1897int xfs_rm_lock_delays;
1898int xfs_rm_attempts;
1899#endif
1900
1901/*
1902 * The following routine will lock the inodes associated with the
1903 * directory and the named entry in the directory. The locks are
1904 * acquired in increasing inode number.
1905 *
1906 * If the entry is "..", then only the directory is locked. The
1907 * vnode ref count will still include that from the .. entry in
1908 * this case.
1909 *
1910 * There is a deadlock we need to worry about. If the locked directory is
1911 * in the AIL, it might be blocking up the log. The next inode we lock
1912 * could be already locked by another thread waiting for log space (e.g
1913 * a permanent log reservation with a long running transaction (see
1914 * xfs_itruncate_finish)). To solve this, we must check if the directory
1915 * is in the ail and use lock_nowait. If we can't lock, we need to
1916 * drop the inode lock on the directory and try again. xfs_iunlock will
1917 * potentially push the tail if we were holding up the log.
1918 */
1919STATIC int
1920xfs_lock_dir_and_entry(
1921 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 xfs_inode_t *ip) /* inode of entry 'name' */
1923{
1924 int attempts;
1925 xfs_ino_t e_inum;
1926 xfs_inode_t *ips[2];
1927 xfs_log_item_t *lp;
1928
1929#ifdef DEBUG
1930 xfs_rm_locks++;
1931#endif
1932 attempts = 0;
1933
1934again:
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001935 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 e_inum = ip->i_ino;
1938
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001939 xfs_itrace_ref(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
1941 /*
1942 * We want to lock in increasing inum. Since we've already
1943 * acquired the lock on the directory, we may need to release
1944 * if if the inum of the entry turns out to be less.
1945 */
1946 if (e_inum > dp->i_ino) {
1947 /*
1948 * We are already in the right order, so just
1949 * lock on the inode of the entry.
1950 * We need to use nowait if dp is in the AIL.
1951 */
1952
1953 lp = (xfs_log_item_t *)dp->i_itemp;
1954 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1955 if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
1956 attempts++;
1957#ifdef DEBUG
1958 xfs_rm_attempts++;
1959#endif
1960
1961 /*
1962 * Unlock dp and try again.
1963 * xfs_iunlock will try to push the tail
1964 * if the inode is in the AIL.
1965 */
1966
1967 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1968
1969 if ((attempts % 5) == 0) {
1970 delay(1); /* Don't just spin the CPU */
1971#ifdef DEBUG
1972 xfs_rm_lock_delays++;
1973#endif
1974 }
1975 goto again;
1976 }
1977 } else {
1978 xfs_ilock(ip, XFS_ILOCK_EXCL);
1979 }
1980 } else if (e_inum < dp->i_ino) {
1981 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1982
1983 ips[0] = ip;
1984 ips[1] = dp;
Christoph Hellwigcfa853e2008-04-22 17:34:06 +10001985 xfs_lock_inodes(ips, 2, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
1987 /* else e_inum == dp->i_ino */
1988 /* This can happen if we're asked to lock /x/..
1989 * the entry is "..", which is also the parent directory.
1990 */
1991
1992 return 0;
1993}
1994
1995#ifdef DEBUG
1996int xfs_locked_n;
1997int xfs_small_retries;
1998int xfs_middle_retries;
1999int xfs_lots_retries;
2000int xfs_lock_delays;
2001#endif
2002
2003/*
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002004 * Bump the subclass so xfs_lock_inodes() acquires each lock with
2005 * a different value
2006 */
2007static inline int
2008xfs_lock_inumorder(int lock_mode, int subclass)
2009{
2010 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +10002011 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002012 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +10002013 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002014
2015 return lock_mode;
2016}
2017
2018/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 * The following routine will lock n inodes in exclusive mode.
2020 * We assume the caller calls us with the inodes in i_ino order.
2021 *
2022 * We need to detect deadlock where an inode that we lock
2023 * is in the AIL and we start waiting for another inode that is locked
2024 * by a thread in a long running transaction (such as truncate). This can
2025 * result in deadlock since the long running trans might need to wait
2026 * for the inode we just locked in order to push the tail and free space
2027 * in the log.
2028 */
2029void
2030xfs_lock_inodes(
2031 xfs_inode_t **ips,
2032 int inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 uint lock_mode)
2034{
2035 int attempts = 0, i, j, try_lock;
2036 xfs_log_item_t *lp;
2037
2038 ASSERT(ips && (inodes >= 2)); /* we need at least two */
2039
Christoph Hellwigcfa853e2008-04-22 17:34:06 +10002040 try_lock = 0;
2041 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043again:
2044 for (; i < inodes; i++) {
2045 ASSERT(ips[i]);
2046
2047 if (i && (ips[i] == ips[i-1])) /* Already locked */
2048 continue;
2049
2050 /*
2051 * If try_lock is not set yet, make sure all locked inodes
2052 * are not in the AIL.
2053 * If any are, set try_lock to be used later.
2054 */
2055
2056 if (!try_lock) {
2057 for (j = (i - 1); j >= 0 && !try_lock; j--) {
2058 lp = (xfs_log_item_t *)ips[j]->i_itemp;
2059 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
2060 try_lock++;
2061 }
2062 }
2063 }
2064
2065 /*
2066 * If any of the previous locks we have locked is in the AIL,
2067 * we must TRY to get the second and subsequent locks. If
2068 * we can't get any, we must release all we have
2069 * and try again.
2070 */
2071
2072 if (try_lock) {
2073 /* try_lock must be 0 if i is 0. */
2074 /*
2075 * try_lock means we have an inode locked
2076 * that is in the AIL.
2077 */
2078 ASSERT(i != 0);
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002079 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 attempts++;
2081
2082 /*
2083 * Unlock all previous guys and try again.
2084 * xfs_iunlock will try to push the tail
2085 * if the inode is in the AIL.
2086 */
2087
2088 for(j = i - 1; j >= 0; j--) {
2089
2090 /*
2091 * Check to see if we've already
2092 * unlocked this one.
2093 * Not the first one going back,
2094 * and the inode ptr is the same.
2095 */
2096 if ((j != (i - 1)) && ips[j] ==
2097 ips[j+1])
2098 continue;
2099
2100 xfs_iunlock(ips[j], lock_mode);
2101 }
2102
2103 if ((attempts % 5) == 0) {
2104 delay(1); /* Don't just spin the CPU */
2105#ifdef DEBUG
2106 xfs_lock_delays++;
2107#endif
2108 }
2109 i = 0;
2110 try_lock = 0;
2111 goto again;
2112 }
2113 } else {
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002114 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 }
2116 }
2117
2118#ifdef DEBUG
2119 if (attempts) {
2120 if (attempts < 5) xfs_small_retries++;
2121 else if (attempts < 100) xfs_middle_retries++;
2122 else xfs_lots_retries++;
2123 } else {
2124 xfs_locked_n++;
2125 }
2126#endif
2127}
2128
2129#ifdef DEBUG
2130#define REMOVE_DEBUG_TRACE(x) {remove_which_error_return = (x);}
2131int remove_which_error_return = 0;
2132#else /* ! DEBUG */
2133#define REMOVE_DEBUG_TRACE(x)
2134#endif /* ! DEBUG */
2135
Christoph Hellwig993386c2007-08-28 16:12:30 +10002136int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137xfs_remove(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002138 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10002139 struct xfs_name *name,
2140 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002142 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 xfs_trans_t *tp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 int error = 0;
2145 xfs_bmap_free_t free_list;
2146 xfs_fsblock_t first_block;
2147 int cancel_flags;
2148 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 int link_zero;
2150 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002152 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 if (XFS_FORCED_SHUTDOWN(mp))
2155 return XFS_ERROR(EIO);
2156
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002157 if (DM_EVENT_ENABLED(dp, DM_EVENT_REMOVE)) {
Barry Naujok556b8b12008-04-10 12:22:07 +10002158 error = XFS_SEND_NAMESP(mp, DM_EVENT_REMOVE, dp, DM_RIGHT_NULL,
2159 NULL, DM_RIGHT_NULL, name->name, NULL,
2160 ip->i_d.di_mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 if (error)
2162 return error;
2163 }
2164
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 /*
2166 * We need to get a reference to ip before we get our log
2167 * reservation. The reason for this is that we cannot call
2168 * xfs_iget for an inode for which we do not have a reference
2169 * once we've acquired a log reservation. This is because the
2170 * inode we are trying to get might be in xfs_inactive going
2171 * for a log reservation. Since we'll have to wait for the
2172 * inactive code to complete before returning from xfs_iget,
2173 * we need to make sure that we don't have log space reserved
Nathan Scottc41564b2006-03-29 08:55:14 +10002174 * when we call xfs_iget. Instead we get an unlocked reference
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 * to the inode before getting our log reservation.
2176 */
Christoph Hellwig43973962008-03-06 13:44:50 +11002177 IHOLD(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002179 xfs_itrace_entry(ip);
2180 xfs_itrace_ref(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182 error = XFS_QM_DQATTACH(mp, dp, 0);
Christoph Hellwig82dab942008-04-22 17:34:18 +10002183 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 error = XFS_QM_DQATTACH(mp, ip, 0);
2185 if (error) {
2186 REMOVE_DEBUG_TRACE(__LINE__);
2187 IRELE(ip);
2188 goto std_return;
2189 }
2190
2191 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
2192 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2193 /*
2194 * We try to get the real space reservation first,
2195 * allowing for directory btree deletion(s) implying
2196 * possible bmap insert(s). If we can't get the space
2197 * reservation then we use 0 instead, and avoid the bmap
2198 * btree insert(s) in the directory code by, if the bmap
2199 * insert tries to happen, instead trimming the LAST
2200 * block from the directory.
2201 */
2202 resblks = XFS_REMOVE_SPACE_RES(mp);
2203 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
2204 XFS_TRANS_PERM_LOG_RES, XFS_REMOVE_LOG_COUNT);
2205 if (error == ENOSPC) {
2206 resblks = 0;
2207 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
2208 XFS_TRANS_PERM_LOG_RES, XFS_REMOVE_LOG_COUNT);
2209 }
2210 if (error) {
2211 ASSERT(error != ENOSPC);
2212 REMOVE_DEBUG_TRACE(__LINE__);
2213 xfs_trans_cancel(tp, 0);
2214 IRELE(ip);
2215 return error;
2216 }
2217
Eric Sandeene9ed9d22007-05-08 13:48:56 +10002218 error = xfs_lock_dir_and_entry(dp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 if (error) {
2220 REMOVE_DEBUG_TRACE(__LINE__);
2221 xfs_trans_cancel(tp, cancel_flags);
2222 IRELE(ip);
2223 goto std_return;
2224 }
2225
2226 /*
2227 * At this point, we've gotten both the directory and the entry
2228 * inodes locked.
2229 */
2230 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig82dab942008-04-22 17:34:18 +10002231
2232 IHOLD(dp);
2233 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235 /*
2236 * Entry must exist since we did a lookup in xfs_lock_dir_and_entry.
2237 */
2238 XFS_BMAP_INIT(&free_list, &first_block);
Barry Naujok556b8b12008-04-10 12:22:07 +10002239 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
Christoph Hellwigd4377d82008-04-22 17:33:46 +10002240 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 if (error) {
2242 ASSERT(error != ENOENT);
2243 REMOVE_DEBUG_TRACE(__LINE__);
2244 goto error1;
2245 }
2246 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2247
2248 dp->i_gen++;
2249 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2250
2251 error = xfs_droplink(tp, ip);
2252 if (error) {
2253 REMOVE_DEBUG_TRACE(__LINE__);
2254 goto error1;
2255 }
2256
2257 /* Determine if this is the last link while
2258 * we are in the transaction.
2259 */
2260 link_zero = (ip)->i_d.di_nlink==0;
2261
2262 /*
2263 * Take an extra ref on the inode so that it doesn't
2264 * go to xfs_inactive() from within the commit.
2265 */
2266 IHOLD(ip);
2267
2268 /*
2269 * If this is a synchronous mount, make sure that the
2270 * remove transaction goes to disk before returning to
2271 * the user.
2272 */
2273 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2274 xfs_trans_set_sync(tp);
2275 }
2276
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002277 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 if (error) {
2279 REMOVE_DEBUG_TRACE(__LINE__);
2280 goto error_rele;
2281 }
2282
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002283 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 if (error) {
2285 IRELE(ip);
2286 goto std_return;
2287 }
2288
2289 /*
David Chinner2a82b8b2007-07-11 11:09:12 +10002290 * If we are using filestreams, kill the stream association.
2291 * If the file is still open it may get a new one but that
2292 * will get killed on last close in xfs_close() so we don't
2293 * have to worry about that.
2294 */
2295 if (link_zero && xfs_inode_is_filestream(ip))
2296 xfs_filestream_deassociate(ip);
2297
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002298 xfs_itrace_exit(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 IRELE(ip);
2300
2301/* Fall through to std_return with error = 0 */
2302 std_return:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002303 if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTREMOVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTREMOVE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002305 dp, DM_RIGHT_NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 NULL, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002307 name->name, NULL, ip->i_d.di_mode, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 }
2309 return error;
2310
2311 error1:
2312 xfs_bmap_cancel(&free_list);
2313 cancel_flags |= XFS_TRANS_ABORT;
2314 xfs_trans_cancel(tp, cancel_flags);
2315 goto std_return;
2316
2317 error_rele:
2318 /*
2319 * In this case make sure to not release the inode until after
2320 * the current transaction is aborted. Releasing it beforehand
2321 * can cause us to go to xfs_inactive and start a recursive
2322 * transaction which can easily deadlock with the current one.
2323 */
2324 xfs_bmap_cancel(&free_list);
2325 cancel_flags |= XFS_TRANS_ABORT;
2326 xfs_trans_cancel(tp, cancel_flags);
2327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 IRELE(ip);
2329
2330 goto std_return;
2331}
2332
Christoph Hellwig993386c2007-08-28 16:12:30 +10002333int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334xfs_link(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002335 xfs_inode_t *tdp,
Christoph Hellwiga3da7892008-03-06 13:46:12 +11002336 xfs_inode_t *sip,
Barry Naujok556b8b12008-04-10 12:22:07 +10002337 struct xfs_name *target_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002339 xfs_mount_t *mp = tdp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 xfs_inode_t *ips[2];
2342 int error;
2343 xfs_bmap_free_t free_list;
2344 xfs_fsblock_t first_block;
2345 int cancel_flags;
2346 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 int resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002349 xfs_itrace_entry(tdp);
Christoph Hellwiga3da7892008-03-06 13:46:12 +11002350 xfs_itrace_entry(sip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Christoph Hellwiga3da7892008-03-06 13:46:12 +11002352 ASSERT(!S_ISDIR(sip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 if (XFS_FORCED_SHUTDOWN(mp))
2355 return XFS_ERROR(EIO);
2356
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002357 if (DM_EVENT_ENABLED(tdp, DM_EVENT_LINK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 error = XFS_SEND_NAMESP(mp, DM_EVENT_LINK,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002359 tdp, DM_RIGHT_NULL,
2360 sip, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002361 target_name->name, NULL, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 if (error)
2363 return error;
2364 }
2365
2366 /* Return through std_return after this point. */
2367
2368 error = XFS_QM_DQATTACH(mp, sip, 0);
2369 if (!error && sip != tdp)
2370 error = XFS_QM_DQATTACH(mp, tdp, 0);
2371 if (error)
2372 goto std_return;
2373
2374 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
2375 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10002376 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
2378 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2379 if (error == ENOSPC) {
2380 resblks = 0;
2381 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
2382 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2383 }
2384 if (error) {
2385 cancel_flags = 0;
2386 goto error_return;
2387 }
2388
2389 if (sip->i_ino < tdp->i_ino) {
2390 ips[0] = sip;
2391 ips[1] = tdp;
2392 } else {
2393 ips[0] = tdp;
2394 ips[1] = sip;
2395 }
2396
Christoph Hellwigcfa853e2008-04-22 17:34:06 +10002397 xfs_lock_inodes(ips, 2, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
2399 /*
2400 * Increment vnode ref counts since xfs_trans_commit &
2401 * xfs_trans_cancel will both unlock the inodes and
2402 * decrement the associated ref counts.
2403 */
Christoph Hellwiga3da7892008-03-06 13:46:12 +11002404 IHOLD(sip);
2405 IHOLD(tdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
2407 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
2408
2409 /*
2410 * If the source has too many links, we can't make any more to it.
2411 */
2412 if (sip->i_d.di_nlink >= XFS_MAXLINK) {
2413 error = XFS_ERROR(EMLINK);
2414 goto error_return;
2415 }
2416
Nathan Scott365ca832005-06-21 15:39:12 +10002417 /*
2418 * If we are using project inheritance, we only allow hard link
2419 * creation in our tree when the project IDs are the same; else
2420 * the tree quota mechanism could be circumvented.
2421 */
2422 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
2423 (tdp->i_d.di_projid != sip->i_d.di_projid))) {
Nathan Scottb1ecdda2006-05-08 19:51:42 +10002424 error = XFS_ERROR(EXDEV);
Nathan Scott365ca832005-06-21 15:39:12 +10002425 goto error_return;
2426 }
2427
Barry Naujok556b8b12008-04-10 12:22:07 +10002428 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
2429 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 goto error_return;
2431
2432 XFS_BMAP_INIT(&free_list, &first_block);
2433
Barry Naujok556b8b12008-04-10 12:22:07 +10002434 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
2435 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 if (error)
2437 goto abort_return;
2438 xfs_ichgtime(tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2439 tdp->i_gen++;
2440 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
2441
2442 error = xfs_bumplink(tp, sip);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002443 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
2446 /*
2447 * If this is a synchronous mount, make sure that the
2448 * link transaction goes to disk before returning to
2449 * the user.
2450 */
2451 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2452 xfs_trans_set_sync(tp);
2453 }
2454
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002455 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 if (error) {
2457 xfs_bmap_cancel(&free_list);
2458 goto abort_return;
2459 }
2460
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002461 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002462 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465 /* Fall through to std_return with error = 0. */
2466std_return:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002467 if (DM_EVENT_ENABLED(sip, DM_EVENT_POSTLINK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTLINK,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002469 tdp, DM_RIGHT_NULL,
2470 sip, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002471 target_name->name, NULL, 0, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 }
2473 return error;
2474
2475 abort_return:
2476 cancel_flags |= XFS_TRANS_ABORT;
2477 /* FALLTHROUGH */
Jesper Juhl014c2542006-01-15 02:37:08 +01002478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 error_return:
2480 xfs_trans_cancel(tp, cancel_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 goto std_return;
2482}
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002483
2484
Christoph Hellwig993386c2007-08-28 16:12:30 +10002485int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486xfs_mkdir(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002487 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10002488 struct xfs_name *dir_name,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002489 mode_t mode,
Christoph Hellwig979ebab2008-03-06 13:46:05 +11002490 xfs_inode_t **ipp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 cred_t *credp)
2492{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002493 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 xfs_inode_t *cdp; /* inode of created dir */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 int cancel_flags;
2497 int error;
2498 int committed;
2499 xfs_bmap_free_t free_list;
2500 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10002501 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 boolean_t created = B_FALSE;
2503 int dm_event_sent = 0;
2504 xfs_prid_t prid;
2505 struct xfs_dquot *udqp, *gdqp;
2506 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508 if (XFS_FORCED_SHUTDOWN(mp))
2509 return XFS_ERROR(EIO);
2510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 tp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002513 if (DM_EVENT_ENABLED(dp, DM_EVENT_CREATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002515 dp, DM_RIGHT_NULL, NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002516 DM_RIGHT_NULL, dir_name->name, NULL,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002517 mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 if (error)
2519 return error;
2520 dm_event_sent = 1;
2521 }
2522
2523 /* Return through std_return after this point. */
2524
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002525 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527 mp = dp->i_mount;
2528 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10002529 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
2530 prid = dp->i_d.di_projid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 else
2532 prid = (xfs_prid_t)dfltprid;
2533
2534 /*
2535 * Make sure that we have allocated dquot(s) on disk.
2536 */
2537 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002538 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
2540 if (error)
2541 goto std_return;
2542
2543 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
2544 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10002545 resblks = XFS_MKDIR_SPACE_RES(mp, dir_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 error = xfs_trans_reserve(tp, resblks, XFS_MKDIR_LOG_RES(mp), 0,
2547 XFS_TRANS_PERM_LOG_RES, XFS_MKDIR_LOG_COUNT);
2548 if (error == ENOSPC) {
2549 resblks = 0;
2550 error = xfs_trans_reserve(tp, 0, XFS_MKDIR_LOG_RES(mp), 0,
2551 XFS_TRANS_PERM_LOG_RES,
2552 XFS_MKDIR_LOG_COUNT);
2553 }
2554 if (error) {
2555 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 goto error_return;
2557 }
2558
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002559 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10002560 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
2562 /*
2563 * Check for directory link count overflow.
2564 */
2565 if (dp->i_d.di_nlink >= XFS_MAXLINK) {
2566 error = XFS_ERROR(EMLINK);
2567 goto error_return;
2568 }
2569
2570 /*
2571 * Reserve disk quota and the inode.
2572 */
2573 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
2574 if (error)
2575 goto error_return;
2576
Barry Naujok556b8b12008-04-10 12:22:07 +10002577 error = xfs_dir_canenter(tp, dp, dir_name, resblks);
2578 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 goto error_return;
2580 /*
2581 * create the directory inode.
2582 */
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002583 error = xfs_dir_ialloc(&tp, dp, mode, 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 0, credp, prid, resblks > 0,
2585 &cdp, NULL);
2586 if (error) {
2587 if (error == ENOSPC)
2588 goto error_return;
2589 goto abort_return;
2590 }
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002591 xfs_itrace_ref(cdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
2593 /*
2594 * Now we add the directory inode to the transaction.
2595 * We waited until now since xfs_dir_ialloc might start
2596 * a new transaction. Had we joined the transaction
Christoph Hellwig993386c2007-08-28 16:12:30 +10002597 * earlier, the locks might have gotten released. An error
2598 * from here on will result in the transaction cancel
2599 * unlocking dp so don't do it explicitly in the error path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 */
Christoph Hellwig979ebab2008-03-06 13:46:05 +11002601 IHOLD(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10002603 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
2605 XFS_BMAP_INIT(&free_list, &first_block);
2606
Barry Naujok556b8b12008-04-10 12:22:07 +10002607 error = xfs_dir_createname(tp, dp, dir_name, cdp->i_ino,
2608 &first_block, &free_list, resblks ?
2609 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 if (error) {
2611 ASSERT(error != ENOSPC);
2612 goto error1;
2613 }
2614 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2615
2616 /*
2617 * Bump the in memory version number of the parent directory
2618 * so that other processes accessing it will recognize that
2619 * the directory has changed.
2620 */
2621 dp->i_gen++;
2622
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002623 error = xfs_dir_init(tp, cdp, dp);
2624 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
2627 cdp->i_gen = 1;
2628 error = xfs_bumplink(tp, dp);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002629 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 created = B_TRUE;
2633
Christoph Hellwig979ebab2008-03-06 13:46:05 +11002634 *ipp = cdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 IHOLD(cdp);
2636
2637 /*
2638 * Attach the dquots to the new inode and modify the icount incore.
2639 */
2640 XFS_QM_DQVOPCREATE(mp, tp, cdp, udqp, gdqp);
2641
2642 /*
2643 * If this is a synchronous mount, make sure that the
2644 * mkdir transaction goes to disk before returning to
2645 * the user.
2646 */
2647 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2648 xfs_trans_set_sync(tp);
2649 }
2650
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002651 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 if (error) {
2653 IRELE(cdp);
2654 goto error2;
2655 }
2656
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002657 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 XFS_QM_DQRELE(mp, udqp);
2659 XFS_QM_DQRELE(mp, gdqp);
2660 if (error) {
2661 IRELE(cdp);
2662 }
2663
2664 /* Fall through to std_return with error = 0 or errno from
2665 * xfs_trans_commit. */
2666
2667std_return:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002668 if ((created || (error != 0 && dm_event_sent != 0)) &&
Christoph Hellwig993386c2007-08-28 16:12:30 +10002669 DM_EVENT_ENABLED(dp, DM_EVENT_POSTCREATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002671 dp, DM_RIGHT_NULL,
2672 created ? cdp : NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002674 dir_name->name, NULL,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002675 mode, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 }
2677 return error;
2678
2679 error2:
2680 error1:
2681 xfs_bmap_cancel(&free_list);
2682 abort_return:
2683 cancel_flags |= XFS_TRANS_ABORT;
2684 error_return:
2685 xfs_trans_cancel(tp, cancel_flags);
2686 XFS_QM_DQRELE(mp, udqp);
2687 XFS_QM_DQRELE(mp, gdqp);
2688
Christoph Hellwig993386c2007-08-28 16:12:30 +10002689 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
2692 goto std_return;
2693}
2694
Christoph Hellwig993386c2007-08-28 16:12:30 +10002695int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696xfs_rmdir(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002697 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10002698 struct xfs_name *name,
2699 xfs_inode_t *cdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002701 bhv_vnode_t *dir_vp = XFS_ITOV(dp);
Christoph Hellwig993386c2007-08-28 16:12:30 +10002702 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 int error;
2705 xfs_bmap_free_t free_list;
2706 xfs_fsblock_t first_block;
2707 int cancel_flags;
2708 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 int last_cdp_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 uint resblks;
2711
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002712 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
Christoph Hellwig993386c2007-08-28 16:12:30 +10002714 if (XFS_FORCED_SHUTDOWN(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002717 if (DM_EVENT_ENABLED(dp, DM_EVENT_REMOVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 error = XFS_SEND_NAMESP(mp, DM_EVENT_REMOVE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002719 dp, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002720 NULL, DM_RIGHT_NULL, name->name,
2721 NULL, cdp->i_d.di_mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 if (error)
2723 return XFS_ERROR(error);
2724 }
2725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 /*
2727 * We need to get a reference to cdp before we get our log
2728 * reservation. The reason for this is that we cannot call
2729 * xfs_iget for an inode for which we do not have a reference
2730 * once we've acquired a log reservation. This is because the
2731 * inode we are trying to get might be in xfs_inactive going
2732 * for a log reservation. Since we'll have to wait for the
2733 * inactive code to complete before returning from xfs_iget,
2734 * we need to make sure that we don't have log space reserved
Nathan Scottc41564b2006-03-29 08:55:14 +10002735 * when we call xfs_iget. Instead we get an unlocked reference
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 * to the inode before getting our log reservation.
2737 */
Christoph Hellwig43973962008-03-06 13:44:50 +11002738 IHOLD(cdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
2740 /*
2741 * Get the dquots for the inodes.
2742 */
2743 error = XFS_QM_DQATTACH(mp, dp, 0);
Christoph Hellwig82dab942008-04-22 17:34:18 +10002744 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 error = XFS_QM_DQATTACH(mp, cdp, 0);
2746 if (error) {
2747 IRELE(cdp);
2748 REMOVE_DEBUG_TRACE(__LINE__);
2749 goto std_return;
2750 }
2751
2752 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
2753 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2754 /*
2755 * We try to get the real space reservation first,
2756 * allowing for directory btree deletion(s) implying
2757 * possible bmap insert(s). If we can't get the space
2758 * reservation then we use 0 instead, and avoid the bmap
2759 * btree insert(s) in the directory code by, if the bmap
2760 * insert tries to happen, instead trimming the LAST
2761 * block from the directory.
2762 */
2763 resblks = XFS_REMOVE_SPACE_RES(mp);
2764 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
2765 XFS_TRANS_PERM_LOG_RES, XFS_DEFAULT_LOG_COUNT);
2766 if (error == ENOSPC) {
2767 resblks = 0;
2768 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
2769 XFS_TRANS_PERM_LOG_RES, XFS_DEFAULT_LOG_COUNT);
2770 }
2771 if (error) {
2772 ASSERT(error != ENOSPC);
2773 cancel_flags = 0;
2774 IRELE(cdp);
2775 goto error_return;
2776 }
2777 XFS_BMAP_INIT(&free_list, &first_block);
2778
2779 /*
2780 * Now lock the child directory inode and the parent directory
2781 * inode in the proper order. This will take care of validating
2782 * that the directory entry for the child directory inode has
2783 * not changed while we were obtaining a log reservation.
2784 */
Eric Sandeene9ed9d22007-05-08 13:48:56 +10002785 error = xfs_lock_dir_and_entry(dp, cdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 if (error) {
2787 xfs_trans_cancel(tp, cancel_flags);
2788 IRELE(cdp);
2789 goto std_return;
2790 }
2791
2792 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig82dab942008-04-22 17:34:18 +10002793 VN_HOLD(dir_vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002795 xfs_itrace_ref(cdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 xfs_trans_ijoin(tp, cdp, XFS_ILOCK_EXCL);
2797
2798 ASSERT(cdp->i_d.di_nlink >= 2);
2799 if (cdp->i_d.di_nlink != 2) {
2800 error = XFS_ERROR(ENOTEMPTY);
2801 goto error_return;
2802 }
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002803 if (!xfs_dir_isempty(cdp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 error = XFS_ERROR(ENOTEMPTY);
2805 goto error_return;
2806 }
2807
Barry Naujok556b8b12008-04-10 12:22:07 +10002808 error = xfs_dir_removename(tp, dp, name, cdp->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002809 &first_block, &free_list, resblks);
2810 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
2813 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2814
2815 /*
2816 * Bump the in memory generation count on the parent
2817 * directory so that other can know that it has changed.
2818 */
2819 dp->i_gen++;
2820
2821 /*
2822 * Drop the link from cdp's "..".
2823 */
2824 error = xfs_droplink(tp, dp);
2825 if (error) {
2826 goto error1;
2827 }
2828
2829 /*
2830 * Drop the link from dp to cdp.
2831 */
2832 error = xfs_droplink(tp, cdp);
2833 if (error) {
2834 goto error1;
2835 }
2836
2837 /*
2838 * Drop the "." link from cdp to self.
2839 */
2840 error = xfs_droplink(tp, cdp);
2841 if (error) {
2842 goto error1;
2843 }
2844
2845 /* Determine these before committing transaction */
2846 last_cdp_link = (cdp)->i_d.di_nlink==0;
2847
2848 /*
2849 * Take an extra ref on the child vnode so that it
2850 * does not go to xfs_inactive() from within the commit.
2851 */
2852 IHOLD(cdp);
2853
2854 /*
2855 * If this is a synchronous mount, make sure that the
2856 * rmdir transaction goes to disk before returning to
2857 * the user.
2858 */
2859 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2860 xfs_trans_set_sync(tp);
2861 }
2862
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002863 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 if (error) {
2865 xfs_bmap_cancel(&free_list);
2866 xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES |
2867 XFS_TRANS_ABORT));
2868 IRELE(cdp);
2869 goto std_return;
2870 }
2871
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002872 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 if (error) {
2874 IRELE(cdp);
2875 goto std_return;
2876 }
2877
2878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 IRELE(cdp);
2880
2881 /* Fall through to std_return with error = 0 or the errno
2882 * from xfs_trans_commit. */
Nathan Scottbb19fba2006-03-22 14:12:12 +11002883 std_return:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002884 if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTREMOVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTREMOVE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002886 dp, DM_RIGHT_NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 NULL, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002888 name->name, NULL, cdp->i_d.di_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 error, 0);
2890 }
2891 return error;
2892
Nathan Scottbb19fba2006-03-22 14:12:12 +11002893 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 xfs_bmap_cancel(&free_list);
2895 cancel_flags |= XFS_TRANS_ABORT;
Jesper Juhl014c2542006-01-15 02:37:08 +01002896 /* FALLTHROUGH */
2897
Nathan Scottbb19fba2006-03-22 14:12:12 +11002898 error_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 xfs_trans_cancel(tp, cancel_flags);
2900 goto std_return;
2901}
2902
Christoph Hellwig993386c2007-08-28 16:12:30 +10002903int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904xfs_symlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002905 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10002906 struct xfs_name *link_name,
2907 const char *target_path,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002908 mode_t mode,
Christoph Hellwig3937be52008-03-06 13:46:19 +11002909 xfs_inode_t **ipp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 cred_t *credp)
2911{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002912 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 xfs_inode_t *ip;
2915 int error;
2916 int pathlen;
2917 xfs_bmap_free_t free_list;
2918 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10002919 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 uint cancel_flags;
2921 int committed;
2922 xfs_fileoff_t first_fsb;
2923 xfs_filblks_t fs_blocks;
2924 int nmaps;
2925 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
2926 xfs_daddr_t d;
Barry Naujok556b8b12008-04-10 12:22:07 +10002927 const char *cur_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 int byte_cnt;
2929 int n;
2930 xfs_buf_t *bp;
2931 xfs_prid_t prid;
2932 struct xfs_dquot *udqp, *gdqp;
2933 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Christoph Hellwig3937be52008-03-06 13:46:19 +11002935 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 error = 0;
2937 ip = NULL;
2938 tp = NULL;
2939
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002940 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
2942 if (XFS_FORCED_SHUTDOWN(mp))
2943 return XFS_ERROR(EIO);
2944
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 /*
2946 * Check component lengths of the target path name.
2947 */
2948 pathlen = strlen(target_path);
2949 if (pathlen >= MAXPATHLEN) /* total string too long */
2950 return XFS_ERROR(ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002952 if (DM_EVENT_ENABLED(dp, DM_EVENT_SYMLINK)) {
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002953 error = XFS_SEND_NAMESP(mp, DM_EVENT_SYMLINK, dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 DM_RIGHT_NULL, NULL, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002955 link_name->name, target_path, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 if (error)
2957 return error;
2958 }
2959
2960 /* Return through std_return after this point. */
2961
2962 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10002963 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
2964 prid = dp->i_d.di_projid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 else
2966 prid = (xfs_prid_t)dfltprid;
2967
2968 /*
2969 * Make sure that we have allocated dquot(s) on disk.
2970 */
2971 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002972 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
2974 if (error)
2975 goto std_return;
2976
2977 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
2978 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2979 /*
2980 * The symlink will fit into the inode data fork?
2981 * There can't be any attributes so we get the whole variable part.
2982 */
2983 if (pathlen <= XFS_LITINO(mp))
2984 fs_blocks = 0;
2985 else
2986 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
Barry Naujok556b8b12008-04-10 12:22:07 +10002987 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
2989 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
2990 if (error == ENOSPC && fs_blocks == 0) {
2991 resblks = 0;
2992 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
2993 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
2994 }
2995 if (error) {
2996 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 goto error_return;
2998 }
2999
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10003000 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10003001 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
3003 /*
3004 * Check whether the directory allows new symlinks or not.
3005 */
3006 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
3007 error = XFS_ERROR(EPERM);
3008 goto error_return;
3009 }
3010
3011 /*
3012 * Reserve disk quota : blocks and inode.
3013 */
3014 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
3015 if (error)
3016 goto error_return;
3017
3018 /*
3019 * Check for ability to enter directory entry, if no space reserved.
3020 */
Barry Naujok556b8b12008-04-10 12:22:07 +10003021 error = xfs_dir_canenter(tp, dp, link_name, resblks);
3022 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 goto error_return;
3024 /*
3025 * Initialize the bmap freelist prior to calling either
3026 * bmapi or the directory create code.
3027 */
3028 XFS_BMAP_INIT(&free_list, &first_block);
3029
3030 /*
3031 * Allocate an inode for the symlink.
3032 */
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10003033 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 1, 0, credp, prid, resblks > 0, &ip, NULL);
3035 if (error) {
3036 if (error == ENOSPC)
3037 goto error_return;
3038 goto error1;
3039 }
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11003040 xfs_itrace_ref(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
Christoph Hellwig993386c2007-08-28 16:12:30 +10003042 /*
3043 * An error after we've joined dp to the transaction will result in the
3044 * transaction cancel unlocking dp so don't do it explicitly in the
3045 * error path.
3046 */
Christoph Hellwig3937be52008-03-06 13:46:19 +11003047 IHOLD(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10003049 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
3051 /*
3052 * Also attach the dquot(s) to it, if applicable.
3053 */
3054 XFS_QM_DQVOPCREATE(mp, tp, ip, udqp, gdqp);
3055
3056 if (resblks)
3057 resblks -= XFS_IALLOC_SPACE_RES(mp);
3058 /*
3059 * If the symlink will fit into the inode, write it inline.
3060 */
3061 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
3062 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
3063 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
3064 ip->i_d.di_size = pathlen;
3065
3066 /*
3067 * The inode was initially created in extent format.
3068 */
3069 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
3070 ip->i_df.if_flags |= XFS_IFINLINE;
3071
3072 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
3073 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
3074
3075 } else {
3076 first_fsb = 0;
3077 nmaps = SYMLINK_MAPS;
3078
3079 error = xfs_bmapi(tp, ip, first_fsb, fs_blocks,
3080 XFS_BMAPI_WRITE | XFS_BMAPI_METADATA,
3081 &first_block, resblks, mval, &nmaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003082 &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 if (error) {
3084 goto error1;
3085 }
3086
3087 if (resblks)
3088 resblks -= fs_blocks;
3089 ip->i_d.di_size = pathlen;
3090 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3091
3092 cur_chunk = target_path;
3093 for (n = 0; n < nmaps; n++) {
3094 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
3095 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
3096 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
3097 BTOBB(byte_cnt), 0);
3098 ASSERT(bp && !XFS_BUF_GETERROR(bp));
3099 if (pathlen < byte_cnt) {
3100 byte_cnt = pathlen;
3101 }
3102 pathlen -= byte_cnt;
3103
3104 memcpy(XFS_BUF_PTR(bp), cur_chunk, byte_cnt);
3105 cur_chunk += byte_cnt;
3106
3107 xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
3108 }
3109 }
3110
3111 /*
3112 * Create the directory entry for the symlink.
3113 */
Barry Naujok556b8b12008-04-10 12:22:07 +10003114 error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
3115 &first_block, &free_list, resblks);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10003116 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3119 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
3120
3121 /*
3122 * Bump the in memory version number of the parent directory
3123 * so that other processes accessing it will recognize that
3124 * the directory has changed.
3125 */
3126 dp->i_gen++;
3127
3128 /*
3129 * If this is a synchronous mount, make sure that the
3130 * symlink transaction goes to disk before returning to
3131 * the user.
3132 */
3133 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
3134 xfs_trans_set_sync(tp);
3135 }
3136
3137 /*
3138 * xfs_trans_commit normally decrements the vnode ref count
3139 * when it unlocks the inode. Since we want to return the
3140 * vnode to the caller, we bump the vnode ref count now.
3141 */
3142 IHOLD(ip);
3143
Eric Sandeenf7c99b62007-02-10 18:37:16 +11003144 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 if (error) {
3146 goto error2;
3147 }
Eric Sandeen1c72bf92007-05-08 13:48:42 +10003148 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 XFS_QM_DQRELE(mp, udqp);
3150 XFS_QM_DQRELE(mp, gdqp);
3151
3152 /* Fall through to std_return with error = 0 or errno from
3153 * xfs_trans_commit */
3154std_return:
Christoph Hellwig993386c2007-08-28 16:12:30 +10003155 if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTSYMLINK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTSYMLINK,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003157 dp, DM_RIGHT_NULL,
3158 error ? NULL : ip,
Barry Naujok556b8b12008-04-10 12:22:07 +10003159 DM_RIGHT_NULL, link_name->name,
3160 target_path, 0, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 }
3162
Christoph Hellwig3937be52008-03-06 13:46:19 +11003163 if (!error)
3164 *ipp = ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 return error;
3166
3167 error2:
3168 IRELE(ip);
3169 error1:
3170 xfs_bmap_cancel(&free_list);
3171 cancel_flags |= XFS_TRANS_ABORT;
3172 error_return:
3173 xfs_trans_cancel(tp, cancel_flags);
3174 XFS_QM_DQRELE(mp, udqp);
3175 XFS_QM_DQRELE(mp, gdqp);
3176
Christoph Hellwig993386c2007-08-28 16:12:30 +10003177 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179
3180 goto std_return;
3181}
3182
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184xfs_inode_flush(
Christoph Hellwig993386c2007-08-28 16:12:30 +10003185 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 int flags)
3187{
Christoph Hellwig993386c2007-08-28 16:12:30 +10003188 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 int error = 0;
3190
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 if (XFS_FORCED_SHUTDOWN(mp))
3192 return XFS_ERROR(EIO);
3193
3194 /*
3195 * Bypass inodes which have already been cleaned by
3196 * the inode flush clustering code inside xfs_iflush
3197 */
David Chinner33540402008-03-06 13:43:59 +11003198 if (xfs_inode_clean(ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 return 0;
3200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 /*
3202 * We make this non-blocking if the inode is contended,
3203 * return EAGAIN to indicate to the caller that they
3204 * did not succeed. This prevents the flush path from
3205 * blocking on inodes inside another operation right
3206 * now, they get caught later by xfs_sync.
3207 */
David Chinnera3f74ff2008-03-06 13:43:42 +11003208 if (flags & FLUSH_SYNC) {
3209 xfs_ilock(ip, XFS_ILOCK_SHARED);
3210 xfs_iflock(ip);
3211 } else if (xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) {
3212 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip)) {
3213 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 return EAGAIN;
3215 }
David Chinnera3f74ff2008-03-06 13:43:42 +11003216 } else {
3217 return EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 }
3219
David Chinnera3f74ff2008-03-06 13:43:42 +11003220 error = xfs_iflush(ip, (flags & FLUSH_SYNC) ? XFS_IFLUSH_SYNC
3221 : XFS_IFLUSH_ASYNC_NOBLOCK);
3222 xfs_iunlock(ip, XFS_ILOCK_SHARED);
3223
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 return error;
3225}
3226
Christoph Hellwig993386c2007-08-28 16:12:30 +10003227
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228int
Christoph Hellwig993386c2007-08-28 16:12:30 +10003229xfs_set_dmattrs(
3230 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 u_int evmask,
Christoph Hellwig993386c2007-08-28 16:12:30 +10003232 u_int16_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233{
Christoph Hellwig993386c2007-08-28 16:12:30 +10003234 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 int error;
3237
3238 if (!capable(CAP_SYS_ADMIN))
3239 return XFS_ERROR(EPERM);
3240
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 if (XFS_FORCED_SHUTDOWN(mp))
3242 return XFS_ERROR(EIO);
3243
3244 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
3245 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
3246 if (error) {
3247 xfs_trans_cancel(tp, 0);
3248 return error;
3249 }
3250 xfs_ilock(ip, XFS_ILOCK_EXCL);
3251 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3252
Christoph Hellwig613d7042007-10-11 17:44:08 +10003253 ip->i_d.di_dmevmask = evmask;
3254 ip->i_d.di_dmstate = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
3256 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3257 IHOLD(ip);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10003258 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260 return error;
3261}
3262
Christoph Hellwig993386c2007-08-28 16:12:30 +10003263int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264xfs_reclaim(
Christoph Hellwig993386c2007-08-28 16:12:30 +10003265 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266{
Christoph Hellwig993386c2007-08-28 16:12:30 +10003267 bhv_vnode_t *vp = XFS_ITOV(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11003269 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
3271 ASSERT(!VN_MAPPED(vp));
3272
3273 /* bad inode, get out here ASAP */
3274 if (VN_BAD(vp)) {
3275 xfs_ireclaim(ip);
3276 return 0;
3277 }
3278
Christoph Hellwigb677c212007-08-29 11:46:28 +10003279 vn_iowait(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
Christoph Hellwig51c91ed2005-09-02 16:58:38 +10003281 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Christoph Hellwig42fe2b12006-01-11 15:35:17 +11003283 /*
3284 * Make sure the atime in the XFS inode is correct before freeing the
3285 * Linux inode.
3286 */
3287 xfs_synchronize_atime(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
David Chinner4c606582006-11-11 18:05:00 +11003289 /*
3290 * If we have nothing to flush with this inode then complete the
3291 * teardown now, otherwise break the link between the xfs inode and the
3292 * linux inode and clean up the xfs inode later. This avoids flushing
3293 * the inode to disk during the delete operation itself.
3294 *
3295 * When breaking the link, we need to set the XFS_IRECLAIMABLE flag
3296 * first to ensure that xfs_iunpin() will never see an xfs inode
3297 * that has a linux inode being reclaimed. Synchronisation is provided
3298 * by the i_flags_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 */
3300 if (!ip->i_update_core && (ip->i_itemp == NULL)) {
3301 xfs_ilock(ip, XFS_ILOCK_EXCL);
3302 xfs_iflock(ip);
3303 return xfs_finish_reclaim(ip, 1, XFS_IFLUSH_DELWRI_ELSE_SYNC);
3304 } else {
3305 xfs_mount_t *mp = ip->i_mount;
3306
David Chinner4c606582006-11-11 18:05:00 +11003307 /* Protect sync and unpin from us */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 XFS_MOUNT_ILOCK(mp);
David Chinner4c606582006-11-11 18:05:00 +11003309 spin_lock(&ip->i_flags_lock);
3310 __xfs_iflags_set(ip, XFS_IRECLAIMABLE);
Christoph Hellwig739bfb22007-08-29 10:58:01 +10003311 vn_to_inode(vp)->i_private = NULL;
3312 ip->i_vnode = NULL;
David Chinner4c606582006-11-11 18:05:00 +11003313 spin_unlock(&ip->i_flags_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 list_add_tail(&ip->i_reclaim, &mp->m_del_inodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 XFS_MOUNT_IUNLOCK(mp);
3316 }
3317 return 0;
3318}
3319
3320int
3321xfs_finish_reclaim(
3322 xfs_inode_t *ip,
3323 int locked,
3324 int sync_mode)
3325{
David Chinnerda353b02007-08-28 14:00:13 +10003326 xfs_perag_t *pag = xfs_get_perag(ip->i_mount, ip->i_ino);
Nathan Scott67fcaa72006-06-09 17:00:52 +10003327 bhv_vnode_t *vp = XFS_ITOV_NULL(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 int error;
3329
3330 if (vp && VN_BAD(vp))
3331 goto reclaim;
3332
3333 /* The hash lock here protects a thread in xfs_iget_core from
3334 * racing with us on linking the inode back with a vnode.
3335 * Once we have the XFS_IRECLAIM flag set it will not touch
3336 * us.
3337 */
David Chinnerda353b02007-08-28 14:00:13 +10003338 write_lock(&pag->pag_ici_lock);
David Chinnerf273ab82006-09-28 11:06:03 +10003339 spin_lock(&ip->i_flags_lock);
David Chinner7a18c382006-11-11 18:04:54 +11003340 if (__xfs_iflags_test(ip, XFS_IRECLAIM) ||
3341 (!__xfs_iflags_test(ip, XFS_IRECLAIMABLE) && vp == NULL)) {
David Chinnerf273ab82006-09-28 11:06:03 +10003342 spin_unlock(&ip->i_flags_lock);
David Chinnerda353b02007-08-28 14:00:13 +10003343 write_unlock(&pag->pag_ici_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 if (locked) {
3345 xfs_ifunlock(ip);
3346 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3347 }
Jesper Juhl014c2542006-01-15 02:37:08 +01003348 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 }
David Chinner7a18c382006-11-11 18:04:54 +11003350 __xfs_iflags_set(ip, XFS_IRECLAIM);
David Chinnerf273ab82006-09-28 11:06:03 +10003351 spin_unlock(&ip->i_flags_lock);
David Chinnerda353b02007-08-28 14:00:13 +10003352 write_unlock(&pag->pag_ici_lock);
3353 xfs_put_perag(ip->i_mount, pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
3355 /*
3356 * If the inode is still dirty, then flush it out. If the inode
3357 * is not in the AIL, then it will be OK to flush it delwri as
3358 * long as xfs_iflush() does not keep any references to the inode.
3359 * We leave that decision up to xfs_iflush() since it has the
3360 * knowledge of whether it's OK to simply do a delwri flush of
3361 * the inode or whether we need to wait until the inode is
3362 * pulled from the AIL.
3363 * We get the flush lock regardless, though, just to make sure
3364 * we don't free it while it is being flushed.
3365 */
Lachlan McIlroy461aa8a2008-03-06 13:43:11 +11003366 if (!locked) {
3367 xfs_ilock(ip, XFS_ILOCK_EXCL);
3368 xfs_iflock(ip);
3369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370
Lachlan McIlroy461aa8a2008-03-06 13:43:11 +11003371 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 if (ip->i_update_core ||
3373 ((ip->i_itemp != NULL) &&
3374 (ip->i_itemp->ili_format.ilf_fields != 0))) {
3375 error = xfs_iflush(ip, sync_mode);
3376 /*
3377 * If we hit an error, typically because of filesystem
3378 * shutdown, we don't need to let vn_reclaim to know
3379 * because we're gonna reclaim the inode anyway.
3380 */
3381 if (error) {
3382 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3383 goto reclaim;
3384 }
3385 xfs_iflock(ip); /* synchronize with xfs_iflush_done */
3386 }
3387
3388 ASSERT(ip->i_update_core == 0);
3389 ASSERT(ip->i_itemp == NULL ||
3390 ip->i_itemp->ili_format.ilf_fields == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 }
3392
Lachlan McIlroy461aa8a2008-03-06 13:43:11 +11003393 xfs_ifunlock(ip);
3394 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3395
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 reclaim:
3397 xfs_ireclaim(ip);
3398 return 0;
3399}
3400
3401int
3402xfs_finish_reclaim_all(xfs_mount_t *mp, int noblock)
3403{
3404 int purged;
3405 xfs_inode_t *ip, *n;
3406 int done = 0;
3407
3408 while (!done) {
3409 purged = 0;
3410 XFS_MOUNT_ILOCK(mp);
3411 list_for_each_entry_safe(ip, n, &mp->m_del_inodes, i_reclaim) {
3412 if (noblock) {
3413 if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL) == 0)
3414 continue;
3415 if (xfs_ipincount(ip) ||
3416 !xfs_iflock_nowait(ip)) {
3417 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3418 continue;
3419 }
3420 }
3421 XFS_MOUNT_IUNLOCK(mp);
Felix Blyakher6b2cf612005-11-25 16:42:13 +11003422 if (xfs_finish_reclaim(ip, noblock,
3423 XFS_IFLUSH_DELWRI_ELSE_ASYNC))
3424 delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 purged = 1;
3426 break;
3427 }
3428
3429 done = !purged;
3430 }
3431
3432 XFS_MOUNT_IUNLOCK(mp);
3433 return 0;
3434}
3435
3436/*
3437 * xfs_alloc_file_space()
3438 * This routine allocates disk space for the given file.
3439 *
3440 * If alloc_type == 0, this request is for an ALLOCSP type
3441 * request which will change the file size. In this case, no
3442 * DMAPI event will be generated by the call. A TRUNCATE event
3443 * will be generated later by xfs_setattr.
3444 *
3445 * If alloc_type != 0, this request is for a RESVSP type
3446 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
3447 * lower block boundary byte address is less than the file's
3448 * length.
3449 *
3450 * RETURNS:
3451 * 0 on success
3452 * errno on error
3453 *
3454 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003455STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456xfs_alloc_file_space(
3457 xfs_inode_t *ip,
3458 xfs_off_t offset,
3459 xfs_off_t len,
3460 int alloc_type,
3461 int attr_flags)
3462{
Nathan Scottdd9f4382006-01-11 15:28:28 +11003463 xfs_mount_t *mp = ip->i_mount;
3464 xfs_off_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 xfs_filblks_t allocated_fsb;
3466 xfs_filblks_t allocatesize_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11003467 xfs_extlen_t extsz, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 xfs_fileoff_t startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11003469 xfs_fsblock_t firstfsb;
3470 int nimaps;
3471 int bmapi_flag;
3472 int quota_flag;
3473 int rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 xfs_trans_t *tp;
Nathan Scottdd9f4382006-01-11 15:28:28 +11003475 xfs_bmbt_irec_t imaps[1], *imapp;
3476 xfs_bmap_free_t free_list;
3477 uint qblocks, resblks, resrtextents;
3478 int committed;
3479 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11003481 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
3483 if (XFS_FORCED_SHUTDOWN(mp))
3484 return XFS_ERROR(EIO);
3485
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
3487 return error;
3488
3489 if (len <= 0)
3490 return XFS_ERROR(EINVAL);
3491
David Chinner957d0eb2007-06-18 16:50:37 +10003492 rt = XFS_IS_REALTIME_INODE(ip);
3493 extsz = xfs_get_extsz_hint(ip);
3494
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 count = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 imapp = &imaps[0];
Nathan Scottdd9f4382006-01-11 15:28:28 +11003497 nimaps = 1;
3498 bmapi_flag = XFS_BMAPI_WRITE | (alloc_type ? XFS_BMAPI_PREALLOC : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
3500 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
3501
3502 /* Generate a DMAPI event if needed. */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003503 if (alloc_type != 0 && offset < ip->i_size &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 (attr_flags&ATTR_DMI) == 0 &&
Christoph Hellwigeb9df392007-08-16 18:42:07 +10003505 DM_EVENT_ENABLED(ip, DM_EVENT_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 xfs_off_t end_dmi_offset;
3507
3508 end_dmi_offset = offset+len;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003509 if (end_dmi_offset > ip->i_size)
3510 end_dmi_offset = ip->i_size;
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003511 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip, offset,
3512 end_dmi_offset - offset, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01003514 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 }
3516
3517 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003518 * Allocate file space until done or until there is an error
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 */
3520retry:
3521 while (allocatesize_fsb && !error) {
Nathan Scottdd9f4382006-01-11 15:28:28 +11003522 xfs_fileoff_t s, e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
Nathan Scottdd9f4382006-01-11 15:28:28 +11003524 /*
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11003525 * Determine space reservations for data/realtime.
Nathan Scottdd9f4382006-01-11 15:28:28 +11003526 */
3527 if (unlikely(extsz)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 s = startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11003529 do_div(s, extsz);
3530 s *= extsz;
3531 e = startoffset_fsb + allocatesize_fsb;
3532 if ((temp = do_mod(startoffset_fsb, extsz)))
3533 e += temp;
3534 if ((temp = do_mod(e, extsz)))
3535 e += extsz - temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 } else {
Nathan Scottdd9f4382006-01-11 15:28:28 +11003537 s = 0;
3538 e = allocatesize_fsb;
3539 }
3540
3541 if (unlikely(rt)) {
3542 resrtextents = qblocks = (uint)(e - s);
3543 resrtextents /= mp->m_sb.sb_rextsize;
3544 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
3545 quota_flag = XFS_QMOPT_RES_RTBLKS;
3546 } else {
3547 resrtextents = 0;
3548 resblks = qblocks = \
3549 XFS_DIOSTRAT_SPACE_RES(mp, (uint)(e - s));
3550 quota_flag = XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 }
3552
3553 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003554 * Allocate and setup the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 */
3556 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Nathan Scottdd9f4382006-01-11 15:28:28 +11003557 error = xfs_trans_reserve(tp, resblks,
3558 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 XFS_TRANS_PERM_LOG_RES,
3560 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003562 * Check for running out of space
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 */
3564 if (error) {
3565 /*
3566 * Free the transaction structure.
3567 */
3568 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
3569 xfs_trans_cancel(tp, 0);
3570 break;
3571 }
3572 xfs_ilock(ip, XFS_ILOCK_EXCL);
Nathan Scottdd9f4382006-01-11 15:28:28 +11003573 error = XFS_TRANS_RESERVE_QUOTA_NBLKS(mp, tp, ip,
3574 qblocks, 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 if (error)
3576 goto error1;
3577
3578 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3579 xfs_trans_ihold(tp, ip);
3580
3581 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003582 * Issue the xfs_bmapi() call to allocate the blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 */
3584 XFS_BMAP_INIT(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003585 error = xfs_bmapi(tp, ip, startoffset_fsb,
Nathan Scottdd9f4382006-01-11 15:28:28 +11003586 allocatesize_fsb, bmapi_flag,
3587 &firstfsb, 0, imapp, &nimaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003588 &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 if (error) {
3590 goto error0;
3591 }
3592
3593 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003594 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11003596 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 if (error) {
3598 goto error0;
3599 }
3600
Eric Sandeen1c72bf92007-05-08 13:48:42 +10003601 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3603 if (error) {
3604 break;
3605 }
3606
3607 allocated_fsb = imapp->br_blockcount;
3608
Nathan Scottdd9f4382006-01-11 15:28:28 +11003609 if (nimaps == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 error = XFS_ERROR(ENOSPC);
3611 break;
3612 }
3613
3614 startoffset_fsb += allocated_fsb;
3615 allocatesize_fsb -= allocated_fsb;
3616 }
3617dmapi_enospc_check:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10003618 if (error == ENOSPC && (attr_flags & ATTR_DMI) == 0 &&
3619 DM_EVENT_ENABLED(ip, DM_EVENT_NOSPACE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 error = XFS_SEND_NAMESP(mp, DM_EVENT_NOSPACE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003621 ip, DM_RIGHT_NULL,
3622 ip, DM_RIGHT_NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 NULL, NULL, 0, 0, 0); /* Delay flag intentionally unused */
3624 if (error == 0)
3625 goto retry; /* Maybe DMAPI app. has made space */
3626 /* else fall through with error from XFS_SEND_DATA */
3627 }
3628
3629 return error;
3630
Nathan Scottdd9f4382006-01-11 15:28:28 +11003631error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 xfs_bmap_cancel(&free_list);
Nathan Scottdd9f4382006-01-11 15:28:28 +11003633 XFS_TRANS_UNRESERVE_QUOTA_NBLKS(mp, tp, ip, qblocks, 0, quota_flag);
3634
3635error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
3637 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3638 goto dmapi_enospc_check;
3639}
3640
3641/*
3642 * Zero file bytes between startoff and endoff inclusive.
3643 * The iolock is held exclusive and no blocks are buffered.
3644 */
3645STATIC int
3646xfs_zero_remaining_bytes(
3647 xfs_inode_t *ip,
3648 xfs_off_t startoff,
3649 xfs_off_t endoff)
3650{
3651 xfs_bmbt_irec_t imap;
3652 xfs_fileoff_t offset_fsb;
3653 xfs_off_t lastoffset;
3654 xfs_off_t offset;
3655 xfs_buf_t *bp;
3656 xfs_mount_t *mp = ip->i_mount;
3657 int nimap;
3658 int error = 0;
3659
3660 bp = xfs_buf_get_noaddr(mp->m_sb.sb_blocksize,
Eric Sandeen71ddabb2007-11-23 16:29:42 +11003661 XFS_IS_REALTIME_INODE(ip) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 mp->m_rtdev_targp : mp->m_ddev_targp);
3663
3664 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
3665 offset_fsb = XFS_B_TO_FSBT(mp, offset);
3666 nimap = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003667 error = xfs_bmapi(NULL, ip, offset_fsb, 1, 0,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003668 NULL, 0, &imap, &nimap, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 if (error || nimap < 1)
3670 break;
3671 ASSERT(imap.br_blockcount >= 1);
3672 ASSERT(imap.br_startoff == offset_fsb);
3673 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
3674 if (lastoffset > endoff)
3675 lastoffset = endoff;
3676 if (imap.br_startblock == HOLESTARTBLOCK)
3677 continue;
3678 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
3679 if (imap.br_state == XFS_EXT_UNWRITTEN)
3680 continue;
3681 XFS_BUF_UNDONE(bp);
3682 XFS_BUF_UNWRITE(bp);
3683 XFS_BUF_READ(bp);
3684 XFS_BUF_SET_ADDR(bp, XFS_FSB_TO_DB(ip, imap.br_startblock));
3685 xfsbdstrat(mp, bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10003686 error = xfs_iowait(bp);
3687 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 xfs_ioerror_alert("xfs_zero_remaining_bytes(read)",
3689 mp, bp, XFS_BUF_ADDR(bp));
3690 break;
3691 }
3692 memset(XFS_BUF_PTR(bp) +
3693 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
3694 0, lastoffset - offset + 1);
3695 XFS_BUF_UNDONE(bp);
3696 XFS_BUF_UNREAD(bp);
3697 XFS_BUF_WRITE(bp);
3698 xfsbdstrat(mp, bp);
David Chinnerd64e31a2008-04-10 12:22:17 +10003699 error = xfs_iowait(bp);
3700 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 xfs_ioerror_alert("xfs_zero_remaining_bytes(write)",
3702 mp, bp, XFS_BUF_ADDR(bp));
3703 break;
3704 }
3705 }
3706 xfs_buf_free(bp);
3707 return error;
3708}
3709
3710/*
3711 * xfs_free_file_space()
3712 * This routine frees disk space for the given file.
3713 *
3714 * This routine is only called by xfs_change_file_space
3715 * for an UNRESVSP type call.
3716 *
3717 * RETURNS:
3718 * 0 on success
3719 * errno on error
3720 *
3721 */
3722STATIC int
3723xfs_free_file_space(
3724 xfs_inode_t *ip,
3725 xfs_off_t offset,
3726 xfs_off_t len,
3727 int attr_flags)
3728{
Nathan Scott67fcaa72006-06-09 17:00:52 +10003729 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 int committed;
3731 int done;
3732 xfs_off_t end_dmi_offset;
3733 xfs_fileoff_t endoffset_fsb;
3734 int error;
3735 xfs_fsblock_t firstfsb;
3736 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 xfs_bmbt_irec_t imap;
3738 xfs_off_t ioffset;
3739 xfs_extlen_t mod=0;
3740 xfs_mount_t *mp;
3741 int nimap;
3742 uint resblks;
Nathan Scott673cdf52006-09-28 10:56:26 +10003743 uint rounding;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 int rt;
3745 xfs_fileoff_t startoffset_fsb;
3746 xfs_trans_t *tp;
Dean Roehrich5fcbab32005-05-05 13:27:19 -07003747 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10003749 vp = XFS_ITOV(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 mp = ip->i_mount;
3751
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11003752 xfs_itrace_entry(ip);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10003753
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
3755 return error;
3756
3757 error = 0;
3758 if (len <= 0) /* if nothing being freed */
3759 return error;
Eric Sandeen71ddabb2007-11-23 16:29:42 +11003760 rt = XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
3762 end_dmi_offset = offset + len;
3763 endoffset_fsb = XFS_B_TO_FSBT(mp, end_dmi_offset);
3764
Christoph Hellwigeb9df392007-08-16 18:42:07 +10003765 if (offset < ip->i_size && (attr_flags & ATTR_DMI) == 0 &&
3766 DM_EVENT_ENABLED(ip, DM_EVENT_WRITE)) {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003767 if (end_dmi_offset > ip->i_size)
3768 end_dmi_offset = ip->i_size;
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003769 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 offset, end_dmi_offset - offset,
3771 AT_DELAY_FLAG(attr_flags), NULL);
3772 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01003773 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 }
3775
Dean Roehrich5fcbab32005-05-05 13:27:19 -07003776 if (attr_flags & ATTR_NOLOCK)
3777 need_iolock = 0;
Yingping Lu9fa80462006-03-22 12:44:35 +11003778 if (need_iolock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigb677c212007-08-29 11:46:28 +10003780 vn_iowait(ip); /* wait for the completion of any pending DIOs */
Yingping Lu9fa80462006-03-22 12:44:35 +11003781 }
Dean Roehrich5fcbab32005-05-05 13:27:19 -07003782
Tim Shimmine6a4b372007-11-23 16:30:42 +11003783 rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 ioffset = offset & ~(rounding - 1);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10003785
3786 if (VN_CACHED(vp) != 0) {
Tim Shimmine6a4b372007-11-23 16:30:42 +11003787 xfs_inval_cached_trace(ip, ioffset, -1, ioffset, -1);
3788 error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10003789 if (error)
3790 goto out_unlock_iolock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10003791 }
3792
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 /*
3794 * Need to zero the stuff we're not freeing, on disk.
3795 * If its a realtime file & can't use unwritten extents then we
3796 * actually need to zero the extent edges. Otherwise xfs_bunmapi
3797 * will take care of it for us.
3798 */
Eric Sandeen62118702008-03-06 13:44:28 +11003799 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 nimap = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003801 error = xfs_bmapi(NULL, ip, startoffset_fsb,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003802 1, 0, NULL, 0, &imap, &nimap, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 if (error)
3804 goto out_unlock_iolock;
3805 ASSERT(nimap == 0 || nimap == 1);
3806 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
3807 xfs_daddr_t block;
3808
3809 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
3810 block = imap.br_startblock;
3811 mod = do_div(block, mp->m_sb.sb_rextsize);
3812 if (mod)
3813 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
3814 }
3815 nimap = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003816 error = xfs_bmapi(NULL, ip, endoffset_fsb - 1,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003817 1, 0, NULL, 0, &imap, &nimap, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 if (error)
3819 goto out_unlock_iolock;
3820 ASSERT(nimap == 0 || nimap == 1);
3821 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
3822 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
3823 mod++;
3824 if (mod && (mod != mp->m_sb.sb_rextsize))
3825 endoffset_fsb -= mod;
3826 }
3827 }
3828 if ((done = (endoffset_fsb <= startoffset_fsb)))
3829 /*
3830 * One contiguous piece to clear
3831 */
3832 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
3833 else {
3834 /*
3835 * Some full blocks, possibly two pieces to clear
3836 */
3837 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
3838 error = xfs_zero_remaining_bytes(ip, offset,
3839 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
3840 if (!error &&
3841 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
3842 error = xfs_zero_remaining_bytes(ip,
3843 XFS_FSB_TO_B(mp, endoffset_fsb),
3844 offset + len - 1);
3845 }
3846
3847 /*
3848 * free file space until done or until there is an error
3849 */
3850 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
3851 while (!error && !done) {
3852
3853 /*
David Chinner91ebecc2007-07-19 16:28:30 +10003854 * allocate and setup the transaction. Allow this
3855 * transaction to dip into the reserve blocks to ensure
3856 * the freeing of the space succeeds at ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 */
3858 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
David Chinner91ebecc2007-07-19 16:28:30 +10003859 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 error = xfs_trans_reserve(tp,
3861 resblks,
3862 XFS_WRITE_LOG_RES(mp),
3863 0,
3864 XFS_TRANS_PERM_LOG_RES,
3865 XFS_WRITE_LOG_COUNT);
3866
3867 /*
3868 * check for running out of space
3869 */
3870 if (error) {
3871 /*
3872 * Free the transaction structure.
3873 */
3874 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
3875 xfs_trans_cancel(tp, 0);
3876 break;
3877 }
3878 xfs_ilock(ip, XFS_ILOCK_EXCL);
3879 error = XFS_TRANS_RESERVE_QUOTA(mp, tp,
Nathan Scottdd9f4382006-01-11 15:28:28 +11003880 ip->i_udquot, ip->i_gdquot, resblks, 0,
3881 XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 if (error)
3883 goto error1;
3884
3885 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3886 xfs_trans_ihold(tp, ip);
3887
3888 /*
3889 * issue the bunmapi() call to free the blocks
3890 */
3891 XFS_BMAP_INIT(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003892 error = xfs_bunmapi(tp, ip, startoffset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 endoffset_fsb - startoffset_fsb,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003894 0, 2, &firstfsb, &free_list, NULL, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 if (error) {
3896 goto error0;
3897 }
3898
3899 /*
3900 * complete the transaction
3901 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11003902 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 if (error) {
3904 goto error0;
3905 }
3906
Eric Sandeen1c72bf92007-05-08 13:48:42 +10003907 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3909 }
3910
3911 out_unlock_iolock:
3912 if (need_iolock)
3913 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
3914 return error;
3915
3916 error0:
3917 xfs_bmap_cancel(&free_list);
3918 error1:
3919 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
3920 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
3921 XFS_ILOCK_EXCL);
3922 return error;
3923}
3924
3925/*
3926 * xfs_change_file_space()
3927 * This routine allocates or frees disk space for the given file.
3928 * The user specified parameters are checked for alignment and size
3929 * limitations.
3930 *
3931 * RETURNS:
3932 * 0 on success
3933 * errno on error
3934 *
3935 */
3936int
3937xfs_change_file_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +10003938 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 int cmd,
3940 xfs_flock64_t *bf,
3941 xfs_off_t offset,
3942 cred_t *credp,
3943 int attr_flags)
3944{
Christoph Hellwig993386c2007-08-28 16:12:30 +10003945 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 int clrprealloc;
3947 int error;
3948 xfs_fsize_t fsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 int setprealloc;
3950 xfs_off_t startoffset;
3951 xfs_off_t llen;
3952 xfs_trans_t *tp;
Nathan Scott8285fb52006-06-09 17:07:12 +10003953 bhv_vattr_t va;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11003955 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Christoph Hellwig993386c2007-08-28 16:12:30 +10003957 if (!S_ISREG(ip->i_d.di_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 return XFS_ERROR(EINVAL);
3959
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 switch (bf->l_whence) {
3961 case 0: /*SEEK_SET*/
3962 break;
3963 case 1: /*SEEK_CUR*/
3964 bf->l_start += offset;
3965 break;
3966 case 2: /*SEEK_END*/
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003967 bf->l_start += ip->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 break;
3969 default:
3970 return XFS_ERROR(EINVAL);
3971 }
3972
3973 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
3974
3975 if ( (bf->l_start < 0)
3976 || (bf->l_start > XFS_MAXIOFFSET(mp))
3977 || (bf->l_start + llen < 0)
3978 || (bf->l_start + llen > XFS_MAXIOFFSET(mp)))
3979 return XFS_ERROR(EINVAL);
3980
3981 bf->l_whence = 0;
3982
3983 startoffset = bf->l_start;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003984 fsize = ip->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985
3986 /*
3987 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
3988 * file space.
3989 * These calls do NOT zero the data space allocated to the file,
3990 * nor do they change the file size.
3991 *
3992 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
3993 * space.
3994 * These calls cause the new file data to be zeroed and the file
3995 * size to be changed.
3996 */
3997 setprealloc = clrprealloc = 0;
3998
3999 switch (cmd) {
4000 case XFS_IOC_RESVSP:
4001 case XFS_IOC_RESVSP64:
4002 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
4003 1, attr_flags);
4004 if (error)
4005 return error;
4006 setprealloc = 1;
4007 break;
4008
4009 case XFS_IOC_UNRESVSP:
4010 case XFS_IOC_UNRESVSP64:
4011 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
4012 attr_flags)))
4013 return error;
4014 break;
4015
4016 case XFS_IOC_ALLOCSP:
4017 case XFS_IOC_ALLOCSP64:
4018 case XFS_IOC_FREESP:
4019 case XFS_IOC_FREESP64:
4020 if (startoffset > fsize) {
4021 error = xfs_alloc_file_space(ip, fsize,
4022 startoffset - fsize, 0, attr_flags);
4023 if (error)
4024 break;
4025 }
4026
4027 va.va_mask = XFS_AT_SIZE;
4028 va.va_size = startoffset;
4029
Christoph Hellwig993386c2007-08-28 16:12:30 +10004030 error = xfs_setattr(ip, &va, attr_flags, credp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
4032 if (error)
4033 return error;
4034
4035 clrprealloc = 1;
4036 break;
4037
4038 default:
4039 ASSERT(0);
4040 return XFS_ERROR(EINVAL);
4041 }
4042
4043 /*
4044 * update the inode timestamp, mode, and prealloc flag bits
4045 */
4046 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
4047
4048 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
4049 0, 0, 0))) {
4050 /* ASSERT(0); */
4051 xfs_trans_cancel(tp, 0);
4052 return error;
4053 }
4054
4055 xfs_ilock(ip, XFS_ILOCK_EXCL);
4056
4057 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
4058 xfs_trans_ihold(tp, ip);
4059
4060 if ((attr_flags & ATTR_DMI) == 0) {
4061 ip->i_d.di_mode &= ~S_ISUID;
4062
4063 /*
4064 * Note that we don't have to worry about mandatory
4065 * file locking being disabled here because we only
4066 * clear the S_ISGID bit if the Group execute bit is
4067 * on, but if it was on then mandatory locking wouldn't
4068 * have been enabled.
4069 */
4070 if (ip->i_d.di_mode & S_IXGRP)
4071 ip->i_d.di_mode &= ~S_ISGID;
4072
4073 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
4074 }
4075 if (setprealloc)
4076 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
4077 else if (clrprealloc)
4078 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
4079
4080 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
4081 xfs_trans_set_sync(tp);
4082
Eric Sandeen1c72bf92007-05-08 13:48:42 +10004083 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084
4085 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4086
4087 return error;
4088}