blob: e2bf2ef58b66910962f0f6f4762b5ba46b53af34 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002 * Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 *
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
22 *
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
25 *
26 * http://www.sgi.com
27 *
28 * For further information regarding this notice, see:
29 *
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
31 */
32
33#include "xfs.h"
34#include "xfs_macros.h"
35#include "xfs_types.h"
36#include "xfs_inum.h"
37#include "xfs_log.h"
38#include "xfs_trans.h"
39#include "xfs_sb.h"
40#include "xfs_ag.h"
41#include "xfs_dir.h"
42#include "xfs_dir2.h"
43#include "xfs_dmapi.h"
44#include "xfs_mount.h"
45#include "xfs_alloc_btree.h"
46#include "xfs_bmap_btree.h"
47#include "xfs_ialloc_btree.h"
48#include "xfs_itable.h"
49#include "xfs_btree.h"
50#include "xfs_ialloc.h"
51#include "xfs_alloc.h"
52#include "xfs_attr_sf.h"
53#include "xfs_dir_sf.h"
54#include "xfs_dir2_sf.h"
55#include "xfs_dinode.h"
56#include "xfs_inode_item.h"
57#include "xfs_inode.h"
58#include "xfs_bmap.h"
59#include "xfs_da_btree.h"
60#include "xfs_attr.h"
61#include "xfs_rw.h"
62#include "xfs_refcache.h"
63#include "xfs_error.h"
64#include "xfs_bit.h"
65#include "xfs_rtalloc.h"
66#include "xfs_quota.h"
67#include "xfs_utils.h"
68#include "xfs_trans_space.h"
69#include "xfs_dir_leaf.h"
70#include "xfs_mac.h"
71#include "xfs_log_priv.h"
72
73
74/*
75 * The maximum pathlen is 1024 bytes. Since the minimum file system
76 * blocksize is 512 bytes, we can get a max of 2 extents back from
77 * bmapi.
78 */
79#define SYMLINK_MAPS 2
80
81/*
82 * For xfs, we check that the file isn't too big to be opened by this kernel.
83 * No other open action is required for regular files. Devices are handled
84 * through the specfs file system, pipes through fifofs. Device and
85 * fifo vnodes are "wrapped" by specfs and fifofs vnodes, respectively,
86 * when a new vnode is first looked up or created.
87 */
88STATIC int
89xfs_open(
90 bhv_desc_t *bdp,
91 cred_t *credp)
92{
93 int mode;
94 vnode_t *vp;
95 xfs_inode_t *ip;
96
97 vp = BHV_TO_VNODE(bdp);
98 ip = XFS_BHVTOI(bdp);
99
100 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
101 return XFS_ERROR(EIO);
102
103 /*
104 * If it's a directory with any blocks, read-ahead block 0
105 * as we're almost certain to have the next operation be a read there.
106 */
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000107 if (VN_ISDIR(vp) && ip->i_d.di_nextents > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 mode = xfs_ilock_map_shared(ip);
109 if (ip->i_d.di_nextents > 0)
110 (void)xfs_da_reada_buf(NULL, ip, 0, XFS_DATA_FORK);
111 xfs_iunlock(ip, mode);
112 }
113 return 0;
114}
115
116
117/*
118 * xfs_getattr
119 */
120STATIC int
121xfs_getattr(
122 bhv_desc_t *bdp,
123 vattr_t *vap,
124 int flags,
125 cred_t *credp)
126{
127 xfs_inode_t *ip;
128 xfs_mount_t *mp;
129 vnode_t *vp;
130
131 vp = BHV_TO_VNODE(bdp);
132 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
133
134 ip = XFS_BHVTOI(bdp);
135 mp = ip->i_mount;
136
137 if (XFS_FORCED_SHUTDOWN(mp))
138 return XFS_ERROR(EIO);
139
140 if (!(flags & ATTR_LAZY))
141 xfs_ilock(ip, XFS_ILOCK_SHARED);
142
143 vap->va_size = ip->i_d.di_size;
144 if (vap->va_mask == XFS_AT_SIZE)
145 goto all_done;
146
147 vap->va_nblocks =
148 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
149 vap->va_nodeid = ip->i_ino;
150#if XFS_BIG_INUMS
151 vap->va_nodeid += mp->m_inoadd;
152#endif
153 vap->va_nlink = ip->i_d.di_nlink;
154
155 /*
156 * Quick exit for non-stat callers
157 */
158 if ((vap->va_mask &
159 ~(XFS_AT_SIZE|XFS_AT_FSID|XFS_AT_NODEID|
160 XFS_AT_NLINK|XFS_AT_BLKSIZE)) == 0)
161 goto all_done;
162
163 /*
164 * Copy from in-core inode.
165 */
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000166 vap->va_mode = ip->i_d.di_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 vap->va_uid = ip->i_d.di_uid;
168 vap->va_gid = ip->i_d.di_gid;
169 vap->va_projid = ip->i_d.di_projid;
170
171 /*
172 * Check vnode type block/char vs. everything else.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 */
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000174 switch (ip->i_d.di_mode & S_IFMT) {
175 case S_IFBLK:
176 case S_IFCHR:
177 vap->va_rdev = ip->i_df.if_u2.if_rdev;
178 vap->va_blocksize = BLKDEV_IOSIZE;
179 break;
180 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 vap->va_rdev = 0;
182
183 if (!(ip->i_d.di_flags & XFS_DIFLAG_REALTIME)) {
184
185#if 0
186 /* Large block sizes confuse various
187 * user space programs, so letting the
188 * stripe size through is not a good
189 * idea for now.
190 */
191 vap->va_blocksize = mp->m_swidth ?
192 /*
193 * If the underlying volume is a stripe, then
194 * return the stripe width in bytes as the
195 * recommended I/O size.
196 */
197 (mp->m_swidth << mp->m_sb.sb_blocklog) :
198 /*
199 * Return the largest of the preferred buffer
200 * sizes since doing small I/Os into larger
201 * buffers causes buffers to be decommissioned.
202 * The value returned is in bytes.
203 */
204 (1 << (int)MAX(mp->m_readio_log,
205 mp->m_writeio_log));
206
207#else
208 vap->va_blocksize =
209 /*
210 * Return the largest of the preferred buffer
211 * sizes since doing small I/Os into larger
212 * buffers causes buffers to be decommissioned.
213 * The value returned is in bytes.
214 */
215 1 << (int)MAX(mp->m_readio_log,
216 mp->m_writeio_log);
217#endif
218 } else {
219
220 /*
221 * If the file blocks are being allocated from a
222 * realtime partition, then return the inode's
223 * realtime extent size or the realtime volume's
224 * extent size.
225 */
226 vap->va_blocksize = ip->i_d.di_extsize ?
227 (ip->i_d.di_extsize << mp->m_sb.sb_blocklog) :
228 (mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog);
229 }
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
233 vap->va_atime.tv_sec = ip->i_d.di_atime.t_sec;
234 vap->va_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
235 vap->va_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
236 vap->va_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
237 vap->va_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
238 vap->va_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
239
240 /*
241 * Exit for stat callers. See if any of the rest of the fields
242 * to be filled in are needed.
243 */
244 if ((vap->va_mask &
245 (XFS_AT_XFLAGS|XFS_AT_EXTSIZE|XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|
246 XFS_AT_GENCOUNT|XFS_AT_VCODE)) == 0)
247 goto all_done;
248
249 /*
250 * Convert di_flags to xflags.
251 */
252 vap->va_xflags = xfs_ip2xflags(ip);
253
254 /*
255 * Exit for inode revalidate. See if any of the rest of
256 * the fields to be filled in are needed.
257 */
258 if ((vap->va_mask &
259 (XFS_AT_EXTSIZE|XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|
260 XFS_AT_GENCOUNT|XFS_AT_VCODE)) == 0)
261 goto all_done;
262
263 vap->va_extsize = ip->i_d.di_extsize << mp->m_sb.sb_blocklog;
264 vap->va_nextents =
265 (ip->i_df.if_flags & XFS_IFEXTENTS) ?
266 ip->i_df.if_bytes / sizeof(xfs_bmbt_rec_t) :
267 ip->i_d.di_nextents;
268 if (ip->i_afp)
269 vap->va_anextents =
270 (ip->i_afp->if_flags & XFS_IFEXTENTS) ?
271 ip->i_afp->if_bytes / sizeof(xfs_bmbt_rec_t) :
272 ip->i_d.di_anextents;
273 else
274 vap->va_anextents = 0;
275 vap->va_gen = ip->i_d.di_gen;
276
277 all_done:
278 if (!(flags & ATTR_LAZY))
279 xfs_iunlock(ip, XFS_ILOCK_SHARED);
280 return 0;
281}
282
283
284/*
285 * xfs_setattr
286 */
287int
288xfs_setattr(
289 bhv_desc_t *bdp,
290 vattr_t *vap,
291 int flags,
292 cred_t *credp)
293{
294 xfs_inode_t *ip;
295 xfs_trans_t *tp;
296 xfs_mount_t *mp;
297 int mask;
298 int code;
299 uint lock_flags;
300 uint commit_flags=0;
301 uid_t uid=0, iuid=0;
302 gid_t gid=0, igid=0;
303 int timeflags = 0;
304 vnode_t *vp;
305 xfs_prid_t projid=0, iprojid=0;
306 int mandlock_before, mandlock_after;
307 struct xfs_dquot *udqp, *gdqp, *olddquot1, *olddquot2;
308 int file_owner;
Dean Roehrich5fcbab32005-05-05 13:27:19 -0700309 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 vp = BHV_TO_VNODE(bdp);
312 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
313
314 if (vp->v_vfsp->vfs_flag & VFS_RDONLY)
315 return XFS_ERROR(EROFS);
316
317 /*
318 * Cannot set certain attributes.
319 */
320 mask = vap->va_mask;
321 if (mask & XFS_AT_NOSET) {
322 return XFS_ERROR(EINVAL);
323 }
324
325 ip = XFS_BHVTOI(bdp);
326 mp = ip->i_mount;
327
328 if (XFS_FORCED_SHUTDOWN(mp))
329 return XFS_ERROR(EIO);
330
331 /*
332 * Timestamps do not need to be logged and hence do not
333 * need to be done within a transaction.
334 */
335 if (mask & XFS_AT_UPDTIMES) {
336 ASSERT((mask & ~XFS_AT_UPDTIMES) == 0);
337 timeflags = ((mask & XFS_AT_UPDATIME) ? XFS_ICHGTIME_ACC : 0) |
338 ((mask & XFS_AT_UPDCTIME) ? XFS_ICHGTIME_CHG : 0) |
339 ((mask & XFS_AT_UPDMTIME) ? XFS_ICHGTIME_MOD : 0);
340 xfs_ichgtime(ip, timeflags);
341 return 0;
342 }
343
344 olddquot1 = olddquot2 = NULL;
345 udqp = gdqp = NULL;
346
347 /*
348 * If disk quotas is on, we make sure that the dquots do exist on disk,
349 * before we start any other transactions. Trying to do this later
350 * is messy. We don't care to take a readlock to look at the ids
351 * in inode here, because we can't hold it across the trans_reserve.
352 * If the IDs do change before we take the ilock, we're covered
353 * because the i_*dquot fields will get updated anyway.
354 */
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000355 if (XFS_IS_QUOTA_ON(mp) &&
356 (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 uint qflags = 0;
358
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000359 if ((mask & XFS_AT_UID) && XFS_IS_UQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 uid = vap->va_uid;
361 qflags |= XFS_QMOPT_UQUOTA;
362 } else {
363 uid = ip->i_d.di_uid;
364 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000365 if ((mask & XFS_AT_GID) && XFS_IS_GQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 gid = vap->va_gid;
367 qflags |= XFS_QMOPT_GQUOTA;
368 } else {
369 gid = ip->i_d.di_gid;
370 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000371 if ((mask & XFS_AT_PROJID) && XFS_IS_PQUOTA_ON(mp)) {
372 projid = vap->va_projid;
373 qflags |= XFS_QMOPT_PQUOTA;
374 } else {
375 projid = ip->i_d.di_projid;
376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /*
378 * We take a reference when we initialize udqp and gdqp,
379 * so it is important that we never blindly double trip on
380 * the same variable. See xfs_create() for an example.
381 */
382 ASSERT(udqp == NULL);
383 ASSERT(gdqp == NULL);
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000384 code = XFS_QM_DQVOPALLOC(mp, ip, uid, gid, projid, qflags,
385 &udqp, &gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (code)
387 return (code);
388 }
389
390 /*
391 * For the other attributes, we acquire the inode lock and
392 * first do an error checking pass.
393 */
394 tp = NULL;
395 lock_flags = XFS_ILOCK_EXCL;
Dean Roehrich5fcbab32005-05-05 13:27:19 -0700396 ASSERT(flags & ATTR_NOLOCK ? flags & ATTR_DMI : 1);
397 if (flags & ATTR_NOLOCK)
398 need_iolock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (!(mask & XFS_AT_SIZE)) {
400 if ((mask != (XFS_AT_CTIME|XFS_AT_ATIME|XFS_AT_MTIME)) ||
401 (mp->m_flags & XFS_MOUNT_WSYNC)) {
402 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
403 commit_flags = 0;
404 if ((code = xfs_trans_reserve(tp, 0,
405 XFS_ICHANGE_LOG_RES(mp), 0,
406 0, 0))) {
407 lock_flags = 0;
408 goto error_return;
409 }
410 }
411 } else {
412 if (DM_EVENT_ENABLED (vp->v_vfsp, ip, DM_EVENT_TRUNCATE) &&
413 !(flags & ATTR_DMI)) {
414 int dmflags = AT_DELAY_FLAG(flags) | DM_SEM_FLAG_WR;
415 code = XFS_SEND_DATA(mp, DM_EVENT_TRUNCATE, vp,
416 vap->va_size, 0, dmflags, NULL);
417 if (code) {
418 lock_flags = 0;
419 goto error_return;
420 }
421 }
422 if (need_iolock)
423 lock_flags |= XFS_IOLOCK_EXCL;
424 }
425
426 xfs_ilock(ip, lock_flags);
427
428 /* boolean: are we the file owner? */
429 file_owner = (current_fsuid(credp) == ip->i_d.di_uid);
430
431 /*
432 * Change various properties of a file.
433 * Only the owner or users with CAP_FOWNER
434 * capability may do these things.
435 */
436 if (mask &
437 (XFS_AT_MODE|XFS_AT_XFLAGS|XFS_AT_EXTSIZE|XFS_AT_UID|
438 XFS_AT_GID|XFS_AT_PROJID)) {
439 /*
440 * CAP_FOWNER overrides the following restrictions:
441 *
442 * The user ID of the calling process must be equal
443 * to the file owner ID, except in cases where the
444 * CAP_FSETID capability is applicable.
445 */
446 if (!file_owner && !capable(CAP_FOWNER)) {
447 code = XFS_ERROR(EPERM);
448 goto error_return;
449 }
450
451 /*
452 * CAP_FSETID overrides the following restrictions:
453 *
454 * The effective user ID of the calling process shall match
455 * the file owner when setting the set-user-ID and
456 * set-group-ID bits on that file.
457 *
458 * The effective group ID or one of the supplementary group
459 * IDs of the calling process shall match the group owner of
460 * the file when setting the set-group-ID bit on that file
461 */
462 if (mask & XFS_AT_MODE) {
463 mode_t m = 0;
464
465 if ((vap->va_mode & S_ISUID) && !file_owner)
466 m |= S_ISUID;
467 if ((vap->va_mode & S_ISGID) &&
468 !in_group_p((gid_t)ip->i_d.di_gid))
469 m |= S_ISGID;
470#if 0
471 /* Linux allows this, Irix doesn't. */
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000472 if ((vap->va_mode & S_ISVTX) && !VN_ISDIR(vp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 m |= S_ISVTX;
474#endif
475 if (m && !capable(CAP_FSETID))
476 vap->va_mode &= ~m;
477 }
478 }
479
480 /*
481 * Change file ownership. Must be the owner or privileged.
482 * If the system was configured with the "restricted_chown"
483 * option, the owner is not permitted to give away the file,
484 * and can change the group id only to a group of which he
485 * or she is a member.
486 */
487 if (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID)) {
488 /*
489 * These IDs could have changed since we last looked at them.
490 * But, we're assured that if the ownership did change
491 * while we didn't have the inode locked, inode's dquot(s)
492 * would have changed also.
493 */
494 iuid = ip->i_d.di_uid;
495 iprojid = ip->i_d.di_projid;
496 igid = ip->i_d.di_gid;
497 gid = (mask & XFS_AT_GID) ? vap->va_gid : igid;
498 uid = (mask & XFS_AT_UID) ? vap->va_uid : iuid;
499 projid = (mask & XFS_AT_PROJID) ? (xfs_prid_t)vap->va_projid :
500 iprojid;
501
502 /*
503 * CAP_CHOWN overrides the following restrictions:
504 *
505 * If _POSIX_CHOWN_RESTRICTED is defined, this capability
506 * shall override the restriction that a process cannot
507 * change the user ID of a file it owns and the restriction
508 * that the group ID supplied to the chown() function
509 * shall be equal to either the group ID or one of the
510 * supplementary group IDs of the calling process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 */
512 if (restricted_chown &&
513 (iuid != uid || (igid != gid &&
514 !in_group_p((gid_t)gid))) &&
515 !capable(CAP_CHOWN)) {
516 code = XFS_ERROR(EPERM);
517 goto error_return;
518 }
519 /*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000520 * Do a quota reservation only if uid/projid/gid is actually
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 * going to change.
522 */
523 if ((XFS_IS_UQUOTA_ON(mp) && iuid != uid) ||
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000524 (XFS_IS_PQUOTA_ON(mp) && iprojid != projid) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 (XFS_IS_GQUOTA_ON(mp) && igid != gid)) {
526 ASSERT(tp);
527 code = XFS_QM_DQVOPCHOWNRESV(mp, tp, ip, udqp, gdqp,
528 capable(CAP_FOWNER) ?
529 XFS_QMOPT_FORCE_RES : 0);
530 if (code) /* out of quota */
531 goto error_return;
532 }
533 }
534
535 /*
536 * Truncate file. Must have write permission and not be a directory.
537 */
538 if (mask & XFS_AT_SIZE) {
539 /* Short circuit the truncate case for zero length files */
540 if ((vap->va_size == 0) &&
541 (ip->i_d.di_size == 0) && (ip->i_d.di_nextents == 0)) {
542 xfs_iunlock(ip, XFS_ILOCK_EXCL);
543 lock_flags &= ~XFS_ILOCK_EXCL;
544 if (mask & XFS_AT_CTIME)
545 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
546 code = 0;
547 goto error_return;
548 }
549
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000550 if (VN_ISDIR(vp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 code = XFS_ERROR(EISDIR);
552 goto error_return;
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000553 } else if (!VN_ISREG(vp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 code = XFS_ERROR(EINVAL);
555 goto error_return;
556 }
557 /*
558 * Make sure that the dquots are attached to the inode.
559 */
560 if ((code = XFS_QM_DQATTACH(mp, ip, XFS_QMOPT_ILOCKED)))
561 goto error_return;
562 }
563
564 /*
565 * Change file access or modified times.
566 */
567 if (mask & (XFS_AT_ATIME|XFS_AT_MTIME)) {
568 if (!file_owner) {
569 if ((flags & ATTR_UTIME) &&
570 !capable(CAP_FOWNER)) {
571 code = XFS_ERROR(EPERM);
572 goto error_return;
573 }
574 }
575 }
576
577 /*
578 * Change extent size or realtime flag.
579 */
580 if (mask & (XFS_AT_EXTSIZE|XFS_AT_XFLAGS)) {
581 /*
582 * Can't change extent size if any extents are allocated.
583 */
584 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
585 (mask & XFS_AT_EXTSIZE) &&
586 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
587 vap->va_extsize) ) {
588 code = XFS_ERROR(EINVAL); /* EFBIG? */
589 goto error_return;
590 }
591
592 /*
593 * Can't set extent size unless the file is marked, or
594 * about to be marked as a realtime file.
595 *
596 * This check will be removed when fixed size extents
597 * with buffered data writes is implemented.
598 *
599 */
600 if ((mask & XFS_AT_EXTSIZE) &&
601 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
602 vap->va_extsize) &&
603 (!((ip->i_d.di_flags & XFS_DIFLAG_REALTIME) ||
604 ((mask & XFS_AT_XFLAGS) &&
605 (vap->va_xflags & XFS_XFLAG_REALTIME))))) {
606 code = XFS_ERROR(EINVAL);
607 goto error_return;
608 }
609
610 /*
611 * Can't change realtime flag if any extents are allocated.
612 */
613 if (ip->i_d.di_nextents && (mask & XFS_AT_XFLAGS) &&
614 (ip->i_d.di_flags & XFS_DIFLAG_REALTIME) !=
615 (vap->va_xflags & XFS_XFLAG_REALTIME)) {
616 code = XFS_ERROR(EINVAL); /* EFBIG? */
617 goto error_return;
618 }
619 /*
620 * Extent size must be a multiple of the appropriate block
621 * size, if set at all.
622 */
623 if ((mask & XFS_AT_EXTSIZE) && vap->va_extsize != 0) {
624 xfs_extlen_t size;
625
626 if ((ip->i_d.di_flags & XFS_DIFLAG_REALTIME) ||
627 ((mask & XFS_AT_XFLAGS) &&
628 (vap->va_xflags & XFS_XFLAG_REALTIME))) {
629 size = mp->m_sb.sb_rextsize <<
630 mp->m_sb.sb_blocklog;
631 } else {
632 size = mp->m_sb.sb_blocksize;
633 }
634 if (vap->va_extsize % size) {
635 code = XFS_ERROR(EINVAL);
636 goto error_return;
637 }
638 }
639 /*
640 * If realtime flag is set then must have realtime data.
641 */
642 if ((mask & XFS_AT_XFLAGS) &&
643 (vap->va_xflags & XFS_XFLAG_REALTIME)) {
644 if ((mp->m_sb.sb_rblocks == 0) ||
645 (mp->m_sb.sb_rextsize == 0) ||
646 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize)) {
647 code = XFS_ERROR(EINVAL);
648 goto error_return;
649 }
650 }
651
652 /*
653 * Can't modify an immutable/append-only file unless
654 * we have appropriate permission.
655 */
656 if ((mask & XFS_AT_XFLAGS) &&
657 (ip->i_d.di_flags &
658 (XFS_DIFLAG_IMMUTABLE|XFS_DIFLAG_APPEND) ||
659 (vap->va_xflags &
660 (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
661 !capable(CAP_LINUX_IMMUTABLE)) {
662 code = XFS_ERROR(EPERM);
663 goto error_return;
664 }
665 }
666
667 /*
668 * Now we can make the changes. Before we join the inode
669 * to the transaction, if XFS_AT_SIZE is set then take care of
670 * the part of the truncation that must be done without the
671 * inode lock. This needs to be done before joining the inode
672 * to the transaction, because the inode cannot be unlocked
673 * once it is a part of the transaction.
674 */
675 if (mask & XFS_AT_SIZE) {
676 code = 0;
677 if (vap->va_size > ip->i_d.di_size)
678 code = xfs_igrow_start(ip, vap->va_size, credp);
679 xfs_iunlock(ip, XFS_ILOCK_EXCL);
680 if (!code)
681 code = xfs_itruncate_data(ip, vap->va_size);
682 if (code) {
683 ASSERT(tp == NULL);
684 lock_flags &= ~XFS_ILOCK_EXCL;
685 ASSERT(lock_flags == XFS_IOLOCK_EXCL);
686 goto error_return;
687 }
688 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_SIZE);
689 if ((code = xfs_trans_reserve(tp, 0,
690 XFS_ITRUNCATE_LOG_RES(mp), 0,
691 XFS_TRANS_PERM_LOG_RES,
692 XFS_ITRUNCATE_LOG_COUNT))) {
693 xfs_trans_cancel(tp, 0);
694 if (need_iolock)
695 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
696 return code;
697 }
698 commit_flags = XFS_TRANS_RELEASE_LOG_RES;
699 xfs_ilock(ip, XFS_ILOCK_EXCL);
700 }
701
702 if (tp) {
703 xfs_trans_ijoin(tp, ip, lock_flags);
704 xfs_trans_ihold(tp, ip);
705 }
706
707 /* determine whether mandatory locking mode changes */
708 mandlock_before = MANDLOCK(vp, ip->i_d.di_mode);
709
710 /*
711 * Truncate file. Must have write permission and not be a directory.
712 */
713 if (mask & XFS_AT_SIZE) {
714 if (vap->va_size > ip->i_d.di_size) {
715 xfs_igrow_finish(tp, ip, vap->va_size,
716 !(flags & ATTR_DMI));
717 } else if ((vap->va_size <= ip->i_d.di_size) ||
718 ((vap->va_size == 0) && ip->i_d.di_nextents)) {
719 /*
720 * signal a sync transaction unless
721 * we're truncating an already unlinked
722 * file on a wsync filesystem
723 */
724 code = xfs_itruncate_finish(&tp, ip,
725 (xfs_fsize_t)vap->va_size,
726 XFS_DATA_FORK,
727 ((ip->i_d.di_nlink != 0 ||
728 !(mp->m_flags & XFS_MOUNT_WSYNC))
729 ? 1 : 0));
730 if (code) {
731 goto abort_return;
732 }
733 }
734 /*
735 * Have to do this even if the file's size doesn't change.
736 */
737 timeflags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
738 }
739
740 /*
741 * Change file access modes.
742 */
743 if (mask & XFS_AT_MODE) {
744 ip->i_d.di_mode &= S_IFMT;
745 ip->i_d.di_mode |= vap->va_mode & ~S_IFMT;
746
747 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
748 timeflags |= XFS_ICHGTIME_CHG;
749 }
750
751 /*
752 * Change file ownership. Must be the owner or privileged.
753 * If the system was configured with the "restricted_chown"
754 * option, the owner is not permitted to give away the file,
755 * and can change the group id only to a group of which he
756 * or she is a member.
757 */
758 if (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID)) {
759 /*
760 * CAP_FSETID overrides the following restrictions:
761 *
762 * The set-user-ID and set-group-ID bits of a file will be
763 * cleared upon successful return from chown()
764 */
765 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
766 !capable(CAP_FSETID)) {
767 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
768 }
769
770 /*
771 * Change the ownerships and register quota modifications
772 * in the transaction.
773 */
774 if (iuid != uid) {
775 if (XFS_IS_UQUOTA_ON(mp)) {
776 ASSERT(mask & XFS_AT_UID);
777 ASSERT(udqp);
778 olddquot1 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
779 &ip->i_udquot, udqp);
780 }
781 ip->i_d.di_uid = uid;
782 }
783 if (igid != gid) {
784 if (XFS_IS_GQUOTA_ON(mp)) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000785 ASSERT(!XFS_IS_PQUOTA_ON(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 ASSERT(mask & XFS_AT_GID);
787 ASSERT(gdqp);
788 olddquot2 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
789 &ip->i_gdquot, gdqp);
790 }
791 ip->i_d.di_gid = gid;
792 }
793 if (iprojid != projid) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000794 if (XFS_IS_PQUOTA_ON(mp)) {
795 ASSERT(!XFS_IS_GQUOTA_ON(mp));
796 ASSERT(mask & XFS_AT_PROJID);
797 ASSERT(gdqp);
798 olddquot2 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
799 &ip->i_gdquot, gdqp);
800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 ip->i_d.di_projid = projid;
802 /*
803 * We may have to rev the inode as well as
804 * the superblock version number since projids didn't
805 * exist before DINODE_VERSION_2 and SB_VERSION_NLINK.
806 */
807 if (ip->i_d.di_version == XFS_DINODE_VERSION_1)
808 xfs_bump_ino_vers2(tp, ip);
809 }
810
811 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
812 timeflags |= XFS_ICHGTIME_CHG;
813 }
814
815
816 /*
817 * Change file access or modified times.
818 */
819 if (mask & (XFS_AT_ATIME|XFS_AT_MTIME)) {
820 if (mask & XFS_AT_ATIME) {
821 ip->i_d.di_atime.t_sec = vap->va_atime.tv_sec;
822 ip->i_d.di_atime.t_nsec = vap->va_atime.tv_nsec;
823 ip->i_update_core = 1;
824 timeflags &= ~XFS_ICHGTIME_ACC;
825 }
826 if (mask & XFS_AT_MTIME) {
827 ip->i_d.di_mtime.t_sec = vap->va_mtime.tv_sec;
828 ip->i_d.di_mtime.t_nsec = vap->va_mtime.tv_nsec;
829 timeflags &= ~XFS_ICHGTIME_MOD;
830 timeflags |= XFS_ICHGTIME_CHG;
831 }
832 if (tp && (flags & ATTR_UTIME))
833 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
834 }
835
836 /*
837 * Change XFS-added attributes.
838 */
839 if (mask & (XFS_AT_EXTSIZE|XFS_AT_XFLAGS)) {
840 if (mask & XFS_AT_EXTSIZE) {
841 /*
842 * Converting bytes to fs blocks.
843 */
844 ip->i_d.di_extsize = vap->va_extsize >>
845 mp->m_sb.sb_blocklog;
846 }
847 if (mask & XFS_AT_XFLAGS) {
848 uint di_flags;
849
850 /* can't set PREALLOC this way, just preserve it */
851 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
852 if (vap->va_xflags & XFS_XFLAG_IMMUTABLE)
853 di_flags |= XFS_DIFLAG_IMMUTABLE;
854 if (vap->va_xflags & XFS_XFLAG_APPEND)
855 di_flags |= XFS_DIFLAG_APPEND;
856 if (vap->va_xflags & XFS_XFLAG_SYNC)
857 di_flags |= XFS_DIFLAG_SYNC;
858 if (vap->va_xflags & XFS_XFLAG_NOATIME)
859 di_flags |= XFS_DIFLAG_NOATIME;
860 if (vap->va_xflags & XFS_XFLAG_NODUMP)
861 di_flags |= XFS_DIFLAG_NODUMP;
Nathan Scott365ca832005-06-21 15:39:12 +1000862 if (vap->va_xflags & XFS_XFLAG_PROJINHERIT)
863 di_flags |= XFS_DIFLAG_PROJINHERIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if ((ip->i_d.di_mode & S_IFMT) == S_IFDIR) {
865 if (vap->va_xflags & XFS_XFLAG_RTINHERIT)
866 di_flags |= XFS_DIFLAG_RTINHERIT;
867 if (vap->va_xflags & XFS_XFLAG_NOSYMLINKS)
868 di_flags |= XFS_DIFLAG_NOSYMLINKS;
869 } else {
870 if (vap->va_xflags & XFS_XFLAG_REALTIME) {
871 di_flags |= XFS_DIFLAG_REALTIME;
872 ip->i_iocore.io_flags |= XFS_IOCORE_RT;
873 } else {
874 ip->i_iocore.io_flags &= ~XFS_IOCORE_RT;
875 }
876 }
877 ip->i_d.di_flags = di_flags;
878 }
879 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
880 timeflags |= XFS_ICHGTIME_CHG;
881 }
882
883 /*
884 * Change file inode change time only if XFS_AT_CTIME set
885 * AND we have been called by a DMI function.
886 */
887
888 if ( (flags & ATTR_DMI) && (mask & XFS_AT_CTIME) ) {
889 ip->i_d.di_ctime.t_sec = vap->va_ctime.tv_sec;
890 ip->i_d.di_ctime.t_nsec = vap->va_ctime.tv_nsec;
891 ip->i_update_core = 1;
892 timeflags &= ~XFS_ICHGTIME_CHG;
893 }
894
895 /*
896 * Send out timestamp changes that need to be set to the
897 * current time. Not done when called by a DMI function.
898 */
899 if (timeflags && !(flags & ATTR_DMI))
900 xfs_ichgtime(ip, timeflags);
901
902 XFS_STATS_INC(xs_ig_attrchg);
903
904 /*
905 * If this is a synchronous mount, make sure that the
906 * transaction goes to disk before returning to the user.
907 * This is slightly sub-optimal in that truncates require
908 * two sync transactions instead of one for wsync filesytems.
909 * One for the truncate and one for the timestamps since we
910 * don't want to change the timestamps unless we're sure the
911 * truncate worked. Truncates are less than 1% of the laddis
912 * mix so this probably isn't worth the trouble to optimize.
913 */
914 code = 0;
915 if (tp) {
916 if (mp->m_flags & XFS_MOUNT_WSYNC)
917 xfs_trans_set_sync(tp);
918
919 code = xfs_trans_commit(tp, commit_flags, NULL);
920 }
921
922 /*
923 * If the (regular) file's mandatory locking mode changed, then
924 * notify the vnode. We do this under the inode lock to prevent
925 * racing calls to vop_vnode_change.
926 */
927 mandlock_after = MANDLOCK(vp, ip->i_d.di_mode);
928 if (mandlock_before != mandlock_after) {
929 VOP_VNODE_CHANGE(vp, VCHANGE_FLAGS_ENF_LOCKING,
930 mandlock_after);
931 }
932
933 xfs_iunlock(ip, lock_flags);
934
935 /*
936 * Release any dquot(s) the inode had kept before chown.
937 */
938 XFS_QM_DQRELE(mp, olddquot1);
939 XFS_QM_DQRELE(mp, olddquot2);
940 XFS_QM_DQRELE(mp, udqp);
941 XFS_QM_DQRELE(mp, gdqp);
942
943 if (code) {
944 return code;
945 }
946
947 if (DM_EVENT_ENABLED(vp->v_vfsp, ip, DM_EVENT_ATTRIBUTE) &&
948 !(flags & ATTR_DMI)) {
949 (void) XFS_SEND_NAMESP(mp, DM_EVENT_ATTRIBUTE, vp, DM_RIGHT_NULL,
950 NULL, DM_RIGHT_NULL, NULL, NULL,
951 0, 0, AT_DELAY_FLAG(flags));
952 }
953 return 0;
954
955 abort_return:
956 commit_flags |= XFS_TRANS_ABORT;
957 /* FALLTHROUGH */
958 error_return:
959 XFS_QM_DQRELE(mp, udqp);
960 XFS_QM_DQRELE(mp, gdqp);
961 if (tp) {
962 xfs_trans_cancel(tp, commit_flags);
963 }
964 if (lock_flags != 0) {
965 xfs_iunlock(ip, lock_flags);
966 }
967 return code;
968}
969
970
971/*
972 * xfs_access
973 * Null conversion from vnode mode bits to inode mode bits, as in efs.
974 */
975STATIC int
976xfs_access(
977 bhv_desc_t *bdp,
978 int mode,
979 cred_t *credp)
980{
981 xfs_inode_t *ip;
982 int error;
983
984 vn_trace_entry(BHV_TO_VNODE(bdp), __FUNCTION__,
985 (inst_t *)__return_address);
986
987 ip = XFS_BHVTOI(bdp);
988 xfs_ilock(ip, XFS_ILOCK_SHARED);
989 error = xfs_iaccess(ip, mode, credp);
990 xfs_iunlock(ip, XFS_ILOCK_SHARED);
991 return error;
992}
993
994
995/*
996 * xfs_readlink
997 *
998 */
999STATIC int
1000xfs_readlink(
1001 bhv_desc_t *bdp,
1002 uio_t *uiop,
1003 int ioflags,
1004 cred_t *credp)
1005{
1006 xfs_inode_t *ip;
1007 int count;
1008 xfs_off_t offset;
1009 int pathlen;
1010 vnode_t *vp;
1011 int error = 0;
1012 xfs_mount_t *mp;
1013 int nmaps;
1014 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1015 xfs_daddr_t d;
1016 int byte_cnt;
1017 int n;
1018 xfs_buf_t *bp;
1019
1020 vp = BHV_TO_VNODE(bdp);
1021 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
1022
1023 ip = XFS_BHVTOI(bdp);
1024 mp = ip->i_mount;
1025
1026 if (XFS_FORCED_SHUTDOWN(mp))
1027 return XFS_ERROR(EIO);
1028
1029 xfs_ilock(ip, XFS_ILOCK_SHARED);
1030
1031 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFLNK);
1032
1033 offset = uiop->uio_offset;
1034 count = uiop->uio_resid;
1035
1036 if (offset < 0) {
1037 error = XFS_ERROR(EINVAL);
1038 goto error_return;
1039 }
1040 if (count <= 0) {
1041 error = 0;
1042 goto error_return;
1043 }
1044
1045 if (!(ioflags & IO_INVIS)) {
1046 xfs_ichgtime(ip, XFS_ICHGTIME_ACC);
1047 }
1048
1049 /*
1050 * See if the symlink is stored inline.
1051 */
1052 pathlen = (int)ip->i_d.di_size;
1053
1054 if (ip->i_df.if_flags & XFS_IFINLINE) {
1055 error = uio_read(ip->i_df.if_u1.if_data, pathlen, uiop);
1056 }
1057 else {
1058 /*
1059 * Symlink not inline. Call bmap to get it in.
1060 */
1061 nmaps = SYMLINK_MAPS;
1062
1063 error = xfs_bmapi(NULL, ip, 0, XFS_B_TO_FSB(mp, pathlen),
1064 0, NULL, 0, mval, &nmaps, NULL);
1065
1066 if (error) {
1067 goto error_return;
1068 }
1069
1070 for (n = 0; n < nmaps; n++) {
1071 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
1072 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
1073 bp = xfs_buf_read(mp->m_ddev_targp, d,
1074 BTOBB(byte_cnt), 0);
1075 error = XFS_BUF_GETERROR(bp);
1076 if (error) {
1077 xfs_ioerror_alert("xfs_readlink",
1078 ip->i_mount, bp, XFS_BUF_ADDR(bp));
1079 xfs_buf_relse(bp);
1080 goto error_return;
1081 }
1082 if (pathlen < byte_cnt)
1083 byte_cnt = pathlen;
1084 pathlen -= byte_cnt;
1085
1086 error = uio_read(XFS_BUF_PTR(bp), byte_cnt, uiop);
1087 xfs_buf_relse (bp);
1088 }
1089
1090 }
1091
1092
1093error_return:
1094
1095 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1096
1097 return error;
1098}
1099
1100
1101/*
1102 * xfs_fsync
1103 *
1104 * This is called to sync the inode and its data out to disk.
1105 * We need to hold the I/O lock while flushing the data, and
1106 * the inode lock while flushing the inode. The inode lock CANNOT
1107 * be held while flushing the data, so acquire after we're done
1108 * with that.
1109 */
1110STATIC int
1111xfs_fsync(
1112 bhv_desc_t *bdp,
1113 int flag,
1114 cred_t *credp,
1115 xfs_off_t start,
1116 xfs_off_t stop)
1117{
1118 xfs_inode_t *ip;
1119 xfs_trans_t *tp;
1120 int error;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001121 int log_flushed = 0, changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 vn_trace_entry(BHV_TO_VNODE(bdp),
1124 __FUNCTION__, (inst_t *)__return_address);
1125
1126 ip = XFS_BHVTOI(bdp);
1127
1128 ASSERT(start >= 0 && stop >= -1);
1129
1130 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
1131 return XFS_ERROR(EIO);
1132
1133 /*
1134 * We always need to make sure that the required inode state
1135 * is safe on disk. The vnode might be clean but because
1136 * of committed transactions that haven't hit the disk yet.
1137 * Likewise, there could be unflushed non-transactional
1138 * changes to the inode core that have to go to disk.
1139 *
1140 * The following code depends on one assumption: that
1141 * any transaction that changes an inode logs the core
1142 * because it has to change some field in the inode core
1143 * (typically nextents or nblocks). That assumption
1144 * implies that any transactions against an inode will
1145 * catch any non-transactional updates. If inode-altering
1146 * transactions exist that violate this assumption, the
1147 * code breaks. Right now, it figures that if the involved
1148 * update_* field is clear and the inode is unpinned, the
1149 * inode is clean. Either it's been flushed or it's been
1150 * committed and the commit has hit the disk unpinning the inode.
1151 * (Note that xfs_inode_item_format() called at commit clears
1152 * the update_* fields.)
1153 */
1154 xfs_ilock(ip, XFS_ILOCK_SHARED);
1155
1156 /* If we are flushing data then we care about update_size
1157 * being set, otherwise we care about update_core
1158 */
1159 if ((flag & FSYNC_DATA) ?
1160 (ip->i_update_size == 0) :
1161 (ip->i_update_core == 0)) {
1162 /*
1163 * Timestamps/size haven't changed since last inode
1164 * flush or inode transaction commit. That means
1165 * either nothing got written or a transaction
1166 * committed which caught the updates. If the
1167 * latter happened and the transaction hasn't
1168 * hit the disk yet, the inode will be still
1169 * be pinned. If it is, force the log.
1170 */
1171
1172 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1173
1174 if (xfs_ipincount(ip)) {
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001175 _xfs_log_force(ip->i_mount, (xfs_lsn_t)0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 XFS_LOG_FORCE |
1177 ((flag & FSYNC_WAIT)
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001178 ? XFS_LOG_SYNC : 0),
1179 &log_flushed);
1180 } else {
1181 /*
1182 * If the inode is not pinned and nothing
1183 * has changed we don't need to flush the
1184 * cache.
1185 */
1186 changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
1188 error = 0;
1189 } else {
1190 /*
1191 * Kick off a transaction to log the inode
1192 * core to get the updates. Make it
1193 * sync if FSYNC_WAIT is passed in (which
1194 * is done by everybody but specfs). The
1195 * sync transaction will also force the log.
1196 */
1197 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1198 tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_FSYNC_TS);
1199 if ((error = xfs_trans_reserve(tp, 0,
1200 XFS_FSYNC_TS_LOG_RES(ip->i_mount),
1201 0, 0, 0))) {
1202 xfs_trans_cancel(tp, 0);
1203 return error;
1204 }
1205 xfs_ilock(ip, XFS_ILOCK_EXCL);
1206
1207 /*
1208 * Note - it's possible that we might have pushed
1209 * ourselves out of the way during trans_reserve
1210 * which would flush the inode. But there's no
1211 * guarantee that the inode buffer has actually
1212 * gone out yet (it's delwri). Plus the buffer
1213 * could be pinned anyway if it's part of an
1214 * inode in another recent transaction. So we
1215 * play it safe and fire off the transaction anyway.
1216 */
1217 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1218 xfs_trans_ihold(tp, ip);
1219 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1220 if (flag & FSYNC_WAIT)
1221 xfs_trans_set_sync(tp);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001222 error = _xfs_trans_commit(tp, 0, NULL, &log_flushed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1225 }
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001226
1227 if ((ip->i_mount->m_flags & XFS_MOUNT_BARRIER) && changed) {
1228 /*
1229 * If the log write didn't issue an ordered tag we need
1230 * to flush the disk cache for the data device now.
1231 */
1232 if (!log_flushed)
1233 xfs_blkdev_issue_flush(ip->i_mount->m_ddev_targp);
1234
1235 /*
1236 * If this inode is on the RT dev we need to flush that
1237 * cache aswell.
1238 */
1239 if (ip->i_d.di_flags & XFS_DIFLAG_REALTIME)
1240 xfs_blkdev_issue_flush(ip->i_mount->m_rtdev_targp);
1241 }
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return error;
1244}
1245
1246/*
1247 * This is called by xfs_inactive to free any blocks beyond eof,
1248 * when the link count isn't zero.
1249 */
1250STATIC int
1251xfs_inactive_free_eofblocks(
1252 xfs_mount_t *mp,
1253 xfs_inode_t *ip)
1254{
1255 xfs_trans_t *tp;
1256 int error;
1257 xfs_fileoff_t end_fsb;
1258 xfs_fileoff_t last_fsb;
1259 xfs_filblks_t map_len;
1260 int nimaps;
1261 xfs_bmbt_irec_t imap;
1262
1263 /*
1264 * Figure out if there are any blocks beyond the end
1265 * of the file. If not, then there is nothing to do.
1266 */
1267 end_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)ip->i_d.di_size));
1268 last_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
1269 map_len = last_fsb - end_fsb;
1270 if (map_len <= 0)
1271 return (0);
1272
1273 nimaps = 1;
1274 xfs_ilock(ip, XFS_ILOCK_SHARED);
1275 error = xfs_bmapi(NULL, ip, end_fsb, map_len, 0,
1276 NULL, 0, &imap, &nimaps, NULL);
1277 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1278
1279 if (!error && (nimaps != 0) &&
1280 (imap.br_startblock != HOLESTARTBLOCK)) {
1281 /*
1282 * Attach the dquots to the inode up front.
1283 */
1284 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
1285 return (error);
1286
1287 /*
1288 * There are blocks after the end of file.
1289 * Free them up now by truncating the file to
1290 * its current size.
1291 */
1292 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1293
1294 /*
1295 * Do the xfs_itruncate_start() call before
1296 * reserving any log space because
1297 * itruncate_start will call into the buffer
1298 * cache and we can't
1299 * do that within a transaction.
1300 */
1301 xfs_ilock(ip, XFS_IOLOCK_EXCL);
1302 xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE,
1303 ip->i_d.di_size);
1304
1305 error = xfs_trans_reserve(tp, 0,
1306 XFS_ITRUNCATE_LOG_RES(mp),
1307 0, XFS_TRANS_PERM_LOG_RES,
1308 XFS_ITRUNCATE_LOG_COUNT);
1309 if (error) {
1310 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1311 xfs_trans_cancel(tp, 0);
1312 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1313 return (error);
1314 }
1315
1316 xfs_ilock(ip, XFS_ILOCK_EXCL);
1317 xfs_trans_ijoin(tp, ip,
1318 XFS_IOLOCK_EXCL |
1319 XFS_ILOCK_EXCL);
1320 xfs_trans_ihold(tp, ip);
1321
1322 error = xfs_itruncate_finish(&tp, ip,
1323 ip->i_d.di_size,
1324 XFS_DATA_FORK,
1325 0);
1326 /*
1327 * If we get an error at this point we
1328 * simply don't bother truncating the file.
1329 */
1330 if (error) {
1331 xfs_trans_cancel(tp,
1332 (XFS_TRANS_RELEASE_LOG_RES |
1333 XFS_TRANS_ABORT));
1334 } else {
1335 error = xfs_trans_commit(tp,
1336 XFS_TRANS_RELEASE_LOG_RES,
1337 NULL);
1338 }
1339 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1340 }
1341 return (error);
1342}
1343
1344/*
1345 * Free a symlink that has blocks associated with it.
1346 */
1347STATIC int
1348xfs_inactive_symlink_rmt(
1349 xfs_inode_t *ip,
1350 xfs_trans_t **tpp)
1351{
1352 xfs_buf_t *bp;
1353 int committed;
1354 int done;
1355 int error;
1356 xfs_fsblock_t first_block;
1357 xfs_bmap_free_t free_list;
1358 int i;
1359 xfs_mount_t *mp;
1360 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1361 int nmaps;
1362 xfs_trans_t *ntp;
1363 int size;
1364 xfs_trans_t *tp;
1365
1366 tp = *tpp;
1367 mp = ip->i_mount;
1368 ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip));
1369 /*
1370 * We're freeing a symlink that has some
1371 * blocks allocated to it. Free the
1372 * blocks here. We know that we've got
1373 * either 1 or 2 extents and that we can
1374 * free them all in one bunmapi call.
1375 */
1376 ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
1377 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
1378 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
1379 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1380 xfs_trans_cancel(tp, 0);
1381 *tpp = NULL;
1382 return error;
1383 }
1384 /*
1385 * Lock the inode, fix the size, and join it to the transaction.
1386 * Hold it so in the normal path, we still have it locked for
1387 * the second transaction. In the error paths we need it
1388 * held so the cancel won't rele it, see below.
1389 */
1390 xfs_ilock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1391 size = (int)ip->i_d.di_size;
1392 ip->i_d.di_size = 0;
1393 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1394 xfs_trans_ihold(tp, ip);
1395 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1396 /*
1397 * Find the block(s) so we can inval and unmap them.
1398 */
1399 done = 0;
1400 XFS_BMAP_INIT(&free_list, &first_block);
1401 nmaps = sizeof(mval) / sizeof(mval[0]);
1402 if ((error = xfs_bmapi(tp, ip, 0, XFS_B_TO_FSB(mp, size),
1403 XFS_BMAPI_METADATA, &first_block, 0, mval, &nmaps,
1404 &free_list)))
1405 goto error0;
1406 /*
1407 * Invalidate the block(s).
1408 */
1409 for (i = 0; i < nmaps; i++) {
1410 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
1411 XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
1412 XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
1413 xfs_trans_binval(tp, bp);
1414 }
1415 /*
1416 * Unmap the dead block(s) to the free_list.
1417 */
1418 if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
1419 &first_block, &free_list, &done)))
1420 goto error1;
1421 ASSERT(done);
1422 /*
1423 * Commit the first transaction. This logs the EFI and the inode.
1424 */
1425 if ((error = xfs_bmap_finish(&tp, &free_list, first_block, &committed)))
1426 goto error1;
1427 /*
1428 * The transaction must have been committed, since there were
1429 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
1430 * The new tp has the extent freeing and EFDs.
1431 */
1432 ASSERT(committed);
1433 /*
1434 * The first xact was committed, so add the inode to the new one.
1435 * Mark it dirty so it will be logged and moved forward in the log as
1436 * part of every commit.
1437 */
1438 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1439 xfs_trans_ihold(tp, ip);
1440 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1441 /*
1442 * Get a new, empty transaction to return to our caller.
1443 */
1444 ntp = xfs_trans_dup(tp);
1445 /*
1446 * Commit the transaction containing extent freeing and EFD's.
1447 * If we get an error on the commit here or on the reserve below,
1448 * we need to unlock the inode since the new transaction doesn't
1449 * have the inode attached.
1450 */
1451 error = xfs_trans_commit(tp, 0, NULL);
1452 tp = ntp;
1453 if (error) {
1454 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1455 goto error0;
1456 }
1457 /*
1458 * Remove the memory for extent descriptions (just bookkeeping).
1459 */
1460 if (ip->i_df.if_bytes)
1461 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
1462 ASSERT(ip->i_df.if_bytes == 0);
1463 /*
1464 * Put an itruncate log reservation in the new transaction
1465 * for our caller.
1466 */
1467 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
1468 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
1469 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1470 goto error0;
1471 }
1472 /*
1473 * Return with the inode locked but not joined to the transaction.
1474 */
1475 *tpp = tp;
1476 return 0;
1477
1478 error1:
1479 xfs_bmap_cancel(&free_list);
1480 error0:
1481 /*
1482 * Have to come here with the inode locked and either
1483 * (held and in the transaction) or (not in the transaction).
1484 * If the inode isn't held then cancel would iput it, but
1485 * that's wrong since this is inactive and the vnode ref
1486 * count is 0 already.
1487 * Cancel won't do anything to the inode if held, but it still
1488 * needs to be locked until the cancel is done, if it was
1489 * joined to the transaction.
1490 */
1491 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1492 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1493 *tpp = NULL;
1494 return error;
1495
1496}
1497
1498STATIC int
1499xfs_inactive_symlink_local(
1500 xfs_inode_t *ip,
1501 xfs_trans_t **tpp)
1502{
1503 int error;
1504
1505 ASSERT(ip->i_d.di_size <= XFS_IFORK_DSIZE(ip));
1506 /*
1507 * We're freeing a symlink which fit into
1508 * the inode. Just free the memory used
1509 * to hold the old symlink.
1510 */
1511 error = xfs_trans_reserve(*tpp, 0,
1512 XFS_ITRUNCATE_LOG_RES(ip->i_mount),
1513 0, XFS_TRANS_PERM_LOG_RES,
1514 XFS_ITRUNCATE_LOG_COUNT);
1515
1516 if (error) {
1517 xfs_trans_cancel(*tpp, 0);
1518 *tpp = NULL;
1519 return (error);
1520 }
1521 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1522
1523 /*
1524 * Zero length symlinks _can_ exist.
1525 */
1526 if (ip->i_df.if_bytes > 0) {
1527 xfs_idata_realloc(ip,
1528 -(ip->i_df.if_bytes),
1529 XFS_DATA_FORK);
1530 ASSERT(ip->i_df.if_bytes == 0);
1531 }
1532 return (0);
1533}
1534
1535/*
1536 *
1537 */
1538STATIC int
1539xfs_inactive_attrs(
1540 xfs_inode_t *ip,
1541 xfs_trans_t **tpp)
1542{
1543 xfs_trans_t *tp;
1544 int error;
1545 xfs_mount_t *mp;
1546
1547 ASSERT(ismrlocked(&ip->i_iolock, MR_UPDATE));
1548 tp = *tpp;
1549 mp = ip->i_mount;
1550 ASSERT(ip->i_d.di_forkoff != 0);
1551 xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
1552 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1553
1554 error = xfs_attr_inactive(ip);
1555 if (error) {
1556 *tpp = NULL;
1557 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1558 return (error); /* goto out*/
1559 }
1560
1561 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1562 error = xfs_trans_reserve(tp, 0,
1563 XFS_IFREE_LOG_RES(mp),
1564 0, XFS_TRANS_PERM_LOG_RES,
1565 XFS_INACTIVE_LOG_COUNT);
1566 if (error) {
1567 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1568 xfs_trans_cancel(tp, 0);
1569 *tpp = NULL;
1570 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1571 return (error);
1572 }
1573
1574 xfs_ilock(ip, XFS_ILOCK_EXCL);
1575 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1576 xfs_trans_ihold(tp, ip);
1577 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1578
1579 ASSERT(ip->i_d.di_anextents == 0);
1580
1581 *tpp = tp;
1582 return (0);
1583}
1584
1585STATIC int
1586xfs_release(
1587 bhv_desc_t *bdp)
1588{
1589 xfs_inode_t *ip;
1590 vnode_t *vp;
1591 xfs_mount_t *mp;
1592 int error;
1593
1594 vp = BHV_TO_VNODE(bdp);
1595 ip = XFS_BHVTOI(bdp);
1596
Christoph Hellwig0432dab2005-09-02 16:46:51 +10001597 if (!VN_ISREG(vp) || (ip->i_d.di_mode == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return 0;
1599 }
1600
1601 /* If this is a read-only mount, don't do this (would generate I/O) */
1602 if (vp->v_vfsp->vfs_flag & VFS_RDONLY)
1603 return 0;
1604
1605#ifdef HAVE_REFCACHE
1606 /* If we are in the NFS reference cache then don't do this now */
1607 if (ip->i_refcache)
1608 return 0;
1609#endif
1610
1611 mp = ip->i_mount;
1612
1613 if (ip->i_d.di_nlink != 0) {
1614 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
1615 ((ip->i_d.di_size > 0) || (VN_CACHED(vp) > 0)) &&
1616 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
1617 (!(ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC|XFS_DIFLAG_APPEND)))) {
1618 if ((error = xfs_inactive_free_eofblocks(mp, ip)))
1619 return (error);
1620 /* Update linux inode block count after free above */
1621 LINVFS_GET_IP(vp)->i_blocks = XFS_FSB_TO_BB(mp,
1622 ip->i_d.di_nblocks + ip->i_delayed_blks);
1623 }
1624 }
1625
1626 return 0;
1627}
1628
1629/*
1630 * xfs_inactive
1631 *
1632 * This is called when the vnode reference count for the vnode
1633 * goes to zero. If the file has been unlinked, then it must
1634 * now be truncated. Also, we clear all of the read-ahead state
1635 * kept for the inode here since the file is now closed.
1636 */
1637STATIC int
1638xfs_inactive(
1639 bhv_desc_t *bdp,
1640 cred_t *credp)
1641{
1642 xfs_inode_t *ip;
1643 vnode_t *vp;
1644 xfs_bmap_free_t free_list;
1645 xfs_fsblock_t first_block;
1646 int committed;
1647 xfs_trans_t *tp;
1648 xfs_mount_t *mp;
1649 int error;
1650 int truncate;
1651
1652 vp = BHV_TO_VNODE(bdp);
1653 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
1654
1655 ip = XFS_BHVTOI(bdp);
1656
1657 /*
1658 * If the inode is already free, then there can be nothing
1659 * to clean up here.
1660 */
1661 if (ip->i_d.di_mode == 0 || VN_BAD(vp)) {
1662 ASSERT(ip->i_df.if_real_bytes == 0);
1663 ASSERT(ip->i_df.if_broot_bytes == 0);
1664 return VN_INACTIVE_CACHE;
1665 }
1666
1667 /*
1668 * Only do a truncate if it's a regular file with
1669 * some actual space in it. It's OK to look at the
1670 * inode's fields without the lock because we're the
1671 * only one with a reference to the inode.
1672 */
1673 truncate = ((ip->i_d.di_nlink == 0) &&
1674 ((ip->i_d.di_size != 0) || (ip->i_d.di_nextents > 0)) &&
1675 ((ip->i_d.di_mode & S_IFMT) == S_IFREG));
1676
1677 mp = ip->i_mount;
1678
1679 if (ip->i_d.di_nlink == 0 &&
1680 DM_EVENT_ENABLED(vp->v_vfsp, ip, DM_EVENT_DESTROY)) {
1681 (void) XFS_SEND_DESTROY(mp, vp, DM_RIGHT_NULL);
1682 }
1683
1684 error = 0;
1685
1686 /* If this is a read-only mount, don't do this (would generate I/O) */
1687 if (vp->v_vfsp->vfs_flag & VFS_RDONLY)
1688 goto out;
1689
1690 if (ip->i_d.di_nlink != 0) {
1691 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
1692 ((ip->i_d.di_size > 0) || (VN_CACHED(vp) > 0)) &&
1693 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
1694 (!(ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC|XFS_DIFLAG_APPEND)) ||
1695 (ip->i_delayed_blks != 0))) {
1696 if ((error = xfs_inactive_free_eofblocks(mp, ip)))
1697 return (VN_INACTIVE_CACHE);
1698 /* Update linux inode block count after free above */
1699 LINVFS_GET_IP(vp)->i_blocks = XFS_FSB_TO_BB(mp,
1700 ip->i_d.di_nblocks + ip->i_delayed_blks);
1701 }
1702 goto out;
1703 }
1704
1705 ASSERT(ip->i_d.di_nlink == 0);
1706
1707 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
1708 return (VN_INACTIVE_CACHE);
1709
1710 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1711 if (truncate) {
1712 /*
1713 * Do the xfs_itruncate_start() call before
1714 * reserving any log space because itruncate_start
1715 * will call into the buffer cache and we can't
1716 * do that within a transaction.
1717 */
1718 xfs_ilock(ip, XFS_IOLOCK_EXCL);
1719
1720 xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE, 0);
1721
1722 error = xfs_trans_reserve(tp, 0,
1723 XFS_ITRUNCATE_LOG_RES(mp),
1724 0, XFS_TRANS_PERM_LOG_RES,
1725 XFS_ITRUNCATE_LOG_COUNT);
1726 if (error) {
1727 /* Don't call itruncate_cleanup */
1728 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1729 xfs_trans_cancel(tp, 0);
1730 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1731 return (VN_INACTIVE_CACHE);
1732 }
1733
1734 xfs_ilock(ip, XFS_ILOCK_EXCL);
1735 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1736 xfs_trans_ihold(tp, ip);
1737
1738 /*
1739 * normally, we have to run xfs_itruncate_finish sync.
1740 * But if filesystem is wsync and we're in the inactive
1741 * path, then we know that nlink == 0, and that the
1742 * xaction that made nlink == 0 is permanently committed
1743 * since xfs_remove runs as a synchronous transaction.
1744 */
1745 error = xfs_itruncate_finish(&tp, ip, 0, XFS_DATA_FORK,
1746 (!(mp->m_flags & XFS_MOUNT_WSYNC) ? 1 : 0));
1747
1748 if (error) {
1749 xfs_trans_cancel(tp,
1750 XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1751 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1752 return (VN_INACTIVE_CACHE);
1753 }
1754 } else if ((ip->i_d.di_mode & S_IFMT) == S_IFLNK) {
1755
1756 /*
1757 * If we get an error while cleaning up a
1758 * symlink we bail out.
1759 */
1760 error = (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) ?
1761 xfs_inactive_symlink_rmt(ip, &tp) :
1762 xfs_inactive_symlink_local(ip, &tp);
1763
1764 if (error) {
1765 ASSERT(tp == NULL);
1766 return (VN_INACTIVE_CACHE);
1767 }
1768
1769 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1770 xfs_trans_ihold(tp, ip);
1771 } else {
1772 error = xfs_trans_reserve(tp, 0,
1773 XFS_IFREE_LOG_RES(mp),
1774 0, XFS_TRANS_PERM_LOG_RES,
1775 XFS_INACTIVE_LOG_COUNT);
1776 if (error) {
1777 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1778 xfs_trans_cancel(tp, 0);
1779 return (VN_INACTIVE_CACHE);
1780 }
1781
1782 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1783 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1784 xfs_trans_ihold(tp, ip);
1785 }
1786
1787 /*
1788 * If there are attributes associated with the file
1789 * then blow them away now. The code calls a routine
1790 * that recursively deconstructs the attribute fork.
1791 * We need to just commit the current transaction
1792 * because we can't use it for xfs_attr_inactive().
1793 */
1794 if (ip->i_d.di_anextents > 0) {
1795 error = xfs_inactive_attrs(ip, &tp);
1796 /*
1797 * If we got an error, the transaction is already
1798 * cancelled, and the inode is unlocked. Just get out.
1799 */
1800 if (error)
1801 return (VN_INACTIVE_CACHE);
1802 } else if (ip->i_afp) {
1803 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1804 }
1805
1806 /*
1807 * Free the inode.
1808 */
1809 XFS_BMAP_INIT(&free_list, &first_block);
1810 error = xfs_ifree(tp, ip, &free_list);
1811 if (error) {
1812 /*
1813 * If we fail to free the inode, shut down. The cancel
1814 * might do that, we need to make sure. Otherwise the
1815 * inode might be lost for a long time or forever.
1816 */
1817 if (!XFS_FORCED_SHUTDOWN(mp)) {
1818 cmn_err(CE_NOTE,
1819 "xfs_inactive: xfs_ifree() returned an error = %d on %s",
1820 error, mp->m_fsname);
1821 xfs_force_shutdown(mp, XFS_METADATA_IO_ERROR);
1822 }
1823 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
1824 } else {
1825 /*
1826 * Credit the quota account(s). The inode is gone.
1827 */
1828 XFS_TRANS_MOD_DQUOT_BYINO(mp, tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1829
1830 /*
1831 * Just ignore errors at this point. There is
1832 * nothing we can do except to try to keep going.
1833 */
1834 (void) xfs_bmap_finish(&tp, &free_list, first_block,
1835 &committed);
1836 (void) xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
1837 }
1838 /*
1839 * Release the dquots held by inode, if any.
1840 */
1841 XFS_QM_DQDETACH(mp, ip);
1842
1843 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1844
1845 out:
1846 return VN_INACTIVE_CACHE;
1847}
1848
1849
1850/*
1851 * xfs_lookup
1852 */
1853STATIC int
1854xfs_lookup(
1855 bhv_desc_t *dir_bdp,
1856 vname_t *dentry,
1857 vnode_t **vpp,
1858 int flags,
1859 vnode_t *rdir,
1860 cred_t *credp)
1861{
1862 xfs_inode_t *dp, *ip;
1863 xfs_ino_t e_inum;
1864 int error;
1865 uint lock_mode;
1866 vnode_t *dir_vp;
1867
1868 dir_vp = BHV_TO_VNODE(dir_bdp);
1869 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
1870
1871 dp = XFS_BHVTOI(dir_bdp);
1872
1873 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
1874 return XFS_ERROR(EIO);
1875
1876 lock_mode = xfs_ilock_map_shared(dp);
1877 error = xfs_dir_lookup_int(dir_bdp, lock_mode, dentry, &e_inum, &ip);
1878 if (!error) {
1879 *vpp = XFS_ITOV(ip);
1880 ITRACE(ip);
1881 }
1882 xfs_iunlock_map_shared(dp, lock_mode);
1883 return error;
1884}
1885
1886
1887/*
1888 * xfs_create (create a new file).
1889 */
1890STATIC int
1891xfs_create(
1892 bhv_desc_t *dir_bdp,
1893 vname_t *dentry,
1894 vattr_t *vap,
1895 vnode_t **vpp,
1896 cred_t *credp)
1897{
1898 char *name = VNAME(dentry);
1899 vnode_t *dir_vp;
1900 xfs_inode_t *dp, *ip;
1901 vnode_t *vp=NULL;
1902 xfs_trans_t *tp;
1903 xfs_mount_t *mp;
1904 xfs_dev_t rdev;
1905 int error;
1906 xfs_bmap_free_t free_list;
1907 xfs_fsblock_t first_block;
1908 boolean_t dp_joined_to_trans;
1909 int dm_event_sent = 0;
1910 uint cancel_flags;
1911 int committed;
1912 xfs_prid_t prid;
1913 struct xfs_dquot *udqp, *gdqp;
1914 uint resblks;
1915 int dm_di_mode;
1916 int namelen;
1917
1918 ASSERT(!*vpp);
1919 dir_vp = BHV_TO_VNODE(dir_bdp);
1920 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
1921
1922 dp = XFS_BHVTOI(dir_bdp);
1923 mp = dp->i_mount;
1924
Christoph Hellwig0432dab2005-09-02 16:46:51 +10001925 dm_di_mode = vap->va_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 namelen = VNAMELEN(dentry);
1927
1928 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_CREATE)) {
1929 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
1930 dir_vp, DM_RIGHT_NULL, NULL,
1931 DM_RIGHT_NULL, name, NULL,
1932 dm_di_mode, 0, 0);
1933
1934 if (error)
1935 return error;
1936 dm_event_sent = 1;
1937 }
1938
1939 if (XFS_FORCED_SHUTDOWN(mp))
1940 return XFS_ERROR(EIO);
1941
1942 /* Return through std_return after this point. */
1943
1944 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10001945 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1946 prid = dp->i_d.di_projid;
1947 else if (vap->va_mask & XFS_AT_PROJID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 prid = (xfs_prid_t)vap->va_projid;
1949 else
1950 prid = (xfs_prid_t)dfltprid;
1951
1952 /*
1953 * Make sure that we have allocated dquot(s) on disk.
1954 */
1955 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001956 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 XFS_QMOPT_QUOTALL|XFS_QMOPT_INHERIT, &udqp, &gdqp);
1958 if (error)
1959 goto std_return;
1960
1961 ip = NULL;
1962 dp_joined_to_trans = B_FALSE;
1963
1964 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
1965 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1966 resblks = XFS_CREATE_SPACE_RES(mp, namelen);
1967 /*
1968 * Initially assume that the file does not exist and
1969 * reserve the resources for that case. If that is not
1970 * the case we'll drop the one we have and get a more
1971 * appropriate transaction later.
1972 */
1973 error = xfs_trans_reserve(tp, resblks, XFS_CREATE_LOG_RES(mp), 0,
1974 XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT);
1975 if (error == ENOSPC) {
1976 resblks = 0;
1977 error = xfs_trans_reserve(tp, 0, XFS_CREATE_LOG_RES(mp), 0,
1978 XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT);
1979 }
1980 if (error) {
1981 cancel_flags = 0;
1982 dp = NULL;
1983 goto error_return;
1984 }
1985
1986 xfs_ilock(dp, XFS_ILOCK_EXCL);
1987
1988 XFS_BMAP_INIT(&free_list, &first_block);
1989
1990 ASSERT(ip == NULL);
1991
1992 /*
1993 * Reserve disk quota and the inode.
1994 */
1995 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
1996 if (error)
1997 goto error_return;
1998
1999 if (resblks == 0 &&
2000 (error = XFS_DIR_CANENTER(mp, tp, dp, name, namelen)))
2001 goto error_return;
2002 rdev = (vap->va_mask & XFS_AT_RDEV) ? vap->va_rdev : 0;
Christoph Hellwig0432dab2005-09-02 16:46:51 +10002003 error = xfs_dir_ialloc(&tp, dp, vap->va_mode, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 rdev, credp, prid, resblks > 0,
2005 &ip, &committed);
2006 if (error) {
2007 if (error == ENOSPC)
2008 goto error_return;
2009 goto abort_return;
2010 }
2011 ITRACE(ip);
2012
2013 /*
2014 * At this point, we've gotten a newly allocated inode.
2015 * It is locked (and joined to the transaction).
2016 */
2017
2018 ASSERT(ismrlocked (&ip->i_lock, MR_UPDATE));
2019
2020 /*
2021 * Now we join the directory inode to the transaction.
2022 * We do not do it earlier because xfs_dir_ialloc
2023 * might commit the previous transaction (and release
2024 * all the locks).
2025 */
2026
2027 VN_HOLD(dir_vp);
2028 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2029 dp_joined_to_trans = B_TRUE;
2030
2031 error = XFS_DIR_CREATENAME(mp, tp, dp, name, namelen, ip->i_ino,
2032 &first_block, &free_list,
2033 resblks ? resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
2034 if (error) {
2035 ASSERT(error != ENOSPC);
2036 goto abort_return;
2037 }
2038 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2039 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2040
2041 /*
2042 * If this is a synchronous mount, make sure that the
2043 * create transaction goes to disk before returning to
2044 * the user.
2045 */
2046 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2047 xfs_trans_set_sync(tp);
2048 }
2049
2050 dp->i_gen++;
2051
2052 /*
2053 * Attach the dquot(s) to the inodes and modify them incore.
2054 * These ids of the inode couldn't have changed since the new
2055 * inode has been locked ever since it was created.
2056 */
2057 XFS_QM_DQVOPCREATE(mp, tp, ip, udqp, gdqp);
2058
2059 /*
2060 * xfs_trans_commit normally decrements the vnode ref count
2061 * when it unlocks the inode. Since we want to return the
2062 * vnode to the caller, we bump the vnode ref count now.
2063 */
2064 IHOLD(ip);
2065 vp = XFS_ITOV(ip);
2066
2067 error = xfs_bmap_finish(&tp, &free_list, first_block, &committed);
2068 if (error) {
2069 xfs_bmap_cancel(&free_list);
2070 goto abort_rele;
2071 }
2072
2073 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
2074 if (error) {
2075 IRELE(ip);
2076 tp = NULL;
2077 goto error_return;
2078 }
2079
2080 XFS_QM_DQRELE(mp, udqp);
2081 XFS_QM_DQRELE(mp, gdqp);
2082
2083 /*
2084 * Propogate the fact that the vnode changed after the
2085 * xfs_inode locks have been released.
2086 */
2087 VOP_VNODE_CHANGE(vp, VCHANGE_FLAGS_TRUNCATED, 3);
2088
2089 *vpp = vp;
2090
2091 /* Fallthrough to std_return with error = 0 */
2092
2093std_return:
2094 if ( (*vpp || (error != 0 && dm_event_sent != 0)) &&
2095 DM_EVENT_ENABLED(dir_vp->v_vfsp, XFS_BHVTOI(dir_bdp),
2096 DM_EVENT_POSTCREATE)) {
2097 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE,
2098 dir_vp, DM_RIGHT_NULL,
2099 *vpp ? vp:NULL,
2100 DM_RIGHT_NULL, name, NULL,
2101 dm_di_mode, error, 0);
2102 }
2103 return error;
2104
2105 abort_return:
2106 cancel_flags |= XFS_TRANS_ABORT;
2107 /* FALLTHROUGH */
2108 error_return:
2109
2110 if (tp != NULL)
2111 xfs_trans_cancel(tp, cancel_flags);
2112
2113 if (!dp_joined_to_trans && (dp != NULL))
2114 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2115 XFS_QM_DQRELE(mp, udqp);
2116 XFS_QM_DQRELE(mp, gdqp);
2117
2118 goto std_return;
2119
2120 abort_rele:
2121 /*
2122 * Wait until after the current transaction is aborted to
2123 * release the inode. This prevents recursive transactions
2124 * and deadlocks from xfs_inactive.
2125 */
2126 cancel_flags |= XFS_TRANS_ABORT;
2127 xfs_trans_cancel(tp, cancel_flags);
2128 IRELE(ip);
2129
2130 XFS_QM_DQRELE(mp, udqp);
2131 XFS_QM_DQRELE(mp, gdqp);
2132
2133 goto std_return;
2134}
2135
2136#ifdef DEBUG
2137/*
2138 * Some counters to see if (and how often) we are hitting some deadlock
2139 * prevention code paths.
2140 */
2141
2142int xfs_rm_locks;
2143int xfs_rm_lock_delays;
2144int xfs_rm_attempts;
2145#endif
2146
2147/*
2148 * The following routine will lock the inodes associated with the
2149 * directory and the named entry in the directory. The locks are
2150 * acquired in increasing inode number.
2151 *
2152 * If the entry is "..", then only the directory is locked. The
2153 * vnode ref count will still include that from the .. entry in
2154 * this case.
2155 *
2156 * There is a deadlock we need to worry about. If the locked directory is
2157 * in the AIL, it might be blocking up the log. The next inode we lock
2158 * could be already locked by another thread waiting for log space (e.g
2159 * a permanent log reservation with a long running transaction (see
2160 * xfs_itruncate_finish)). To solve this, we must check if the directory
2161 * is in the ail and use lock_nowait. If we can't lock, we need to
2162 * drop the inode lock on the directory and try again. xfs_iunlock will
2163 * potentially push the tail if we were holding up the log.
2164 */
2165STATIC int
2166xfs_lock_dir_and_entry(
2167 xfs_inode_t *dp,
2168 vname_t *dentry,
2169 xfs_inode_t *ip) /* inode of entry 'name' */
2170{
2171 int attempts;
2172 xfs_ino_t e_inum;
2173 xfs_inode_t *ips[2];
2174 xfs_log_item_t *lp;
2175
2176#ifdef DEBUG
2177 xfs_rm_locks++;
2178#endif
2179 attempts = 0;
2180
2181again:
2182 xfs_ilock(dp, XFS_ILOCK_EXCL);
2183
2184 e_inum = ip->i_ino;
2185
2186 ITRACE(ip);
2187
2188 /*
2189 * We want to lock in increasing inum. Since we've already
2190 * acquired the lock on the directory, we may need to release
2191 * if if the inum of the entry turns out to be less.
2192 */
2193 if (e_inum > dp->i_ino) {
2194 /*
2195 * We are already in the right order, so just
2196 * lock on the inode of the entry.
2197 * We need to use nowait if dp is in the AIL.
2198 */
2199
2200 lp = (xfs_log_item_t *)dp->i_itemp;
2201 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
2202 if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
2203 attempts++;
2204#ifdef DEBUG
2205 xfs_rm_attempts++;
2206#endif
2207
2208 /*
2209 * Unlock dp and try again.
2210 * xfs_iunlock will try to push the tail
2211 * if the inode is in the AIL.
2212 */
2213
2214 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2215
2216 if ((attempts % 5) == 0) {
2217 delay(1); /* Don't just spin the CPU */
2218#ifdef DEBUG
2219 xfs_rm_lock_delays++;
2220#endif
2221 }
2222 goto again;
2223 }
2224 } else {
2225 xfs_ilock(ip, XFS_ILOCK_EXCL);
2226 }
2227 } else if (e_inum < dp->i_ino) {
2228 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2229
2230 ips[0] = ip;
2231 ips[1] = dp;
2232 xfs_lock_inodes(ips, 2, 0, XFS_ILOCK_EXCL);
2233 }
2234 /* else e_inum == dp->i_ino */
2235 /* This can happen if we're asked to lock /x/..
2236 * the entry is "..", which is also the parent directory.
2237 */
2238
2239 return 0;
2240}
2241
2242#ifdef DEBUG
2243int xfs_locked_n;
2244int xfs_small_retries;
2245int xfs_middle_retries;
2246int xfs_lots_retries;
2247int xfs_lock_delays;
2248#endif
2249
2250/*
2251 * The following routine will lock n inodes in exclusive mode.
2252 * We assume the caller calls us with the inodes in i_ino order.
2253 *
2254 * We need to detect deadlock where an inode that we lock
2255 * is in the AIL and we start waiting for another inode that is locked
2256 * by a thread in a long running transaction (such as truncate). This can
2257 * result in deadlock since the long running trans might need to wait
2258 * for the inode we just locked in order to push the tail and free space
2259 * in the log.
2260 */
2261void
2262xfs_lock_inodes(
2263 xfs_inode_t **ips,
2264 int inodes,
2265 int first_locked,
2266 uint lock_mode)
2267{
2268 int attempts = 0, i, j, try_lock;
2269 xfs_log_item_t *lp;
2270
2271 ASSERT(ips && (inodes >= 2)); /* we need at least two */
2272
2273 if (first_locked) {
2274 try_lock = 1;
2275 i = 1;
2276 } else {
2277 try_lock = 0;
2278 i = 0;
2279 }
2280
2281again:
2282 for (; i < inodes; i++) {
2283 ASSERT(ips[i]);
2284
2285 if (i && (ips[i] == ips[i-1])) /* Already locked */
2286 continue;
2287
2288 /*
2289 * If try_lock is not set yet, make sure all locked inodes
2290 * are not in the AIL.
2291 * If any are, set try_lock to be used later.
2292 */
2293
2294 if (!try_lock) {
2295 for (j = (i - 1); j >= 0 && !try_lock; j--) {
2296 lp = (xfs_log_item_t *)ips[j]->i_itemp;
2297 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
2298 try_lock++;
2299 }
2300 }
2301 }
2302
2303 /*
2304 * If any of the previous locks we have locked is in the AIL,
2305 * we must TRY to get the second and subsequent locks. If
2306 * we can't get any, we must release all we have
2307 * and try again.
2308 */
2309
2310 if (try_lock) {
2311 /* try_lock must be 0 if i is 0. */
2312 /*
2313 * try_lock means we have an inode locked
2314 * that is in the AIL.
2315 */
2316 ASSERT(i != 0);
2317 if (!xfs_ilock_nowait(ips[i], lock_mode)) {
2318 attempts++;
2319
2320 /*
2321 * Unlock all previous guys and try again.
2322 * xfs_iunlock will try to push the tail
2323 * if the inode is in the AIL.
2324 */
2325
2326 for(j = i - 1; j >= 0; j--) {
2327
2328 /*
2329 * Check to see if we've already
2330 * unlocked this one.
2331 * Not the first one going back,
2332 * and the inode ptr is the same.
2333 */
2334 if ((j != (i - 1)) && ips[j] ==
2335 ips[j+1])
2336 continue;
2337
2338 xfs_iunlock(ips[j], lock_mode);
2339 }
2340
2341 if ((attempts % 5) == 0) {
2342 delay(1); /* Don't just spin the CPU */
2343#ifdef DEBUG
2344 xfs_lock_delays++;
2345#endif
2346 }
2347 i = 0;
2348 try_lock = 0;
2349 goto again;
2350 }
2351 } else {
2352 xfs_ilock(ips[i], lock_mode);
2353 }
2354 }
2355
2356#ifdef DEBUG
2357 if (attempts) {
2358 if (attempts < 5) xfs_small_retries++;
2359 else if (attempts < 100) xfs_middle_retries++;
2360 else xfs_lots_retries++;
2361 } else {
2362 xfs_locked_n++;
2363 }
2364#endif
2365}
2366
2367#ifdef DEBUG
2368#define REMOVE_DEBUG_TRACE(x) {remove_which_error_return = (x);}
2369int remove_which_error_return = 0;
2370#else /* ! DEBUG */
2371#define REMOVE_DEBUG_TRACE(x)
2372#endif /* ! DEBUG */
2373
2374
2375/*
2376 * xfs_remove
2377 *
2378 */
2379STATIC int
2380xfs_remove(
2381 bhv_desc_t *dir_bdp,
2382 vname_t *dentry,
2383 cred_t *credp)
2384{
2385 vnode_t *dir_vp;
2386 char *name = VNAME(dentry);
2387 xfs_inode_t *dp, *ip;
2388 xfs_trans_t *tp = NULL;
2389 xfs_mount_t *mp;
2390 int error = 0;
2391 xfs_bmap_free_t free_list;
2392 xfs_fsblock_t first_block;
2393 int cancel_flags;
2394 int committed;
2395 int dm_di_mode = 0;
2396 int link_zero;
2397 uint resblks;
2398 int namelen;
2399
2400 dir_vp = BHV_TO_VNODE(dir_bdp);
2401 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
2402
2403 dp = XFS_BHVTOI(dir_bdp);
2404 mp = dp->i_mount;
2405
2406 if (XFS_FORCED_SHUTDOWN(mp))
2407 return XFS_ERROR(EIO);
2408
2409 namelen = VNAMELEN(dentry);
2410
2411 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_REMOVE)) {
2412 error = XFS_SEND_NAMESP(mp, DM_EVENT_REMOVE, dir_vp,
2413 DM_RIGHT_NULL, NULL, DM_RIGHT_NULL,
2414 name, NULL, 0, 0, 0);
2415 if (error)
2416 return error;
2417 }
2418
2419 /* From this point on, return through std_return */
2420 ip = NULL;
2421
2422 /*
2423 * We need to get a reference to ip before we get our log
2424 * reservation. The reason for this is that we cannot call
2425 * xfs_iget for an inode for which we do not have a reference
2426 * once we've acquired a log reservation. This is because the
2427 * inode we are trying to get might be in xfs_inactive going
2428 * for a log reservation. Since we'll have to wait for the
2429 * inactive code to complete before returning from xfs_iget,
2430 * we need to make sure that we don't have log space reserved
2431 * when we call xfs_iget. Instead we get an unlocked referece
2432 * to the inode before getting our log reservation.
2433 */
2434 error = xfs_get_dir_entry(dentry, &ip);
2435 if (error) {
2436 REMOVE_DEBUG_TRACE(__LINE__);
2437 goto std_return;
2438 }
2439
2440 dm_di_mode = ip->i_d.di_mode;
2441
2442 vn_trace_entry(XFS_ITOV(ip), __FUNCTION__, (inst_t *)__return_address);
2443
2444 ITRACE(ip);
2445
2446 error = XFS_QM_DQATTACH(mp, dp, 0);
2447 if (!error && dp != ip)
2448 error = XFS_QM_DQATTACH(mp, ip, 0);
2449 if (error) {
2450 REMOVE_DEBUG_TRACE(__LINE__);
2451 IRELE(ip);
2452 goto std_return;
2453 }
2454
2455 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
2456 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2457 /*
2458 * We try to get the real space reservation first,
2459 * allowing for directory btree deletion(s) implying
2460 * possible bmap insert(s). If we can't get the space
2461 * reservation then we use 0 instead, and avoid the bmap
2462 * btree insert(s) in the directory code by, if the bmap
2463 * insert tries to happen, instead trimming the LAST
2464 * block from the directory.
2465 */
2466 resblks = XFS_REMOVE_SPACE_RES(mp);
2467 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
2468 XFS_TRANS_PERM_LOG_RES, XFS_REMOVE_LOG_COUNT);
2469 if (error == ENOSPC) {
2470 resblks = 0;
2471 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
2472 XFS_TRANS_PERM_LOG_RES, XFS_REMOVE_LOG_COUNT);
2473 }
2474 if (error) {
2475 ASSERT(error != ENOSPC);
2476 REMOVE_DEBUG_TRACE(__LINE__);
2477 xfs_trans_cancel(tp, 0);
2478 IRELE(ip);
2479 return error;
2480 }
2481
2482 error = xfs_lock_dir_and_entry(dp, dentry, ip);
2483 if (error) {
2484 REMOVE_DEBUG_TRACE(__LINE__);
2485 xfs_trans_cancel(tp, cancel_flags);
2486 IRELE(ip);
2487 goto std_return;
2488 }
2489
2490 /*
2491 * At this point, we've gotten both the directory and the entry
2492 * inodes locked.
2493 */
2494 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2495 if (dp != ip) {
2496 /*
2497 * Increment vnode ref count only in this case since
2498 * there's an extra vnode reference in the case where
2499 * dp == ip.
2500 */
2501 IHOLD(dp);
2502 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2503 }
2504
2505 /*
2506 * Entry must exist since we did a lookup in xfs_lock_dir_and_entry.
2507 */
2508 XFS_BMAP_INIT(&free_list, &first_block);
2509 error = XFS_DIR_REMOVENAME(mp, tp, dp, name, namelen, ip->i_ino,
2510 &first_block, &free_list, 0);
2511 if (error) {
2512 ASSERT(error != ENOENT);
2513 REMOVE_DEBUG_TRACE(__LINE__);
2514 goto error1;
2515 }
2516 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2517
2518 dp->i_gen++;
2519 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2520
2521 error = xfs_droplink(tp, ip);
2522 if (error) {
2523 REMOVE_DEBUG_TRACE(__LINE__);
2524 goto error1;
2525 }
2526
2527 /* Determine if this is the last link while
2528 * we are in the transaction.
2529 */
2530 link_zero = (ip)->i_d.di_nlink==0;
2531
2532 /*
2533 * Take an extra ref on the inode so that it doesn't
2534 * go to xfs_inactive() from within the commit.
2535 */
2536 IHOLD(ip);
2537
2538 /*
2539 * If this is a synchronous mount, make sure that the
2540 * remove transaction goes to disk before returning to
2541 * the user.
2542 */
2543 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2544 xfs_trans_set_sync(tp);
2545 }
2546
2547 error = xfs_bmap_finish(&tp, &free_list, first_block, &committed);
2548 if (error) {
2549 REMOVE_DEBUG_TRACE(__LINE__);
2550 goto error_rele;
2551 }
2552
2553 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
2554 if (error) {
2555 IRELE(ip);
2556 goto std_return;
2557 }
2558
2559 /*
2560 * Before we drop our extra reference to the inode, purge it
2561 * from the refcache if it is there. By waiting until afterwards
2562 * to do the IRELE, we ensure that we won't go inactive in the
2563 * xfs_refcache_purge_ip routine (although that would be OK).
2564 */
2565 xfs_refcache_purge_ip(ip);
2566
2567 vn_trace_exit(XFS_ITOV(ip), __FUNCTION__, (inst_t *)__return_address);
2568
2569 /*
2570 * Let interposed file systems know about removed links.
2571 */
2572 VOP_LINK_REMOVED(XFS_ITOV(ip), dir_vp, link_zero);
2573
2574 IRELE(ip);
2575
2576/* Fall through to std_return with error = 0 */
2577 std_return:
2578 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp,
2579 DM_EVENT_POSTREMOVE)) {
2580 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTREMOVE,
2581 dir_vp, DM_RIGHT_NULL,
2582 NULL, DM_RIGHT_NULL,
2583 name, NULL, dm_di_mode, error, 0);
2584 }
2585 return error;
2586
2587 error1:
2588 xfs_bmap_cancel(&free_list);
2589 cancel_flags |= XFS_TRANS_ABORT;
2590 xfs_trans_cancel(tp, cancel_flags);
2591 goto std_return;
2592
2593 error_rele:
2594 /*
2595 * In this case make sure to not release the inode until after
2596 * the current transaction is aborted. Releasing it beforehand
2597 * can cause us to go to xfs_inactive and start a recursive
2598 * transaction which can easily deadlock with the current one.
2599 */
2600 xfs_bmap_cancel(&free_list);
2601 cancel_flags |= XFS_TRANS_ABORT;
2602 xfs_trans_cancel(tp, cancel_flags);
2603
2604 /*
2605 * Before we drop our extra reference to the inode, purge it
2606 * from the refcache if it is there. By waiting until afterwards
2607 * to do the IRELE, we ensure that we won't go inactive in the
2608 * xfs_refcache_purge_ip routine (although that would be OK).
2609 */
2610 xfs_refcache_purge_ip(ip);
2611
2612 IRELE(ip);
2613
2614 goto std_return;
2615}
2616
2617
2618/*
2619 * xfs_link
2620 *
2621 */
2622STATIC int
2623xfs_link(
2624 bhv_desc_t *target_dir_bdp,
2625 vnode_t *src_vp,
2626 vname_t *dentry,
2627 cred_t *credp)
2628{
2629 xfs_inode_t *tdp, *sip;
2630 xfs_trans_t *tp;
2631 xfs_mount_t *mp;
2632 xfs_inode_t *ips[2];
2633 int error;
2634 xfs_bmap_free_t free_list;
2635 xfs_fsblock_t first_block;
2636 int cancel_flags;
2637 int committed;
2638 vnode_t *target_dir_vp;
2639 bhv_desc_t *src_bdp;
2640 int resblks;
2641 char *target_name = VNAME(dentry);
2642 int target_namelen;
2643
2644 target_dir_vp = BHV_TO_VNODE(target_dir_bdp);
2645 vn_trace_entry(target_dir_vp, __FUNCTION__, (inst_t *)__return_address);
2646 vn_trace_entry(src_vp, __FUNCTION__, (inst_t *)__return_address);
2647
2648 target_namelen = VNAMELEN(dentry);
Christoph Hellwig0432dab2005-09-02 16:46:51 +10002649 if (VN_ISDIR(src_vp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 return XFS_ERROR(EPERM);
2651
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 src_bdp = vn_bhv_lookup_unlocked(VN_BHV_HEAD(src_vp), &xfs_vnodeops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 sip = XFS_BHVTOI(src_bdp);
2654 tdp = XFS_BHVTOI(target_dir_bdp);
2655 mp = tdp->i_mount;
2656 if (XFS_FORCED_SHUTDOWN(mp))
2657 return XFS_ERROR(EIO);
2658
2659 if (DM_EVENT_ENABLED(src_vp->v_vfsp, tdp, DM_EVENT_LINK)) {
2660 error = XFS_SEND_NAMESP(mp, DM_EVENT_LINK,
2661 target_dir_vp, DM_RIGHT_NULL,
2662 src_vp, DM_RIGHT_NULL,
2663 target_name, NULL, 0, 0, 0);
2664 if (error)
2665 return error;
2666 }
2667
2668 /* Return through std_return after this point. */
2669
2670 error = XFS_QM_DQATTACH(mp, sip, 0);
2671 if (!error && sip != tdp)
2672 error = XFS_QM_DQATTACH(mp, tdp, 0);
2673 if (error)
2674 goto std_return;
2675
2676 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
2677 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2678 resblks = XFS_LINK_SPACE_RES(mp, target_namelen);
2679 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
2680 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2681 if (error == ENOSPC) {
2682 resblks = 0;
2683 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
2684 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2685 }
2686 if (error) {
2687 cancel_flags = 0;
2688 goto error_return;
2689 }
2690
2691 if (sip->i_ino < tdp->i_ino) {
2692 ips[0] = sip;
2693 ips[1] = tdp;
2694 } else {
2695 ips[0] = tdp;
2696 ips[1] = sip;
2697 }
2698
2699 xfs_lock_inodes(ips, 2, 0, XFS_ILOCK_EXCL);
2700
2701 /*
2702 * Increment vnode ref counts since xfs_trans_commit &
2703 * xfs_trans_cancel will both unlock the inodes and
2704 * decrement the associated ref counts.
2705 */
2706 VN_HOLD(src_vp);
2707 VN_HOLD(target_dir_vp);
2708 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
2709 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
2710
2711 /*
2712 * If the source has too many links, we can't make any more to it.
2713 */
2714 if (sip->i_d.di_nlink >= XFS_MAXLINK) {
2715 error = XFS_ERROR(EMLINK);
2716 goto error_return;
2717 }
2718
Nathan Scott365ca832005-06-21 15:39:12 +10002719 /*
2720 * If we are using project inheritance, we only allow hard link
2721 * creation in our tree when the project IDs are the same; else
2722 * the tree quota mechanism could be circumvented.
2723 */
2724 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
2725 (tdp->i_d.di_projid != sip->i_d.di_projid))) {
2726 error = XFS_ERROR(EPERM);
2727 goto error_return;
2728 }
2729
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 if (resblks == 0 &&
2731 (error = XFS_DIR_CANENTER(mp, tp, tdp, target_name,
2732 target_namelen)))
2733 goto error_return;
2734
2735 XFS_BMAP_INIT(&free_list, &first_block);
2736
2737 error = XFS_DIR_CREATENAME(mp, tp, tdp, target_name, target_namelen,
2738 sip->i_ino, &first_block, &free_list,
2739 resblks);
2740 if (error)
2741 goto abort_return;
2742 xfs_ichgtime(tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2743 tdp->i_gen++;
2744 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
2745
2746 error = xfs_bumplink(tp, sip);
2747 if (error) {
2748 goto abort_return;
2749 }
2750
2751 /*
2752 * If this is a synchronous mount, make sure that the
2753 * link transaction goes to disk before returning to
2754 * the user.
2755 */
2756 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2757 xfs_trans_set_sync(tp);
2758 }
2759
2760 error = xfs_bmap_finish (&tp, &free_list, first_block, &committed);
2761 if (error) {
2762 xfs_bmap_cancel(&free_list);
2763 goto abort_return;
2764 }
2765
2766 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
2767 if (error) {
2768 goto std_return;
2769 }
2770
2771 /* Fall through to std_return with error = 0. */
2772std_return:
2773 if (DM_EVENT_ENABLED(src_vp->v_vfsp, sip,
2774 DM_EVENT_POSTLINK)) {
2775 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTLINK,
2776 target_dir_vp, DM_RIGHT_NULL,
2777 src_vp, DM_RIGHT_NULL,
2778 target_name, NULL, 0, error, 0);
2779 }
2780 return error;
2781
2782 abort_return:
2783 cancel_flags |= XFS_TRANS_ABORT;
2784 /* FALLTHROUGH */
2785 error_return:
2786 xfs_trans_cancel(tp, cancel_flags);
2787
2788 goto std_return;
2789}
2790/*
2791 * xfs_mkdir
2792 *
2793 */
2794STATIC int
2795xfs_mkdir(
2796 bhv_desc_t *dir_bdp,
2797 vname_t *dentry,
2798 vattr_t *vap,
2799 vnode_t **vpp,
2800 cred_t *credp)
2801{
2802 char *dir_name = VNAME(dentry);
2803 xfs_inode_t *dp;
2804 xfs_inode_t *cdp; /* inode of created dir */
2805 vnode_t *cvp; /* vnode of created dir */
2806 xfs_trans_t *tp;
2807 xfs_mount_t *mp;
2808 int cancel_flags;
2809 int error;
2810 int committed;
2811 xfs_bmap_free_t free_list;
2812 xfs_fsblock_t first_block;
2813 vnode_t *dir_vp;
2814 boolean_t dp_joined_to_trans;
2815 boolean_t created = B_FALSE;
2816 int dm_event_sent = 0;
2817 xfs_prid_t prid;
2818 struct xfs_dquot *udqp, *gdqp;
2819 uint resblks;
2820 int dm_di_mode;
2821 int dir_namelen;
2822
2823 dir_vp = BHV_TO_VNODE(dir_bdp);
2824 dp = XFS_BHVTOI(dir_bdp);
2825 mp = dp->i_mount;
2826
2827 if (XFS_FORCED_SHUTDOWN(mp))
2828 return XFS_ERROR(EIO);
2829
2830 dir_namelen = VNAMELEN(dentry);
2831
2832 tp = NULL;
2833 dp_joined_to_trans = B_FALSE;
Christoph Hellwig0432dab2005-09-02 16:46:51 +10002834 dm_di_mode = vap->va_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
2836 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_CREATE)) {
2837 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
2838 dir_vp, DM_RIGHT_NULL, NULL,
2839 DM_RIGHT_NULL, dir_name, NULL,
2840 dm_di_mode, 0, 0);
2841 if (error)
2842 return error;
2843 dm_event_sent = 1;
2844 }
2845
2846 /* Return through std_return after this point. */
2847
2848 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
2849
2850 mp = dp->i_mount;
2851 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10002852 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
2853 prid = dp->i_d.di_projid;
2854 else if (vap->va_mask & XFS_AT_PROJID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 prid = (xfs_prid_t)vap->va_projid;
2856 else
2857 prid = (xfs_prid_t)dfltprid;
2858
2859 /*
2860 * Make sure that we have allocated dquot(s) on disk.
2861 */
2862 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002863 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
2865 if (error)
2866 goto std_return;
2867
2868 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
2869 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2870 resblks = XFS_MKDIR_SPACE_RES(mp, dir_namelen);
2871 error = xfs_trans_reserve(tp, resblks, XFS_MKDIR_LOG_RES(mp), 0,
2872 XFS_TRANS_PERM_LOG_RES, XFS_MKDIR_LOG_COUNT);
2873 if (error == ENOSPC) {
2874 resblks = 0;
2875 error = xfs_trans_reserve(tp, 0, XFS_MKDIR_LOG_RES(mp), 0,
2876 XFS_TRANS_PERM_LOG_RES,
2877 XFS_MKDIR_LOG_COUNT);
2878 }
2879 if (error) {
2880 cancel_flags = 0;
2881 dp = NULL;
2882 goto error_return;
2883 }
2884
2885 xfs_ilock(dp, XFS_ILOCK_EXCL);
2886
2887 /*
2888 * Check for directory link count overflow.
2889 */
2890 if (dp->i_d.di_nlink >= XFS_MAXLINK) {
2891 error = XFS_ERROR(EMLINK);
2892 goto error_return;
2893 }
2894
2895 /*
2896 * Reserve disk quota and the inode.
2897 */
2898 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
2899 if (error)
2900 goto error_return;
2901
2902 if (resblks == 0 &&
2903 (error = XFS_DIR_CANENTER(mp, tp, dp, dir_name, dir_namelen)))
2904 goto error_return;
2905 /*
2906 * create the directory inode.
2907 */
Christoph Hellwig0432dab2005-09-02 16:46:51 +10002908 error = xfs_dir_ialloc(&tp, dp, vap->va_mode, 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 0, credp, prid, resblks > 0,
2910 &cdp, NULL);
2911 if (error) {
2912 if (error == ENOSPC)
2913 goto error_return;
2914 goto abort_return;
2915 }
2916 ITRACE(cdp);
2917
2918 /*
2919 * Now we add the directory inode to the transaction.
2920 * We waited until now since xfs_dir_ialloc might start
2921 * a new transaction. Had we joined the transaction
2922 * earlier, the locks might have gotten released.
2923 */
2924 VN_HOLD(dir_vp);
2925 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2926 dp_joined_to_trans = B_TRUE;
2927
2928 XFS_BMAP_INIT(&free_list, &first_block);
2929
2930 error = XFS_DIR_CREATENAME(mp, tp, dp, dir_name, dir_namelen,
2931 cdp->i_ino, &first_block, &free_list,
2932 resblks ? resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
2933 if (error) {
2934 ASSERT(error != ENOSPC);
2935 goto error1;
2936 }
2937 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2938
2939 /*
2940 * Bump the in memory version number of the parent directory
2941 * so that other processes accessing it will recognize that
2942 * the directory has changed.
2943 */
2944 dp->i_gen++;
2945
2946 error = XFS_DIR_INIT(mp, tp, cdp, dp);
2947 if (error) {
2948 goto error2;
2949 }
2950
2951 cdp->i_gen = 1;
2952 error = xfs_bumplink(tp, dp);
2953 if (error) {
2954 goto error2;
2955 }
2956
2957 cvp = XFS_ITOV(cdp);
2958
2959 created = B_TRUE;
2960
2961 *vpp = cvp;
2962 IHOLD(cdp);
2963
2964 /*
2965 * Attach the dquots to the new inode and modify the icount incore.
2966 */
2967 XFS_QM_DQVOPCREATE(mp, tp, cdp, udqp, gdqp);
2968
2969 /*
2970 * If this is a synchronous mount, make sure that the
2971 * mkdir transaction goes to disk before returning to
2972 * the user.
2973 */
2974 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2975 xfs_trans_set_sync(tp);
2976 }
2977
2978 error = xfs_bmap_finish(&tp, &free_list, first_block, &committed);
2979 if (error) {
2980 IRELE(cdp);
2981 goto error2;
2982 }
2983
2984 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
2985 XFS_QM_DQRELE(mp, udqp);
2986 XFS_QM_DQRELE(mp, gdqp);
2987 if (error) {
2988 IRELE(cdp);
2989 }
2990
2991 /* Fall through to std_return with error = 0 or errno from
2992 * xfs_trans_commit. */
2993
2994std_return:
2995 if ( (created || (error != 0 && dm_event_sent != 0)) &&
2996 DM_EVENT_ENABLED(dir_vp->v_vfsp, XFS_BHVTOI(dir_bdp),
2997 DM_EVENT_POSTCREATE)) {
2998 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE,
2999 dir_vp, DM_RIGHT_NULL,
3000 created ? XFS_ITOV(cdp):NULL,
3001 DM_RIGHT_NULL,
3002 dir_name, NULL,
3003 dm_di_mode, error, 0);
3004 }
3005 return error;
3006
3007 error2:
3008 error1:
3009 xfs_bmap_cancel(&free_list);
3010 abort_return:
3011 cancel_flags |= XFS_TRANS_ABORT;
3012 error_return:
3013 xfs_trans_cancel(tp, cancel_flags);
3014 XFS_QM_DQRELE(mp, udqp);
3015 XFS_QM_DQRELE(mp, gdqp);
3016
3017 if (!dp_joined_to_trans && (dp != NULL)) {
3018 xfs_iunlock(dp, XFS_ILOCK_EXCL);
3019 }
3020
3021 goto std_return;
3022}
3023
3024
3025/*
3026 * xfs_rmdir
3027 *
3028 */
3029STATIC int
3030xfs_rmdir(
3031 bhv_desc_t *dir_bdp,
3032 vname_t *dentry,
3033 cred_t *credp)
3034{
3035 char *name = VNAME(dentry);
3036 xfs_inode_t *dp;
3037 xfs_inode_t *cdp; /* child directory */
3038 xfs_trans_t *tp;
3039 xfs_mount_t *mp;
3040 int error;
3041 xfs_bmap_free_t free_list;
3042 xfs_fsblock_t first_block;
3043 int cancel_flags;
3044 int committed;
3045 vnode_t *dir_vp;
3046 int dm_di_mode = 0;
3047 int last_cdp_link;
3048 int namelen;
3049 uint resblks;
3050
3051 dir_vp = BHV_TO_VNODE(dir_bdp);
3052 dp = XFS_BHVTOI(dir_bdp);
3053 mp = dp->i_mount;
3054
3055 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
3056
3057 if (XFS_FORCED_SHUTDOWN(XFS_BHVTOI(dir_bdp)->i_mount))
3058 return XFS_ERROR(EIO);
3059 namelen = VNAMELEN(dentry);
3060
3061 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_REMOVE)) {
3062 error = XFS_SEND_NAMESP(mp, DM_EVENT_REMOVE,
3063 dir_vp, DM_RIGHT_NULL,
3064 NULL, DM_RIGHT_NULL,
3065 name, NULL, 0, 0, 0);
3066 if (error)
3067 return XFS_ERROR(error);
3068 }
3069
3070 /* Return through std_return after this point. */
3071
3072 cdp = NULL;
3073
3074 /*
3075 * We need to get a reference to cdp before we get our log
3076 * reservation. The reason for this is that we cannot call
3077 * xfs_iget for an inode for which we do not have a reference
3078 * once we've acquired a log reservation. This is because the
3079 * inode we are trying to get might be in xfs_inactive going
3080 * for a log reservation. Since we'll have to wait for the
3081 * inactive code to complete before returning from xfs_iget,
3082 * we need to make sure that we don't have log space reserved
3083 * when we call xfs_iget. Instead we get an unlocked referece
3084 * to the inode before getting our log reservation.
3085 */
3086 error = xfs_get_dir_entry(dentry, &cdp);
3087 if (error) {
3088 REMOVE_DEBUG_TRACE(__LINE__);
3089 goto std_return;
3090 }
3091 mp = dp->i_mount;
3092 dm_di_mode = cdp->i_d.di_mode;
3093
3094 /*
3095 * Get the dquots for the inodes.
3096 */
3097 error = XFS_QM_DQATTACH(mp, dp, 0);
3098 if (!error && dp != cdp)
3099 error = XFS_QM_DQATTACH(mp, cdp, 0);
3100 if (error) {
3101 IRELE(cdp);
3102 REMOVE_DEBUG_TRACE(__LINE__);
3103 goto std_return;
3104 }
3105
3106 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
3107 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
3108 /*
3109 * We try to get the real space reservation first,
3110 * allowing for directory btree deletion(s) implying
3111 * possible bmap insert(s). If we can't get the space
3112 * reservation then we use 0 instead, and avoid the bmap
3113 * btree insert(s) in the directory code by, if the bmap
3114 * insert tries to happen, instead trimming the LAST
3115 * block from the directory.
3116 */
3117 resblks = XFS_REMOVE_SPACE_RES(mp);
3118 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
3119 XFS_TRANS_PERM_LOG_RES, XFS_DEFAULT_LOG_COUNT);
3120 if (error == ENOSPC) {
3121 resblks = 0;
3122 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
3123 XFS_TRANS_PERM_LOG_RES, XFS_DEFAULT_LOG_COUNT);
3124 }
3125 if (error) {
3126 ASSERT(error != ENOSPC);
3127 cancel_flags = 0;
3128 IRELE(cdp);
3129 goto error_return;
3130 }
3131 XFS_BMAP_INIT(&free_list, &first_block);
3132
3133 /*
3134 * Now lock the child directory inode and the parent directory
3135 * inode in the proper order. This will take care of validating
3136 * that the directory entry for the child directory inode has
3137 * not changed while we were obtaining a log reservation.
3138 */
3139 error = xfs_lock_dir_and_entry(dp, dentry, cdp);
3140 if (error) {
3141 xfs_trans_cancel(tp, cancel_flags);
3142 IRELE(cdp);
3143 goto std_return;
3144 }
3145
3146 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
3147 if (dp != cdp) {
3148 /*
3149 * Only increment the parent directory vnode count if
3150 * we didn't bump it in looking up cdp. The only time
3151 * we don't bump it is when we're looking up ".".
3152 */
3153 VN_HOLD(dir_vp);
3154 }
3155
3156 ITRACE(cdp);
3157 xfs_trans_ijoin(tp, cdp, XFS_ILOCK_EXCL);
3158
3159 ASSERT(cdp->i_d.di_nlink >= 2);
3160 if (cdp->i_d.di_nlink != 2) {
3161 error = XFS_ERROR(ENOTEMPTY);
3162 goto error_return;
3163 }
3164 if (!XFS_DIR_ISEMPTY(mp, cdp)) {
3165 error = XFS_ERROR(ENOTEMPTY);
3166 goto error_return;
3167 }
3168
3169 error = XFS_DIR_REMOVENAME(mp, tp, dp, name, namelen, cdp->i_ino,
3170 &first_block, &free_list, resblks);
3171 if (error) {
3172 goto error1;
3173 }
3174
3175 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3176
3177 /*
3178 * Bump the in memory generation count on the parent
3179 * directory so that other can know that it has changed.
3180 */
3181 dp->i_gen++;
3182
3183 /*
3184 * Drop the link from cdp's "..".
3185 */
3186 error = xfs_droplink(tp, dp);
3187 if (error) {
3188 goto error1;
3189 }
3190
3191 /*
3192 * Drop the link from dp to cdp.
3193 */
3194 error = xfs_droplink(tp, cdp);
3195 if (error) {
3196 goto error1;
3197 }
3198
3199 /*
3200 * Drop the "." link from cdp to self.
3201 */
3202 error = xfs_droplink(tp, cdp);
3203 if (error) {
3204 goto error1;
3205 }
3206
3207 /* Determine these before committing transaction */
3208 last_cdp_link = (cdp)->i_d.di_nlink==0;
3209
3210 /*
3211 * Take an extra ref on the child vnode so that it
3212 * does not go to xfs_inactive() from within the commit.
3213 */
3214 IHOLD(cdp);
3215
3216 /*
3217 * If this is a synchronous mount, make sure that the
3218 * rmdir transaction goes to disk before returning to
3219 * the user.
3220 */
3221 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
3222 xfs_trans_set_sync(tp);
3223 }
3224
3225 error = xfs_bmap_finish (&tp, &free_list, first_block, &committed);
3226 if (error) {
3227 xfs_bmap_cancel(&free_list);
3228 xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES |
3229 XFS_TRANS_ABORT));
3230 IRELE(cdp);
3231 goto std_return;
3232 }
3233
3234 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
3235 if (error) {
3236 IRELE(cdp);
3237 goto std_return;
3238 }
3239
3240
3241 /*
3242 * Let interposed file systems know about removed links.
3243 */
3244 VOP_LINK_REMOVED(XFS_ITOV(cdp), dir_vp, last_cdp_link);
3245
3246 IRELE(cdp);
3247
3248 /* Fall through to std_return with error = 0 or the errno
3249 * from xfs_trans_commit. */
3250std_return:
3251 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_POSTREMOVE)) {
3252 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTREMOVE,
3253 dir_vp, DM_RIGHT_NULL,
3254 NULL, DM_RIGHT_NULL,
3255 name, NULL, dm_di_mode,
3256 error, 0);
3257 }
3258 return error;
3259
3260 error1:
3261 xfs_bmap_cancel(&free_list);
3262 cancel_flags |= XFS_TRANS_ABORT;
3263 error_return:
3264 xfs_trans_cancel(tp, cancel_flags);
3265 goto std_return;
3266}
3267
3268
3269/*
3270 * xfs_readdir
3271 *
3272 * Read dp's entries starting at uiop->uio_offset and translate them into
3273 * bufsize bytes worth of struct dirents starting at bufbase.
3274 */
3275STATIC int
3276xfs_readdir(
3277 bhv_desc_t *dir_bdp,
3278 uio_t *uiop,
3279 cred_t *credp,
3280 int *eofp)
3281{
3282 xfs_inode_t *dp;
3283 xfs_trans_t *tp = NULL;
3284 int error = 0;
3285 uint lock_mode;
3286 xfs_off_t start_offset;
3287
3288 vn_trace_entry(BHV_TO_VNODE(dir_bdp), __FUNCTION__,
3289 (inst_t *)__return_address);
3290 dp = XFS_BHVTOI(dir_bdp);
3291
3292 if (XFS_FORCED_SHUTDOWN(dp->i_mount)) {
3293 return XFS_ERROR(EIO);
3294 }
3295
3296 lock_mode = xfs_ilock_map_shared(dp);
3297 start_offset = uiop->uio_offset;
3298 error = XFS_DIR_GETDENTS(dp->i_mount, tp, dp, uiop, eofp);
3299 if (start_offset != uiop->uio_offset) {
3300 xfs_ichgtime(dp, XFS_ICHGTIME_ACC);
3301 }
3302 xfs_iunlock_map_shared(dp, lock_mode);
3303 return error;
3304}
3305
3306
3307/*
3308 * xfs_symlink
3309 *
3310 */
3311STATIC int
3312xfs_symlink(
3313 bhv_desc_t *dir_bdp,
3314 vname_t *dentry,
3315 vattr_t *vap,
3316 char *target_path,
3317 vnode_t **vpp,
3318 cred_t *credp)
3319{
3320 xfs_trans_t *tp;
3321 xfs_mount_t *mp;
3322 xfs_inode_t *dp;
3323 xfs_inode_t *ip;
3324 int error;
3325 int pathlen;
3326 xfs_bmap_free_t free_list;
3327 xfs_fsblock_t first_block;
3328 boolean_t dp_joined_to_trans;
3329 vnode_t *dir_vp;
3330 uint cancel_flags;
3331 int committed;
3332 xfs_fileoff_t first_fsb;
3333 xfs_filblks_t fs_blocks;
3334 int nmaps;
3335 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
3336 xfs_daddr_t d;
3337 char *cur_chunk;
3338 int byte_cnt;
3339 int n;
3340 xfs_buf_t *bp;
3341 xfs_prid_t prid;
3342 struct xfs_dquot *udqp, *gdqp;
3343 uint resblks;
3344 char *link_name = VNAME(dentry);
3345 int link_namelen;
3346
3347 *vpp = NULL;
3348 dir_vp = BHV_TO_VNODE(dir_bdp);
3349 dp = XFS_BHVTOI(dir_bdp);
3350 dp_joined_to_trans = B_FALSE;
3351 error = 0;
3352 ip = NULL;
3353 tp = NULL;
3354
3355 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
3356
3357 mp = dp->i_mount;
3358
3359 if (XFS_FORCED_SHUTDOWN(mp))
3360 return XFS_ERROR(EIO);
3361
3362 link_namelen = VNAMELEN(dentry);
3363
3364 /*
3365 * Check component lengths of the target path name.
3366 */
3367 pathlen = strlen(target_path);
3368 if (pathlen >= MAXPATHLEN) /* total string too long */
3369 return XFS_ERROR(ENAMETOOLONG);
3370 if (pathlen >= MAXNAMELEN) { /* is any component too long? */
3371 int len, total;
3372 char *path;
3373
3374 for(total = 0, path = target_path; total < pathlen;) {
3375 /*
3376 * Skip any slashes.
3377 */
3378 while(*path == '/') {
3379 total++;
3380 path++;
3381 }
3382
3383 /*
3384 * Count up to the next slash or end of path.
3385 * Error out if the component is bigger than MAXNAMELEN.
3386 */
3387 for(len = 0; *path != '/' && total < pathlen;total++, path++) {
3388 if (++len >= MAXNAMELEN) {
3389 error = ENAMETOOLONG;
3390 return error;
3391 }
3392 }
3393 }
3394 }
3395
3396 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_SYMLINK)) {
3397 error = XFS_SEND_NAMESP(mp, DM_EVENT_SYMLINK, dir_vp,
3398 DM_RIGHT_NULL, NULL, DM_RIGHT_NULL,
3399 link_name, target_path, 0, 0, 0);
3400 if (error)
3401 return error;
3402 }
3403
3404 /* Return through std_return after this point. */
3405
3406 udqp = gdqp = NULL;
Nathan Scott365ca832005-06-21 15:39:12 +10003407 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
3408 prid = dp->i_d.di_projid;
3409 else if (vap->va_mask & XFS_AT_PROJID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 prid = (xfs_prid_t)vap->va_projid;
3411 else
3412 prid = (xfs_prid_t)dfltprid;
3413
3414 /*
3415 * Make sure that we have allocated dquot(s) on disk.
3416 */
3417 error = XFS_QM_DQVOPALLOC(mp, dp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10003418 current_fsuid(credp), current_fsgid(credp), prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
3420 if (error)
3421 goto std_return;
3422
3423 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
3424 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
3425 /*
3426 * The symlink will fit into the inode data fork?
3427 * There can't be any attributes so we get the whole variable part.
3428 */
3429 if (pathlen <= XFS_LITINO(mp))
3430 fs_blocks = 0;
3431 else
3432 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
3433 resblks = XFS_SYMLINK_SPACE_RES(mp, link_namelen, fs_blocks);
3434 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
3435 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
3436 if (error == ENOSPC && fs_blocks == 0) {
3437 resblks = 0;
3438 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
3439 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
3440 }
3441 if (error) {
3442 cancel_flags = 0;
3443 dp = NULL;
3444 goto error_return;
3445 }
3446
3447 xfs_ilock(dp, XFS_ILOCK_EXCL);
3448
3449 /*
3450 * Check whether the directory allows new symlinks or not.
3451 */
3452 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
3453 error = XFS_ERROR(EPERM);
3454 goto error_return;
3455 }
3456
3457 /*
3458 * Reserve disk quota : blocks and inode.
3459 */
3460 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
3461 if (error)
3462 goto error_return;
3463
3464 /*
3465 * Check for ability to enter directory entry, if no space reserved.
3466 */
3467 if (resblks == 0 &&
3468 (error = XFS_DIR_CANENTER(mp, tp, dp, link_name, link_namelen)))
3469 goto error_return;
3470 /*
3471 * Initialize the bmap freelist prior to calling either
3472 * bmapi or the directory create code.
3473 */
3474 XFS_BMAP_INIT(&free_list, &first_block);
3475
3476 /*
3477 * Allocate an inode for the symlink.
3478 */
3479 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (vap->va_mode&~S_IFMT),
3480 1, 0, credp, prid, resblks > 0, &ip, NULL);
3481 if (error) {
3482 if (error == ENOSPC)
3483 goto error_return;
3484 goto error1;
3485 }
3486 ITRACE(ip);
3487
3488 VN_HOLD(dir_vp);
3489 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
3490 dp_joined_to_trans = B_TRUE;
3491
3492 /*
3493 * Also attach the dquot(s) to it, if applicable.
3494 */
3495 XFS_QM_DQVOPCREATE(mp, tp, ip, udqp, gdqp);
3496
3497 if (resblks)
3498 resblks -= XFS_IALLOC_SPACE_RES(mp);
3499 /*
3500 * If the symlink will fit into the inode, write it inline.
3501 */
3502 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
3503 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
3504 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
3505 ip->i_d.di_size = pathlen;
3506
3507 /*
3508 * The inode was initially created in extent format.
3509 */
3510 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
3511 ip->i_df.if_flags |= XFS_IFINLINE;
3512
3513 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
3514 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
3515
3516 } else {
3517 first_fsb = 0;
3518 nmaps = SYMLINK_MAPS;
3519
3520 error = xfs_bmapi(tp, ip, first_fsb, fs_blocks,
3521 XFS_BMAPI_WRITE | XFS_BMAPI_METADATA,
3522 &first_block, resblks, mval, &nmaps,
3523 &free_list);
3524 if (error) {
3525 goto error1;
3526 }
3527
3528 if (resblks)
3529 resblks -= fs_blocks;
3530 ip->i_d.di_size = pathlen;
3531 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3532
3533 cur_chunk = target_path;
3534 for (n = 0; n < nmaps; n++) {
3535 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
3536 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
3537 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
3538 BTOBB(byte_cnt), 0);
3539 ASSERT(bp && !XFS_BUF_GETERROR(bp));
3540 if (pathlen < byte_cnt) {
3541 byte_cnt = pathlen;
3542 }
3543 pathlen -= byte_cnt;
3544
3545 memcpy(XFS_BUF_PTR(bp), cur_chunk, byte_cnt);
3546 cur_chunk += byte_cnt;
3547
3548 xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
3549 }
3550 }
3551
3552 /*
3553 * Create the directory entry for the symlink.
3554 */
3555 error = XFS_DIR_CREATENAME(mp, tp, dp, link_name, link_namelen,
3556 ip->i_ino, &first_block, &free_list, resblks);
3557 if (error) {
3558 goto error1;
3559 }
3560 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3561 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
3562
3563 /*
3564 * Bump the in memory version number of the parent directory
3565 * so that other processes accessing it will recognize that
3566 * the directory has changed.
3567 */
3568 dp->i_gen++;
3569
3570 /*
3571 * If this is a synchronous mount, make sure that the
3572 * symlink transaction goes to disk before returning to
3573 * the user.
3574 */
3575 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
3576 xfs_trans_set_sync(tp);
3577 }
3578
3579 /*
3580 * xfs_trans_commit normally decrements the vnode ref count
3581 * when it unlocks the inode. Since we want to return the
3582 * vnode to the caller, we bump the vnode ref count now.
3583 */
3584 IHOLD(ip);
3585
3586 error = xfs_bmap_finish(&tp, &free_list, first_block, &committed);
3587 if (error) {
3588 goto error2;
3589 }
3590 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
3591 XFS_QM_DQRELE(mp, udqp);
3592 XFS_QM_DQRELE(mp, gdqp);
3593
3594 /* Fall through to std_return with error = 0 or errno from
3595 * xfs_trans_commit */
3596std_return:
3597 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, XFS_BHVTOI(dir_bdp),
3598 DM_EVENT_POSTSYMLINK)) {
3599 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTSYMLINK,
3600 dir_vp, DM_RIGHT_NULL,
3601 error ? NULL : XFS_ITOV(ip),
3602 DM_RIGHT_NULL, link_name, target_path,
3603 0, error, 0);
3604 }
3605
3606 if (!error) {
3607 vnode_t *vp;
3608
3609 ASSERT(ip);
3610 vp = XFS_ITOV(ip);
3611 *vpp = vp;
3612 }
3613 return error;
3614
3615 error2:
3616 IRELE(ip);
3617 error1:
3618 xfs_bmap_cancel(&free_list);
3619 cancel_flags |= XFS_TRANS_ABORT;
3620 error_return:
3621 xfs_trans_cancel(tp, cancel_flags);
3622 XFS_QM_DQRELE(mp, udqp);
3623 XFS_QM_DQRELE(mp, gdqp);
3624
3625 if (!dp_joined_to_trans && (dp != NULL)) {
3626 xfs_iunlock(dp, XFS_ILOCK_EXCL);
3627 }
3628
3629 goto std_return;
3630}
3631
3632
3633/*
3634 * xfs_fid2
3635 *
3636 * A fid routine that takes a pointer to a previously allocated
3637 * fid structure (like xfs_fast_fid) but uses a 64 bit inode number.
3638 */
3639STATIC int
3640xfs_fid2(
3641 bhv_desc_t *bdp,
3642 fid_t *fidp)
3643{
3644 xfs_inode_t *ip;
3645 xfs_fid2_t *xfid;
3646
3647 vn_trace_entry(BHV_TO_VNODE(bdp), __FUNCTION__,
3648 (inst_t *)__return_address);
3649 ASSERT(sizeof(fid_t) >= sizeof(xfs_fid2_t));
3650
3651 xfid = (xfs_fid2_t *)fidp;
3652 ip = XFS_BHVTOI(bdp);
3653 xfid->fid_len = sizeof(xfs_fid2_t) - sizeof(xfid->fid_len);
3654 xfid->fid_pad = 0;
3655 /*
3656 * use memcpy because the inode is a long long and there's no
3657 * assurance that xfid->fid_ino is properly aligned.
3658 */
3659 memcpy(&xfid->fid_ino, &ip->i_ino, sizeof(xfid->fid_ino));
3660 xfid->fid_gen = ip->i_d.di_gen;
3661
3662 return 0;
3663}
3664
3665
3666/*
3667 * xfs_rwlock
3668 */
3669int
3670xfs_rwlock(
3671 bhv_desc_t *bdp,
3672 vrwlock_t locktype)
3673{
3674 xfs_inode_t *ip;
3675 vnode_t *vp;
3676
3677 vp = BHV_TO_VNODE(bdp);
Christoph Hellwig0432dab2005-09-02 16:46:51 +10003678 if (VN_ISDIR(vp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 return 1;
3680 ip = XFS_BHVTOI(bdp);
3681 if (locktype == VRWLOCK_WRITE) {
3682 xfs_ilock(ip, XFS_IOLOCK_EXCL);
3683 } else if (locktype == VRWLOCK_TRY_READ) {
3684 return (xfs_ilock_nowait(ip, XFS_IOLOCK_SHARED));
3685 } else if (locktype == VRWLOCK_TRY_WRITE) {
3686 return (xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL));
3687 } else {
3688 ASSERT((locktype == VRWLOCK_READ) ||
3689 (locktype == VRWLOCK_WRITE_DIRECT));
3690 xfs_ilock(ip, XFS_IOLOCK_SHARED);
3691 }
3692
3693 return 1;
3694}
3695
3696
3697/*
3698 * xfs_rwunlock
3699 */
3700void
3701xfs_rwunlock(
3702 bhv_desc_t *bdp,
3703 vrwlock_t locktype)
3704{
3705 xfs_inode_t *ip;
3706 vnode_t *vp;
3707
3708 vp = BHV_TO_VNODE(bdp);
Christoph Hellwig0432dab2005-09-02 16:46:51 +10003709 if (VN_ISDIR(vp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 return;
3711 ip = XFS_BHVTOI(bdp);
3712 if (locktype == VRWLOCK_WRITE) {
3713 /*
3714 * In the write case, we may have added a new entry to
3715 * the reference cache. This might store a pointer to
3716 * an inode to be released in this inode. If it is there,
3717 * clear the pointer and release the inode after unlocking
3718 * this one.
3719 */
3720 xfs_refcache_iunlock(ip, XFS_IOLOCK_EXCL);
3721 } else {
3722 ASSERT((locktype == VRWLOCK_READ) ||
3723 (locktype == VRWLOCK_WRITE_DIRECT));
3724 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
3725 }
3726 return;
3727}
3728
3729STATIC int
3730xfs_inode_flush(
3731 bhv_desc_t *bdp,
3732 int flags)
3733{
3734 xfs_inode_t *ip;
3735 xfs_mount_t *mp;
3736 xfs_inode_log_item_t *iip;
3737 int error = 0;
3738
3739 ip = XFS_BHVTOI(bdp);
3740 mp = ip->i_mount;
3741 iip = ip->i_itemp;
3742
3743 if (XFS_FORCED_SHUTDOWN(mp))
3744 return XFS_ERROR(EIO);
3745
3746 /*
3747 * Bypass inodes which have already been cleaned by
3748 * the inode flush clustering code inside xfs_iflush
3749 */
3750 if ((ip->i_update_core == 0) &&
3751 ((iip == NULL) || !(iip->ili_format.ilf_fields & XFS_ILOG_ALL)))
3752 return 0;
3753
3754 if (flags & FLUSH_LOG) {
3755 if (iip && iip->ili_last_lsn) {
3756 xlog_t *log = mp->m_log;
3757 xfs_lsn_t sync_lsn;
3758 int s, log_flags = XFS_LOG_FORCE;
3759
3760 s = GRANT_LOCK(log);
3761 sync_lsn = log->l_last_sync_lsn;
3762 GRANT_UNLOCK(log, s);
3763
3764 if ((XFS_LSN_CMP(iip->ili_last_lsn, sync_lsn) <= 0))
3765 return 0;
3766
3767 if (flags & FLUSH_SYNC)
3768 log_flags |= XFS_LOG_SYNC;
3769 return xfs_log_force(mp, iip->ili_last_lsn, log_flags);
3770 }
3771 }
3772
3773 /*
3774 * We make this non-blocking if the inode is contended,
3775 * return EAGAIN to indicate to the caller that they
3776 * did not succeed. This prevents the flush path from
3777 * blocking on inodes inside another operation right
3778 * now, they get caught later by xfs_sync.
3779 */
3780 if (flags & FLUSH_INODE) {
3781 int flush_flags;
3782
3783 if (xfs_ipincount(ip))
3784 return EAGAIN;
3785
3786 if (flags & FLUSH_SYNC) {
3787 xfs_ilock(ip, XFS_ILOCK_SHARED);
3788 xfs_iflock(ip);
3789 } else if (xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) {
3790 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip)) {
3791 xfs_iunlock(ip, XFS_ILOCK_SHARED);
3792 return EAGAIN;
3793 }
3794 } else {
3795 return EAGAIN;
3796 }
3797
3798 if (flags & FLUSH_SYNC)
3799 flush_flags = XFS_IFLUSH_SYNC;
3800 else
3801 flush_flags = XFS_IFLUSH_ASYNC;
3802
3803 error = xfs_iflush(ip, flush_flags);
3804 xfs_iunlock(ip, XFS_ILOCK_SHARED);
3805 }
3806
3807 return error;
3808}
3809
3810
3811int
3812xfs_set_dmattrs (
3813 bhv_desc_t *bdp,
3814 u_int evmask,
3815 u_int16_t state,
3816 cred_t *credp)
3817{
3818 xfs_inode_t *ip;
3819 xfs_trans_t *tp;
3820 xfs_mount_t *mp;
3821 int error;
3822
3823 if (!capable(CAP_SYS_ADMIN))
3824 return XFS_ERROR(EPERM);
3825
3826 ip = XFS_BHVTOI(bdp);
3827 mp = ip->i_mount;
3828
3829 if (XFS_FORCED_SHUTDOWN(mp))
3830 return XFS_ERROR(EIO);
3831
3832 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
3833 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
3834 if (error) {
3835 xfs_trans_cancel(tp, 0);
3836 return error;
3837 }
3838 xfs_ilock(ip, XFS_ILOCK_EXCL);
3839 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3840
3841 ip->i_iocore.io_dmevmask = ip->i_d.di_dmevmask = evmask;
3842 ip->i_iocore.io_dmstate = ip->i_d.di_dmstate = state;
3843
3844 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3845 IHOLD(ip);
3846 error = xfs_trans_commit(tp, 0, NULL);
3847
3848 return error;
3849}
3850
3851
3852/*
3853 * xfs_reclaim
3854 */
3855STATIC int
3856xfs_reclaim(
3857 bhv_desc_t *bdp)
3858{
3859 xfs_inode_t *ip;
3860 vnode_t *vp;
3861
3862 vp = BHV_TO_VNODE(bdp);
3863 ip = XFS_BHVTOI(bdp);
3864
3865 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
3866
3867 ASSERT(!VN_MAPPED(vp));
3868
3869 /* bad inode, get out here ASAP */
3870 if (VN_BAD(vp)) {
3871 xfs_ireclaim(ip);
3872 return 0;
3873 }
3874
Christoph Hellwig51c91ed2005-09-02 16:58:38 +10003875 vn_iowait(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876
Christoph Hellwig51c91ed2005-09-02 16:58:38 +10003877 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
3878 ASSERT(VN_CACHED(vp) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879
3880 /* If we have nothing to flush with this inode then complete the
3881 * teardown now, otherwise break the link between the xfs inode
3882 * and the linux inode and clean up the xfs inode later. This
3883 * avoids flushing the inode to disk during the delete operation
3884 * itself.
3885 */
3886 if (!ip->i_update_core && (ip->i_itemp == NULL)) {
3887 xfs_ilock(ip, XFS_ILOCK_EXCL);
3888 xfs_iflock(ip);
3889 return xfs_finish_reclaim(ip, 1, XFS_IFLUSH_DELWRI_ELSE_SYNC);
3890 } else {
3891 xfs_mount_t *mp = ip->i_mount;
3892
3893 /* Protect sync from us */
3894 XFS_MOUNT_ILOCK(mp);
3895 vn_bhv_remove(VN_BHV_HEAD(vp), XFS_ITOBHV(ip));
3896 list_add_tail(&ip->i_reclaim, &mp->m_del_inodes);
3897 ip->i_flags |= XFS_IRECLAIMABLE;
3898 XFS_MOUNT_IUNLOCK(mp);
3899 }
3900 return 0;
3901}
3902
3903int
3904xfs_finish_reclaim(
3905 xfs_inode_t *ip,
3906 int locked,
3907 int sync_mode)
3908{
3909 xfs_ihash_t *ih = ip->i_hash;
3910 vnode_t *vp = XFS_ITOV_NULL(ip);
3911 int error;
3912
3913 if (vp && VN_BAD(vp))
3914 goto reclaim;
3915
3916 /* The hash lock here protects a thread in xfs_iget_core from
3917 * racing with us on linking the inode back with a vnode.
3918 * Once we have the XFS_IRECLAIM flag set it will not touch
3919 * us.
3920 */
3921 write_lock(&ih->ih_lock);
3922 if ((ip->i_flags & XFS_IRECLAIM) ||
3923 (!(ip->i_flags & XFS_IRECLAIMABLE) && vp == NULL)) {
3924 write_unlock(&ih->ih_lock);
3925 if (locked) {
3926 xfs_ifunlock(ip);
3927 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3928 }
3929 return(1);
3930 }
3931 ip->i_flags |= XFS_IRECLAIM;
3932 write_unlock(&ih->ih_lock);
3933
3934 /*
3935 * If the inode is still dirty, then flush it out. If the inode
3936 * is not in the AIL, then it will be OK to flush it delwri as
3937 * long as xfs_iflush() does not keep any references to the inode.
3938 * We leave that decision up to xfs_iflush() since it has the
3939 * knowledge of whether it's OK to simply do a delwri flush of
3940 * the inode or whether we need to wait until the inode is
3941 * pulled from the AIL.
3942 * We get the flush lock regardless, though, just to make sure
3943 * we don't free it while it is being flushed.
3944 */
3945 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
3946 if (!locked) {
3947 xfs_ilock(ip, XFS_ILOCK_EXCL);
3948 xfs_iflock(ip);
3949 }
3950
3951 if (ip->i_update_core ||
3952 ((ip->i_itemp != NULL) &&
3953 (ip->i_itemp->ili_format.ilf_fields != 0))) {
3954 error = xfs_iflush(ip, sync_mode);
3955 /*
3956 * If we hit an error, typically because of filesystem
3957 * shutdown, we don't need to let vn_reclaim to know
3958 * because we're gonna reclaim the inode anyway.
3959 */
3960 if (error) {
3961 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3962 goto reclaim;
3963 }
3964 xfs_iflock(ip); /* synchronize with xfs_iflush_done */
3965 }
3966
3967 ASSERT(ip->i_update_core == 0);
3968 ASSERT(ip->i_itemp == NULL ||
3969 ip->i_itemp->ili_format.ilf_fields == 0);
3970 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3971 } else if (locked) {
3972 /*
3973 * We are not interested in doing an iflush if we're
3974 * in the process of shutting down the filesystem forcibly.
3975 * So, just reclaim the inode.
3976 */
3977 xfs_ifunlock(ip);
3978 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3979 }
3980
3981 reclaim:
3982 xfs_ireclaim(ip);
3983 return 0;
3984}
3985
3986int
3987xfs_finish_reclaim_all(xfs_mount_t *mp, int noblock)
3988{
3989 int purged;
3990 xfs_inode_t *ip, *n;
3991 int done = 0;
3992
3993 while (!done) {
3994 purged = 0;
3995 XFS_MOUNT_ILOCK(mp);
3996 list_for_each_entry_safe(ip, n, &mp->m_del_inodes, i_reclaim) {
3997 if (noblock) {
3998 if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL) == 0)
3999 continue;
4000 if (xfs_ipincount(ip) ||
4001 !xfs_iflock_nowait(ip)) {
4002 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4003 continue;
4004 }
4005 }
4006 XFS_MOUNT_IUNLOCK(mp);
4007 xfs_finish_reclaim(ip, noblock,
4008 XFS_IFLUSH_DELWRI_ELSE_ASYNC);
4009 purged = 1;
4010 break;
4011 }
4012
4013 done = !purged;
4014 }
4015
4016 XFS_MOUNT_IUNLOCK(mp);
4017 return 0;
4018}
4019
4020/*
4021 * xfs_alloc_file_space()
4022 * This routine allocates disk space for the given file.
4023 *
4024 * If alloc_type == 0, this request is for an ALLOCSP type
4025 * request which will change the file size. In this case, no
4026 * DMAPI event will be generated by the call. A TRUNCATE event
4027 * will be generated later by xfs_setattr.
4028 *
4029 * If alloc_type != 0, this request is for a RESVSP type
4030 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
4031 * lower block boundary byte address is less than the file's
4032 * length.
4033 *
4034 * RETURNS:
4035 * 0 on success
4036 * errno on error
4037 *
4038 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10004039STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040xfs_alloc_file_space(
4041 xfs_inode_t *ip,
4042 xfs_off_t offset,
4043 xfs_off_t len,
4044 int alloc_type,
4045 int attr_flags)
4046{
4047 xfs_filblks_t allocated_fsb;
4048 xfs_filblks_t allocatesize_fsb;
4049 int committed;
4050 xfs_off_t count;
4051 xfs_filblks_t datablocks;
4052 int error;
4053 xfs_fsblock_t firstfsb;
4054 xfs_bmap_free_t free_list;
4055 xfs_bmbt_irec_t *imapp;
4056 xfs_bmbt_irec_t imaps[1];
4057 xfs_mount_t *mp;
4058 int numrtextents;
4059 int reccount;
4060 uint resblks;
4061 int rt;
4062 int rtextsize;
4063 xfs_fileoff_t startoffset_fsb;
4064 xfs_trans_t *tp;
4065 int xfs_bmapi_flags;
4066
4067 vn_trace_entry(XFS_ITOV(ip), __FUNCTION__, (inst_t *)__return_address);
4068 mp = ip->i_mount;
4069
4070 if (XFS_FORCED_SHUTDOWN(mp))
4071 return XFS_ERROR(EIO);
4072
4073 /*
4074 * determine if this is a realtime file
4075 */
4076 if ((rt = XFS_IS_REALTIME_INODE(ip)) != 0) {
4077 if (ip->i_d.di_extsize)
4078 rtextsize = ip->i_d.di_extsize;
4079 else
4080 rtextsize = mp->m_sb.sb_rextsize;
4081 } else
4082 rtextsize = 0;
4083
4084 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
4085 return error;
4086
4087 if (len <= 0)
4088 return XFS_ERROR(EINVAL);
4089
4090 count = len;
4091 error = 0;
4092 imapp = &imaps[0];
4093 reccount = 1;
4094 xfs_bmapi_flags = XFS_BMAPI_WRITE | (alloc_type ? XFS_BMAPI_PREALLOC : 0);
4095 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
4096 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
4097
4098 /* Generate a DMAPI event if needed. */
4099 if (alloc_type != 0 && offset < ip->i_d.di_size &&
4100 (attr_flags&ATTR_DMI) == 0 &&
4101 DM_EVENT_ENABLED(XFS_MTOVFS(mp), ip, DM_EVENT_WRITE)) {
4102 xfs_off_t end_dmi_offset;
4103
4104 end_dmi_offset = offset+len;
4105 if (end_dmi_offset > ip->i_d.di_size)
4106 end_dmi_offset = ip->i_d.di_size;
4107 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, XFS_ITOV(ip),
4108 offset, end_dmi_offset - offset,
4109 0, NULL);
4110 if (error)
4111 return(error);
4112 }
4113
4114 /*
4115 * allocate file space until done or until there is an error
4116 */
4117retry:
4118 while (allocatesize_fsb && !error) {
4119 /*
4120 * determine if reserving space on
4121 * the data or realtime partition.
4122 */
4123 if (rt) {
4124 xfs_fileoff_t s, e;
4125
4126 s = startoffset_fsb;
4127 do_div(s, rtextsize);
4128 s *= rtextsize;
4129 e = roundup_64(startoffset_fsb + allocatesize_fsb,
4130 rtextsize);
4131 numrtextents = (int)(e - s) / mp->m_sb.sb_rextsize;
4132 datablocks = 0;
4133 } else {
4134 datablocks = allocatesize_fsb;
4135 numrtextents = 0;
4136 }
4137
4138 /*
4139 * allocate and setup the transaction
4140 */
4141 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
4142 resblks = XFS_DIOSTRAT_SPACE_RES(mp, datablocks);
4143 error = xfs_trans_reserve(tp,
4144 resblks,
4145 XFS_WRITE_LOG_RES(mp),
4146 numrtextents,
4147 XFS_TRANS_PERM_LOG_RES,
4148 XFS_WRITE_LOG_COUNT);
4149
4150 /*
4151 * check for running out of space
4152 */
4153 if (error) {
4154 /*
4155 * Free the transaction structure.
4156 */
4157 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
4158 xfs_trans_cancel(tp, 0);
4159 break;
4160 }
4161 xfs_ilock(ip, XFS_ILOCK_EXCL);
Nathan Scott06d10dd2005-06-21 15:48:47 +10004162 error = XFS_TRANS_RESERVE_QUOTA(mp, tp,
4163 ip->i_udquot, ip->i_gdquot, resblks, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 if (error)
4165 goto error1;
4166
4167 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
4168 xfs_trans_ihold(tp, ip);
4169
4170 /*
4171 * issue the bmapi() call to allocate the blocks
4172 */
4173 XFS_BMAP_INIT(&free_list, &firstfsb);
4174 error = xfs_bmapi(tp, ip, startoffset_fsb,
4175 allocatesize_fsb, xfs_bmapi_flags,
4176 &firstfsb, 0, imapp, &reccount,
4177 &free_list);
4178 if (error) {
4179 goto error0;
4180 }
4181
4182 /*
4183 * complete the transaction
4184 */
4185 error = xfs_bmap_finish(&tp, &free_list, firstfsb, &committed);
4186 if (error) {
4187 goto error0;
4188 }
4189
4190 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
4191 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4192 if (error) {
4193 break;
4194 }
4195
4196 allocated_fsb = imapp->br_blockcount;
4197
4198 if (reccount == 0) {
4199 error = XFS_ERROR(ENOSPC);
4200 break;
4201 }
4202
4203 startoffset_fsb += allocated_fsb;
4204 allocatesize_fsb -= allocated_fsb;
4205 }
4206dmapi_enospc_check:
4207 if (error == ENOSPC && (attr_flags&ATTR_DMI) == 0 &&
4208 DM_EVENT_ENABLED(XFS_MTOVFS(mp), ip, DM_EVENT_NOSPACE)) {
4209
4210 error = XFS_SEND_NAMESP(mp, DM_EVENT_NOSPACE,
4211 XFS_ITOV(ip), DM_RIGHT_NULL,
4212 XFS_ITOV(ip), DM_RIGHT_NULL,
4213 NULL, NULL, 0, 0, 0); /* Delay flag intentionally unused */
4214 if (error == 0)
4215 goto retry; /* Maybe DMAPI app. has made space */
4216 /* else fall through with error from XFS_SEND_DATA */
4217 }
4218
4219 return error;
4220
4221 error0:
4222 xfs_bmap_cancel(&free_list);
4223 error1:
4224 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
4225 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4226 goto dmapi_enospc_check;
4227}
4228
4229/*
4230 * Zero file bytes between startoff and endoff inclusive.
4231 * The iolock is held exclusive and no blocks are buffered.
4232 */
4233STATIC int
4234xfs_zero_remaining_bytes(
4235 xfs_inode_t *ip,
4236 xfs_off_t startoff,
4237 xfs_off_t endoff)
4238{
4239 xfs_bmbt_irec_t imap;
4240 xfs_fileoff_t offset_fsb;
4241 xfs_off_t lastoffset;
4242 xfs_off_t offset;
4243 xfs_buf_t *bp;
4244 xfs_mount_t *mp = ip->i_mount;
4245 int nimap;
4246 int error = 0;
4247
4248 bp = xfs_buf_get_noaddr(mp->m_sb.sb_blocksize,
4249 ip->i_d.di_flags & XFS_DIFLAG_REALTIME ?
4250 mp->m_rtdev_targp : mp->m_ddev_targp);
4251
4252 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
4253 offset_fsb = XFS_B_TO_FSBT(mp, offset);
4254 nimap = 1;
4255 error = xfs_bmapi(NULL, ip, offset_fsb, 1, 0, NULL, 0, &imap,
4256 &nimap, NULL);
4257 if (error || nimap < 1)
4258 break;
4259 ASSERT(imap.br_blockcount >= 1);
4260 ASSERT(imap.br_startoff == offset_fsb);
4261 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
4262 if (lastoffset > endoff)
4263 lastoffset = endoff;
4264 if (imap.br_startblock == HOLESTARTBLOCK)
4265 continue;
4266 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
4267 if (imap.br_state == XFS_EXT_UNWRITTEN)
4268 continue;
4269 XFS_BUF_UNDONE(bp);
4270 XFS_BUF_UNWRITE(bp);
4271 XFS_BUF_READ(bp);
4272 XFS_BUF_SET_ADDR(bp, XFS_FSB_TO_DB(ip, imap.br_startblock));
4273 xfsbdstrat(mp, bp);
4274 if ((error = xfs_iowait(bp))) {
4275 xfs_ioerror_alert("xfs_zero_remaining_bytes(read)",
4276 mp, bp, XFS_BUF_ADDR(bp));
4277 break;
4278 }
4279 memset(XFS_BUF_PTR(bp) +
4280 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
4281 0, lastoffset - offset + 1);
4282 XFS_BUF_UNDONE(bp);
4283 XFS_BUF_UNREAD(bp);
4284 XFS_BUF_WRITE(bp);
4285 xfsbdstrat(mp, bp);
4286 if ((error = xfs_iowait(bp))) {
4287 xfs_ioerror_alert("xfs_zero_remaining_bytes(write)",
4288 mp, bp, XFS_BUF_ADDR(bp));
4289 break;
4290 }
4291 }
4292 xfs_buf_free(bp);
4293 return error;
4294}
4295
4296/*
4297 * xfs_free_file_space()
4298 * This routine frees disk space for the given file.
4299 *
4300 * This routine is only called by xfs_change_file_space
4301 * for an UNRESVSP type call.
4302 *
4303 * RETURNS:
4304 * 0 on success
4305 * errno on error
4306 *
4307 */
4308STATIC int
4309xfs_free_file_space(
4310 xfs_inode_t *ip,
4311 xfs_off_t offset,
4312 xfs_off_t len,
4313 int attr_flags)
4314{
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10004315 vnode_t *vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 int committed;
4317 int done;
4318 xfs_off_t end_dmi_offset;
4319 xfs_fileoff_t endoffset_fsb;
4320 int error;
4321 xfs_fsblock_t firstfsb;
4322 xfs_bmap_free_t free_list;
4323 xfs_off_t ilen;
4324 xfs_bmbt_irec_t imap;
4325 xfs_off_t ioffset;
4326 xfs_extlen_t mod=0;
4327 xfs_mount_t *mp;
4328 int nimap;
4329 uint resblks;
4330 int rounding;
4331 int rt;
4332 xfs_fileoff_t startoffset_fsb;
4333 xfs_trans_t *tp;
Dean Roehrich5fcbab32005-05-05 13:27:19 -07004334 int need_iolock = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10004336 vp = XFS_ITOV(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 mp = ip->i_mount;
4338
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10004339 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
4340
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
4342 return error;
4343
4344 error = 0;
4345 if (len <= 0) /* if nothing being freed */
4346 return error;
4347 rt = (ip->i_d.di_flags & XFS_DIFLAG_REALTIME);
4348 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
4349 end_dmi_offset = offset + len;
4350 endoffset_fsb = XFS_B_TO_FSBT(mp, end_dmi_offset);
4351
4352 if (offset < ip->i_d.di_size &&
4353 (attr_flags & ATTR_DMI) == 0 &&
4354 DM_EVENT_ENABLED(XFS_MTOVFS(mp), ip, DM_EVENT_WRITE)) {
4355 if (end_dmi_offset > ip->i_d.di_size)
4356 end_dmi_offset = ip->i_d.di_size;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10004357 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, vp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 offset, end_dmi_offset - offset,
4359 AT_DELAY_FLAG(attr_flags), NULL);
4360 if (error)
4361 return(error);
4362 }
4363
Dean Roehrich5fcbab32005-05-05 13:27:19 -07004364 ASSERT(attr_flags & ATTR_NOLOCK ? attr_flags & ATTR_DMI : 1);
4365 if (attr_flags & ATTR_NOLOCK)
4366 need_iolock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 if (need_iolock)
4368 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Dean Roehrich5fcbab32005-05-05 13:27:19 -07004369
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 rounding = MAX((__uint8_t)(1 << mp->m_sb.sb_blocklog),
4371 (__uint8_t)NBPP);
4372 ilen = len + (offset & (rounding - 1));
4373 ioffset = offset & ~(rounding - 1);
4374 if (ilen & (rounding - 1))
4375 ilen = (ilen + rounding) & ~(rounding - 1);
Christoph Hellwigbd5a8762005-06-21 15:47:39 +10004376
4377 if (VN_CACHED(vp) != 0) {
4378 xfs_inval_cached_trace(&ip->i_iocore, ioffset, -1,
4379 ctooff(offtoct(ioffset)), -1);
4380 VOP_FLUSHINVAL_PAGES(vp, ctooff(offtoct(ioffset)),
4381 -1, FI_REMAPF_LOCKED);
4382 }
4383
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 /*
4385 * Need to zero the stuff we're not freeing, on disk.
4386 * If its a realtime file & can't use unwritten extents then we
4387 * actually need to zero the extent edges. Otherwise xfs_bunmapi
4388 * will take care of it for us.
4389 */
4390 if (rt && !XFS_SB_VERSION_HASEXTFLGBIT(&mp->m_sb)) {
4391 nimap = 1;
4392 error = xfs_bmapi(NULL, ip, startoffset_fsb, 1, 0, NULL, 0,
4393 &imap, &nimap, NULL);
4394 if (error)
4395 goto out_unlock_iolock;
4396 ASSERT(nimap == 0 || nimap == 1);
4397 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
4398 xfs_daddr_t block;
4399
4400 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
4401 block = imap.br_startblock;
4402 mod = do_div(block, mp->m_sb.sb_rextsize);
4403 if (mod)
4404 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
4405 }
4406 nimap = 1;
4407 error = xfs_bmapi(NULL, ip, endoffset_fsb - 1, 1, 0, NULL, 0,
4408 &imap, &nimap, NULL);
4409 if (error)
4410 goto out_unlock_iolock;
4411 ASSERT(nimap == 0 || nimap == 1);
4412 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
4413 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
4414 mod++;
4415 if (mod && (mod != mp->m_sb.sb_rextsize))
4416 endoffset_fsb -= mod;
4417 }
4418 }
4419 if ((done = (endoffset_fsb <= startoffset_fsb)))
4420 /*
4421 * One contiguous piece to clear
4422 */
4423 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
4424 else {
4425 /*
4426 * Some full blocks, possibly two pieces to clear
4427 */
4428 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
4429 error = xfs_zero_remaining_bytes(ip, offset,
4430 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
4431 if (!error &&
4432 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
4433 error = xfs_zero_remaining_bytes(ip,
4434 XFS_FSB_TO_B(mp, endoffset_fsb),
4435 offset + len - 1);
4436 }
4437
4438 /*
4439 * free file space until done or until there is an error
4440 */
4441 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
4442 while (!error && !done) {
4443
4444 /*
4445 * allocate and setup the transaction
4446 */
4447 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
4448 error = xfs_trans_reserve(tp,
4449 resblks,
4450 XFS_WRITE_LOG_RES(mp),
4451 0,
4452 XFS_TRANS_PERM_LOG_RES,
4453 XFS_WRITE_LOG_COUNT);
4454
4455 /*
4456 * check for running out of space
4457 */
4458 if (error) {
4459 /*
4460 * Free the transaction structure.
4461 */
4462 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
4463 xfs_trans_cancel(tp, 0);
4464 break;
4465 }
4466 xfs_ilock(ip, XFS_ILOCK_EXCL);
4467 error = XFS_TRANS_RESERVE_QUOTA(mp, tp,
4468 ip->i_udquot, ip->i_gdquot, resblks, 0, rt ?
4469 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4470 if (error)
4471 goto error1;
4472
4473 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
4474 xfs_trans_ihold(tp, ip);
4475
4476 /*
4477 * issue the bunmapi() call to free the blocks
4478 */
4479 XFS_BMAP_INIT(&free_list, &firstfsb);
4480 error = xfs_bunmapi(tp, ip, startoffset_fsb,
4481 endoffset_fsb - startoffset_fsb,
4482 0, 2, &firstfsb, &free_list, &done);
4483 if (error) {
4484 goto error0;
4485 }
4486
4487 /*
4488 * complete the transaction
4489 */
4490 error = xfs_bmap_finish(&tp, &free_list, firstfsb, &committed);
4491 if (error) {
4492 goto error0;
4493 }
4494
4495 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
4496 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4497 }
4498
4499 out_unlock_iolock:
4500 if (need_iolock)
4501 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
4502 return error;
4503
4504 error0:
4505 xfs_bmap_cancel(&free_list);
4506 error1:
4507 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
4508 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
4509 XFS_ILOCK_EXCL);
4510 return error;
4511}
4512
4513/*
4514 * xfs_change_file_space()
4515 * This routine allocates or frees disk space for the given file.
4516 * The user specified parameters are checked for alignment and size
4517 * limitations.
4518 *
4519 * RETURNS:
4520 * 0 on success
4521 * errno on error
4522 *
4523 */
4524int
4525xfs_change_file_space(
4526 bhv_desc_t *bdp,
4527 int cmd,
4528 xfs_flock64_t *bf,
4529 xfs_off_t offset,
4530 cred_t *credp,
4531 int attr_flags)
4532{
4533 int clrprealloc;
4534 int error;
4535 xfs_fsize_t fsize;
4536 xfs_inode_t *ip;
4537 xfs_mount_t *mp;
4538 int setprealloc;
4539 xfs_off_t startoffset;
4540 xfs_off_t llen;
4541 xfs_trans_t *tp;
4542 vattr_t va;
4543 vnode_t *vp;
4544
4545 vp = BHV_TO_VNODE(bdp);
4546 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
4547
4548 ip = XFS_BHVTOI(bdp);
4549 mp = ip->i_mount;
4550
4551 /*
4552 * must be a regular file and have write permission
4553 */
Christoph Hellwig0432dab2005-09-02 16:46:51 +10004554 if (!VN_ISREG(vp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 return XFS_ERROR(EINVAL);
4556
4557 xfs_ilock(ip, XFS_ILOCK_SHARED);
4558
4559 if ((error = xfs_iaccess(ip, S_IWUSR, credp))) {
4560 xfs_iunlock(ip, XFS_ILOCK_SHARED);
4561 return error;
4562 }
4563
4564 xfs_iunlock(ip, XFS_ILOCK_SHARED);
4565
4566 switch (bf->l_whence) {
4567 case 0: /*SEEK_SET*/
4568 break;
4569 case 1: /*SEEK_CUR*/
4570 bf->l_start += offset;
4571 break;
4572 case 2: /*SEEK_END*/
4573 bf->l_start += ip->i_d.di_size;
4574 break;
4575 default:
4576 return XFS_ERROR(EINVAL);
4577 }
4578
4579 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
4580
4581 if ( (bf->l_start < 0)
4582 || (bf->l_start > XFS_MAXIOFFSET(mp))
4583 || (bf->l_start + llen < 0)
4584 || (bf->l_start + llen > XFS_MAXIOFFSET(mp)))
4585 return XFS_ERROR(EINVAL);
4586
4587 bf->l_whence = 0;
4588
4589 startoffset = bf->l_start;
4590 fsize = ip->i_d.di_size;
4591
4592 /*
4593 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
4594 * file space.
4595 * These calls do NOT zero the data space allocated to the file,
4596 * nor do they change the file size.
4597 *
4598 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
4599 * space.
4600 * These calls cause the new file data to be zeroed and the file
4601 * size to be changed.
4602 */
4603 setprealloc = clrprealloc = 0;
4604
4605 switch (cmd) {
4606 case XFS_IOC_RESVSP:
4607 case XFS_IOC_RESVSP64:
4608 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
4609 1, attr_flags);
4610 if (error)
4611 return error;
4612 setprealloc = 1;
4613 break;
4614
4615 case XFS_IOC_UNRESVSP:
4616 case XFS_IOC_UNRESVSP64:
4617 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
4618 attr_flags)))
4619 return error;
4620 break;
4621
4622 case XFS_IOC_ALLOCSP:
4623 case XFS_IOC_ALLOCSP64:
4624 case XFS_IOC_FREESP:
4625 case XFS_IOC_FREESP64:
4626 if (startoffset > fsize) {
4627 error = xfs_alloc_file_space(ip, fsize,
4628 startoffset - fsize, 0, attr_flags);
4629 if (error)
4630 break;
4631 }
4632
4633 va.va_mask = XFS_AT_SIZE;
4634 va.va_size = startoffset;
4635
4636 error = xfs_setattr(bdp, &va, attr_flags, credp);
4637
4638 if (error)
4639 return error;
4640
4641 clrprealloc = 1;
4642 break;
4643
4644 default:
4645 ASSERT(0);
4646 return XFS_ERROR(EINVAL);
4647 }
4648
4649 /*
4650 * update the inode timestamp, mode, and prealloc flag bits
4651 */
4652 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
4653
4654 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
4655 0, 0, 0))) {
4656 /* ASSERT(0); */
4657 xfs_trans_cancel(tp, 0);
4658 return error;
4659 }
4660
4661 xfs_ilock(ip, XFS_ILOCK_EXCL);
4662
4663 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
4664 xfs_trans_ihold(tp, ip);
4665
4666 if ((attr_flags & ATTR_DMI) == 0) {
4667 ip->i_d.di_mode &= ~S_ISUID;
4668
4669 /*
4670 * Note that we don't have to worry about mandatory
4671 * file locking being disabled here because we only
4672 * clear the S_ISGID bit if the Group execute bit is
4673 * on, but if it was on then mandatory locking wouldn't
4674 * have been enabled.
4675 */
4676 if (ip->i_d.di_mode & S_IXGRP)
4677 ip->i_d.di_mode &= ~S_ISGID;
4678
4679 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
4680 }
4681 if (setprealloc)
4682 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
4683 else if (clrprealloc)
4684 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
4685
4686 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
4687 xfs_trans_set_sync(tp);
4688
4689 error = xfs_trans_commit(tp, 0, NULL);
4690
4691 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4692
4693 return error;
4694}
4695
4696vnodeops_t xfs_vnodeops = {
4697 BHV_IDENTITY_INIT(VN_BHV_XFS,VNODE_POSITION_XFS),
4698 .vop_open = xfs_open,
4699 .vop_read = xfs_read,
4700#ifdef HAVE_SENDFILE
4701 .vop_sendfile = xfs_sendfile,
4702#endif
4703 .vop_write = xfs_write,
4704 .vop_ioctl = xfs_ioctl,
4705 .vop_getattr = xfs_getattr,
4706 .vop_setattr = xfs_setattr,
4707 .vop_access = xfs_access,
4708 .vop_lookup = xfs_lookup,
4709 .vop_create = xfs_create,
4710 .vop_remove = xfs_remove,
4711 .vop_link = xfs_link,
4712 .vop_rename = xfs_rename,
4713 .vop_mkdir = xfs_mkdir,
4714 .vop_rmdir = xfs_rmdir,
4715 .vop_readdir = xfs_readdir,
4716 .vop_symlink = xfs_symlink,
4717 .vop_readlink = xfs_readlink,
4718 .vop_fsync = xfs_fsync,
4719 .vop_inactive = xfs_inactive,
4720 .vop_fid2 = xfs_fid2,
4721 .vop_rwlock = xfs_rwlock,
4722 .vop_rwunlock = xfs_rwunlock,
4723 .vop_bmap = xfs_bmap,
4724 .vop_reclaim = xfs_reclaim,
4725 .vop_attr_get = xfs_attr_get,
4726 .vop_attr_set = xfs_attr_set,
4727 .vop_attr_remove = xfs_attr_remove,
4728 .vop_attr_list = xfs_attr_list,
4729 .vop_link_removed = (vop_link_removed_t)fs_noval,
4730 .vop_vnode_change = (vop_vnode_change_t)fs_noval,
4731 .vop_tosspages = fs_tosspages,
4732 .vop_flushinval_pages = fs_flushinval_pages,
4733 .vop_flush_pages = fs_flush_pages,
4734 .vop_release = xfs_release,
4735 .vop_iflush = xfs_inode_flush,
4736};