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