xfs: cleanup up xfs_log_force calling conventions
[deliverable/linux.git] / fs / xfs / xfs_vnodeops.c
CommitLineData
1da177e4 1/*
3e57ecf6 2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
7b718769 3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
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
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
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.
1da177e4 13 *
7b718769
NS
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
1da177e4 17 */
16f7e0fe 18
1da177e4 19#include "xfs.h"
a844f451 20#include "xfs_fs.h"
1da177e4 21#include "xfs_types.h"
a844f451 22#include "xfs_bit.h"
1da177e4 23#include "xfs_log.h"
a844f451 24#include "xfs_inum.h"
1da177e4
LT
25#include "xfs_trans.h"
26#include "xfs_sb.h"
27#include "xfs_ag.h"
1da177e4
LT
28#include "xfs_dir2.h"
29#include "xfs_dmapi.h"
30#include "xfs_mount.h"
a844f451 31#include "xfs_da_btree.h"
1da177e4 32#include "xfs_bmap_btree.h"
a844f451 33#include "xfs_alloc_btree.h"
1da177e4 34#include "xfs_ialloc_btree.h"
1da177e4 35#include "xfs_dir2_sf.h"
a844f451 36#include "xfs_attr_sf.h"
1da177e4 37#include "xfs_dinode.h"
1da177e4 38#include "xfs_inode.h"
a844f451 39#include "xfs_inode_item.h"
a844f451
NS
40#include "xfs_itable.h"
41#include "xfs_btree.h"
42#include "xfs_ialloc.h"
43#include "xfs_alloc.h"
1da177e4 44#include "xfs_bmap.h"
ef14f0c1 45#include "xfs_acl.h"
1da177e4
LT
46#include "xfs_attr.h"
47#include "xfs_rw.h"
1da177e4 48#include "xfs_error.h"
1da177e4
LT
49#include "xfs_quota.h"
50#include "xfs_utils.h"
a844f451 51#include "xfs_rtalloc.h"
1da177e4 52#include "xfs_trans_space.h"
1da177e4 53#include "xfs_log_priv.h"
2a82b8be 54#include "xfs_filestream.h"
993386c1 55#include "xfs_vnodeops.h"
0b1b213f 56#include "xfs_trace.h"
1da177e4 57
1da177e4
LT
58int
59xfs_setattr(
0f285c8a
CH
60 struct xfs_inode *ip,
61 struct iattr *iattr,
ea5a3dc8 62 int flags)
1da177e4 63{
993386c1 64 xfs_mount_t *mp = ip->i_mount;
e4f75291 65 struct inode *inode = VFS_I(ip);
0f285c8a 66 int mask = iattr->ia_valid;
1da177e4 67 xfs_trans_t *tp;
1da177e4
LT
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;
1da177e4 73 struct xfs_dquot *udqp, *gdqp, *olddquot1, *olddquot2;
5fcbab35 74 int need_iolock = 1;
1da177e4 75
cf441eeb 76 xfs_itrace_entry(ip);
1da177e4 77
bd186aa9 78 if (mp->m_flags & XFS_MOUNT_RDONLY)
1da177e4
LT
79 return XFS_ERROR(EROFS);
80
1da177e4
LT
81 if (XFS_FORCED_SHUTDOWN(mp))
82 return XFS_ERROR(EIO);
83
c4cd747e
CH
84 code = -inode_change_ok(inode, iattr);
85 if (code)
86 return code;
87
1da177e4
LT
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 */
0f285c8a 99 if (XFS_IS_QUOTA_ON(mp) && (mask & (ATTR_UID|ATTR_GID))) {
1da177e4
LT
100 uint qflags = 0;
101
0f285c8a
CH
102 if ((mask & ATTR_UID) && XFS_IS_UQUOTA_ON(mp)) {
103 uid = iattr->ia_uid;
1da177e4
LT
104 qflags |= XFS_QMOPT_UQUOTA;
105 } else {
106 uid = ip->i_d.di_uid;
107 }
0f285c8a
CH
108 if ((mask & ATTR_GID) && XFS_IS_GQUOTA_ON(mp)) {
109 gid = iattr->ia_gid;
1da177e4
LT
110 qflags |= XFS_QMOPT_GQUOTA;
111 } else {
112 gid = ip->i_d.di_gid;
113 }
25fe55e8 114
1da177e4
LT
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);
7d095257 122 code = xfs_qm_vop_dqalloc(ip, uid, gid, ip->i_d.di_projid,
25fe55e8 123 qflags, &udqp, &gdqp);
1da177e4 124 if (code)
014c2544 125 return code;
1da177e4
LT
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;
0f285c8a 134 if (flags & XFS_ATTR_NOLOCK)
5fcbab35 135 need_iolock = 0;
0f285c8a 136 if (!(mask & ATTR_SIZE)) {
d6d59bad
CH
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;
1da177e4
LT
144 }
145 } else {
eb9df39d 146 if (DM_EVENT_ENABLED(ip, DM_EVENT_TRUNCATE) &&
0f285c8a 147 !(flags & XFS_ATTR_DMI)) {
1da177e4 148 int dmflags = AT_DELAY_FLAG(flags) | DM_SEM_FLAG_WR;
bc4ac74a 149 code = XFS_SEND_DATA(mp, DM_EVENT_TRUNCATE, ip,
0f285c8a 150 iattr->ia_size, 0, dmflags, NULL);
1da177e4
LT
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
1da177e4
LT
162 /*
163 * Change file ownership. Must be the owner or privileged.
1da177e4 164 */
0f285c8a 165 if (mask & (ATTR_UID|ATTR_GID)) {
1da177e4
LT
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;
1da177e4 173 igid = ip->i_d.di_gid;
0f285c8a
CH
174 gid = (mask & ATTR_GID) ? iattr->ia_gid : igid;
175 uid = (mask & ATTR_UID) ? iattr->ia_uid : iuid;
1da177e4 176
1da177e4 177 /*
25fe55e8 178 * Do a quota reservation only if uid/gid is actually
1da177e4
LT
179 * going to change.
180 */
7d095257
CH
181 if (XFS_IS_QUOTA_RUNNING(mp) &&
182 ((XFS_IS_UQUOTA_ON(mp) && iuid != uid) ||
183 (XFS_IS_GQUOTA_ON(mp) && igid != gid))) {
1da177e4 184 ASSERT(tp);
7d095257 185 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, gdqp,
1da177e4
LT
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 */
0f285c8a 196 if (mask & ATTR_SIZE) {
1da177e4 197 /* Short circuit the truncate case for zero length files */
0f285c8a
CH
198 if (iattr->ia_size == 0 &&
199 ip->i_size == 0 && ip->i_d.di_nextents == 0) {
1da177e4
LT
200 xfs_iunlock(ip, XFS_ILOCK_EXCL);
201 lock_flags &= ~XFS_ILOCK_EXCL;
0f285c8a 202 if (mask & ATTR_CTIME)
1da177e4
LT
203 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
204 code = 0;
205 goto error_return;
206 }
207
42173f68 208 if (S_ISDIR(ip->i_d.di_mode)) {
1da177e4
LT
209 code = XFS_ERROR(EISDIR);
210 goto error_return;
42173f68 211 } else if (!S_ISREG(ip->i_d.di_mode)) {
1da177e4
LT
212 code = XFS_ERROR(EINVAL);
213 goto error_return;
214 }
c4cd747e 215
1da177e4
LT
216 /*
217 * Make sure that the dquots are attached to the inode.
218 */
7d095257 219 code = xfs_qm_dqattach_locked(ip, 0);
c4cd747e 220 if (code)
1da177e4 221 goto error_return;
1da177e4 222
c4cd747e
CH
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 */
0f285c8a 231 if (iattr->ia_size > ip->i_size) {
61436feb
CH
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 */
0f285c8a 238 code = xfs_zero_eof(ip, iattr->ia_size, ip->i_size);
374e2ac3 239 }
1da177e4 240 xfs_iunlock(ip, XFS_ILOCK_EXCL);
c32676ee
DC
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 &&
0f285c8a
CH
255 ip->i_size != ip->i_d.di_size &&
256 iattr->ia_size > ip->i_d.di_size) {
739bfb2a 257 code = xfs_flush_pages(ip,
0f285c8a 258 ip->i_d.di_size, iattr->ia_size,
0cadda1c 259 XBF_ASYNC, FI_NONE);
c32676ee
DC
260 }
261
262 /* wait for all I/O to complete */
25e41b3d 263 xfs_ioend_wait(ip);
c32676ee 264
1da177e4 265 if (!code)
0f285c8a 266 code = xfs_itruncate_data(ip, iattr->ia_size);
1da177e4
LT
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);
1da177e4 285
1da177e4
LT
286 xfs_trans_ijoin(tp, ip, lock_flags);
287 xfs_trans_ihold(tp, ip);
1da177e4 288
44d814ce
DC
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.
d6d59bad
CH
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.
44d814ce 300 */
d6d59bad
CH
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 }
44d814ce 307
0f285c8a
CH
308 if (iattr->ia_size > ip->i_size) {
309 ip->i_d.di_size = iattr->ia_size;
310 ip->i_size = iattr->ia_size;
61436feb 311 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
0f285c8a
CH
312 } else if (iattr->ia_size <= ip->i_size ||
313 (iattr->ia_size == 0 && ip->i_d.di_nextents)) {
1da177e4
LT
314 /*
315 * signal a sync transaction unless
316 * we're truncating an already unlinked
317 * file on a wsync filesystem
318 */
0f285c8a 319 code = xfs_itruncate_finish(&tp, ip, iattr->ia_size,
1da177e4
LT
320 XFS_DATA_FORK,
321 ((ip->i_d.di_nlink != 0 ||
322 !(mp->m_flags & XFS_MOUNT_WSYNC))
323 ? 1 : 0));
7d4fb40a 324 if (code)
1da177e4 325 goto abort_return;
7d4fb40a
NS
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 */
b3aea4ed 334 xfs_iflags_set(ip, XFS_ITRUNCATED);
1da177e4 335 }
c4cd747e
CH
336 } else if (tp) {
337 xfs_trans_ijoin(tp, ip, lock_flags);
338 xfs_trans_ihold(tp, ip);
1da177e4
LT
339 }
340
341 /*
342 * Change file ownership. Must be the owner or privileged.
1da177e4 343 */
0f285c8a 344 if (mask & (ATTR_UID|ATTR_GID)) {
1da177e4
LT
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) {
7d095257 361 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_UQUOTA_ON(mp)) {
0f285c8a 362 ASSERT(mask & ATTR_UID);
1da177e4 363 ASSERT(udqp);
7d095257 364 olddquot1 = xfs_qm_vop_chown(tp, ip,
1da177e4
LT
365 &ip->i_udquot, udqp);
366 }
367 ip->i_d.di_uid = uid;
f13fae2d 368 inode->i_uid = uid;
1da177e4
LT
369 }
370 if (igid != gid) {
7d095257 371 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_GQUOTA_ON(mp)) {
c8ad20ff 372 ASSERT(!XFS_IS_PQUOTA_ON(mp));
0f285c8a 373 ASSERT(mask & ATTR_GID);
1da177e4 374 ASSERT(gdqp);
7d095257 375 olddquot2 = xfs_qm_vop_chown(tp, ip,
1da177e4
LT
376 &ip->i_gdquot, gdqp);
377 }
378 ip->i_d.di_gid = gid;
f13fae2d 379 inode->i_gid = gid;
1da177e4 380 }
1da177e4
LT
381 }
382
c4cd747e
CH
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;
c4cd747e 397 }
1da177e4
LT
398
399 /*
400 * Change file access or modified times.
401 */
d6d59bad
CH
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;
1da177e4 407 }
d6d59bad 408 if (mask & ATTR_CTIME) {
f13fae2d 409 inode->i_ctime = iattr->ia_ctime;
0f285c8a
CH
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;
1da177e4 412 ip->i_update_core = 1;
d6d59bad
CH
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;
1da177e4
LT
419 }
420
421 /*
d6d59bad
CH
422 * And finally, log the inode core if any attribute in it
423 * has been changed.
1da177e4 424 */
d6d59bad
CH
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);
1da177e4
LT
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
c41564b5 435 * two sync transactions instead of one for wsync filesystems.
1da177e4
LT
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;
d6d59bad
CH
442 if (mp->m_flags & XFS_MOUNT_WSYNC)
443 xfs_trans_set_sync(tp);
1da177e4 444
d6d59bad 445 code = xfs_trans_commit(tp, commit_flags);
1da177e4 446
1da177e4
LT
447 xfs_iunlock(ip, lock_flags);
448
449 /*
450 * Release any dquot(s) the inode had kept before chown.
451 */
7d095257
CH
452 xfs_qm_dqrele(olddquot1);
453 xfs_qm_dqrele(olddquot2);
454 xfs_qm_dqrele(udqp);
455 xfs_qm_dqrele(gdqp);
1da177e4 456
ef14f0c1 457 if (code)
1da177e4 458 return code;
ef14f0c1
CH
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);
1da177e4
LT
471 }
472
eb9df39d 473 if (DM_EVENT_ENABLED(ip, DM_EVENT_ATTRIBUTE) &&
0f285c8a 474 !(flags & XFS_ATTR_DMI)) {
bc4ac74a 475 (void) XFS_SEND_NAMESP(mp, DM_EVENT_ATTRIBUTE, ip, DM_RIGHT_NULL,
1da177e4
LT
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:
7d095257
CH
485 xfs_qm_dqrele(udqp);
486 xfs_qm_dqrele(gdqp);
1da177e4
LT
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
7d4fb40a
NS
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
804c83c3
CH
503STATIC int
504xfs_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
6ad112bf
CH
527 bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt),
528 XBF_LOCK | XBF_MAPPED | XBF_DONT_BLOCK);
804c83c3
CH
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
993386c1 551int
1da177e4 552xfs_readlink(
993386c1 553 xfs_inode_t *ip,
804c83c3 554 char *link)
1da177e4 555{
804c83c3 556 xfs_mount_t *mp = ip->i_mount;
1da177e4 557 int pathlen;
1da177e4 558 int error = 0;
1da177e4 559
cf441eeb 560 xfs_itrace_entry(ip);
1da177e4
LT
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);
804c83c3 568 ASSERT(ip->i_d.di_size <= MAXPATHLEN);
1da177e4 569
804c83c3
CH
570 pathlen = ip->i_d.di_size;
571 if (!pathlen)
572 goto out;
1da177e4
LT
573
574 if (ip->i_df.if_flags & XFS_IFINLINE) {
804c83c3
CH
575 memcpy(link, ip->i_df.if_u1.if_data, pathlen);
576 link[pathlen] = '\0';
577 } else {
578 error = xfs_readlink_bmap(ip, link);
1da177e4
LT
579 }
580
804c83c3 581 out:
1da177e4 582 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1da177e4
LT
583 return error;
584}
585
1da177e4
LT
586/*
587 * xfs_fsync
588 *
978b7237
DC
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.
1da177e4 593 */
993386c1 594int
1da177e4 595xfs_fsync(
978b7237 596 xfs_inode_t *ip)
1da177e4 597{
1da177e4 598 xfs_trans_t *tp;
13e6d5cd 599 int error = 0;
f538d4da 600 int log_flushed = 0, changed = 1;
1da177e4 601
cf441eeb 602 xfs_itrace_entry(ip);
1da177e4 603
1da177e4
LT
604 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
605 return XFS_ERROR(EIO);
606
607 /*
978b7237 608 * We always need to make sure that the required inode state is safe on
13e6d5cd 609 * disk. The inode might be clean but we still might need to force the
978b7237
DC
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.
1da177e4 614 *
978b7237
DC
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.
1da177e4
LT
618 */
619 xfs_ilock(ip, XFS_ILOCK_SHARED);
620
13e6d5cd 621 if (!ip->i_update_core) {
1da177e4 622 /*
978b7237
DC
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.
1da177e4
LT
629 */
630
631 xfs_iunlock(ip, XFS_ILOCK_SHARED);
632
633 if (xfs_ipincount(ip)) {
a14a348b
CH
634 error = _xfs_log_force(ip->i_mount, XFS_LOG_SYNC,
635 &log_flushed);
f538d4da
CH
636 } else {
637 /*
978b7237
DC
638 * If the inode is not pinned and nothing has changed
639 * we don't need to flush the cache.
f538d4da
CH
640 */
641 changed = 0;
1da177e4 642 }
1da177e4
LT
643 } else {
644 /*
978b7237
DC
645 * Kick off a transaction to log the inode core to get the
646 * updates. The sync transaction will also force the log.
1da177e4
LT
647 */
648 xfs_iunlock(ip, XFS_ILOCK_SHARED);
649 tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_FSYNC_TS);
978b7237
DC
650 error = xfs_trans_reserve(tp, 0,
651 XFS_FSYNC_TS_LOG_RES(ip->i_mount), 0, 0, 0);
652 if (error) {
1da177e4
LT
653 xfs_trans_cancel(tp, 0);
654 return error;
655 }
656 xfs_ilock(ip, XFS_ILOCK_EXCL);
657
658 /*
978b7237
DC
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.
1da177e4
LT
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);
978b7237 670 xfs_trans_set_sync(tp);
1c72bf90 671 error = _xfs_trans_commit(tp, 0, &log_flushed);
1da177e4
LT
672
673 xfs_iunlock(ip, XFS_ILOCK_EXCL);
674 }
f538d4da
CH
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
c41564b5 686 * cache as well.
f538d4da 687 */
71ddabb9 688 if (XFS_IS_REALTIME_INODE(ip))
f538d4da
CH
689 xfs_blkdev_issue_flush(ip->i_mount->m_rtdev_targp);
690 }
691
1da177e4
LT
692 return error;
693}
694
c56c9631
CH
695/*
696 * Flags for xfs_free_eofblocks
697 */
698#define XFS_FREE_EOF_TRYLOCK (1<<0)
699
1da177e4 700/*
92dfe8d2
DC
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.
1da177e4 704 */
d96f8f89 705STATIC int
92dfe8d2 706xfs_free_eofblocks(
1da177e4 707 xfs_mount_t *mp,
92dfe8d2
DC
708 xfs_inode_t *ip,
709 int flags)
1da177e4
LT
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 */
ba87ea69 723 end_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)ip->i_size));
1da177e4
LT
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)
014c2544 727 return 0;
1da177e4
LT
728
729 nimaps = 1;
730 xfs_ilock(ip, XFS_ILOCK_SHARED);
541d7d3c 731 error = xfs_bmapi(NULL, ip, end_fsb, map_len, 0,
3e57ecf6 732 NULL, 0, &imap, &nimaps, NULL, NULL);
1da177e4
LT
733 xfs_iunlock(ip, XFS_ILOCK_SHARED);
734
735 if (!error && (nimaps != 0) &&
68bdb6ea
YL
736 (imap.br_startblock != HOLESTARTBLOCK ||
737 ip->i_delayed_blks)) {
1da177e4
LT
738 /*
739 * Attach the dquots to the inode up front.
740 */
7d095257
CH
741 error = xfs_qm_dqattach(ip, 0);
742 if (error)
014c2544 743 return error;
1da177e4
LT
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 */
c56c9631
CH
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 {
92dfe8d2 765 xfs_ilock(ip, XFS_IOLOCK_EXCL);
c56c9631 766 }
d3cf2094 767 error = xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE,
ba87ea69 768 ip->i_size);
d3cf2094 769 if (error) {
87ae3c24 770 xfs_trans_cancel(tp, 0);
c56c9631 771 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
d3cf2094
LM
772 return error;
773 }
1da177e4
LT
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);
014c2544 783 return error;
1da177e4
LT
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,
ba87ea69 793 ip->i_size,
1da177e4
LT
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,
1c72bf90 806 XFS_TRANS_RELEASE_LOG_RES);
1da177e4 807 }
c56c9631 808 xfs_iunlock(ip, XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL);
1da177e4 809 }
014c2544 810 return error;
1da177e4
LT
811}
812
813/*
814 * Free a symlink that has blocks associated with it.
815 */
816STATIC int
817xfs_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;
9d87c319 869 xfs_bmap_init(&free_list, &first_block);
e8c96f8c 870 nmaps = ARRAY_SIZE(mval);
1da177e4
LT
871 if ((error = xfs_bmapi(tp, ip, 0, XFS_B_TO_FSB(mp, size),
872 XFS_BMAPI_METADATA, &first_block, 0, mval, &nmaps,
3e57ecf6 873 &free_list, NULL)))
1da177e4
LT
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,
3e57ecf6 888 &first_block, &free_list, NULL, &done)))
1da177e4
LT
889 goto error1;
890 ASSERT(done);
891 /*
892 * Commit the first transaction. This logs the EFI and the inode.
893 */
f7c99b6f 894 if ((error = xfs_bmap_finish(&tp, &free_list, &committed)))
1da177e4
LT
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 /*
c41564b5 915 * Commit the transaction containing extent freeing and EFDs.
1da177e4
LT
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 */
1c72bf90 920 error = xfs_trans_commit(tp, 0);
1da177e4
LT
921 tp = ntp;
922 if (error) {
923 ASSERT(XFS_FORCED_SHUTDOWN(mp));
924 goto error0;
925 }
cc09c0dc
DC
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
1da177e4
LT
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
973STATIC int
974xfs_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;
014c2544 994 return error;
1da177e4
LT
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 }
014c2544 1007 return 0;
1da177e4
LT
1008}
1009
1da177e4
LT
1010STATIC int
1011xfs_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
579aa9ca 1019 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1da177e4
LT
1020 tp = *tpp;
1021 mp = ip->i_mount;
1022 ASSERT(ip->i_d.di_forkoff != 0);
e5720eec 1023 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1da177e4 1024 xfs_iunlock(ip, XFS_ILOCK_EXCL);
e5720eec
DC
1025 if (error)
1026 goto error_unlock;
1da177e4
LT
1027
1028 error = xfs_attr_inactive(ip);
e5720eec
DC
1029 if (error)
1030 goto error_unlock;
1da177e4
LT
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);
e5720eec
DC
1037 if (error)
1038 goto error_cancel;
1da177e4
LT
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;
014c2544 1048 return 0;
e5720eec
DC
1049
1050error_cancel:
1051 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1052 xfs_trans_cancel(tp, 0);
1053error_unlock:
1054 *tpp = NULL;
1055 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1056 return error;
1da177e4
LT
1057}
1058
993386c1 1059int
1da177e4 1060xfs_release(
993386c1 1061 xfs_inode_t *ip)
1da177e4 1062{
993386c1 1063 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
1064 int error;
1065
42173f68 1066 if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0))
1da177e4 1067 return 0;
1da177e4
LT
1068
1069 /* If this is a read-only mount, don't do this (would generate I/O) */
bd186aa9 1070 if (mp->m_flags & XFS_MOUNT_RDONLY)
1da177e4
LT
1071 return 0;
1072
2a82b8be 1073 if (!XFS_FORCED_SHUTDOWN(mp)) {
b3aea4ed
CH
1074 int truncated;
1075
2a82b8be
DC
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
fbf3ce8d
CH
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 */
09262b43 1096 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
df80c933 1097 if (truncated && VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0)
0cadda1c 1098 xfs_flush_pages(ip, 0, -1, XBF_ASYNC, FI_NONE);
fbf3ce8d
CH
1099 }
1100
1da177e4
LT
1101 if (ip->i_d.di_nlink != 0) {
1102 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
df80c933 1103 ((ip->i_size > 0) || (VN_CACHED(VFS_I(ip)) > 0 ||
68bdb6ea 1104 ip->i_delayed_blks > 0)) &&
1da177e4 1105 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
dd9f438e
NS
1106 (!(ip->i_d.di_flags &
1107 (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND)))) {
c56c9631
CH
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);
92dfe8d2 1119 if (error)
014c2544 1120 return error;
1da177e4
LT
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 */
993386c1 1135int
1da177e4 1136xfs_inactive(
993386c1 1137 xfs_inode_t *ip)
1da177e4 1138{
67fcaa73 1139 xfs_bmap_free_t free_list;
1da177e4
LT
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
cf441eeb 1147 xfs_itrace_entry(ip);
1da177e4 1148
1da177e4
LT
1149 /*
1150 * If the inode is already free, then there can be nothing
1151 * to clean up here.
1152 */
cb4c8cc1 1153 if (ip->i_d.di_mode == 0 || is_bad_inode(VFS_I(ip))) {
1da177e4
LT
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) &&
ba87ea69
LM
1166 ((ip->i_d.di_size != 0) || (ip->i_size != 0) ||
1167 (ip->i_d.di_nextents > 0) || (ip->i_delayed_blks > 0)) &&
1da177e4
LT
1168 ((ip->i_d.di_mode & S_IFMT) == S_IFREG));
1169
1170 mp = ip->i_mount;
1171
bc4ac74a
CH
1172 if (ip->i_d.di_nlink == 0 && DM_EVENT_ENABLED(ip, DM_EVENT_DESTROY))
1173 XFS_SEND_DESTROY(mp, ip, DM_RIGHT_NULL);
1da177e4
LT
1174
1175 error = 0;
1176
1177 /* If this is a read-only mount, don't do this (would generate I/O) */
bd186aa9 1178 if (mp->m_flags & XFS_MOUNT_RDONLY)
1da177e4
LT
1179 goto out;
1180
1181 if (ip->i_d.di_nlink != 0) {
1182 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
df80c933 1183 ((ip->i_size > 0) || (VN_CACHED(VFS_I(ip)) > 0 ||
68bdb6ea 1184 ip->i_delayed_blks > 0)) &&
dd9f438e
NS
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)))) {
c56c9631 1189 error = xfs_free_eofblocks(mp, ip, 0);
92dfe8d2 1190 if (error)
014c2544 1191 return VN_INACTIVE_CACHE;
1da177e4
LT
1192 }
1193 goto out;
1194 }
1195
1196 ASSERT(ip->i_d.di_nlink == 0);
1197
7d095257
CH
1198 error = xfs_qm_dqattach(ip, 0);
1199 if (error)
014c2544 1200 return VN_INACTIVE_CACHE;
1da177e4
LT
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
d3cf2094
LM
1212 error = xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE, 0);
1213 if (error) {
87ae3c24 1214 xfs_trans_cancel(tp, 0);
d3cf2094
LM
1215 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1216 return VN_INACTIVE_CACHE;
1217 }
1da177e4
LT
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);
014c2544 1228 return VN_INACTIVE_CACHE;
1da177e4
LT
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);
014c2544 1249 return VN_INACTIVE_CACHE;
1da177e4
LT
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);
014c2544 1263 return VN_INACTIVE_CACHE;
1da177e4
LT
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);
014c2544 1276 return VN_INACTIVE_CACHE;
1da177e4
LT
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)
014c2544 1298 return VN_INACTIVE_CACHE;
1da177e4
LT
1299 } else if (ip->i_afp) {
1300 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1301 }
1302
1303 /*
1304 * Free the inode.
1305 */
9d87c319 1306 xfs_bmap_init(&free_list, &first_block);
1da177e4
LT
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);
7d04a335 1318 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1da177e4
LT
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 */
7d095257 1325 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1da177e4
LT
1326
1327 /*
78e9da77
DC
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.
1da177e4 1331 */
78e9da77
DC
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);
1da177e4 1340 }
7d095257 1341
1da177e4
LT
1342 /*
1343 * Release the dquots held by inode, if any.
1344 */
7d095257 1345 xfs_qm_dqdetach(ip);
1da177e4
LT
1346 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1347
1348 out:
1349 return VN_INACTIVE_CACHE;
1350}
1351
384f3ced
BN
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 */
993386c1 1358int
1da177e4 1359xfs_lookup(
993386c1 1360 xfs_inode_t *dp,
556b8b16 1361 struct xfs_name *name,
384f3ced
BN
1362 xfs_inode_t **ipp,
1363 struct xfs_name *ci_name)
1da177e4 1364{
eca450b7 1365 xfs_ino_t inum;
1da177e4
LT
1366 int error;
1367 uint lock_mode;
1da177e4 1368
cf441eeb 1369 xfs_itrace_entry(dp);
1da177e4
LT
1370
1371 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
1372 return XFS_ERROR(EIO);
1373
1374 lock_mode = xfs_ilock_map_shared(dp);
384f3ced 1375 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
1da177e4 1376 xfs_iunlock_map_shared(dp, lock_mode);
eca450b7
CH
1377
1378 if (error)
1379 goto out;
1380
1381 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp, 0);
1382 if (error)
384f3ced 1383 goto out_free_name;
eca450b7 1384
eca450b7
CH
1385 return 0;
1386
384f3ced
BN
1387out_free_name:
1388 if (ci_name)
1389 kmem_free(ci_name->name);
1390out:
eca450b7 1391 *ipp = NULL;
1da177e4
LT
1392 return error;
1393}
1394
993386c1 1395int
1da177e4 1396xfs_create(
993386c1 1397 xfs_inode_t *dp,
556b8b16 1398 struct xfs_name *name,
3e5daf05
CH
1399 mode_t mode,
1400 xfs_dev_t rdev,
979ebab1 1401 xfs_inode_t **ipp,
1da177e4
LT
1402 cred_t *credp)
1403{
517b5e8c
CH
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;
556b8b16 1408 int error;
1da177e4
LT
1409 xfs_bmap_free_t free_list;
1410 xfs_fsblock_t first_block;
993386c1 1411 boolean_t unlock_dp_on_error = B_FALSE;
1da177e4
LT
1412 uint cancel_flags;
1413 int committed;
1414 xfs_prid_t prid;
517b5e8c
CH
1415 struct xfs_dquot *udqp = NULL;
1416 struct xfs_dquot *gdqp = NULL;
1da177e4 1417 uint resblks;
517b5e8c
CH
1418 uint log_res;
1419 uint log_count;
1da177e4 1420
cf441eeb 1421 xfs_itrace_entry(dp);
1da177e4 1422
517b5e8c
CH
1423 if (XFS_FORCED_SHUTDOWN(mp))
1424 return XFS_ERROR(EIO);
1425
eb9df39d 1426 if (DM_EVENT_ENABLED(dp, DM_EVENT_CREATE)) {
1da177e4 1427 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
bc4ac74a 1428 dp, DM_RIGHT_NULL, NULL,
556b8b16 1429 DM_RIGHT_NULL, name->name, NULL,
3e5daf05 1430 mode, 0, 0);
1da177e4
LT
1431
1432 if (error)
1433 return error;
1da177e4
LT
1434 }
1435
365ca83d
NS
1436 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1437 prid = dp->i_d.di_projid;
1da177e4 1438 else
517b5e8c 1439 prid = dfltprid;
1da177e4
LT
1440
1441 /*
1442 * Make sure that we have allocated dquot(s) on disk.
1443 */
7d095257 1444 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
517b5e8c 1445 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
1da177e4
LT
1446 if (error)
1447 goto std_return;
1448
517b5e8c
CH
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 }
1da177e4 1461
1da177e4 1462 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
517b5e8c 1463
1da177e4
LT
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 */
517b5e8c
CH
1470 error = xfs_trans_reserve(tp, resblks, log_res, 0,
1471 XFS_TRANS_PERM_LOG_RES, log_count);
1da177e4 1472 if (error == ENOSPC) {
153fec43
DC
1473 /* flush outstanding delalloc blocks and retry */
1474 xfs_flush_inodes(dp);
4734d401
CH
1475 error = xfs_trans_reserve(tp, resblks, log_res, 0,
1476 XFS_TRANS_PERM_LOG_RES, log_count);
153fec43
DC
1477 }
1478 if (error == ENOSPC) {
1479 /* No space at all so try a "no-allocation" reservation */
1da177e4 1480 resblks = 0;
517b5e8c
CH
1481 error = xfs_trans_reserve(tp, 0, log_res, 0,
1482 XFS_TRANS_PERM_LOG_RES, log_count);
1da177e4
LT
1483 }
1484 if (error) {
1485 cancel_flags = 0;
517b5e8c 1486 goto out_trans_cancel;
1da177e4
LT
1487 }
1488
f7c66ce3 1489 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
993386c1 1490 unlock_dp_on_error = B_TRUE;
1da177e4 1491
517b5e8c
CH
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 }
1da177e4 1499
517b5e8c 1500 xfs_bmap_init(&free_list, &first_block);
1da177e4
LT
1501
1502 /*
1503 * Reserve disk quota and the inode.
1504 */
7d095257 1505 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
1da177e4 1506 if (error)
517b5e8c 1507 goto out_trans_cancel;
1da177e4 1508
556b8b16
BN
1509 error = xfs_dir_canenter(tp, dp, name, resblks);
1510 if (error)
517b5e8c
CH
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);
1da177e4
LT
1520 if (error) {
1521 if (error == ENOSPC)
517b5e8c
CH
1522 goto out_trans_cancel;
1523 goto out_trans_abort;
1da177e4 1524 }
1da177e4
LT
1525
1526 /*
1527 * At this point, we've gotten a newly allocated inode.
1528 * It is locked (and joined to the transaction).
1529 */
579aa9ca 1530 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1da177e4
LT
1531
1532 /*
993386c1
CH
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.
1da177e4 1538 */
979ebab1 1539 IHOLD(dp);
1da177e4 1540 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
993386c1 1541 unlock_dp_on_error = B_FALSE;
1da177e4 1542
556b8b16 1543 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
f6c2d1fa
NS
1544 &first_block, &free_list, resblks ?
1545 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
1da177e4
LT
1546 if (error) {
1547 ASSERT(error != ENOSPC);
517b5e8c 1548 goto out_trans_abort;
1da177e4
LT
1549 }
1550 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1551 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1552
517b5e8c
CH
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
1da177e4
LT
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 */
517b5e8c 1568 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
1da177e4 1569 xfs_trans_set_sync(tp);
1da177e4 1570
1da177e4
LT
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 */
7d095257 1576 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
1da177e4
LT
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);
1da177e4 1584
f7c99b6f 1585 error = xfs_bmap_finish(&tp, &free_list, &committed);
517b5e8c
CH
1586 if (error)
1587 goto out_abort_rele;
1da177e4 1588
1c72bf90 1589 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1da177e4
LT
1590 if (error) {
1591 IRELE(ip);
517b5e8c 1592 goto out_dqrele;
1da177e4
LT
1593 }
1594
7d095257
CH
1595 xfs_qm_dqrele(udqp);
1596 xfs_qm_dqrele(gdqp);
1da177e4 1597
979ebab1 1598 *ipp = ip;
1da177e4
LT
1599
1600 /* Fallthrough to std_return with error = 0 */
517b5e8c
CH
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);
1da177e4 1606 }
517b5e8c 1607
1da177e4
LT
1608 return error;
1609
517b5e8c
CH
1610 out_bmap_cancel:
1611 xfs_bmap_cancel(&free_list);
1612 out_trans_abort:
1da177e4 1613 cancel_flags |= XFS_TRANS_ABORT;
517b5e8c
CH
1614 out_trans_cancel:
1615 xfs_trans_cancel(tp, cancel_flags);
1616 out_dqrele:
7d095257
CH
1617 xfs_qm_dqrele(udqp);
1618 xfs_qm_dqrele(gdqp);
1da177e4 1619
993386c1
CH
1620 if (unlock_dp_on_error)
1621 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1622
1da177e4
LT
1623 goto std_return;
1624
517b5e8c 1625 out_abort_rele:
1da177e4
LT
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 */
517b5e8c 1631 xfs_bmap_cancel(&free_list);
1da177e4
LT
1632 cancel_flags |= XFS_TRANS_ABORT;
1633 xfs_trans_cancel(tp, cancel_flags);
1634 IRELE(ip);
517b5e8c
CH
1635 unlock_dp_on_error = B_FALSE;
1636 goto out_dqrele;
1da177e4
LT
1637}
1638
1da177e4
LT
1639#ifdef DEBUG
1640int xfs_locked_n;
1641int xfs_small_retries;
1642int xfs_middle_retries;
1643int xfs_lots_retries;
1644int xfs_lock_delays;
1645#endif
1646
f7c66ce3
LM
1647/*
1648 * Bump the subclass so xfs_lock_inodes() acquires each lock with
1649 * a different value
1650 */
1651static inline int
1652xfs_lock_inumorder(int lock_mode, int subclass)
1653{
1654 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
0f1145cc 1655 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
f7c66ce3 1656 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
0f1145cc 1657 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
f7c66ce3
LM
1658
1659 return lock_mode;
1660}
1661
1da177e4
LT
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 */
1673void
1674xfs_lock_inodes(
1675 xfs_inode_t **ips,
1676 int inodes,
1da177e4
LT
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
cfa853e4
CH
1684 try_lock = 0;
1685 i = 0;
1da177e4
LT
1686
1687again:
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);
f7c66ce3 1723 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
1da177e4
LT
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 {
f7c66ce3 1758 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
1da177e4
LT
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
f9114eba
DC
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 */
e1cccd91
CH
1779void
1780xfs_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
f9114eba
DC
1789 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
1790 ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0);
e1cccd91
CH
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
993386c1 1820int
1da177e4 1821xfs_remove(
993386c1 1822 xfs_inode_t *dp,
556b8b16
BN
1823 struct xfs_name *name,
1824 xfs_inode_t *ip)
1da177e4 1825{
993386c1 1826 xfs_mount_t *mp = dp->i_mount;
1da177e4 1827 xfs_trans_t *tp = NULL;
8f112e3b 1828 int is_dir = S_ISDIR(ip->i_d.di_mode);
1da177e4
LT
1829 int error = 0;
1830 xfs_bmap_free_t free_list;
1831 xfs_fsblock_t first_block;
1832 int cancel_flags;
1833 int committed;
1da177e4
LT
1834 int link_zero;
1835 uint resblks;
8f112e3b 1836 uint log_count;
1da177e4 1837
cf441eeb 1838 xfs_itrace_entry(dp);
8f112e3b 1839 xfs_itrace_entry(ip);
1da177e4 1840
1da177e4
LT
1841 if (XFS_FORCED_SHUTDOWN(mp))
1842 return XFS_ERROR(EIO);
1843
eb9df39d 1844 if (DM_EVENT_ENABLED(dp, DM_EVENT_REMOVE)) {
556b8b16
BN
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);
1da177e4
LT
1848 if (error)
1849 return error;
1850 }
1851
7d095257 1852 error = xfs_qm_dqattach(dp, 0);
8f112e3b
CH
1853 if (error)
1854 goto std_return;
1855
7d095257 1856 error = xfs_qm_dqattach(ip, 0);
8f112e3b 1857 if (error)
1da177e4 1858 goto std_return;
1da177e4 1859
8f112e3b
CH
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 }
1da177e4 1867 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
8f112e3b 1868
1da177e4
LT
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,
8f112e3b 1880 XFS_TRANS_PERM_LOG_RES, log_count);
1da177e4
LT
1881 if (error == ENOSPC) {
1882 resblks = 0;
1883 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
8f112e3b 1884 XFS_TRANS_PERM_LOG_RES, log_count);
1da177e4
LT
1885 }
1886 if (error) {
1887 ASSERT(error != ENOSPC);
8f112e3b
CH
1888 cancel_flags = 0;
1889 goto out_trans_cancel;
1da177e4
LT
1890 }
1891
e1cccd91 1892 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
1da177e4
LT
1893
1894 /*
1895 * At this point, we've gotten both the directory and the entry
1896 * inodes locked.
1897 */
5df78e73 1898 IHOLD(ip);
1da177e4 1899 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
82dab941
CH
1900
1901 IHOLD(dp);
1902 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1da177e4 1903
8f112e3b
CH
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
9d87c319 1919 xfs_bmap_init(&free_list, &first_block);
556b8b16 1920 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
d4377d84 1921 &first_block, &free_list, resblks);
1da177e4
LT
1922 if (error) {
1923 ASSERT(error != ENOENT);
8f112e3b 1924 goto out_bmap_cancel;
1da177e4
LT
1925 }
1926 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1927
8f112e3b
CH
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 /*
2b7035fd 1937 * Drop the "." link from ip to self.
8f112e3b
CH
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
26c52951
DC
1945 * inode here. For a directory this is done implicitly
1946 * by the xfs_droplink call for the ".." entry.
8f112e3b
CH
1947 */
1948 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1da177e4
LT
1949 }
1950
8f112e3b 1951 /*
2b7035fd 1952 * Drop the link from dp to ip.
8f112e3b
CH
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
1da177e4
LT
1960 * we are in the transaction.
1961 */
8f112e3b 1962 link_zero = (ip->i_d.di_nlink == 0);
1da177e4 1963
1da177e4
LT
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 */
8f112e3b 1969 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
1da177e4 1970 xfs_trans_set_sync(tp);
1da177e4 1971
f7c99b6f 1972 error = xfs_bmap_finish(&tp, &free_list, &committed);
8f112e3b
CH
1973 if (error)
1974 goto out_bmap_cancel;
1da177e4 1975
1c72bf90 1976 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
5df78e73 1977 if (error)
1da177e4 1978 goto std_return;
1da177e4 1979
2a82b8be
DC
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 */
8f112e3b 1986 if (!is_dir && link_zero && xfs_inode_is_filestream(ip))
2a82b8be
DC
1987 xfs_filestream_deassociate(ip);
1988
1da177e4 1989 std_return:
eb9df39d 1990 if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTREMOVE)) {
8f112e3b
CH
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);
1da177e4 1994 }
8f112e3b 1995
1da177e4
LT
1996 return error;
1997
8f112e3b 1998 out_bmap_cancel:
1da177e4
LT
1999 xfs_bmap_cancel(&free_list);
2000 cancel_flags |= XFS_TRANS_ABORT;
8f112e3b 2001 out_trans_cancel:
1da177e4
LT
2002 xfs_trans_cancel(tp, cancel_flags);
2003 goto std_return;
1da177e4
LT
2004}
2005
993386c1 2006int
1da177e4 2007xfs_link(
993386c1 2008 xfs_inode_t *tdp,
a3da7896 2009 xfs_inode_t *sip,
556b8b16 2010 struct xfs_name *target_name)
1da177e4 2011{
993386c1 2012 xfs_mount_t *mp = tdp->i_mount;
1da177e4 2013 xfs_trans_t *tp;
1da177e4
LT
2014 int error;
2015 xfs_bmap_free_t free_list;
2016 xfs_fsblock_t first_block;
2017 int cancel_flags;
2018 int committed;
1da177e4 2019 int resblks;
1da177e4 2020
cf441eeb 2021 xfs_itrace_entry(tdp);
a3da7896 2022 xfs_itrace_entry(sip);
1da177e4 2023
a3da7896 2024 ASSERT(!S_ISDIR(sip->i_d.di_mode));
1da177e4 2025
1da177e4
LT
2026 if (XFS_FORCED_SHUTDOWN(mp))
2027 return XFS_ERROR(EIO);
2028
eb9df39d 2029 if (DM_EVENT_ENABLED(tdp, DM_EVENT_LINK)) {
1da177e4 2030 error = XFS_SEND_NAMESP(mp, DM_EVENT_LINK,
bc4ac74a
CH
2031 tdp, DM_RIGHT_NULL,
2032 sip, DM_RIGHT_NULL,
556b8b16 2033 target_name->name, NULL, 0, 0, 0);
1da177e4
LT
2034 if (error)
2035 return error;
2036 }
2037
2038 /* Return through std_return after this point. */
2039
7d095257 2040 error = xfs_qm_dqattach(sip, 0);
cb3f35bb
CH
2041 if (error)
2042 goto std_return;
2043
7d095257 2044 error = xfs_qm_dqattach(tdp, 0);
1da177e4
LT
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;
556b8b16 2050 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
1da177e4
LT
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
e1cccd91 2063 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
1da177e4
LT
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 */
a3da7896
CH
2070 IHOLD(sip);
2071 IHOLD(tdp);
1da177e4
LT
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
365ca83d
NS
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))) {
b1ecdda9 2090 error = XFS_ERROR(EXDEV);
365ca83d
NS
2091 goto error_return;
2092 }
2093
556b8b16
BN
2094 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
2095 if (error)
1da177e4
LT
2096 goto error_return;
2097
9d87c319 2098 xfs_bmap_init(&free_list, &first_block);
1da177e4 2099
556b8b16
BN
2100 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
2101 &first_block, &free_list, resblks);
1da177e4
LT
2102 if (error)
2103 goto abort_return;
2104 xfs_ichgtime(tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1da177e4
LT
2105 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
2106
2107 error = xfs_bumplink(tp, sip);
b71d300c 2108 if (error)
1da177e4 2109 goto abort_return;
1da177e4
LT
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
f7c99b6f 2120 error = xfs_bmap_finish (&tp, &free_list, &committed);
1da177e4
LT
2121 if (error) {
2122 xfs_bmap_cancel(&free_list);
2123 goto abort_return;
2124 }
2125
1c72bf90 2126 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
b71d300c 2127 if (error)
1da177e4 2128 goto std_return;
1da177e4
LT
2129
2130 /* Fall through to std_return with error = 0. */
2131std_return:
eb9df39d 2132 if (DM_EVENT_ENABLED(sip, DM_EVENT_POSTLINK)) {
1da177e4 2133 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTLINK,
bc4ac74a
CH
2134 tdp, DM_RIGHT_NULL,
2135 sip, DM_RIGHT_NULL,
556b8b16 2136 target_name->name, NULL, 0, error, 0);
1da177e4
LT
2137 }
2138 return error;
2139
2140 abort_return:
2141 cancel_flags |= XFS_TRANS_ABORT;
2142 /* FALLTHROUGH */
014c2544 2143
1da177e4
LT
2144 error_return:
2145 xfs_trans_cancel(tp, cancel_flags);
1da177e4
LT
2146 goto std_return;
2147}
b71d300c 2148
993386c1 2149int
1da177e4 2150xfs_symlink(
993386c1 2151 xfs_inode_t *dp,
556b8b16
BN
2152 struct xfs_name *link_name,
2153 const char *target_path,
3e5daf05 2154 mode_t mode,
3937be5b 2155 xfs_inode_t **ipp,
1da177e4
LT
2156 cred_t *credp)
2157{
993386c1 2158 xfs_mount_t *mp = dp->i_mount;
1da177e4 2159 xfs_trans_t *tp;
1da177e4
LT
2160 xfs_inode_t *ip;
2161 int error;
2162 int pathlen;
2163 xfs_bmap_free_t free_list;
2164 xfs_fsblock_t first_block;
993386c1 2165 boolean_t unlock_dp_on_error = B_FALSE;
1da177e4
LT
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;
556b8b16 2173 const char *cur_chunk;
1da177e4
LT
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;
1da177e4 2180
3937be5b 2181 *ipp = NULL;
1da177e4
LT
2182 error = 0;
2183 ip = NULL;
2184 tp = NULL;
2185
cf441eeb 2186 xfs_itrace_entry(dp);
1da177e4
LT
2187
2188 if (XFS_FORCED_SHUTDOWN(mp))
2189 return XFS_ERROR(EIO);
2190
1da177e4
LT
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);
1da177e4 2197
eb9df39d 2198 if (DM_EVENT_ENABLED(dp, DM_EVENT_SYMLINK)) {
bc4ac74a 2199 error = XFS_SEND_NAMESP(mp, DM_EVENT_SYMLINK, dp,
1da177e4 2200 DM_RIGHT_NULL, NULL, DM_RIGHT_NULL,
046ea753
DC
2201 link_name->name,
2202 (unsigned char *)target_path, 0, 0, 0);
1da177e4
LT
2203 if (error)
2204 return error;
2205 }
2206
2207 /* Return through std_return after this point. */
2208
2209 udqp = gdqp = NULL;
365ca83d
NS
2210 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
2211 prid = dp->i_d.di_projid;
1da177e4
LT
2212 else
2213 prid = (xfs_prid_t)dfltprid;
2214
2215 /*
2216 * Make sure that we have allocated dquot(s) on disk.
2217 */
7d095257 2218 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
1da177e4
LT
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);
556b8b16 2233 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
1da177e4
LT
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;
1da177e4
LT
2243 goto error_return;
2244 }
2245
f7c66ce3 2246 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
993386c1 2247 unlock_dp_on_error = B_TRUE;
1da177e4
LT
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 */
7d095257 2260 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, resblks, 1, 0);
1da177e4
LT
2261 if (error)
2262 goto error_return;
2263
2264 /*
2265 * Check for ability to enter directory entry, if no space reserved.
2266 */
556b8b16
BN
2267 error = xfs_dir_canenter(tp, dp, link_name, resblks);
2268 if (error)
1da177e4
LT
2269 goto error_return;
2270 /*
2271 * Initialize the bmap freelist prior to calling either
2272 * bmapi or the directory create code.
2273 */
9d87c319 2274 xfs_bmap_init(&free_list, &first_block);
1da177e4
LT
2275
2276 /*
2277 * Allocate an inode for the symlink.
2278 */
3e5daf05 2279 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT),
1da177e4
LT
2280 1, 0, credp, prid, resblks > 0, &ip, NULL);
2281 if (error) {
2282 if (error == ENOSPC)
2283 goto error_return;
2284 goto error1;
2285 }
1da177e4 2286
993386c1
CH
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 */
3937be5b 2292 IHOLD(dp);
1da177e4 2293 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
993386c1 2294 unlock_dp_on_error = B_FALSE;
1da177e4
LT
2295
2296 /*
2297 * Also attach the dquot(s) to it, if applicable.
2298 */
7d095257 2299 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp);
1da177e4
LT
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,
3e57ecf6 2327 &free_list, NULL);
1da177e4
LT
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 */
556b8b16
BN
2359 error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
2360 &first_block, &free_list, resblks);
f6c2d1fa 2361 if (error)
1da177e4 2362 goto error1;
1da177e4
LT
2363 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2364 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2365
1da177e4
LT
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
f7c99b6f 2382 error = xfs_bmap_finish(&tp, &free_list, &committed);
1da177e4
LT
2383 if (error) {
2384 goto error2;
2385 }
1c72bf90 2386 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
7d095257
CH
2387 xfs_qm_dqrele(udqp);
2388 xfs_qm_dqrele(gdqp);
1da177e4
LT
2389
2390 /* Fall through to std_return with error = 0 or errno from
2391 * xfs_trans_commit */
2392std_return:
993386c1 2393 if (DM_EVENT_ENABLED(dp, DM_EVENT_POSTSYMLINK)) {
1da177e4 2394 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTSYMLINK,
bc4ac74a
CH
2395 dp, DM_RIGHT_NULL,
2396 error ? NULL : ip,
556b8b16 2397 DM_RIGHT_NULL, link_name->name,
046ea753
DC
2398 (unsigned char *)target_path,
2399 0, error, 0);
1da177e4
LT
2400 }
2401
3937be5b
CH
2402 if (!error)
2403 *ipp = ip;
1da177e4
LT
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);
7d095257
CH
2413 xfs_qm_dqrele(udqp);
2414 xfs_qm_dqrele(gdqp);
1da177e4 2415
993386c1 2416 if (unlock_dp_on_error)
1da177e4 2417 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1da177e4
LT
2418
2419 goto std_return;
2420}
2421
1da177e4 2422int
993386c1
CH
2423xfs_set_dmattrs(
2424 xfs_inode_t *ip,
1da177e4 2425 u_int evmask,
993386c1 2426 u_int16_t state)
1da177e4 2427{
993386c1 2428 xfs_mount_t *mp = ip->i_mount;
1da177e4 2429 xfs_trans_t *tp;
1da177e4
LT
2430 int error;
2431
2432 if (!capable(CAP_SYS_ADMIN))
2433 return XFS_ERROR(EPERM);
2434
1da177e4
LT
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
613d7043
CH
2447 ip->i_d.di_dmevmask = evmask;
2448 ip->i_d.di_dmstate = state;
1da177e4
LT
2449
2450 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2451 IHOLD(ip);
1c72bf90 2452 error = xfs_trans_commit(tp, 0);
1da177e4
LT
2453
2454 return error;
2455}
2456
1da177e4
LT
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 */
ba0f32d4 2476STATIC int
1da177e4
LT
2477xfs_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{
dd9f438e
NS
2484 xfs_mount_t *mp = ip->i_mount;
2485 xfs_off_t count;
1da177e4
LT
2486 xfs_filblks_t allocated_fsb;
2487 xfs_filblks_t allocatesize_fsb;
dd9f438e
NS
2488 xfs_extlen_t extsz, temp;
2489 xfs_fileoff_t startoffset_fsb;
1da177e4 2490 xfs_fsblock_t firstfsb;
dd9f438e
NS
2491 int nimaps;
2492 int bmapi_flag;
2493 int quota_flag;
1da177e4 2494 int rt;
1da177e4 2495 xfs_trans_t *tp;
dd9f438e
NS
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;
1da177e4 2501
cf441eeb 2502 xfs_itrace_entry(ip);
1da177e4
LT
2503
2504 if (XFS_FORCED_SHUTDOWN(mp))
2505 return XFS_ERROR(EIO);
2506
7d095257
CH
2507 error = xfs_qm_dqattach(ip, 0);
2508 if (error)
1da177e4
LT
2509 return error;
2510
2511 if (len <= 0)
2512 return XFS_ERROR(EINVAL);
2513
957d0ebe
DC
2514 rt = XFS_IS_REALTIME_INODE(ip);
2515 extsz = xfs_get_extsz_hint(ip);
2516
1da177e4 2517 count = len;
1da177e4 2518 imapp = &imaps[0];
dd9f438e
NS
2519 nimaps = 1;
2520 bmapi_flag = XFS_BMAPI_WRITE | (alloc_type ? XFS_BMAPI_PREALLOC : 0);
1da177e4
LT
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. */
ba87ea69 2525 if (alloc_type != 0 && offset < ip->i_size &&
0f285c8a 2526 (attr_flags & XFS_ATTR_DMI) == 0 &&
eb9df39d 2527 DM_EVENT_ENABLED(ip, DM_EVENT_WRITE)) {
1da177e4
LT
2528 xfs_off_t end_dmi_offset;
2529
2530 end_dmi_offset = offset+len;
ba87ea69
LM
2531 if (end_dmi_offset > ip->i_size)
2532 end_dmi_offset = ip->i_size;
bc4ac74a
CH
2533 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip, offset,
2534 end_dmi_offset - offset, 0, NULL);
1da177e4 2535 if (error)
014c2544 2536 return error;
1da177e4
LT
2537 }
2538
2539 /*
dd9f438e 2540 * Allocate file space until done or until there is an error
1da177e4
LT
2541 */
2542retry:
2543 while (allocatesize_fsb && !error) {
dd9f438e
NS
2544 xfs_fileoff_t s, e;
2545
1da177e4 2546 /*
3ddb8fa9 2547 * Determine space reservations for data/realtime.
1da177e4 2548 */
dd9f438e 2549 if (unlikely(extsz)) {
1da177e4 2550 s = startoffset_fsb;
dd9f438e
NS
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;
1da177e4 2568 } else {
dd9f438e
NS
2569 resrtextents = 0;
2570 resblks = qblocks = \
2571 XFS_DIOSTRAT_SPACE_RES(mp, (uint)(e - s));
2572 quota_flag = XFS_QMOPT_RES_REGBLKS;
1da177e4
LT
2573 }
2574
2575 /*
dd9f438e 2576 * Allocate and setup the transaction.
1da177e4
LT
2577 */
2578 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
dd9f438e
NS
2579 error = xfs_trans_reserve(tp, resblks,
2580 XFS_WRITE_LOG_RES(mp), resrtextents,
1da177e4
LT
2581 XFS_TRANS_PERM_LOG_RES,
2582 XFS_WRITE_LOG_COUNT);
1da177e4 2583 /*
dd9f438e 2584 * Check for running out of space
1da177e4
LT
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);
7d095257
CH
2595 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
2596 0, quota_flag);
1da177e4
LT
2597 if (error)
2598 goto error1;
2599
2600 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2601 xfs_trans_ihold(tp, ip);
2602
2603 /*
dd9f438e 2604 * Issue the xfs_bmapi() call to allocate the blocks
1da177e4 2605 */
9d87c319 2606 xfs_bmap_init(&free_list, &firstfsb);
541d7d3c 2607 error = xfs_bmapi(tp, ip, startoffset_fsb,
dd9f438e
NS
2608 allocatesize_fsb, bmapi_flag,
2609 &firstfsb, 0, imapp, &nimaps,
3e57ecf6 2610 &free_list, NULL);
1da177e4
LT
2611 if (error) {
2612 goto error0;
2613 }
2614
2615 /*
dd9f438e 2616 * Complete the transaction
1da177e4 2617 */
f7c99b6f 2618 error = xfs_bmap_finish(&tp, &free_list, &committed);
1da177e4
LT
2619 if (error) {
2620 goto error0;
2621 }
2622
1c72bf90 2623 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1da177e4
LT
2624 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2625 if (error) {
2626 break;
2627 }
2628
2629 allocated_fsb = imapp->br_blockcount;
2630
dd9f438e 2631 if (nimaps == 0) {
1da177e4
LT
2632 error = XFS_ERROR(ENOSPC);
2633 break;
2634 }
2635
2636 startoffset_fsb += allocated_fsb;
2637 allocatesize_fsb -= allocated_fsb;
2638 }
2639dmapi_enospc_check:
0f285c8a 2640 if (error == ENOSPC && (attr_flags & XFS_ATTR_DMI) == 0 &&
eb9df39d 2641 DM_EVENT_ENABLED(ip, DM_EVENT_NOSPACE)) {
1da177e4 2642 error = XFS_SEND_NAMESP(mp, DM_EVENT_NOSPACE,
bc4ac74a
CH
2643 ip, DM_RIGHT_NULL,
2644 ip, DM_RIGHT_NULL,
1da177e4
LT
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
dd9f438e 2653error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
1da177e4 2654 xfs_bmap_cancel(&free_list);
7d095257 2655 xfs_trans_unreserve_quota_nblks(tp, ip, qblocks, 0, quota_flag);
dd9f438e
NS
2656
2657error1: /* Just cancel transaction */
1da177e4
LT
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.
2fd6f6ec
LM
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.
1da177e4
LT
2673 */
2674STATIC int
2675xfs_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
2fd6f6ec
LM
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
1da177e4 2700 bp = xfs_buf_get_noaddr(mp->m_sb.sb_blocksize,
71ddabb9 2701 XFS_IS_REALTIME_INODE(ip) ?
1da177e4 2702 mp->m_rtdev_targp : mp->m_ddev_targp);
c6422617
LM
2703 if (!bp)
2704 return XFS_ERROR(ENOMEM);
1da177e4
LT
2705
2706 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
2707 offset_fsb = XFS_B_TO_FSBT(mp, offset);
2708 nimap = 1;
541d7d3c 2709 error = xfs_bmapi(NULL, ip, offset_fsb, 1, 0,
3e57ecf6 2710 NULL, 0, &imap, &nimap, NULL, NULL);
1da177e4
LT
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);
9d87c319 2726 XFS_BUF_SET_ADDR(bp, xfs_fsb_to_db(ip, imap.br_startblock));
1da177e4 2727 xfsbdstrat(mp, bp);
d64e31a2
DC
2728 error = xfs_iowait(bp);
2729 if (error) {
1da177e4
LT
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);
d64e31a2
DC
2741 error = xfs_iowait(bp);
2742 if (error) {
1da177e4
LT
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 */
2764STATIC int
2765xfs_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;
1da177e4
LT
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;
673cdf5c 2784 uint rounding;
1da177e4
LT
2785 int rt;
2786 xfs_fileoff_t startoffset_fsb;
2787 xfs_trans_t *tp;
5fcbab35 2788 int need_iolock = 1;
1da177e4 2789
1da177e4
LT
2790 mp = ip->i_mount;
2791
cf441eeb 2792 xfs_itrace_entry(ip);
bd5a876a 2793
7d095257
CH
2794 error = xfs_qm_dqattach(ip, 0);
2795 if (error)
1da177e4
LT
2796 return error;
2797
2798 error = 0;
2799 if (len <= 0) /* if nothing being freed */
2800 return error;
71ddabb9 2801 rt = XFS_IS_REALTIME_INODE(ip);
1da177e4
LT
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
0f285c8a 2806 if (offset < ip->i_size && (attr_flags & XFS_ATTR_DMI) == 0 &&
eb9df39d 2807 DM_EVENT_ENABLED(ip, DM_EVENT_WRITE)) {
ba87ea69
LM
2808 if (end_dmi_offset > ip->i_size)
2809 end_dmi_offset = ip->i_size;
bc4ac74a 2810 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip,
1da177e4
LT
2811 offset, end_dmi_offset - offset,
2812 AT_DELAY_FLAG(attr_flags), NULL);
2813 if (error)
014c2544 2814 return error;
1da177e4
LT
2815 }
2816
0f285c8a 2817 if (attr_flags & XFS_ATTR_NOLOCK)
5fcbab35 2818 need_iolock = 0;
9fa8046f 2819 if (need_iolock) {
1da177e4 2820 xfs_ilock(ip, XFS_IOLOCK_EXCL);
25e41b3d
CH
2821 /* wait for the completion of any pending DIOs */
2822 xfs_ioend_wait(ip);
9fa8046f 2823 }
5fcbab35 2824
e6a4b37f 2825 rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE);
1da177e4 2826 ioffset = offset & ~(rounding - 1);
bd5a876a 2827
df80c933 2828 if (VN_CACHED(VFS_I(ip)) != 0) {
e6a4b37f 2829 error = xfs_flushinval_pages(ip, ioffset, -1, FI_REMAPF_LOCKED);
d3cf2094
LM
2830 if (error)
2831 goto out_unlock_iolock;
bd5a876a
CH
2832 }
2833
1da177e4
LT
2834 /*
2835 * Need to zero the stuff we're not freeing, on disk.
9da096fd 2836 * If it's a realtime file & can't use unwritten extents then we
1da177e4
LT
2837 * actually need to zero the extent edges. Otherwise xfs_bunmapi
2838 * will take care of it for us.
2839 */
62118709 2840 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
1da177e4 2841 nimap = 1;
541d7d3c 2842 error = xfs_bmapi(NULL, ip, startoffset_fsb,
3e57ecf6 2843 1, 0, NULL, 0, &imap, &nimap, NULL, NULL);
1da177e4
LT
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;
541d7d3c 2857 error = xfs_bmapi(NULL, ip, endoffset_fsb - 1,
3e57ecf6 2858 1, 0, NULL, 0, &imap, &nimap, NULL, NULL);
1da177e4
LT
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 /*
91ebecc7
DC
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.
1da177e4
LT
2898 */
2899 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
91ebecc7 2900 tp->t_flags |= XFS_TRANS_RESERVE;
1da177e4
LT
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);
7d095257
CH
2920 error = xfs_trans_reserve_quota(tp, mp,
2921 ip->i_udquot, ip->i_gdquot,
2922 resblks, 0, XFS_QMOPT_RES_REGBLKS);
1da177e4
LT
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 */
9d87c319 2932 xfs_bmap_init(&free_list, &firstfsb);
541d7d3c 2933 error = xfs_bunmapi(tp, ip, startoffset_fsb,
1da177e4 2934 endoffset_fsb - startoffset_fsb,
3e57ecf6 2935 0, 2, &firstfsb, &free_list, NULL, &done);
1da177e4
LT
2936 if (error) {
2937 goto error0;
2938 }
2939
2940 /*
2941 * complete the transaction
2942 */
f7c99b6f 2943 error = xfs_bmap_finish(&tp, &free_list, &committed);
1da177e4
LT
2944 if (error) {
2945 goto error0;
2946 }
2947
1c72bf90 2948 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1da177e4
LT
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 */
2977int
2978xfs_change_file_space(
993386c1 2979 xfs_inode_t *ip,
1da177e4
LT
2980 int cmd,
2981 xfs_flock64_t *bf,
2982 xfs_off_t offset,
1da177e4
LT
2983 int attr_flags)
2984{
993386c1 2985 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
2986 int clrprealloc;
2987 int error;
2988 xfs_fsize_t fsize;
1da177e4
LT
2989 int setprealloc;
2990 xfs_off_t startoffset;
2991 xfs_off_t llen;
2992 xfs_trans_t *tp;
0f285c8a 2993 struct iattr iattr;
1da177e4 2994
cf441eeb 2995 xfs_itrace_entry(ip);
1da177e4 2996
993386c1 2997 if (!S_ISREG(ip->i_d.di_mode))
1da177e4
LT
2998 return XFS_ERROR(EINVAL);
2999
1da177e4
LT
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*/
ba87ea69 3007 bf->l_start += ip->i_size;
1da177e4
LT
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;
ba87ea69 3024 fsize = ip->i_size;
1da177e4
LT
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
0f285c8a
CH
3067 iattr.ia_valid = ATTR_SIZE;
3068 iattr.ia_size = startoffset;
1da177e4 3069
ea5a3dc8 3070 error = xfs_setattr(ip, &iattr, attr_flags);
1da177e4
LT
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
0f285c8a 3100 if ((attr_flags & XFS_ATTR_DMI) == 0) {
1da177e4
LT
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
1c72bf90 3123 error = xfs_trans_commit(tp, 0);
1da177e4
LT
3124
3125 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3126
3127 return error;
3128}
This page took 0.645546 seconds and 5 git commands to generate.