xfs: turn off sign warnings
[safe/jmp/linux-2.6] / fs / xfs / xfs_vnodeops.c
1 /*
2  * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18
19 #include "xfs.h"
20 #include "xfs_fs.h"
21 #include "xfs_types.h"
22 #include "xfs_bit.h"
23 #include "xfs_log.h"
24 #include "xfs_inum.h"
25 #include "xfs_trans.h"
26 #include "xfs_sb.h"
27 #include "xfs_ag.h"
28 #include "xfs_dir2.h"
29 #include "xfs_dmapi.h"
30 #include "xfs_mount.h"
31 #include "xfs_da_btree.h"
32 #include "xfs_bmap_btree.h"
33 #include "xfs_alloc_btree.h"
34 #include "xfs_ialloc_btree.h"
35 #include "xfs_dir2_sf.h"
36 #include "xfs_attr_sf.h"
37 #include "xfs_dinode.h"
38 #include "xfs_inode.h"
39 #include "xfs_inode_item.h"
40 #include "xfs_itable.h"
41 #include "xfs_btree.h"
42 #include "xfs_ialloc.h"
43 #include "xfs_alloc.h"
44 #include "xfs_bmap.h"
45 #include "xfs_acl.h"
46 #include "xfs_attr.h"
47 #include "xfs_rw.h"
48 #include "xfs_error.h"
49 #include "xfs_quota.h"
50 #include "xfs_utils.h"
51 #include "xfs_rtalloc.h"
52 #include "xfs_trans_space.h"
53 #include "xfs_log_priv.h"
54 #include "xfs_filestream.h"
55 #include "xfs_vnodeops.h"
56 #include "xfs_trace.h"
57
58 int
59 xfs_setattr(
60         struct xfs_inode        *ip,
61         struct iattr            *iattr,
62         int                     flags)
63 {
64         xfs_mount_t             *mp = ip->i_mount;
65         struct inode            *inode = VFS_I(ip);
66         int                     mask = iattr->ia_valid;
67         xfs_trans_t             *tp;
68         int                     code;
69         uint                    lock_flags;
70         uint                    commit_flags=0;
71         uid_t                   uid=0, iuid=0;
72         gid_t                   gid=0, igid=0;
73         struct xfs_dquot        *udqp, *gdqp, *olddquot1, *olddquot2;
74         int                     need_iolock = 1;
75
76         xfs_itrace_entry(ip);
77
78         if (mp->m_flags & XFS_MOUNT_RDONLY)
79                 return XFS_ERROR(EROFS);
80
81         if (XFS_FORCED_SHUTDOWN(mp))
82                 return XFS_ERROR(EIO);
83
84         code = -inode_change_ok(inode, iattr);
85         if (code)
86                 return code;
87
88         olddquot1 = olddquot2 = NULL;
89         udqp = gdqp = NULL;
90
91         /*
92          * If disk quotas is on, we make sure that the dquots do exist on disk,
93          * before we start any other transactions. Trying to do this later
94          * is messy. We don't care to take a readlock to look at the ids
95          * in inode here, because we can't hold it across the trans_reserve.
96          * If the IDs do change before we take the ilock, we're covered
97          * because the i_*dquot fields will get updated anyway.
98          */
99         if (XFS_IS_QUOTA_ON(mp) && (mask & (ATTR_UID|ATTR_GID))) {
100                 uint    qflags = 0;
101
102                 if ((mask & ATTR_UID) && XFS_IS_UQUOTA_ON(mp)) {
103                         uid = iattr->ia_uid;
104                         qflags |= XFS_QMOPT_UQUOTA;
105                 } else {
106                         uid = ip->i_d.di_uid;
107                 }
108                 if ((mask & ATTR_GID) && XFS_IS_GQUOTA_ON(mp)) {
109                         gid = iattr->ia_gid;
110                         qflags |= XFS_QMOPT_GQUOTA;
111                 }  else {
112                         gid = ip->i_d.di_gid;
113                 }
114
115                 /*
116                  * We take a reference when we initialize udqp and gdqp,
117                  * so it is important that we never blindly double trip on
118                  * the same variable. See xfs_create() for an example.
119                  */
120                 ASSERT(udqp == NULL);
121                 ASSERT(gdqp == NULL);
122                 code = xfs_qm_vop_dqalloc(ip, uid, gid, ip->i_d.di_projid,
123                                          qflags, &udqp, &gdqp);
124                 if (code)
125                         return code;
126         }
127
128         /*
129          * For the other attributes, we acquire the inode lock and
130          * first do an error checking pass.
131          */
132         tp = NULL;
133         lock_flags = XFS_ILOCK_EXCL;
134         if (flags & XFS_ATTR_NOLOCK)
135                 need_iolock = 0;
136         if (!(mask & ATTR_SIZE)) {
137                 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
138                 commit_flags = 0;
139                 code = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES(mp),
140                                          0, 0, 0);
141                 if (code) {
142                         lock_flags = 0;
143                         goto error_return;
144                 }
145         } else {
146                 if (DM_EVENT_ENABLED(ip, DM_EVENT_TRUNCATE) &&
147                     !(flags & XFS_ATTR_DMI)) {
148                         int dmflags = AT_DELAY_FLAG(flags) | DM_SEM_FLAG_WR;
149                         code = XFS_SEND_DATA(mp, DM_EVENT_TRUNCATE, ip,
150                                 iattr->ia_size, 0, dmflags, NULL);
151                         if (code) {
152                                 lock_flags = 0;
153                                 goto error_return;
154                         }
155                 }
156                 if (need_iolock)
157                         lock_flags |= XFS_IOLOCK_EXCL;
158         }
159
160         xfs_ilock(ip, lock_flags);
161
162         /*
163          * Change file ownership.  Must be the owner or privileged.
164          */
165         if (mask & (ATTR_UID|ATTR_GID)) {
166                 /*
167                  * These IDs could have changed since we last looked at them.
168                  * But, we're assured that if the ownership did change
169                  * while we didn't have the inode locked, inode's dquot(s)
170                  * would have changed also.
171                  */
172                 iuid = ip->i_d.di_uid;
173                 igid = ip->i_d.di_gid;
174                 gid = (mask & ATTR_GID) ? iattr->ia_gid : igid;
175                 uid = (mask & ATTR_UID) ? iattr->ia_uid : iuid;
176
177                 /*
178                  * Do a quota reservation only if uid/gid is actually
179                  * going to change.
180                  */
181                 if (XFS_IS_QUOTA_RUNNING(mp) &&
182                     ((XFS_IS_UQUOTA_ON(mp) && iuid != uid) ||
183                      (XFS_IS_GQUOTA_ON(mp) && igid != gid))) {
184                         ASSERT(tp);
185                         code = xfs_qm_vop_chown_reserve(tp, ip, udqp, gdqp,
186                                                 capable(CAP_FOWNER) ?
187                                                 XFS_QMOPT_FORCE_RES : 0);
188                         if (code)       /* out of quota */
189                                 goto error_return;
190                 }
191         }
192
193         /*
194          * Truncate file.  Must have write permission and not be a directory.
195          */
196         if (mask & ATTR_SIZE) {
197                 /* Short circuit the truncate case for zero length files */
198                 if (iattr->ia_size == 0 &&
199                     ip->i_size == 0 && ip->i_d.di_nextents == 0) {
200                         xfs_iunlock(ip, XFS_ILOCK_EXCL);
201                         lock_flags &= ~XFS_ILOCK_EXCL;
202                         if (mask & ATTR_CTIME)
203                                 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
204                         code = 0;
205                         goto error_return;
206                 }
207
208                 if (S_ISDIR(ip->i_d.di_mode)) {
209                         code = XFS_ERROR(EISDIR);
210                         goto error_return;
211                 } else if (!S_ISREG(ip->i_d.di_mode)) {
212                         code = XFS_ERROR(EINVAL);
213                         goto error_return;
214                 }
215
216                 /*
217                  * Make sure that the dquots are attached to the inode.
218                  */
219                 code = xfs_qm_dqattach_locked(ip, 0);
220                 if (code)
221                         goto error_return;
222
223                 /*
224                  * Now we can make the changes.  Before we join the inode
225                  * to the transaction, if ATTR_SIZE is set then take care of
226                  * the part of the truncation that must be done without the
227                  * inode lock.  This needs to be done before joining the inode
228                  * to the transaction, because the inode cannot be unlocked
229                  * once it is a part of the transaction.
230                  */
231                 if (iattr->ia_size > ip->i_size) {
232                         /*
233                          * Do the first part of growing a file: zero any data
234                          * in the last block that is beyond the old EOF.  We
235                          * need to do this before the inode is joined to the
236                          * transaction to modify the i_size.
237                          */
238                         code = xfs_zero_eof(ip, iattr->ia_size, ip->i_size);
239                 }
240                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
241
242                 /*
243                  * We are going to log the inode size change in this
244                  * transaction so any previous writes that are beyond the on
245                  * disk EOF and the new EOF that have not been written out need
246                  * to be written here. If we do not write the data out, we
247                  * expose ourselves to the null files problem.
248                  *
249                  * Only flush from the on disk size to the smaller of the in
250                  * memory file size or the new size as that's the range we
251                  * really care about here and prevents waiting for other data
252                  * not within the range we care about here.
253                  */
254                 if (!code &&
255                     ip->i_size != ip->i_d.di_size &&
256                     iattr->ia_size > ip->i_d.di_size) {
257                         code = xfs_flush_pages(ip,
258                                         ip->i_d.di_size, iattr->ia_size,
259                                         XBF_ASYNC, FI_NONE);
260                 }
261
262                 /* wait for all I/O to complete */
263                 xfs_ioend_wait(ip);
264
265                 if (!code)
266                         code = xfs_itruncate_data(ip, iattr->ia_size);
267                 if (code) {
268                         ASSERT(tp == NULL);
269                         lock_flags &= ~XFS_ILOCK_EXCL;
270                         ASSERT(lock_flags == XFS_IOLOCK_EXCL);
271                         goto error_return;
272                 }
273                 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_SIZE);
274                 if ((code = xfs_trans_reserve(tp, 0,
275                                              XFS_ITRUNCATE_LOG_RES(mp), 0,
276                                              XFS_TRANS_PERM_LOG_RES,
277                                              XFS_ITRUNCATE_LOG_COUNT))) {
278                         xfs_trans_cancel(tp, 0);
279                         if (need_iolock)
280                                 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
281                         return code;
282                 }
283                 commit_flags = XFS_TRANS_RELEASE_LOG_RES;
284                 xfs_ilock(ip, XFS_ILOCK_EXCL);
285
286                 xfs_trans_ijoin(tp, ip, lock_flags);
287                 xfs_trans_ihold(tp, ip);
288
289                 /*
290                  * Only change the c/mtime if we are changing the size
291                  * or we are explicitly asked to change it. This handles
292                  * the semantic difference between truncate() and ftruncate()
293                  * as implemented in the VFS.
294                  *
295                  * The regular truncate() case without ATTR_CTIME and ATTR_MTIME
296                  * is a special case where we need to update the times despite
297                  * not having these flags set.  For all other operations the
298                  * VFS set these flags explicitly if it wants a timestamp
299                  * update.
300                  */
301                 if (iattr->ia_size != ip->i_size &&
302                     (!(mask & (ATTR_CTIME | ATTR_MTIME)))) {
303                         iattr->ia_ctime = iattr->ia_mtime =
304                                 current_fs_time(inode->i_sb);
305                         mask |= ATTR_CTIME | ATTR_MTIME;
306                 }
307
308                 if (iattr->ia_size > ip->i_size) {
309                         ip->i_d.di_size = iattr->ia_size;
310                         ip->i_size = iattr->ia_size;
311                         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
312                 } else if (iattr->ia_size <= ip->i_size ||
313                            (iattr->ia_size == 0 && ip->i_d.di_nextents)) {
314                         /*
315                          * signal a sync transaction unless
316                          * we're truncating an already unlinked
317                          * file on a wsync filesystem
318                          */
319                         code = xfs_itruncate_finish(&tp, ip, iattr->ia_size,
320                                             XFS_DATA_FORK,
321                                             ((ip->i_d.di_nlink != 0 ||
322                                               !(mp->m_flags & XFS_MOUNT_WSYNC))
323                                              ? 1 : 0));
324                         if (code)
325                                 goto abort_return;
326                         /*
327                          * Truncated "down", so we're removing references
328                          * to old data here - if we now delay flushing for
329                          * a long time, we expose ourselves unduly to the
330                          * notorious NULL files problem.  So, we mark this
331                          * vnode and flush it when the file is closed, and
332                          * do not wait the usual (long) time for writeout.
333                          */
334                         xfs_iflags_set(ip, XFS_ITRUNCATED);
335                 }
336         } else if (tp) {
337                 xfs_trans_ijoin(tp, ip, lock_flags);
338                 xfs_trans_ihold(tp, ip);
339         }
340
341         /*
342          * Change file ownership.  Must be the owner or privileged.
343          */
344         if (mask & (ATTR_UID|ATTR_GID)) {
345                 /*
346                  * CAP_FSETID overrides the following restrictions:
347                  *
348                  * The set-user-ID and set-group-ID bits of a file will be
349                  * cleared upon successful return from chown()
350                  */
351                 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
352                     !capable(CAP_FSETID)) {
353                         ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
354                 }
355
356                 /*
357                  * Change the ownerships and register quota modifications
358                  * in the transaction.
359                  */
360                 if (iuid != uid) {
361                         if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_UQUOTA_ON(mp)) {
362                                 ASSERT(mask & ATTR_UID);
363                                 ASSERT(udqp);
364                                 olddquot1 = xfs_qm_vop_chown(tp, ip,
365                                                         &ip->i_udquot, udqp);
366                         }
367                         ip->i_d.di_uid = uid;
368                         inode->i_uid = uid;
369                 }
370                 if (igid != gid) {
371                         if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_GQUOTA_ON(mp)) {
372                                 ASSERT(!XFS_IS_PQUOTA_ON(mp));
373                                 ASSERT(mask & ATTR_GID);
374                                 ASSERT(gdqp);
375                                 olddquot2 = xfs_qm_vop_chown(tp, ip,
376                                                         &ip->i_gdquot, gdqp);
377                         }
378                         ip->i_d.di_gid = gid;
379                         inode->i_gid = gid;
380                 }
381         }
382
383         /*
384          * Change file access modes.
385          */
386         if (mask & ATTR_MODE) {
387                 umode_t mode = iattr->ia_mode;
388
389                 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
390                         mode &= ~S_ISGID;
391
392                 ip->i_d.di_mode &= S_IFMT;
393                 ip->i_d.di_mode |= mode & ~S_IFMT;
394
395                 inode->i_mode &= S_IFMT;
396                 inode->i_mode |= mode & ~S_IFMT;
397         }
398
399         /*
400          * Change file access or modified times.
401          */
402         if (mask & ATTR_ATIME) {
403                 inode->i_atime = iattr->ia_atime;
404                 ip->i_d.di_atime.t_sec = iattr->ia_atime.tv_sec;
405                 ip->i_d.di_atime.t_nsec = iattr->ia_atime.tv_nsec;
406                 ip->i_update_core = 1;
407         }
408         if (mask & ATTR_CTIME) {
409                 inode->i_ctime = iattr->ia_ctime;
410                 ip->i_d.di_ctime.t_sec = iattr->ia_ctime.tv_sec;
411                 ip->i_d.di_ctime.t_nsec = iattr->ia_ctime.tv_nsec;
412                 ip->i_update_core = 1;
413         }
414         if (mask & ATTR_MTIME) {
415                 inode->i_mtime = iattr->ia_mtime;
416                 ip->i_d.di_mtime.t_sec = iattr->ia_mtime.tv_sec;
417                 ip->i_d.di_mtime.t_nsec = iattr->ia_mtime.tv_nsec;
418                 ip->i_update_core = 1;
419         }
420
421         /*
422          * And finally, log the inode core if any attribute in it
423          * has been changed.
424          */
425         if (mask & (ATTR_UID|ATTR_GID|ATTR_MODE|
426                     ATTR_ATIME|ATTR_CTIME|ATTR_MTIME))
427                 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
428
429         XFS_STATS_INC(xs_ig_attrchg);
430
431         /*
432          * If this is a synchronous mount, make sure that the
433          * transaction goes to disk before returning to the user.
434          * This is slightly sub-optimal in that truncates require
435          * two sync transactions instead of one for wsync filesystems.
436          * One for the truncate and one for the timestamps since we
437          * don't want to change the timestamps unless we're sure the
438          * truncate worked.  Truncates are less than 1% of the laddis
439          * mix so this probably isn't worth the trouble to optimize.
440          */
441         code = 0;
442         if (mp->m_flags & XFS_MOUNT_WSYNC)
443                 xfs_trans_set_sync(tp);
444
445         code = xfs_trans_commit(tp, commit_flags);
446
447         xfs_iunlock(ip, lock_flags);
448
449         /*
450          * Release any dquot(s) the inode had kept before chown.
451          */
452         xfs_qm_dqrele(olddquot1);
453         xfs_qm_dqrele(olddquot2);
454         xfs_qm_dqrele(udqp);
455         xfs_qm_dqrele(gdqp);
456
457         if (code)
458                 return code;
459
460         /*
461          * XXX(hch): Updating the ACL entries is not atomic vs the i_mode
462          *           update.  We could avoid this with linked transactions
463          *           and passing down the transaction pointer all the way
464          *           to attr_set.  No previous user of the generic
465          *           Posix ACL code seems to care about this issue either.
466          */
467         if ((mask & ATTR_MODE) && !(flags & XFS_ATTR_NOACL)) {
468                 code = -xfs_acl_chmod(inode);
469                 if (code)
470                         return XFS_ERROR(code);
471         }
472
473         if (DM_EVENT_ENABLED(ip, DM_EVENT_ATTRIBUTE) &&
474             !(flags & XFS_ATTR_DMI)) {
475                 (void) XFS_SEND_NAMESP(mp, DM_EVENT_ATTRIBUTE, ip, DM_RIGHT_NULL,
476                                         NULL, DM_RIGHT_NULL, NULL, NULL,
477                                         0, 0, AT_DELAY_FLAG(flags));
478         }
479         return 0;
480
481  abort_return:
482         commit_flags |= XFS_TRANS_ABORT;
483         /* FALLTHROUGH */
484  error_return:
485         xfs_qm_dqrele(udqp);
486         xfs_qm_dqrele(gdqp);
487         if (tp) {
488                 xfs_trans_cancel(tp, commit_flags);
489         }
490         if (lock_flags != 0) {
491                 xfs_iunlock(ip, lock_flags);
492         }
493         return code;
494 }
495
496 /*
497  * The maximum pathlen is 1024 bytes. Since the minimum file system
498  * blocksize is 512 bytes, we can get a max of 2 extents back from
499  * bmapi.
500  */
501 #define SYMLINK_MAPS 2
502
503 STATIC int
504 xfs_readlink_bmap(
505         xfs_inode_t     *ip,
506         char            *link)
507 {
508         xfs_mount_t     *mp = ip->i_mount;
509         int             pathlen = ip->i_d.di_size;
510         int             nmaps = SYMLINK_MAPS;
511         xfs_bmbt_irec_t mval[SYMLINK_MAPS];
512         xfs_daddr_t     d;
513         int             byte_cnt;
514         int             n;
515         xfs_buf_t       *bp;
516         int             error = 0;
517
518         error = xfs_bmapi(NULL, ip, 0, XFS_B_TO_FSB(mp, pathlen), 0, NULL, 0,
519                         mval, &nmaps, NULL, NULL);
520         if (error)
521                 goto out;
522
523         for (n = 0; n < nmaps; n++) {
524                 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
525                 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
526
527                 bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt),
528                                   XBF_LOCK | XBF_MAPPED | XBF_DONT_BLOCK);
529                 error = XFS_BUF_GETERROR(bp);
530                 if (error) {
531                         xfs_ioerror_alert("xfs_readlink",
532                                   ip->i_mount, bp, XFS_BUF_ADDR(bp));
533                         xfs_buf_relse(bp);
534                         goto out;
535                 }
536                 if (pathlen < byte_cnt)
537                         byte_cnt = pathlen;
538                 pathlen -= byte_cnt;
539
540                 memcpy(link, XFS_BUF_PTR(bp), byte_cnt);
541                 xfs_buf_relse(bp);
542         }
543
544         link[ip->i_d.di_size] = '\0';
545         error = 0;
546
547  out:
548         return error;
549 }
550
551 int
552 xfs_readlink(
553         xfs_inode_t     *ip,
554         char            *link)
555 {
556         xfs_mount_t     *mp = ip->i_mount;
557         int             pathlen;
558         int             error = 0;
559
560         xfs_itrace_entry(ip);
561
562         if (XFS_FORCED_SHUTDOWN(mp))
563                 return XFS_ERROR(EIO);
564
565         xfs_ilock(ip, XFS_ILOCK_SHARED);
566
567         ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFLNK);
568         ASSERT(ip->i_d.di_size <= MAXPATHLEN);
569
570         pathlen = ip->i_d.di_size;
571         if (!pathlen)
572                 goto out;
573
574         if (ip->i_df.if_flags & XFS_IFINLINE) {
575                 memcpy(link, ip->i_df.if_u1.if_data, pathlen);
576                 link[pathlen] = '\0';
577         } else {
578                 error = xfs_readlink_bmap(ip, link);
579         }
580
581  out:
582         xfs_iunlock(ip, XFS_ILOCK_SHARED);
583         return error;
584 }
585
586 /*
587  * xfs_fsync
588  *
589  * This is called to sync the inode and its data out to disk.  We need to hold
590  * the I/O lock while flushing the data, and the inode lock while flushing the
591  * inode.  The inode lock CANNOT be held while flushing the data, so acquire
592  * after we're done with that.
593  */
594 int
595 xfs_fsync(
596         xfs_inode_t     *ip)
597 {
598         xfs_trans_t     *tp;
599         int             error = 0;
600         int             log_flushed = 0, changed = 1;
601
602         xfs_itrace_entry(ip);
603
604         if (XFS_FORCED_SHUTDOWN(ip->i_mount))
605                 return XFS_ERROR(EIO);
606
607         /*
608          * We always need to make sure that the required inode state is safe on
609          * disk.  The inode might be clean but we still might need to force the
610          * log because of committed transactions that haven't hit the disk yet.
611          * Likewise, there could be unflushed non-transactional changes to the
612          * inode core that have to go to disk and this requires us to issue
613          * a synchronous transaction to capture these changes correctly.
614          *
615          * This code relies on the assumption that if the update_* fields
616          * of the inode are clear and the inode is unpinned then it is clean
617          * and no action is required.
618          */
619         xfs_ilock(ip, XFS_ILOCK_SHARED);
620
621         if (!ip->i_update_core) {
622                 /*
623                  * Timestamps/size haven't changed since last inode flush or
624                  * inode transaction commit.  That means either nothing got
625                  * written or a transaction committed which caught the updates.
626                  * If the latter happened and the transaction hasn't hit the
627                  * disk yet, the inode will be still be pinned.  If it is,
628                  * force the log.
629                  */
630
631                 xfs_iunlock(ip, XFS_ILOCK_SHARED);
632
633                 if (xfs_ipincount(ip)) {
634                         error = _xfs_log_force(ip->i_mount, XFS_LOG_SYNC,
635                                                &log_flushed);
636                 } else {
637                         /*
638                          * If the inode is not pinned and nothing has changed
639                          * we don't need to flush the cache.
640                          */
641                         changed = 0;
642                 }
643         } else  {
644                 /*
645                  * Kick off a transaction to log the inode core to get the
646                  * updates.  The sync transaction will also force the log.
647                  */
648                 xfs_iunlock(ip, XFS_ILOCK_SHARED);
649                 tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_FSYNC_TS);
650                 error = xfs_trans_reserve(tp, 0,
651                                 XFS_FSYNC_TS_LOG_RES(ip->i_mount), 0, 0, 0);
652                 if (error) {
653                         xfs_trans_cancel(tp, 0);
654                         return error;
655                 }
656                 xfs_ilock(ip, XFS_ILOCK_EXCL);
657
658                 /*
659                  * Note - it's possible that we might have pushed ourselves out
660                  * of the way during trans_reserve which would flush the inode.
661                  * But there's no guarantee that the inode buffer has actually
662                  * gone out yet (it's delwri).  Plus the buffer could be pinned
663                  * anyway if it's part of an inode in another recent
664                  * transaction.  So we play it safe and fire off the
665                  * transaction anyway.
666                  */
667                 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
668                 xfs_trans_ihold(tp, ip);
669                 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
670                 xfs_trans_set_sync(tp);
671                 error = _xfs_trans_commit(tp, 0, &log_flushed);
672
673                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
674         }
675
676         if ((ip->i_mount->m_flags & XFS_MOUNT_BARRIER) && changed) {
677                 /*
678                  * If the log write didn't issue an ordered tag we need
679                  * to flush the disk cache for the data device now.
680                  */
681                 if (!log_flushed)
682                         xfs_blkdev_issue_flush(ip->i_mount->m_ddev_targp);
683
684                 /*
685                  * If this inode is on the RT dev we need to flush that
686                  * cache as well.
687                  */
688                 if (XFS_IS_REALTIME_INODE(ip))
689                         xfs_blkdev_issue_flush(ip->i_mount->m_rtdev_targp);
690         }
691
692         return error;
693 }
694
695 /*
696  * Flags for xfs_free_eofblocks
697  */
698 #define XFS_FREE_EOF_TRYLOCK    (1<<0)
699
700 /*
701  * This is called by xfs_inactive to free any blocks beyond eof
702  * when the link count isn't zero and by xfs_dm_punch_hole() when
703  * punching a hole to EOF.
704  */
705 STATIC int
706 xfs_free_eofblocks(
707         xfs_mount_t     *mp,
708         xfs_inode_t     *ip,
709         int             flags)
710 {
711         xfs_trans_t     *tp;
712         int             error;
713         xfs_fileoff_t   end_fsb;
714         xfs_fileoff_t   last_fsb;
715         xfs_filblks_t   map_len;
716         int             nimaps;
717         xfs_bmbt_irec_t imap;
718
719         /*
720          * Figure out if there are any blocks beyond the end
721          * of the file.  If not, then there is nothing to do.
722          */
723         end_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)ip->i_size));
724         last_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
725         map_len = last_fsb - end_fsb;
726         if (map_len <= 0)
727                 return 0;
728
729         nimaps = 1;
730         xfs_ilock(ip, XFS_ILOCK_SHARED);
731         error = xfs_bmapi(NULL, ip, end_fsb, map_len, 0,
732                           NULL, 0, &imap, &nimaps, NULL, NULL);
733         xfs_iunlock(ip, XFS_ILOCK_SHARED);
734
735         if (!error && (nimaps != 0) &&
736             (imap.br_startblock != HOLESTARTBLOCK ||
737              ip->i_delayed_blks)) {
738                 /*
739                  * Attach the dquots to the inode up front.
740                  */
741                 error = xfs_qm_dqattach(ip, 0);
742                 if (error)
743                         return error;
744
745                 /*
746                  * There are blocks after the end of file.
747                  * Free them up now by truncating the file to
748                  * its current size.
749                  */
750                 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
751
752                 /*
753                  * Do the xfs_itruncate_start() call before
754                  * reserving any log space because
755                  * itruncate_start will call into the buffer
756                  * cache and we can't
757                  * do that within a transaction.
758                  */
759                 if (flags & XFS_FREE_EOF_TRYLOCK) {
760                         if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
761                                 xfs_trans_cancel(tp, 0);
762                                 return 0;
763                         }
764                 } else {
765                         xfs_ilock(ip, XFS_IOLOCK_EXCL);
766                 }
767                 error = xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE,
768                                     ip->i_size);
769                 if (error) {
770                         xfs_trans_cancel(tp, 0);
771                         xfs_iunlock(ip, XFS_IOLOCK_EXCL);
772                         return error;
773                 }
774
775                 error = xfs_trans_reserve(tp, 0,
776                                           XFS_ITRUNCATE_LOG_RES(mp),
777                                           0, XFS_TRANS_PERM_LOG_RES,
778                                           XFS_ITRUNCATE_LOG_COUNT);
779                 if (error) {
780                         ASSERT(XFS_FORCED_SHUTDOWN(mp));
781                         xfs_trans_cancel(tp, 0);
782                         xfs_iunlock(ip, XFS_IOLOCK_EXCL);
783                         return error;
784                 }
785
786                 xfs_ilock(ip, XFS_ILOCK_EXCL);
787                 xfs_trans_ijoin(tp, ip,
788                                 XFS_IOLOCK_EXCL |
789                                 XFS_ILOCK_EXCL);
790                 xfs_trans_ihold(tp, ip);
791
792                 error = xfs_itruncate_finish(&tp, ip,
793                                              ip->i_size,
794                                              XFS_DATA_FORK,
795                                              0);
796                 /*
797                  * If we get an error at this point we
798                  * simply don't bother truncating the file.
799                  */
800                 if (error) {
801                         xfs_trans_cancel(tp,
802                                          (XFS_TRANS_RELEASE_LOG_RES |
803                                           XFS_TRANS_ABORT));
804                 } else {
805                         error = xfs_trans_commit(tp,
806                                                 XFS_TRANS_RELEASE_LOG_RES);
807                 }
808                 xfs_iunlock(ip, XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL);
809         }
810         return error;
811 }
812
813 /*
814  * Free a symlink that has blocks associated with it.
815  */
816 STATIC int
817 xfs_inactive_symlink_rmt(
818         xfs_inode_t     *ip,
819         xfs_trans_t     **tpp)
820 {
821         xfs_buf_t       *bp;
822         int             committed;
823         int             done;
824         int             error;
825         xfs_fsblock_t   first_block;
826         xfs_bmap_free_t free_list;
827         int             i;
828         xfs_mount_t     *mp;
829         xfs_bmbt_irec_t mval[SYMLINK_MAPS];
830         int             nmaps;
831         xfs_trans_t     *ntp;
832         int             size;
833         xfs_trans_t     *tp;
834
835         tp = *tpp;
836         mp = ip->i_mount;
837         ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip));
838         /*
839          * We're freeing a symlink that has some
840          * blocks allocated to it.  Free the
841          * blocks here.  We know that we've got
842          * either 1 or 2 extents and that we can
843          * free them all in one bunmapi call.
844          */
845         ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
846         if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
847                         XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
848                 ASSERT(XFS_FORCED_SHUTDOWN(mp));
849                 xfs_trans_cancel(tp, 0);
850                 *tpp = NULL;
851                 return error;
852         }
853         /*
854          * Lock the inode, fix the size, and join it to the transaction.
855          * Hold it so in the normal path, we still have it locked for
856          * the second transaction.  In the error paths we need it
857          * held so the cancel won't rele it, see below.
858          */
859         xfs_ilock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
860         size = (int)ip->i_d.di_size;
861         ip->i_d.di_size = 0;
862         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
863         xfs_trans_ihold(tp, ip);
864         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
865         /*
866          * Find the block(s) so we can inval and unmap them.
867          */
868         done = 0;
869         xfs_bmap_init(&free_list, &first_block);
870         nmaps = ARRAY_SIZE(mval);
871         if ((error = xfs_bmapi(tp, ip, 0, XFS_B_TO_FSB(mp, size),
872                         XFS_BMAPI_METADATA, &first_block, 0, mval, &nmaps,
873                         &free_list, NULL)))
874                 goto error0;
875         /*
876          * Invalidate the block(s).
877          */
878         for (i = 0; i < nmaps; i++) {
879                 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
880                         XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
881                         XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
882                 xfs_trans_binval(tp, bp);
883         }
884         /*
885          * Unmap the dead block(s) to the free_list.
886          */
887         if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
888                         &first_block, &free_list, NULL, &done)))
889                 goto error1;
890         ASSERT(done);
891         /*
892          * Commit the first transaction.  This logs the EFI and the inode.
893          */
894         if ((error = xfs_bmap_finish(&tp, &free_list, &committed)))
895                 goto error1;
896         /*
897          * The transaction must have been committed, since there were
898          * actually extents freed by xfs_bunmapi.  See xfs_bmap_finish.
899          * The new tp has the extent freeing and EFDs.
900          */
901         ASSERT(committed);
902         /*
903          * The first xact was committed, so add the inode to the new one.
904          * Mark it dirty so it will be logged and moved forward in the log as
905          * part of every commit.
906          */
907         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
908         xfs_trans_ihold(tp, ip);
909         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
910         /*
911          * Get a new, empty transaction to return to our caller.
912          */
913         ntp = xfs_trans_dup(tp);
914         /*
915          * Commit the transaction containing extent freeing and EFDs.
916          * If we get an error on the commit here or on the reserve below,
917          * we need to unlock the inode since the new transaction doesn't
918          * have the inode attached.
919          */
920         error = xfs_trans_commit(tp, 0);
921         tp = ntp;
922         if (error) {
923                 ASSERT(XFS_FORCED_SHUTDOWN(mp));
924                 goto error0;
925         }
926         /*
927          * transaction commit worked ok so we can drop the extra ticket
928          * reference that we gained in xfs_trans_dup()
929          */
930         xfs_log_ticket_put(tp->t_ticket);
931
932         /*
933          * Remove the memory for extent descriptions (just bookkeeping).
934          */
935         if (ip->i_df.if_bytes)
936                 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
937         ASSERT(ip->i_df.if_bytes == 0);
938         /*
939          * Put an itruncate log reservation in the new transaction
940          * for our caller.
941          */
942         if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
943                         XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
944                 ASSERT(XFS_FORCED_SHUTDOWN(mp));
945                 goto error0;
946         }
947         /*
948          * Return with the inode locked but not joined to the transaction.
949          */
950         *tpp = tp;
951         return 0;
952
953  error1:
954         xfs_bmap_cancel(&free_list);
955  error0:
956         /*
957          * Have to come here with the inode locked and either
958          * (held and in the transaction) or (not in the transaction).
959          * If the inode isn't held then cancel would iput it, but
960          * that's wrong since this is inactive and the vnode ref
961          * count is 0 already.
962          * Cancel won't do anything to the inode if held, but it still
963          * needs to be locked until the cancel is done, if it was
964          * joined to the transaction.
965          */
966         xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
967         xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
968         *tpp = NULL;
969         return error;
970
971 }
972
973 STATIC int
974 xfs_inactive_symlink_local(
975         xfs_inode_t     *ip,
976         xfs_trans_t     **tpp)
977 {
978         int             error;
979
980         ASSERT(ip->i_d.di_size <= XFS_IFORK_DSIZE(ip));
981         /*
982          * We're freeing a symlink which fit into
983          * the inode.  Just free the memory used
984          * to hold the old symlink.
985          */
986         error = xfs_trans_reserve(*tpp, 0,
987                                   XFS_ITRUNCATE_LOG_RES(ip->i_mount),
988                                   0, XFS_TRANS_PERM_LOG_RES,
989                                   XFS_ITRUNCATE_LOG_COUNT);
990
991         if (error) {
992                 xfs_trans_cancel(*tpp, 0);
993                 *tpp = NULL;
994                 return error;
995         }
996         xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
997
998         /*
999          * Zero length symlinks _can_ exist.
1000          */
1001         if (ip->i_df.if_bytes > 0) {
1002                 xfs_idata_realloc(ip,
1003                                   -(ip->i_df.if_bytes),
1004                                   XFS_DATA_FORK);
1005                 ASSERT(ip->i_df.if_bytes == 0);
1006         }
1007         return 0;
1008 }
1009
1010 STATIC int
1011 xfs_inactive_attrs(
1012         xfs_inode_t     *ip,
1013         xfs_trans_t     **tpp)
1014 {
1015         xfs_trans_t     *tp;
1016         int             error;
1017         xfs_mount_t     *mp;
1018
1019         ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1020         tp = *tpp;
1021         mp = ip->i_mount;
1022         ASSERT(ip->i_d.di_forkoff != 0);
1023         error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1024         xfs_iunlock(ip, XFS_ILOCK_EXCL);
1025         if (error)
1026                 goto error_unlock;
1027
1028         error = xfs_attr_inactive(ip);
1029         if (error)
1030                 goto error_unlock;
1031
1032         tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1033         error = xfs_trans_reserve(tp, 0,
1034                                   XFS_IFREE_LOG_RES(mp),
1035                                   0, XFS_TRANS_PERM_LOG_RES,
1036                                   XFS_INACTIVE_LOG_COUNT);
1037         if (error)
1038                 goto error_cancel;
1039
1040         xfs_ilock(ip, XFS_ILOCK_EXCL);
1041         xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1042         xfs_trans_ihold(tp, ip);
1043         xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1044
1045         ASSERT(ip->i_d.di_anextents == 0);
1046
1047         *tpp = tp;
1048         return 0;
1049
1050 error_cancel:
1051         ASSERT(XFS_FORCED_SHUTDOWN(mp));
1052         xfs_trans_cancel(tp, 0);
1053 error_unlock:
1054         *tpp = NULL;
1055         xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1056         return error;
1057 }
1058
1059 int
1060 xfs_release(
1061         xfs_inode_t     *ip)
1062 {
1063         xfs_mount_t     *mp = ip->i_mount;
1064         int             error;
1065
1066         if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0))
1067                 return 0;
1068
1069         /* If this is a read-only mount, don't do this (would generate I/O) */
1070         if (mp->m_flags & XFS_MOUNT_RDONLY)
1071                 return 0;
1072
1073         if (!XFS_FORCED_SHUTDOWN(mp)) {
1074                 int truncated;
1075
1076                 /*
1077                  * If we are using filestreams, and we have an unlinked
1078                  * file that we are processing the last close on, then nothing
1079                  * will be able to reopen and write to this file. Purge this
1080                  * inode from the filestreams cache so that it doesn't delay
1081                  * teardown of the inode.
1082                  */
1083                 if ((ip->i_d.di_nlink == 0) && xfs_inode_is_filestream(ip))
1084                         xfs_filestream_deassociate(ip);
1085
1086                 /*
1087                  * If we previously truncated this file and removed old data
1088                  * in the process, we want to initiate "early" writeout on
1089                  * the last close.  This is an attempt to combat the notorious
1090                  * NULL files problem which is particularly noticable from a
1091                  * truncate down, buffered (re-)write (delalloc), followed by
1092                  * a crash.  What we are effectively doing here is
1093                  * significantly reducing the time window where we'd otherwise
1094                  * be exposed to that problem.
1095                  */
1096                 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
1097                 if (truncated && VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0)
1098                         xfs_flush_pages(ip, 0, -1, XBF_ASYNC, FI_NONE);
1099         }
1100
1101         if (ip->i_d.di_nlink != 0) {
1102                 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
1103                      ((ip->i_size > 0) || (VN_CACHED(VFS_I(ip)) > 0 ||
1104                        ip->i_delayed_blks > 0)) &&
1105                      (ip->i_df.if_flags & XFS_IFEXTENTS))  &&
1106                     (!(ip->i_d.di_flags &
1107                                 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)))) {
1108
1109                         /*
1110                          * If we can't get the iolock just skip truncating
1111                          * the blocks past EOF because we could deadlock
1112                          * with the mmap_sem otherwise.  We'll get another
1113                          * chance to drop them once the last reference to
1114                          * the inode is dropped, so we'll never leak blocks
1115                          * permanently.
1116                          */
1117                         error = xfs_free_eofblocks(mp, ip,
1118                                                    XFS_FREE_EOF_TRYLOCK);
1119                         if (error)
1120                                 return error;
1121                 }
1122         }
1123
1124         return 0;
1125 }
1126
1127 /*
1128  * xfs_inactive
1129  *
1130  * This is called when the vnode reference count for the vnode
1131  * goes to zero.  If the file has been unlinked, then it must
1132  * now be truncated.  Also, we clear all of the read-ahead state
1133  * kept for the inode here since the file is now closed.
1134  */
1135 int
1136 xfs_inactive(
1137         xfs_inode_t     *ip)
1138 {
1139         xfs_bmap_free_t free_list;
1140         xfs_fsblock_t   first_block;
1141         int             committed;
1142         xfs_trans_t     *tp;
1143         xfs_mount_t     *mp;
1144         int             error;
1145         int             truncate;
1146
1147         xfs_itrace_entry(ip);
1148
1149         /*
1150          * If the inode is already free, then there can be nothing
1151          * to clean up here.
1152          */
1153         if (ip->i_d.di_mode == 0 || is_bad_inode(VFS_I(ip))) {
1154                 ASSERT(ip->i_df.if_real_bytes == 0);
1155                 ASSERT(ip->i_df.if_broot_bytes == 0);
1156                 return VN_INACTIVE_CACHE;
1157         }
1158
1159         /*
1160          * Only do a truncate if it's a regular file with
1161          * some actual space in it.  It's OK to look at the
1162          * inode's fields without the lock because we're the
1163          * only one with a reference to the inode.
1164          */
1165         truncate = ((ip->i_d.di_nlink == 0) &&
1166             ((ip->i_d.di_size != 0) || (ip->i_size != 0) ||
1167              (ip->i_d.di_nextents > 0) || (ip->i_delayed_blks > 0)) &&
1168             ((ip->i_d.di_mode & S_IFMT) == S_IFREG));
1169
1170         mp = ip->i_mount;
1171
1172         if (ip->i_d.di_nlink == 0 && DM_EVENT_ENABLED(ip, DM_EVENT_DESTROY))
1173                 XFS_SEND_DESTROY(mp, ip, DM_RIGHT_NULL);
1174
1175         error = 0;
1176
1177         /* If this is a read-only mount, don't do this (would generate I/O) */
1178         if (mp->m_flags & XFS_MOUNT_RDONLY)
1179                 goto out;
1180
1181         if (ip->i_d.di_nlink != 0) {
1182                 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
1183                      ((ip->i_size > 0) || (VN_CACHED(VFS_I(ip)) > 0 ||
1184                        ip->i_delayed_blks > 0)) &&
1185                       (ip->i_df.if_flags & XFS_IFEXTENTS) &&
1186                      (!(ip->i_d.di_flags &
1187                                 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)) ||
1188                       (ip->i_delayed_blks != 0)))) {
1189                         error = xfs_free_eofblocks(mp, ip, 0);
1190                         if (error)
1191                                 return VN_INACTIVE_CACHE;
1192                 }
1193                 goto out;
1194         }
1195
1196         ASSERT(ip->i_d.di_nlink == 0);
1197
1198         error = xfs_qm_dqattach(ip, 0);
1199         if (error)
1200                 return VN_INACTIVE_CACHE;
1201
1202         tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1203         if (truncate) {
1204                 /*
1205                  * Do the xfs_itruncate_start() call before
1206                  * reserving any log space because itruncate_start
1207                  * will call into the buffer cache and we can't
1208                  * do that within a transaction.
1209                  */
1210                 xfs_ilock(ip, XFS_IOLOCK_EXCL);
1211
1212                 error = xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE, 0);
1213                 if (error) {
1214                         xfs_trans_cancel(tp, 0);
1215                         xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1216                         return VN_INACTIVE_CACHE;
1217                 }
1218
1219                 error = xfs_trans_reserve(tp, 0,
1220                                           XFS_ITRUNCATE_LOG_RES(mp),
1221                                           0, XFS_TRANS_PERM_LOG_RES,
1222                                           XFS_ITRUNCATE_LOG_COUNT);
1223                 if (error) {
1224                         /* Don't call itruncate_cleanup */
1225                         ASSERT(XFS_FORCED_SHUTDOWN(mp));
1226                         xfs_trans_cancel(tp, 0);
1227                         xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1228                         return VN_INACTIVE_CACHE;
1229                 }
1230
1231                 xfs_ilock(ip, XFS_ILOCK_EXCL);
1232                 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1233                 xfs_trans_ihold(tp, ip);
1234
1235                 /*
1236                  * normally, we have to run xfs_itruncate_finish sync.
1237                  * But if filesystem is wsync and we're in the inactive
1238                  * path, then we know that nlink == 0, and that the
1239                  * xaction that made nlink == 0 is permanently committed
1240                  * since xfs_remove runs as a synchronous transaction.
1241                  */
1242                 error = xfs_itruncate_finish(&tp, ip, 0, XFS_DATA_FORK,
1243                                 (!(mp->m_flags & XFS_MOUNT_WSYNC) ? 1 : 0));
1244
1245                 if (error) {
1246                         xfs_trans_cancel(tp,
1247                                 XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1248                         xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1249                         return VN_INACTIVE_CACHE;
1250                 }
1251         } else if ((ip->i_d.di_mode & S_IFMT) == S_IFLNK) {
1252
1253                 /*
1254                  * If we get an error while cleaning up a
1255                  * symlink we bail out.
1256                  */
1257                 error = (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) ?
1258                         xfs_inactive_symlink_rmt(ip, &tp) :
1259                         xfs_inactive_symlink_local(ip, &tp);
1260
1261                 if (error) {
1262                         ASSERT(tp == NULL);
1263                         return VN_INACTIVE_CACHE;
1264                 }
1265
1266                 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1267                 xfs_trans_ihold(tp, ip);
1268         } else {
1269                 error = xfs_trans_reserve(tp, 0,
1270                                           XFS_IFREE_LOG_RES(mp),
1271                                           0, XFS_TRANS_PERM_LOG_RES,
1272                                           XFS_INACTIVE_LOG_COUNT);
1273                 if (error) {
1274                         ASSERT(XFS_FORCED_SHUTDOWN(mp));
1275                         xfs_trans_cancel(tp, 0);
1276                         return VN_INACTIVE_CACHE;
1277                 }
1278
1279                 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1280                 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1281                 xfs_trans_ihold(tp, ip);
1282         }
1283
1284         /*
1285          * If there are attributes associated with the file
1286          * then blow them away now.  The code calls a routine
1287          * that recursively deconstructs the attribute fork.
1288          * We need to just commit the current transaction
1289          * because we can't use it for xfs_attr_inactive().
1290          */
1291         if (ip->i_d.di_anextents > 0) {
1292                 error = xfs_inactive_attrs(ip, &tp);
1293                 /*
1294                  * If we got an error, the transaction is already
1295                  * cancelled, and the inode is unlocked. Just get out.
1296                  */
1297                  if (error)
1298                          return VN_INACTIVE_CACHE;
1299         } else if (ip->i_afp) {
1300                 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1301         }
1302
1303         /*
1304          * Free the inode.
1305          */
1306         xfs_bmap_init(&free_list, &first_block);
1307         error = xfs_ifree(tp, ip, &free_list);
1308         if (error) {
1309                 /*
1310                  * If we fail to free the inode, shut down.  The cancel
1311                  * might do that, we need to make sure.  Otherwise the
1312                  * inode might be lost for a long time or forever.
1313                  */
1314                 if (!XFS_FORCED_SHUTDOWN(mp)) {
1315                         cmn_err(CE_NOTE,
1316                 "xfs_inactive:  xfs_ifree() returned an error = %d on %s",
1317                                 error, mp->m_fsname);
1318                         xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1319                 }
1320                 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
1321         } else {
1322                 /*
1323                  * Credit the quota account(s). The inode is gone.
1324                  */
1325                 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1326
1327                 /*
1328                  * Just ignore errors at this point.  There is nothing we can
1329                  * do except to try to keep going. Make sure it's not a silent
1330                  * error.
1331                  */
1332                 error = xfs_bmap_finish(&tp,  &free_list, &committed);
1333                 if (error)
1334                         xfs_fs_cmn_err(CE_NOTE, mp, "xfs_inactive: "
1335                                 "xfs_bmap_finish() returned error %d", error);
1336                 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1337                 if (error)
1338                         xfs_fs_cmn_err(CE_NOTE, mp, "xfs_inactive: "
1339                                 "xfs_trans_commit() returned error %d", error);
1340         }
1341
1342         /*
1343          * Release the dquots held by inode, if any.
1344          */
1345         xfs_qm_dqdetach(ip);
1346         xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1347
1348  out:
1349         return VN_INACTIVE_CACHE;
1350 }
1351
1352 /*
1353  * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
1354  * is allowed, otherwise it has to be an exact match. If a CI match is found,
1355  * ci_name->name will point to a the actual name (caller must free) or
1356  * will be set to NULL if an exact match is found.
1357  */
1358 int
1359 xfs_lookup(
1360         xfs_inode_t             *dp,
1361         struct xfs_name         *name,
1362         xfs_inode_t             **ipp,
1363         struct xfs_name         *ci_name)
1364 {
1365         xfs_ino_t               inum;
1366         int                     error;
1367         uint                    lock_mode;
1368
1369         xfs_itrace_entry(dp);
1370
1371         if (XFS_FORCED_SHUTDOWN(dp->i_mount))
1372                 return XFS_ERROR(EIO);
1373
1374         lock_mode = xfs_ilock_map_shared(dp);
1375         error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
1376         xfs_iunlock_map_shared(dp, lock_mode);
1377
1378         if (error)
1379                 goto out;
1380
1381         error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp, 0);
1382         if (error)
1383                 goto out_free_name;
1384
1385         return 0;
1386
1387 out_free_name:
1388         if (ci_name)
1389                 kmem_free(ci_name->name);
1390 out:
1391         *ipp = NULL;
1392         return error;
1393 }
1394
1395 int
1396 xfs_create(
1397         xfs_inode_t             *dp,
1398         struct xfs_name         *name,
1399         mode_t                  mode,
1400         xfs_dev_t               rdev,
1401         xfs_inode_t             **ipp,
1402         cred_t                  *credp)
1403 {
1404         int                     is_dir = S_ISDIR(mode);
1405         struct xfs_mount        *mp = dp->i_mount;
1406         struct xfs_inode        *ip = NULL;
1407         struct xfs_trans        *tp = NULL;
1408         int                     error;
1409         xfs_bmap_free_t         free_list;
1410         xfs_fsblock_t           first_block;
1411         boolean_t               unlock_dp_on_error = B_FALSE;
1412         uint                    cancel_flags;
1413         int                     committed;
1414         xfs_prid_t              prid;
1415         struct xfs_dquot        *udqp = NULL;
1416         struct xfs_dquot        *gdqp = NULL;
1417         uint                    resblks;
1418         uint                    log_res;
1419         uint                    log_count;
1420
1421         xfs_itrace_entry(dp);
1422
1423         if (XFS_FORCED_SHUTDOWN(mp))
1424                 return XFS_ERROR(EIO);
1425
1426         if (DM_EVENT_ENABLED(dp, DM_EVENT_CREATE)) {
1427                 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
1428                                 dp, DM_RIGHT_NULL, NULL,
1429                                 DM_RIGHT_NULL, name->name, NULL,
1430                                 mode, 0, 0);
1431
1432                 if (error)
1433                         return error;
1434         }
1435
1436         if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1437                 prid = dp->i_d.di_projid;
1438         else
1439                 prid = dfltprid;
1440
1441         /*
1442          * Make sure that we have allocated dquot(s) on disk.
1443          */
1444         error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
1445                         XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
1446         if (error)
1447                 goto std_return;
1448
1449         if (is_dir) {
1450                 rdev = 0;
1451                 resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
1452                 log_res = XFS_MKDIR_LOG_RES(mp);
1453                 log_count = XFS_MKDIR_LOG_COUNT;
1454                 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
1455         } else {
1456                 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
1457                 log_res = XFS_CREATE_LOG_RES(mp);
1458                 log_count = XFS_CREATE_LOG_COUNT;
1459                 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
1460         }
1461
1462         cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1463
1464         /*
1465          * Initially assume that the file does not exist and
1466          * reserve the resources for that case.  If that is not
1467          * the case we'll drop the one we have and get a more
1468          * appropriate transaction later.
1469          */
1470         error = xfs_trans_reserve(tp, resblks, log_res, 0,
1471                         XFS_TRANS_PERM_LOG_RES, log_count);
1472         if (error == ENOSPC) {
1473                 /* flush outstanding delalloc blocks and retry */
1474                 xfs_flush_inodes(dp);
1475                 error = xfs_trans_reserve(tp, resblks, log_res, 0,
1476                                 XFS_TRANS_PERM_LOG_RES, log_count);
1477         }
1478         if (error == ENOSPC) {
1479                 /* No space at all so try a "no-allocation" reservation */
1480                 resblks = 0;
1481                 error = xfs_trans_reserve(tp, 0, log_res, 0,
1482                                 XFS_TRANS_PERM_LOG_RES, log_count);
1483         }
1484         if (error) {
1485                 cancel_flags = 0;
1486                 goto out_trans_cancel;
1487         }
1488
1489         xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
1490         unlock_dp_on_error = B_TRUE;
1491
1492         /*
1493          * Check for directory link count overflow.
1494          */
1495         if (is_dir && dp->i_d.di_nlink >= XFS_MAXLINK) {
1496                 error = XFS_ERROR(EMLINK);
1497                 goto out_trans_cancel;
1498         }
1499
1500         xfs_bmap_init(&free_list, &first_block);
1501
1502         /*
1503          * Reserve disk quota and the inode.
1504          */
1505         error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
1506         if (error)
1507                 goto out_trans_cancel;
1508
1509         error = xfs_dir_canenter(tp, dp, name, resblks);
1510         if (error)
1511                 goto out_trans_cancel;
1512
1513         /*
1514          * A newly created regular or special file just has one directory
1515          * entry pointing to them, but a directory also the "." entry
1516          * pointing to itself.
1517          */
1518         error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev, credp,
1519                                prid, resblks > 0, &ip, &committed);
1520         if (error) {
1521                 if (error == ENOSPC)
1522                         goto out_trans_cancel;
1523                 goto out_trans_abort;
1524         }
1525
1526         /*
1527          * At this point, we've gotten a newly allocated inode.
1528          * It is locked (and joined to the transaction).
1529          */
1530         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1531
1532         /*
1533          * Now we join the directory inode to the transaction.  We do not do it
1534          * earlier because xfs_dir_ialloc might commit the previous transaction
1535          * (and release all the locks).  An error from here on will result in
1536          * the transaction cancel unlocking dp so don't do it explicitly in the
1537          * error path.
1538          */
1539         IHOLD(dp);
1540         xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1541         unlock_dp_on_error = B_FALSE;
1542
1543         error = xfs_dir_createname(tp, dp, name, ip->i_ino,
1544                                         &first_block, &free_list, resblks ?
1545                                         resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
1546         if (error) {
1547                 ASSERT(error != ENOSPC);
1548                 goto out_trans_abort;
1549         }
1550         xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1551         xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1552
1553         if (is_dir) {
1554                 error = xfs_dir_init(tp, ip, dp);
1555                 if (error)
1556                         goto out_bmap_cancel;
1557
1558                 error = xfs_bumplink(tp, dp);
1559                 if (error)
1560                         goto out_bmap_cancel;
1561         }
1562
1563         /*
1564          * If this is a synchronous mount, make sure that the
1565          * create transaction goes to disk before returning to
1566          * the user.
1567          */
1568         if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
1569                 xfs_trans_set_sync(tp);
1570
1571         /*
1572          * Attach the dquot(s) to the inodes and modify them incore.
1573          * These ids of the inode couldn't have changed since the new
1574          * inode has been locked ever since it was created.
1575          */
1576         xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
1577
1578         /*
1579          * xfs_trans_commit normally decrements the vnode ref count
1580          * when it unlocks the inode. Since we want to return the
1581          * vnode to the caller, we bump the vnode ref count now.
1582          */
1583         IHOLD(ip);
1584
1585         error = xfs_bmap_finish(&tp, &free_list, &committed);
1586         if (error)
1587                 goto out_abort_rele;
1588
1589         error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1590         if (error) {
1591                 IRELE(ip);
1592                 goto out_dqrele;
1593         }
1594
1595         xfs_qm_dqrele(udqp);
1596         xfs_qm_dqrele(gdqp);
1597
1598         *ipp = ip;
1599
1600         /* Fallthrough to std_return with error = 0  */
1601  std_return:
1602         if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTCREATE)) {
1603                 XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE, dp, DM_RIGHT_NULL,
1604                                 ip, DM_RIGHT_NULL, name->name, NULL, mode,
1605                                 error, 0);
1606         }
1607
1608         return error;
1609
1610  out_bmap_cancel:
1611         xfs_bmap_cancel(&free_list);
1612  out_trans_abort:
1613         cancel_flags |= XFS_TRANS_ABORT;
1614  out_trans_cancel:
1615         xfs_trans_cancel(tp, cancel_flags);
1616  out_dqrele:
1617         xfs_qm_dqrele(udqp);
1618         xfs_qm_dqrele(gdqp);
1619
1620         if (unlock_dp_on_error)
1621                 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1622
1623         goto std_return;
1624
1625  out_abort_rele:
1626         /*
1627          * Wait until after the current transaction is aborted to
1628          * release the inode.  This prevents recursive transactions
1629          * and deadlocks from xfs_inactive.
1630          */
1631         xfs_bmap_cancel(&free_list);
1632         cancel_flags |= XFS_TRANS_ABORT;
1633         xfs_trans_cancel(tp, cancel_flags);
1634         IRELE(ip);
1635         unlock_dp_on_error = B_FALSE;
1636         goto out_dqrele;
1637 }
1638
1639 #ifdef DEBUG
1640 int xfs_locked_n;
1641 int xfs_small_retries;
1642 int xfs_middle_retries;
1643 int xfs_lots_retries;
1644 int xfs_lock_delays;
1645 #endif
1646
1647 /*
1648  * Bump the subclass so xfs_lock_inodes() acquires each lock with
1649  * a different value
1650  */
1651 static inline int
1652 xfs_lock_inumorder(int lock_mode, int subclass)
1653 {
1654         if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
1655                 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
1656         if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
1657                 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
1658
1659         return lock_mode;
1660 }
1661
1662 /*
1663  * The following routine will lock n inodes in exclusive mode.
1664  * We assume the caller calls us with the inodes in i_ino order.
1665  *
1666  * We need to detect deadlock where an inode that we lock
1667  * is in the AIL and we start waiting for another inode that is locked
1668  * by a thread in a long running transaction (such as truncate). This can
1669  * result in deadlock since the long running trans might need to wait
1670  * for the inode we just locked in order to push the tail and free space
1671  * in the log.
1672  */
1673 void
1674 xfs_lock_inodes(
1675         xfs_inode_t     **ips,
1676         int             inodes,
1677         uint            lock_mode)
1678 {
1679         int             attempts = 0, i, j, try_lock;
1680         xfs_log_item_t  *lp;
1681
1682         ASSERT(ips && (inodes >= 2)); /* we need at least two */
1683
1684         try_lock = 0;
1685         i = 0;
1686
1687 again:
1688         for (; i < inodes; i++) {
1689                 ASSERT(ips[i]);
1690
1691                 if (i && (ips[i] == ips[i-1]))  /* Already locked */
1692                         continue;
1693
1694                 /*
1695                  * If try_lock is not set yet, make sure all locked inodes
1696                  * are not in the AIL.
1697                  * If any are, set try_lock to be used later.
1698                  */
1699
1700                 if (!try_lock) {
1701                         for (j = (i - 1); j >= 0 && !try_lock; j--) {
1702                                 lp = (xfs_log_item_t *)ips[j]->i_itemp;
1703                                 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1704                                         try_lock++;
1705                                 }
1706                         }
1707                 }
1708
1709                 /*
1710                  * If any of the previous locks we have locked is in the AIL,
1711                  * we must TRY to get the second and subsequent locks. If
1712                  * we can't get any, we must release all we have
1713                  * and try again.
1714                  */
1715
1716                 if (try_lock) {
1717                         /* try_lock must be 0 if i is 0. */
1718                         /*
1719                          * try_lock means we have an inode locked
1720                          * that is in the AIL.
1721                          */
1722                         ASSERT(i != 0);
1723                         if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
1724                                 attempts++;
1725
1726                                 /*
1727                                  * Unlock all previous guys and try again.
1728                                  * xfs_iunlock will try to push the tail
1729                                  * if the inode is in the AIL.
1730                                  */
1731
1732                                 for(j = i - 1; j >= 0; j--) {
1733
1734                                         /*
1735                                          * Check to see if we've already
1736                                          * unlocked this one.
1737                                          * Not the first one going back,
1738                                          * and the inode ptr is the same.
1739                                          */
1740                                         if ((j != (i - 1)) && ips[j] ==
1741                                                                 ips[j+1])
1742                                                 continue;
1743
1744                                         xfs_iunlock(ips[j], lock_mode);
1745                                 }
1746
1747                                 if ((attempts % 5) == 0) {
1748                                         delay(1); /* Don't just spin the CPU */
1749 #ifdef DEBUG
1750                                         xfs_lock_delays++;
1751 #endif
1752                                 }
1753                                 i = 0;
1754                                 try_lock = 0;
1755                                 goto again;
1756                         }
1757                 } else {
1758                         xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
1759                 }
1760         }
1761
1762 #ifdef DEBUG
1763         if (attempts) {
1764                 if (attempts < 5) xfs_small_retries++;
1765                 else if (attempts < 100) xfs_middle_retries++;
1766                 else xfs_lots_retries++;
1767         } else {
1768                 xfs_locked_n++;
1769         }
1770 #endif
1771 }
1772
1773 /*
1774  * xfs_lock_two_inodes() can only be used to lock one type of lock
1775  * at a time - the iolock or the ilock, but not both at once. If
1776  * we lock both at once, lockdep will report false positives saying
1777  * we have violated locking orders.
1778  */
1779 void
1780 xfs_lock_two_inodes(
1781         xfs_inode_t             *ip0,
1782         xfs_inode_t             *ip1,
1783         uint                    lock_mode)
1784 {
1785         xfs_inode_t             *temp;
1786         int                     attempts = 0;
1787         xfs_log_item_t          *lp;
1788
1789         if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
1790                 ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0);
1791         ASSERT(ip0->i_ino != ip1->i_ino);
1792
1793         if (ip0->i_ino > ip1->i_ino) {
1794                 temp = ip0;
1795                 ip0 = ip1;
1796                 ip1 = temp;
1797         }
1798
1799  again:
1800         xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0));
1801
1802         /*
1803          * If the first lock we have locked is in the AIL, we must TRY to get
1804          * the second lock. If we can't get it, we must release the first one
1805          * and try again.
1806          */
1807         lp = (xfs_log_item_t *)ip0->i_itemp;
1808         if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
1809                 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) {
1810                         xfs_iunlock(ip0, lock_mode);
1811                         if ((++attempts % 5) == 0)
1812                                 delay(1); /* Don't just spin the CPU */
1813                         goto again;
1814                 }
1815         } else {
1816                 xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1));
1817         }
1818 }
1819
1820 int
1821 xfs_remove(
1822         xfs_inode_t             *dp,
1823         struct xfs_name         *name,
1824         xfs_inode_t             *ip)
1825 {
1826         xfs_mount_t             *mp = dp->i_mount;
1827         xfs_trans_t             *tp = NULL;
1828         int                     is_dir = S_ISDIR(ip->i_d.di_mode);
1829         int                     error = 0;
1830         xfs_bmap_free_t         free_list;
1831         xfs_fsblock_t           first_block;
1832         int                     cancel_flags;
1833         int                     committed;
1834         int                     link_zero;
1835         uint                    resblks;
1836         uint                    log_count;
1837
1838         xfs_itrace_entry(dp);
1839         xfs_itrace_entry(ip);
1840
1841         if (XFS_FORCED_SHUTDOWN(mp))
1842                 return XFS_ERROR(EIO);
1843
1844         if (DM_EVENT_ENABLED(dp, DM_EVENT_REMOVE)) {
1845                 error = XFS_SEND_NAMESP(mp, DM_EVENT_REMOVE, dp, DM_RIGHT_NULL,
1846                                         NULL, DM_RIGHT_NULL, name->name, NULL,
1847                                         ip->i_d.di_mode, 0, 0);
1848                 if (error)
1849                         return error;
1850         }
1851
1852         error = xfs_qm_dqattach(dp, 0);
1853         if (error)
1854                 goto std_return;
1855
1856         error = xfs_qm_dqattach(ip, 0);
1857         if (error)
1858                 goto std_return;
1859
1860         if (is_dir) {
1861                 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
1862                 log_count = XFS_DEFAULT_LOG_COUNT;
1863         } else {
1864                 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
1865                 log_count = XFS_REMOVE_LOG_COUNT;
1866         }
1867         cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1868
1869         /*
1870          * We try to get the real space reservation first,
1871          * allowing for directory btree deletion(s) implying
1872          * possible bmap insert(s).  If we can't get the space
1873          * reservation then we use 0 instead, and avoid the bmap
1874          * btree insert(s) in the directory code by, if the bmap
1875          * insert tries to happen, instead trimming the LAST
1876          * block from the directory.
1877          */
1878         resblks = XFS_REMOVE_SPACE_RES(mp);
1879         error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
1880                                   XFS_TRANS_PERM_LOG_RES, log_count);
1881         if (error == ENOSPC) {
1882                 resblks = 0;
1883                 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
1884                                           XFS_TRANS_PERM_LOG_RES, log_count);
1885         }
1886         if (error) {
1887                 ASSERT(error != ENOSPC);
1888                 cancel_flags = 0;
1889                 goto out_trans_cancel;
1890         }
1891
1892         xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
1893
1894         /*
1895          * At this point, we've gotten both the directory and the entry
1896          * inodes locked.
1897          */
1898         IHOLD(ip);
1899         xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1900
1901         IHOLD(dp);
1902         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1903
1904         /*
1905          * If we're removing a directory perform some additional validation.
1906          */
1907         if (is_dir) {
1908                 ASSERT(ip->i_d.di_nlink >= 2);
1909                 if (ip->i_d.di_nlink != 2) {
1910                         error = XFS_ERROR(ENOTEMPTY);
1911                         goto out_trans_cancel;
1912                 }
1913                 if (!xfs_dir_isempty(ip)) {
1914                         error = XFS_ERROR(ENOTEMPTY);
1915                         goto out_trans_cancel;
1916                 }
1917         }
1918
1919         xfs_bmap_init(&free_list, &first_block);
1920         error = xfs_dir_removename(tp, dp, name, ip->i_ino,
1921                                         &first_block, &free_list, resblks);
1922         if (error) {
1923                 ASSERT(error != ENOENT);
1924                 goto out_bmap_cancel;
1925         }
1926         xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1927
1928         if (is_dir) {
1929                 /*
1930                  * Drop the link from ip's "..".
1931                  */
1932                 error = xfs_droplink(tp, dp);
1933                 if (error)
1934                         goto out_bmap_cancel;
1935
1936                 /*
1937                  * Drop the "." link from ip to self.
1938                  */
1939                 error = xfs_droplink(tp, ip);
1940                 if (error)
1941                         goto out_bmap_cancel;
1942         } else {
1943                 /*
1944                  * When removing a non-directory we need to log the parent
1945                  * inode here.  For a directory this is done implicitly
1946                  * by the xfs_droplink call for the ".." entry.
1947                  */
1948                 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1949         }
1950
1951         /*
1952          * Drop the link from dp to ip.
1953          */
1954         error = xfs_droplink(tp, ip);
1955         if (error)
1956                 goto out_bmap_cancel;
1957
1958         /*
1959          * Determine if this is the last link while
1960          * we are in the transaction.
1961          */
1962         link_zero = (ip->i_d.di_nlink == 0);
1963
1964         /*
1965          * If this is a synchronous mount, make sure that the
1966          * remove transaction goes to disk before returning to
1967          * the user.
1968          */
1969         if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
1970                 xfs_trans_set_sync(tp);
1971
1972         error = xfs_bmap_finish(&tp, &free_list, &committed);
1973         if (error)
1974                 goto out_bmap_cancel;
1975
1976         error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1977         if (error)
1978                 goto std_return;
1979
1980         /*
1981          * If we are using filestreams, kill the stream association.
1982          * If the file is still open it may get a new one but that
1983          * will get killed on last close in xfs_close() so we don't
1984          * have to worry about that.
1985          */
1986         if (!is_dir && link_zero && xfs_inode_is_filestream(ip))
1987                 xfs_filestream_deassociate(ip);
1988
1989  std_return:
1990         if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTREMOVE)) {
1991                 XFS_SEND_NAMESP(mp, DM_EVENT_POSTREMOVE, dp, DM_RIGHT_NULL,
1992                                 NULL, DM_RIGHT_NULL, name->name, NULL,
1993                                 ip->i_d.di_mode, error, 0);
1994         }
1995
1996         return error;
1997
1998  out_bmap_cancel:
1999         xfs_bmap_cancel(&free_list);
2000         cancel_flags |= XFS_TRANS_ABORT;
2001  out_trans_cancel:
2002         xfs_trans_cancel(tp, cancel_flags);
2003         goto std_return;
2004 }
2005
2006 int
2007 xfs_link(
2008         xfs_inode_t             *tdp,
2009         xfs_inode_t             *sip,
2010         struct xfs_name         *target_name)
2011 {
2012         xfs_mount_t             *mp = tdp->i_mount;
2013         xfs_trans_t             *tp;
2014         int                     error;
2015         xfs_bmap_free_t         free_list;
2016         xfs_fsblock_t           first_block;
2017         int                     cancel_flags;
2018         int                     committed;
2019         int                     resblks;
2020
2021         xfs_itrace_entry(tdp);
2022         xfs_itrace_entry(sip);
2023
2024         ASSERT(!S_ISDIR(sip->i_d.di_mode));
2025
2026         if (XFS_FORCED_SHUTDOWN(mp))
2027                 return XFS_ERROR(EIO);
2028
2029         if (DM_EVENT_ENABLED(tdp, DM_EVENT_LINK)) {
2030                 error = XFS_SEND_NAMESP(mp, DM_EVENT_LINK,
2031                                         tdp, DM_RIGHT_NULL,
2032                                         sip, DM_RIGHT_NULL,
2033                                         target_name->name, NULL, 0, 0, 0);
2034                 if (error)
2035                         return error;
2036         }
2037
2038         /* Return through std_return after this point. */
2039
2040         error = xfs_qm_dqattach(sip, 0);
2041         if (error)
2042                 goto std_return;
2043
2044         error = xfs_qm_dqattach(tdp, 0);
2045         if (error)
2046                 goto std_return;
2047
2048         tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
2049         cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2050         resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
2051         error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
2052                         XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2053         if (error == ENOSPC) {
2054                 resblks = 0;
2055                 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
2056                                 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2057         }
2058         if (error) {
2059                 cancel_flags = 0;
2060                 goto error_return;
2061         }
2062
2063         xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
2064
2065         /*
2066          * Increment vnode ref counts since xfs_trans_commit &
2067          * xfs_trans_cancel will both unlock the inodes and
2068          * decrement the associated ref counts.
2069          */
2070         IHOLD(sip);
2071         IHOLD(tdp);
2072         xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
2073         xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
2074
2075         /*
2076          * If the source has too many links, we can't make any more to it.
2077          */
2078         if (sip->i_d.di_nlink >= XFS_MAXLINK) {
2079                 error = XFS_ERROR(EMLINK);
2080                 goto error_return;
2081         }
2082
2083         /*
2084          * If we are using project inheritance, we only allow hard link
2085          * creation in our tree when the project IDs are the same; else
2086          * the tree quota mechanism could be circumvented.
2087          */
2088         if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
2089                      (tdp->i_d.di_projid != sip->i_d.di_projid))) {
2090                 error = XFS_ERROR(EXDEV);
2091                 goto error_return;
2092         }
2093
2094         error = xfs_dir_canenter(tp, tdp, target_name, resblks);
2095         if (error)
2096                 goto error_return;
2097
2098         xfs_bmap_init(&free_list, &first_block);
2099
2100         error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
2101                                         &first_block, &free_list, resblks);
2102         if (error)
2103                 goto abort_return;
2104         xfs_ichgtime(tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2105         xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
2106
2107         error = xfs_bumplink(tp, sip);
2108         if (error)
2109                 goto abort_return;
2110
2111         /*
2112          * If this is a synchronous mount, make sure that the
2113          * link transaction goes to disk before returning to
2114          * the user.
2115          */
2116         if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2117                 xfs_trans_set_sync(tp);
2118         }
2119
2120         error = xfs_bmap_finish (&tp, &free_list, &committed);
2121         if (error) {
2122                 xfs_bmap_cancel(&free_list);
2123                 goto abort_return;
2124         }
2125
2126         error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
2127         if (error)
2128                 goto std_return;
2129
2130         /* Fall through to std_return with error = 0. */
2131 std_return:
2132         if (DM_EVENT_ENABLED(sip, DM_EVENT_POSTLINK)) {
2133                 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTLINK,
2134                                 tdp, DM_RIGHT_NULL,
2135                                 sip, DM_RIGHT_NULL,
2136                                 target_name->name, NULL, 0, error, 0);
2137         }
2138         return error;
2139
2140  abort_return:
2141         cancel_flags |= XFS_TRANS_ABORT;
2142         /* FALLTHROUGH */
2143
2144  error_return:
2145         xfs_trans_cancel(tp, cancel_flags);
2146         goto std_return;
2147 }
2148
2149 int
2150 xfs_symlink(
2151         xfs_inode_t             *dp,
2152         struct xfs_name         *link_name,
2153         const char              *target_path,
2154         mode_t                  mode,
2155         xfs_inode_t             **ipp,
2156         cred_t                  *credp)
2157 {
2158         xfs_mount_t             *mp = dp->i_mount;
2159         xfs_trans_t             *tp;
2160         xfs_inode_t             *ip;
2161         int                     error;
2162         int                     pathlen;
2163         xfs_bmap_free_t         free_list;
2164         xfs_fsblock_t           first_block;
2165         boolean_t               unlock_dp_on_error = B_FALSE;
2166         uint                    cancel_flags;
2167         int                     committed;
2168         xfs_fileoff_t           first_fsb;
2169         xfs_filblks_t           fs_blocks;
2170         int                     nmaps;
2171         xfs_bmbt_irec_t         mval[SYMLINK_MAPS];
2172         xfs_daddr_t             d;
2173         const char              *cur_chunk;
2174         int                     byte_cnt;
2175         int                     n;
2176         xfs_buf_t               *bp;
2177         xfs_prid_t              prid;
2178         struct xfs_dquot        *udqp, *gdqp;
2179         uint                    resblks;
2180
2181         *ipp = NULL;
2182         error = 0;
2183         ip = NULL;
2184         tp = NULL;
2185
2186         xfs_itrace_entry(dp);
2187
2188         if (XFS_FORCED_SHUTDOWN(mp))
2189                 return XFS_ERROR(EIO);
2190
2191         /*
2192          * Check component lengths of the target path name.
2193          */
2194         pathlen = strlen(target_path);
2195         if (pathlen >= MAXPATHLEN)      /* total string too long */
2196                 return XFS_ERROR(ENAMETOOLONG);
2197
2198         if (DM_EVENT_ENABLED(dp, DM_EVENT_SYMLINK)) {
2199                 error = XFS_SEND_NAMESP(mp, DM_EVENT_SYMLINK, dp,
2200                                         DM_RIGHT_NULL, NULL, DM_RIGHT_NULL,
2201                                         link_name->name,
2202                                         (unsigned char *)target_path, 0, 0, 0);
2203                 if (error)
2204                         return error;
2205         }
2206
2207         /* Return through std_return after this point. */
2208
2209         udqp = gdqp = NULL;
2210         if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
2211                 prid = dp->i_d.di_projid;
2212         else
2213                 prid = (xfs_prid_t)dfltprid;
2214
2215         /*
2216          * Make sure that we have allocated dquot(s) on disk.
2217          */
2218         error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
2219                         XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
2220         if (error)
2221                 goto std_return;
2222
2223         tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
2224         cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2225         /*
2226          * The symlink will fit into the inode data fork?
2227          * There can't be any attributes so we get the whole variable part.
2228          */
2229         if (pathlen <= XFS_LITINO(mp))
2230                 fs_blocks = 0;
2231         else
2232                 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
2233         resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
2234         error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
2235                         XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
2236         if (error == ENOSPC && fs_blocks == 0) {
2237                 resblks = 0;
2238                 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
2239                                 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
2240         }
2241         if (error) {
2242                 cancel_flags = 0;
2243                 goto error_return;
2244         }
2245
2246         xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
2247         unlock_dp_on_error = B_TRUE;
2248
2249         /*
2250          * Check whether the directory allows new symlinks or not.
2251          */
2252         if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
2253                 error = XFS_ERROR(EPERM);
2254                 goto error_return;
2255         }
2256
2257         /*
2258          * Reserve disk quota : blocks and inode.
2259          */
2260         error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
2261         if (error)
2262                 goto error_return;
2263
2264         /*
2265          * Check for ability to enter directory entry, if no space reserved.
2266          */
2267         error = xfs_dir_canenter(tp, dp, link_name, resblks);
2268         if (error)
2269                 goto error_return;
2270         /*
2271          * Initialize the bmap freelist prior to calling either
2272          * bmapi or the directory create code.
2273          */
2274         xfs_bmap_init(&free_list, &first_block);
2275
2276         /*
2277          * Allocate an inode for the symlink.
2278          */
2279         error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT),
2280                                1, 0, credp, prid, resblks > 0, &ip, NULL);
2281         if (error) {
2282                 if (error == ENOSPC)
2283                         goto error_return;
2284                 goto error1;
2285         }
2286
2287         /*
2288          * An error after we've joined dp to the transaction will result in the
2289          * transaction cancel unlocking dp so don't do it explicitly in the
2290          * error path.
2291          */
2292         IHOLD(dp);
2293         xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2294         unlock_dp_on_error = B_FALSE;
2295
2296         /*
2297          * Also attach the dquot(s) to it, if applicable.
2298          */
2299         xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
2300
2301         if (resblks)
2302                 resblks -= XFS_IALLOC_SPACE_RES(mp);
2303         /*
2304          * If the symlink will fit into the inode, write it inline.
2305          */
2306         if (pathlen <= XFS_IFORK_DSIZE(ip)) {
2307                 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
2308                 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
2309                 ip->i_d.di_size = pathlen;
2310
2311                 /*
2312                  * The inode was initially created in extent format.
2313                  */
2314                 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
2315                 ip->i_df.if_flags |= XFS_IFINLINE;
2316
2317                 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
2318                 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
2319
2320         } else {
2321                 first_fsb = 0;
2322                 nmaps = SYMLINK_MAPS;
2323
2324                 error = xfs_bmapi(tp, ip, first_fsb, fs_blocks,
2325                                   XFS_BMAPI_WRITE | XFS_BMAPI_METADATA,
2326                                   &first_block, resblks, mval, &nmaps,
2327                                   &free_list, NULL);
2328                 if (error) {
2329                         goto error1;
2330                 }
2331
2332                 if (resblks)
2333                         resblks -= fs_blocks;
2334                 ip->i_d.di_size = pathlen;
2335                 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2336
2337                 cur_chunk = target_path;
2338                 for (n = 0; n < nmaps; n++) {
2339                         d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
2340                         byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
2341                         bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
2342                                                BTOBB(byte_cnt), 0);
2343                         ASSERT(bp && !XFS_BUF_GETERROR(bp));
2344                         if (pathlen < byte_cnt) {
2345                                 byte_cnt = pathlen;
2346                         }
2347                         pathlen -= byte_cnt;
2348
2349                         memcpy(XFS_BUF_PTR(bp), cur_chunk, byte_cnt);
2350                         cur_chunk += byte_cnt;
2351
2352                         xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
2353                 }
2354         }
2355
2356         /*
2357          * Create the directory entry for the symlink.
2358          */
2359         error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
2360                                         &first_block, &free_list, resblks);
2361         if (error)
2362                 goto error1;
2363         xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2364         xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2365
2366         /*
2367          * If this is a synchronous mount, make sure that the
2368          * symlink transaction goes to disk before returning to
2369          * the user.
2370          */
2371         if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2372                 xfs_trans_set_sync(tp);
2373         }
2374
2375         /*
2376          * xfs_trans_commit normally decrements the vnode ref count
2377          * when it unlocks the inode. Since we want to return the
2378          * vnode to the caller, we bump the vnode ref count now.
2379          */
2380         IHOLD(ip);
2381
2382         error = xfs_bmap_finish(&tp, &free_list, &committed);
2383         if (error) {
2384                 goto error2;
2385         }
2386         error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
2387         xfs_qm_dqrele(udqp);
2388         xfs_qm_dqrele(gdqp);
2389
2390         /* Fall through to std_return with error = 0 or errno from
2391          * xfs_trans_commit     */
2392 std_return:
2393         if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTSYMLINK)) {
2394                 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTSYMLINK,
2395                                         dp, DM_RIGHT_NULL,
2396                                         error ? NULL : ip,
2397                                         DM_RIGHT_NULL, link_name->name,
2398                                         (unsigned char *)target_path,
2399                                         0, error, 0);
2400         }
2401
2402         if (!error)
2403                 *ipp = ip;
2404         return error;
2405
2406  error2:
2407         IRELE(ip);
2408  error1:
2409         xfs_bmap_cancel(&free_list);
2410         cancel_flags |= XFS_TRANS_ABORT;
2411  error_return:
2412         xfs_trans_cancel(tp, cancel_flags);
2413         xfs_qm_dqrele(udqp);
2414         xfs_qm_dqrele(gdqp);
2415
2416         if (unlock_dp_on_error)
2417                 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2418
2419         goto std_return;
2420 }
2421
2422 int
2423 xfs_set_dmattrs(
2424         xfs_inode_t     *ip,
2425         u_int           evmask,
2426         u_int16_t       state)
2427 {
2428         xfs_mount_t     *mp = ip->i_mount;
2429         xfs_trans_t     *tp;
2430         int             error;
2431
2432         if (!capable(CAP_SYS_ADMIN))
2433                 return XFS_ERROR(EPERM);
2434
2435         if (XFS_FORCED_SHUTDOWN(mp))
2436                 return XFS_ERROR(EIO);
2437
2438         tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
2439         error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
2440         if (error) {
2441                 xfs_trans_cancel(tp, 0);
2442                 return error;
2443         }
2444         xfs_ilock(ip, XFS_ILOCK_EXCL);
2445         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2446
2447         ip->i_d.di_dmevmask = evmask;
2448         ip->i_d.di_dmstate  = state;
2449
2450         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2451         IHOLD(ip);
2452         error = xfs_trans_commit(tp, 0);
2453
2454         return error;
2455 }
2456
2457 /*
2458  * xfs_alloc_file_space()
2459  *      This routine allocates disk space for the given file.
2460  *
2461  *      If alloc_type == 0, this request is for an ALLOCSP type
2462  *      request which will change the file size.  In this case, no
2463  *      DMAPI event will be generated by the call.  A TRUNCATE event
2464  *      will be generated later by xfs_setattr.
2465  *
2466  *      If alloc_type != 0, this request is for a RESVSP type
2467  *      request, and a DMAPI DM_EVENT_WRITE will be generated if the
2468  *      lower block boundary byte address is less than the file's
2469  *      length.
2470  *
2471  * RETURNS:
2472  *       0 on success
2473  *      errno on error
2474  *
2475  */
2476 STATIC int
2477 xfs_alloc_file_space(
2478         xfs_inode_t             *ip,
2479         xfs_off_t               offset,
2480         xfs_off_t               len,
2481         int                     alloc_type,
2482         int                     attr_flags)
2483 {
2484         xfs_mount_t             *mp = ip->i_mount;
2485         xfs_off_t               count;
2486         xfs_filblks_t           allocated_fsb;
2487         xfs_filblks_t           allocatesize_fsb;
2488         xfs_extlen_t            extsz, temp;
2489         xfs_fileoff_t           startoffset_fsb;
2490         xfs_fsblock_t           firstfsb;
2491         int                     nimaps;
2492         int                     bmapi_flag;
2493         int                     quota_flag;
2494         int                     rt;
2495         xfs_trans_t             *tp;
2496         xfs_bmbt_irec_t         imaps[1], *imapp;
2497         xfs_bmap_free_t         free_list;
2498         uint                    qblocks, resblks, resrtextents;
2499         int                     committed;
2500         int                     error;
2501
2502         xfs_itrace_entry(ip);
2503
2504         if (XFS_FORCED_SHUTDOWN(mp))
2505                 return XFS_ERROR(EIO);
2506
2507         error = xfs_qm_dqattach(ip, 0);
2508         if (error)
2509                 return error;
2510
2511         if (len <= 0)
2512                 return XFS_ERROR(EINVAL);
2513
2514         rt = XFS_IS_REALTIME_INODE(ip);
2515         extsz = xfs_get_extsz_hint(ip);
2516
2517         count = len;
2518         imapp = &imaps[0];
2519         nimaps = 1;
2520         bmapi_flag = XFS_BMAPI_WRITE | (alloc_type ? XFS_BMAPI_PREALLOC : 0);
2521         startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
2522         allocatesize_fsb = XFS_B_TO_FSB(mp, count);
2523
2524         /*      Generate a DMAPI event if needed.       */
2525         if (alloc_type != 0 && offset < ip->i_size &&
2526                         (attr_flags & XFS_ATTR_DMI) == 0  &&
2527                         DM_EVENT_ENABLED(ip, DM_EVENT_WRITE)) {
2528                 xfs_off_t           end_dmi_offset;
2529
2530                 end_dmi_offset = offset+len;
2531                 if (end_dmi_offset > ip->i_size)
2532                         end_dmi_offset = ip->i_size;
2533                 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip, offset,
2534                                       end_dmi_offset - offset, 0, NULL);
2535                 if (error)
2536                         return error;
2537         }
2538
2539         /*
2540          * Allocate file space until done or until there is an error
2541          */
2542 retry:
2543         while (allocatesize_fsb && !error) {
2544                 xfs_fileoff_t   s, e;
2545
2546                 /*
2547                  * Determine space reservations for data/realtime.
2548                  */
2549                 if (unlikely(extsz)) {
2550                         s = startoffset_fsb;
2551                         do_div(s, extsz);
2552                         s *= extsz;
2553                         e = startoffset_fsb + allocatesize_fsb;
2554                         if ((temp = do_mod(startoffset_fsb, extsz)))
2555                                 e += temp;
2556                         if ((temp = do_mod(e, extsz)))
2557                                 e += extsz - temp;
2558                 } else {
2559                         s = 0;
2560                         e = allocatesize_fsb;
2561                 }
2562
2563                 if (unlikely(rt)) {
2564                         resrtextents = qblocks = (uint)(e - s);
2565                         resrtextents /= mp->m_sb.sb_rextsize;
2566                         resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
2567                         quota_flag = XFS_QMOPT_RES_RTBLKS;
2568                 } else {
2569                         resrtextents = 0;
2570                         resblks = qblocks = \
2571                                 XFS_DIOSTRAT_SPACE_RES(mp, (uint)(e - s));
2572                         quota_flag = XFS_QMOPT_RES_REGBLKS;
2573                 }
2574
2575                 /*
2576                  * Allocate and setup the transaction.
2577                  */
2578                 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
2579                 error = xfs_trans_reserve(tp, resblks,
2580                                           XFS_WRITE_LOG_RES(mp), resrtextents,
2581                                           XFS_TRANS_PERM_LOG_RES,
2582                                           XFS_WRITE_LOG_COUNT);
2583                 /*
2584                  * Check for running out of space
2585                  */
2586                 if (error) {
2587                         /*
2588                          * Free the transaction structure.
2589                          */
2590                         ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
2591                         xfs_trans_cancel(tp, 0);
2592                         break;
2593                 }
2594                 xfs_ilock(ip, XFS_ILOCK_EXCL);
2595                 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
2596                                                       0, quota_flag);
2597                 if (error)
2598                         goto error1;
2599
2600                 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2601                 xfs_trans_ihold(tp, ip);
2602
2603                 /*
2604                  * Issue the xfs_bmapi() call to allocate the blocks
2605                  */
2606                 xfs_bmap_init(&free_list, &firstfsb);
2607                 error = xfs_bmapi(tp, ip, startoffset_fsb,
2608                                   allocatesize_fsb, bmapi_flag,
2609                                   &firstfsb, 0, imapp, &nimaps,
2610                                   &free_list, NULL);
2611                 if (error) {
2612                         goto error0;
2613                 }
2614
2615                 /*
2616                  * Complete the transaction
2617                  */
2618                 error = xfs_bmap_finish(&tp, &free_list, &committed);
2619                 if (error) {
2620                         goto error0;
2621                 }
2622
2623                 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
2624                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2625                 if (error) {
2626                         break;
2627                 }
2628
2629                 allocated_fsb = imapp->br_blockcount;
2630
2631                 if (nimaps == 0) {
2632                         error = XFS_ERROR(ENOSPC);
2633                         break;
2634                 }
2635
2636                 startoffset_fsb += allocated_fsb;
2637                 allocatesize_fsb -= allocated_fsb;
2638         }
2639 dmapi_enospc_check:
2640         if (error == ENOSPC && (attr_flags & XFS_ATTR_DMI) == 0 &&
2641             DM_EVENT_ENABLED(ip, DM_EVENT_NOSPACE)) {
2642                 error = XFS_SEND_NAMESP(mp, DM_EVENT_NOSPACE,
2643                                 ip, DM_RIGHT_NULL,
2644                                 ip, DM_RIGHT_NULL,
2645                                 NULL, NULL, 0, 0, 0); /* Delay flag intentionally unused */
2646                 if (error == 0)
2647                         goto retry;     /* Maybe DMAPI app. has made space */
2648                 /* else fall through with error from XFS_SEND_DATA */
2649         }
2650
2651         return error;
2652
2653 error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
2654         xfs_bmap_cancel(&free_list);
2655         xfs_trans_unreserve_quota_nblks(tp, ip, qblocks, 0, quota_flag);
2656
2657 error1: /* Just cancel transaction */
2658         xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
2659         xfs_iunlock(ip, XFS_ILOCK_EXCL);
2660         goto dmapi_enospc_check;
2661 }
2662
2663 /*
2664  * Zero file bytes between startoff and endoff inclusive.
2665  * The iolock is held exclusive and no blocks are buffered.
2666  *
2667  * This function is used by xfs_free_file_space() to zero
2668  * partial blocks when the range to free is not block aligned.
2669  * When unreserving space with boundaries that are not block
2670  * aligned we round up the start and round down the end
2671  * boundaries and then use this function to zero the parts of
2672  * the blocks that got dropped during the rounding.
2673  */
2674 STATIC int
2675 xfs_zero_remaining_bytes(
2676         xfs_inode_t             *ip,
2677         xfs_off_t               startoff,
2678         xfs_off_t               endoff)
2679 {
2680         xfs_bmbt_irec_t         imap;
2681         xfs_fileoff_t           offset_fsb;
2682         xfs_off_t               lastoffset;
2683         xfs_off_t               offset;
2684         xfs_buf_t               *bp;
2685         xfs_mount_t             *mp = ip->i_mount;
2686         int                     nimap;
2687         int                     error = 0;
2688
2689         /*
2690          * Avoid doing I/O beyond eof - it's not necessary
2691          * since nothing can read beyond eof.  The space will
2692          * be zeroed when the file is extended anyway.
2693          */
2694         if (startoff >= ip->i_size)
2695                 return 0;
2696
2697         if (endoff > ip->i_size)
2698                 endoff = ip->i_size;
2699
2700         bp = xfs_buf_get_noaddr(mp->m_sb.sb_blocksize,
2701                                 XFS_IS_REALTIME_INODE(ip) ?
2702                                 mp->m_rtdev_targp : mp->m_ddev_targp);
2703         if (!bp)
2704                 return XFS_ERROR(ENOMEM);
2705
2706         for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
2707                 offset_fsb = XFS_B_TO_FSBT(mp, offset);
2708                 nimap = 1;
2709                 error = xfs_bmapi(NULL, ip, offset_fsb, 1, 0,
2710                         NULL, 0, &imap, &nimap, NULL, NULL);
2711                 if (error || nimap < 1)
2712                         break;
2713                 ASSERT(imap.br_blockcount >= 1);
2714                 ASSERT(imap.br_startoff == offset_fsb);
2715                 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
2716                 if (lastoffset > endoff)
2717                         lastoffset = endoff;
2718                 if (imap.br_startblock == HOLESTARTBLOCK)
2719                         continue;
2720                 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2721                 if (imap.br_state == XFS_EXT_UNWRITTEN)
2722                         continue;
2723                 XFS_BUF_UNDONE(bp);
2724                 XFS_BUF_UNWRITE(bp);
2725                 XFS_BUF_READ(bp);
2726                 XFS_BUF_SET_ADDR(bp, xfs_fsb_to_db(ip, imap.br_startblock));
2727                 xfsbdstrat(mp, bp);
2728                 error = xfs_iowait(bp);
2729                 if (error) {
2730                         xfs_ioerror_alert("xfs_zero_remaining_bytes(read)",
2731                                           mp, bp, XFS_BUF_ADDR(bp));
2732                         break;
2733                 }
2734                 memset(XFS_BUF_PTR(bp) +
2735                         (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
2736                       0, lastoffset - offset + 1);
2737                 XFS_BUF_UNDONE(bp);
2738                 XFS_BUF_UNREAD(bp);
2739                 XFS_BUF_WRITE(bp);
2740                 xfsbdstrat(mp, bp);
2741                 error = xfs_iowait(bp);
2742                 if (error) {
2743                         xfs_ioerror_alert("xfs_zero_remaining_bytes(write)",
2744                                           mp, bp, XFS_BUF_ADDR(bp));
2745                         break;
2746                 }
2747         }
2748         xfs_buf_free(bp);
2749         return error;
2750 }
2751
2752 /*
2753  * xfs_free_file_space()
2754  *      This routine frees disk space for the given file.
2755  *
2756  *      This routine is only called by xfs_change_file_space
2757  *      for an UNRESVSP type call.
2758  *
2759  * RETURNS:
2760  *       0 on success
2761  *      errno on error
2762  *
2763  */
2764 STATIC int
2765 xfs_free_file_space(
2766         xfs_inode_t             *ip,
2767         xfs_off_t               offset,
2768         xfs_off_t               len,
2769         int                     attr_flags)
2770 {
2771         int                     committed;
2772         int                     done;
2773         xfs_off_t               end_dmi_offset;
2774         xfs_fileoff_t           endoffset_fsb;
2775         int                     error;
2776         xfs_fsblock_t           firstfsb;
2777         xfs_bmap_free_t         free_list;
2778         xfs_bmbt_irec_t         imap;
2779         xfs_off_t               ioffset;
2780         xfs_extlen_t            mod=0;
2781         xfs_mount_t             *mp;
2782         int                     nimap;
2783         uint                    resblks;
2784         uint                    rounding;
2785         int                     rt;
2786         xfs_fileoff_t           startoffset_fsb;
2787         xfs_trans_t             *tp;
2788         int                     need_iolock = 1;
2789
2790         mp = ip->i_mount;
2791
2792         xfs_itrace_entry(ip);
2793
2794         error = xfs_qm_dqattach(ip, 0);
2795         if (error)
2796                 return error;
2797
2798         error = 0;
2799         if (len <= 0)   /* if nothing being freed */
2800                 return error;
2801         rt = XFS_IS_REALTIME_INODE(ip);
2802         startoffset_fsb = XFS_B_TO_FSB(mp, offset);
2803         end_dmi_offset = offset + len;
2804         endoffset_fsb = XFS_B_TO_FSBT(mp, end_dmi_offset);
2805
2806         if (offset < ip->i_size && (attr_flags & XFS_ATTR_DMI) == 0 &&
2807             DM_EVENT_ENABLED(ip, DM_EVENT_WRITE)) {
2808                 if (end_dmi_offset > ip->i_size)
2809                         end_dmi_offset = ip->i_size;
2810                 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip,
2811                                 offset, end_dmi_offset - offset,
2812                                 AT_DELAY_FLAG(attr_flags), NULL);
2813                 if (error)
2814                         return error;
2815         }
2816
2817         if (attr_flags & XFS_ATTR_NOLOCK)
2818                 need_iolock = 0;
2819         if (need_iolock) {
2820                 xfs_ilock(ip, XFS_IOLOCK_EXCL);
2821                 /* wait for the completion of any pending DIOs */
2822                 xfs_ioend_wait(ip);
2823         }
2824
2825         rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE);
2826         ioffset = offset & ~(rounding - 1);
2827
2828         if (VN_CACHED(VFS_I(ip)) != 0) {
2829                 error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED);
2830                 if (error)
2831                         goto out_unlock_iolock;
2832         }
2833
2834         /*
2835          * Need to zero the stuff we're not freeing, on disk.
2836          * If it's a realtime file & can't use unwritten extents then we
2837          * actually need to zero the extent edges.  Otherwise xfs_bunmapi
2838          * will take care of it for us.
2839          */
2840         if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
2841                 nimap = 1;
2842                 error = xfs_bmapi(NULL, ip, startoffset_fsb,
2843                         1, 0, NULL, 0, &imap, &nimap, NULL, NULL);
2844                 if (error)
2845                         goto out_unlock_iolock;
2846                 ASSERT(nimap == 0 || nimap == 1);
2847                 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
2848                         xfs_daddr_t     block;
2849
2850                         ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2851                         block = imap.br_startblock;
2852                         mod = do_div(block, mp->m_sb.sb_rextsize);
2853                         if (mod)
2854                                 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
2855                 }
2856                 nimap = 1;
2857                 error = xfs_bmapi(NULL, ip, endoffset_fsb - 1,
2858                         1, 0, NULL, 0, &imap, &nimap, NULL, NULL);
2859                 if (error)
2860                         goto out_unlock_iolock;
2861                 ASSERT(nimap == 0 || nimap == 1);
2862                 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
2863                         ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
2864                         mod++;
2865                         if (mod && (mod != mp->m_sb.sb_rextsize))
2866                                 endoffset_fsb -= mod;
2867                 }
2868         }
2869         if ((done = (endoffset_fsb <= startoffset_fsb)))
2870                 /*
2871                  * One contiguous piece to clear
2872                  */
2873                 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
2874         else {
2875                 /*
2876                  * Some full blocks, possibly two pieces to clear
2877                  */
2878                 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
2879                         error = xfs_zero_remaining_bytes(ip, offset,
2880                                 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
2881                 if (!error &&
2882                     XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
2883                         error = xfs_zero_remaining_bytes(ip,
2884                                 XFS_FSB_TO_B(mp, endoffset_fsb),
2885                                 offset + len - 1);
2886         }
2887
2888         /*
2889          * free file space until done or until there is an error
2890          */
2891         resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
2892         while (!error && !done) {
2893
2894                 /*
2895                  * allocate and setup the transaction. Allow this
2896                  * transaction to dip into the reserve blocks to ensure
2897                  * the freeing of the space succeeds at ENOSPC.
2898                  */
2899                 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
2900                 tp->t_flags |= XFS_TRANS_RESERVE;
2901                 error = xfs_trans_reserve(tp,
2902                                           resblks,
2903                                           XFS_WRITE_LOG_RES(mp),
2904                                           0,
2905                                           XFS_TRANS_PERM_LOG_RES,
2906                                           XFS_WRITE_LOG_COUNT);
2907
2908                 /*
2909                  * check for running out of space
2910                  */
2911                 if (error) {
2912                         /*
2913                          * Free the transaction structure.
2914                          */
2915                         ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
2916                         xfs_trans_cancel(tp, 0);
2917                         break;
2918                 }
2919                 xfs_ilock(ip, XFS_ILOCK_EXCL);
2920                 error = xfs_trans_reserve_quota(tp, mp,
2921                                 ip->i_udquot, ip->i_gdquot,
2922                                 resblks, 0, XFS_QMOPT_RES_REGBLKS);
2923                 if (error)
2924                         goto error1;
2925
2926                 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2927                 xfs_trans_ihold(tp, ip);
2928
2929                 /*
2930                  * issue the bunmapi() call to free the blocks
2931                  */
2932                 xfs_bmap_init(&free_list, &firstfsb);
2933                 error = xfs_bunmapi(tp, ip, startoffset_fsb,
2934                                   endoffset_fsb - startoffset_fsb,
2935                                   0, 2, &firstfsb, &free_list, NULL, &done);
2936                 if (error) {
2937                         goto error0;
2938                 }
2939
2940                 /*
2941                  * complete the transaction
2942                  */
2943                 error = xfs_bmap_finish(&tp, &free_list, &committed);
2944                 if (error) {
2945                         goto error0;
2946                 }
2947
2948                 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
2949                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2950         }
2951
2952  out_unlock_iolock:
2953         if (need_iolock)
2954                 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
2955         return error;
2956
2957  error0:
2958         xfs_bmap_cancel(&free_list);
2959  error1:
2960         xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
2961         xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
2962                     XFS_ILOCK_EXCL);
2963         return error;
2964 }
2965
2966 /*
2967  * xfs_change_file_space()
2968  *      This routine allocates or frees disk space for the given file.
2969  *      The user specified parameters are checked for alignment and size
2970  *      limitations.
2971  *
2972  * RETURNS:
2973  *       0 on success
2974  *      errno on error
2975  *
2976  */
2977 int
2978 xfs_change_file_space(
2979         xfs_inode_t     *ip,
2980         int             cmd,
2981         xfs_flock64_t   *bf,
2982         xfs_off_t       offset,
2983         int             attr_flags)
2984 {
2985         xfs_mount_t     *mp = ip->i_mount;
2986         int             clrprealloc;
2987         int             error;
2988         xfs_fsize_t     fsize;
2989         int             setprealloc;
2990         xfs_off_t       startoffset;
2991         xfs_off_t       llen;
2992         xfs_trans_t     *tp;
2993         struct iattr    iattr;
2994
2995         xfs_itrace_entry(ip);
2996
2997         if (!S_ISREG(ip->i_d.di_mode))
2998                 return XFS_ERROR(EINVAL);
2999
3000         switch (bf->l_whence) {
3001         case 0: /*SEEK_SET*/
3002                 break;
3003         case 1: /*SEEK_CUR*/
3004                 bf->l_start += offset;
3005                 break;
3006         case 2: /*SEEK_END*/
3007                 bf->l_start += ip->i_size;
3008                 break;
3009         default:
3010                 return XFS_ERROR(EINVAL);
3011         }
3012
3013         llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
3014
3015         if (   (bf->l_start < 0)
3016             || (bf->l_start > XFS_MAXIOFFSET(mp))
3017             || (bf->l_start + llen < 0)
3018             || (bf->l_start + llen > XFS_MAXIOFFSET(mp)))
3019                 return XFS_ERROR(EINVAL);
3020
3021         bf->l_whence = 0;
3022
3023         startoffset = bf->l_start;
3024         fsize = ip->i_size;
3025
3026         /*
3027          * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
3028          * file space.
3029          * These calls do NOT zero the data space allocated to the file,
3030          * nor do they change the file size.
3031          *
3032          * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
3033          * space.
3034          * These calls cause the new file data to be zeroed and the file
3035          * size to be changed.
3036          */
3037         setprealloc = clrprealloc = 0;
3038
3039         switch (cmd) {
3040         case XFS_IOC_RESVSP:
3041         case XFS_IOC_RESVSP64:
3042                 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
3043                                                                 1, attr_flags);
3044                 if (error)
3045                         return error;
3046                 setprealloc = 1;
3047                 break;
3048
3049         case XFS_IOC_UNRESVSP:
3050         case XFS_IOC_UNRESVSP64:
3051                 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
3052                                                                 attr_flags)))
3053                         return error;
3054                 break;
3055
3056         case XFS_IOC_ALLOCSP:
3057         case XFS_IOC_ALLOCSP64:
3058         case XFS_IOC_FREESP:
3059         case XFS_IOC_FREESP64:
3060                 if (startoffset > fsize) {
3061                         error = xfs_alloc_file_space(ip, fsize,
3062                                         startoffset - fsize, 0, attr_flags);
3063                         if (error)
3064                                 break;
3065                 }
3066
3067                 iattr.ia_valid = ATTR_SIZE;
3068                 iattr.ia_size = startoffset;
3069
3070                 error = xfs_setattr(ip, &iattr, attr_flags);
3071
3072                 if (error)
3073                         return error;
3074
3075                 clrprealloc = 1;
3076                 break;
3077
3078         default:
3079                 ASSERT(0);
3080                 return XFS_ERROR(EINVAL);
3081         }
3082
3083         /*
3084          * update the inode timestamp, mode, and prealloc flag bits
3085          */
3086         tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
3087
3088         if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
3089                                       0, 0, 0))) {
3090                 /* ASSERT(0); */
3091                 xfs_trans_cancel(tp, 0);
3092                 return error;
3093         }
3094
3095         xfs_ilock(ip, XFS_ILOCK_EXCL);
3096
3097         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3098         xfs_trans_ihold(tp, ip);
3099
3100         if ((attr_flags & XFS_ATTR_DMI) == 0) {
3101                 ip->i_d.di_mode &= ~S_ISUID;
3102
3103                 /*
3104                  * Note that we don't have to worry about mandatory
3105                  * file locking being disabled here because we only
3106                  * clear the S_ISGID bit if the Group execute bit is
3107                  * on, but if it was on then mandatory locking wouldn't
3108                  * have been enabled.
3109                  */
3110                 if (ip->i_d.di_mode & S_IXGRP)
3111                         ip->i_d.di_mode &= ~S_ISGID;
3112
3113                 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3114         }
3115         if (setprealloc)
3116                 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
3117         else if (clrprealloc)
3118                 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
3119
3120         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3121         xfs_trans_set_sync(tp);
3122
3123         error = xfs_trans_commit(tp, 0);
3124
3125         xfs_iunlock(ip, XFS_ILOCK_EXCL);
3126
3127         return error;
3128 }