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