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