blob: 718e18c142a5f513183703701c67ca50cea57811 [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"
51#include "xfs_refcache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include "xfs_trans_space.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "xfs_log_priv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110054#include "xfs_mac.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056STATIC int
57xfs_open(
58 bhv_desc_t *bdp,
59 cred_t *credp)
60{
61 int mode;
Nathan Scott67fcaa72006-06-09 17:00:52 +100062 bhv_vnode_t *vp = BHV_TO_VNODE(bdp);
Nathan Scott7d4fb402006-06-09 15:27:16 +100063 xfs_inode_t *ip = XFS_BHVTOI(bdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
66 return XFS_ERROR(EIO);
67
68 /*
69 * If it's a directory with any blocks, read-ahead block 0
70 * as we're almost certain to have the next operation be a read there.
71 */
Christoph Hellwig0432dab2005-09-02 16:46:51 +100072 if (VN_ISDIR(vp) && ip->i_d.di_nextents > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 mode = xfs_ilock_map_shared(ip);
74 if (ip->i_d.di_nextents > 0)
75 (void)xfs_da_reada_buf(NULL, ip, 0, XFS_DATA_FORK);
76 xfs_iunlock(ip, mode);
77 }
78 return 0;
79}
80
Nathan Scott7d4fb402006-06-09 15:27:16 +100081STATIC int
82xfs_close(
83 bhv_desc_t *bdp,
84 int flags,
85 lastclose_t lastclose,
86 cred_t *credp)
87{
Nathan Scott67fcaa72006-06-09 17:00:52 +100088 bhv_vnode_t *vp = BHV_TO_VNODE(bdp);
Nathan Scott7d4fb402006-06-09 15:27:16 +100089 xfs_inode_t *ip = XFS_BHVTOI(bdp);
Nathan Scott7d4fb402006-06-09 15:27:16 +100090
91 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
92 return XFS_ERROR(EIO);
93
94 if (lastclose != L_TRUE || !VN_ISREG(vp))
95 return 0;
96
97 /*
98 * If we previously truncated this file and removed old data in
99 * the process, we want to initiate "early" writeout on the last
100 * close. This is an attempt to combat the notorious NULL files
101 * problem which is particularly noticable from a truncate down,
102 * buffered (re-)write (delalloc), followed by a crash. What we
103 * are effectively doing here is significantly reducing the time
104 * window where we'd otherwise be exposed to that problem.
105 */
106 if (VUNTRUNCATE(vp) && VN_DIRTY(vp) && ip->i_delayed_blks > 0)
Nathan Scott67fcaa72006-06-09 17:00:52 +1000107 return bhv_vop_flush_pages(vp, 0, -1, XFS_B_ASYNC, FI_NONE);
108 return 0;
Nathan Scott7d4fb402006-06-09 15:27:16 +1000109}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111/*
112 * xfs_getattr
113 */
114STATIC int
115xfs_getattr(
116 bhv_desc_t *bdp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000117 bhv_vattr_t *vap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 int flags,
119 cred_t *credp)
120{
121 xfs_inode_t *ip;
122 xfs_mount_t *mp;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000123 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 vp = BHV_TO_VNODE(bdp);
126 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
127
128 ip = XFS_BHVTOI(bdp);
129 mp = ip->i_mount;
130
131 if (XFS_FORCED_SHUTDOWN(mp))
132 return XFS_ERROR(EIO);
133
134 if (!(flags & ATTR_LAZY))
135 xfs_ilock(ip, XFS_ILOCK_SHARED);
136
137 vap->va_size = ip->i_d.di_size;
138 if (vap->va_mask == XFS_AT_SIZE)
139 goto all_done;
140
141 vap->va_nblocks =
142 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
143 vap->va_nodeid = ip->i_ino;
144#if XFS_BIG_INUMS
145 vap->va_nodeid += mp->m_inoadd;
146#endif
147 vap->va_nlink = ip->i_d.di_nlink;
148
149 /*
150 * Quick exit for non-stat callers
151 */
152 if ((vap->va_mask &
153 ~(XFS_AT_SIZE|XFS_AT_FSID|XFS_AT_NODEID|
154 XFS_AT_NLINK|XFS_AT_BLKSIZE)) == 0)
155 goto all_done;
156
157 /*
158 * Copy from in-core inode.
159 */
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000160 vap->va_mode = ip->i_d.di_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 vap->va_uid = ip->i_d.di_uid;
162 vap->va_gid = ip->i_d.di_gid;
163 vap->va_projid = ip->i_d.di_projid;
164
165 /*
166 * Check vnode type block/char vs. everything else.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000168 switch (ip->i_d.di_mode & S_IFMT) {
169 case S_IFBLK:
170 case S_IFCHR:
171 vap->va_rdev = ip->i_df.if_u2.if_rdev;
172 vap->va_blocksize = BLKDEV_IOSIZE;
173 break;
174 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 vap->va_rdev = 0;
176
177 if (!(ip->i_d.di_flags & XFS_DIFLAG_REALTIME)) {
David Chinnere8c8b3a2005-11-02 10:33:05 +1100178 vap->va_blocksize = xfs_preferred_iosize(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 } else {
180
181 /*
182 * If the file blocks are being allocated from a
183 * realtime partition, then return the inode's
184 * realtime extent size or the realtime volume's
185 * extent size.
186 */
187 vap->va_blocksize = ip->i_d.di_extsize ?
188 (ip->i_d.di_extsize << mp->m_sb.sb_blocklog) :
189 (mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog);
190 }
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000191 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193
Nathan Scottca5ccbf2006-01-11 21:03:04 +1100194 vn_atime_to_timespec(vp, &vap->va_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 vap->va_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
196 vap->va_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
197 vap->va_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
198 vap->va_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
199
200 /*
201 * Exit for stat callers. See if any of the rest of the fields
202 * to be filled in are needed.
203 */
204 if ((vap->va_mask &
205 (XFS_AT_XFLAGS|XFS_AT_EXTSIZE|XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|
206 XFS_AT_GENCOUNT|XFS_AT_VCODE)) == 0)
207 goto all_done;
208
209 /*
210 * Convert di_flags to xflags.
211 */
212 vap->va_xflags = xfs_ip2xflags(ip);
213
214 /*
215 * Exit for inode revalidate. See if any of the rest of
216 * the fields to be filled in are needed.
217 */
218 if ((vap->va_mask &
219 (XFS_AT_EXTSIZE|XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|
220 XFS_AT_GENCOUNT|XFS_AT_VCODE)) == 0)
221 goto all_done;
222
223 vap->va_extsize = ip->i_d.di_extsize << mp->m_sb.sb_blocklog;
224 vap->va_nextents =
225 (ip->i_df.if_flags & XFS_IFEXTENTS) ?
226 ip->i_df.if_bytes / sizeof(xfs_bmbt_rec_t) :
227 ip->i_d.di_nextents;
228 if (ip->i_afp)
229 vap->va_anextents =
230 (ip->i_afp->if_flags & XFS_IFEXTENTS) ?
231 ip->i_afp->if_bytes / sizeof(xfs_bmbt_rec_t) :
232 ip->i_d.di_anextents;
233 else
234 vap->va_anextents = 0;
235 vap->va_gen = ip->i_d.di_gen;
236
237 all_done:
238 if (!(flags & ATTR_LAZY))
239 xfs_iunlock(ip, XFS_ILOCK_SHARED);
240 return 0;
241}
242
243
244/*
245 * xfs_setattr
246 */
247int
248xfs_setattr(
249 bhv_desc_t *bdp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000250 bhv_vattr_t *vap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 int flags,
252 cred_t *credp)
253{
254 xfs_inode_t *ip;
255 xfs_trans_t *tp;
256 xfs_mount_t *mp;
257 int mask;
258 int code;
259 uint lock_flags;
260 uint commit_flags=0;
261 uid_t uid=0, iuid=0;
262 gid_t gid=0, igid=0;
263 int timeflags = 0;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000264 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 xfs_prid_t projid=0, iprojid=0;
266 int mandlock_before, mandlock_after;
267 struct xfs_dquot *udqp, *gdqp, *olddquot1, *olddquot2;
268 int file_owner;
Dean Roehrich5fcbab32005-05-05 13:27:19 -0700269 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 vp = BHV_TO_VNODE(bdp);
272 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
273
274 if (vp->v_vfsp->vfs_flag & VFS_RDONLY)
275 return XFS_ERROR(EROFS);
276
277 /*
278 * Cannot set certain attributes.
279 */
280 mask = vap->va_mask;
281 if (mask & XFS_AT_NOSET) {
282 return XFS_ERROR(EINVAL);
283 }
284
285 ip = XFS_BHVTOI(bdp);
286 mp = ip->i_mount;
287
288 if (XFS_FORCED_SHUTDOWN(mp))
289 return XFS_ERROR(EIO);
290
291 /*
292 * Timestamps do not need to be logged and hence do not
293 * need to be done within a transaction.
294 */
295 if (mask & XFS_AT_UPDTIMES) {
296 ASSERT((mask & ~XFS_AT_UPDTIMES) == 0);
297 timeflags = ((mask & XFS_AT_UPDATIME) ? XFS_ICHGTIME_ACC : 0) |
298 ((mask & XFS_AT_UPDCTIME) ? XFS_ICHGTIME_CHG : 0) |
299 ((mask & XFS_AT_UPDMTIME) ? XFS_ICHGTIME_MOD : 0);
300 xfs_ichgtime(ip, timeflags);
301 return 0;
302 }
303
304 olddquot1 = olddquot2 = NULL;
305 udqp = gdqp = NULL;
306
307 /*
308 * If disk quotas is on, we make sure that the dquots do exist on disk,
309 * before we start any other transactions. Trying to do this later
310 * is messy. We don't care to take a readlock to look at the ids
311 * in inode here, because we can't hold it across the trans_reserve.
312 * If the IDs do change before we take the ilock, we're covered
313 * because the i_*dquot fields will get updated anyway.
314 */
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000315 if (XFS_IS_QUOTA_ON(mp) &&
316 (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 uint qflags = 0;
318
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000319 if ((mask & XFS_AT_UID) && XFS_IS_UQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 uid = vap->va_uid;
321 qflags |= XFS_QMOPT_UQUOTA;
322 } else {
323 uid = ip->i_d.di_uid;
324 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000325 if ((mask & XFS_AT_GID) && XFS_IS_GQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 gid = vap->va_gid;
327 qflags |= XFS_QMOPT_GQUOTA;
328 } else {
329 gid = ip->i_d.di_gid;
330 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000331 if ((mask & XFS_AT_PROJID) && XFS_IS_PQUOTA_ON(mp)) {
332 projid = vap->va_projid;
333 qflags |= XFS_QMOPT_PQUOTA;
334 } else {
335 projid = ip->i_d.di_projid;
336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /*
338 * We take a reference when we initialize udqp and gdqp,
339 * so it is important that we never blindly double trip on
340 * the same variable. See xfs_create() for an example.
341 */
342 ASSERT(udqp == NULL);
343 ASSERT(gdqp == NULL);
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000344 code = XFS_QM_DQVOPALLOC(mp, ip, uid, gid, projid, qflags,
345 &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (code)
Jesper Juhl014c2542006-01-15 02:37:08 +0100347 return code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349
350 /*
351 * For the other attributes, we acquire the inode lock and
352 * first do an error checking pass.
353 */
354 tp = NULL;
355 lock_flags = XFS_ILOCK_EXCL;
Dean Roehrich5fcbab32005-05-05 13:27:19 -0700356 if (flags & ATTR_NOLOCK)
357 need_iolock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (!(mask & XFS_AT_SIZE)) {
359 if ((mask != (XFS_AT_CTIME|XFS_AT_ATIME|XFS_AT_MTIME)) ||
360 (mp->m_flags & XFS_MOUNT_WSYNC)) {
361 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
362 commit_flags = 0;
363 if ((code = xfs_trans_reserve(tp, 0,
364 XFS_ICHANGE_LOG_RES(mp), 0,
365 0, 0))) {
366 lock_flags = 0;
367 goto error_return;
368 }
369 }
370 } else {
371 if (DM_EVENT_ENABLED (vp->v_vfsp, ip, DM_EVENT_TRUNCATE) &&
372 !(flags & ATTR_DMI)) {
373 int dmflags = AT_DELAY_FLAG(flags) | DM_SEM_FLAG_WR;
374 code = XFS_SEND_DATA(mp, DM_EVENT_TRUNCATE, vp,
375 vap->va_size, 0, dmflags, NULL);
376 if (code) {
377 lock_flags = 0;
378 goto error_return;
379 }
380 }
381 if (need_iolock)
382 lock_flags |= XFS_IOLOCK_EXCL;
383 }
384
385 xfs_ilock(ip, lock_flags);
386
387 /* boolean: are we the file owner? */
388 file_owner = (current_fsuid(credp) == ip->i_d.di_uid);
389
390 /*
391 * Change various properties of a file.
392 * Only the owner or users with CAP_FOWNER
393 * capability may do these things.
394 */
395 if (mask &
396 (XFS_AT_MODE|XFS_AT_XFLAGS|XFS_AT_EXTSIZE|XFS_AT_UID|
397 XFS_AT_GID|XFS_AT_PROJID)) {
398 /*
399 * CAP_FOWNER overrides the following restrictions:
400 *
401 * The user ID of the calling process must be equal
402 * to the file owner ID, except in cases where the
403 * CAP_FSETID capability is applicable.
404 */
405 if (!file_owner && !capable(CAP_FOWNER)) {
406 code = XFS_ERROR(EPERM);
407 goto error_return;
408 }
409
410 /*
411 * CAP_FSETID overrides the following restrictions:
412 *
413 * The effective user ID of the calling process shall match
414 * the file owner when setting the set-user-ID and
415 * set-group-ID bits on that file.
416 *
417 * The effective group ID or one of the supplementary group
418 * IDs of the calling process shall match the group owner of
419 * the file when setting the set-group-ID bit on that file
420 */
421 if (mask & XFS_AT_MODE) {
422 mode_t m = 0;
423
424 if ((vap->va_mode & S_ISUID) && !file_owner)
425 m |= S_ISUID;
426 if ((vap->va_mode & S_ISGID) &&
427 !in_group_p((gid_t)ip->i_d.di_gid))
428 m |= S_ISGID;
429#if 0
430 /* Linux allows this, Irix doesn't. */
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000431 if ((vap->va_mode & S_ISVTX) && !VN_ISDIR(vp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 m |= S_ISVTX;
433#endif
434 if (m && !capable(CAP_FSETID))
435 vap->va_mode &= ~m;
436 }
437 }
438
439 /*
440 * Change file ownership. Must be the owner or privileged.
441 * If the system was configured with the "restricted_chown"
442 * option, the owner is not permitted to give away the file,
443 * and can change the group id only to a group of which he
444 * or she is a member.
445 */
446 if (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID)) {
447 /*
448 * These IDs could have changed since we last looked at them.
449 * But, we're assured that if the ownership did change
450 * while we didn't have the inode locked, inode's dquot(s)
451 * would have changed also.
452 */
453 iuid = ip->i_d.di_uid;
454 iprojid = ip->i_d.di_projid;
455 igid = ip->i_d.di_gid;
456 gid = (mask & XFS_AT_GID) ? vap->va_gid : igid;
457 uid = (mask & XFS_AT_UID) ? vap->va_uid : iuid;
458 projid = (mask & XFS_AT_PROJID) ? (xfs_prid_t)vap->va_projid :
459 iprojid;
460
461 /*
462 * CAP_CHOWN overrides the following restrictions:
463 *
464 * If _POSIX_CHOWN_RESTRICTED is defined, this capability
465 * shall override the restriction that a process cannot
466 * change the user ID of a file it owns and the restriction
467 * that the group ID supplied to the chown() function
468 * shall be equal to either the group ID or one of the
469 * supplementary group IDs of the calling process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 */
471 if (restricted_chown &&
472 (iuid != uid || (igid != gid &&
473 !in_group_p((gid_t)gid))) &&
474 !capable(CAP_CHOWN)) {
475 code = XFS_ERROR(EPERM);
476 goto error_return;
477 }
478 /*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000479 * Do a quota reservation only if uid/projid/gid is actually
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 * going to change.
481 */
482 if ((XFS_IS_UQUOTA_ON(mp) && iuid != uid) ||
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000483 (XFS_IS_PQUOTA_ON(mp) && iprojid != projid) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 (XFS_IS_GQUOTA_ON(mp) && igid != gid)) {
485 ASSERT(tp);
486 code = XFS_QM_DQVOPCHOWNRESV(mp, tp, ip, udqp, gdqp,
487 capable(CAP_FOWNER) ?
488 XFS_QMOPT_FORCE_RES : 0);
489 if (code) /* out of quota */
490 goto error_return;
491 }
492 }
493
494 /*
495 * Truncate file. Must have write permission and not be a directory.
496 */
497 if (mask & XFS_AT_SIZE) {
498 /* Short circuit the truncate case for zero length files */
499 if ((vap->va_size == 0) &&
500 (ip->i_d.di_size == 0) && (ip->i_d.di_nextents == 0)) {
501 xfs_iunlock(ip, XFS_ILOCK_EXCL);
502 lock_flags &= ~XFS_ILOCK_EXCL;
503 if (mask & XFS_AT_CTIME)
504 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
505 code = 0;
506 goto error_return;
507 }
508
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000509 if (VN_ISDIR(vp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 code = XFS_ERROR(EISDIR);
511 goto error_return;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000512 } else if (!VN_ISREG(vp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 code = XFS_ERROR(EINVAL);
514 goto error_return;
515 }
516 /*
517 * Make sure that the dquots are attached to the inode.
518 */
519 if ((code = XFS_QM_DQATTACH(mp, ip, XFS_QMOPT_ILOCKED)))
520 goto error_return;
521 }
522
523 /*
524 * Change file access or modified times.
525 */
526 if (mask & (XFS_AT_ATIME|XFS_AT_MTIME)) {
527 if (!file_owner) {
528 if ((flags & ATTR_UTIME) &&
529 !capable(CAP_FOWNER)) {
530 code = XFS_ERROR(EPERM);
531 goto error_return;
532 }
533 }
534 }
535
536 /*
537 * Change extent size or realtime flag.
538 */
539 if (mask & (XFS_AT_EXTSIZE|XFS_AT_XFLAGS)) {
540 /*
541 * Can't change extent size if any extents are allocated.
542 */
Eric Sandeene94af022005-11-02 15:10:41 +1100543 if (ip->i_d.di_nextents && (mask & XFS_AT_EXTSIZE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
545 vap->va_extsize) ) {
546 code = XFS_ERROR(EINVAL); /* EFBIG? */
547 goto error_return;
548 }
549
550 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 * Can't change realtime flag if any extents are allocated.
552 */
Eric Sandeene94af022005-11-02 15:10:41 +1100553 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
554 (mask & XFS_AT_XFLAGS) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 (ip->i_d.di_flags & XFS_DIFLAG_REALTIME) !=
556 (vap->va_xflags & XFS_XFLAG_REALTIME)) {
557 code = XFS_ERROR(EINVAL); /* EFBIG? */
558 goto error_return;
559 }
560 /*
561 * Extent size must be a multiple of the appropriate block
562 * size, if set at all.
563 */
564 if ((mask & XFS_AT_EXTSIZE) && vap->va_extsize != 0) {
565 xfs_extlen_t size;
566
567 if ((ip->i_d.di_flags & XFS_DIFLAG_REALTIME) ||
568 ((mask & XFS_AT_XFLAGS) &&
569 (vap->va_xflags & XFS_XFLAG_REALTIME))) {
570 size = mp->m_sb.sb_rextsize <<
571 mp->m_sb.sb_blocklog;
572 } else {
573 size = mp->m_sb.sb_blocksize;
574 }
575 if (vap->va_extsize % size) {
576 code = XFS_ERROR(EINVAL);
577 goto error_return;
578 }
579 }
580 /*
581 * If realtime flag is set then must have realtime data.
582 */
583 if ((mask & XFS_AT_XFLAGS) &&
584 (vap->va_xflags & XFS_XFLAG_REALTIME)) {
585 if ((mp->m_sb.sb_rblocks == 0) ||
586 (mp->m_sb.sb_rextsize == 0) ||
587 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize)) {
588 code = XFS_ERROR(EINVAL);
589 goto error_return;
590 }
591 }
592
593 /*
594 * Can't modify an immutable/append-only file unless
595 * we have appropriate permission.
596 */
597 if ((mask & XFS_AT_XFLAGS) &&
598 (ip->i_d.di_flags &
599 (XFS_DIFLAG_IMMUTABLE|XFS_DIFLAG_APPEND) ||
600 (vap->va_xflags &
601 (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
602 !capable(CAP_LINUX_IMMUTABLE)) {
603 code = XFS_ERROR(EPERM);
604 goto error_return;
605 }
606 }
607
608 /*
609 * Now we can make the changes. Before we join the inode
610 * to the transaction, if XFS_AT_SIZE is set then take care of
611 * the part of the truncation that must be done without the
612 * inode lock. This needs to be done before joining the inode
613 * to the transaction, because the inode cannot be unlocked
614 * once it is a part of the transaction.
615 */
616 if (mask & XFS_AT_SIZE) {
617 code = 0;
Eric Sandeen374e2ac2005-11-02 15:07:34 +1100618 if ((vap->va_size > ip->i_d.di_size) &&
619 (flags & ATTR_NOSIZETOK) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 code = xfs_igrow_start(ip, vap->va_size, credp);
Eric Sandeen374e2ac2005-11-02 15:07:34 +1100621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Yingping Lu9fa80462006-03-22 12:44:35 +1100623 vn_iowait(vp); /* wait for the completion of any pending DIOs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (!code)
625 code = xfs_itruncate_data(ip, vap->va_size);
626 if (code) {
627 ASSERT(tp == NULL);
628 lock_flags &= ~XFS_ILOCK_EXCL;
629 ASSERT(lock_flags == XFS_IOLOCK_EXCL);
630 goto error_return;
631 }
632 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_SIZE);
633 if ((code = xfs_trans_reserve(tp, 0,
634 XFS_ITRUNCATE_LOG_RES(mp), 0,
635 XFS_TRANS_PERM_LOG_RES,
636 XFS_ITRUNCATE_LOG_COUNT))) {
637 xfs_trans_cancel(tp, 0);
638 if (need_iolock)
639 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
640 return code;
641 }
642 commit_flags = XFS_TRANS_RELEASE_LOG_RES;
643 xfs_ilock(ip, XFS_ILOCK_EXCL);
644 }
645
646 if (tp) {
647 xfs_trans_ijoin(tp, ip, lock_flags);
648 xfs_trans_ihold(tp, ip);
649 }
650
651 /* determine whether mandatory locking mode changes */
652 mandlock_before = MANDLOCK(vp, ip->i_d.di_mode);
653
654 /*
655 * Truncate file. Must have write permission and not be a directory.
656 */
657 if (mask & XFS_AT_SIZE) {
658 if (vap->va_size > ip->i_d.di_size) {
659 xfs_igrow_finish(tp, ip, vap->va_size,
660 !(flags & ATTR_DMI));
661 } else if ((vap->va_size <= ip->i_d.di_size) ||
662 ((vap->va_size == 0) && ip->i_d.di_nextents)) {
663 /*
664 * signal a sync transaction unless
665 * we're truncating an already unlinked
666 * file on a wsync filesystem
667 */
668 code = xfs_itruncate_finish(&tp, ip,
669 (xfs_fsize_t)vap->va_size,
670 XFS_DATA_FORK,
671 ((ip->i_d.di_nlink != 0 ||
672 !(mp->m_flags & XFS_MOUNT_WSYNC))
673 ? 1 : 0));
Nathan Scott7d4fb402006-06-09 15:27:16 +1000674 if (code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 goto abort_return;
Nathan Scott7d4fb402006-06-09 15:27:16 +1000676 /*
677 * Truncated "down", so we're removing references
678 * to old data here - if we now delay flushing for
679 * a long time, we expose ourselves unduly to the
680 * notorious NULL files problem. So, we mark this
681 * vnode and flush it when the file is closed, and
682 * do not wait the usual (long) time for writeout.
683 */
684 VTRUNCATE(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686 /*
687 * Have to do this even if the file's size doesn't change.
688 */
689 timeflags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
690 }
691
692 /*
693 * Change file access modes.
694 */
695 if (mask & XFS_AT_MODE) {
696 ip->i_d.di_mode &= S_IFMT;
697 ip->i_d.di_mode |= vap->va_mode & ~S_IFMT;
698
699 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
700 timeflags |= XFS_ICHGTIME_CHG;
701 }
702
703 /*
704 * Change file ownership. Must be the owner or privileged.
705 * If the system was configured with the "restricted_chown"
706 * option, the owner is not permitted to give away the file,
707 * and can change the group id only to a group of which he
708 * or she is a member.
709 */
710 if (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID)) {
711 /*
712 * CAP_FSETID overrides the following restrictions:
713 *
714 * The set-user-ID and set-group-ID bits of a file will be
715 * cleared upon successful return from chown()
716 */
717 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
718 !capable(CAP_FSETID)) {
719 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
720 }
721
722 /*
723 * Change the ownerships and register quota modifications
724 * in the transaction.
725 */
726 if (iuid != uid) {
727 if (XFS_IS_UQUOTA_ON(mp)) {
728 ASSERT(mask & XFS_AT_UID);
729 ASSERT(udqp);
730 olddquot1 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
731 &ip->i_udquot, udqp);
732 }
733 ip->i_d.di_uid = uid;
734 }
735 if (igid != gid) {
736 if (XFS_IS_GQUOTA_ON(mp)) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000737 ASSERT(!XFS_IS_PQUOTA_ON(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 ASSERT(mask & XFS_AT_GID);
739 ASSERT(gdqp);
740 olddquot2 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
741 &ip->i_gdquot, gdqp);
742 }
743 ip->i_d.di_gid = gid;
744 }
745 if (iprojid != projid) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000746 if (XFS_IS_PQUOTA_ON(mp)) {
747 ASSERT(!XFS_IS_GQUOTA_ON(mp));
748 ASSERT(mask & XFS_AT_PROJID);
749 ASSERT(gdqp);
750 olddquot2 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
751 &ip->i_gdquot, gdqp);
752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 ip->i_d.di_projid = projid;
754 /*
755 * We may have to rev the inode as well as
756 * the superblock version number since projids didn't
757 * exist before DINODE_VERSION_2 and SB_VERSION_NLINK.
758 */
759 if (ip->i_d.di_version == XFS_DINODE_VERSION_1)
760 xfs_bump_ino_vers2(tp, ip);
761 }
762
763 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
764 timeflags |= XFS_ICHGTIME_CHG;
765 }
766
767
768 /*
769 * Change file access or modified times.
770 */
771 if (mask & (XFS_AT_ATIME|XFS_AT_MTIME)) {
772 if (mask & XFS_AT_ATIME) {
773 ip->i_d.di_atime.t_sec = vap->va_atime.tv_sec;
774 ip->i_d.di_atime.t_nsec = vap->va_atime.tv_nsec;
775 ip->i_update_core = 1;
776 timeflags &= ~XFS_ICHGTIME_ACC;
777 }
778 if (mask & XFS_AT_MTIME) {
779 ip->i_d.di_mtime.t_sec = vap->va_mtime.tv_sec;
780 ip->i_d.di_mtime.t_nsec = vap->va_mtime.tv_nsec;
781 timeflags &= ~XFS_ICHGTIME_MOD;
782 timeflags |= XFS_ICHGTIME_CHG;
783 }
784 if (tp && (flags & ATTR_UTIME))
785 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
786 }
787
788 /*
789 * Change XFS-added attributes.
790 */
791 if (mask & (XFS_AT_EXTSIZE|XFS_AT_XFLAGS)) {
792 if (mask & XFS_AT_EXTSIZE) {
793 /*
794 * Converting bytes to fs blocks.
795 */
796 ip->i_d.di_extsize = vap->va_extsize >>
797 mp->m_sb.sb_blocklog;
798 }
799 if (mask & XFS_AT_XFLAGS) {
800 uint di_flags;
801
802 /* can't set PREALLOC this way, just preserve it */
803 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
804 if (vap->va_xflags & XFS_XFLAG_IMMUTABLE)
805 di_flags |= XFS_DIFLAG_IMMUTABLE;
806 if (vap->va_xflags & XFS_XFLAG_APPEND)
807 di_flags |= XFS_DIFLAG_APPEND;
808 if (vap->va_xflags & XFS_XFLAG_SYNC)
809 di_flags |= XFS_DIFLAG_SYNC;
810 if (vap->va_xflags & XFS_XFLAG_NOATIME)
811 di_flags |= XFS_DIFLAG_NOATIME;
812 if (vap->va_xflags & XFS_XFLAG_NODUMP)
813 di_flags |= XFS_DIFLAG_NODUMP;
Nathan Scott365ca832005-06-21 15:39:12 +1000814 if (vap->va_xflags & XFS_XFLAG_PROJINHERIT)
815 di_flags |= XFS_DIFLAG_PROJINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000816 if (vap->va_xflags & XFS_XFLAG_NODEFRAG)
817 di_flags |= XFS_DIFLAG_NODEFRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if ((ip->i_d.di_mode & S_IFMT) == S_IFDIR) {
819 if (vap->va_xflags & XFS_XFLAG_RTINHERIT)
820 di_flags |= XFS_DIFLAG_RTINHERIT;
821 if (vap->va_xflags & XFS_XFLAG_NOSYMLINKS)
822 di_flags |= XFS_DIFLAG_NOSYMLINKS;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100823 if (vap->va_xflags & XFS_XFLAG_EXTSZINHERIT)
824 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
825 } else if ((ip->i_d.di_mode & S_IFMT) == S_IFREG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (vap->va_xflags & XFS_XFLAG_REALTIME) {
827 di_flags |= XFS_DIFLAG_REALTIME;
828 ip->i_iocore.io_flags |= XFS_IOCORE_RT;
829 } else {
830 ip->i_iocore.io_flags &= ~XFS_IOCORE_RT;
831 }
Nathan Scottdd9f4382006-01-11 15:28:28 +1100832 if (vap->va_xflags & XFS_XFLAG_EXTSIZE)
833 di_flags |= XFS_DIFLAG_EXTSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
835 ip->i_d.di_flags = di_flags;
836 }
837 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
838 timeflags |= XFS_ICHGTIME_CHG;
839 }
840
841 /*
842 * Change file inode change time only if XFS_AT_CTIME set
843 * AND we have been called by a DMI function.
844 */
845
846 if ( (flags & ATTR_DMI) && (mask & XFS_AT_CTIME) ) {
847 ip->i_d.di_ctime.t_sec = vap->va_ctime.tv_sec;
848 ip->i_d.di_ctime.t_nsec = vap->va_ctime.tv_nsec;
849 ip->i_update_core = 1;
850 timeflags &= ~XFS_ICHGTIME_CHG;
851 }
852
853 /*
854 * Send out timestamp changes that need to be set to the
855 * current time. Not done when called by a DMI function.
856 */
857 if (timeflags && !(flags & ATTR_DMI))
858 xfs_ichgtime(ip, timeflags);
859
860 XFS_STATS_INC(xs_ig_attrchg);
861
862 /*
863 * If this is a synchronous mount, make sure that the
864 * transaction goes to disk before returning to the user.
865 * This is slightly sub-optimal in that truncates require
Nathan Scottc41564b2006-03-29 08:55:14 +1000866 * two sync transactions instead of one for wsync filesystems.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 * One for the truncate and one for the timestamps since we
868 * don't want to change the timestamps unless we're sure the
869 * truncate worked. Truncates are less than 1% of the laddis
870 * mix so this probably isn't worth the trouble to optimize.
871 */
872 code = 0;
873 if (tp) {
874 if (mp->m_flags & XFS_MOUNT_WSYNC)
875 xfs_trans_set_sync(tp);
876
877 code = xfs_trans_commit(tp, commit_flags, NULL);
878 }
879
880 /*
881 * If the (regular) file's mandatory locking mode changed, then
882 * notify the vnode. We do this under the inode lock to prevent
883 * racing calls to vop_vnode_change.
884 */
885 mandlock_after = MANDLOCK(vp, ip->i_d.di_mode);
886 if (mandlock_before != mandlock_after) {
Nathan Scott67fcaa72006-06-09 17:00:52 +1000887 bhv_vop_vnode_change(vp, VCHANGE_FLAGS_ENF_LOCKING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 mandlock_after);
889 }
890
891 xfs_iunlock(ip, lock_flags);
892
893 /*
894 * Release any dquot(s) the inode had kept before chown.
895 */
896 XFS_QM_DQRELE(mp, olddquot1);
897 XFS_QM_DQRELE(mp, olddquot2);
898 XFS_QM_DQRELE(mp, udqp);
899 XFS_QM_DQRELE(mp, gdqp);
900
901 if (code) {
902 return code;
903 }
904
905 if (DM_EVENT_ENABLED(vp->v_vfsp, ip, DM_EVENT_ATTRIBUTE) &&
906 !(flags & ATTR_DMI)) {
907 (void) XFS_SEND_NAMESP(mp, DM_EVENT_ATTRIBUTE, vp, DM_RIGHT_NULL,
908 NULL, DM_RIGHT_NULL, NULL, NULL,
909 0, 0, AT_DELAY_FLAG(flags));
910 }
911 return 0;
912
913 abort_return:
914 commit_flags |= XFS_TRANS_ABORT;
915 /* FALLTHROUGH */
916 error_return:
917 XFS_QM_DQRELE(mp, udqp);
918 XFS_QM_DQRELE(mp, gdqp);
919 if (tp) {
920 xfs_trans_cancel(tp, commit_flags);
921 }
922 if (lock_flags != 0) {
923 xfs_iunlock(ip, lock_flags);
924 }
925 return code;
926}
927
928
929/*
930 * xfs_access
931 * Null conversion from vnode mode bits to inode mode bits, as in efs.
932 */
933STATIC int
934xfs_access(
935 bhv_desc_t *bdp,
936 int mode,
937 cred_t *credp)
938{
939 xfs_inode_t *ip;
940 int error;
941
942 vn_trace_entry(BHV_TO_VNODE(bdp), __FUNCTION__,
943 (inst_t *)__return_address);
944
945 ip = XFS_BHVTOI(bdp);
946 xfs_ilock(ip, XFS_ILOCK_SHARED);
947 error = xfs_iaccess(ip, mode, credp);
948 xfs_iunlock(ip, XFS_ILOCK_SHARED);
949 return error;
950}
951
952
953/*
Nathan Scott7d4fb402006-06-09 15:27:16 +1000954 * The maximum pathlen is 1024 bytes. Since the minimum file system
955 * blocksize is 512 bytes, we can get a max of 2 extents back from
956 * bmapi.
957 */
958#define SYMLINK_MAPS 2
959
960/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 * xfs_readlink
962 *
963 */
964STATIC int
965xfs_readlink(
966 bhv_desc_t *bdp,
967 uio_t *uiop,
968 int ioflags,
969 cred_t *credp)
970{
971 xfs_inode_t *ip;
972 int count;
973 xfs_off_t offset;
974 int pathlen;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000975 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 int error = 0;
977 xfs_mount_t *mp;
978 int nmaps;
979 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
980 xfs_daddr_t d;
981 int byte_cnt;
982 int n;
983 xfs_buf_t *bp;
984
985 vp = BHV_TO_VNODE(bdp);
986 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
987
988 ip = XFS_BHVTOI(bdp);
989 mp = ip->i_mount;
990
991 if (XFS_FORCED_SHUTDOWN(mp))
992 return XFS_ERROR(EIO);
993
994 xfs_ilock(ip, XFS_ILOCK_SHARED);
995
996 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFLNK);
997
998 offset = uiop->uio_offset;
999 count = uiop->uio_resid;
1000
1001 if (offset < 0) {
1002 error = XFS_ERROR(EINVAL);
1003 goto error_return;
1004 }
1005 if (count <= 0) {
1006 error = 0;
1007 goto error_return;
1008 }
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 /*
1011 * See if the symlink is stored inline.
1012 */
1013 pathlen = (int)ip->i_d.di_size;
1014
1015 if (ip->i_df.if_flags & XFS_IFINLINE) {
Vlad Apostolov70a50522006-11-11 18:04:41 +11001016 error = xfs_uio_read(ip->i_df.if_u1.if_data, pathlen, uiop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018 else {
1019 /*
1020 * Symlink not inline. Call bmap to get it in.
1021 */
1022 nmaps = SYMLINK_MAPS;
1023
1024 error = xfs_bmapi(NULL, ip, 0, XFS_B_TO_FSB(mp, pathlen),
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001025 0, NULL, 0, mval, &nmaps, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 if (error) {
1028 goto error_return;
1029 }
1030
1031 for (n = 0; n < nmaps; n++) {
1032 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
1033 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
1034 bp = xfs_buf_read(mp->m_ddev_targp, d,
1035 BTOBB(byte_cnt), 0);
1036 error = XFS_BUF_GETERROR(bp);
1037 if (error) {
1038 xfs_ioerror_alert("xfs_readlink",
1039 ip->i_mount, bp, XFS_BUF_ADDR(bp));
1040 xfs_buf_relse(bp);
1041 goto error_return;
1042 }
1043 if (pathlen < byte_cnt)
1044 byte_cnt = pathlen;
1045 pathlen -= byte_cnt;
1046
Vlad Apostolov70a50522006-11-11 18:04:41 +11001047 error = xfs_uio_read(XFS_BUF_PTR(bp), byte_cnt, uiop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 xfs_buf_relse (bp);
1049 }
1050
1051 }
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053error_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return error;
1056}
1057
1058
1059/*
1060 * xfs_fsync
1061 *
1062 * This is called to sync the inode and its data out to disk.
1063 * We need to hold the I/O lock while flushing the data, and
1064 * the inode lock while flushing the inode. The inode lock CANNOT
1065 * be held while flushing the data, so acquire after we're done
1066 * with that.
1067 */
1068STATIC int
1069xfs_fsync(
1070 bhv_desc_t *bdp,
1071 int flag,
1072 cred_t *credp,
1073 xfs_off_t start,
1074 xfs_off_t stop)
1075{
1076 xfs_inode_t *ip;
1077 xfs_trans_t *tp;
1078 int error;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001079 int log_flushed = 0, changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 vn_trace_entry(BHV_TO_VNODE(bdp),
1082 __FUNCTION__, (inst_t *)__return_address);
1083
1084 ip = XFS_BHVTOI(bdp);
1085
1086 ASSERT(start >= 0 && stop >= -1);
1087
1088 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
1089 return XFS_ERROR(EIO);
1090
1091 /*
1092 * We always need to make sure that the required inode state
1093 * is safe on disk. The vnode might be clean but because
1094 * of committed transactions that haven't hit the disk yet.
1095 * Likewise, there could be unflushed non-transactional
1096 * changes to the inode core that have to go to disk.
1097 *
1098 * The following code depends on one assumption: that
1099 * any transaction that changes an inode logs the core
1100 * because it has to change some field in the inode core
1101 * (typically nextents or nblocks). That assumption
1102 * implies that any transactions against an inode will
1103 * catch any non-transactional updates. If inode-altering
1104 * transactions exist that violate this assumption, the
1105 * code breaks. Right now, it figures that if the involved
1106 * update_* field is clear and the inode is unpinned, the
1107 * inode is clean. Either it's been flushed or it's been
1108 * committed and the commit has hit the disk unpinning the inode.
1109 * (Note that xfs_inode_item_format() called at commit clears
1110 * the update_* fields.)
1111 */
1112 xfs_ilock(ip, XFS_ILOCK_SHARED);
1113
1114 /* If we are flushing data then we care about update_size
1115 * being set, otherwise we care about update_core
1116 */
1117 if ((flag & FSYNC_DATA) ?
1118 (ip->i_update_size == 0) :
1119 (ip->i_update_core == 0)) {
1120 /*
1121 * Timestamps/size haven't changed since last inode
1122 * flush or inode transaction commit. That means
1123 * either nothing got written or a transaction
1124 * committed which caught the updates. If the
1125 * latter happened and the transaction hasn't
1126 * hit the disk yet, the inode will be still
1127 * be pinned. If it is, force the log.
1128 */
1129
1130 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1131
1132 if (xfs_ipincount(ip)) {
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001133 _xfs_log_force(ip->i_mount, (xfs_lsn_t)0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 XFS_LOG_FORCE |
1135 ((flag & FSYNC_WAIT)
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001136 ? XFS_LOG_SYNC : 0),
1137 &log_flushed);
1138 } else {
1139 /*
1140 * If the inode is not pinned and nothing
1141 * has changed we don't need to flush the
1142 * cache.
1143 */
1144 changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 }
1146 error = 0;
1147 } else {
1148 /*
1149 * Kick off a transaction to log the inode
1150 * core to get the updates. Make it
1151 * sync if FSYNC_WAIT is passed in (which
1152 * is done by everybody but specfs). The
1153 * sync transaction will also force the log.
1154 */
1155 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1156 tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_FSYNC_TS);
1157 if ((error = xfs_trans_reserve(tp, 0,
1158 XFS_FSYNC_TS_LOG_RES(ip->i_mount),
1159 0, 0, 0))) {
1160 xfs_trans_cancel(tp, 0);
1161 return error;
1162 }
1163 xfs_ilock(ip, XFS_ILOCK_EXCL);
1164
1165 /*
1166 * Note - it's possible that we might have pushed
1167 * ourselves out of the way during trans_reserve
1168 * which would flush the inode. But there's no
1169 * guarantee that the inode buffer has actually
1170 * gone out yet (it's delwri). Plus the buffer
1171 * could be pinned anyway if it's part of an
1172 * inode in another recent transaction. So we
1173 * play it safe and fire off the transaction anyway.
1174 */
1175 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1176 xfs_trans_ihold(tp, ip);
1177 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1178 if (flag & FSYNC_WAIT)
1179 xfs_trans_set_sync(tp);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001180 error = _xfs_trans_commit(tp, 0, NULL, &log_flushed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1183 }
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001184
1185 if ((ip->i_mount->m_flags & XFS_MOUNT_BARRIER) && changed) {
1186 /*
1187 * If the log write didn't issue an ordered tag we need
1188 * to flush the disk cache for the data device now.
1189 */
1190 if (!log_flushed)
1191 xfs_blkdev_issue_flush(ip->i_mount->m_ddev_targp);
1192
1193 /*
1194 * If this inode is on the RT dev we need to flush that
Nathan Scottc41564b2006-03-29 08:55:14 +10001195 * cache as well.
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001196 */
1197 if (ip->i_d.di_flags & XFS_DIFLAG_REALTIME)
1198 xfs_blkdev_issue_flush(ip->i_mount->m_rtdev_targp);
1199 }
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 return error;
1202}
1203
1204/*
1205 * This is called by xfs_inactive to free any blocks beyond eof,
1206 * when the link count isn't zero.
1207 */
1208STATIC int
1209xfs_inactive_free_eofblocks(
1210 xfs_mount_t *mp,
1211 xfs_inode_t *ip)
1212{
1213 xfs_trans_t *tp;
1214 int error;
1215 xfs_fileoff_t end_fsb;
1216 xfs_fileoff_t last_fsb;
1217 xfs_filblks_t map_len;
1218 int nimaps;
1219 xfs_bmbt_irec_t imap;
1220
1221 /*
1222 * Figure out if there are any blocks beyond the end
1223 * of the file. If not, then there is nothing to do.
1224 */
1225 end_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)ip->i_d.di_size));
1226 last_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
1227 map_len = last_fsb - end_fsb;
1228 if (map_len <= 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01001229 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 nimaps = 1;
1232 xfs_ilock(ip, XFS_ILOCK_SHARED);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001233 error = XFS_BMAPI(mp, NULL, &ip->i_iocore, end_fsb, map_len, 0,
1234 NULL, 0, &imap, &nimaps, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1236
1237 if (!error && (nimaps != 0) &&
Yingping Lu68bdb6e2006-01-11 15:38:31 +11001238 (imap.br_startblock != HOLESTARTBLOCK ||
1239 ip->i_delayed_blks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 /*
1241 * Attach the dquots to the inode up front.
1242 */
1243 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001244 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 /*
1247 * There are blocks after the end of file.
1248 * Free them up now by truncating the file to
1249 * its current size.
1250 */
1251 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1252
1253 /*
1254 * Do the xfs_itruncate_start() call before
1255 * reserving any log space because
1256 * itruncate_start will call into the buffer
1257 * cache and we can't
1258 * do that within a transaction.
1259 */
1260 xfs_ilock(ip, XFS_IOLOCK_EXCL);
1261 xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE,
1262 ip->i_d.di_size);
1263
1264 error = xfs_trans_reserve(tp, 0,
1265 XFS_ITRUNCATE_LOG_RES(mp),
1266 0, XFS_TRANS_PERM_LOG_RES,
1267 XFS_ITRUNCATE_LOG_COUNT);
1268 if (error) {
1269 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1270 xfs_trans_cancel(tp, 0);
1271 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001272 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274
1275 xfs_ilock(ip, XFS_ILOCK_EXCL);
1276 xfs_trans_ijoin(tp, ip,
1277 XFS_IOLOCK_EXCL |
1278 XFS_ILOCK_EXCL);
1279 xfs_trans_ihold(tp, ip);
1280
1281 error = xfs_itruncate_finish(&tp, ip,
1282 ip->i_d.di_size,
1283 XFS_DATA_FORK,
1284 0);
1285 /*
1286 * If we get an error at this point we
1287 * simply don't bother truncating the file.
1288 */
1289 if (error) {
1290 xfs_trans_cancel(tp,
1291 (XFS_TRANS_RELEASE_LOG_RES |
1292 XFS_TRANS_ABORT));
1293 } else {
1294 error = xfs_trans_commit(tp,
1295 XFS_TRANS_RELEASE_LOG_RES,
1296 NULL);
1297 }
1298 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1299 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001300 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
1303/*
1304 * Free a symlink that has blocks associated with it.
1305 */
1306STATIC int
1307xfs_inactive_symlink_rmt(
1308 xfs_inode_t *ip,
1309 xfs_trans_t **tpp)
1310{
1311 xfs_buf_t *bp;
1312 int committed;
1313 int done;
1314 int error;
1315 xfs_fsblock_t first_block;
1316 xfs_bmap_free_t free_list;
1317 int i;
1318 xfs_mount_t *mp;
1319 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1320 int nmaps;
1321 xfs_trans_t *ntp;
1322 int size;
1323 xfs_trans_t *tp;
1324
1325 tp = *tpp;
1326 mp = ip->i_mount;
1327 ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip));
1328 /*
1329 * We're freeing a symlink that has some
1330 * blocks allocated to it. Free the
1331 * blocks here. We know that we've got
1332 * either 1 or 2 extents and that we can
1333 * free them all in one bunmapi call.
1334 */
1335 ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
1336 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
1337 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
1338 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1339 xfs_trans_cancel(tp, 0);
1340 *tpp = NULL;
1341 return error;
1342 }
1343 /*
1344 * Lock the inode, fix the size, and join it to the transaction.
1345 * Hold it so in the normal path, we still have it locked for
1346 * the second transaction. In the error paths we need it
1347 * held so the cancel won't rele it, see below.
1348 */
1349 xfs_ilock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1350 size = (int)ip->i_d.di_size;
1351 ip->i_d.di_size = 0;
1352 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1353 xfs_trans_ihold(tp, ip);
1354 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1355 /*
1356 * Find the block(s) so we can inval and unmap them.
1357 */
1358 done = 0;
1359 XFS_BMAP_INIT(&free_list, &first_block);
Tobias Klausere8c96f82006-03-24 03:15:34 -08001360 nmaps = ARRAY_SIZE(mval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if ((error = xfs_bmapi(tp, ip, 0, XFS_B_TO_FSB(mp, size),
1362 XFS_BMAPI_METADATA, &first_block, 0, mval, &nmaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001363 &free_list, NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 goto error0;
1365 /*
1366 * Invalidate the block(s).
1367 */
1368 for (i = 0; i < nmaps; i++) {
1369 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
1370 XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
1371 XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
1372 xfs_trans_binval(tp, bp);
1373 }
1374 /*
1375 * Unmap the dead block(s) to the free_list.
1376 */
1377 if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001378 &first_block, &free_list, NULL, &done)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 goto error1;
1380 ASSERT(done);
1381 /*
1382 * Commit the first transaction. This logs the EFI and the inode.
1383 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001384 if ((error = xfs_bmap_finish(&tp, &free_list, &committed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 goto error1;
1386 /*
1387 * The transaction must have been committed, since there were
1388 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
1389 * The new tp has the extent freeing and EFDs.
1390 */
1391 ASSERT(committed);
1392 /*
1393 * The first xact was committed, so add the inode to the new one.
1394 * Mark it dirty so it will be logged and moved forward in the log as
1395 * part of every commit.
1396 */
1397 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1398 xfs_trans_ihold(tp, ip);
1399 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1400 /*
1401 * Get a new, empty transaction to return to our caller.
1402 */
1403 ntp = xfs_trans_dup(tp);
1404 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001405 * Commit the transaction containing extent freeing and EFDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 * If we get an error on the commit here or on the reserve below,
1407 * we need to unlock the inode since the new transaction doesn't
1408 * have the inode attached.
1409 */
1410 error = xfs_trans_commit(tp, 0, NULL);
1411 tp = ntp;
1412 if (error) {
1413 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1414 goto error0;
1415 }
1416 /*
1417 * Remove the memory for extent descriptions (just bookkeeping).
1418 */
1419 if (ip->i_df.if_bytes)
1420 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
1421 ASSERT(ip->i_df.if_bytes == 0);
1422 /*
1423 * Put an itruncate log reservation in the new transaction
1424 * for our caller.
1425 */
1426 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
1427 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
1428 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1429 goto error0;
1430 }
1431 /*
1432 * Return with the inode locked but not joined to the transaction.
1433 */
1434 *tpp = tp;
1435 return 0;
1436
1437 error1:
1438 xfs_bmap_cancel(&free_list);
1439 error0:
1440 /*
1441 * Have to come here with the inode locked and either
1442 * (held and in the transaction) or (not in the transaction).
1443 * If the inode isn't held then cancel would iput it, but
1444 * that's wrong since this is inactive and the vnode ref
1445 * count is 0 already.
1446 * Cancel won't do anything to the inode if held, but it still
1447 * needs to be locked until the cancel is done, if it was
1448 * joined to the transaction.
1449 */
1450 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1451 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1452 *tpp = NULL;
1453 return error;
1454
1455}
1456
1457STATIC int
1458xfs_inactive_symlink_local(
1459 xfs_inode_t *ip,
1460 xfs_trans_t **tpp)
1461{
1462 int error;
1463
1464 ASSERT(ip->i_d.di_size <= XFS_IFORK_DSIZE(ip));
1465 /*
1466 * We're freeing a symlink which fit into
1467 * the inode. Just free the memory used
1468 * to hold the old symlink.
1469 */
1470 error = xfs_trans_reserve(*tpp, 0,
1471 XFS_ITRUNCATE_LOG_RES(ip->i_mount),
1472 0, XFS_TRANS_PERM_LOG_RES,
1473 XFS_ITRUNCATE_LOG_COUNT);
1474
1475 if (error) {
1476 xfs_trans_cancel(*tpp, 0);
1477 *tpp = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +01001478 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
1480 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1481
1482 /*
1483 * Zero length symlinks _can_ exist.
1484 */
1485 if (ip->i_df.if_bytes > 0) {
1486 xfs_idata_realloc(ip,
1487 -(ip->i_df.if_bytes),
1488 XFS_DATA_FORK);
1489 ASSERT(ip->i_df.if_bytes == 0);
1490 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001491 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494STATIC int
1495xfs_inactive_attrs(
1496 xfs_inode_t *ip,
1497 xfs_trans_t **tpp)
1498{
1499 xfs_trans_t *tp;
1500 int error;
1501 xfs_mount_t *mp;
1502
1503 ASSERT(ismrlocked(&ip->i_iolock, MR_UPDATE));
1504 tp = *tpp;
1505 mp = ip->i_mount;
1506 ASSERT(ip->i_d.di_forkoff != 0);
1507 xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
1508 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1509
1510 error = xfs_attr_inactive(ip);
1511 if (error) {
1512 *tpp = NULL;
1513 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001514 return error; /* goto out */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
1516
1517 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1518 error = xfs_trans_reserve(tp, 0,
1519 XFS_IFREE_LOG_RES(mp),
1520 0, XFS_TRANS_PERM_LOG_RES,
1521 XFS_INACTIVE_LOG_COUNT);
1522 if (error) {
1523 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1524 xfs_trans_cancel(tp, 0);
1525 *tpp = NULL;
1526 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001527 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
1529
1530 xfs_ilock(ip, XFS_ILOCK_EXCL);
1531 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1532 xfs_trans_ihold(tp, ip);
1533 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1534
1535 ASSERT(ip->i_d.di_anextents == 0);
1536
1537 *tpp = tp;
Jesper Juhl014c2542006-01-15 02:37:08 +01001538 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
1541STATIC int
1542xfs_release(
1543 bhv_desc_t *bdp)
1544{
1545 xfs_inode_t *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +10001546 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 xfs_mount_t *mp;
1548 int error;
1549
1550 vp = BHV_TO_VNODE(bdp);
1551 ip = XFS_BHVTOI(bdp);
Nathan Scott7d4fb402006-06-09 15:27:16 +10001552 mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Nathan Scott7d4fb402006-06-09 15:27:16 +10001554 if (!VN_ISREG(vp) || (ip->i_d.di_mode == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 /* If this is a read-only mount, don't do this (would generate I/O) */
1558 if (vp->v_vfsp->vfs_flag & VFS_RDONLY)
1559 return 0;
1560
1561#ifdef HAVE_REFCACHE
1562 /* If we are in the NFS reference cache then don't do this now */
1563 if (ip->i_refcache)
1564 return 0;
1565#endif
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (ip->i_d.di_nlink != 0) {
1568 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
Yingping Lu68bdb6e2006-01-11 15:38:31 +11001569 ((ip->i_d.di_size > 0) || (VN_CACHED(vp) > 0 ||
1570 ip->i_delayed_blks > 0)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
Nathan Scottdd9f4382006-01-11 15:28:28 +11001572 (!(ip->i_d.di_flags &
1573 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 if ((error = xfs_inactive_free_eofblocks(mp, ip)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001575 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 /* Update linux inode block count after free above */
Nathan Scottec86dc02006-03-17 17:25:36 +11001577 vn_to_inode(vp)->i_blocks = XFS_FSB_TO_BB(mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 ip->i_d.di_nblocks + ip->i_delayed_blks);
1579 }
1580 }
1581
1582 return 0;
1583}
1584
1585/*
1586 * xfs_inactive
1587 *
1588 * This is called when the vnode reference count for the vnode
1589 * goes to zero. If the file has been unlinked, then it must
1590 * now be truncated. Also, we clear all of the read-ahead state
1591 * kept for the inode here since the file is now closed.
1592 */
1593STATIC int
1594xfs_inactive(
1595 bhv_desc_t *bdp,
1596 cred_t *credp)
1597{
1598 xfs_inode_t *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +10001599 bhv_vnode_t *vp;
1600 xfs_bmap_free_t free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 xfs_fsblock_t first_block;
1602 int committed;
1603 xfs_trans_t *tp;
1604 xfs_mount_t *mp;
1605 int error;
1606 int truncate;
1607
1608 vp = BHV_TO_VNODE(bdp);
1609 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
1610
1611 ip = XFS_BHVTOI(bdp);
1612
1613 /*
1614 * If the inode is already free, then there can be nothing
1615 * to clean up here.
1616 */
1617 if (ip->i_d.di_mode == 0 || VN_BAD(vp)) {
1618 ASSERT(ip->i_df.if_real_bytes == 0);
1619 ASSERT(ip->i_df.if_broot_bytes == 0);
1620 return VN_INACTIVE_CACHE;
1621 }
1622
1623 /*
1624 * Only do a truncate if it's a regular file with
1625 * some actual space in it. It's OK to look at the
1626 * inode's fields without the lock because we're the
1627 * only one with a reference to the inode.
1628 */
1629 truncate = ((ip->i_d.di_nlink == 0) &&
Yingping Lu1661dc82006-01-11 15:29:39 +11001630 ((ip->i_d.di_size != 0) || (ip->i_d.di_nextents > 0) ||
1631 (ip->i_delayed_blks > 0)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 ((ip->i_d.di_mode & S_IFMT) == S_IFREG));
1633
1634 mp = ip->i_mount;
1635
1636 if (ip->i_d.di_nlink == 0 &&
1637 DM_EVENT_ENABLED(vp->v_vfsp, ip, DM_EVENT_DESTROY)) {
1638 (void) XFS_SEND_DESTROY(mp, vp, DM_RIGHT_NULL);
1639 }
1640
1641 error = 0;
1642
1643 /* If this is a read-only mount, don't do this (would generate I/O) */
1644 if (vp->v_vfsp->vfs_flag & VFS_RDONLY)
1645 goto out;
1646
1647 if (ip->i_d.di_nlink != 0) {
1648 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
Yingping Lu68bdb6e2006-01-11 15:38:31 +11001649 ((ip->i_d.di_size > 0) || (VN_CACHED(vp) > 0 ||
1650 ip->i_delayed_blks > 0)) &&
Nathan Scottdd9f4382006-01-11 15:28:28 +11001651 (ip->i_df.if_flags & XFS_IFEXTENTS) &&
1652 (!(ip->i_d.di_flags &
1653 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)) ||
1654 (ip->i_delayed_blks != 0)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if ((error = xfs_inactive_free_eofblocks(mp, ip)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001656 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 /* Update linux inode block count after free above */
Nathan Scottec86dc02006-03-17 17:25:36 +11001658 vn_to_inode(vp)->i_blocks = XFS_FSB_TO_BB(mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 ip->i_d.di_nblocks + ip->i_delayed_blks);
1660 }
1661 goto out;
1662 }
1663
1664 ASSERT(ip->i_d.di_nlink == 0);
1665
1666 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001667 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1670 if (truncate) {
1671 /*
1672 * Do the xfs_itruncate_start() call before
1673 * reserving any log space because itruncate_start
1674 * will call into the buffer cache and we can't
1675 * do that within a transaction.
1676 */
1677 xfs_ilock(ip, XFS_IOLOCK_EXCL);
1678
1679 xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE, 0);
1680
1681 error = xfs_trans_reserve(tp, 0,
1682 XFS_ITRUNCATE_LOG_RES(mp),
1683 0, XFS_TRANS_PERM_LOG_RES,
1684 XFS_ITRUNCATE_LOG_COUNT);
1685 if (error) {
1686 /* Don't call itruncate_cleanup */
1687 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1688 xfs_trans_cancel(tp, 0);
1689 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001690 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
1692
1693 xfs_ilock(ip, XFS_ILOCK_EXCL);
1694 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1695 xfs_trans_ihold(tp, ip);
1696
1697 /*
1698 * normally, we have to run xfs_itruncate_finish sync.
1699 * But if filesystem is wsync and we're in the inactive
1700 * path, then we know that nlink == 0, and that the
1701 * xaction that made nlink == 0 is permanently committed
1702 * since xfs_remove runs as a synchronous transaction.
1703 */
1704 error = xfs_itruncate_finish(&tp, ip, 0, XFS_DATA_FORK,
1705 (!(mp->m_flags & XFS_MOUNT_WSYNC) ? 1 : 0));
1706
1707 if (error) {
1708 xfs_trans_cancel(tp,
1709 XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1710 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001711 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 }
1713 } else if ((ip->i_d.di_mode & S_IFMT) == S_IFLNK) {
1714
1715 /*
1716 * If we get an error while cleaning up a
1717 * symlink we bail out.
1718 */
1719 error = (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) ?
1720 xfs_inactive_symlink_rmt(ip, &tp) :
1721 xfs_inactive_symlink_local(ip, &tp);
1722
1723 if (error) {
1724 ASSERT(tp == NULL);
Jesper Juhl014c2542006-01-15 02:37:08 +01001725 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 }
1727
1728 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1729 xfs_trans_ihold(tp, ip);
1730 } else {
1731 error = xfs_trans_reserve(tp, 0,
1732 XFS_IFREE_LOG_RES(mp),
1733 0, XFS_TRANS_PERM_LOG_RES,
1734 XFS_INACTIVE_LOG_COUNT);
1735 if (error) {
1736 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1737 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001738 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 }
1740
1741 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1742 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1743 xfs_trans_ihold(tp, ip);
1744 }
1745
1746 /*
1747 * If there are attributes associated with the file
1748 * then blow them away now. The code calls a routine
1749 * that recursively deconstructs the attribute fork.
1750 * We need to just commit the current transaction
1751 * because we can't use it for xfs_attr_inactive().
1752 */
1753 if (ip->i_d.di_anextents > 0) {
1754 error = xfs_inactive_attrs(ip, &tp);
1755 /*
1756 * If we got an error, the transaction is already
1757 * cancelled, and the inode is unlocked. Just get out.
1758 */
1759 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001760 return VN_INACTIVE_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 } else if (ip->i_afp) {
1762 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1763 }
1764
1765 /*
1766 * Free the inode.
1767 */
1768 XFS_BMAP_INIT(&free_list, &first_block);
1769 error = xfs_ifree(tp, ip, &free_list);
1770 if (error) {
1771 /*
1772 * If we fail to free the inode, shut down. The cancel
1773 * might do that, we need to make sure. Otherwise the
1774 * inode might be lost for a long time or forever.
1775 */
1776 if (!XFS_FORCED_SHUTDOWN(mp)) {
1777 cmn_err(CE_NOTE,
1778 "xfs_inactive: xfs_ifree() returned an error = %d on %s",
1779 error, mp->m_fsname);
Nathan Scott7d04a332006-06-09 14:58:38 +10001780 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 }
1782 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
1783 } else {
1784 /*
1785 * Credit the quota account(s). The inode is gone.
1786 */
1787 XFS_TRANS_MOD_DQUOT_BYINO(mp, tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1788
1789 /*
1790 * Just ignore errors at this point. There is
1791 * nothing we can do except to try to keep going.
1792 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001793 (void) xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 (void) xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
1795 }
1796 /*
1797 * Release the dquots held by inode, if any.
1798 */
1799 XFS_QM_DQDETACH(mp, ip);
1800
1801 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1802
1803 out:
1804 return VN_INACTIVE_CACHE;
1805}
1806
1807
1808/*
1809 * xfs_lookup
1810 */
1811STATIC int
1812xfs_lookup(
1813 bhv_desc_t *dir_bdp,
Nathan Scott8285fb52006-06-09 17:07:12 +10001814 bhv_vname_t *dentry,
Nathan Scott67fcaa72006-06-09 17:00:52 +10001815 bhv_vnode_t **vpp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 int flags,
Nathan Scott67fcaa72006-06-09 17:00:52 +10001817 bhv_vnode_t *rdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 cred_t *credp)
1819{
1820 xfs_inode_t *dp, *ip;
1821 xfs_ino_t e_inum;
1822 int error;
1823 uint lock_mode;
Nathan Scott67fcaa72006-06-09 17:00:52 +10001824 bhv_vnode_t *dir_vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826 dir_vp = BHV_TO_VNODE(dir_bdp);
1827 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
1828
1829 dp = XFS_BHVTOI(dir_bdp);
1830
1831 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
1832 return XFS_ERROR(EIO);
1833
1834 lock_mode = xfs_ilock_map_shared(dp);
1835 error = xfs_dir_lookup_int(dir_bdp, lock_mode, dentry, &e_inum, &ip);
1836 if (!error) {
1837 *vpp = XFS_ITOV(ip);
1838 ITRACE(ip);
1839 }
1840 xfs_iunlock_map_shared(dp, lock_mode);
1841 return error;
1842}
1843
1844
1845/*
1846 * xfs_create (create a new file).
1847 */
1848STATIC int
1849xfs_create(
1850 bhv_desc_t *dir_bdp,
Nathan Scott8285fb52006-06-09 17:07:12 +10001851 bhv_vname_t *dentry,
1852 bhv_vattr_t *vap,
Nathan Scott67fcaa72006-06-09 17:00:52 +10001853 bhv_vnode_t **vpp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 cred_t *credp)
1855{
1856 char *name = VNAME(dentry);
Nathan Scott67fcaa72006-06-09 17:00:52 +10001857 bhv_vnode_t *dir_vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 xfs_inode_t *dp, *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +10001859 bhv_vnode_t *vp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 xfs_trans_t *tp;
1861 xfs_mount_t *mp;
1862 xfs_dev_t rdev;
1863 int error;
1864 xfs_bmap_free_t free_list;
1865 xfs_fsblock_t first_block;
1866 boolean_t dp_joined_to_trans;
1867 int dm_event_sent = 0;
1868 uint cancel_flags;
1869 int committed;
1870 xfs_prid_t prid;
1871 struct xfs_dquot *udqp, *gdqp;
1872 uint resblks;
1873 int dm_di_mode;
1874 int namelen;
1875
1876 ASSERT(!*vpp);
1877 dir_vp = BHV_TO_VNODE(dir_bdp);
1878 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
1879
1880 dp = XFS_BHVTOI(dir_bdp);
1881 mp = dp->i_mount;
1882
Christoph Hellwig0432dab2005-09-02 16:46:51 +10001883 dm_di_mode = vap->va_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 namelen = VNAMELEN(dentry);
1885
1886 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_CREATE)) {
1887 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
1888 dir_vp, DM_RIGHT_NULL, NULL,
1889 DM_RIGHT_NULL, name, NULL,
1890 dm_di_mode, 0, 0);
1891
1892 if (error)
1893 return error;
1894 dm_event_sent = 1;
1895 }
1896
1897 if (XFS_FORCED_SHUTDOWN(mp))
1898 return XFS_ERROR(EIO);
1899
1900 /* Return through std_return after this point. */
1901
1902 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10001903 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1904 prid = dp->i_d.di_projid;
1905 else if (vap->va_mask & XFS_AT_PROJID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 prid = (xfs_prid_t)vap->va_projid;
1907 else
1908 prid = (xfs_prid_t)dfltprid;
1909
1910 /*
1911 * Make sure that we have allocated dquot(s) on disk.
1912 */
1913 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001914 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 XFS_QMOPT_QUOTALL|XFS_QMOPT_INHERIT, &udqp, &gdqp);
1916 if (error)
1917 goto std_return;
1918
1919 ip = NULL;
1920 dp_joined_to_trans = B_FALSE;
1921
1922 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
1923 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1924 resblks = XFS_CREATE_SPACE_RES(mp, namelen);
1925 /*
1926 * Initially assume that the file does not exist and
1927 * reserve the resources for that case. If that is not
1928 * the case we'll drop the one we have and get a more
1929 * appropriate transaction later.
1930 */
1931 error = xfs_trans_reserve(tp, resblks, XFS_CREATE_LOG_RES(mp), 0,
1932 XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT);
1933 if (error == ENOSPC) {
1934 resblks = 0;
1935 error = xfs_trans_reserve(tp, 0, XFS_CREATE_LOG_RES(mp), 0,
1936 XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT);
1937 }
1938 if (error) {
1939 cancel_flags = 0;
1940 dp = NULL;
1941 goto error_return;
1942 }
1943
1944 xfs_ilock(dp, XFS_ILOCK_EXCL);
1945
1946 XFS_BMAP_INIT(&free_list, &first_block);
1947
1948 ASSERT(ip == NULL);
1949
1950 /*
1951 * Reserve disk quota and the inode.
1952 */
1953 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
1954 if (error)
1955 goto error_return;
1956
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001957 if (resblks == 0 && (error = xfs_dir_canenter(tp, dp, name, namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 goto error_return;
1959 rdev = (vap->va_mask & XFS_AT_RDEV) ? vap->va_rdev : 0;
Christoph Hellwig0432dab2005-09-02 16:46:51 +10001960 error = xfs_dir_ialloc(&tp, dp, vap->va_mode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 rdev, credp, prid, resblks > 0,
1962 &ip, &committed);
1963 if (error) {
1964 if (error == ENOSPC)
1965 goto error_return;
1966 goto abort_return;
1967 }
1968 ITRACE(ip);
1969
1970 /*
1971 * At this point, we've gotten a newly allocated inode.
1972 * It is locked (and joined to the transaction).
1973 */
1974
1975 ASSERT(ismrlocked (&ip->i_lock, MR_UPDATE));
1976
1977 /*
1978 * Now we join the directory inode to the transaction.
1979 * We do not do it earlier because xfs_dir_ialloc
1980 * might commit the previous transaction (and release
1981 * all the locks).
1982 */
1983
1984 VN_HOLD(dir_vp);
1985 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1986 dp_joined_to_trans = B_TRUE;
1987
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001988 error = xfs_dir_createname(tp, dp, name, namelen, ip->i_ino,
1989 &first_block, &free_list, resblks ?
1990 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 if (error) {
1992 ASSERT(error != ENOSPC);
1993 goto abort_return;
1994 }
1995 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1996 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1997
1998 /*
1999 * If this is a synchronous mount, make sure that the
2000 * create transaction goes to disk before returning to
2001 * the user.
2002 */
2003 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2004 xfs_trans_set_sync(tp);
2005 }
2006
2007 dp->i_gen++;
2008
2009 /*
2010 * Attach the dquot(s) to the inodes and modify them incore.
2011 * These ids of the inode couldn't have changed since the new
2012 * inode has been locked ever since it was created.
2013 */
2014 XFS_QM_DQVOPCREATE(mp, tp, ip, udqp, gdqp);
2015
2016 /*
2017 * xfs_trans_commit normally decrements the vnode ref count
2018 * when it unlocks the inode. Since we want to return the
2019 * vnode to the caller, we bump the vnode ref count now.
2020 */
2021 IHOLD(ip);
2022 vp = XFS_ITOV(ip);
2023
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002024 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 if (error) {
2026 xfs_bmap_cancel(&free_list);
2027 goto abort_rele;
2028 }
2029
2030 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
2031 if (error) {
2032 IRELE(ip);
2033 tp = NULL;
2034 goto error_return;
2035 }
2036
2037 XFS_QM_DQRELE(mp, udqp);
2038 XFS_QM_DQRELE(mp, gdqp);
2039
2040 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10002041 * Propagate the fact that the vnode changed after the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 * xfs_inode locks have been released.
2043 */
Nathan Scott67fcaa72006-06-09 17:00:52 +10002044 bhv_vop_vnode_change(vp, VCHANGE_FLAGS_TRUNCATED, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 *vpp = vp;
2047
2048 /* Fallthrough to std_return with error = 0 */
2049
2050std_return:
2051 if ( (*vpp || (error != 0 && dm_event_sent != 0)) &&
2052 DM_EVENT_ENABLED(dir_vp->v_vfsp, XFS_BHVTOI(dir_bdp),
2053 DM_EVENT_POSTCREATE)) {
2054 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE,
2055 dir_vp, DM_RIGHT_NULL,
2056 *vpp ? vp:NULL,
2057 DM_RIGHT_NULL, name, NULL,
2058 dm_di_mode, error, 0);
2059 }
2060 return error;
2061
2062 abort_return:
2063 cancel_flags |= XFS_TRANS_ABORT;
2064 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Jesper Juhl014c2542006-01-15 02:37:08 +01002066 error_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 if (tp != NULL)
2068 xfs_trans_cancel(tp, cancel_flags);
2069
2070 if (!dp_joined_to_trans && (dp != NULL))
2071 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2072 XFS_QM_DQRELE(mp, udqp);
2073 XFS_QM_DQRELE(mp, gdqp);
2074
2075 goto std_return;
2076
2077 abort_rele:
2078 /*
2079 * Wait until after the current transaction is aborted to
2080 * release the inode. This prevents recursive transactions
2081 * and deadlocks from xfs_inactive.
2082 */
2083 cancel_flags |= XFS_TRANS_ABORT;
2084 xfs_trans_cancel(tp, cancel_flags);
2085 IRELE(ip);
2086
2087 XFS_QM_DQRELE(mp, udqp);
2088 XFS_QM_DQRELE(mp, gdqp);
2089
2090 goto std_return;
2091}
2092
2093#ifdef DEBUG
2094/*
2095 * Some counters to see if (and how often) we are hitting some deadlock
2096 * prevention code paths.
2097 */
2098
2099int xfs_rm_locks;
2100int xfs_rm_lock_delays;
2101int xfs_rm_attempts;
2102#endif
2103
2104/*
2105 * The following routine will lock the inodes associated with the
2106 * directory and the named entry in the directory. The locks are
2107 * acquired in increasing inode number.
2108 *
2109 * If the entry is "..", then only the directory is locked. The
2110 * vnode ref count will still include that from the .. entry in
2111 * this case.
2112 *
2113 * There is a deadlock we need to worry about. If the locked directory is
2114 * in the AIL, it might be blocking up the log. The next inode we lock
2115 * could be already locked by another thread waiting for log space (e.g
2116 * a permanent log reservation with a long running transaction (see
2117 * xfs_itruncate_finish)). To solve this, we must check if the directory
2118 * is in the ail and use lock_nowait. If we can't lock, we need to
2119 * drop the inode lock on the directory and try again. xfs_iunlock will
2120 * potentially push the tail if we were holding up the log.
2121 */
2122STATIC int
2123xfs_lock_dir_and_entry(
2124 xfs_inode_t *dp,
Nathan Scott8285fb52006-06-09 17:07:12 +10002125 bhv_vname_t *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 xfs_inode_t *ip) /* inode of entry 'name' */
2127{
2128 int attempts;
2129 xfs_ino_t e_inum;
2130 xfs_inode_t *ips[2];
2131 xfs_log_item_t *lp;
2132
2133#ifdef DEBUG
2134 xfs_rm_locks++;
2135#endif
2136 attempts = 0;
2137
2138again:
2139 xfs_ilock(dp, XFS_ILOCK_EXCL);
2140
2141 e_inum = ip->i_ino;
2142
2143 ITRACE(ip);
2144
2145 /*
2146 * We want to lock in increasing inum. Since we've already
2147 * acquired the lock on the directory, we may need to release
2148 * if if the inum of the entry turns out to be less.
2149 */
2150 if (e_inum > dp->i_ino) {
2151 /*
2152 * We are already in the right order, so just
2153 * lock on the inode of the entry.
2154 * We need to use nowait if dp is in the AIL.
2155 */
2156
2157 lp = (xfs_log_item_t *)dp->i_itemp;
2158 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
2159 if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
2160 attempts++;
2161#ifdef DEBUG
2162 xfs_rm_attempts++;
2163#endif
2164
2165 /*
2166 * Unlock dp and try again.
2167 * xfs_iunlock will try to push the tail
2168 * if the inode is in the AIL.
2169 */
2170
2171 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2172
2173 if ((attempts % 5) == 0) {
2174 delay(1); /* Don't just spin the CPU */
2175#ifdef DEBUG
2176 xfs_rm_lock_delays++;
2177#endif
2178 }
2179 goto again;
2180 }
2181 } else {
2182 xfs_ilock(ip, XFS_ILOCK_EXCL);
2183 }
2184 } else if (e_inum < dp->i_ino) {
2185 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2186
2187 ips[0] = ip;
2188 ips[1] = dp;
2189 xfs_lock_inodes(ips, 2, 0, XFS_ILOCK_EXCL);
2190 }
2191 /* else e_inum == dp->i_ino */
2192 /* This can happen if we're asked to lock /x/..
2193 * the entry is "..", which is also the parent directory.
2194 */
2195
2196 return 0;
2197}
2198
2199#ifdef DEBUG
2200int xfs_locked_n;
2201int xfs_small_retries;
2202int xfs_middle_retries;
2203int xfs_lots_retries;
2204int xfs_lock_delays;
2205#endif
2206
2207/*
2208 * The following routine will lock n inodes in exclusive mode.
2209 * We assume the caller calls us with the inodes in i_ino order.
2210 *
2211 * We need to detect deadlock where an inode that we lock
2212 * is in the AIL and we start waiting for another inode that is locked
2213 * by a thread in a long running transaction (such as truncate). This can
2214 * result in deadlock since the long running trans might need to wait
2215 * for the inode we just locked in order to push the tail and free space
2216 * in the log.
2217 */
2218void
2219xfs_lock_inodes(
2220 xfs_inode_t **ips,
2221 int inodes,
2222 int first_locked,
2223 uint lock_mode)
2224{
2225 int attempts = 0, i, j, try_lock;
2226 xfs_log_item_t *lp;
2227
2228 ASSERT(ips && (inodes >= 2)); /* we need at least two */
2229
2230 if (first_locked) {
2231 try_lock = 1;
2232 i = 1;
2233 } else {
2234 try_lock = 0;
2235 i = 0;
2236 }
2237
2238again:
2239 for (; i < inodes; i++) {
2240 ASSERT(ips[i]);
2241
2242 if (i && (ips[i] == ips[i-1])) /* Already locked */
2243 continue;
2244
2245 /*
2246 * If try_lock is not set yet, make sure all locked inodes
2247 * are not in the AIL.
2248 * If any are, set try_lock to be used later.
2249 */
2250
2251 if (!try_lock) {
2252 for (j = (i - 1); j >= 0 && !try_lock; j--) {
2253 lp = (xfs_log_item_t *)ips[j]->i_itemp;
2254 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
2255 try_lock++;
2256 }
2257 }
2258 }
2259
2260 /*
2261 * If any of the previous locks we have locked is in the AIL,
2262 * we must TRY to get the second and subsequent locks. If
2263 * we can't get any, we must release all we have
2264 * and try again.
2265 */
2266
2267 if (try_lock) {
2268 /* try_lock must be 0 if i is 0. */
2269 /*
2270 * try_lock means we have an inode locked
2271 * that is in the AIL.
2272 */
2273 ASSERT(i != 0);
2274 if (!xfs_ilock_nowait(ips[i], lock_mode)) {
2275 attempts++;
2276
2277 /*
2278 * Unlock all previous guys and try again.
2279 * xfs_iunlock will try to push the tail
2280 * if the inode is in the AIL.
2281 */
2282
2283 for(j = i - 1; j >= 0; j--) {
2284
2285 /*
2286 * Check to see if we've already
2287 * unlocked this one.
2288 * Not the first one going back,
2289 * and the inode ptr is the same.
2290 */
2291 if ((j != (i - 1)) && ips[j] ==
2292 ips[j+1])
2293 continue;
2294
2295 xfs_iunlock(ips[j], lock_mode);
2296 }
2297
2298 if ((attempts % 5) == 0) {
2299 delay(1); /* Don't just spin the CPU */
2300#ifdef DEBUG
2301 xfs_lock_delays++;
2302#endif
2303 }
2304 i = 0;
2305 try_lock = 0;
2306 goto again;
2307 }
2308 } else {
2309 xfs_ilock(ips[i], lock_mode);
2310 }
2311 }
2312
2313#ifdef DEBUG
2314 if (attempts) {
2315 if (attempts < 5) xfs_small_retries++;
2316 else if (attempts < 100) xfs_middle_retries++;
2317 else xfs_lots_retries++;
2318 } else {
2319 xfs_locked_n++;
2320 }
2321#endif
2322}
2323
2324#ifdef DEBUG
2325#define REMOVE_DEBUG_TRACE(x) {remove_which_error_return = (x);}
2326int remove_which_error_return = 0;
2327#else /* ! DEBUG */
2328#define REMOVE_DEBUG_TRACE(x)
2329#endif /* ! DEBUG */
2330
2331
2332/*
2333 * xfs_remove
2334 *
2335 */
2336STATIC int
2337xfs_remove(
2338 bhv_desc_t *dir_bdp,
Nathan Scott8285fb52006-06-09 17:07:12 +10002339 bhv_vname_t *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 cred_t *credp)
2341{
Nathan Scott67fcaa72006-06-09 17:00:52 +10002342 bhv_vnode_t *dir_vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 char *name = VNAME(dentry);
2344 xfs_inode_t *dp, *ip;
2345 xfs_trans_t *tp = NULL;
2346 xfs_mount_t *mp;
2347 int error = 0;
2348 xfs_bmap_free_t free_list;
2349 xfs_fsblock_t first_block;
2350 int cancel_flags;
2351 int committed;
2352 int dm_di_mode = 0;
2353 int link_zero;
2354 uint resblks;
2355 int namelen;
2356
2357 dir_vp = BHV_TO_VNODE(dir_bdp);
2358 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
2359
2360 dp = XFS_BHVTOI(dir_bdp);
2361 mp = dp->i_mount;
2362
2363 if (XFS_FORCED_SHUTDOWN(mp))
2364 return XFS_ERROR(EIO);
2365
2366 namelen = VNAMELEN(dentry);
2367
Vlad Apostolov17370092006-09-28 11:02:30 +10002368 if (!xfs_get_dir_entry(dentry, &ip)) {
2369 dm_di_mode = ip->i_d.di_mode;
2370 IRELE(ip);
2371 }
2372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_REMOVE)) {
2374 error = XFS_SEND_NAMESP(mp, DM_EVENT_REMOVE, dir_vp,
2375 DM_RIGHT_NULL, NULL, DM_RIGHT_NULL,
Vlad Apostolov17370092006-09-28 11:02:30 +10002376 name, NULL, dm_di_mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 if (error)
2378 return error;
2379 }
2380
2381 /* From this point on, return through std_return */
2382 ip = NULL;
2383
2384 /*
2385 * We need to get a reference to ip before we get our log
2386 * reservation. The reason for this is that we cannot call
2387 * xfs_iget for an inode for which we do not have a reference
2388 * once we've acquired a log reservation. This is because the
2389 * inode we are trying to get might be in xfs_inactive going
2390 * for a log reservation. Since we'll have to wait for the
2391 * inactive code to complete before returning from xfs_iget,
2392 * we need to make sure that we don't have log space reserved
Nathan Scottc41564b2006-03-29 08:55:14 +10002393 * when we call xfs_iget. Instead we get an unlocked reference
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 * to the inode before getting our log reservation.
2395 */
2396 error = xfs_get_dir_entry(dentry, &ip);
2397 if (error) {
2398 REMOVE_DEBUG_TRACE(__LINE__);
2399 goto std_return;
2400 }
2401
2402 dm_di_mode = ip->i_d.di_mode;
2403
2404 vn_trace_entry(XFS_ITOV(ip), __FUNCTION__, (inst_t *)__return_address);
2405
2406 ITRACE(ip);
2407
2408 error = XFS_QM_DQATTACH(mp, dp, 0);
2409 if (!error && dp != ip)
2410 error = XFS_QM_DQATTACH(mp, ip, 0);
2411 if (error) {
2412 REMOVE_DEBUG_TRACE(__LINE__);
2413 IRELE(ip);
2414 goto std_return;
2415 }
2416
2417 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
2418 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2419 /*
2420 * We try to get the real space reservation first,
2421 * allowing for directory btree deletion(s) implying
2422 * possible bmap insert(s). If we can't get the space
2423 * reservation then we use 0 instead, and avoid the bmap
2424 * btree insert(s) in the directory code by, if the bmap
2425 * insert tries to happen, instead trimming the LAST
2426 * block from the directory.
2427 */
2428 resblks = XFS_REMOVE_SPACE_RES(mp);
2429 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
2430 XFS_TRANS_PERM_LOG_RES, XFS_REMOVE_LOG_COUNT);
2431 if (error == ENOSPC) {
2432 resblks = 0;
2433 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
2434 XFS_TRANS_PERM_LOG_RES, XFS_REMOVE_LOG_COUNT);
2435 }
2436 if (error) {
2437 ASSERT(error != ENOSPC);
2438 REMOVE_DEBUG_TRACE(__LINE__);
2439 xfs_trans_cancel(tp, 0);
2440 IRELE(ip);
2441 return error;
2442 }
2443
2444 error = xfs_lock_dir_and_entry(dp, dentry, ip);
2445 if (error) {
2446 REMOVE_DEBUG_TRACE(__LINE__);
2447 xfs_trans_cancel(tp, cancel_flags);
2448 IRELE(ip);
2449 goto std_return;
2450 }
2451
2452 /*
2453 * At this point, we've gotten both the directory and the entry
2454 * inodes locked.
2455 */
2456 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2457 if (dp != ip) {
2458 /*
2459 * Increment vnode ref count only in this case since
2460 * there's an extra vnode reference in the case where
2461 * dp == ip.
2462 */
2463 IHOLD(dp);
2464 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2465 }
2466
2467 /*
2468 * Entry must exist since we did a lookup in xfs_lock_dir_and_entry.
2469 */
2470 XFS_BMAP_INIT(&free_list, &first_block);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002471 error = xfs_dir_removename(tp, dp, name, namelen, ip->i_ino,
2472 &first_block, &free_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 if (error) {
2474 ASSERT(error != ENOENT);
2475 REMOVE_DEBUG_TRACE(__LINE__);
2476 goto error1;
2477 }
2478 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2479
2480 dp->i_gen++;
2481 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2482
2483 error = xfs_droplink(tp, ip);
2484 if (error) {
2485 REMOVE_DEBUG_TRACE(__LINE__);
2486 goto error1;
2487 }
2488
2489 /* Determine if this is the last link while
2490 * we are in the transaction.
2491 */
2492 link_zero = (ip)->i_d.di_nlink==0;
2493
2494 /*
2495 * Take an extra ref on the inode so that it doesn't
2496 * go to xfs_inactive() from within the commit.
2497 */
2498 IHOLD(ip);
2499
2500 /*
2501 * If this is a synchronous mount, make sure that the
2502 * remove transaction goes to disk before returning to
2503 * the user.
2504 */
2505 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2506 xfs_trans_set_sync(tp);
2507 }
2508
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002509 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 if (error) {
2511 REMOVE_DEBUG_TRACE(__LINE__);
2512 goto error_rele;
2513 }
2514
2515 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
2516 if (error) {
2517 IRELE(ip);
2518 goto std_return;
2519 }
2520
2521 /*
2522 * Before we drop our extra reference to the inode, purge it
2523 * from the refcache if it is there. By waiting until afterwards
2524 * to do the IRELE, we ensure that we won't go inactive in the
2525 * xfs_refcache_purge_ip routine (although that would be OK).
2526 */
2527 xfs_refcache_purge_ip(ip);
2528
2529 vn_trace_exit(XFS_ITOV(ip), __FUNCTION__, (inst_t *)__return_address);
2530
2531 /*
2532 * Let interposed file systems know about removed links.
2533 */
Nathan Scott67fcaa72006-06-09 17:00:52 +10002534 bhv_vop_link_removed(XFS_ITOV(ip), dir_vp, link_zero);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
2536 IRELE(ip);
2537
2538/* Fall through to std_return with error = 0 */
2539 std_return:
2540 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp,
2541 DM_EVENT_POSTREMOVE)) {
2542 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTREMOVE,
2543 dir_vp, DM_RIGHT_NULL,
2544 NULL, DM_RIGHT_NULL,
2545 name, NULL, dm_di_mode, error, 0);
2546 }
2547 return error;
2548
2549 error1:
2550 xfs_bmap_cancel(&free_list);
2551 cancel_flags |= XFS_TRANS_ABORT;
2552 xfs_trans_cancel(tp, cancel_flags);
2553 goto std_return;
2554
2555 error_rele:
2556 /*
2557 * In this case make sure to not release the inode until after
2558 * the current transaction is aborted. Releasing it beforehand
2559 * can cause us to go to xfs_inactive and start a recursive
2560 * transaction which can easily deadlock with the current one.
2561 */
2562 xfs_bmap_cancel(&free_list);
2563 cancel_flags |= XFS_TRANS_ABORT;
2564 xfs_trans_cancel(tp, cancel_flags);
2565
2566 /*
2567 * Before we drop our extra reference to the inode, purge it
2568 * from the refcache if it is there. By waiting until afterwards
2569 * to do the IRELE, we ensure that we won't go inactive in the
2570 * xfs_refcache_purge_ip routine (although that would be OK).
2571 */
2572 xfs_refcache_purge_ip(ip);
2573
2574 IRELE(ip);
2575
2576 goto std_return;
2577}
2578
2579
2580/*
2581 * xfs_link
2582 *
2583 */
2584STATIC int
2585xfs_link(
2586 bhv_desc_t *target_dir_bdp,
Nathan Scott67fcaa72006-06-09 17:00:52 +10002587 bhv_vnode_t *src_vp,
Nathan Scott8285fb52006-06-09 17:07:12 +10002588 bhv_vname_t *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 cred_t *credp)
2590{
2591 xfs_inode_t *tdp, *sip;
2592 xfs_trans_t *tp;
2593 xfs_mount_t *mp;
2594 xfs_inode_t *ips[2];
2595 int error;
2596 xfs_bmap_free_t free_list;
2597 xfs_fsblock_t first_block;
2598 int cancel_flags;
2599 int committed;
Nathan Scott67fcaa72006-06-09 17:00:52 +10002600 bhv_vnode_t *target_dir_vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 int resblks;
2602 char *target_name = VNAME(dentry);
2603 int target_namelen;
2604
2605 target_dir_vp = BHV_TO_VNODE(target_dir_bdp);
2606 vn_trace_entry(target_dir_vp, __FUNCTION__, (inst_t *)__return_address);
2607 vn_trace_entry(src_vp, __FUNCTION__, (inst_t *)__return_address);
2608
2609 target_namelen = VNAMELEN(dentry);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002610 ASSERT(!VN_ISDIR(src_vp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
Christoph Hellwig75e17b32006-01-11 20:58:44 +11002612 sip = xfs_vtoi(src_vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 tdp = XFS_BHVTOI(target_dir_bdp);
2614 mp = tdp->i_mount;
2615 if (XFS_FORCED_SHUTDOWN(mp))
2616 return XFS_ERROR(EIO);
2617
2618 if (DM_EVENT_ENABLED(src_vp->v_vfsp, tdp, DM_EVENT_LINK)) {
2619 error = XFS_SEND_NAMESP(mp, DM_EVENT_LINK,
2620 target_dir_vp, DM_RIGHT_NULL,
2621 src_vp, DM_RIGHT_NULL,
2622 target_name, NULL, 0, 0, 0);
2623 if (error)
2624 return error;
2625 }
2626
2627 /* Return through std_return after this point. */
2628
2629 error = XFS_QM_DQATTACH(mp, sip, 0);
2630 if (!error && sip != tdp)
2631 error = XFS_QM_DQATTACH(mp, tdp, 0);
2632 if (error)
2633 goto std_return;
2634
2635 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
2636 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2637 resblks = XFS_LINK_SPACE_RES(mp, target_namelen);
2638 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
2639 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2640 if (error == ENOSPC) {
2641 resblks = 0;
2642 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
2643 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2644 }
2645 if (error) {
2646 cancel_flags = 0;
2647 goto error_return;
2648 }
2649
2650 if (sip->i_ino < tdp->i_ino) {
2651 ips[0] = sip;
2652 ips[1] = tdp;
2653 } else {
2654 ips[0] = tdp;
2655 ips[1] = sip;
2656 }
2657
2658 xfs_lock_inodes(ips, 2, 0, XFS_ILOCK_EXCL);
2659
2660 /*
2661 * Increment vnode ref counts since xfs_trans_commit &
2662 * xfs_trans_cancel will both unlock the inodes and
2663 * decrement the associated ref counts.
2664 */
2665 VN_HOLD(src_vp);
2666 VN_HOLD(target_dir_vp);
2667 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
2668 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
2669
2670 /*
2671 * If the source has too many links, we can't make any more to it.
2672 */
2673 if (sip->i_d.di_nlink >= XFS_MAXLINK) {
2674 error = XFS_ERROR(EMLINK);
2675 goto error_return;
2676 }
2677
Nathan Scott365ca832005-06-21 15:39:12 +10002678 /*
2679 * If we are using project inheritance, we only allow hard link
2680 * creation in our tree when the project IDs are the same; else
2681 * the tree quota mechanism could be circumvented.
2682 */
2683 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
2684 (tdp->i_d.di_projid != sip->i_d.di_projid))) {
Nathan Scottb1ecdda2006-05-08 19:51:42 +10002685 error = XFS_ERROR(EXDEV);
Nathan Scott365ca832005-06-21 15:39:12 +10002686 goto error_return;
2687 }
2688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 if (resblks == 0 &&
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002690 (error = xfs_dir_canenter(tp, tdp, target_name, target_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 goto error_return;
2692
2693 XFS_BMAP_INIT(&free_list, &first_block);
2694
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002695 error = xfs_dir_createname(tp, tdp, target_name, target_namelen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 sip->i_ino, &first_block, &free_list,
2697 resblks);
2698 if (error)
2699 goto abort_return;
2700 xfs_ichgtime(tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2701 tdp->i_gen++;
2702 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
2703
2704 error = xfs_bumplink(tp, sip);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002705 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
2708 /*
2709 * If this is a synchronous mount, make sure that the
2710 * link transaction goes to disk before returning to
2711 * the user.
2712 */
2713 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2714 xfs_trans_set_sync(tp);
2715 }
2716
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002717 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 if (error) {
2719 xfs_bmap_cancel(&free_list);
2720 goto abort_return;
2721 }
2722
2723 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002724 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 goto std_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
2727 /* Fall through to std_return with error = 0. */
2728std_return:
2729 if (DM_EVENT_ENABLED(src_vp->v_vfsp, sip,
2730 DM_EVENT_POSTLINK)) {
2731 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTLINK,
2732 target_dir_vp, DM_RIGHT_NULL,
2733 src_vp, DM_RIGHT_NULL,
2734 target_name, NULL, 0, error, 0);
2735 }
2736 return error;
2737
2738 abort_return:
2739 cancel_flags |= XFS_TRANS_ABORT;
2740 /* FALLTHROUGH */
Jesper Juhl014c2542006-01-15 02:37:08 +01002741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 error_return:
2743 xfs_trans_cancel(tp, cancel_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 goto std_return;
2745}
Alexey Dobriyanb71d3002006-06-27 12:45:17 +10002746
2747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748/*
2749 * xfs_mkdir
2750 *
2751 */
2752STATIC int
2753xfs_mkdir(
2754 bhv_desc_t *dir_bdp,
Nathan Scott8285fb52006-06-09 17:07:12 +10002755 bhv_vname_t *dentry,
2756 bhv_vattr_t *vap,
Nathan Scott67fcaa72006-06-09 17:00:52 +10002757 bhv_vnode_t **vpp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 cred_t *credp)
2759{
2760 char *dir_name = VNAME(dentry);
2761 xfs_inode_t *dp;
2762 xfs_inode_t *cdp; /* inode of created dir */
Nathan Scott67fcaa72006-06-09 17:00:52 +10002763 bhv_vnode_t *cvp; /* vnode of created dir */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 xfs_trans_t *tp;
2765 xfs_mount_t *mp;
2766 int cancel_flags;
2767 int error;
2768 int committed;
2769 xfs_bmap_free_t free_list;
2770 xfs_fsblock_t first_block;
Nathan Scott67fcaa72006-06-09 17:00:52 +10002771 bhv_vnode_t *dir_vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 boolean_t dp_joined_to_trans;
2773 boolean_t created = B_FALSE;
2774 int dm_event_sent = 0;
2775 xfs_prid_t prid;
2776 struct xfs_dquot *udqp, *gdqp;
2777 uint resblks;
2778 int dm_di_mode;
2779 int dir_namelen;
2780
2781 dir_vp = BHV_TO_VNODE(dir_bdp);
2782 dp = XFS_BHVTOI(dir_bdp);
2783 mp = dp->i_mount;
2784
2785 if (XFS_FORCED_SHUTDOWN(mp))
2786 return XFS_ERROR(EIO);
2787
2788 dir_namelen = VNAMELEN(dentry);
2789
2790 tp = NULL;
2791 dp_joined_to_trans = B_FALSE;
Christoph Hellwig0432dab2005-09-02 16:46:51 +10002792 dm_di_mode = vap->va_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
2794 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_CREATE)) {
2795 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
2796 dir_vp, DM_RIGHT_NULL, NULL,
2797 DM_RIGHT_NULL, dir_name, NULL,
2798 dm_di_mode, 0, 0);
2799 if (error)
2800 return error;
2801 dm_event_sent = 1;
2802 }
2803
2804 /* Return through std_return after this point. */
2805
2806 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
2807
2808 mp = dp->i_mount;
2809 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10002810 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
2811 prid = dp->i_d.di_projid;
2812 else if (vap->va_mask & XFS_AT_PROJID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 prid = (xfs_prid_t)vap->va_projid;
2814 else
2815 prid = (xfs_prid_t)dfltprid;
2816
2817 /*
2818 * Make sure that we have allocated dquot(s) on disk.
2819 */
2820 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002821 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
2823 if (error)
2824 goto std_return;
2825
2826 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
2827 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2828 resblks = XFS_MKDIR_SPACE_RES(mp, dir_namelen);
2829 error = xfs_trans_reserve(tp, resblks, XFS_MKDIR_LOG_RES(mp), 0,
2830 XFS_TRANS_PERM_LOG_RES, XFS_MKDIR_LOG_COUNT);
2831 if (error == ENOSPC) {
2832 resblks = 0;
2833 error = xfs_trans_reserve(tp, 0, XFS_MKDIR_LOG_RES(mp), 0,
2834 XFS_TRANS_PERM_LOG_RES,
2835 XFS_MKDIR_LOG_COUNT);
2836 }
2837 if (error) {
2838 cancel_flags = 0;
2839 dp = NULL;
2840 goto error_return;
2841 }
2842
2843 xfs_ilock(dp, XFS_ILOCK_EXCL);
2844
2845 /*
2846 * Check for directory link count overflow.
2847 */
2848 if (dp->i_d.di_nlink >= XFS_MAXLINK) {
2849 error = XFS_ERROR(EMLINK);
2850 goto error_return;
2851 }
2852
2853 /*
2854 * Reserve disk quota and the inode.
2855 */
2856 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
2857 if (error)
2858 goto error_return;
2859
2860 if (resblks == 0 &&
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002861 (error = xfs_dir_canenter(tp, dp, dir_name, dir_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 goto error_return;
2863 /*
2864 * create the directory inode.
2865 */
Christoph Hellwig0432dab2005-09-02 16:46:51 +10002866 error = xfs_dir_ialloc(&tp, dp, vap->va_mode, 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 0, credp, prid, resblks > 0,
2868 &cdp, NULL);
2869 if (error) {
2870 if (error == ENOSPC)
2871 goto error_return;
2872 goto abort_return;
2873 }
2874 ITRACE(cdp);
2875
2876 /*
2877 * Now we add the directory inode to the transaction.
2878 * We waited until now since xfs_dir_ialloc might start
2879 * a new transaction. Had we joined the transaction
2880 * earlier, the locks might have gotten released.
2881 */
2882 VN_HOLD(dir_vp);
2883 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2884 dp_joined_to_trans = B_TRUE;
2885
2886 XFS_BMAP_INIT(&free_list, &first_block);
2887
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002888 error = xfs_dir_createname(tp, dp, dir_name, dir_namelen, cdp->i_ino,
2889 &first_block, &free_list, resblks ?
2890 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 if (error) {
2892 ASSERT(error != ENOSPC);
2893 goto error1;
2894 }
2895 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2896
2897 /*
2898 * Bump the in memory version number of the parent directory
2899 * so that other processes accessing it will recognize that
2900 * the directory has changed.
2901 */
2902 dp->i_gen++;
2903
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002904 error = xfs_dir_init(tp, cdp, dp);
2905 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
2908 cdp->i_gen = 1;
2909 error = xfs_bumplink(tp, dp);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002910 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
2913 cvp = XFS_ITOV(cdp);
2914
2915 created = B_TRUE;
2916
2917 *vpp = cvp;
2918 IHOLD(cdp);
2919
2920 /*
2921 * Attach the dquots to the new inode and modify the icount incore.
2922 */
2923 XFS_QM_DQVOPCREATE(mp, tp, cdp, udqp, gdqp);
2924
2925 /*
2926 * If this is a synchronous mount, make sure that the
2927 * mkdir transaction goes to disk before returning to
2928 * the user.
2929 */
2930 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2931 xfs_trans_set_sync(tp);
2932 }
2933
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002934 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 if (error) {
2936 IRELE(cdp);
2937 goto error2;
2938 }
2939
2940 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
2941 XFS_QM_DQRELE(mp, udqp);
2942 XFS_QM_DQRELE(mp, gdqp);
2943 if (error) {
2944 IRELE(cdp);
2945 }
2946
2947 /* Fall through to std_return with error = 0 or errno from
2948 * xfs_trans_commit. */
2949
2950std_return:
2951 if ( (created || (error != 0 && dm_event_sent != 0)) &&
2952 DM_EVENT_ENABLED(dir_vp->v_vfsp, XFS_BHVTOI(dir_bdp),
2953 DM_EVENT_POSTCREATE)) {
2954 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE,
2955 dir_vp, DM_RIGHT_NULL,
2956 created ? XFS_ITOV(cdp):NULL,
2957 DM_RIGHT_NULL,
2958 dir_name, NULL,
2959 dm_di_mode, error, 0);
2960 }
2961 return error;
2962
2963 error2:
2964 error1:
2965 xfs_bmap_cancel(&free_list);
2966 abort_return:
2967 cancel_flags |= XFS_TRANS_ABORT;
2968 error_return:
2969 xfs_trans_cancel(tp, cancel_flags);
2970 XFS_QM_DQRELE(mp, udqp);
2971 XFS_QM_DQRELE(mp, gdqp);
2972
2973 if (!dp_joined_to_trans && (dp != NULL)) {
2974 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2975 }
2976
2977 goto std_return;
2978}
2979
2980
2981/*
2982 * xfs_rmdir
2983 *
2984 */
2985STATIC int
2986xfs_rmdir(
2987 bhv_desc_t *dir_bdp,
Nathan Scott8285fb52006-06-09 17:07:12 +10002988 bhv_vname_t *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 cred_t *credp)
2990{
2991 char *name = VNAME(dentry);
2992 xfs_inode_t *dp;
2993 xfs_inode_t *cdp; /* child directory */
2994 xfs_trans_t *tp;
2995 xfs_mount_t *mp;
2996 int error;
2997 xfs_bmap_free_t free_list;
2998 xfs_fsblock_t first_block;
2999 int cancel_flags;
3000 int committed;
Nathan Scott67fcaa72006-06-09 17:00:52 +10003001 bhv_vnode_t *dir_vp;
Vlad Apostolov17370092006-09-28 11:02:30 +10003002 int dm_di_mode = S_IFDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 int last_cdp_link;
3004 int namelen;
3005 uint resblks;
3006
3007 dir_vp = BHV_TO_VNODE(dir_bdp);
3008 dp = XFS_BHVTOI(dir_bdp);
3009 mp = dp->i_mount;
3010
3011 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
3012
3013 if (XFS_FORCED_SHUTDOWN(XFS_BHVTOI(dir_bdp)->i_mount))
3014 return XFS_ERROR(EIO);
3015 namelen = VNAMELEN(dentry);
3016
Vlad Apostolov17370092006-09-28 11:02:30 +10003017 if (!xfs_get_dir_entry(dentry, &cdp)) {
3018 dm_di_mode = cdp->i_d.di_mode;
3019 IRELE(cdp);
3020 }
3021
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_REMOVE)) {
3023 error = XFS_SEND_NAMESP(mp, DM_EVENT_REMOVE,
3024 dir_vp, DM_RIGHT_NULL,
3025 NULL, DM_RIGHT_NULL,
Vlad Apostolov17370092006-09-28 11:02:30 +10003026 name, NULL, dm_di_mode, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 if (error)
3028 return XFS_ERROR(error);
3029 }
3030
3031 /* Return through std_return after this point. */
3032
3033 cdp = NULL;
3034
3035 /*
3036 * We need to get a reference to cdp before we get our log
3037 * reservation. The reason for this is that we cannot call
3038 * xfs_iget for an inode for which we do not have a reference
3039 * once we've acquired a log reservation. This is because the
3040 * inode we are trying to get might be in xfs_inactive going
3041 * for a log reservation. Since we'll have to wait for the
3042 * inactive code to complete before returning from xfs_iget,
3043 * we need to make sure that we don't have log space reserved
Nathan Scottc41564b2006-03-29 08:55:14 +10003044 * when we call xfs_iget. Instead we get an unlocked reference
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 * to the inode before getting our log reservation.
3046 */
3047 error = xfs_get_dir_entry(dentry, &cdp);
3048 if (error) {
3049 REMOVE_DEBUG_TRACE(__LINE__);
3050 goto std_return;
3051 }
3052 mp = dp->i_mount;
3053 dm_di_mode = cdp->i_d.di_mode;
3054
3055 /*
3056 * Get the dquots for the inodes.
3057 */
3058 error = XFS_QM_DQATTACH(mp, dp, 0);
3059 if (!error && dp != cdp)
3060 error = XFS_QM_DQATTACH(mp, cdp, 0);
3061 if (error) {
3062 IRELE(cdp);
3063 REMOVE_DEBUG_TRACE(__LINE__);
3064 goto std_return;
3065 }
3066
3067 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
3068 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
3069 /*
3070 * We try to get the real space reservation first,
3071 * allowing for directory btree deletion(s) implying
3072 * possible bmap insert(s). If we can't get the space
3073 * reservation then we use 0 instead, and avoid the bmap
3074 * btree insert(s) in the directory code by, if the bmap
3075 * insert tries to happen, instead trimming the LAST
3076 * block from the directory.
3077 */
3078 resblks = XFS_REMOVE_SPACE_RES(mp);
3079 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
3080 XFS_TRANS_PERM_LOG_RES, XFS_DEFAULT_LOG_COUNT);
3081 if (error == ENOSPC) {
3082 resblks = 0;
3083 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
3084 XFS_TRANS_PERM_LOG_RES, XFS_DEFAULT_LOG_COUNT);
3085 }
3086 if (error) {
3087 ASSERT(error != ENOSPC);
3088 cancel_flags = 0;
3089 IRELE(cdp);
3090 goto error_return;
3091 }
3092 XFS_BMAP_INIT(&free_list, &first_block);
3093
3094 /*
3095 * Now lock the child directory inode and the parent directory
3096 * inode in the proper order. This will take care of validating
3097 * that the directory entry for the child directory inode has
3098 * not changed while we were obtaining a log reservation.
3099 */
3100 error = xfs_lock_dir_and_entry(dp, dentry, cdp);
3101 if (error) {
3102 xfs_trans_cancel(tp, cancel_flags);
3103 IRELE(cdp);
3104 goto std_return;
3105 }
3106
3107 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
3108 if (dp != cdp) {
3109 /*
3110 * Only increment the parent directory vnode count if
3111 * we didn't bump it in looking up cdp. The only time
3112 * we don't bump it is when we're looking up ".".
3113 */
3114 VN_HOLD(dir_vp);
3115 }
3116
3117 ITRACE(cdp);
3118 xfs_trans_ijoin(tp, cdp, XFS_ILOCK_EXCL);
3119
3120 ASSERT(cdp->i_d.di_nlink >= 2);
3121 if (cdp->i_d.di_nlink != 2) {
3122 error = XFS_ERROR(ENOTEMPTY);
3123 goto error_return;
3124 }
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10003125 if (!xfs_dir_isempty(cdp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 error = XFS_ERROR(ENOTEMPTY);
3127 goto error_return;
3128 }
3129
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10003130 error = xfs_dir_removename(tp, dp, name, namelen, cdp->i_ino,
3131 &first_block, &free_list, resblks);
3132 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
3135 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3136
3137 /*
3138 * Bump the in memory generation count on the parent
3139 * directory so that other can know that it has changed.
3140 */
3141 dp->i_gen++;
3142
3143 /*
3144 * Drop the link from cdp's "..".
3145 */
3146 error = xfs_droplink(tp, dp);
3147 if (error) {
3148 goto error1;
3149 }
3150
3151 /*
3152 * Drop the link from dp to cdp.
3153 */
3154 error = xfs_droplink(tp, cdp);
3155 if (error) {
3156 goto error1;
3157 }
3158
3159 /*
3160 * Drop the "." link from cdp to self.
3161 */
3162 error = xfs_droplink(tp, cdp);
3163 if (error) {
3164 goto error1;
3165 }
3166
3167 /* Determine these before committing transaction */
3168 last_cdp_link = (cdp)->i_d.di_nlink==0;
3169
3170 /*
3171 * Take an extra ref on the child vnode so that it
3172 * does not go to xfs_inactive() from within the commit.
3173 */
3174 IHOLD(cdp);
3175
3176 /*
3177 * If this is a synchronous mount, make sure that the
3178 * rmdir transaction goes to disk before returning to
3179 * the user.
3180 */
3181 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
3182 xfs_trans_set_sync(tp);
3183 }
3184
Eric Sandeenf7c99b62007-02-10 18:37:16 +11003185 error = xfs_bmap_finish (&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 if (error) {
3187 xfs_bmap_cancel(&free_list);
3188 xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES |
3189 XFS_TRANS_ABORT));
3190 IRELE(cdp);
3191 goto std_return;
3192 }
3193
3194 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
3195 if (error) {
3196 IRELE(cdp);
3197 goto std_return;
3198 }
3199
3200
3201 /*
3202 * Let interposed file systems know about removed links.
3203 */
Nathan Scott67fcaa72006-06-09 17:00:52 +10003204 bhv_vop_link_removed(XFS_ITOV(cdp), dir_vp, last_cdp_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
3206 IRELE(cdp);
3207
3208 /* Fall through to std_return with error = 0 or the errno
3209 * from xfs_trans_commit. */
Nathan Scottbb19fba2006-03-22 14:12:12 +11003210 std_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_POSTREMOVE)) {
3212 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTREMOVE,
3213 dir_vp, DM_RIGHT_NULL,
3214 NULL, DM_RIGHT_NULL,
3215 name, NULL, dm_di_mode,
3216 error, 0);
3217 }
3218 return error;
3219
Nathan Scottbb19fba2006-03-22 14:12:12 +11003220 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 xfs_bmap_cancel(&free_list);
3222 cancel_flags |= XFS_TRANS_ABORT;
Jesper Juhl014c2542006-01-15 02:37:08 +01003223 /* FALLTHROUGH */
3224
Nathan Scottbb19fba2006-03-22 14:12:12 +11003225 error_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 xfs_trans_cancel(tp, cancel_flags);
3227 goto std_return;
3228}
3229
3230
3231/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 * Read dp's entries starting at uiop->uio_offset and translate them into
3233 * bufsize bytes worth of struct dirents starting at bufbase.
3234 */
3235STATIC int
3236xfs_readdir(
3237 bhv_desc_t *dir_bdp,
3238 uio_t *uiop,
3239 cred_t *credp,
3240 int *eofp)
3241{
3242 xfs_inode_t *dp;
3243 xfs_trans_t *tp = NULL;
3244 int error = 0;
3245 uint lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
3247 vn_trace_entry(BHV_TO_VNODE(dir_bdp), __FUNCTION__,
3248 (inst_t *)__return_address);
3249 dp = XFS_BHVTOI(dir_bdp);
3250
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10003251 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
3254 lock_mode = xfs_ilock_map_shared(dp);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10003255 error = xfs_dir_getdents(tp, dp, uiop, eofp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 xfs_iunlock_map_shared(dp, lock_mode);
3257 return error;
3258}
3259
3260
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261STATIC int
3262xfs_symlink(
3263 bhv_desc_t *dir_bdp,
Nathan Scott8285fb52006-06-09 17:07:12 +10003264 bhv_vname_t *dentry,
3265 bhv_vattr_t *vap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 char *target_path,
Nathan Scott67fcaa72006-06-09 17:00:52 +10003267 bhv_vnode_t **vpp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 cred_t *credp)
3269{
3270 xfs_trans_t *tp;
3271 xfs_mount_t *mp;
3272 xfs_inode_t *dp;
3273 xfs_inode_t *ip;
3274 int error;
3275 int pathlen;
3276 xfs_bmap_free_t free_list;
3277 xfs_fsblock_t first_block;
3278 boolean_t dp_joined_to_trans;
Nathan Scott67fcaa72006-06-09 17:00:52 +10003279 bhv_vnode_t *dir_vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 uint cancel_flags;
3281 int committed;
3282 xfs_fileoff_t first_fsb;
3283 xfs_filblks_t fs_blocks;
3284 int nmaps;
3285 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
3286 xfs_daddr_t d;
3287 char *cur_chunk;
3288 int byte_cnt;
3289 int n;
3290 xfs_buf_t *bp;
3291 xfs_prid_t prid;
3292 struct xfs_dquot *udqp, *gdqp;
3293 uint resblks;
3294 char *link_name = VNAME(dentry);
3295 int link_namelen;
3296
3297 *vpp = NULL;
3298 dir_vp = BHV_TO_VNODE(dir_bdp);
3299 dp = XFS_BHVTOI(dir_bdp);
3300 dp_joined_to_trans = B_FALSE;
3301 error = 0;
3302 ip = NULL;
3303 tp = NULL;
3304
3305 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
3306
3307 mp = dp->i_mount;
3308
3309 if (XFS_FORCED_SHUTDOWN(mp))
3310 return XFS_ERROR(EIO);
3311
3312 link_namelen = VNAMELEN(dentry);
3313
3314 /*
3315 * Check component lengths of the target path name.
3316 */
3317 pathlen = strlen(target_path);
3318 if (pathlen >= MAXPATHLEN) /* total string too long */
3319 return XFS_ERROR(ENAMETOOLONG);
3320 if (pathlen >= MAXNAMELEN) { /* is any component too long? */
3321 int len, total;
3322 char *path;
3323
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10003324 for (total = 0, path = target_path; total < pathlen;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 /*
3326 * Skip any slashes.
3327 */
3328 while(*path == '/') {
3329 total++;
3330 path++;
3331 }
3332
3333 /*
3334 * Count up to the next slash or end of path.
3335 * Error out if the component is bigger than MAXNAMELEN.
3336 */
3337 for(len = 0; *path != '/' && total < pathlen;total++, path++) {
3338 if (++len >= MAXNAMELEN) {
3339 error = ENAMETOOLONG;
3340 return error;
3341 }
3342 }
3343 }
3344 }
3345
3346 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_SYMLINK)) {
3347 error = XFS_SEND_NAMESP(mp, DM_EVENT_SYMLINK, dir_vp,
3348 DM_RIGHT_NULL, NULL, DM_RIGHT_NULL,
3349 link_name, target_path, 0, 0, 0);
3350 if (error)
3351 return error;
3352 }
3353
3354 /* Return through std_return after this point. */
3355
3356 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10003357 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
3358 prid = dp->i_d.di_projid;
3359 else if (vap->va_mask & XFS_AT_PROJID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 prid = (xfs_prid_t)vap->va_projid;
3361 else
3362 prid = (xfs_prid_t)dfltprid;
3363
3364 /*
3365 * Make sure that we have allocated dquot(s) on disk.
3366 */
3367 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10003368 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
3370 if (error)
3371 goto std_return;
3372
3373 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
3374 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
3375 /*
3376 * The symlink will fit into the inode data fork?
3377 * There can't be any attributes so we get the whole variable part.
3378 */
3379 if (pathlen <= XFS_LITINO(mp))
3380 fs_blocks = 0;
3381 else
3382 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
3383 resblks = XFS_SYMLINK_SPACE_RES(mp, link_namelen, fs_blocks);
3384 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
3385 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
3386 if (error == ENOSPC && fs_blocks == 0) {
3387 resblks = 0;
3388 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
3389 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
3390 }
3391 if (error) {
3392 cancel_flags = 0;
3393 dp = NULL;
3394 goto error_return;
3395 }
3396
3397 xfs_ilock(dp, XFS_ILOCK_EXCL);
3398
3399 /*
3400 * Check whether the directory allows new symlinks or not.
3401 */
3402 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
3403 error = XFS_ERROR(EPERM);
3404 goto error_return;
3405 }
3406
3407 /*
3408 * Reserve disk quota : blocks and inode.
3409 */
3410 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
3411 if (error)
3412 goto error_return;
3413
3414 /*
3415 * Check for ability to enter directory entry, if no space reserved.
3416 */
3417 if (resblks == 0 &&
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10003418 (error = xfs_dir_canenter(tp, dp, link_name, link_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 goto error_return;
3420 /*
3421 * Initialize the bmap freelist prior to calling either
3422 * bmapi or the directory create code.
3423 */
3424 XFS_BMAP_INIT(&free_list, &first_block);
3425
3426 /*
3427 * Allocate an inode for the symlink.
3428 */
3429 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (vap->va_mode&~S_IFMT),
3430 1, 0, credp, prid, resblks > 0, &ip, NULL);
3431 if (error) {
3432 if (error == ENOSPC)
3433 goto error_return;
3434 goto error1;
3435 }
3436 ITRACE(ip);
3437
3438 VN_HOLD(dir_vp);
3439 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
3440 dp_joined_to_trans = B_TRUE;
3441
3442 /*
3443 * Also attach the dquot(s) to it, if applicable.
3444 */
3445 XFS_QM_DQVOPCREATE(mp, tp, ip, udqp, gdqp);
3446
3447 if (resblks)
3448 resblks -= XFS_IALLOC_SPACE_RES(mp);
3449 /*
3450 * If the symlink will fit into the inode, write it inline.
3451 */
3452 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
3453 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
3454 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
3455 ip->i_d.di_size = pathlen;
3456
3457 /*
3458 * The inode was initially created in extent format.
3459 */
3460 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
3461 ip->i_df.if_flags |= XFS_IFINLINE;
3462
3463 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
3464 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
3465
3466 } else {
3467 first_fsb = 0;
3468 nmaps = SYMLINK_MAPS;
3469
3470 error = xfs_bmapi(tp, ip, first_fsb, fs_blocks,
3471 XFS_BMAPI_WRITE | XFS_BMAPI_METADATA,
3472 &first_block, resblks, mval, &nmaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003473 &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 if (error) {
3475 goto error1;
3476 }
3477
3478 if (resblks)
3479 resblks -= fs_blocks;
3480 ip->i_d.di_size = pathlen;
3481 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3482
3483 cur_chunk = target_path;
3484 for (n = 0; n < nmaps; n++) {
3485 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
3486 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
3487 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
3488 BTOBB(byte_cnt), 0);
3489 ASSERT(bp && !XFS_BUF_GETERROR(bp));
3490 if (pathlen < byte_cnt) {
3491 byte_cnt = pathlen;
3492 }
3493 pathlen -= byte_cnt;
3494
3495 memcpy(XFS_BUF_PTR(bp), cur_chunk, byte_cnt);
3496 cur_chunk += byte_cnt;
3497
3498 xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
3499 }
3500 }
3501
3502 /*
3503 * Create the directory entry for the symlink.
3504 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10003505 error = xfs_dir_createname(tp, dp, link_name, link_namelen, ip->i_ino,
3506 &first_block, &free_list, resblks);
3507 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3510 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
3511
3512 /*
3513 * Bump the in memory version number of the parent directory
3514 * so that other processes accessing it will recognize that
3515 * the directory has changed.
3516 */
3517 dp->i_gen++;
3518
3519 /*
3520 * If this is a synchronous mount, make sure that the
3521 * symlink transaction goes to disk before returning to
3522 * the user.
3523 */
3524 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
3525 xfs_trans_set_sync(tp);
3526 }
3527
3528 /*
3529 * xfs_trans_commit normally decrements the vnode ref count
3530 * when it unlocks the inode. Since we want to return the
3531 * vnode to the caller, we bump the vnode ref count now.
3532 */
3533 IHOLD(ip);
3534
Eric Sandeenf7c99b62007-02-10 18:37:16 +11003535 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 if (error) {
3537 goto error2;
3538 }
3539 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
3540 XFS_QM_DQRELE(mp, udqp);
3541 XFS_QM_DQRELE(mp, gdqp);
3542
3543 /* Fall through to std_return with error = 0 or errno from
3544 * xfs_trans_commit */
3545std_return:
3546 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, XFS_BHVTOI(dir_bdp),
3547 DM_EVENT_POSTSYMLINK)) {
3548 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTSYMLINK,
3549 dir_vp, DM_RIGHT_NULL,
3550 error ? NULL : XFS_ITOV(ip),
3551 DM_RIGHT_NULL, link_name, target_path,
3552 0, error, 0);
3553 }
3554
3555 if (!error) {
Nathan Scott67fcaa72006-06-09 17:00:52 +10003556 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
3558 ASSERT(ip);
3559 vp = XFS_ITOV(ip);
3560 *vpp = vp;
3561 }
3562 return error;
3563
3564 error2:
3565 IRELE(ip);
3566 error1:
3567 xfs_bmap_cancel(&free_list);
3568 cancel_flags |= XFS_TRANS_ABORT;
3569 error_return:
3570 xfs_trans_cancel(tp, cancel_flags);
3571 XFS_QM_DQRELE(mp, udqp);
3572 XFS_QM_DQRELE(mp, gdqp);
3573
3574 if (!dp_joined_to_trans && (dp != NULL)) {
3575 xfs_iunlock(dp, XFS_ILOCK_EXCL);
3576 }
3577
3578 goto std_return;
3579}
3580
3581
3582/*
3583 * xfs_fid2
3584 *
3585 * A fid routine that takes a pointer to a previously allocated
3586 * fid structure (like xfs_fast_fid) but uses a 64 bit inode number.
3587 */
3588STATIC int
3589xfs_fid2(
3590 bhv_desc_t *bdp,
3591 fid_t *fidp)
3592{
3593 xfs_inode_t *ip;
3594 xfs_fid2_t *xfid;
3595
3596 vn_trace_entry(BHV_TO_VNODE(bdp), __FUNCTION__,
3597 (inst_t *)__return_address);
3598 ASSERT(sizeof(fid_t) >= sizeof(xfs_fid2_t));
3599
3600 xfid = (xfs_fid2_t *)fidp;
3601 ip = XFS_BHVTOI(bdp);
3602 xfid->fid_len = sizeof(xfs_fid2_t) - sizeof(xfid->fid_len);
3603 xfid->fid_pad = 0;
3604 /*
3605 * use memcpy because the inode is a long long and there's no
3606 * assurance that xfid->fid_ino is properly aligned.
3607 */
3608 memcpy(&xfid->fid_ino, &ip->i_ino, sizeof(xfid->fid_ino));
3609 xfid->fid_gen = ip->i_d.di_gen;
3610
3611 return 0;
3612}
3613
3614
3615/*
3616 * xfs_rwlock
3617 */
3618int
3619xfs_rwlock(
3620 bhv_desc_t *bdp,
Nathan Scott8285fb52006-06-09 17:07:12 +10003621 bhv_vrwlock_t locktype)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622{
3623 xfs_inode_t *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +10003624 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625
3626 vp = BHV_TO_VNODE(bdp);
Christoph Hellwig0432dab2005-09-02 16:46:51 +10003627 if (VN_ISDIR(vp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 return 1;
3629 ip = XFS_BHVTOI(bdp);
3630 if (locktype == VRWLOCK_WRITE) {
3631 xfs_ilock(ip, XFS_IOLOCK_EXCL);
3632 } else if (locktype == VRWLOCK_TRY_READ) {
Jesper Juhl014c2542006-01-15 02:37:08 +01003633 return xfs_ilock_nowait(ip, XFS_IOLOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 } else if (locktype == VRWLOCK_TRY_WRITE) {
Jesper Juhl014c2542006-01-15 02:37:08 +01003635 return xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 } else {
3637 ASSERT((locktype == VRWLOCK_READ) ||
3638 (locktype == VRWLOCK_WRITE_DIRECT));
3639 xfs_ilock(ip, XFS_IOLOCK_SHARED);
3640 }
3641
3642 return 1;
3643}
3644
3645
3646/*
3647 * xfs_rwunlock
3648 */
3649void
3650xfs_rwunlock(
3651 bhv_desc_t *bdp,
Nathan Scott8285fb52006-06-09 17:07:12 +10003652 bhv_vrwlock_t locktype)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653{
3654 xfs_inode_t *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +10003655 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656
3657 vp = BHV_TO_VNODE(bdp);
Christoph Hellwig0432dab2005-09-02 16:46:51 +10003658 if (VN_ISDIR(vp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 return;
3660 ip = XFS_BHVTOI(bdp);
3661 if (locktype == VRWLOCK_WRITE) {
3662 /*
3663 * In the write case, we may have added a new entry to
3664 * the reference cache. This might store a pointer to
3665 * an inode to be released in this inode. If it is there,
3666 * clear the pointer and release the inode after unlocking
3667 * this one.
3668 */
3669 xfs_refcache_iunlock(ip, XFS_IOLOCK_EXCL);
3670 } else {
3671 ASSERT((locktype == VRWLOCK_READ) ||
3672 (locktype == VRWLOCK_WRITE_DIRECT));
3673 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
3674 }
3675 return;
3676}
3677
3678STATIC int
3679xfs_inode_flush(
3680 bhv_desc_t *bdp,
3681 int flags)
3682{
3683 xfs_inode_t *ip;
3684 xfs_mount_t *mp;
3685 xfs_inode_log_item_t *iip;
3686 int error = 0;
3687
3688 ip = XFS_BHVTOI(bdp);
3689 mp = ip->i_mount;
3690 iip = ip->i_itemp;
3691
3692 if (XFS_FORCED_SHUTDOWN(mp))
3693 return XFS_ERROR(EIO);
3694
3695 /*
3696 * Bypass inodes which have already been cleaned by
3697 * the inode flush clustering code inside xfs_iflush
3698 */
3699 if ((ip->i_update_core == 0) &&
3700 ((iip == NULL) || !(iip->ili_format.ilf_fields & XFS_ILOG_ALL)))
3701 return 0;
3702
3703 if (flags & FLUSH_LOG) {
3704 if (iip && iip->ili_last_lsn) {
3705 xlog_t *log = mp->m_log;
3706 xfs_lsn_t sync_lsn;
3707 int s, log_flags = XFS_LOG_FORCE;
3708
3709 s = GRANT_LOCK(log);
3710 sync_lsn = log->l_last_sync_lsn;
3711 GRANT_UNLOCK(log, s);
3712
3713 if ((XFS_LSN_CMP(iip->ili_last_lsn, sync_lsn) <= 0))
3714 return 0;
3715
3716 if (flags & FLUSH_SYNC)
3717 log_flags |= XFS_LOG_SYNC;
3718 return xfs_log_force(mp, iip->ili_last_lsn, log_flags);
3719 }
3720 }
3721
3722 /*
3723 * We make this non-blocking if the inode is contended,
3724 * return EAGAIN to indicate to the caller that they
3725 * did not succeed. This prevents the flush path from
3726 * blocking on inodes inside another operation right
3727 * now, they get caught later by xfs_sync.
3728 */
3729 if (flags & FLUSH_INODE) {
3730 int flush_flags;
3731
3732 if (xfs_ipincount(ip))
3733 return EAGAIN;
3734
3735 if (flags & FLUSH_SYNC) {
3736 xfs_ilock(ip, XFS_ILOCK_SHARED);
3737 xfs_iflock(ip);
3738 } else if (xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) {
3739 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip)) {
3740 xfs_iunlock(ip, XFS_ILOCK_SHARED);
3741 return EAGAIN;
3742 }
3743 } else {
3744 return EAGAIN;
3745 }
3746
3747 if (flags & FLUSH_SYNC)
3748 flush_flags = XFS_IFLUSH_SYNC;
3749 else
3750 flush_flags = XFS_IFLUSH_ASYNC;
3751
3752 error = xfs_iflush(ip, flush_flags);
3753 xfs_iunlock(ip, XFS_ILOCK_SHARED);
3754 }
3755
3756 return error;
3757}
3758
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759int
3760xfs_set_dmattrs (
3761 bhv_desc_t *bdp,
3762 u_int evmask,
3763 u_int16_t state,
3764 cred_t *credp)
3765{
3766 xfs_inode_t *ip;
3767 xfs_trans_t *tp;
3768 xfs_mount_t *mp;
3769 int error;
3770
3771 if (!capable(CAP_SYS_ADMIN))
3772 return XFS_ERROR(EPERM);
3773
3774 ip = XFS_BHVTOI(bdp);
3775 mp = ip->i_mount;
3776
3777 if (XFS_FORCED_SHUTDOWN(mp))
3778 return XFS_ERROR(EIO);
3779
3780 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
3781 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
3782 if (error) {
3783 xfs_trans_cancel(tp, 0);
3784 return error;
3785 }
3786 xfs_ilock(ip, XFS_ILOCK_EXCL);
3787 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3788
3789 ip->i_iocore.io_dmevmask = ip->i_d.di_dmevmask = evmask;
3790 ip->i_iocore.io_dmstate = ip->i_d.di_dmstate = state;
3791
3792 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3793 IHOLD(ip);
3794 error = xfs_trans_commit(tp, 0, NULL);
3795
3796 return error;
3797}
3798
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799STATIC int
3800xfs_reclaim(
3801 bhv_desc_t *bdp)
3802{
3803 xfs_inode_t *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +10003804 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805
3806 vp = BHV_TO_VNODE(bdp);
3807 ip = XFS_BHVTOI(bdp);
3808
3809 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
3810
3811 ASSERT(!VN_MAPPED(vp));
3812
3813 /* bad inode, get out here ASAP */
3814 if (VN_BAD(vp)) {
3815 xfs_ireclaim(ip);
3816 return 0;
3817 }
3818
Christoph Hellwig51c91ed2005-09-02 16:58:38 +10003819 vn_iowait(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820
Christoph Hellwig51c91ed2005-09-02 16:58:38 +10003821 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
Christoph Hellwig42fe2b12006-01-11 15:35:17 +11003823 /*
3824 * Make sure the atime in the XFS inode is correct before freeing the
3825 * Linux inode.
3826 */
3827 xfs_synchronize_atime(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
David Chinner4c606582006-11-11 18:05:00 +11003829 /*
3830 * If we have nothing to flush with this inode then complete the
3831 * teardown now, otherwise break the link between the xfs inode and the
3832 * linux inode and clean up the xfs inode later. This avoids flushing
3833 * the inode to disk during the delete operation itself.
3834 *
3835 * When breaking the link, we need to set the XFS_IRECLAIMABLE flag
3836 * first to ensure that xfs_iunpin() will never see an xfs inode
3837 * that has a linux inode being reclaimed. Synchronisation is provided
3838 * by the i_flags_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 */
3840 if (!ip->i_update_core && (ip->i_itemp == NULL)) {
3841 xfs_ilock(ip, XFS_ILOCK_EXCL);
3842 xfs_iflock(ip);
3843 return xfs_finish_reclaim(ip, 1, XFS_IFLUSH_DELWRI_ELSE_SYNC);
3844 } else {
3845 xfs_mount_t *mp = ip->i_mount;
3846
David Chinner4c606582006-11-11 18:05:00 +11003847 /* Protect sync and unpin from us */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 XFS_MOUNT_ILOCK(mp);
David Chinner4c606582006-11-11 18:05:00 +11003849 spin_lock(&ip->i_flags_lock);
3850 __xfs_iflags_set(ip, XFS_IRECLAIMABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 vn_bhv_remove(VN_BHV_HEAD(vp), XFS_ITOBHV(ip));
David Chinner4c606582006-11-11 18:05:00 +11003852 spin_unlock(&ip->i_flags_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 list_add_tail(&ip->i_reclaim, &mp->m_del_inodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 XFS_MOUNT_IUNLOCK(mp);
3855 }
3856 return 0;
3857}
3858
3859int
3860xfs_finish_reclaim(
3861 xfs_inode_t *ip,
3862 int locked,
3863 int sync_mode)
3864{
3865 xfs_ihash_t *ih = ip->i_hash;
Nathan Scott67fcaa72006-06-09 17:00:52 +10003866 bhv_vnode_t *vp = XFS_ITOV_NULL(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 int error;
3868
3869 if (vp && VN_BAD(vp))
3870 goto reclaim;
3871
3872 /* The hash lock here protects a thread in xfs_iget_core from
3873 * racing with us on linking the inode back with a vnode.
3874 * Once we have the XFS_IRECLAIM flag set it will not touch
3875 * us.
3876 */
3877 write_lock(&ih->ih_lock);
David Chinnerf273ab82006-09-28 11:06:03 +10003878 spin_lock(&ip->i_flags_lock);
David Chinner7a18c382006-11-11 18:04:54 +11003879 if (__xfs_iflags_test(ip, XFS_IRECLAIM) ||
3880 (!__xfs_iflags_test(ip, XFS_IRECLAIMABLE) && vp == NULL)) {
David Chinnerf273ab82006-09-28 11:06:03 +10003881 spin_unlock(&ip->i_flags_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 write_unlock(&ih->ih_lock);
3883 if (locked) {
3884 xfs_ifunlock(ip);
3885 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3886 }
Jesper Juhl014c2542006-01-15 02:37:08 +01003887 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888 }
David Chinner7a18c382006-11-11 18:04:54 +11003889 __xfs_iflags_set(ip, XFS_IRECLAIM);
David Chinnerf273ab82006-09-28 11:06:03 +10003890 spin_unlock(&ip->i_flags_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 write_unlock(&ih->ih_lock);
3892
3893 /*
3894 * If the inode is still dirty, then flush it out. If the inode
3895 * is not in the AIL, then it will be OK to flush it delwri as
3896 * long as xfs_iflush() does not keep any references to the inode.
3897 * We leave that decision up to xfs_iflush() since it has the
3898 * knowledge of whether it's OK to simply do a delwri flush of
3899 * the inode or whether we need to wait until the inode is
3900 * pulled from the AIL.
3901 * We get the flush lock regardless, though, just to make sure
3902 * we don't free it while it is being flushed.
3903 */
3904 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
3905 if (!locked) {
3906 xfs_ilock(ip, XFS_ILOCK_EXCL);
3907 xfs_iflock(ip);
3908 }
3909
3910 if (ip->i_update_core ||
3911 ((ip->i_itemp != NULL) &&
3912 (ip->i_itemp->ili_format.ilf_fields != 0))) {
3913 error = xfs_iflush(ip, sync_mode);
3914 /*
3915 * If we hit an error, typically because of filesystem
3916 * shutdown, we don't need to let vn_reclaim to know
3917 * because we're gonna reclaim the inode anyway.
3918 */
3919 if (error) {
3920 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3921 goto reclaim;
3922 }
3923 xfs_iflock(ip); /* synchronize with xfs_iflush_done */
3924 }
3925
3926 ASSERT(ip->i_update_core == 0);
3927 ASSERT(ip->i_itemp == NULL ||
3928 ip->i_itemp->ili_format.ilf_fields == 0);
3929 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3930 } else if (locked) {
3931 /*
3932 * We are not interested in doing an iflush if we're
3933 * in the process of shutting down the filesystem forcibly.
3934 * So, just reclaim the inode.
3935 */
3936 xfs_ifunlock(ip);
3937 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3938 }
3939
3940 reclaim:
3941 xfs_ireclaim(ip);
3942 return 0;
3943}
3944
3945int
3946xfs_finish_reclaim_all(xfs_mount_t *mp, int noblock)
3947{
3948 int purged;
3949 xfs_inode_t *ip, *n;
3950 int done = 0;
3951
3952 while (!done) {
3953 purged = 0;
3954 XFS_MOUNT_ILOCK(mp);
3955 list_for_each_entry_safe(ip, n, &mp->m_del_inodes, i_reclaim) {
3956 if (noblock) {
3957 if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL) == 0)
3958 continue;
3959 if (xfs_ipincount(ip) ||
3960 !xfs_iflock_nowait(ip)) {
3961 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3962 continue;
3963 }
3964 }
3965 XFS_MOUNT_IUNLOCK(mp);
Felix Blyakher6b2cf612005-11-25 16:42:13 +11003966 if (xfs_finish_reclaim(ip, noblock,
3967 XFS_IFLUSH_DELWRI_ELSE_ASYNC))
3968 delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 purged = 1;
3970 break;
3971 }
3972
3973 done = !purged;
3974 }
3975
3976 XFS_MOUNT_IUNLOCK(mp);
3977 return 0;
3978}
3979
3980/*
3981 * xfs_alloc_file_space()
3982 * This routine allocates disk space for the given file.
3983 *
3984 * If alloc_type == 0, this request is for an ALLOCSP type
3985 * request which will change the file size. In this case, no
3986 * DMAPI event will be generated by the call. A TRUNCATE event
3987 * will be generated later by xfs_setattr.
3988 *
3989 * If alloc_type != 0, this request is for a RESVSP type
3990 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
3991 * lower block boundary byte address is less than the file's
3992 * length.
3993 *
3994 * RETURNS:
3995 * 0 on success
3996 * errno on error
3997 *
3998 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003999STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000xfs_alloc_file_space(
4001 xfs_inode_t *ip,
4002 xfs_off_t offset,
4003 xfs_off_t len,
4004 int alloc_type,
4005 int attr_flags)
4006{
Nathan Scottdd9f4382006-01-11 15:28:28 +11004007 xfs_mount_t *mp = ip->i_mount;
4008 xfs_off_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 xfs_filblks_t allocated_fsb;
4010 xfs_filblks_t allocatesize_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11004011 xfs_extlen_t extsz, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 xfs_fileoff_t startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11004013 xfs_fsblock_t firstfsb;
4014 int nimaps;
4015 int bmapi_flag;
4016 int quota_flag;
4017 int rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 xfs_trans_t *tp;
Nathan Scottdd9f4382006-01-11 15:28:28 +11004019 xfs_bmbt_irec_t imaps[1], *imapp;
4020 xfs_bmap_free_t free_list;
4021 uint qblocks, resblks, resrtextents;
4022 int committed;
4023 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
4025 vn_trace_entry(XFS_ITOV(ip), __FUNCTION__, (inst_t *)__return_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026
4027 if (XFS_FORCED_SHUTDOWN(mp))
4028 return XFS_ERROR(EIO);
4029
Nathan Scottdd9f4382006-01-11 15:28:28 +11004030 rt = XFS_IS_REALTIME_INODE(ip);
4031 if (unlikely(rt)) {
4032 if (!(extsz = ip->i_d.di_extsize))
4033 extsz = mp->m_sb.sb_rextsize;
4034 } else {
4035 extsz = ip->i_d.di_extsize;
4036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037
4038 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
4039 return error;
4040
4041 if (len <= 0)
4042 return XFS_ERROR(EINVAL);
4043
4044 count = len;
4045 error = 0;
4046 imapp = &imaps[0];
Nathan Scottdd9f4382006-01-11 15:28:28 +11004047 nimaps = 1;
4048 bmapi_flag = XFS_BMAPI_WRITE | (alloc_type ? XFS_BMAPI_PREALLOC : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
4050 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
4051
4052 /* Generate a DMAPI event if needed. */
4053 if (alloc_type != 0 && offset < ip->i_d.di_size &&
4054 (attr_flags&ATTR_DMI) == 0 &&
4055 DM_EVENT_ENABLED(XFS_MTOVFS(mp), ip, DM_EVENT_WRITE)) {
4056 xfs_off_t end_dmi_offset;
4057
4058 end_dmi_offset = offset+len;
4059 if (end_dmi_offset > ip->i_d.di_size)
4060 end_dmi_offset = ip->i_d.di_size;
4061 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, XFS_ITOV(ip),
4062 offset, end_dmi_offset - offset,
4063 0, NULL);
4064 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01004065 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 }
4067
4068 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11004069 * Allocate file space until done or until there is an error
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 */
4071retry:
4072 while (allocatesize_fsb && !error) {
Nathan Scottdd9f4382006-01-11 15:28:28 +11004073 xfs_fileoff_t s, e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074
Nathan Scottdd9f4382006-01-11 15:28:28 +11004075 /*
Nathan Scott3ddb8fa2006-01-11 15:33:02 +11004076 * Determine space reservations for data/realtime.
Nathan Scottdd9f4382006-01-11 15:28:28 +11004077 */
4078 if (unlikely(extsz)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 s = startoffset_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +11004080 do_div(s, extsz);
4081 s *= extsz;
4082 e = startoffset_fsb + allocatesize_fsb;
4083 if ((temp = do_mod(startoffset_fsb, extsz)))
4084 e += temp;
4085 if ((temp = do_mod(e, extsz)))
4086 e += extsz - temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 } else {
Nathan Scottdd9f4382006-01-11 15:28:28 +11004088 s = 0;
4089 e = allocatesize_fsb;
4090 }
4091
4092 if (unlikely(rt)) {
4093 resrtextents = qblocks = (uint)(e - s);
4094 resrtextents /= mp->m_sb.sb_rextsize;
4095 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
4096 quota_flag = XFS_QMOPT_RES_RTBLKS;
4097 } else {
4098 resrtextents = 0;
4099 resblks = qblocks = \
4100 XFS_DIOSTRAT_SPACE_RES(mp, (uint)(e - s));
4101 quota_flag = XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 }
4103
4104 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11004105 * Allocate and setup the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 */
4107 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Nathan Scottdd9f4382006-01-11 15:28:28 +11004108 error = xfs_trans_reserve(tp, resblks,
4109 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 XFS_TRANS_PERM_LOG_RES,
4111 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11004113 * Check for running out of space
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 */
4115 if (error) {
4116 /*
4117 * Free the transaction structure.
4118 */
4119 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
4120 xfs_trans_cancel(tp, 0);
4121 break;
4122 }
4123 xfs_ilock(ip, XFS_ILOCK_EXCL);
Nathan Scottdd9f4382006-01-11 15:28:28 +11004124 error = XFS_TRANS_RESERVE_QUOTA_NBLKS(mp, tp, ip,
4125 qblocks, 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 if (error)
4127 goto error1;
4128
4129 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
4130 xfs_trans_ihold(tp, ip);
4131
4132 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11004133 * Issue the xfs_bmapi() call to allocate the blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 */
4135 XFS_BMAP_INIT(&free_list, &firstfsb);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10004136 error = XFS_BMAPI(mp, tp, &ip->i_iocore, startoffset_fsb,
Nathan Scottdd9f4382006-01-11 15:28:28 +11004137 allocatesize_fsb, bmapi_flag,
4138 &firstfsb, 0, imapp, &nimaps,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10004139 &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 if (error) {
4141 goto error0;
4142 }
4143
4144 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +11004145 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11004147 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 if (error) {
4149 goto error0;
4150 }
4151
4152 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
4153 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4154 if (error) {
4155 break;
4156 }
4157
4158 allocated_fsb = imapp->br_blockcount;
4159
Nathan Scottdd9f4382006-01-11 15:28:28 +11004160 if (nimaps == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161 error = XFS_ERROR(ENOSPC);
4162 break;
4163 }
4164
4165 startoffset_fsb += allocated_fsb;
4166 allocatesize_fsb -= allocated_fsb;
4167 }
4168dmapi_enospc_check:
4169 if (error == ENOSPC && (attr_flags&ATTR_DMI) == 0 &&
4170 DM_EVENT_ENABLED(XFS_MTOVFS(mp), ip, DM_EVENT_NOSPACE)) {
4171
4172 error = XFS_SEND_NAMESP(mp, DM_EVENT_NOSPACE,
4173 XFS_ITOV(ip), DM_RIGHT_NULL,
4174 XFS_ITOV(ip), DM_RIGHT_NULL,
4175 NULL, NULL, 0, 0, 0); /* Delay flag intentionally unused */
4176 if (error == 0)
4177 goto retry; /* Maybe DMAPI app. has made space */
4178 /* else fall through with error from XFS_SEND_DATA */
4179 }
4180
4181 return error;
4182
Nathan Scottdd9f4382006-01-11 15:28:28 +11004183error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 xfs_bmap_cancel(&free_list);
Nathan Scottdd9f4382006-01-11 15:28:28 +11004185 XFS_TRANS_UNRESERVE_QUOTA_NBLKS(mp, tp, ip, qblocks, 0, quota_flag);
4186
4187error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
4189 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4190 goto dmapi_enospc_check;
4191}
4192
4193/*
4194 * Zero file bytes between startoff and endoff inclusive.
4195 * The iolock is held exclusive and no blocks are buffered.
4196 */
4197STATIC int
4198xfs_zero_remaining_bytes(
4199 xfs_inode_t *ip,
4200 xfs_off_t startoff,
4201 xfs_off_t endoff)
4202{
4203 xfs_bmbt_irec_t imap;
4204 xfs_fileoff_t offset_fsb;
4205 xfs_off_t lastoffset;
4206 xfs_off_t offset;
4207 xfs_buf_t *bp;
4208 xfs_mount_t *mp = ip->i_mount;
4209 int nimap;
4210 int error = 0;
4211
4212 bp = xfs_buf_get_noaddr(mp->m_sb.sb_blocksize,
4213 ip->i_d.di_flags & XFS_DIFLAG_REALTIME ?
4214 mp->m_rtdev_targp : mp->m_ddev_targp);
4215
4216 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
4217 offset_fsb = XFS_B_TO_FSBT(mp, offset);
4218 nimap = 1;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10004219 error = XFS_BMAPI(mp, NULL, &ip->i_iocore, offset_fsb, 1, 0,
4220 NULL, 0, &imap, &nimap, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 if (error || nimap < 1)
4222 break;
4223 ASSERT(imap.br_blockcount >= 1);
4224 ASSERT(imap.br_startoff == offset_fsb);
4225 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
4226 if (lastoffset > endoff)
4227 lastoffset = endoff;
4228 if (imap.br_startblock == HOLESTARTBLOCK)
4229 continue;
4230 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
4231 if (imap.br_state == XFS_EXT_UNWRITTEN)
4232 continue;
4233 XFS_BUF_UNDONE(bp);
4234 XFS_BUF_UNWRITE(bp);
4235 XFS_BUF_READ(bp);
4236 XFS_BUF_SET_ADDR(bp, XFS_FSB_TO_DB(ip, imap.br_startblock));
4237 xfsbdstrat(mp, bp);
4238 if ((error = xfs_iowait(bp))) {
4239 xfs_ioerror_alert("xfs_zero_remaining_bytes(read)",
4240 mp, bp, XFS_BUF_ADDR(bp));
4241 break;
4242 }
4243 memset(XFS_BUF_PTR(bp) +
4244 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
4245 0, lastoffset - offset + 1);
4246 XFS_BUF_UNDONE(bp);
4247 XFS_BUF_UNREAD(bp);
4248 XFS_BUF_WRITE(bp);
4249 xfsbdstrat(mp, bp);
4250 if ((error = xfs_iowait(bp))) {
4251 xfs_ioerror_alert("xfs_zero_remaining_bytes(write)",
4252 mp, bp, XFS_BUF_ADDR(bp));
4253 break;
4254 }
4255 }
4256 xfs_buf_free(bp);
4257 return error;
4258}
4259
4260/*
4261 * xfs_free_file_space()
4262 * This routine frees disk space for the given file.
4263 *
4264 * This routine is only called by xfs_change_file_space
4265 * for an UNRESVSP type call.
4266 *
4267 * RETURNS:
4268 * 0 on success
4269 * errno on error
4270 *
4271 */
4272STATIC int
4273xfs_free_file_space(
4274 xfs_inode_t *ip,
4275 xfs_off_t offset,
4276 xfs_off_t len,
4277 int attr_flags)
4278{
Nathan Scott67fcaa72006-06-09 17:00:52 +10004279 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 int committed;
4281 int done;
4282 xfs_off_t end_dmi_offset;
4283 xfs_fileoff_t endoffset_fsb;
4284 int error;
4285 xfs_fsblock_t firstfsb;
4286 xfs_bmap_free_t free_list;
4287 xfs_off_t ilen;
4288 xfs_bmbt_irec_t imap;
4289 xfs_off_t ioffset;
4290 xfs_extlen_t mod=0;
4291 xfs_mount_t *mp;
4292 int nimap;
4293 uint resblks;
Nathan Scott673cdf52006-09-28 10:56:26 +10004294 uint rounding;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 int rt;
4296 xfs_fileoff_t startoffset_fsb;
4297 xfs_trans_t *tp;
Dean Roehrich5fcbab32005-05-05 13:27:19 -07004298 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10004300 vp = XFS_ITOV(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 mp = ip->i_mount;
4302
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10004303 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
4304
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
4306 return error;
4307
4308 error = 0;
4309 if (len <= 0) /* if nothing being freed */
4310 return error;
4311 rt = (ip->i_d.di_flags & XFS_DIFLAG_REALTIME);
4312 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
4313 end_dmi_offset = offset + len;
4314 endoffset_fsb = XFS_B_TO_FSBT(mp, end_dmi_offset);
4315
4316 if (offset < ip->i_d.di_size &&
4317 (attr_flags & ATTR_DMI) == 0 &&
4318 DM_EVENT_ENABLED(XFS_MTOVFS(mp), ip, DM_EVENT_WRITE)) {
4319 if (end_dmi_offset > ip->i_d.di_size)
4320 end_dmi_offset = ip->i_d.di_size;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10004321 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, vp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 offset, end_dmi_offset - offset,
4323 AT_DELAY_FLAG(attr_flags), NULL);
4324 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01004325 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 }
4327
Dean Roehrich5fcbab32005-05-05 13:27:19 -07004328 if (attr_flags & ATTR_NOLOCK)
4329 need_iolock = 0;
Yingping Lu9fa80462006-03-22 12:44:35 +11004330 if (need_iolock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Yingping Lu9fa80462006-03-22 12:44:35 +11004332 vn_iowait(vp); /* wait for the completion of any pending DIOs */
4333 }
Dean Roehrich5fcbab32005-05-05 13:27:19 -07004334
Nathan Scott673cdf52006-09-28 10:56:26 +10004335 rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, NBPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 ilen = len + (offset & (rounding - 1));
4337 ioffset = offset & ~(rounding - 1);
4338 if (ilen & (rounding - 1))
4339 ilen = (ilen + rounding) & ~(rounding - 1);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10004340
4341 if (VN_CACHED(vp) != 0) {
4342 xfs_inval_cached_trace(&ip->i_iocore, ioffset, -1,
4343 ctooff(offtoct(ioffset)), -1);
Nathan Scott67fcaa72006-06-09 17:00:52 +10004344 bhv_vop_flushinval_pages(vp, ctooff(offtoct(ioffset)),
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10004345 -1, FI_REMAPF_LOCKED);
4346 }
4347
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 /*
4349 * Need to zero the stuff we're not freeing, on disk.
4350 * If its a realtime file & can't use unwritten extents then we
4351 * actually need to zero the extent edges. Otherwise xfs_bunmapi
4352 * will take care of it for us.
4353 */
4354 if (rt && !XFS_SB_VERSION_HASEXTFLGBIT(&mp->m_sb)) {
4355 nimap = 1;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10004356 error = XFS_BMAPI(mp, NULL, &ip->i_iocore, startoffset_fsb,
4357 1, 0, NULL, 0, &imap, &nimap, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 if (error)
4359 goto out_unlock_iolock;
4360 ASSERT(nimap == 0 || nimap == 1);
4361 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
4362 xfs_daddr_t block;
4363
4364 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
4365 block = imap.br_startblock;
4366 mod = do_div(block, mp->m_sb.sb_rextsize);
4367 if (mod)
4368 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
4369 }
4370 nimap = 1;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10004371 error = XFS_BMAPI(mp, NULL, &ip->i_iocore, endoffset_fsb - 1,
4372 1, 0, NULL, 0, &imap, &nimap, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 if (error)
4374 goto out_unlock_iolock;
4375 ASSERT(nimap == 0 || nimap == 1);
4376 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
4377 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
4378 mod++;
4379 if (mod && (mod != mp->m_sb.sb_rextsize))
4380 endoffset_fsb -= mod;
4381 }
4382 }
4383 if ((done = (endoffset_fsb <= startoffset_fsb)))
4384 /*
4385 * One contiguous piece to clear
4386 */
4387 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
4388 else {
4389 /*
4390 * Some full blocks, possibly two pieces to clear
4391 */
4392 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
4393 error = xfs_zero_remaining_bytes(ip, offset,
4394 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
4395 if (!error &&
4396 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
4397 error = xfs_zero_remaining_bytes(ip,
4398 XFS_FSB_TO_B(mp, endoffset_fsb),
4399 offset + len - 1);
4400 }
4401
4402 /*
4403 * free file space until done or until there is an error
4404 */
4405 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
4406 while (!error && !done) {
4407
4408 /*
4409 * allocate and setup the transaction
4410 */
4411 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
4412 error = xfs_trans_reserve(tp,
4413 resblks,
4414 XFS_WRITE_LOG_RES(mp),
4415 0,
4416 XFS_TRANS_PERM_LOG_RES,
4417 XFS_WRITE_LOG_COUNT);
4418
4419 /*
4420 * check for running out of space
4421 */
4422 if (error) {
4423 /*
4424 * Free the transaction structure.
4425 */
4426 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
4427 xfs_trans_cancel(tp, 0);
4428 break;
4429 }
4430 xfs_ilock(ip, XFS_ILOCK_EXCL);
4431 error = XFS_TRANS_RESERVE_QUOTA(mp, tp,
Nathan Scottdd9f4382006-01-11 15:28:28 +11004432 ip->i_udquot, ip->i_gdquot, resblks, 0,
4433 XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 if (error)
4435 goto error1;
4436
4437 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
4438 xfs_trans_ihold(tp, ip);
4439
4440 /*
4441 * issue the bunmapi() call to free the blocks
4442 */
4443 XFS_BMAP_INIT(&free_list, &firstfsb);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10004444 error = XFS_BUNMAPI(mp, tp, &ip->i_iocore, startoffset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445 endoffset_fsb - startoffset_fsb,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10004446 0, 2, &firstfsb, &free_list, NULL, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 if (error) {
4448 goto error0;
4449 }
4450
4451 /*
4452 * complete the transaction
4453 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +11004454 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 if (error) {
4456 goto error0;
4457 }
4458
4459 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
4460 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4461 }
4462
4463 out_unlock_iolock:
4464 if (need_iolock)
4465 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
4466 return error;
4467
4468 error0:
4469 xfs_bmap_cancel(&free_list);
4470 error1:
4471 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
4472 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
4473 XFS_ILOCK_EXCL);
4474 return error;
4475}
4476
4477/*
4478 * xfs_change_file_space()
4479 * This routine allocates or frees disk space for the given file.
4480 * The user specified parameters are checked for alignment and size
4481 * limitations.
4482 *
4483 * RETURNS:
4484 * 0 on success
4485 * errno on error
4486 *
4487 */
4488int
4489xfs_change_file_space(
4490 bhv_desc_t *bdp,
4491 int cmd,
4492 xfs_flock64_t *bf,
4493 xfs_off_t offset,
4494 cred_t *credp,
4495 int attr_flags)
4496{
4497 int clrprealloc;
4498 int error;
4499 xfs_fsize_t fsize;
4500 xfs_inode_t *ip;
4501 xfs_mount_t *mp;
4502 int setprealloc;
4503 xfs_off_t startoffset;
4504 xfs_off_t llen;
4505 xfs_trans_t *tp;
Nathan Scott8285fb52006-06-09 17:07:12 +10004506 bhv_vattr_t va;
Nathan Scott67fcaa72006-06-09 17:00:52 +10004507 bhv_vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508
4509 vp = BHV_TO_VNODE(bdp);
4510 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
4511
4512 ip = XFS_BHVTOI(bdp);
4513 mp = ip->i_mount;
4514
4515 /*
4516 * must be a regular file and have write permission
4517 */
Christoph Hellwig0432dab2005-09-02 16:46:51 +10004518 if (!VN_ISREG(vp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 return XFS_ERROR(EINVAL);
4520
4521 xfs_ilock(ip, XFS_ILOCK_SHARED);
4522
4523 if ((error = xfs_iaccess(ip, S_IWUSR, credp))) {
4524 xfs_iunlock(ip, XFS_ILOCK_SHARED);
4525 return error;
4526 }
4527
4528 xfs_iunlock(ip, XFS_ILOCK_SHARED);
4529
4530 switch (bf->l_whence) {
4531 case 0: /*SEEK_SET*/
4532 break;
4533 case 1: /*SEEK_CUR*/
4534 bf->l_start += offset;
4535 break;
4536 case 2: /*SEEK_END*/
4537 bf->l_start += ip->i_d.di_size;
4538 break;
4539 default:
4540 return XFS_ERROR(EINVAL);
4541 }
4542
4543 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
4544
4545 if ( (bf->l_start < 0)
4546 || (bf->l_start > XFS_MAXIOFFSET(mp))
4547 || (bf->l_start + llen < 0)
4548 || (bf->l_start + llen > XFS_MAXIOFFSET(mp)))
4549 return XFS_ERROR(EINVAL);
4550
4551 bf->l_whence = 0;
4552
4553 startoffset = bf->l_start;
4554 fsize = ip->i_d.di_size;
4555
4556 /*
4557 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
4558 * file space.
4559 * These calls do NOT zero the data space allocated to the file,
4560 * nor do they change the file size.
4561 *
4562 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
4563 * space.
4564 * These calls cause the new file data to be zeroed and the file
4565 * size to be changed.
4566 */
4567 setprealloc = clrprealloc = 0;
4568
4569 switch (cmd) {
4570 case XFS_IOC_RESVSP:
4571 case XFS_IOC_RESVSP64:
4572 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
4573 1, attr_flags);
4574 if (error)
4575 return error;
4576 setprealloc = 1;
4577 break;
4578
4579 case XFS_IOC_UNRESVSP:
4580 case XFS_IOC_UNRESVSP64:
4581 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
4582 attr_flags)))
4583 return error;
4584 break;
4585
4586 case XFS_IOC_ALLOCSP:
4587 case XFS_IOC_ALLOCSP64:
4588 case XFS_IOC_FREESP:
4589 case XFS_IOC_FREESP64:
4590 if (startoffset > fsize) {
4591 error = xfs_alloc_file_space(ip, fsize,
4592 startoffset - fsize, 0, attr_flags);
4593 if (error)
4594 break;
4595 }
4596
4597 va.va_mask = XFS_AT_SIZE;
4598 va.va_size = startoffset;
4599
4600 error = xfs_setattr(bdp, &va, attr_flags, credp);
4601
4602 if (error)
4603 return error;
4604
4605 clrprealloc = 1;
4606 break;
4607
4608 default:
4609 ASSERT(0);
4610 return XFS_ERROR(EINVAL);
4611 }
4612
4613 /*
4614 * update the inode timestamp, mode, and prealloc flag bits
4615 */
4616 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
4617
4618 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
4619 0, 0, 0))) {
4620 /* ASSERT(0); */
4621 xfs_trans_cancel(tp, 0);
4622 return error;
4623 }
4624
4625 xfs_ilock(ip, XFS_ILOCK_EXCL);
4626
4627 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
4628 xfs_trans_ihold(tp, ip);
4629
4630 if ((attr_flags & ATTR_DMI) == 0) {
4631 ip->i_d.di_mode &= ~S_ISUID;
4632
4633 /*
4634 * Note that we don't have to worry about mandatory
4635 * file locking being disabled here because we only
4636 * clear the S_ISGID bit if the Group execute bit is
4637 * on, but if it was on then mandatory locking wouldn't
4638 * have been enabled.
4639 */
4640 if (ip->i_d.di_mode & S_IXGRP)
4641 ip->i_d.di_mode &= ~S_ISGID;
4642
4643 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
4644 }
4645 if (setprealloc)
4646 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
4647 else if (clrprealloc)
4648 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
4649
4650 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
4651 xfs_trans_set_sync(tp);
4652
4653 error = xfs_trans_commit(tp, 0, NULL);
4654
4655 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4656
4657 return error;
4658}
4659
Nathan Scott67fcaa72006-06-09 17:00:52 +10004660bhv_vnodeops_t xfs_vnodeops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 BHV_IDENTITY_INIT(VN_BHV_XFS,VNODE_POSITION_XFS),
4662 .vop_open = xfs_open,
Nathan Scott7d4fb402006-06-09 15:27:16 +10004663 .vop_close = xfs_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 .vop_read = xfs_read,
4665#ifdef HAVE_SENDFILE
4666 .vop_sendfile = xfs_sendfile,
4667#endif
Nathan Scott1b895842006-03-31 13:08:59 +10004668#ifdef HAVE_SPLICE
4669 .vop_splice_read = xfs_splice_read,
4670 .vop_splice_write = xfs_splice_write,
4671#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 .vop_write = xfs_write,
4673 .vop_ioctl = xfs_ioctl,
4674 .vop_getattr = xfs_getattr,
4675 .vop_setattr = xfs_setattr,
4676 .vop_access = xfs_access,
4677 .vop_lookup = xfs_lookup,
4678 .vop_create = xfs_create,
4679 .vop_remove = xfs_remove,
4680 .vop_link = xfs_link,
4681 .vop_rename = xfs_rename,
4682 .vop_mkdir = xfs_mkdir,
4683 .vop_rmdir = xfs_rmdir,
4684 .vop_readdir = xfs_readdir,
4685 .vop_symlink = xfs_symlink,
4686 .vop_readlink = xfs_readlink,
4687 .vop_fsync = xfs_fsync,
4688 .vop_inactive = xfs_inactive,
4689 .vop_fid2 = xfs_fid2,
4690 .vop_rwlock = xfs_rwlock,
4691 .vop_rwunlock = xfs_rwunlock,
4692 .vop_bmap = xfs_bmap,
4693 .vop_reclaim = xfs_reclaim,
4694 .vop_attr_get = xfs_attr_get,
4695 .vop_attr_set = xfs_attr_set,
4696 .vop_attr_remove = xfs_attr_remove,
4697 .vop_attr_list = xfs_attr_list,
4698 .vop_link_removed = (vop_link_removed_t)fs_noval,
4699 .vop_vnode_change = (vop_vnode_change_t)fs_noval,
4700 .vop_tosspages = fs_tosspages,
4701 .vop_flushinval_pages = fs_flushinval_pages,
4702 .vop_flush_pages = fs_flush_pages,
4703 .vop_release = xfs_release,
4704 .vop_iflush = xfs_inode_flush,
4705};