blob: 18f24de4dc2ae71dbcfdc2cc904bf5140c31fd78 [file] [log] [blame]
Dave Chinner19de7352013-04-03 16:11:18 +11001/*
2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3 * Copyright (c) 2012-2013 Red Hat, Inc.
4 * All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19#include "xfs.h"
20#include "xfs_fs.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +100021#include "xfs_format.h"
Dave Chinner19de7352013-04-03 16:11:18 +110022#include "xfs_bit.h"
23#include "xfs_log.h"
24#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Dave Chinner19de7352013-04-03 16:11:18 +110027#include "xfs_mount.h"
28#include "xfs_da_btree.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100029#include "xfs_dir2_format.h"
30#include "xfs_dir2.h"
Dave Chinner19de7352013-04-03 16:11:18 +110031#include "xfs_bmap_btree.h"
32#include "xfs_ialloc_btree.h"
33#include "xfs_dinode.h"
34#include "xfs_inode.h"
Dave Chinner19de7352013-04-03 16:11:18 +110035#include "xfs_ialloc.h"
36#include "xfs_alloc.h"
37#include "xfs_bmap.h"
38#include "xfs_error.h"
39#include "xfs_quota.h"
40#include "xfs_utils.h"
41#include "xfs_trans_space.h"
Dave Chinner19de7352013-04-03 16:11:18 +110042#include "xfs_trace.h"
43#include "xfs_symlink.h"
Dave Chinner19de7352013-04-03 16:11:18 +110044
45/* ----- Kernel only functions below ----- */
Dave Chinner19de7352013-04-03 16:11:18 +110046STATIC int
47xfs_readlink_bmap(
Dave Chinnerf948dd72013-04-03 16:11:19 +110048 struct xfs_inode *ip,
49 char *link)
Dave Chinner19de7352013-04-03 16:11:18 +110050{
Dave Chinnerf948dd72013-04-03 16:11:19 +110051 struct xfs_mount *mp = ip->i_mount;
52 struct xfs_bmbt_irec mval[XFS_SYMLINK_MAPS];
53 struct xfs_buf *bp;
54 xfs_daddr_t d;
55 char *cur_chunk;
56 int pathlen = ip->i_d.di_size;
57 int nmaps = XFS_SYMLINK_MAPS;
58 int byte_cnt;
59 int n;
60 int error = 0;
61 int fsblocks = 0;
62 int offset;
Dave Chinner19de7352013-04-03 16:11:18 +110063
Dave Chinnerf948dd72013-04-03 16:11:19 +110064 fsblocks = xfs_symlink_blocks(mp, pathlen);
65 error = xfs_bmapi_read(ip, 0, fsblocks, mval, &nmaps, 0);
Dave Chinner19de7352013-04-03 16:11:18 +110066 if (error)
67 goto out;
68
Dave Chinnerf948dd72013-04-03 16:11:19 +110069 offset = 0;
Dave Chinner19de7352013-04-03 16:11:18 +110070 for (n = 0; n < nmaps; n++) {
71 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
72 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
73
Dave Chinnerf948dd72013-04-03 16:11:19 +110074 bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt), 0,
75 &xfs_symlink_buf_ops);
Dave Chinner19de7352013-04-03 16:11:18 +110076 if (!bp)
77 return XFS_ERROR(ENOMEM);
78 error = bp->b_error;
79 if (error) {
80 xfs_buf_ioerror_alert(bp, __func__);
81 xfs_buf_relse(bp);
82 goto out;
83 }
Dave Chinnerf948dd72013-04-03 16:11:19 +110084 byte_cnt = XFS_SYMLINK_BUF_SPACE(mp, byte_cnt);
Dave Chinner19de7352013-04-03 16:11:18 +110085 if (pathlen < byte_cnt)
86 byte_cnt = pathlen;
Dave Chinner19de7352013-04-03 16:11:18 +110087
Dave Chinnerf948dd72013-04-03 16:11:19 +110088 cur_chunk = bp->b_addr;
89 if (xfs_sb_version_hascrc(&mp->m_sb)) {
90 if (!xfs_symlink_hdr_ok(mp, ip->i_ino, offset,
91 byte_cnt, bp)) {
92 error = EFSCORRUPTED;
93 xfs_alert(mp,
94"symlink header does not match required off/len/owner (0x%x/Ox%x,0x%llx)",
95 offset, byte_cnt, ip->i_ino);
96 xfs_buf_relse(bp);
97 goto out;
98
99 }
100
101 cur_chunk += sizeof(struct xfs_dsymlink_hdr);
102 }
103
104 memcpy(link + offset, bp->b_addr, byte_cnt);
105
106 pathlen -= byte_cnt;
107 offset += byte_cnt;
108
Dave Chinner19de7352013-04-03 16:11:18 +1100109 xfs_buf_relse(bp);
110 }
Dave Chinnerf948dd72013-04-03 16:11:19 +1100111 ASSERT(pathlen == 0);
Dave Chinner19de7352013-04-03 16:11:18 +1100112
113 link[ip->i_d.di_size] = '\0';
114 error = 0;
115
116 out:
117 return error;
118}
119
120int
121xfs_readlink(
Dave Chinnerf948dd72013-04-03 16:11:19 +1100122 struct xfs_inode *ip,
Dave Chinner19de7352013-04-03 16:11:18 +1100123 char *link)
124{
Dave Chinnerf948dd72013-04-03 16:11:19 +1100125 struct xfs_mount *mp = ip->i_mount;
Dave Chinner19de7352013-04-03 16:11:18 +1100126 xfs_fsize_t pathlen;
127 int error = 0;
128
129 trace_xfs_readlink(ip);
130
131 if (XFS_FORCED_SHUTDOWN(mp))
132 return XFS_ERROR(EIO);
133
134 xfs_ilock(ip, XFS_ILOCK_SHARED);
135
136 pathlen = ip->i_d.di_size;
137 if (!pathlen)
138 goto out;
139
140 if (pathlen < 0 || pathlen > MAXPATHLEN) {
141 xfs_alert(mp, "%s: inode (%llu) bad symlink length (%lld)",
142 __func__, (unsigned long long) ip->i_ino,
143 (long long) pathlen);
144 ASSERT(0);
145 error = XFS_ERROR(EFSCORRUPTED);
146 goto out;
147 }
148
149
150 if (ip->i_df.if_flags & XFS_IFINLINE) {
151 memcpy(link, ip->i_df.if_u1.if_data, pathlen);
152 link[pathlen] = '\0';
153 } else {
154 error = xfs_readlink_bmap(ip, link);
155 }
156
157 out:
158 xfs_iunlock(ip, XFS_ILOCK_SHARED);
159 return error;
160}
161
162int
163xfs_symlink(
Dave Chinnerf948dd72013-04-03 16:11:19 +1100164 struct xfs_inode *dp,
Dave Chinner19de7352013-04-03 16:11:18 +1100165 struct xfs_name *link_name,
166 const char *target_path,
167 umode_t mode,
Dave Chinnerf948dd72013-04-03 16:11:19 +1100168 struct xfs_inode **ipp)
Dave Chinner19de7352013-04-03 16:11:18 +1100169{
Dave Chinnerf948dd72013-04-03 16:11:19 +1100170 struct xfs_mount *mp = dp->i_mount;
171 struct xfs_trans *tp = NULL;
172 struct xfs_inode *ip = NULL;
173 int error = 0;
Dave Chinner19de7352013-04-03 16:11:18 +1100174 int pathlen;
Dave Chinnerf948dd72013-04-03 16:11:19 +1100175 struct xfs_bmap_free free_list;
Dave Chinner19de7352013-04-03 16:11:18 +1100176 xfs_fsblock_t first_block;
Dave Chinnerf948dd72013-04-03 16:11:19 +1100177 bool unlock_dp_on_error = false;
Dave Chinner19de7352013-04-03 16:11:18 +1100178 uint cancel_flags;
179 int committed;
180 xfs_fileoff_t first_fsb;
181 xfs_filblks_t fs_blocks;
182 int nmaps;
Dave Chinnerf948dd72013-04-03 16:11:19 +1100183 struct xfs_bmbt_irec mval[XFS_SYMLINK_MAPS];
Dave Chinner19de7352013-04-03 16:11:18 +1100184 xfs_daddr_t d;
185 const char *cur_chunk;
186 int byte_cnt;
187 int n;
188 xfs_buf_t *bp;
189 prid_t prid;
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500190 struct xfs_dquot *udqp = NULL;
191 struct xfs_dquot *gdqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500192 struct xfs_dquot *pdqp = NULL;
Dave Chinner19de7352013-04-03 16:11:18 +1100193 uint resblks;
194
195 *ipp = NULL;
Dave Chinner19de7352013-04-03 16:11:18 +1100196
197 trace_xfs_symlink(dp, link_name);
198
199 if (XFS_FORCED_SHUTDOWN(mp))
200 return XFS_ERROR(EIO);
201
202 /*
203 * Check component lengths of the target path name.
204 */
205 pathlen = strlen(target_path);
206 if (pathlen >= MAXPATHLEN) /* total string too long */
207 return XFS_ERROR(ENAMETOOLONG);
208
209 udqp = gdqp = NULL;
210 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
211 prid = xfs_get_projid(dp);
212 else
213 prid = XFS_PROJID_DEFAULT;
214
215 /*
216 * Make sure that we have allocated dquot(s) on disk.
217 */
218 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500219 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp, &pdqp);
Dave Chinner19de7352013-04-03 16:11:18 +1100220 if (error)
221 goto std_return;
222
223 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
224 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
225 /*
226 * The symlink will fit into the inode data fork?
227 * There can't be any attributes so we get the whole variable part.
228 */
229 if (pathlen <= XFS_LITINO(mp, dp->i_d.di_version))
230 fs_blocks = 0;
231 else
Dave Chinner321a9582013-05-27 16:38:20 +1000232 fs_blocks = xfs_symlink_blocks(mp, pathlen);
Dave Chinner19de7352013-04-03 16:11:18 +1100233 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
234 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
235 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
236 if (error == ENOSPC && fs_blocks == 0) {
237 resblks = 0;
238 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
239 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
240 }
241 if (error) {
242 cancel_flags = 0;
243 goto error_return;
244 }
245
246 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
247 unlock_dp_on_error = true;
248
249 /*
250 * Check whether the directory allows new symlinks or not.
251 */
252 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
253 error = XFS_ERROR(EPERM);
254 goto error_return;
255 }
256
257 /*
258 * Reserve disk quota : blocks and inode.
259 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500260 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
261 pdqp, resblks, 1, 0);
Dave Chinner19de7352013-04-03 16:11:18 +1100262 if (error)
263 goto error_return;
264
265 /*
266 * Check for ability to enter directory entry, if no space reserved.
267 */
268 error = xfs_dir_canenter(tp, dp, link_name, resblks);
269 if (error)
270 goto error_return;
271 /*
272 * Initialize the bmap freelist prior to calling either
273 * bmapi or the directory create code.
274 */
275 xfs_bmap_init(&free_list, &first_block);
276
277 /*
278 * Allocate an inode for the symlink.
279 */
280 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT), 1, 0,
281 prid, resblks > 0, &ip, NULL);
282 if (error) {
283 if (error == ENOSPC)
284 goto error_return;
285 goto error1;
286 }
287
288 /*
289 * An error after we've joined dp to the transaction will result in the
290 * transaction cancel unlocking dp so don't do it explicitly in the
291 * error path.
292 */
293 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
294 unlock_dp_on_error = false;
295
296 /*
297 * Also attach the dquot(s) to it, if applicable.
298 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500299 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
Dave Chinner19de7352013-04-03 16:11:18 +1100300
301 if (resblks)
302 resblks -= XFS_IALLOC_SPACE_RES(mp);
303 /*
304 * If the symlink will fit into the inode, write it inline.
305 */
306 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
307 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
308 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
309 ip->i_d.di_size = pathlen;
310
311 /*
312 * The inode was initially created in extent format.
313 */
314 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
315 ip->i_df.if_flags |= XFS_IFINLINE;
316
317 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
318 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
319
320 } else {
Dave Chinnerf948dd72013-04-03 16:11:19 +1100321 int offset;
322
Dave Chinner19de7352013-04-03 16:11:18 +1100323 first_fsb = 0;
324 nmaps = XFS_SYMLINK_MAPS;
325
326 error = xfs_bmapi_write(tp, ip, first_fsb, fs_blocks,
327 XFS_BMAPI_METADATA, &first_block, resblks,
328 mval, &nmaps, &free_list);
329 if (error)
330 goto error2;
331
332 if (resblks)
333 resblks -= fs_blocks;
334 ip->i_d.di_size = pathlen;
335 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
336
337 cur_chunk = target_path;
Dave Chinnerf948dd72013-04-03 16:11:19 +1100338 offset = 0;
Dave Chinner19de7352013-04-03 16:11:18 +1100339 for (n = 0; n < nmaps; n++) {
Dave Chinner321a9582013-05-27 16:38:20 +1000340 char *buf;
Dave Chinnerf948dd72013-04-03 16:11:19 +1100341
Dave Chinner19de7352013-04-03 16:11:18 +1100342 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
343 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
344 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
345 BTOBB(byte_cnt), 0);
346 if (!bp) {
347 error = ENOMEM;
348 goto error2;
349 }
Dave Chinnerf948dd72013-04-03 16:11:19 +1100350 bp->b_ops = &xfs_symlink_buf_ops;
351
352 byte_cnt = XFS_SYMLINK_BUF_SPACE(mp, byte_cnt);
Dave Chinner321a9582013-05-27 16:38:20 +1000353 byte_cnt = min(byte_cnt, pathlen);
Dave Chinner19de7352013-04-03 16:11:18 +1100354
Dave Chinnerf948dd72013-04-03 16:11:19 +1100355 buf = bp->b_addr;
356 buf += xfs_symlink_hdr_set(mp, ip->i_ino, offset,
357 byte_cnt, bp);
358
359 memcpy(buf, cur_chunk, byte_cnt);
360
Dave Chinner19de7352013-04-03 16:11:18 +1100361 cur_chunk += byte_cnt;
Dave Chinnerf948dd72013-04-03 16:11:19 +1100362 pathlen -= byte_cnt;
363 offset += byte_cnt;
Dave Chinner19de7352013-04-03 16:11:18 +1100364
Dave Chinnerf948dd72013-04-03 16:11:19 +1100365 xfs_trans_log_buf(tp, bp, 0, (buf + byte_cnt - 1) -
366 (char *)bp->b_addr);
Dave Chinner19de7352013-04-03 16:11:18 +1100367 }
Dave Chinner321a9582013-05-27 16:38:20 +1000368 ASSERT(pathlen == 0);
Dave Chinner19de7352013-04-03 16:11:18 +1100369 }
370
371 /*
372 * Create the directory entry for the symlink.
373 */
374 error = xfs_dir_createname(tp, dp, link_name, ip->i_ino,
375 &first_block, &free_list, resblks);
376 if (error)
377 goto error2;
378 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
379 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
380
381 /*
382 * If this is a synchronous mount, make sure that the
383 * symlink transaction goes to disk before returning to
384 * the user.
385 */
386 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
387 xfs_trans_set_sync(tp);
388 }
389
390 error = xfs_bmap_finish(&tp, &free_list, &committed);
391 if (error) {
392 goto error2;
393 }
394 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
395 xfs_qm_dqrele(udqp);
396 xfs_qm_dqrele(gdqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500397 xfs_qm_dqrele(pdqp);
Dave Chinner19de7352013-04-03 16:11:18 +1100398
399 *ipp = ip;
400 return 0;
401
402 error2:
403 IRELE(ip);
404 error1:
405 xfs_bmap_cancel(&free_list);
406 cancel_flags |= XFS_TRANS_ABORT;
407 error_return:
408 xfs_trans_cancel(tp, cancel_flags);
409 xfs_qm_dqrele(udqp);
410 xfs_qm_dqrele(gdqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500411 xfs_qm_dqrele(pdqp);
Dave Chinner19de7352013-04-03 16:11:18 +1100412
413 if (unlock_dp_on_error)
414 xfs_iunlock(dp, XFS_ILOCK_EXCL);
415 std_return:
416 return error;
417}
418
419/*
420 * Free a symlink that has blocks associated with it.
421 */
Mark Tinguely725eb1e2013-06-17 15:35:57 -0500422STATIC int
Dave Chinner19de7352013-04-03 16:11:18 +1100423xfs_inactive_symlink_rmt(
424 xfs_inode_t *ip,
425 xfs_trans_t **tpp)
426{
427 xfs_buf_t *bp;
428 int committed;
429 int done;
430 int error;
431 xfs_fsblock_t first_block;
432 xfs_bmap_free_t free_list;
433 int i;
434 xfs_mount_t *mp;
435 xfs_bmbt_irec_t mval[XFS_SYMLINK_MAPS];
436 int nmaps;
437 xfs_trans_t *ntp;
438 int size;
439 xfs_trans_t *tp;
440
441 tp = *tpp;
442 mp = ip->i_mount;
Mark Tinguely725eb1e2013-06-17 15:35:57 -0500443 ASSERT(ip->i_df.if_flags & XFS_IFEXTENTS);
Dave Chinner19de7352013-04-03 16:11:18 +1100444 /*
445 * We're freeing a symlink that has some
446 * blocks allocated to it. Free the
447 * blocks here. We know that we've got
448 * either 1 or 2 extents and that we can
449 * free them all in one bunmapi call.
450 */
451 ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
452
453 /*
454 * Lock the inode, fix the size, and join it to the transaction.
455 * Hold it so in the normal path, we still have it locked for
456 * the second transaction. In the error paths we need it
457 * held so the cancel won't rele it, see below.
458 */
459 size = (int)ip->i_d.di_size;
460 ip->i_d.di_size = 0;
461 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
462 /*
463 * Find the block(s) so we can inval and unmap them.
464 */
465 done = 0;
466 xfs_bmap_init(&free_list, &first_block);
467 nmaps = ARRAY_SIZE(mval);
Dave Chinnerf948dd72013-04-03 16:11:19 +1100468 error = xfs_bmapi_read(ip, 0, xfs_symlink_blocks(mp, size),
Dave Chinner19de7352013-04-03 16:11:18 +1100469 mval, &nmaps, 0);
470 if (error)
471 goto error0;
472 /*
Dave Chinnerf948dd72013-04-03 16:11:19 +1100473 * Invalidate the block(s). No validation is done.
Dave Chinner19de7352013-04-03 16:11:18 +1100474 */
475 for (i = 0; i < nmaps; i++) {
476 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
477 XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
478 XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
479 if (!bp) {
480 error = ENOMEM;
481 goto error1;
482 }
483 xfs_trans_binval(tp, bp);
484 }
485 /*
486 * Unmap the dead block(s) to the free_list.
487 */
488 if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
489 &first_block, &free_list, &done)))
490 goto error1;
491 ASSERT(done);
492 /*
493 * Commit the first transaction. This logs the EFI and the inode.
494 */
495 if ((error = xfs_bmap_finish(&tp, &free_list, &committed)))
496 goto error1;
497 /*
498 * The transaction must have been committed, since there were
499 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
500 * The new tp has the extent freeing and EFDs.
501 */
502 ASSERT(committed);
503 /*
504 * The first xact was committed, so add the inode to the new one.
505 * Mark it dirty so it will be logged and moved forward in the log as
506 * part of every commit.
507 */
508 xfs_trans_ijoin(tp, ip, 0);
509 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
510 /*
511 * Get a new, empty transaction to return to our caller.
512 */
513 ntp = xfs_trans_dup(tp);
514 /*
515 * Commit the transaction containing extent freeing and EFDs.
516 * If we get an error on the commit here or on the reserve below,
517 * we need to unlock the inode since the new transaction doesn't
518 * have the inode attached.
519 */
520 error = xfs_trans_commit(tp, 0);
521 tp = ntp;
522 if (error) {
523 ASSERT(XFS_FORCED_SHUTDOWN(mp));
524 goto error0;
525 }
526 /*
527 * transaction commit worked ok so we can drop the extra ticket
528 * reference that we gained in xfs_trans_dup()
529 */
530 xfs_log_ticket_put(tp->t_ticket);
531
532 /*
533 * Remove the memory for extent descriptions (just bookkeeping).
534 */
535 if (ip->i_df.if_bytes)
536 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
537 ASSERT(ip->i_df.if_bytes == 0);
538 /*
539 * Put an itruncate log reservation in the new transaction
540 * for our caller.
541 */
542 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
543 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
544 ASSERT(XFS_FORCED_SHUTDOWN(mp));
545 goto error0;
546 }
547
548 xfs_trans_ijoin(tp, ip, 0);
549 *tpp = tp;
550 return 0;
551
552 error1:
553 xfs_bmap_cancel(&free_list);
554 error0:
555 return error;
556}
Mark Tinguely725eb1e2013-06-17 15:35:57 -0500557
558/*
559 * xfs_inactive_symlink - free a symlink
560 */
561int
562xfs_inactive_symlink(
563 struct xfs_inode *ip,
564 struct xfs_trans **tp)
565{
566 struct xfs_mount *mp = ip->i_mount;
567 int pathlen;
568
569 trace_xfs_inactive_symlink(ip);
570
571 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
572
573 if (XFS_FORCED_SHUTDOWN(mp))
574 return XFS_ERROR(EIO);
575
576 /*
577 * Zero length symlinks _can_ exist.
578 */
579 pathlen = (int)ip->i_d.di_size;
580 if (!pathlen)
581 return 0;
582
583 if (pathlen < 0 || pathlen > MAXPATHLEN) {
584 xfs_alert(mp, "%s: inode (0x%llx) bad symlink length (%d)",
585 __func__, (unsigned long long)ip->i_ino, pathlen);
586 ASSERT(0);
587 return XFS_ERROR(EFSCORRUPTED);
588 }
589
590 if (ip->i_df.if_flags & XFS_IFINLINE) {
591 if (ip->i_df.if_bytes > 0)
592 xfs_idata_realloc(ip, -(ip->i_df.if_bytes),
593 XFS_DATA_FORK);
594 ASSERT(ip->i_df.if_bytes == 0);
595 return 0;
596 }
597
598 /* remove the remote symlink */
599 return xfs_inactive_symlink_rmt(ip, tp);
600}