blob: ca38fb9a99379448219ad87031663bac14e57d79 [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/*
79 * xfs_getattr
80 */
Christoph Hellwig993386c2007-08-28 16:12:30 +100081int
Linus Torvalds1da177e2005-04-16 15:20:36 -070082xfs_getattr(
Christoph Hellwig993386c2007-08-28 16:12:30 +100083 xfs_inode_t *ip,
Nathan Scott8285fb52006-06-09 17:07:12 +100084 bhv_vattr_t *vap,
Christoph Hellwig993386c2007-08-28 16:12:30 +100085 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Christoph Hellwig993386c2007-08-28 16:12:30 +100087 bhv_vnode_t *vp = XFS_ITOV(ip);
88 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Lachlan McIlroycf441ee2008-02-07 16:42:19 +110090 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (XFS_FORCED_SHUTDOWN(mp))
93 return XFS_ERROR(EIO);
94
95 if (!(flags & ATTR_LAZY))
96 xfs_ilock(ip, XFS_ILOCK_SHARED);
97
Lachlan McIlroyba87ea62007-05-08 13:49:46 +100098 vap->va_size = XFS_ISIZE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (vap->va_mask == XFS_AT_SIZE)
100 goto all_done;
101
102 vap->va_nblocks =
103 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
104 vap->va_nodeid = ip->i_ino;
105#if XFS_BIG_INUMS
106 vap->va_nodeid += mp->m_inoadd;
107#endif
108 vap->va_nlink = ip->i_d.di_nlink;
109
110 /*
111 * Quick exit for non-stat callers
112 */
113 if ((vap->va_mask &
114 ~(XFS_AT_SIZE|XFS_AT_FSID|XFS_AT_NODEID|
115 XFS_AT_NLINK|XFS_AT_BLKSIZE)) == 0)
116 goto all_done;
117
118 /*
119 * Copy from in-core inode.
120 */
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000121 vap->va_mode = ip->i_d.di_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 vap->va_uid = ip->i_d.di_uid;
123 vap->va_gid = ip->i_d.di_gid;
124 vap->va_projid = ip->i_d.di_projid;
125
126 /*
127 * Check vnode type block/char vs. everything else.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 */
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000129 switch (ip->i_d.di_mode & S_IFMT) {
130 case S_IFBLK:
131 case S_IFCHR:
132 vap->va_rdev = ip->i_df.if_u2.if_rdev;
133 vap->va_blocksize = BLKDEV_IOSIZE;
134 break;
135 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 vap->va_rdev = 0;
137
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100138 if (!(XFS_IS_REALTIME_INODE(ip))) {
David Chinnere8c8b3a2005-11-02 10:33:05 +1100139 vap->va_blocksize = xfs_preferred_iosize(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 } else {
141
142 /*
143 * If the file blocks are being allocated from a
144 * realtime partition, then return the inode's
145 * realtime extent size or the realtime volume's
146 * extent size.
147 */
David Chinner957d0eb2007-06-18 16:50:37 +1000148 vap->va_blocksize =
149 xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000151 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153
Nathan Scottca5ccbf2006-01-11 21:03:04 +1100154 vn_atime_to_timespec(vp, &vap->va_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 vap->va_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
156 vap->va_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
157 vap->va_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
158 vap->va_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
159
160 /*
161 * Exit for stat callers. See if any of the rest of the fields
162 * to be filled in are needed.
163 */
164 if ((vap->va_mask &
165 (XFS_AT_XFLAGS|XFS_AT_EXTSIZE|XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|
166 XFS_AT_GENCOUNT|XFS_AT_VCODE)) == 0)
167 goto all_done;
168
169 /*
170 * Convert di_flags to xflags.
171 */
172 vap->va_xflags = xfs_ip2xflags(ip);
173
174 /*
175 * Exit for inode revalidate. See if any of the rest of
176 * the fields to be filled in are needed.
177 */
178 if ((vap->va_mask &
179 (XFS_AT_EXTSIZE|XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|
180 XFS_AT_GENCOUNT|XFS_AT_VCODE)) == 0)
181 goto all_done;
182
183 vap->va_extsize = ip->i_d.di_extsize << mp->m_sb.sb_blocklog;
184 vap->va_nextents =
185 (ip->i_df.if_flags & XFS_IFEXTENTS) ?
186 ip->i_df.if_bytes / sizeof(xfs_bmbt_rec_t) :
187 ip->i_d.di_nextents;
188 if (ip->i_afp)
189 vap->va_anextents =
190 (ip->i_afp->if_flags & XFS_IFEXTENTS) ?
191 ip->i_afp->if_bytes / sizeof(xfs_bmbt_rec_t) :
192 ip->i_d.di_anextents;
193 else
194 vap->va_anextents = 0;
195 vap->va_gen = ip->i_d.di_gen;
196
197 all_done:
198 if (!(flags & ATTR_LAZY))
199 xfs_iunlock(ip, XFS_ILOCK_SHARED);
200 return 0;
201}
202
203
204/*
205 * xfs_setattr
206 */
207int
208xfs_setattr(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000209 xfs_inode_t *ip,
Nathan Scott8285fb52006-06-09 17:07:12 +1000210 bhv_vattr_t *vap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 int flags,
212 cred_t *credp)
213{
Christoph Hellwig993386c2007-08-28 16:12:30 +1000214 bhv_vnode_t *vp = XFS_ITOV(ip);
215 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 int mask;
218 int code;
219 uint lock_flags;
220 uint commit_flags=0;
221 uid_t uid=0, iuid=0;
222 gid_t gid=0, igid=0;
223 int timeflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 xfs_prid_t projid=0, iprojid=0;
225 int mandlock_before, mandlock_after;
226 struct xfs_dquot *udqp, *gdqp, *olddquot1, *olddquot2;
227 int file_owner;
Dean Roehrich5fcbab32005-05-05 13:27:19 -0700228 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100230 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000232 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return XFS_ERROR(EROFS);
234
235 /*
236 * Cannot set certain attributes.
237 */
238 mask = vap->va_mask;
239 if (mask & XFS_AT_NOSET) {
240 return XFS_ERROR(EINVAL);
241 }
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (XFS_FORCED_SHUTDOWN(mp))
244 return XFS_ERROR(EIO);
245
246 /*
247 * Timestamps do not need to be logged and hence do not
248 * need to be done within a transaction.
249 */
250 if (mask & XFS_AT_UPDTIMES) {
251 ASSERT((mask & ~XFS_AT_UPDTIMES) == 0);
252 timeflags = ((mask & XFS_AT_UPDATIME) ? XFS_ICHGTIME_ACC : 0) |
253 ((mask & XFS_AT_UPDCTIME) ? XFS_ICHGTIME_CHG : 0) |
254 ((mask & XFS_AT_UPDMTIME) ? XFS_ICHGTIME_MOD : 0);
255 xfs_ichgtime(ip, timeflags);
256 return 0;
257 }
258
259 olddquot1 = olddquot2 = NULL;
260 udqp = gdqp = NULL;
261
262 /*
263 * If disk quotas is on, we make sure that the dquots do exist on disk,
264 * before we start any other transactions. Trying to do this later
265 * is messy. We don't care to take a readlock to look at the ids
266 * in inode here, because we can't hold it across the trans_reserve.
267 * If the IDs do change before we take the ilock, we're covered
268 * because the i_*dquot fields will get updated anyway.
269 */
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000270 if (XFS_IS_QUOTA_ON(mp) &&
271 (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 uint qflags = 0;
273
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000274 if ((mask & XFS_AT_UID) && XFS_IS_UQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 uid = vap->va_uid;
276 qflags |= XFS_QMOPT_UQUOTA;
277 } else {
278 uid = ip->i_d.di_uid;
279 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000280 if ((mask & XFS_AT_GID) && XFS_IS_GQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 gid = vap->va_gid;
282 qflags |= XFS_QMOPT_GQUOTA;
283 } else {
284 gid = ip->i_d.di_gid;
285 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000286 if ((mask & XFS_AT_PROJID) && XFS_IS_PQUOTA_ON(mp)) {
287 projid = vap->va_projid;
288 qflags |= XFS_QMOPT_PQUOTA;
289 } else {
290 projid = ip->i_d.di_projid;
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /*
293 * We take a reference when we initialize udqp and gdqp,
294 * so it is important that we never blindly double trip on
295 * the same variable. See xfs_create() for an example.
296 */
297 ASSERT(udqp == NULL);
298 ASSERT(gdqp == NULL);
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000299 code = XFS_QM_DQVOPALLOC(mp, ip, uid, gid, projid, qflags,
300 &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (code)
Jesper Juhl014c2542006-01-15 02:37:08 +0100302 return code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304
305 /*
306 * For the other attributes, we acquire the inode lock and
307 * first do an error checking pass.
308 */
309 tp = NULL;
310 lock_flags = XFS_ILOCK_EXCL;
Dean Roehrich5fcbab32005-05-05 13:27:19 -0700311 if (flags & ATTR_NOLOCK)
312 need_iolock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (!(mask & XFS_AT_SIZE)) {
314 if ((mask != (XFS_AT_CTIME|XFS_AT_ATIME|XFS_AT_MTIME)) ||
315 (mp->m_flags & XFS_MOUNT_WSYNC)) {
316 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
317 commit_flags = 0;
318 if ((code = xfs_trans_reserve(tp, 0,
319 XFS_ICHANGE_LOG_RES(mp), 0,
320 0, 0))) {
321 lock_flags = 0;
322 goto error_return;
323 }
324 }
325 } else {
Christoph Hellwigeb9df392007-08-16 18:42:07 +1000326 if (DM_EVENT_ENABLED(ip, DM_EVENT_TRUNCATE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 !(flags & ATTR_DMI)) {
328 int dmflags = AT_DELAY_FLAG(flags) | DM_SEM_FLAG_WR;
Christoph Hellwigbc4ac742008-03-06 13:45:58 +1100329 code = XFS_SEND_DATA(mp, DM_EVENT_TRUNCATE, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 vap->va_size, 0, dmflags, NULL);
331 if (code) {
332 lock_flags = 0;
333 goto error_return;
334 }
335 }
336 if (need_iolock)
337 lock_flags |= XFS_IOLOCK_EXCL;
338 }
339
340 xfs_ilock(ip, lock_flags);
341
342 /* boolean: are we the file owner? */
343 file_owner = (current_fsuid(credp) == ip->i_d.di_uid);
344
345 /*
346 * Change various properties of a file.
347 * Only the owner or users with CAP_FOWNER
348 * capability may do these things.
349 */
350 if (mask &
351 (XFS_AT_MODE|XFS_AT_XFLAGS|XFS_AT_EXTSIZE|XFS_AT_UID|
352 XFS_AT_GID|XFS_AT_PROJID)) {
353 /*
354 * CAP_FOWNER overrides the following restrictions:
355 *
356 * The user ID of the calling process must be equal
357 * to the file owner ID, except in cases where the
358 * CAP_FSETID capability is applicable.
359 */
360 if (!file_owner && !capable(CAP_FOWNER)) {
361 code = XFS_ERROR(EPERM);
362 goto error_return;
363 }
364
365 /*
366 * CAP_FSETID overrides the following restrictions:
367 *
368 * The effective user ID of the calling process shall match
369 * the file owner when setting the set-user-ID and
370 * set-group-ID bits on that file.
371 *
372 * The effective group ID or one of the supplementary group
373 * IDs of the calling process shall match the group owner of
374 * the file when setting the set-group-ID bit on that file
375 */
376 if (mask & XFS_AT_MODE) {
377 mode_t m = 0;
378
379 if ((vap->va_mode & S_ISUID) && !file_owner)
380 m |= S_ISUID;
381 if ((vap->va_mode & S_ISGID) &&
382 !in_group_p((gid_t)ip->i_d.di_gid))
383 m |= S_ISGID;
384#if 0
385 /* Linux allows this, Irix doesn't. */
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000386 if ((vap->va_mode & S_ISVTX) && !VN_ISDIR(vp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 m |= S_ISVTX;
388#endif
389 if (m && !capable(CAP_FSETID))
390 vap->va_mode &= ~m;
391 }
392 }
393
394 /*
395 * Change file ownership. Must be the owner or privileged.
396 * If the system was configured with the "restricted_chown"
397 * option, the owner is not permitted to give away the file,
398 * and can change the group id only to a group of which he
399 * or she is a member.
400 */
401 if (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID)) {
402 /*
403 * These IDs could have changed since we last looked at them.
404 * But, we're assured that if the ownership did change
405 * while we didn't have the inode locked, inode's dquot(s)
406 * would have changed also.
407 */
408 iuid = ip->i_d.di_uid;
409 iprojid = ip->i_d.di_projid;
410 igid = ip->i_d.di_gid;
411 gid = (mask & XFS_AT_GID) ? vap->va_gid : igid;
412 uid = (mask & XFS_AT_UID) ? vap->va_uid : iuid;
413 projid = (mask & XFS_AT_PROJID) ? (xfs_prid_t)vap->va_projid :
414 iprojid;
415
416 /*
417 * CAP_CHOWN overrides the following restrictions:
418 *
419 * If _POSIX_CHOWN_RESTRICTED is defined, this capability
420 * shall override the restriction that a process cannot
421 * change the user ID of a file it owns and the restriction
422 * that the group ID supplied to the chown() function
423 * shall be equal to either the group ID or one of the
424 * supplementary group IDs of the calling process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 */
426 if (restricted_chown &&
427 (iuid != uid || (igid != gid &&
428 !in_group_p((gid_t)gid))) &&
429 !capable(CAP_CHOWN)) {
430 code = XFS_ERROR(EPERM);
431 goto error_return;
432 }
433 /*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000434 * Do a quota reservation only if uid/projid/gid is actually
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 * going to change.
436 */
437 if ((XFS_IS_UQUOTA_ON(mp) && iuid != uid) ||
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000438 (XFS_IS_PQUOTA_ON(mp) && iprojid != projid) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 (XFS_IS_GQUOTA_ON(mp) && igid != gid)) {
440 ASSERT(tp);
441 code = XFS_QM_DQVOPCHOWNRESV(mp, tp, ip, udqp, gdqp,
442 capable(CAP_FOWNER) ?
443 XFS_QMOPT_FORCE_RES : 0);
444 if (code) /* out of quota */
445 goto error_return;
446 }
447 }
448
449 /*
450 * Truncate file. Must have write permission and not be a directory.
451 */
452 if (mask & XFS_AT_SIZE) {
453 /* Short circuit the truncate case for zero length files */
454 if ((vap->va_size == 0) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000455 (ip->i_size == 0) && (ip->i_d.di_nextents == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 xfs_iunlock(ip, XFS_ILOCK_EXCL);
457 lock_flags &= ~XFS_ILOCK_EXCL;
458 if (mask & XFS_AT_CTIME)
459 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
460 code = 0;
461 goto error_return;
462 }
463
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000464 if (VN_ISDIR(vp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 code = XFS_ERROR(EISDIR);
466 goto error_return;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000467 } else if (!VN_ISREG(vp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 code = XFS_ERROR(EINVAL);
469 goto error_return;
470 }
471 /*
472 * Make sure that the dquots are attached to the inode.
473 */
474 if ((code = XFS_QM_DQATTACH(mp, ip, XFS_QMOPT_ILOCKED)))
475 goto error_return;
476 }
477
478 /*
479 * Change file access or modified times.
480 */
481 if (mask & (XFS_AT_ATIME|XFS_AT_MTIME)) {
482 if (!file_owner) {
483 if ((flags & ATTR_UTIME) &&
484 !capable(CAP_FOWNER)) {
485 code = XFS_ERROR(EPERM);
486 goto error_return;
487 }
488 }
489 }
490
491 /*
492 * Change extent size or realtime flag.
493 */
494 if (mask & (XFS_AT_EXTSIZE|XFS_AT_XFLAGS)) {
495 /*
496 * Can't change extent size if any extents are allocated.
497 */
Eric Sandeene94af022005-11-02 15:10:41 +1100498 if (ip->i_d.di_nextents && (mask & XFS_AT_EXTSIZE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
500 vap->va_extsize) ) {
501 code = XFS_ERROR(EINVAL); /* EFBIG? */
502 goto error_return;
503 }
504
505 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 * Can't change realtime flag if any extents are allocated.
507 */
Eric Sandeene94af022005-11-02 15:10:41 +1100508 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
509 (mask & XFS_AT_XFLAGS) &&
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100510 (XFS_IS_REALTIME_INODE(ip)) !=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 (vap->va_xflags & XFS_XFLAG_REALTIME)) {
512 code = XFS_ERROR(EINVAL); /* EFBIG? */
513 goto error_return;
514 }
515 /*
516 * Extent size must be a multiple of the appropriate block
517 * size, if set at all.
518 */
519 if ((mask & XFS_AT_EXTSIZE) && vap->va_extsize != 0) {
520 xfs_extlen_t size;
521
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100522 if (XFS_IS_REALTIME_INODE(ip) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 ((mask & XFS_AT_XFLAGS) &&
524 (vap->va_xflags & XFS_XFLAG_REALTIME))) {
525 size = mp->m_sb.sb_rextsize <<
526 mp->m_sb.sb_blocklog;
527 } else {
528 size = mp->m_sb.sb_blocksize;
529 }
530 if (vap->va_extsize % size) {
531 code = XFS_ERROR(EINVAL);
532 goto error_return;
533 }
534 }
535 /*
536 * If realtime flag is set then must have realtime data.
537 */
538 if ((mask & XFS_AT_XFLAGS) &&
539 (vap->va_xflags & XFS_XFLAG_REALTIME)) {
540 if ((mp->m_sb.sb_rblocks == 0) ||
541 (mp->m_sb.sb_rextsize == 0) ||
542 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize)) {
543 code = XFS_ERROR(EINVAL);
544 goto error_return;
545 }
546 }
547
548 /*
549 * Can't modify an immutable/append-only file unless
550 * we have appropriate permission.
551 */
552 if ((mask & XFS_AT_XFLAGS) &&
553 (ip->i_d.di_flags &
554 (XFS_DIFLAG_IMMUTABLE|XFS_DIFLAG_APPEND) ||
555 (vap->va_xflags &
556 (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
557 !capable(CAP_LINUX_IMMUTABLE)) {
558 code = XFS_ERROR(EPERM);
559 goto error_return;
560 }
561 }
562
563 /*
564 * Now we can make the changes. Before we join the inode
565 * to the transaction, if XFS_AT_SIZE is set then take care of
566 * the part of the truncation that must be done without the
567 * inode lock. This needs to be done before joining the inode
568 * to the transaction, because the inode cannot be unlocked
569 * once it is a part of the transaction.
570 */
571 if (mask & XFS_AT_SIZE) {
572 code = 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000573 if ((vap->va_size > ip->i_size) &&
Eric Sandeen374e2ac2005-11-02 15:07:34 +1100574 (flags & ATTR_NOSIZETOK) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 code = xfs_igrow_start(ip, vap->va_size, credp);
Eric Sandeen374e2ac2005-11-02 15:07:34 +1100576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 xfs_iunlock(ip, XFS_ILOCK_EXCL);
David Chinnerc32676e2007-07-19 16:28:58 +1000578
579 /*
580 * We are going to log the inode size change in this
581 * transaction so any previous writes that are beyond the on
582 * disk EOF and the new EOF that have not been written out need
583 * to be written here. If we do not write the data out, we
584 * expose ourselves to the null files problem.
585 *
586 * Only flush from the on disk size to the smaller of the in
587 * memory file size or the new size as that's the range we
588 * really care about here and prevents waiting for other data
589 * not within the range we care about here.
590 */
591 if (!code &&
592 (ip->i_size != ip->i_d.di_size) &&
593 (vap->va_size > ip->i_d.di_size)) {
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000594 code = xfs_flush_pages(ip,
David Chinnerc32676e2007-07-19 16:28:58 +1000595 ip->i_d.di_size, vap->va_size,
596 XFS_B_ASYNC, FI_NONE);
597 }
598
599 /* wait for all I/O to complete */
Christoph Hellwigb677c212007-08-29 11:46:28 +1000600 vn_iowait(ip);
David Chinnerc32676e2007-07-19 16:28:58 +1000601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (!code)
603 code = xfs_itruncate_data(ip, vap->va_size);
604 if (code) {
605 ASSERT(tp == NULL);
606 lock_flags &= ~XFS_ILOCK_EXCL;
607 ASSERT(lock_flags == XFS_IOLOCK_EXCL);
608 goto error_return;
609 }
610 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_SIZE);
611 if ((code = xfs_trans_reserve(tp, 0,
612 XFS_ITRUNCATE_LOG_RES(mp), 0,
613 XFS_TRANS_PERM_LOG_RES,
614 XFS_ITRUNCATE_LOG_COUNT))) {
615 xfs_trans_cancel(tp, 0);
616 if (need_iolock)
617 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
618 return code;
619 }
620 commit_flags = XFS_TRANS_RELEASE_LOG_RES;
621 xfs_ilock(ip, XFS_ILOCK_EXCL);
622 }
623
624 if (tp) {
625 xfs_trans_ijoin(tp, ip, lock_flags);
626 xfs_trans_ihold(tp, ip);
627 }
628
629 /* determine whether mandatory locking mode changes */
630 mandlock_before = MANDLOCK(vp, ip->i_d.di_mode);
631
632 /*
633 * Truncate file. Must have write permission and not be a directory.
634 */
635 if (mask & XFS_AT_SIZE) {
David Chinner44d814c2008-03-06 13:45:29 +1100636 /*
637 * Only change the c/mtime if we are changing the size
638 * or we are explicitly asked to change it. This handles
639 * the semantic difference between truncate() and ftruncate()
640 * as implemented in the VFS.
641 */
642 if (vap->va_size != ip->i_size || (mask & XFS_AT_CTIME))
643 timeflags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
644
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000645 if (vap->va_size > ip->i_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 xfs_igrow_finish(tp, ip, vap->va_size,
647 !(flags & ATTR_DMI));
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000648 } else if ((vap->va_size <= ip->i_size) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 ((vap->va_size == 0) && ip->i_d.di_nextents)) {
650 /*
651 * signal a sync transaction unless
652 * we're truncating an already unlinked
653 * file on a wsync filesystem
654 */
655 code = xfs_itruncate_finish(&tp, ip,
656 (xfs_fsize_t)vap->va_size,
657 XFS_DATA_FORK,
658 ((ip->i_d.di_nlink != 0 ||
659 !(mp->m_flags & XFS_MOUNT_WSYNC))
660 ? 1 : 0));
Nathan Scott7d4fb402006-06-09 15:27:16 +1000661 if (code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 goto abort_return;
Nathan Scott7d4fb402006-06-09 15:27:16 +1000663 /*
664 * Truncated "down", so we're removing references
665 * to old data here - if we now delay flushing for
666 * a long time, we expose ourselves unduly to the
667 * notorious NULL files problem. So, we mark this
668 * vnode and flush it when the file is closed, and
669 * do not wait the usual (long) time for writeout.
670 */
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000671 xfs_iflags_set(ip, XFS_ITRUNCATED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
675 /*
676 * Change file access modes.
677 */
678 if (mask & XFS_AT_MODE) {
679 ip->i_d.di_mode &= S_IFMT;
680 ip->i_d.di_mode |= vap->va_mode & ~S_IFMT;
681
682 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
683 timeflags |= XFS_ICHGTIME_CHG;
684 }
685
686 /*
687 * Change file ownership. Must be the owner or privileged.
688 * If the system was configured with the "restricted_chown"
689 * option, the owner is not permitted to give away the file,
690 * and can change the group id only to a group of which he
691 * or she is a member.
692 */
693 if (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID)) {
694 /*
695 * CAP_FSETID overrides the following restrictions:
696 *
697 * The set-user-ID and set-group-ID bits of a file will be
698 * cleared upon successful return from chown()
699 */
700 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
701 !capable(CAP_FSETID)) {
702 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
703 }
704
705 /*
706 * Change the ownerships and register quota modifications
707 * in the transaction.
708 */
709 if (iuid != uid) {
710 if (XFS_IS_UQUOTA_ON(mp)) {
711 ASSERT(mask & XFS_AT_UID);
712 ASSERT(udqp);
713 olddquot1 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
714 &ip->i_udquot, udqp);
715 }
716 ip->i_d.di_uid = uid;
717 }
718 if (igid != gid) {
719 if (XFS_IS_GQUOTA_ON(mp)) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000720 ASSERT(!XFS_IS_PQUOTA_ON(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 ASSERT(mask & XFS_AT_GID);
722 ASSERT(gdqp);
723 olddquot2 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
724 &ip->i_gdquot, gdqp);
725 }
726 ip->i_d.di_gid = gid;
727 }
728 if (iprojid != projid) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000729 if (XFS_IS_PQUOTA_ON(mp)) {
730 ASSERT(!XFS_IS_GQUOTA_ON(mp));
731 ASSERT(mask & XFS_AT_PROJID);
732 ASSERT(gdqp);
733 olddquot2 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
734 &ip->i_gdquot, gdqp);
735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 ip->i_d.di_projid = projid;
737 /*
738 * We may have to rev the inode as well as
739 * the superblock version number since projids didn't
740 * exist before DINODE_VERSION_2 and SB_VERSION_NLINK.
741 */
742 if (ip->i_d.di_version == XFS_DINODE_VERSION_1)
743 xfs_bump_ino_vers2(tp, ip);
744 }
745
746 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
747 timeflags |= XFS_ICHGTIME_CHG;
748 }
749
750
751 /*
752 * Change file access or modified times.
753 */
754 if (mask & (XFS_AT_ATIME|XFS_AT_MTIME)) {
755 if (mask & XFS_AT_ATIME) {
756 ip->i_d.di_atime.t_sec = vap->va_atime.tv_sec;
757 ip->i_d.di_atime.t_nsec = vap->va_atime.tv_nsec;
758 ip->i_update_core = 1;
759 timeflags &= ~XFS_ICHGTIME_ACC;
760 }
761 if (mask & XFS_AT_MTIME) {
762 ip->i_d.di_mtime.t_sec = vap->va_mtime.tv_sec;
763 ip->i_d.di_mtime.t_nsec = vap->va_mtime.tv_nsec;
764 timeflags &= ~XFS_ICHGTIME_MOD;
765 timeflags |= XFS_ICHGTIME_CHG;
766 }
767 if (tp && (flags & ATTR_UTIME))
768 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
769 }
770
771 /*
772 * Change XFS-added attributes.
773 */
774 if (mask & (XFS_AT_EXTSIZE|XFS_AT_XFLAGS)) {
775 if (mask & XFS_AT_EXTSIZE) {
776 /*
777 * Converting bytes to fs blocks.
778 */
779 ip->i_d.di_extsize = vap->va_extsize >>
780 mp->m_sb.sb_blocklog;
781 }
782 if (mask & XFS_AT_XFLAGS) {
783 uint di_flags;
784
785 /* can't set PREALLOC this way, just preserve it */
786 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
787 if (vap->va_xflags & XFS_XFLAG_IMMUTABLE)
788 di_flags |= XFS_DIFLAG_IMMUTABLE;
789 if (vap->va_xflags & XFS_XFLAG_APPEND)
790 di_flags |= XFS_DIFLAG_APPEND;
791 if (vap->va_xflags & XFS_XFLAG_SYNC)
792 di_flags |= XFS_DIFLAG_SYNC;
793 if (vap->va_xflags & XFS_XFLAG_NOATIME)
794 di_flags |= XFS_DIFLAG_NOATIME;
795 if (vap->va_xflags & XFS_XFLAG_NODUMP)
796 di_flags |= XFS_DIFLAG_NODUMP;
Nathan Scott365ca832005-06-21 15:39:12 +1000797 if (vap->va_xflags & XFS_XFLAG_PROJINHERIT)
798 di_flags |= XFS_DIFLAG_PROJINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000799 if (vap->va_xflags & XFS_XFLAG_NODEFRAG)
800 di_flags |= XFS_DIFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000801 if (vap->va_xflags & XFS_XFLAG_FILESTREAM)
802 di_flags |= XFS_DIFLAG_FILESTREAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if ((ip->i_d.di_mode & S_IFMT) == S_IFDIR) {
804 if (vap->va_xflags & XFS_XFLAG_RTINHERIT)
805 di_flags |= XFS_DIFLAG_RTINHERIT;
806 if (vap->va_xflags & XFS_XFLAG_NOSYMLINKS)
807 di_flags |= XFS_DIFLAG_NOSYMLINKS;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100808 if (vap->va_xflags & XFS_XFLAG_EXTSZINHERIT)
809 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
810 } else if ((ip->i_d.di_mode & S_IFMT) == S_IFREG) {
Christoph Hellwig613d7042007-10-11 17:44:08 +1000811 if (vap->va_xflags & XFS_XFLAG_REALTIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 di_flags |= XFS_DIFLAG_REALTIME;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100813 if (vap->va_xflags & XFS_XFLAG_EXTSIZE)
814 di_flags |= XFS_DIFLAG_EXTSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816 ip->i_d.di_flags = di_flags;
817 }
818 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
819 timeflags |= XFS_ICHGTIME_CHG;
820 }
821
822 /*
823 * Change file inode change time only if XFS_AT_CTIME set
824 * AND we have been called by a DMI function.
825 */
826
827 if ( (flags & ATTR_DMI) && (mask & XFS_AT_CTIME) ) {
828 ip->i_d.di_ctime.t_sec = vap->va_ctime.tv_sec;
829 ip->i_d.di_ctime.t_nsec = vap->va_ctime.tv_nsec;
830 ip->i_update_core = 1;
831 timeflags &= ~XFS_ICHGTIME_CHG;
832 }
833
834 /*
835 * Send out timestamp changes that need to be set to the
836 * current time. Not done when called by a DMI function.
837 */
838 if (timeflags && !(flags & ATTR_DMI))
839 xfs_ichgtime(ip, timeflags);
840
841 XFS_STATS_INC(xs_ig_attrchg);
842
843 /*
844 * If this is a synchronous mount, make sure that the
845 * transaction goes to disk before returning to the user.
846 * This is slightly sub-optimal in that truncates require
Nathan Scottc41564b2006-03-29 08:55:14 +1000847 * two sync transactions instead of one for wsync filesystems.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 * One for the truncate and one for the timestamps since we
849 * don't want to change the timestamps unless we're sure the
850 * truncate worked. Truncates are less than 1% of the laddis
851 * mix so this probably isn't worth the trouble to optimize.
852 */
853 code = 0;
854 if (tp) {
855 if (mp->m_flags & XFS_MOUNT_WSYNC)
856 xfs_trans_set_sync(tp);
857
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000858 code = xfs_trans_commit(tp, commit_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860
861 /*
862 * If the (regular) file's mandatory locking mode changed, then
863 * notify the vnode. We do this under the inode lock to prevent
864 * racing calls to vop_vnode_change.
865 */
866 mandlock_after = MANDLOCK(vp, ip->i_d.di_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 xfs_iunlock(ip, lock_flags);
869
870 /*
871 * Release any dquot(s) the inode had kept before chown.
872 */
873 XFS_QM_DQRELE(mp, olddquot1);
874 XFS_QM_DQRELE(mp, olddquot2);
875 XFS_QM_DQRELE(mp, udqp);
876 XFS_QM_DQRELE(mp, gdqp);
877
878 if (code) {
879 return code;
880 }
881
Christoph Hellwigeb9df392007-08-16 18:42:07 +1000882 if (DM_EVENT_ENABLED(ip, DM_EVENT_ATTRIBUTE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 !(flags & ATTR_DMI)) {
Christoph Hellwigbc4ac742008-03-06 13:45:58 +1100884 (void) XFS_SEND_NAMESP(mp, DM_EVENT_ATTRIBUTE, ip, DM_RIGHT_NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 NULL, DM_RIGHT_NULL, NULL, NULL,
886 0, 0, AT_DELAY_FLAG(flags));
887 }
888 return 0;
889
890 abort_return:
891 commit_flags |= XFS_TRANS_ABORT;
892 /* FALLTHROUGH */
893 error_return:
894 XFS_QM_DQRELE(mp, udqp);
895 XFS_QM_DQRELE(mp, gdqp);
896 if (tp) {
897 xfs_trans_cancel(tp, commit_flags);
898 }
899 if (lock_flags != 0) {
900 xfs_iunlock(ip, lock_flags);
901 }
902 return code;
903}
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905/*
Nathan Scott7d4fb402006-06-09 15:27:16 +1000906 * The maximum pathlen is 1024 bytes. Since the minimum file system
907 * blocksize is 512 bytes, we can get a max of 2 extents back from
908 * bmapi.
909 */
910#define SYMLINK_MAPS 2
911
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000912STATIC int
913xfs_readlink_bmap(
914 xfs_inode_t *ip,
915 char *link)
916{
917 xfs_mount_t *mp = ip->i_mount;
918 int pathlen = ip->i_d.di_size;
919 int nmaps = SYMLINK_MAPS;
920 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
921 xfs_daddr_t d;
922 int byte_cnt;
923 int n;
924 xfs_buf_t *bp;
925 int error = 0;
926
927 error = xfs_bmapi(NULL, ip, 0, XFS_B_TO_FSB(mp, pathlen), 0, NULL, 0,
928 mval, &nmaps, NULL, NULL);
929 if (error)
930 goto out;
931
932 for (n = 0; n < nmaps; n++) {
933 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
934 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
935
936 bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt), 0);
937 error = XFS_BUF_GETERROR(bp);
938 if (error) {
939 xfs_ioerror_alert("xfs_readlink",
940 ip->i_mount, bp, XFS_BUF_ADDR(bp));
941 xfs_buf_relse(bp);
942 goto out;
943 }
944 if (pathlen < byte_cnt)
945 byte_cnt = pathlen;
946 pathlen -= byte_cnt;
947
948 memcpy(link, XFS_BUF_PTR(bp), byte_cnt);
949 xfs_buf_relse(bp);
950 }
951
952 link[ip->i_d.di_size] = '\0';
953 error = 0;
954
955 out:
956 return error;
957}
958
Christoph Hellwig993386c2007-08-28 16:12:30 +1000959int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960xfs_readlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000961 xfs_inode_t *ip,
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000962 char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000964 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100968 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 if (XFS_FORCED_SHUTDOWN(mp))
971 return XFS_ERROR(EIO);
972
973 xfs_ilock(ip, XFS_ILOCK_SHARED);
974
975 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFLNK);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000976 ASSERT(ip->i_d.di_size <= MAXPATHLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000978 pathlen = ip->i_d.di_size;
979 if (!pathlen)
980 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 if (ip->i_df.if_flags & XFS_IFINLINE) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000983 memcpy(link, ip->i_df.if_u1.if_data, pathlen);
984 link[pathlen] = '\0';
985 } else {
986 error = xfs_readlink_bmap(ip, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000989 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 return error;
992}
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994/*
995 * xfs_fsync
996 *
997 * This is called to sync the inode and its data out to disk.
998 * We need to hold the I/O lock while flushing the data, and
999 * the inode lock while flushing the inode. The inode lock CANNOT
1000 * be held while flushing the data, so acquire after we're done
1001 * with that.
1002 */
Christoph Hellwig993386c2007-08-28 16:12:30 +10001003int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004xfs_fsync(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001005 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 int flag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 xfs_off_t start,
1008 xfs_off_t stop)
1009{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 xfs_trans_t *tp;
1011 int error;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001012 int log_flushed = 0, changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001014 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 ASSERT(start >= 0 && stop >= -1);
1017
1018 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
1019 return XFS_ERROR(EIO);
1020
Lachlan McIlroy776a75f2007-09-14 15:22:50 +10001021 if (flag & FSYNC_DATA)
1022 filemap_fdatawait(vn_to_inode(XFS_ITOV(ip))->i_mapping);
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 /*
1025 * We always need to make sure that the required inode state
1026 * is safe on disk. The vnode might be clean but because
1027 * of committed transactions that haven't hit the disk yet.
1028 * Likewise, there could be unflushed non-transactional
1029 * changes to the inode core that have to go to disk.
1030 *
1031 * The following code depends on one assumption: that
1032 * any transaction that changes an inode logs the core
1033 * because it has to change some field in the inode core
1034 * (typically nextents or nblocks). That assumption
1035 * implies that any transactions against an inode will
1036 * catch any non-transactional updates. If inode-altering
1037 * transactions exist that violate this assumption, the
1038 * code breaks. Right now, it figures that if the involved
1039 * update_* field is clear and the inode is unpinned, the
1040 * inode is clean. Either it's been flushed or it's been
1041 * committed and the commit has hit the disk unpinning the inode.
1042 * (Note that xfs_inode_item_format() called at commit clears
1043 * the update_* fields.)
1044 */
1045 xfs_ilock(ip, XFS_ILOCK_SHARED);
1046
1047 /* If we are flushing data then we care about update_size
1048 * being set, otherwise we care about update_core
1049 */
1050 if ((flag & FSYNC_DATA) ?
1051 (ip->i_update_size == 0) :
1052 (ip->i_update_core == 0)) {
1053 /*
1054 * Timestamps/size haven't changed since last inode
1055 * flush or inode transaction commit. That means
1056 * either nothing got written or a transaction
1057 * committed which caught the updates. If the
1058 * latter happened and the transaction hasn't
1059 * hit the disk yet, the inode will be still
1060 * be pinned. If it is, force the log.
1061 */
1062
1063 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1064
1065 if (xfs_ipincount(ip)) {
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001066 _xfs_log_force(ip->i_mount, (xfs_lsn_t)0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 XFS_LOG_FORCE |
1068 ((flag & FSYNC_WAIT)
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001069 ? XFS_LOG_SYNC : 0),
1070 &log_flushed);
1071 } else {
1072 /*
1073 * If the inode is not pinned and nothing
1074 * has changed we don't need to flush the
1075 * cache.
1076 */
1077 changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079 error = 0;
1080 } else {
1081 /*
1082 * Kick off a transaction to log the inode
1083 * core to get the updates. Make it
1084 * sync if FSYNC_WAIT is passed in (which
1085 * is done by everybody but specfs). The
1086 * sync transaction will also force the log.
1087 */
1088 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1089 tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_FSYNC_TS);
1090 if ((error = xfs_trans_reserve(tp, 0,
1091 XFS_FSYNC_TS_LOG_RES(ip->i_mount),
1092 0, 0, 0))) {
1093 xfs_trans_cancel(tp, 0);
1094 return error;
1095 }
1096 xfs_ilock(ip, XFS_ILOCK_EXCL);
1097
1098 /*
1099 * Note - it's possible that we might have pushed
1100 * ourselves out of the way during trans_reserve
1101 * which would flush the inode. But there's no
1102 * guarantee that the inode buffer has actually
1103 * gone out yet (it's delwri). Plus the buffer
1104 * could be pinned anyway if it's part of an
1105 * inode in another recent transaction. So we
1106 * play it safe and fire off the transaction anyway.
1107 */
1108 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1109 xfs_trans_ihold(tp, ip);
1110 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1111 if (flag & FSYNC_WAIT)
1112 xfs_trans_set_sync(tp);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001113 error = _xfs_trans_commit(tp, 0, &log_flushed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1116 }
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001117
1118 if ((ip->i_mount->m_flags & XFS_MOUNT_BARRIER) && changed) {
1119 /*
1120 * If the log write didn't issue an ordered tag we need
1121 * to flush the disk cache for the data device now.
1122 */
1123 if (!log_flushed)
1124 xfs_blkdev_issue_flush(ip->i_mount->m_ddev_targp);
1125
1126 /*
1127 * If this inode is on the RT dev we need to flush that
Nathan Scottc41564b2006-03-29 08:55:14 +10001128 * cache as well.
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001129 */
Eric Sandeen71ddabb2007-11-23 16:29:42 +11001130 if (XFS_IS_REALTIME_INODE(ip))
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001131 xfs_blkdev_issue_flush(ip->i_mount->m_rtdev_targp);
1132 }
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return error;
1135}
1136
1137/*
David Chinner92dfe8d2007-05-24 15:22:19 +10001138 * This is called by xfs_inactive to free any blocks beyond eof
1139 * when the link count isn't zero and by xfs_dm_punch_hole() when
1140 * punching a hole to EOF.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 */
David Chinner92dfe8d2007-05-24 15:22:19 +10001142int
1143xfs_free_eofblocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 xfs_mount_t *mp,
David Chinner92dfe8d2007-05-24 15:22:19 +10001145 xfs_inode_t *ip,
1146 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
1148 xfs_trans_t *tp;
1149 int error;
1150 xfs_fileoff_t end_fsb;
1151 xfs_fileoff_t last_fsb;
1152 xfs_filblks_t map_len;
1153 int nimaps;
1154 xfs_bmbt_irec_t imap;
David Chinner92dfe8d2007-05-24 15:22:19 +10001155 int use_iolock = (flags & XFS_FREE_EOF_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 /*
1158 * Figure out if there are any blocks beyond the end
1159 * of the file. If not, then there is nothing to do.
1160 */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001161 end_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)ip->i_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 last_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
1163 map_len = last_fsb - end_fsb;
1164 if (map_len <= 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01001165 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 nimaps = 1;
1168 xfs_ilock(ip, XFS_ILOCK_SHARED);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10001169 error = xfs_bmapi(NULL, ip, end_fsb, map_len, 0,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001170 NULL, 0, &imap, &nimaps, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1172
1173 if (!error && (nimaps != 0) &&
Yingping Lu68bdb6e2006-01-11 15:38:31 +11001174 (imap.br_startblock != HOLESTARTBLOCK ||
1175 ip->i_delayed_blks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 /*
1177 * Attach the dquots to the inode up front.
1178 */
1179 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001180 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 /*
1183 * There are blocks after the end of file.
1184 * Free them up now by truncating the file to
1185 * its current size.
1186 */
1187 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1188
1189 /*
1190 * Do the xfs_itruncate_start() call before
1191 * reserving any log space because
1192 * itruncate_start will call into the buffer
1193 * cache and we can't
1194 * do that within a transaction.
1195 */
David Chinner92dfe8d2007-05-24 15:22:19 +10001196 if (use_iolock)
1197 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001198 error = xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE,
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001199 ip->i_size);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001200 if (error) {
Jesper Juhl87ae3c22007-06-28 16:43:14 +10001201 xfs_trans_cancel(tp, 0);
David Chinner92dfe8d2007-05-24 15:22:19 +10001202 if (use_iolock)
1203 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001204 return error;
1205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 error = xfs_trans_reserve(tp, 0,
1208 XFS_ITRUNCATE_LOG_RES(mp),
1209 0, XFS_TRANS_PERM_LOG_RES,
1210 XFS_ITRUNCATE_LOG_COUNT);
1211 if (error) {
1212 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1213 xfs_trans_cancel(tp, 0);
1214 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001215 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
1217
1218 xfs_ilock(ip, XFS_ILOCK_EXCL);
1219 xfs_trans_ijoin(tp, ip,
1220 XFS_IOLOCK_EXCL |
1221 XFS_ILOCK_EXCL);
1222 xfs_trans_ihold(tp, ip);
1223
1224 error = xfs_itruncate_finish(&tp, ip,
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001225 ip->i_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 XFS_DATA_FORK,
1227 0);
1228 /*
1229 * If we get an error at this point we
1230 * simply don't bother truncating the file.
1231 */
1232 if (error) {
1233 xfs_trans_cancel(tp,
1234 (XFS_TRANS_RELEASE_LOG_RES |
1235 XFS_TRANS_ABORT));
1236 } else {
1237 error = xfs_trans_commit(tp,
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001238 XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
David Chinner92dfe8d2007-05-24 15:22:19 +10001240 xfs_iunlock(ip, (use_iolock ? (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)
1241 : XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001243 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
1246/*
1247 * Free a symlink that has blocks associated with it.
1248 */
1249STATIC int
1250xfs_inactive_symlink_rmt(
1251 xfs_inode_t *ip,
1252 xfs_trans_t **tpp)
1253{
1254 xfs_buf_t *bp;
1255 int committed;
1256 int done;
1257 int error;
1258 xfs_fsblock_t first_block;
1259 xfs_bmap_free_t free_list;
1260 int i;
1261 xfs_mount_t *mp;
1262 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1263 int nmaps;
1264 xfs_trans_t *ntp;
1265 int size;
1266 xfs_trans_t *tp;
1267
1268 tp = *tpp;
1269 mp = ip->i_mount;
1270 ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip));
1271 /*
1272 * We're freeing a symlink that has some
1273 * blocks allocated to it. Free the
1274 * blocks here. We know that we've got
1275 * either 1 or 2 extents and that we can
1276 * free them all in one bunmapi call.
1277 */
1278 ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
1279 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
1280 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
1281 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1282 xfs_trans_cancel(tp, 0);
1283 *tpp = NULL;
1284 return error;
1285 }
1286 /*
1287 * Lock the inode, fix the size, and join it to the transaction.
1288 * Hold it so in the normal path, we still have it locked for
1289 * the second transaction. In the error paths we need it
1290 * held so the cancel won't rele it, see below.
1291 */
1292 xfs_ilock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1293 size = (int)ip->i_d.di_size;
1294 ip->i_d.di_size = 0;
1295 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1296 xfs_trans_ihold(tp, ip);
1297 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1298 /*
1299 * Find the block(s) so we can inval and unmap them.
1300 */
1301 done = 0;
1302 XFS_BMAP_INIT(&free_list, &first_block);
Tobias Klausere8c96f82006-03-24 03:15:34 -08001303 nmaps = ARRAY_SIZE(mval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if ((error = xfs_bmapi(tp, ip, 0, XFS_B_TO_FSB(mp, size),
1305 XFS_BMAPI_METADATA, &first_block, 0, mval, &nmaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001306 &free_list, NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 goto error0;
1308 /*
1309 * Invalidate the block(s).
1310 */
1311 for (i = 0; i < nmaps; i++) {
1312 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
1313 XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
1314 XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
1315 xfs_trans_binval(tp, bp);
1316 }
1317 /*
1318 * Unmap the dead block(s) to the free_list.
1319 */
1320 if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001321 &first_block, &free_list, NULL, &done)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 goto error1;
1323 ASSERT(done);
1324 /*
1325 * Commit the first transaction. This logs the EFI and the inode.
1326 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001327 if ((error = xfs_bmap_finish(&tp, &free_list, &committed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 goto error1;
1329 /*
1330 * The transaction must have been committed, since there were
1331 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
1332 * The new tp has the extent freeing and EFDs.
1333 */
1334 ASSERT(committed);
1335 /*
1336 * The first xact was committed, so add the inode to the new one.
1337 * Mark it dirty so it will be logged and moved forward in the log as
1338 * part of every commit.
1339 */
1340 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1341 xfs_trans_ihold(tp, ip);
1342 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1343 /*
1344 * Get a new, empty transaction to return to our caller.
1345 */
1346 ntp = xfs_trans_dup(tp);
1347 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001348 * Commit the transaction containing extent freeing and EFDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 * If we get an error on the commit here or on the reserve below,
1350 * we need to unlock the inode since the new transaction doesn't
1351 * have the inode attached.
1352 */
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001353 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 tp = ntp;
1355 if (error) {
1356 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1357 goto error0;
1358 }
1359 /*
1360 * Remove the memory for extent descriptions (just bookkeeping).
1361 */
1362 if (ip->i_df.if_bytes)
1363 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
1364 ASSERT(ip->i_df.if_bytes == 0);
1365 /*
1366 * Put an itruncate log reservation in the new transaction
1367 * for our caller.
1368 */
1369 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
1370 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
1371 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1372 goto error0;
1373 }
1374 /*
1375 * Return with the inode locked but not joined to the transaction.
1376 */
1377 *tpp = tp;
1378 return 0;
1379
1380 error1:
1381 xfs_bmap_cancel(&free_list);
1382 error0:
1383 /*
1384 * Have to come here with the inode locked and either
1385 * (held and in the transaction) or (not in the transaction).
1386 * If the inode isn't held then cancel would iput it, but
1387 * that's wrong since this is inactive and the vnode ref
1388 * count is 0 already.
1389 * Cancel won't do anything to the inode if held, but it still
1390 * needs to be locked until the cancel is done, if it was
1391 * joined to the transaction.
1392 */
1393 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1394 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1395 *tpp = NULL;
1396 return error;
1397
1398}
1399
1400STATIC int
1401xfs_inactive_symlink_local(
1402 xfs_inode_t *ip,
1403 xfs_trans_t **tpp)
1404{
1405 int error;
1406
1407 ASSERT(ip->i_d.di_size <= XFS_IFORK_DSIZE(ip));
1408 /*
1409 * We're freeing a symlink which fit into
1410 * the inode. Just free the memory used
1411 * to hold the old symlink.
1412 */
1413 error = xfs_trans_reserve(*tpp, 0,
1414 XFS_ITRUNCATE_LOG_RES(ip->i_mount),
1415 0, XFS_TRANS_PERM_LOG_RES,
1416 XFS_ITRUNCATE_LOG_COUNT);
1417
1418 if (error) {
1419 xfs_trans_cancel(*tpp, 0);
1420 *tpp = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +01001421 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
1423 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1424
1425 /*
1426 * Zero length symlinks _can_ exist.
1427 */
1428 if (ip->i_df.if_bytes > 0) {
1429 xfs_idata_realloc(ip,
1430 -(ip->i_df.if_bytes),
1431 XFS_DATA_FORK);
1432 ASSERT(ip->i_df.if_bytes == 0);
1433 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001434 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435}
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437STATIC int
1438xfs_inactive_attrs(
1439 xfs_inode_t *ip,
1440 xfs_trans_t **tpp)
1441{
1442 xfs_trans_t *tp;
1443 int error;
1444 xfs_mount_t *mp;
1445
1446 ASSERT(ismrlocked(&ip->i_iolock, MR_UPDATE));
1447 tp = *tpp;
1448 mp = ip->i_mount;
1449 ASSERT(ip->i_d.di_forkoff != 0);
David Chinnere5720ee2008-04-10 12:21:18 +10001450 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 xfs_iunlock(ip, XFS_ILOCK_EXCL);
David Chinnere5720ee2008-04-10 12:21:18 +10001452 if (error)
1453 goto error_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 error = xfs_attr_inactive(ip);
David Chinnere5720ee2008-04-10 12:21:18 +10001456 if (error)
1457 goto error_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1460 error = xfs_trans_reserve(tp, 0,
1461 XFS_IFREE_LOG_RES(mp),
1462 0, XFS_TRANS_PERM_LOG_RES,
1463 XFS_INACTIVE_LOG_COUNT);
David Chinnere5720ee2008-04-10 12:21:18 +10001464 if (error)
1465 goto error_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 xfs_ilock(ip, XFS_ILOCK_EXCL);
1468 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1469 xfs_trans_ihold(tp, ip);
1470 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1471
1472 ASSERT(ip->i_d.di_anextents == 0);
1473
1474 *tpp = tp;
Jesper Juhl014c2542006-01-15 02:37:08 +01001475 return 0;
David Chinnere5720ee2008-04-10 12:21:18 +10001476
1477error_cancel:
1478 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1479 xfs_trans_cancel(tp, 0);
1480error_unlock:
1481 *tpp = NULL;
1482 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1483 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
Christoph Hellwig993386c2007-08-28 16:12:30 +10001486int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487xfs_release(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001488 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001490 bhv_vnode_t *vp = XFS_ITOV(ip);
1491 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 int error;
1493
Nathan Scott7d4fb402006-06-09 15:27:16 +10001494 if (!VN_ISREG(vp) || (ip->i_d.di_mode == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001498 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 return 0;
1500
David Chinner2a82b8b2007-07-11 11:09:12 +10001501 if (!XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001502 int truncated;
1503
David Chinner2a82b8b2007-07-11 11:09:12 +10001504 /*
1505 * If we are using filestreams, and we have an unlinked
1506 * file that we are processing the last close on, then nothing
1507 * will be able to reopen and write to this file. Purge this
1508 * inode from the filestreams cache so that it doesn't delay
1509 * teardown of the inode.
1510 */
1511 if ((ip->i_d.di_nlink == 0) && xfs_inode_is_filestream(ip))
1512 xfs_filestream_deassociate(ip);
1513
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +10001514 /*
1515 * If we previously truncated this file and removed old data
1516 * in the process, we want to initiate "early" writeout on
1517 * the last close. This is an attempt to combat the notorious
1518 * NULL files problem which is particularly noticable from a
1519 * truncate down, buffered (re-)write (delalloc), followed by
1520 * a crash. What we are effectively doing here is
1521 * significantly reducing the time window where we'd otherwise
1522 * be exposed to that problem.
1523 */
Christoph Hellwig09262b42007-08-29 11:44:50 +10001524 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001525 if (truncated && VN_DIRTY(vp) && ip->i_delayed_blks > 0)
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001526 xfs_flush_pages(ip, 0, -1, XFS_B_ASYNC, FI_NONE);
Christoph Hellwigfbf3ce82007-06-28 16:46:47 +10001527 }
1528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 if (ip->i_d.di_nlink != 0) {
1530 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001531 ((ip->i_size > 0) || (VN_CACHED(vp) > 0 ||
Yingping Lu68bdb6e2006-01-11 15:38:31 +11001532 ip->i_delayed_blks > 0)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
Nathan Scottdd9f4382006-01-11 15:28:28 +11001534 (!(ip->i_d.di_flags &
1535 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)))) {
David Chinner92dfe8d2007-05-24 15:22:19 +10001536 error = xfs_free_eofblocks(mp, ip, XFS_FREE_EOF_LOCK);
1537 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001538 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 }
1540 }
1541
1542 return 0;
1543}
1544
1545/*
1546 * xfs_inactive
1547 *
1548 * This is called when the vnode reference count for the vnode
1549 * goes to zero. If the file has been unlinked, then it must
1550 * now be truncated. Also, we clear all of the read-ahead state
1551 * kept for the inode here since the file is now closed.
1552 */
Christoph Hellwig993386c2007-08-28 16:12:30 +10001553int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554xfs_inactive(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001555 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001557 bhv_vnode_t *vp = XFS_ITOV(ip);
Nathan Scott67fcaa72006-06-09 17:00:52 +10001558 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 xfs_fsblock_t first_block;
1560 int committed;
1561 xfs_trans_t *tp;
1562 xfs_mount_t *mp;
1563 int error;
1564 int truncate;
1565
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001566 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 /*
1569 * If the inode is already free, then there can be nothing
1570 * to clean up here.
1571 */
1572 if (ip->i_d.di_mode == 0 || VN_BAD(vp)) {
1573 ASSERT(ip->i_df.if_real_bytes == 0);
1574 ASSERT(ip->i_df.if_broot_bytes == 0);
1575 return VN_INACTIVE_CACHE;
1576 }
1577
1578 /*
1579 * Only do a truncate if it's a regular file with
1580 * some actual space in it. It's OK to look at the
1581 * inode's fields without the lock because we're the
1582 * only one with a reference to the inode.
1583 */
1584 truncate = ((ip->i_d.di_nlink == 0) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001585 ((ip->i_d.di_size != 0) || (ip->i_size != 0) ||
1586 (ip->i_d.di_nextents > 0) || (ip->i_delayed_blks > 0)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 ((ip->i_d.di_mode & S_IFMT) == S_IFREG));
1588
1589 mp = ip->i_mount;
1590
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11001591 if (ip->i_d.di_nlink == 0 && DM_EVENT_ENABLED(ip, DM_EVENT_DESTROY))
1592 XFS_SEND_DESTROY(mp, ip, DM_RIGHT_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 error = 0;
1595
1596 /* If this is a read-only mount, don't do this (would generate I/O) */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001597 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 goto out;
1599
1600 if (ip->i_d.di_nlink != 0) {
1601 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001602 ((ip->i_size > 0) || (VN_CACHED(vp) > 0 ||
Yingping Lu68bdb6e2006-01-11 15:38:31 +11001603 ip->i_delayed_blks > 0)) &&
Nathan Scottdd9f4382006-01-11 15:28:28 +11001604 (ip->i_df.if_flags & XFS_IFEXTENTS) &&
1605 (!(ip->i_d.di_flags &
1606 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)) ||
1607 (ip->i_delayed_blks != 0)))) {
David Chinner92dfe8d2007-05-24 15:22:19 +10001608 error = xfs_free_eofblocks(mp, ip, XFS_FREE_EOF_LOCK);
1609 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001610 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 }
1612 goto out;
1613 }
1614
1615 ASSERT(ip->i_d.di_nlink == 0);
1616
1617 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001618 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1621 if (truncate) {
1622 /*
1623 * Do the xfs_itruncate_start() call before
1624 * reserving any log space because itruncate_start
1625 * will call into the buffer cache and we can't
1626 * do that within a transaction.
1627 */
1628 xfs_ilock(ip, XFS_IOLOCK_EXCL);
1629
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001630 error = xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE, 0);
1631 if (error) {
Jesper Juhl87ae3c22007-06-28 16:43:14 +10001632 xfs_trans_cancel(tp, 0);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10001633 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1634 return VN_INACTIVE_CACHE;
1635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 error = xfs_trans_reserve(tp, 0,
1638 XFS_ITRUNCATE_LOG_RES(mp),
1639 0, XFS_TRANS_PERM_LOG_RES,
1640 XFS_ITRUNCATE_LOG_COUNT);
1641 if (error) {
1642 /* Don't call itruncate_cleanup */
1643 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1644 xfs_trans_cancel(tp, 0);
1645 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001646 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 }
1648
1649 xfs_ilock(ip, XFS_ILOCK_EXCL);
1650 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1651 xfs_trans_ihold(tp, ip);
1652
1653 /*
1654 * normally, we have to run xfs_itruncate_finish sync.
1655 * But if filesystem is wsync and we're in the inactive
1656 * path, then we know that nlink == 0, and that the
1657 * xaction that made nlink == 0 is permanently committed
1658 * since xfs_remove runs as a synchronous transaction.
1659 */
1660 error = xfs_itruncate_finish(&tp, ip, 0, XFS_DATA_FORK,
1661 (!(mp->m_flags & XFS_MOUNT_WSYNC) ? 1 : 0));
1662
1663 if (error) {
1664 xfs_trans_cancel(tp,
1665 XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1666 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001667 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 }
1669 } else if ((ip->i_d.di_mode & S_IFMT) == S_IFLNK) {
1670
1671 /*
1672 * If we get an error while cleaning up a
1673 * symlink we bail out.
1674 */
1675 error = (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) ?
1676 xfs_inactive_symlink_rmt(ip, &tp) :
1677 xfs_inactive_symlink_local(ip, &tp);
1678
1679 if (error) {
1680 ASSERT(tp == NULL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001681 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 }
1683
1684 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1685 xfs_trans_ihold(tp, ip);
1686 } else {
1687 error = xfs_trans_reserve(tp, 0,
1688 XFS_IFREE_LOG_RES(mp),
1689 0, XFS_TRANS_PERM_LOG_RES,
1690 XFS_INACTIVE_LOG_COUNT);
1691 if (error) {
1692 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1693 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001694 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 }
1696
1697 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1698 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1699 xfs_trans_ihold(tp, ip);
1700 }
1701
1702 /*
1703 * If there are attributes associated with the file
1704 * then blow them away now. The code calls a routine
1705 * that recursively deconstructs the attribute fork.
1706 * We need to just commit the current transaction
1707 * because we can't use it for xfs_attr_inactive().
1708 */
1709 if (ip->i_d.di_anextents > 0) {
1710 error = xfs_inactive_attrs(ip, &tp);
1711 /*
1712 * If we got an error, the transaction is already
1713 * cancelled, and the inode is unlocked. Just get out.
1714 */
1715 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001716 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 } else if (ip->i_afp) {
1718 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1719 }
1720
1721 /*
1722 * Free the inode.
1723 */
1724 XFS_BMAP_INIT(&free_list, &first_block);
1725 error = xfs_ifree(tp, ip, &free_list);
1726 if (error) {
1727 /*
1728 * If we fail to free the inode, shut down. The cancel
1729 * might do that, we need to make sure. Otherwise the
1730 * inode might be lost for a long time or forever.
1731 */
1732 if (!XFS_FORCED_SHUTDOWN(mp)) {
1733 cmn_err(CE_NOTE,
1734 "xfs_inactive: xfs_ifree() returned an error = %d on %s",
1735 error, mp->m_fsname);
Nathan Scott7d04a332006-06-09 14:58:38 +10001736 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
1738 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
1739 } else {
1740 /*
1741 * Credit the quota account(s). The inode is gone.
1742 */
1743 XFS_TRANS_MOD_DQUOT_BYINO(mp, tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1744
1745 /*
1746 * Just ignore errors at this point. There is
1747 * nothing we can do except to try to keep going.
1748 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001749 (void) xfs_bmap_finish(&tp, &free_list, &committed);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001750 (void) xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
1752 /*
1753 * Release the dquots held by inode, if any.
1754 */
1755 XFS_QM_DQDETACH(mp, ip);
1756
1757 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1758
1759 out:
1760 return VN_INACTIVE_CACHE;
1761}
1762
1763
Christoph Hellwig993386c2007-08-28 16:12:30 +10001764int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765xfs_lookup(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001766 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001767 struct xfs_name *name,
Christoph Hellwigef1f5e72008-03-06 13:46:25 +11001768 xfs_inode_t **ipp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769{
Christoph Hellwig993386c2007-08-28 16:12:30 +10001770 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 xfs_ino_t e_inum;
1772 int error;
1773 uint lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001775 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
1778 return XFS_ERROR(EIO);
1779
1780 lock_mode = xfs_ilock_map_shared(dp);
Barry Naujok556b8b12008-04-10 12:22:07 +10001781 error = xfs_dir_lookup_int(dp, lock_mode, name, &e_inum, &ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 if (!error) {
Christoph Hellwigef1f5e72008-03-06 13:46:25 +11001783 *ipp = ip;
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001784 xfs_itrace_ref(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
1786 xfs_iunlock_map_shared(dp, lock_mode);
1787 return error;
1788}
1789
Christoph Hellwig993386c2007-08-28 16:12:30 +10001790int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791xfs_create(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001792 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10001793 struct xfs_name *name,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001794 mode_t mode,
1795 xfs_dev_t rdev,
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001796 xfs_inode_t **ipp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 cred_t *credp)
1798{
Barry Naujok556b8b12008-04-10 12:22:07 +10001799 xfs_mount_t *mp = dp->i_mount;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001800 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 xfs_trans_t *tp;
Barry Naujok556b8b12008-04-10 12:22:07 +10001802 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 xfs_bmap_free_t free_list;
1804 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10001805 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 int dm_event_sent = 0;
1807 uint cancel_flags;
1808 int committed;
1809 xfs_prid_t prid;
1810 struct xfs_dquot *udqp, *gdqp;
1811 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001813 ASSERT(!*ipp);
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001814 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Christoph Hellwigeb9df392007-08-16 18:42:07 +10001816 if (DM_EVENT_ENABLED(dp, DM_EVENT_CREATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11001818 dp, DM_RIGHT_NULL, NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10001819 DM_RIGHT_NULL, name->name, NULL,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001820 mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 if (error)
1823 return error;
1824 dm_event_sent = 1;
1825 }
1826
1827 if (XFS_FORCED_SHUTDOWN(mp))
1828 return XFS_ERROR(EIO);
1829
1830 /* Return through std_return after this point. */
1831
1832 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10001833 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1834 prid = dp->i_d.di_projid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 else
1836 prid = (xfs_prid_t)dfltprid;
1837
1838 /*
1839 * Make sure that we have allocated dquot(s) on disk.
1840 */
1841 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001842 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 XFS_QMOPT_QUOTALL|XFS_QMOPT_INHERIT, &udqp, &gdqp);
1844 if (error)
1845 goto std_return;
1846
1847 ip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
1850 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10001851 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 /*
1853 * Initially assume that the file does not exist and
1854 * reserve the resources for that case. If that is not
1855 * the case we'll drop the one we have and get a more
1856 * appropriate transaction later.
1857 */
1858 error = xfs_trans_reserve(tp, resblks, XFS_CREATE_LOG_RES(mp), 0,
1859 XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT);
1860 if (error == ENOSPC) {
1861 resblks = 0;
1862 error = xfs_trans_reserve(tp, 0, XFS_CREATE_LOG_RES(mp), 0,
1863 XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT);
1864 }
1865 if (error) {
1866 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 goto error_return;
1868 }
1869
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10001870 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001871 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873 XFS_BMAP_INIT(&free_list, &first_block);
1874
1875 ASSERT(ip == NULL);
1876
1877 /*
1878 * Reserve disk quota and the inode.
1879 */
1880 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
1881 if (error)
1882 goto error_return;
1883
Barry Naujok556b8b12008-04-10 12:22:07 +10001884 error = xfs_dir_canenter(tp, dp, name, resblks);
1885 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 goto error_return;
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001887 error = xfs_dir_ialloc(&tp, dp, mode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 rdev, credp, prid, resblks > 0,
1889 &ip, &committed);
1890 if (error) {
1891 if (error == ENOSPC)
1892 goto error_return;
1893 goto abort_return;
1894 }
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001895 xfs_itrace_ref(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897 /*
1898 * At this point, we've gotten a newly allocated inode.
1899 * It is locked (and joined to the transaction).
1900 */
1901
1902 ASSERT(ismrlocked (&ip->i_lock, MR_UPDATE));
1903
1904 /*
Christoph Hellwig993386c2007-08-28 16:12:30 +10001905 * Now we join the directory inode to the transaction. We do not do it
1906 * earlier because xfs_dir_ialloc might commit the previous transaction
1907 * (and release all the locks). An error from here on will result in
1908 * the transaction cancel unlocking dp so don't do it explicitly in the
1909 * error path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 */
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001911 IHOLD(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10001913 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Barry Naujok556b8b12008-04-10 12:22:07 +10001915 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001916 &first_block, &free_list, resblks ?
1917 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 if (error) {
1919 ASSERT(error != ENOSPC);
1920 goto abort_return;
1921 }
1922 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1923 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1924
1925 /*
1926 * If this is a synchronous mount, make sure that the
1927 * create transaction goes to disk before returning to
1928 * the user.
1929 */
1930 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1931 xfs_trans_set_sync(tp);
1932 }
1933
1934 dp->i_gen++;
1935
1936 /*
1937 * Attach the dquot(s) to the inodes and modify them incore.
1938 * These ids of the inode couldn't have changed since the new
1939 * inode has been locked ever since it was created.
1940 */
1941 XFS_QM_DQVOPCREATE(mp, tp, ip, udqp, gdqp);
1942
1943 /*
1944 * xfs_trans_commit normally decrements the vnode ref count
1945 * when it unlocks the inode. Since we want to return the
1946 * vnode to the caller, we bump the vnode ref count now.
1947 */
1948 IHOLD(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001950 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 if (error) {
1952 xfs_bmap_cancel(&free_list);
1953 goto abort_rele;
1954 }
1955
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001956 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if (error) {
1958 IRELE(ip);
1959 tp = NULL;
1960 goto error_return;
1961 }
1962
1963 XFS_QM_DQRELE(mp, udqp);
1964 XFS_QM_DQRELE(mp, gdqp);
1965
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001966 *ipp = ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 /* Fallthrough to std_return with error = 0 */
1969
1970std_return:
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001971 if ((*ipp || (error != 0 && dm_event_sent != 0)) &&
Christoph Hellwig993386c2007-08-28 16:12:30 +10001972 DM_EVENT_ENABLED(dp, DM_EVENT_POSTCREATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11001974 dp, DM_RIGHT_NULL,
Christoph Hellwig979ebab2008-03-06 13:46:05 +11001975 *ipp ? ip : NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10001976 DM_RIGHT_NULL, name->name, NULL,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10001977 mode, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 }
1979 return error;
1980
1981 abort_return:
1982 cancel_flags |= XFS_TRANS_ABORT;
1983 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Jesper Juhl014c2542006-01-15 02:37:08 +01001985 error_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 if (tp != NULL)
1987 xfs_trans_cancel(tp, cancel_flags);
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 XFS_QM_DQRELE(mp, udqp);
1990 XFS_QM_DQRELE(mp, gdqp);
1991
Christoph Hellwig993386c2007-08-28 16:12:30 +10001992 if (unlock_dp_on_error)
1993 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 goto std_return;
1996
1997 abort_rele:
1998 /*
1999 * Wait until after the current transaction is aborted to
2000 * release the inode. This prevents recursive transactions
2001 * and deadlocks from xfs_inactive.
2002 */
2003 cancel_flags |= XFS_TRANS_ABORT;
2004 xfs_trans_cancel(tp, cancel_flags);
2005 IRELE(ip);
2006
2007 XFS_QM_DQRELE(mp, udqp);
2008 XFS_QM_DQRELE(mp, gdqp);
2009
2010 goto std_return;
2011}
2012
2013#ifdef DEBUG
2014/*
2015 * Some counters to see if (and how often) we are hitting some deadlock
2016 * prevention code paths.
2017 */
2018
2019int xfs_rm_locks;
2020int xfs_rm_lock_delays;
2021int xfs_rm_attempts;
2022#endif
2023
2024/*
2025 * The following routine will lock the inodes associated with the
2026 * directory and the named entry in the directory. The locks are
2027 * acquired in increasing inode number.
2028 *
2029 * If the entry is "..", then only the directory is locked. The
2030 * vnode ref count will still include that from the .. entry in
2031 * this case.
2032 *
2033 * There is a deadlock we need to worry about. If the locked directory is
2034 * in the AIL, it might be blocking up the log. The next inode we lock
2035 * could be already locked by another thread waiting for log space (e.g
2036 * a permanent log reservation with a long running transaction (see
2037 * xfs_itruncate_finish)). To solve this, we must check if the directory
2038 * is in the ail and use lock_nowait. If we can't lock, we need to
2039 * drop the inode lock on the directory and try again. xfs_iunlock will
2040 * potentially push the tail if we were holding up the log.
2041 */
2042STATIC int
2043xfs_lock_dir_and_entry(
2044 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 xfs_inode_t *ip) /* inode of entry 'name' */
2046{
2047 int attempts;
2048 xfs_ino_t e_inum;
2049 xfs_inode_t *ips[2];
2050 xfs_log_item_t *lp;
2051
2052#ifdef DEBUG
2053 xfs_rm_locks++;
2054#endif
2055 attempts = 0;
2056
2057again:
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002058 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060 e_inum = ip->i_ino;
2061
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002062 xfs_itrace_ref(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064 /*
2065 * We want to lock in increasing inum. Since we've already
2066 * acquired the lock on the directory, we may need to release
2067 * if if the inum of the entry turns out to be less.
2068 */
2069 if (e_inum > dp->i_ino) {
2070 /*
2071 * We are already in the right order, so just
2072 * lock on the inode of the entry.
2073 * We need to use nowait if dp is in the AIL.
2074 */
2075
2076 lp = (xfs_log_item_t *)dp->i_itemp;
2077 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
2078 if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
2079 attempts++;
2080#ifdef DEBUG
2081 xfs_rm_attempts++;
2082#endif
2083
2084 /*
2085 * Unlock dp and try again.
2086 * xfs_iunlock will try to push the tail
2087 * if the inode is in the AIL.
2088 */
2089
2090 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2091
2092 if ((attempts % 5) == 0) {
2093 delay(1); /* Don't just spin the CPU */
2094#ifdef DEBUG
2095 xfs_rm_lock_delays++;
2096#endif
2097 }
2098 goto again;
2099 }
2100 } else {
2101 xfs_ilock(ip, XFS_ILOCK_EXCL);
2102 }
2103 } else if (e_inum < dp->i_ino) {
2104 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2105
2106 ips[0] = ip;
2107 ips[1] = dp;
2108 xfs_lock_inodes(ips, 2, 0, XFS_ILOCK_EXCL);
2109 }
2110 /* else e_inum == dp->i_ino */
2111 /* This can happen if we're asked to lock /x/..
2112 * the entry is "..", which is also the parent directory.
2113 */
2114
2115 return 0;
2116}
2117
2118#ifdef DEBUG
2119int xfs_locked_n;
2120int xfs_small_retries;
2121int xfs_middle_retries;
2122int xfs_lots_retries;
2123int xfs_lock_delays;
2124#endif
2125
2126/*
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002127 * Bump the subclass so xfs_lock_inodes() acquires each lock with
2128 * a different value
2129 */
2130static inline int
2131xfs_lock_inumorder(int lock_mode, int subclass)
2132{
2133 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +10002134 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002135 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
David Chinner0f1145c2007-06-29 17:26:09 +10002136 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002137
2138 return lock_mode;
2139}
2140
2141/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 * The following routine will lock n inodes in exclusive mode.
2143 * We assume the caller calls us with the inodes in i_ino order.
2144 *
2145 * We need to detect deadlock where an inode that we lock
2146 * is in the AIL and we start waiting for another inode that is locked
2147 * by a thread in a long running transaction (such as truncate). This can
2148 * result in deadlock since the long running trans might need to wait
2149 * for the inode we just locked in order to push the tail and free space
2150 * in the log.
2151 */
2152void
2153xfs_lock_inodes(
2154 xfs_inode_t **ips,
2155 int inodes,
2156 int first_locked,
2157 uint lock_mode)
2158{
2159 int attempts = 0, i, j, try_lock;
2160 xfs_log_item_t *lp;
2161
2162 ASSERT(ips && (inodes >= 2)); /* we need at least two */
2163
2164 if (first_locked) {
2165 try_lock = 1;
2166 i = 1;
2167 } else {
2168 try_lock = 0;
2169 i = 0;
2170 }
2171
2172again:
2173 for (; i < inodes; i++) {
2174 ASSERT(ips[i]);
2175
2176 if (i && (ips[i] == ips[i-1])) /* Already locked */
2177 continue;
2178
2179 /*
2180 * If try_lock is not set yet, make sure all locked inodes
2181 * are not in the AIL.
2182 * If any are, set try_lock to be used later.
2183 */
2184
2185 if (!try_lock) {
2186 for (j = (i - 1); j >= 0 && !try_lock; j--) {
2187 lp = (xfs_log_item_t *)ips[j]->i_itemp;
2188 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
2189 try_lock++;
2190 }
2191 }
2192 }
2193
2194 /*
2195 * If any of the previous locks we have locked is in the AIL,
2196 * we must TRY to get the second and subsequent locks. If
2197 * we can't get any, we must release all we have
2198 * and try again.
2199 */
2200
2201 if (try_lock) {
2202 /* try_lock must be 0 if i is 0. */
2203 /*
2204 * try_lock means we have an inode locked
2205 * that is in the AIL.
2206 */
2207 ASSERT(i != 0);
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002208 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 attempts++;
2210
2211 /*
2212 * Unlock all previous guys and try again.
2213 * xfs_iunlock will try to push the tail
2214 * if the inode is in the AIL.
2215 */
2216
2217 for(j = i - 1; j >= 0; j--) {
2218
2219 /*
2220 * Check to see if we've already
2221 * unlocked this one.
2222 * Not the first one going back,
2223 * and the inode ptr is the same.
2224 */
2225 if ((j != (i - 1)) && ips[j] ==
2226 ips[j+1])
2227 continue;
2228
2229 xfs_iunlock(ips[j], lock_mode);
2230 }
2231
2232 if ((attempts % 5) == 0) {
2233 delay(1); /* Don't just spin the CPU */
2234#ifdef DEBUG
2235 xfs_lock_delays++;
2236#endif
2237 }
2238 i = 0;
2239 try_lock = 0;
2240 goto again;
2241 }
2242 } else {
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002243 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 }
2245 }
2246
2247#ifdef DEBUG
2248 if (attempts) {
2249 if (attempts < 5) xfs_small_retries++;
2250 else if (attempts < 100) xfs_middle_retries++;
2251 else xfs_lots_retries++;
2252 } else {
2253 xfs_locked_n++;
2254 }
2255#endif
2256}
2257
2258#ifdef DEBUG
2259#define REMOVE_DEBUG_TRACE(x) {remove_which_error_return = (x);}
2260int remove_which_error_return = 0;
2261#else /* ! DEBUG */
2262#define REMOVE_DEBUG_TRACE(x)
2263#endif /* ! DEBUG */
2264
Christoph Hellwig993386c2007-08-28 16:12:30 +10002265int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266xfs_remove(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002267 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10002268 struct xfs_name *name,
2269 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002271 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 xfs_trans_t *tp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 int error = 0;
2274 xfs_bmap_free_t free_list;
2275 xfs_fsblock_t first_block;
2276 int cancel_flags;
2277 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 int link_zero;
2279 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002281 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 if (XFS_FORCED_SHUTDOWN(mp))
2284 return XFS_ERROR(EIO);
2285
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002286 if (DM_EVENT_ENABLED(dp, DM_EVENT_REMOVE)) {
Barry Naujok556b8b12008-04-10 12:22:07 +10002287 error = XFS_SEND_NAMESP(mp, DM_EVENT_REMOVE, dp, DM_RIGHT_NULL,
2288 NULL, DM_RIGHT_NULL, name->name, NULL,
2289 ip->i_d.di_mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 if (error)
2291 return error;
2292 }
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 /*
2295 * We need to get a reference to ip before we get our log
2296 * reservation. The reason for this is that we cannot call
2297 * xfs_iget for an inode for which we do not have a reference
2298 * once we've acquired a log reservation. This is because the
2299 * inode we are trying to get might be in xfs_inactive going
2300 * for a log reservation. Since we'll have to wait for the
2301 * inactive code to complete before returning from xfs_iget,
2302 * we need to make sure that we don't have log space reserved
Nathan Scottc41564b2006-03-29 08:55:14 +10002303 * when we call xfs_iget. Instead we get an unlocked reference
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 * to the inode before getting our log reservation.
2305 */
Christoph Hellwig43973962008-03-06 13:44:50 +11002306 IHOLD(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002308 xfs_itrace_entry(ip);
2309 xfs_itrace_ref(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311 error = XFS_QM_DQATTACH(mp, dp, 0);
2312 if (!error && dp != ip)
2313 error = XFS_QM_DQATTACH(mp, ip, 0);
2314 if (error) {
2315 REMOVE_DEBUG_TRACE(__LINE__);
2316 IRELE(ip);
2317 goto std_return;
2318 }
2319
2320 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
2321 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2322 /*
2323 * We try to get the real space reservation first,
2324 * allowing for directory btree deletion(s) implying
2325 * possible bmap insert(s). If we can't get the space
2326 * reservation then we use 0 instead, and avoid the bmap
2327 * btree insert(s) in the directory code by, if the bmap
2328 * insert tries to happen, instead trimming the LAST
2329 * block from the directory.
2330 */
2331 resblks = XFS_REMOVE_SPACE_RES(mp);
2332 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
2333 XFS_TRANS_PERM_LOG_RES, XFS_REMOVE_LOG_COUNT);
2334 if (error == ENOSPC) {
2335 resblks = 0;
2336 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
2337 XFS_TRANS_PERM_LOG_RES, XFS_REMOVE_LOG_COUNT);
2338 }
2339 if (error) {
2340 ASSERT(error != ENOSPC);
2341 REMOVE_DEBUG_TRACE(__LINE__);
2342 xfs_trans_cancel(tp, 0);
2343 IRELE(ip);
2344 return error;
2345 }
2346
Eric Sandeene9ed9d22007-05-08 13:48:56 +10002347 error = xfs_lock_dir_and_entry(dp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 if (error) {
2349 REMOVE_DEBUG_TRACE(__LINE__);
2350 xfs_trans_cancel(tp, cancel_flags);
2351 IRELE(ip);
2352 goto std_return;
2353 }
2354
2355 /*
2356 * At this point, we've gotten both the directory and the entry
2357 * inodes locked.
2358 */
2359 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2360 if (dp != ip) {
2361 /*
2362 * Increment vnode ref count only in this case since
2363 * there's an extra vnode reference in the case where
2364 * dp == ip.
2365 */
2366 IHOLD(dp);
2367 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2368 }
2369
2370 /*
2371 * Entry must exist since we did a lookup in xfs_lock_dir_and_entry.
2372 */
2373 XFS_BMAP_INIT(&free_list, &first_block);
Barry Naujok556b8b12008-04-10 12:22:07 +10002374 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002375 &first_block, &free_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 if (error) {
2377 ASSERT(error != ENOENT);
2378 REMOVE_DEBUG_TRACE(__LINE__);
2379 goto error1;
2380 }
2381 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2382
2383 dp->i_gen++;
2384 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2385
2386 error = xfs_droplink(tp, ip);
2387 if (error) {
2388 REMOVE_DEBUG_TRACE(__LINE__);
2389 goto error1;
2390 }
2391
2392 /* Determine if this is the last link while
2393 * we are in the transaction.
2394 */
2395 link_zero = (ip)->i_d.di_nlink==0;
2396
2397 /*
2398 * Take an extra ref on the inode so that it doesn't
2399 * go to xfs_inactive() from within the commit.
2400 */
2401 IHOLD(ip);
2402
2403 /*
2404 * If this is a synchronous mount, make sure that the
2405 * remove transaction goes to disk before returning to
2406 * the user.
2407 */
2408 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2409 xfs_trans_set_sync(tp);
2410 }
2411
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002412 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 if (error) {
2414 REMOVE_DEBUG_TRACE(__LINE__);
2415 goto error_rele;
2416 }
2417
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002418 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 if (error) {
2420 IRELE(ip);
2421 goto std_return;
2422 }
2423
2424 /*
David Chinner2a82b8b2007-07-11 11:09:12 +10002425 * If we are using filestreams, kill the stream association.
2426 * If the file is still open it may get a new one but that
2427 * will get killed on last close in xfs_close() so we don't
2428 * have to worry about that.
2429 */
2430 if (link_zero && xfs_inode_is_filestream(ip))
2431 xfs_filestream_deassociate(ip);
2432
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002433 xfs_itrace_exit(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 IRELE(ip);
2435
2436/* Fall through to std_return with error = 0 */
2437 std_return:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002438 if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTREMOVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTREMOVE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002440 dp, DM_RIGHT_NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 NULL, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002442 name->name, NULL, ip->i_d.di_mode, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 }
2444 return error;
2445
2446 error1:
2447 xfs_bmap_cancel(&free_list);
2448 cancel_flags |= XFS_TRANS_ABORT;
2449 xfs_trans_cancel(tp, cancel_flags);
2450 goto std_return;
2451
2452 error_rele:
2453 /*
2454 * In this case make sure to not release the inode until after
2455 * the current transaction is aborted. Releasing it beforehand
2456 * can cause us to go to xfs_inactive and start a recursive
2457 * transaction which can easily deadlock with the current one.
2458 */
2459 xfs_bmap_cancel(&free_list);
2460 cancel_flags |= XFS_TRANS_ABORT;
2461 xfs_trans_cancel(tp, cancel_flags);
2462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 IRELE(ip);
2464
2465 goto std_return;
2466}
2467
Christoph Hellwig993386c2007-08-28 16:12:30 +10002468int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469xfs_link(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002470 xfs_inode_t *tdp,
Christoph Hellwiga3da7892008-03-06 13:46:12 +11002471 xfs_inode_t *sip,
Barry Naujok556b8b12008-04-10 12:22:07 +10002472 struct xfs_name *target_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002474 xfs_mount_t *mp = tdp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 xfs_inode_t *ips[2];
2477 int error;
2478 xfs_bmap_free_t free_list;
2479 xfs_fsblock_t first_block;
2480 int cancel_flags;
2481 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 int resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002484 xfs_itrace_entry(tdp);
Christoph Hellwiga3da7892008-03-06 13:46:12 +11002485 xfs_itrace_entry(sip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Christoph Hellwiga3da7892008-03-06 13:46:12 +11002487 ASSERT(!S_ISDIR(sip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 if (XFS_FORCED_SHUTDOWN(mp))
2490 return XFS_ERROR(EIO);
2491
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002492 if (DM_EVENT_ENABLED(tdp, DM_EVENT_LINK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 error = XFS_SEND_NAMESP(mp, DM_EVENT_LINK,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002494 tdp, DM_RIGHT_NULL,
2495 sip, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002496 target_name->name, NULL, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 if (error)
2498 return error;
2499 }
2500
2501 /* Return through std_return after this point. */
2502
2503 error = XFS_QM_DQATTACH(mp, sip, 0);
2504 if (!error && sip != tdp)
2505 error = XFS_QM_DQATTACH(mp, tdp, 0);
2506 if (error)
2507 goto std_return;
2508
2509 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
2510 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10002511 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
2513 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2514 if (error == ENOSPC) {
2515 resblks = 0;
2516 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
2517 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2518 }
2519 if (error) {
2520 cancel_flags = 0;
2521 goto error_return;
2522 }
2523
2524 if (sip->i_ino < tdp->i_ino) {
2525 ips[0] = sip;
2526 ips[1] = tdp;
2527 } else {
2528 ips[0] = tdp;
2529 ips[1] = sip;
2530 }
2531
2532 xfs_lock_inodes(ips, 2, 0, XFS_ILOCK_EXCL);
2533
2534 /*
2535 * Increment vnode ref counts since xfs_trans_commit &
2536 * xfs_trans_cancel will both unlock the inodes and
2537 * decrement the associated ref counts.
2538 */
Christoph Hellwiga3da7892008-03-06 13:46:12 +11002539 IHOLD(sip);
2540 IHOLD(tdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
2542 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
2543
2544 /*
2545 * If the source has too many links, we can't make any more to it.
2546 */
2547 if (sip->i_d.di_nlink >= XFS_MAXLINK) {
2548 error = XFS_ERROR(EMLINK);
2549 goto error_return;
2550 }
2551
Nathan Scott365ca832005-06-21 15:39:12 +10002552 /*
2553 * If we are using project inheritance, we only allow hard link
2554 * creation in our tree when the project IDs are the same; else
2555 * the tree quota mechanism could be circumvented.
2556 */
2557 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
2558 (tdp->i_d.di_projid != sip->i_d.di_projid))) {
Nathan Scottb1ecdda2006-05-08 19:51:42 +10002559 error = XFS_ERROR(EXDEV);
Nathan Scott365ca832005-06-21 15:39:12 +10002560 goto error_return;
2561 }
2562
Barry Naujok556b8b12008-04-10 12:22:07 +10002563 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
2564 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 goto error_return;
2566
2567 XFS_BMAP_INIT(&free_list, &first_block);
2568
Barry Naujok556b8b12008-04-10 12:22:07 +10002569 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
2570 &first_block, &free_list, resblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 if (error)
2572 goto abort_return;
2573 xfs_ichgtime(tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2574 tdp->i_gen++;
2575 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
2576
2577 error = xfs_bumplink(tp, sip);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002578 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
2581 /*
2582 * If this is a synchronous mount, make sure that the
2583 * link transaction goes to disk before returning to
2584 * the user.
2585 */
2586 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2587 xfs_trans_set_sync(tp);
2588 }
2589
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002590 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 if (error) {
2592 xfs_bmap_cancel(&free_list);
2593 goto abort_return;
2594 }
2595
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002596 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002597 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600 /* Fall through to std_return with error = 0. */
2601std_return:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002602 if (DM_EVENT_ENABLED(sip, DM_EVENT_POSTLINK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTLINK,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002604 tdp, DM_RIGHT_NULL,
2605 sip, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002606 target_name->name, NULL, 0, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 }
2608 return error;
2609
2610 abort_return:
2611 cancel_flags |= XFS_TRANS_ABORT;
2612 /* FALLTHROUGH */
Jesper Juhl014c2542006-01-15 02:37:08 +01002613
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 error_return:
2615 xfs_trans_cancel(tp, cancel_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 goto std_return;
2617}
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002618
2619
Christoph Hellwig993386c2007-08-28 16:12:30 +10002620int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621xfs_mkdir(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002622 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10002623 struct xfs_name *dir_name,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002624 mode_t mode,
Christoph Hellwig979ebab2008-03-06 13:46:05 +11002625 xfs_inode_t **ipp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 cred_t *credp)
2627{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002628 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 xfs_inode_t *cdp; /* inode of created dir */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 int cancel_flags;
2632 int error;
2633 int committed;
2634 xfs_bmap_free_t free_list;
2635 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10002636 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 boolean_t created = B_FALSE;
2638 int dm_event_sent = 0;
2639 xfs_prid_t prid;
2640 struct xfs_dquot *udqp, *gdqp;
2641 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
2643 if (XFS_FORCED_SHUTDOWN(mp))
2644 return XFS_ERROR(EIO);
2645
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 tp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002648 if (DM_EVENT_ENABLED(dp, DM_EVENT_CREATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002650 dp, DM_RIGHT_NULL, NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002651 DM_RIGHT_NULL, dir_name->name, NULL,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002652 mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 if (error)
2654 return error;
2655 dm_event_sent = 1;
2656 }
2657
2658 /* Return through std_return after this point. */
2659
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002660 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
2662 mp = dp->i_mount;
2663 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10002664 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
2665 prid = dp->i_d.di_projid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 else
2667 prid = (xfs_prid_t)dfltprid;
2668
2669 /*
2670 * Make sure that we have allocated dquot(s) on disk.
2671 */
2672 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002673 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
2675 if (error)
2676 goto std_return;
2677
2678 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
2679 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Barry Naujok556b8b12008-04-10 12:22:07 +10002680 resblks = XFS_MKDIR_SPACE_RES(mp, dir_name->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 error = xfs_trans_reserve(tp, resblks, XFS_MKDIR_LOG_RES(mp), 0,
2682 XFS_TRANS_PERM_LOG_RES, XFS_MKDIR_LOG_COUNT);
2683 if (error == ENOSPC) {
2684 resblks = 0;
2685 error = xfs_trans_reserve(tp, 0, XFS_MKDIR_LOG_RES(mp), 0,
2686 XFS_TRANS_PERM_LOG_RES,
2687 XFS_MKDIR_LOG_COUNT);
2688 }
2689 if (error) {
2690 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 goto error_return;
2692 }
2693
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10002694 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10002695 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
2697 /*
2698 * Check for directory link count overflow.
2699 */
2700 if (dp->i_d.di_nlink >= XFS_MAXLINK) {
2701 error = XFS_ERROR(EMLINK);
2702 goto error_return;
2703 }
2704
2705 /*
2706 * Reserve disk quota and the inode.
2707 */
2708 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
2709 if (error)
2710 goto error_return;
2711
Barry Naujok556b8b12008-04-10 12:22:07 +10002712 error = xfs_dir_canenter(tp, dp, dir_name, resblks);
2713 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 goto error_return;
2715 /*
2716 * create the directory inode.
2717 */
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002718 error = xfs_dir_ialloc(&tp, dp, mode, 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 0, credp, prid, resblks > 0,
2720 &cdp, NULL);
2721 if (error) {
2722 if (error == ENOSPC)
2723 goto error_return;
2724 goto abort_return;
2725 }
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002726 xfs_itrace_ref(cdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
2728 /*
2729 * Now we add the directory inode to the transaction.
2730 * We waited until now since xfs_dir_ialloc might start
2731 * a new transaction. Had we joined the transaction
Christoph Hellwig993386c2007-08-28 16:12:30 +10002732 * earlier, the locks might have gotten released. An error
2733 * from here on will result in the transaction cancel
2734 * unlocking dp so don't do it explicitly in the error path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 */
Christoph Hellwig979ebab2008-03-06 13:46:05 +11002736 IHOLD(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10002738 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
2740 XFS_BMAP_INIT(&free_list, &first_block);
2741
Barry Naujok556b8b12008-04-10 12:22:07 +10002742 error = xfs_dir_createname(tp, dp, dir_name, cdp->i_ino,
2743 &first_block, &free_list, resblks ?
2744 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 if (error) {
2746 ASSERT(error != ENOSPC);
2747 goto error1;
2748 }
2749 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2750
2751 /*
2752 * Bump the in memory version number of the parent directory
2753 * so that other processes accessing it will recognize that
2754 * the directory has changed.
2755 */
2756 dp->i_gen++;
2757
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002758 error = xfs_dir_init(tp, cdp, dp);
2759 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762 cdp->i_gen = 1;
2763 error = xfs_bumplink(tp, dp);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002764 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 created = B_TRUE;
2768
Christoph Hellwig979ebab2008-03-06 13:46:05 +11002769 *ipp = cdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 IHOLD(cdp);
2771
2772 /*
2773 * Attach the dquots to the new inode and modify the icount incore.
2774 */
2775 XFS_QM_DQVOPCREATE(mp, tp, cdp, udqp, gdqp);
2776
2777 /*
2778 * If this is a synchronous mount, make sure that the
2779 * mkdir transaction goes to disk before returning to
2780 * the user.
2781 */
2782 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2783 xfs_trans_set_sync(tp);
2784 }
2785
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002786 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 if (error) {
2788 IRELE(cdp);
2789 goto error2;
2790 }
2791
Eric Sandeen1c72bf92007-05-08 13:48:42 +10002792 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 XFS_QM_DQRELE(mp, udqp);
2794 XFS_QM_DQRELE(mp, gdqp);
2795 if (error) {
2796 IRELE(cdp);
2797 }
2798
2799 /* Fall through to std_return with error = 0 or errno from
2800 * xfs_trans_commit. */
2801
2802std_return:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002803 if ((created || (error != 0 && dm_event_sent != 0)) &&
Christoph Hellwig993386c2007-08-28 16:12:30 +10002804 DM_EVENT_ENABLED(dp, DM_EVENT_POSTCREATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002806 dp, DM_RIGHT_NULL,
2807 created ? cdp : NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002809 dir_name->name, NULL,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10002810 mode, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 }
2812 return error;
2813
2814 error2:
2815 error1:
2816 xfs_bmap_cancel(&free_list);
2817 abort_return:
2818 cancel_flags |= XFS_TRANS_ABORT;
2819 error_return:
2820 xfs_trans_cancel(tp, cancel_flags);
2821 XFS_QM_DQRELE(mp, udqp);
2822 XFS_QM_DQRELE(mp, gdqp);
2823
Christoph Hellwig993386c2007-08-28 16:12:30 +10002824 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
2827 goto std_return;
2828}
2829
Christoph Hellwig993386c2007-08-28 16:12:30 +10002830int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831xfs_rmdir(
Christoph Hellwig993386c2007-08-28 16:12:30 +10002832 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10002833 struct xfs_name *name,
2834 xfs_inode_t *cdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
Christoph Hellwig993386c2007-08-28 16:12:30 +10002836 bhv_vnode_t *dir_vp = XFS_ITOV(dp);
Christoph Hellwig993386c2007-08-28 16:12:30 +10002837 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 int error;
2840 xfs_bmap_free_t free_list;
2841 xfs_fsblock_t first_block;
2842 int cancel_flags;
2843 int committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 int last_cdp_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 uint resblks;
2846
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002847 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Christoph Hellwig993386c2007-08-28 16:12:30 +10002849 if (XFS_FORCED_SHUTDOWN(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
Christoph Hellwigeb9df392007-08-16 18:42:07 +10002852 if (DM_EVENT_ENABLED(dp, DM_EVENT_REMOVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 error = XFS_SEND_NAMESP(mp, DM_EVENT_REMOVE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11002854 dp, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10002855 NULL, DM_RIGHT_NULL, name->name,
2856 NULL, cdp->i_d.di_mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 if (error)
2858 return XFS_ERROR(error);
2859 }
2860
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 /*
2862 * We need to get a reference to cdp before we get our log
2863 * reservation. The reason for this is that we cannot call
2864 * xfs_iget for an inode for which we do not have a reference
2865 * once we've acquired a log reservation. This is because the
2866 * inode we are trying to get might be in xfs_inactive going
2867 * for a log reservation. Since we'll have to wait for the
2868 * inactive code to complete before returning from xfs_iget,
2869 * we need to make sure that we don't have log space reserved
Nathan Scottc41564b2006-03-29 08:55:14 +10002870 * when we call xfs_iget. Instead we get an unlocked reference
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 * to the inode before getting our log reservation.
2872 */
Christoph Hellwig43973962008-03-06 13:44:50 +11002873 IHOLD(cdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
2875 /*
2876 * Get the dquots for the inodes.
2877 */
2878 error = XFS_QM_DQATTACH(mp, dp, 0);
2879 if (!error && dp != cdp)
2880 error = XFS_QM_DQATTACH(mp, cdp, 0);
2881 if (error) {
2882 IRELE(cdp);
2883 REMOVE_DEBUG_TRACE(__LINE__);
2884 goto std_return;
2885 }
2886
2887 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
2888 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2889 /*
2890 * We try to get the real space reservation first,
2891 * allowing for directory btree deletion(s) implying
2892 * possible bmap insert(s). If we can't get the space
2893 * reservation then we use 0 instead, and avoid the bmap
2894 * btree insert(s) in the directory code by, if the bmap
2895 * insert tries to happen, instead trimming the LAST
2896 * block from the directory.
2897 */
2898 resblks = XFS_REMOVE_SPACE_RES(mp);
2899 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
2900 XFS_TRANS_PERM_LOG_RES, XFS_DEFAULT_LOG_COUNT);
2901 if (error == ENOSPC) {
2902 resblks = 0;
2903 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
2904 XFS_TRANS_PERM_LOG_RES, XFS_DEFAULT_LOG_COUNT);
2905 }
2906 if (error) {
2907 ASSERT(error != ENOSPC);
2908 cancel_flags = 0;
2909 IRELE(cdp);
2910 goto error_return;
2911 }
2912 XFS_BMAP_INIT(&free_list, &first_block);
2913
2914 /*
2915 * Now lock the child directory inode and the parent directory
2916 * inode in the proper order. This will take care of validating
2917 * that the directory entry for the child directory inode has
2918 * not changed while we were obtaining a log reservation.
2919 */
Eric Sandeene9ed9d22007-05-08 13:48:56 +10002920 error = xfs_lock_dir_and_entry(dp, cdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 if (error) {
2922 xfs_trans_cancel(tp, cancel_flags);
2923 IRELE(cdp);
2924 goto std_return;
2925 }
2926
2927 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2928 if (dp != cdp) {
2929 /*
2930 * Only increment the parent directory vnode count if
2931 * we didn't bump it in looking up cdp. The only time
2932 * we don't bump it is when we're looking up ".".
2933 */
2934 VN_HOLD(dir_vp);
2935 }
2936
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11002937 xfs_itrace_ref(cdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 xfs_trans_ijoin(tp, cdp, XFS_ILOCK_EXCL);
2939
2940 ASSERT(cdp->i_d.di_nlink >= 2);
2941 if (cdp->i_d.di_nlink != 2) {
2942 error = XFS_ERROR(ENOTEMPTY);
2943 goto error_return;
2944 }
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002945 if (!xfs_dir_isempty(cdp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 error = XFS_ERROR(ENOTEMPTY);
2947 goto error_return;
2948 }
2949
Barry Naujok556b8b12008-04-10 12:22:07 +10002950 error = xfs_dir_removename(tp, dp, name, cdp->i_ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002951 &first_block, &free_list, resblks);
2952 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
2955 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2956
2957 /*
2958 * Bump the in memory generation count on the parent
2959 * directory so that other can know that it has changed.
2960 */
2961 dp->i_gen++;
2962
2963 /*
2964 * Drop the link from cdp's "..".
2965 */
2966 error = xfs_droplink(tp, dp);
2967 if (error) {
2968 goto error1;
2969 }
2970
2971 /*
2972 * Drop the link from dp to cdp.
2973 */
2974 error = xfs_droplink(tp, cdp);
2975 if (error) {
2976 goto error1;
2977 }
2978
2979 /*
2980 * Drop the "." link from cdp to self.
2981 */
2982 error = xfs_droplink(tp, cdp);
2983 if (error) {
2984 goto error1;
2985 }
2986
2987 /* Determine these before committing transaction */
2988 last_cdp_link = (cdp)->i_d.di_nlink==0;
2989
2990 /*
2991 * Take an extra ref on the child vnode so that it
2992 * does not go to xfs_inactive() from within the commit.
2993 */
2994 IHOLD(cdp);
2995
2996 /*
2997 * If this is a synchronous mount, make sure that the
2998 * rmdir transaction goes to disk before returning to
2999 * the user.
3000 */
3001 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
3002 xfs_trans_set_sync(tp);
3003 }
3004
Eric Sandeenf7c99b62007-02-10 18:37:16 +11003005 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 if (error) {
3007 xfs_bmap_cancel(&free_list);
3008 xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES |
3009 XFS_TRANS_ABORT));
3010 IRELE(cdp);
3011 goto std_return;
3012 }
3013
Eric Sandeen1c72bf92007-05-08 13:48:42 +10003014 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 if (error) {
3016 IRELE(cdp);
3017 goto std_return;
3018 }
3019
3020
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 IRELE(cdp);
3022
3023 /* Fall through to std_return with error = 0 or the errno
3024 * from xfs_trans_commit. */
Nathan Scottbb19fba2006-03-22 14:12:12 +11003025 std_return:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10003026 if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTREMOVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTREMOVE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003028 dp, DM_RIGHT_NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 NULL, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10003030 name->name, NULL, cdp->i_d.di_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 error, 0);
3032 }
3033 return error;
3034
Nathan Scottbb19fba2006-03-22 14:12:12 +11003035 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 xfs_bmap_cancel(&free_list);
3037 cancel_flags |= XFS_TRANS_ABORT;
Jesper Juhl014c2542006-01-15 02:37:08 +01003038 /* FALLTHROUGH */
3039
Nathan Scottbb19fba2006-03-22 14:12:12 +11003040 error_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 xfs_trans_cancel(tp, cancel_flags);
3042 goto std_return;
3043}
3044
Christoph Hellwig993386c2007-08-28 16:12:30 +10003045int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046xfs_symlink(
Christoph Hellwig993386c2007-08-28 16:12:30 +10003047 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +10003048 struct xfs_name *link_name,
3049 const char *target_path,
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10003050 mode_t mode,
Christoph Hellwig3937be52008-03-06 13:46:19 +11003051 xfs_inode_t **ipp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 cred_t *credp)
3053{
Christoph Hellwig993386c2007-08-28 16:12:30 +10003054 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 xfs_inode_t *ip;
3057 int error;
3058 int pathlen;
3059 xfs_bmap_free_t free_list;
3060 xfs_fsblock_t first_block;
Christoph Hellwig993386c2007-08-28 16:12:30 +10003061 boolean_t unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 uint cancel_flags;
3063 int committed;
3064 xfs_fileoff_t first_fsb;
3065 xfs_filblks_t fs_blocks;
3066 int nmaps;
3067 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
3068 xfs_daddr_t d;
Barry Naujok556b8b12008-04-10 12:22:07 +10003069 const char *cur_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 int byte_cnt;
3071 int n;
3072 xfs_buf_t *bp;
3073 xfs_prid_t prid;
3074 struct xfs_dquot *udqp, *gdqp;
3075 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
Christoph Hellwig3937be52008-03-06 13:46:19 +11003077 *ipp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 error = 0;
3079 ip = NULL;
3080 tp = NULL;
3081
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11003082 xfs_itrace_entry(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
3084 if (XFS_FORCED_SHUTDOWN(mp))
3085 return XFS_ERROR(EIO);
3086
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 /*
3088 * Check component lengths of the target path name.
3089 */
3090 pathlen = strlen(target_path);
3091 if (pathlen >= MAXPATHLEN) /* total string too long */
3092 return XFS_ERROR(ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Christoph Hellwigeb9df392007-08-16 18:42:07 +10003094 if (DM_EVENT_ENABLED(dp, DM_EVENT_SYMLINK)) {
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003095 error = XFS_SEND_NAMESP(mp, DM_EVENT_SYMLINK, dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 DM_RIGHT_NULL, NULL, DM_RIGHT_NULL,
Barry Naujok556b8b12008-04-10 12:22:07 +10003097 link_name->name, target_path, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 if (error)
3099 return error;
3100 }
3101
3102 /* Return through std_return after this point. */
3103
3104 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10003105 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
3106 prid = dp->i_d.di_projid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 else
3108 prid = (xfs_prid_t)dfltprid;
3109
3110 /*
3111 * Make sure that we have allocated dquot(s) on disk.
3112 */
3113 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10003114 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
3116 if (error)
3117 goto std_return;
3118
3119 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
3120 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
3121 /*
3122 * The symlink will fit into the inode data fork?
3123 * There can't be any attributes so we get the whole variable part.
3124 */
3125 if (pathlen <= XFS_LITINO(mp))
3126 fs_blocks = 0;
3127 else
3128 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
Barry Naujok556b8b12008-04-10 12:22:07 +10003129 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
3131 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
3132 if (error == ENOSPC && fs_blocks == 0) {
3133 resblks = 0;
3134 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
3135 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
3136 }
3137 if (error) {
3138 cancel_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 goto error_return;
3140 }
3141
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +10003142 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Christoph Hellwig993386c2007-08-28 16:12:30 +10003143 unlock_dp_on_error = B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
3145 /*
3146 * Check whether the directory allows new symlinks or not.
3147 */
3148 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
3149 error = XFS_ERROR(EPERM);
3150 goto error_return;
3151 }
3152
3153 /*
3154 * Reserve disk quota : blocks and inode.
3155 */
3156 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
3157 if (error)
3158 goto error_return;
3159
3160 /*
3161 * Check for ability to enter directory entry, if no space reserved.
3162 */
Barry Naujok556b8b12008-04-10 12:22:07 +10003163 error = xfs_dir_canenter(tp, dp, link_name, resblks);
3164 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 goto error_return;
3166 /*
3167 * Initialize the bmap freelist prior to calling either
3168 * bmapi or the directory create code.
3169 */
3170 XFS_BMAP_INIT(&free_list, &first_block);
3171
3172 /*
3173 * Allocate an inode for the symlink.
3174 */
Christoph Hellwig3e5daf02007-10-11 18:09:12 +10003175 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 1, 0, credp, prid, resblks > 0, &ip, NULL);
3177 if (error) {
3178 if (error == ENOSPC)
3179 goto error_return;
3180 goto error1;
3181 }
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11003182 xfs_itrace_ref(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
Christoph Hellwig993386c2007-08-28 16:12:30 +10003184 /*
3185 * An error after we've joined dp to the transaction will result in the
3186 * transaction cancel unlocking dp so don't do it explicitly in the
3187 * error path.
3188 */
Christoph Hellwig3937be52008-03-06 13:46:19 +11003189 IHOLD(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
Christoph Hellwig993386c2007-08-28 16:12:30 +10003191 unlock_dp_on_error = B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
3193 /*
3194 * Also attach the dquot(s) to it, if applicable.
3195 */
3196 XFS_QM_DQVOPCREATE(mp, tp, ip, udqp, gdqp);
3197
3198 if (resblks)
3199 resblks -= XFS_IALLOC_SPACE_RES(mp);
3200 /*
3201 * If the symlink will fit into the inode, write it inline.
3202 */
3203 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
3204 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
3205 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
3206 ip->i_d.di_size = pathlen;
3207
3208 /*
3209 * The inode was initially created in extent format.
3210 */
3211 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
3212 ip->i_df.if_flags |= XFS_IFINLINE;
3213
3214 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
3215 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
3216
3217 } else {
3218 first_fsb = 0;
3219 nmaps = SYMLINK_MAPS;
3220
3221 error = xfs_bmapi(tp, ip, first_fsb, fs_blocks,
3222 XFS_BMAPI_WRITE | XFS_BMAPI_METADATA,
3223 &first_block, resblks, mval, &nmaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003224 &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 if (error) {
3226 goto error1;
3227 }
3228
3229 if (resblks)
3230 resblks -= fs_blocks;
3231 ip->i_d.di_size = pathlen;
3232 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3233
3234 cur_chunk = target_path;
3235 for (n = 0; n < nmaps; n++) {
3236 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
3237 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
3238 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
3239 BTOBB(byte_cnt), 0);
3240 ASSERT(bp && !XFS_BUF_GETERROR(bp));
3241 if (pathlen < byte_cnt) {
3242 byte_cnt = pathlen;
3243 }
3244 pathlen -= byte_cnt;
3245
3246 memcpy(XFS_BUF_PTR(bp), cur_chunk, byte_cnt);
3247 cur_chunk += byte_cnt;
3248
3249 xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
3250 }
3251 }
3252
3253 /*
3254 * Create the directory entry for the symlink.
3255 */
Barry Naujok556b8b12008-04-10 12:22:07 +10003256 error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
3257 &first_block, &free_list, resblks);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10003258 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3261 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
3262
3263 /*
3264 * Bump the in memory version number of the parent directory
3265 * so that other processes accessing it will recognize that
3266 * the directory has changed.
3267 */
3268 dp->i_gen++;
3269
3270 /*
3271 * If this is a synchronous mount, make sure that the
3272 * symlink transaction goes to disk before returning to
3273 * the user.
3274 */
3275 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
3276 xfs_trans_set_sync(tp);
3277 }
3278
3279 /*
3280 * xfs_trans_commit normally decrements the vnode ref count
3281 * when it unlocks the inode. Since we want to return the
3282 * vnode to the caller, we bump the vnode ref count now.
3283 */
3284 IHOLD(ip);
3285
Eric Sandeenf7c99b62007-02-10 18:37:16 +11003286 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 if (error) {
3288 goto error2;
3289 }
Eric Sandeen1c72bf92007-05-08 13:48:42 +10003290 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 XFS_QM_DQRELE(mp, udqp);
3292 XFS_QM_DQRELE(mp, gdqp);
3293
3294 /* Fall through to std_return with error = 0 or errno from
3295 * xfs_trans_commit */
3296std_return:
Christoph Hellwig993386c2007-08-28 16:12:30 +10003297 if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTSYMLINK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTSYMLINK,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003299 dp, DM_RIGHT_NULL,
3300 error ? NULL : ip,
Barry Naujok556b8b12008-04-10 12:22:07 +10003301 DM_RIGHT_NULL, link_name->name,
3302 target_path, 0, error, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 }
3304
Christoph Hellwig3937be52008-03-06 13:46:19 +11003305 if (!error)
3306 *ipp = ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 return error;
3308
3309 error2:
3310 IRELE(ip);
3311 error1:
3312 xfs_bmap_cancel(&free_list);
3313 cancel_flags |= XFS_TRANS_ABORT;
3314 error_return:
3315 xfs_trans_cancel(tp, cancel_flags);
3316 XFS_QM_DQRELE(mp, udqp);
3317 XFS_QM_DQRELE(mp, gdqp);
3318
Christoph Hellwig993386c2007-08-28 16:12:30 +10003319 if (unlock_dp_on_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
3322 goto std_return;
3323}
3324
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326xfs_inode_flush(
Christoph Hellwig993386c2007-08-28 16:12:30 +10003327 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 int flags)
3329{
Christoph Hellwig993386c2007-08-28 16:12:30 +10003330 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 int error = 0;
3332
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 if (XFS_FORCED_SHUTDOWN(mp))
3334 return XFS_ERROR(EIO);
3335
3336 /*
3337 * Bypass inodes which have already been cleaned by
3338 * the inode flush clustering code inside xfs_iflush
3339 */
David Chinner33540402008-03-06 13:43:59 +11003340 if (xfs_inode_clean(ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 return 0;
3342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 /*
3344 * We make this non-blocking if the inode is contended,
3345 * return EAGAIN to indicate to the caller that they
3346 * did not succeed. This prevents the flush path from
3347 * blocking on inodes inside another operation right
3348 * now, they get caught later by xfs_sync.
3349 */
David Chinnera3f74ff2008-03-06 13:43:42 +11003350 if (flags & FLUSH_SYNC) {
3351 xfs_ilock(ip, XFS_ILOCK_SHARED);
3352 xfs_iflock(ip);
3353 } else if (xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) {
3354 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip)) {
3355 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 return EAGAIN;
3357 }
David Chinnera3f74ff2008-03-06 13:43:42 +11003358 } else {
3359 return EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 }
3361
David Chinnera3f74ff2008-03-06 13:43:42 +11003362 error = xfs_iflush(ip, (flags & FLUSH_SYNC) ? XFS_IFLUSH_SYNC
3363 : XFS_IFLUSH_ASYNC_NOBLOCK);
3364 xfs_iunlock(ip, XFS_ILOCK_SHARED);
3365
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 return error;
3367}
3368
Christoph Hellwig993386c2007-08-28 16:12:30 +10003369
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370int
Christoph Hellwig993386c2007-08-28 16:12:30 +10003371xfs_set_dmattrs(
3372 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 u_int evmask,
Christoph Hellwig993386c2007-08-28 16:12:30 +10003374 u_int16_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375{
Christoph Hellwig993386c2007-08-28 16:12:30 +10003376 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 int error;
3379
3380 if (!capable(CAP_SYS_ADMIN))
3381 return XFS_ERROR(EPERM);
3382
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 if (XFS_FORCED_SHUTDOWN(mp))
3384 return XFS_ERROR(EIO);
3385
3386 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
3387 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
3388 if (error) {
3389 xfs_trans_cancel(tp, 0);
3390 return error;
3391 }
3392 xfs_ilock(ip, XFS_ILOCK_EXCL);
3393 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3394
Christoph Hellwig613d7042007-10-11 17:44:08 +10003395 ip->i_d.di_dmevmask = evmask;
3396 ip->i_d.di_dmstate = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397
3398 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3399 IHOLD(ip);
Eric Sandeen1c72bf92007-05-08 13:48:42 +10003400 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
3402 return error;
3403}
3404
Christoph Hellwig993386c2007-08-28 16:12:30 +10003405int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406xfs_reclaim(
Christoph Hellwig993386c2007-08-28 16:12:30 +10003407 xfs_inode_t *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408{
Christoph Hellwig993386c2007-08-28 16:12:30 +10003409 bhv_vnode_t *vp = XFS_ITOV(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11003411 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412
3413 ASSERT(!VN_MAPPED(vp));
3414
3415 /* bad inode, get out here ASAP */
3416 if (VN_BAD(vp)) {
3417 xfs_ireclaim(ip);
3418 return 0;
3419 }
3420
Christoph Hellwigb677c212007-08-29 11:46:28 +10003421 vn_iowait(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422
Christoph Hellwig51c91ed2005-09-02 16:58:38 +10003423 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
Christoph Hellwig42fe2b12006-01-11 15:35:17 +11003425 /*
3426 * Make sure the atime in the XFS inode is correct before freeing the
3427 * Linux inode.
3428 */
3429 xfs_synchronize_atime(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430
David Chinner4c606582006-11-11 18:05:00 +11003431 /*
3432 * If we have nothing to flush with this inode then complete the
3433 * teardown now, otherwise break the link between the xfs inode and the
3434 * linux inode and clean up the xfs inode later. This avoids flushing
3435 * the inode to disk during the delete operation itself.
3436 *
3437 * When breaking the link, we need to set the XFS_IRECLAIMABLE flag
3438 * first to ensure that xfs_iunpin() will never see an xfs inode
3439 * that has a linux inode being reclaimed. Synchronisation is provided
3440 * by the i_flags_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 */
3442 if (!ip->i_update_core && (ip->i_itemp == NULL)) {
3443 xfs_ilock(ip, XFS_ILOCK_EXCL);
3444 xfs_iflock(ip);
3445 return xfs_finish_reclaim(ip, 1, XFS_IFLUSH_DELWRI_ELSE_SYNC);
3446 } else {
3447 xfs_mount_t *mp = ip->i_mount;
3448
David Chinner4c606582006-11-11 18:05:00 +11003449 /* Protect sync and unpin from us */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 XFS_MOUNT_ILOCK(mp);
David Chinner4c606582006-11-11 18:05:00 +11003451 spin_lock(&ip->i_flags_lock);
3452 __xfs_iflags_set(ip, XFS_IRECLAIMABLE);
Christoph Hellwig739bfb22007-08-29 10:58:01 +10003453 vn_to_inode(vp)->i_private = NULL;
3454 ip->i_vnode = NULL;
David Chinner4c606582006-11-11 18:05:00 +11003455 spin_unlock(&ip->i_flags_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 list_add_tail(&ip->i_reclaim, &mp->m_del_inodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 XFS_MOUNT_IUNLOCK(mp);
3458 }
3459 return 0;
3460}
3461
3462int
3463xfs_finish_reclaim(
3464 xfs_inode_t *ip,
3465 int locked,
3466 int sync_mode)
3467{
David Chinnerda353b02007-08-28 14:00:13 +10003468 xfs_perag_t *pag = xfs_get_perag(ip->i_mount, ip->i_ino);
Nathan Scott67fcaa72006-06-09 17:00:52 +10003469 bhv_vnode_t *vp = XFS_ITOV_NULL(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 int error;
3471
3472 if (vp && VN_BAD(vp))
3473 goto reclaim;
3474
3475 /* The hash lock here protects a thread in xfs_iget_core from
3476 * racing with us on linking the inode back with a vnode.
3477 * Once we have the XFS_IRECLAIM flag set it will not touch
3478 * us.
3479 */
David Chinnerda353b02007-08-28 14:00:13 +10003480 write_lock(&pag->pag_ici_lock);
David Chinnerf273ab82006-09-28 11:06:03 +10003481 spin_lock(&ip->i_flags_lock);
David Chinner7a18c382006-11-11 18:04:54 +11003482 if (__xfs_iflags_test(ip, XFS_IRECLAIM) ||
3483 (!__xfs_iflags_test(ip, XFS_IRECLAIMABLE) && vp == NULL)) {
David Chinnerf273ab82006-09-28 11:06:03 +10003484 spin_unlock(&ip->i_flags_lock);
David Chinnerda353b02007-08-28 14:00:13 +10003485 write_unlock(&pag->pag_ici_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 if (locked) {
3487 xfs_ifunlock(ip);
3488 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3489 }
Jesper Juhl014c2542006-01-15 02:37:08 +01003490 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 }
David Chinner7a18c382006-11-11 18:04:54 +11003492 __xfs_iflags_set(ip, XFS_IRECLAIM);
David Chinnerf273ab82006-09-28 11:06:03 +10003493 spin_unlock(&ip->i_flags_lock);
David Chinnerda353b02007-08-28 14:00:13 +10003494 write_unlock(&pag->pag_ici_lock);
3495 xfs_put_perag(ip->i_mount, pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
3497 /*
3498 * If the inode is still dirty, then flush it out. If the inode
3499 * is not in the AIL, then it will be OK to flush it delwri as
3500 * long as xfs_iflush() does not keep any references to the inode.
3501 * We leave that decision up to xfs_iflush() since it has the
3502 * knowledge of whether it's OK to simply do a delwri flush of
3503 * the inode or whether we need to wait until the inode is
3504 * pulled from the AIL.
3505 * We get the flush lock regardless, though, just to make sure
3506 * we don't free it while it is being flushed.
3507 */
Lachlan McIlroy461aa8a2008-03-06 13:43:11 +11003508 if (!locked) {
3509 xfs_ilock(ip, XFS_ILOCK_EXCL);
3510 xfs_iflock(ip);
3511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
Lachlan McIlroy461aa8a2008-03-06 13:43:11 +11003513 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 if (ip->i_update_core ||
3515 ((ip->i_itemp != NULL) &&
3516 (ip->i_itemp->ili_format.ilf_fields != 0))) {
3517 error = xfs_iflush(ip, sync_mode);
3518 /*
3519 * If we hit an error, typically because of filesystem
3520 * shutdown, we don't need to let vn_reclaim to know
3521 * because we're gonna reclaim the inode anyway.
3522 */
3523 if (error) {
3524 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3525 goto reclaim;
3526 }
3527 xfs_iflock(ip); /* synchronize with xfs_iflush_done */
3528 }
3529
3530 ASSERT(ip->i_update_core == 0);
3531 ASSERT(ip->i_itemp == NULL ||
3532 ip->i_itemp->ili_format.ilf_fields == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 }
3534
Lachlan McIlroy461aa8a2008-03-06 13:43:11 +11003535 xfs_ifunlock(ip);
3536 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 reclaim:
3539 xfs_ireclaim(ip);
3540 return 0;
3541}
3542
3543int
3544xfs_finish_reclaim_all(xfs_mount_t *mp, int noblock)
3545{
3546 int purged;
3547 xfs_inode_t *ip, *n;
3548 int done = 0;
3549
3550 while (!done) {
3551 purged = 0;
3552 XFS_MOUNT_ILOCK(mp);
3553 list_for_each_entry_safe(ip, n, &mp->m_del_inodes, i_reclaim) {
3554 if (noblock) {
3555 if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL) == 0)
3556 continue;
3557 if (xfs_ipincount(ip) ||
3558 !xfs_iflock_nowait(ip)) {
3559 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3560 continue;
3561 }
3562 }
3563 XFS_MOUNT_IUNLOCK(mp);
Felix Blyakher6b2cf612005-11-25 16:42:13 +11003564 if (xfs_finish_reclaim(ip, noblock,
3565 XFS_IFLUSH_DELWRI_ELSE_ASYNC))
3566 delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 purged = 1;
3568 break;
3569 }
3570
3571 done = !purged;
3572 }
3573
3574 XFS_MOUNT_IUNLOCK(mp);
3575 return 0;
3576}
3577
3578/*
3579 * xfs_alloc_file_space()
3580 * This routine allocates disk space for the given file.
3581 *
3582 * If alloc_type == 0, this request is for an ALLOCSP type
3583 * request which will change the file size. In this case, no
3584 * DMAPI event will be generated by the call. A TRUNCATE event
3585 * will be generated later by xfs_setattr.
3586 *
3587 * If alloc_type != 0, this request is for a RESVSP type
3588 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
3589 * lower block boundary byte address is less than the file's
3590 * length.
3591 *
3592 * RETURNS:
3593 * 0 on success
3594 * errno on error
3595 *
3596 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003597STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598xfs_alloc_file_space(
3599 xfs_inode_t *ip,
3600 xfs_off_t offset,
3601 xfs_off_t len,
3602 int alloc_type,
3603 int attr_flags)
3604{
Nathan Scottdd9f4382006-01-11 15:28:28 +11003605 xfs_mount_t *mp = ip->i_mount;
3606 xfs_off_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 xfs_filblks_t allocated_fsb;
3608 xfs_filblks_t allocatesize_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11003609 xfs_extlen_t extsz, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 xfs_fileoff_t startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11003611 xfs_fsblock_t firstfsb;
3612 int nimaps;
3613 int bmapi_flag;
3614 int quota_flag;
3615 int rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 xfs_trans_t *tp;
Nathan Scottdd9f4382006-01-11 15:28:28 +11003617 xfs_bmbt_irec_t imaps[1], *imapp;
3618 xfs_bmap_free_t free_list;
3619 uint qblocks, resblks, resrtextents;
3620 int committed;
3621 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11003623 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
3625 if (XFS_FORCED_SHUTDOWN(mp))
3626 return XFS_ERROR(EIO);
3627
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
3629 return error;
3630
3631 if (len <= 0)
3632 return XFS_ERROR(EINVAL);
3633
David Chinner957d0eb2007-06-18 16:50:37 +10003634 rt = XFS_IS_REALTIME_INODE(ip);
3635 extsz = xfs_get_extsz_hint(ip);
3636
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 count = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 imapp = &imaps[0];
Nathan Scottdd9f4382006-01-11 15:28:28 +11003639 nimaps = 1;
3640 bmapi_flag = XFS_BMAPI_WRITE | (alloc_type ? XFS_BMAPI_PREALLOC : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
3642 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
3643
3644 /* Generate a DMAPI event if needed. */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003645 if (alloc_type != 0 && offset < ip->i_size &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 (attr_flags&ATTR_DMI) == 0 &&
Christoph Hellwigeb9df392007-08-16 18:42:07 +10003647 DM_EVENT_ENABLED(ip, DM_EVENT_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 xfs_off_t end_dmi_offset;
3649
3650 end_dmi_offset = offset+len;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003651 if (end_dmi_offset > ip->i_size)
3652 end_dmi_offset = ip->i_size;
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003653 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip, offset,
3654 end_dmi_offset - offset, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01003656 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 }
3658
3659 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003660 * Allocate file space until done or until there is an error
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 */
3662retry:
3663 while (allocatesize_fsb && !error) {
Nathan Scottdd9f4382006-01-11 15:28:28 +11003664 xfs_fileoff_t s, e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665
Nathan Scottdd9f4382006-01-11 15:28:28 +11003666 /*
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11003667 * Determine space reservations for data/realtime.
Nathan Scottdd9f4382006-01-11 15:28:28 +11003668 */
3669 if (unlikely(extsz)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 s = startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11003671 do_div(s, extsz);
3672 s *= extsz;
3673 e = startoffset_fsb + allocatesize_fsb;
3674 if ((temp = do_mod(startoffset_fsb, extsz)))
3675 e += temp;
3676 if ((temp = do_mod(e, extsz)))
3677 e += extsz - temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 } else {
Nathan Scottdd9f4382006-01-11 15:28:28 +11003679 s = 0;
3680 e = allocatesize_fsb;
3681 }
3682
3683 if (unlikely(rt)) {
3684 resrtextents = qblocks = (uint)(e - s);
3685 resrtextents /= mp->m_sb.sb_rextsize;
3686 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
3687 quota_flag = XFS_QMOPT_RES_RTBLKS;
3688 } else {
3689 resrtextents = 0;
3690 resblks = qblocks = \
3691 XFS_DIOSTRAT_SPACE_RES(mp, (uint)(e - s));
3692 quota_flag = XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 }
3694
3695 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003696 * Allocate and setup the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 */
3698 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Nathan Scottdd9f4382006-01-11 15:28:28 +11003699 error = xfs_trans_reserve(tp, resblks,
3700 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 XFS_TRANS_PERM_LOG_RES,
3702 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003704 * Check for running out of space
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 */
3706 if (error) {
3707 /*
3708 * Free the transaction structure.
3709 */
3710 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
3711 xfs_trans_cancel(tp, 0);
3712 break;
3713 }
3714 xfs_ilock(ip, XFS_ILOCK_EXCL);
Nathan Scottdd9f4382006-01-11 15:28:28 +11003715 error = XFS_TRANS_RESERVE_QUOTA_NBLKS(mp, tp, ip,
3716 qblocks, 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 if (error)
3718 goto error1;
3719
3720 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3721 xfs_trans_ihold(tp, ip);
3722
3723 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003724 * Issue the xfs_bmapi() call to allocate the blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 */
3726 XFS_BMAP_INIT(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003727 error = xfs_bmapi(tp, ip, startoffset_fsb,
Nathan Scottdd9f4382006-01-11 15:28:28 +11003728 allocatesize_fsb, bmapi_flag,
3729 &firstfsb, 0, imapp, &nimaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003730 &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 if (error) {
3732 goto error0;
3733 }
3734
3735 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003736 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11003738 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 if (error) {
3740 goto error0;
3741 }
3742
Eric Sandeen1c72bf92007-05-08 13:48:42 +10003743 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3745 if (error) {
3746 break;
3747 }
3748
3749 allocated_fsb = imapp->br_blockcount;
3750
Nathan Scottdd9f4382006-01-11 15:28:28 +11003751 if (nimaps == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 error = XFS_ERROR(ENOSPC);
3753 break;
3754 }
3755
3756 startoffset_fsb += allocated_fsb;
3757 allocatesize_fsb -= allocated_fsb;
3758 }
3759dmapi_enospc_check:
Christoph Hellwigeb9df392007-08-16 18:42:07 +10003760 if (error == ENOSPC && (attr_flags & ATTR_DMI) == 0 &&
3761 DM_EVENT_ENABLED(ip, DM_EVENT_NOSPACE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 error = XFS_SEND_NAMESP(mp, DM_EVENT_NOSPACE,
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003763 ip, DM_RIGHT_NULL,
3764 ip, DM_RIGHT_NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 NULL, NULL, 0, 0, 0); /* Delay flag intentionally unused */
3766 if (error == 0)
3767 goto retry; /* Maybe DMAPI app. has made space */
3768 /* else fall through with error from XFS_SEND_DATA */
3769 }
3770
3771 return error;
3772
Nathan Scottdd9f4382006-01-11 15:28:28 +11003773error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 xfs_bmap_cancel(&free_list);
Nathan Scottdd9f4382006-01-11 15:28:28 +11003775 XFS_TRANS_UNRESERVE_QUOTA_NBLKS(mp, tp, ip, qblocks, 0, quota_flag);
3776
3777error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
3779 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3780 goto dmapi_enospc_check;
3781}
3782
3783/*
3784 * Zero file bytes between startoff and endoff inclusive.
3785 * The iolock is held exclusive and no blocks are buffered.
3786 */
3787STATIC int
3788xfs_zero_remaining_bytes(
3789 xfs_inode_t *ip,
3790 xfs_off_t startoff,
3791 xfs_off_t endoff)
3792{
3793 xfs_bmbt_irec_t imap;
3794 xfs_fileoff_t offset_fsb;
3795 xfs_off_t lastoffset;
3796 xfs_off_t offset;
3797 xfs_buf_t *bp;
3798 xfs_mount_t *mp = ip->i_mount;
3799 int nimap;
3800 int error = 0;
3801
3802 bp = xfs_buf_get_noaddr(mp->m_sb.sb_blocksize,
Eric Sandeen71ddabb2007-11-23 16:29:42 +11003803 XFS_IS_REALTIME_INODE(ip) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 mp->m_rtdev_targp : mp->m_ddev_targp);
3805
3806 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
3807 offset_fsb = XFS_B_TO_FSBT(mp, offset);
3808 nimap = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003809 error = xfs_bmapi(NULL, ip, offset_fsb, 1, 0,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003810 NULL, 0, &imap, &nimap, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 if (error || nimap < 1)
3812 break;
3813 ASSERT(imap.br_blockcount >= 1);
3814 ASSERT(imap.br_startoff == offset_fsb);
3815 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
3816 if (lastoffset > endoff)
3817 lastoffset = endoff;
3818 if (imap.br_startblock == HOLESTARTBLOCK)
3819 continue;
3820 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
3821 if (imap.br_state == XFS_EXT_UNWRITTEN)
3822 continue;
3823 XFS_BUF_UNDONE(bp);
3824 XFS_BUF_UNWRITE(bp);
3825 XFS_BUF_READ(bp);
3826 XFS_BUF_SET_ADDR(bp, XFS_FSB_TO_DB(ip, imap.br_startblock));
3827 xfsbdstrat(mp, bp);
3828 if ((error = xfs_iowait(bp))) {
3829 xfs_ioerror_alert("xfs_zero_remaining_bytes(read)",
3830 mp, bp, XFS_BUF_ADDR(bp));
3831 break;
3832 }
3833 memset(XFS_BUF_PTR(bp) +
3834 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
3835 0, lastoffset - offset + 1);
3836 XFS_BUF_UNDONE(bp);
3837 XFS_BUF_UNREAD(bp);
3838 XFS_BUF_WRITE(bp);
3839 xfsbdstrat(mp, bp);
3840 if ((error = xfs_iowait(bp))) {
3841 xfs_ioerror_alert("xfs_zero_remaining_bytes(write)",
3842 mp, bp, XFS_BUF_ADDR(bp));
3843 break;
3844 }
3845 }
3846 xfs_buf_free(bp);
3847 return error;
3848}
3849
3850/*
3851 * xfs_free_file_space()
3852 * This routine frees disk space for the given file.
3853 *
3854 * This routine is only called by xfs_change_file_space
3855 * for an UNRESVSP type call.
3856 *
3857 * RETURNS:
3858 * 0 on success
3859 * errno on error
3860 *
3861 */
3862STATIC int
3863xfs_free_file_space(
3864 xfs_inode_t *ip,
3865 xfs_off_t offset,
3866 xfs_off_t len,
3867 int attr_flags)
3868{
Nathan Scott67fcaa72006-06-09 17:00:52 +10003869 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 int committed;
3871 int done;
3872 xfs_off_t end_dmi_offset;
3873 xfs_fileoff_t endoffset_fsb;
3874 int error;
3875 xfs_fsblock_t firstfsb;
3876 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 xfs_bmbt_irec_t imap;
3878 xfs_off_t ioffset;
3879 xfs_extlen_t mod=0;
3880 xfs_mount_t *mp;
3881 int nimap;
3882 uint resblks;
Nathan Scott673cdf52006-09-28 10:56:26 +10003883 uint rounding;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 int rt;
3885 xfs_fileoff_t startoffset_fsb;
3886 xfs_trans_t *tp;
Dean Roehrich5fcbab32005-05-05 13:27:19 -07003887 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10003889 vp = XFS_ITOV(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 mp = ip->i_mount;
3891
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11003892 xfs_itrace_entry(ip);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10003893
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
3895 return error;
3896
3897 error = 0;
3898 if (len <= 0) /* if nothing being freed */
3899 return error;
Eric Sandeen71ddabb2007-11-23 16:29:42 +11003900 rt = XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
3902 end_dmi_offset = offset + len;
3903 endoffset_fsb = XFS_B_TO_FSBT(mp, end_dmi_offset);
3904
Christoph Hellwigeb9df392007-08-16 18:42:07 +10003905 if (offset < ip->i_size && (attr_flags & ATTR_DMI) == 0 &&
3906 DM_EVENT_ENABLED(ip, DM_EVENT_WRITE)) {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10003907 if (end_dmi_offset > ip->i_size)
3908 end_dmi_offset = ip->i_size;
Christoph Hellwigbc4ac742008-03-06 13:45:58 +11003909 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 offset, end_dmi_offset - offset,
3911 AT_DELAY_FLAG(attr_flags), NULL);
3912 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01003913 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 }
3915
Dean Roehrich5fcbab32005-05-05 13:27:19 -07003916 if (attr_flags & ATTR_NOLOCK)
3917 need_iolock = 0;
Yingping Lu9fa80462006-03-22 12:44:35 +11003918 if (need_iolock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigb677c212007-08-29 11:46:28 +10003920 vn_iowait(ip); /* wait for the completion of any pending DIOs */
Yingping Lu9fa80462006-03-22 12:44:35 +11003921 }
Dean Roehrich5fcbab32005-05-05 13:27:19 -07003922
Tim Shimmine6a4b372007-11-23 16:30:42 +11003923 rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 ioffset = offset & ~(rounding - 1);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10003925
3926 if (VN_CACHED(vp) != 0) {
Tim Shimmine6a4b372007-11-23 16:30:42 +11003927 xfs_inval_cached_trace(ip, ioffset, -1, ioffset, -1);
3928 error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +10003929 if (error)
3930 goto out_unlock_iolock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10003931 }
3932
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 /*
3934 * Need to zero the stuff we're not freeing, on disk.
3935 * If its a realtime file & can't use unwritten extents then we
3936 * actually need to zero the extent edges. Otherwise xfs_bunmapi
3937 * will take care of it for us.
3938 */
Eric Sandeen62118702008-03-06 13:44:28 +11003939 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 nimap = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003941 error = xfs_bmapi(NULL, ip, startoffset_fsb,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003942 1, 0, NULL, 0, &imap, &nimap, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 if (error)
3944 goto out_unlock_iolock;
3945 ASSERT(nimap == 0 || nimap == 1);
3946 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
3947 xfs_daddr_t block;
3948
3949 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
3950 block = imap.br_startblock;
3951 mod = do_div(block, mp->m_sb.sb_rextsize);
3952 if (mod)
3953 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
3954 }
3955 nimap = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10003956 error = xfs_bmapi(NULL, ip, endoffset_fsb - 1,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003957 1, 0, NULL, 0, &imap, &nimap, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 if (error)
3959 goto out_unlock_iolock;
3960 ASSERT(nimap == 0 || nimap == 1);
3961 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
3962 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
3963 mod++;
3964 if (mod && (mod != mp->m_sb.sb_rextsize))
3965 endoffset_fsb -= mod;
3966 }
3967 }
3968 if ((done = (endoffset_fsb <= startoffset_fsb)))
3969 /*
3970 * One contiguous piece to clear
3971 */
3972 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
3973 else {
3974 /*
3975 * Some full blocks, possibly two pieces to clear
3976 */
3977 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
3978 error = xfs_zero_remaining_bytes(ip, offset,
3979 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
3980 if (!error &&
3981 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
3982 error = xfs_zero_remaining_bytes(ip,
3983 XFS_FSB_TO_B(mp, endoffset_fsb),
3984 offset + len - 1);
3985 }
3986
3987 /*
3988 * free file space until done or until there is an error
3989 */
3990 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
3991 while (!error && !done) {
3992
3993 /*
David Chinner91ebecc2007-07-19 16:28:30 +10003994 * allocate and setup the transaction. Allow this
3995 * transaction to dip into the reserve blocks to ensure
3996 * the freeing of the space succeeds at ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 */
3998 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
David Chinner91ebecc2007-07-19 16:28:30 +10003999 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 error = xfs_trans_reserve(tp,
4001 resblks,
4002 XFS_WRITE_LOG_RES(mp),
4003 0,
4004 XFS_TRANS_PERM_LOG_RES,
4005 XFS_WRITE_LOG_COUNT);
4006
4007 /*
4008 * check for running out of space
4009 */
4010 if (error) {
4011 /*
4012 * Free the transaction structure.
4013 */
4014 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
4015 xfs_trans_cancel(tp, 0);
4016 break;
4017 }
4018 xfs_ilock(ip, XFS_ILOCK_EXCL);
4019 error = XFS_TRANS_RESERVE_QUOTA(mp, tp,
Nathan Scottdd9f4382006-01-11 15:28:28 +11004020 ip->i_udquot, ip->i_gdquot, resblks, 0,
4021 XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 if (error)
4023 goto error1;
4024
4025 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
4026 xfs_trans_ihold(tp, ip);
4027
4028 /*
4029 * issue the bunmapi() call to free the blocks
4030 */
4031 XFS_BMAP_INIT(&free_list, &firstfsb);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10004032 error = xfs_bunmapi(tp, ip, startoffset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 endoffset_fsb - startoffset_fsb,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10004034 0, 2, &firstfsb, &free_list, NULL, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 if (error) {
4036 goto error0;
4037 }
4038
4039 /*
4040 * complete the transaction
4041 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11004042 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 if (error) {
4044 goto error0;
4045 }
4046
Eric Sandeen1c72bf92007-05-08 13:48:42 +10004047 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4049 }
4050
4051 out_unlock_iolock:
4052 if (need_iolock)
4053 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
4054 return error;
4055
4056 error0:
4057 xfs_bmap_cancel(&free_list);
4058 error1:
4059 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
4060 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
4061 XFS_ILOCK_EXCL);
4062 return error;
4063}
4064
4065/*
4066 * xfs_change_file_space()
4067 * This routine allocates or frees disk space for the given file.
4068 * The user specified parameters are checked for alignment and size
4069 * limitations.
4070 *
4071 * RETURNS:
4072 * 0 on success
4073 * errno on error
4074 *
4075 */
4076int
4077xfs_change_file_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +10004078 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 int cmd,
4080 xfs_flock64_t *bf,
4081 xfs_off_t offset,
4082 cred_t *credp,
4083 int attr_flags)
4084{
Christoph Hellwig993386c2007-08-28 16:12:30 +10004085 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 int clrprealloc;
4087 int error;
4088 xfs_fsize_t fsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 int setprealloc;
4090 xfs_off_t startoffset;
4091 xfs_off_t llen;
4092 xfs_trans_t *tp;
Nathan Scott8285fb52006-06-09 17:07:12 +10004093 bhv_vattr_t va;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11004095 xfs_itrace_entry(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
Christoph Hellwig993386c2007-08-28 16:12:30 +10004097 if (!S_ISREG(ip->i_d.di_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 return XFS_ERROR(EINVAL);
4099
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 switch (bf->l_whence) {
4101 case 0: /*SEEK_SET*/
4102 break;
4103 case 1: /*SEEK_CUR*/
4104 bf->l_start += offset;
4105 break;
4106 case 2: /*SEEK_END*/
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10004107 bf->l_start += ip->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 break;
4109 default:
4110 return XFS_ERROR(EINVAL);
4111 }
4112
4113 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
4114
4115 if ( (bf->l_start < 0)
4116 || (bf->l_start > XFS_MAXIOFFSET(mp))
4117 || (bf->l_start + llen < 0)
4118 || (bf->l_start + llen > XFS_MAXIOFFSET(mp)))
4119 return XFS_ERROR(EINVAL);
4120
4121 bf->l_whence = 0;
4122
4123 startoffset = bf->l_start;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10004124 fsize = ip->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
4126 /*
4127 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
4128 * file space.
4129 * These calls do NOT zero the data space allocated to the file,
4130 * nor do they change the file size.
4131 *
4132 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
4133 * space.
4134 * These calls cause the new file data to be zeroed and the file
4135 * size to be changed.
4136 */
4137 setprealloc = clrprealloc = 0;
4138
4139 switch (cmd) {
4140 case XFS_IOC_RESVSP:
4141 case XFS_IOC_RESVSP64:
4142 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
4143 1, attr_flags);
4144 if (error)
4145 return error;
4146 setprealloc = 1;
4147 break;
4148
4149 case XFS_IOC_UNRESVSP:
4150 case XFS_IOC_UNRESVSP64:
4151 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
4152 attr_flags)))
4153 return error;
4154 break;
4155
4156 case XFS_IOC_ALLOCSP:
4157 case XFS_IOC_ALLOCSP64:
4158 case XFS_IOC_FREESP:
4159 case XFS_IOC_FREESP64:
4160 if (startoffset > fsize) {
4161 error = xfs_alloc_file_space(ip, fsize,
4162 startoffset - fsize, 0, attr_flags);
4163 if (error)
4164 break;
4165 }
4166
4167 va.va_mask = XFS_AT_SIZE;
4168 va.va_size = startoffset;
4169
Christoph Hellwig993386c2007-08-28 16:12:30 +10004170 error = xfs_setattr(ip, &va, attr_flags, credp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171
4172 if (error)
4173 return error;
4174
4175 clrprealloc = 1;
4176 break;
4177
4178 default:
4179 ASSERT(0);
4180 return XFS_ERROR(EINVAL);
4181 }
4182
4183 /*
4184 * update the inode timestamp, mode, and prealloc flag bits
4185 */
4186 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
4187
4188 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
4189 0, 0, 0))) {
4190 /* ASSERT(0); */
4191 xfs_trans_cancel(tp, 0);
4192 return error;
4193 }
4194
4195 xfs_ilock(ip, XFS_ILOCK_EXCL);
4196
4197 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
4198 xfs_trans_ihold(tp, ip);
4199
4200 if ((attr_flags & ATTR_DMI) == 0) {
4201 ip->i_d.di_mode &= ~S_ISUID;
4202
4203 /*
4204 * Note that we don't have to worry about mandatory
4205 * file locking being disabled here because we only
4206 * clear the S_ISGID bit if the Group execute bit is
4207 * on, but if it was on then mandatory locking wouldn't
4208 * have been enabled.
4209 */
4210 if (ip->i_d.di_mode & S_IXGRP)
4211 ip->i_d.di_mode &= ~S_ISGID;
4212
4213 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
4214 }
4215 if (setprealloc)
4216 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
4217 else if (clrprealloc)
4218 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
4219
4220 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
4221 xfs_trans_set_sync(tp);
4222
Eric Sandeen1c72bf92007-05-08 13:48:42 +10004223 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224
4225 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4226
4227 return error;
4228}