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