]>
Commit | Line | Data |
---|---|---|
0b61f8a4 | 1 | // SPDX-License-Identifier: GPL-2.0 |
19de7351 DC |
2 | /* |
3 | * Copyright (c) 2000-2006 Silicon Graphics, Inc. | |
4 | * Copyright (c) 2012-2013 Red Hat, Inc. | |
5 | * All rights reserved. | |
19de7351 DC |
6 | */ |
7 | #include "xfs.h" | |
239880ef | 8 | #include "xfs_shared.h" |
19de7351 | 9 | #include "xfs_fs.h" |
6ca1c906 | 10 | #include "xfs_format.h" |
239880ef DC |
11 | #include "xfs_log_format.h" |
12 | #include "xfs_trans_resv.h" | |
19de7351 | 13 | #include "xfs_bit.h" |
19de7351 | 14 | #include "xfs_mount.h" |
57062787 | 15 | #include "xfs_da_format.h" |
d6cf1305 | 16 | #include "xfs_da_btree.h" |
3ab78df2 | 17 | #include "xfs_defer.h" |
2b9ab5ab | 18 | #include "xfs_dir2.h" |
19de7351 | 19 | #include "xfs_inode.h" |
19de7351 DC |
20 | #include "xfs_ialloc.h" |
21 | #include "xfs_alloc.h" | |
22 | #include "xfs_bmap.h" | |
a4fbe6ab | 23 | #include "xfs_bmap_btree.h" |
68988114 | 24 | #include "xfs_bmap_util.h" |
19de7351 DC |
25 | #include "xfs_error.h" |
26 | #include "xfs_quota.h" | |
19de7351 | 27 | #include "xfs_trans_space.h" |
19de7351 DC |
28 | #include "xfs_trace.h" |
29 | #include "xfs_symlink.h" | |
239880ef | 30 | #include "xfs_trans.h" |
239880ef | 31 | #include "xfs_log.h" |
19de7351 DC |
32 | |
33 | /* ----- Kernel only functions below ----- */ | |
5da8f2f8 DW |
34 | int |
35 | xfs_readlink_bmap_ilocked( | |
f948dd76 DC |
36 | struct xfs_inode *ip, |
37 | char *link) | |
19de7351 | 38 | { |
f948dd76 DC |
39 | struct xfs_mount *mp = ip->i_mount; |
40 | struct xfs_bmbt_irec mval[XFS_SYMLINK_MAPS]; | |
41 | struct xfs_buf *bp; | |
42 | xfs_daddr_t d; | |
43 | char *cur_chunk; | |
44 | int pathlen = ip->i_d.di_size; | |
45 | int nmaps = XFS_SYMLINK_MAPS; | |
46 | int byte_cnt; | |
47 | int n; | |
48 | int error = 0; | |
49 | int fsblocks = 0; | |
50 | int offset; | |
19de7351 | 51 | |
29db2500 CH |
52 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)); |
53 | ||
f948dd76 DC |
54 | fsblocks = xfs_symlink_blocks(mp, pathlen); |
55 | error = xfs_bmapi_read(ip, 0, fsblocks, mval, &nmaps, 0); | |
19de7351 DC |
56 | if (error) |
57 | goto out; | |
58 | ||
f948dd76 | 59 | offset = 0; |
19de7351 DC |
60 | for (n = 0; n < nmaps; n++) { |
61 | d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock); | |
62 | byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount); | |
63 | ||
f948dd76 DC |
64 | bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt), 0, |
65 | &xfs_symlink_buf_ops); | |
19de7351 | 66 | if (!bp) |
2451337d | 67 | return -ENOMEM; |
19de7351 DC |
68 | error = bp->b_error; |
69 | if (error) { | |
70 | xfs_buf_ioerror_alert(bp, __func__); | |
71 | xfs_buf_relse(bp); | |
ac75a1f7 DC |
72 | |
73 | /* bad CRC means corrupted metadata */ | |
2451337d DC |
74 | if (error == -EFSBADCRC) |
75 | error = -EFSCORRUPTED; | |
19de7351 DC |
76 | goto out; |
77 | } | |
f948dd76 | 78 | byte_cnt = XFS_SYMLINK_BUF_SPACE(mp, byte_cnt); |
19de7351 DC |
79 | if (pathlen < byte_cnt) |
80 | byte_cnt = pathlen; | |
f948dd76 DC |
81 | |
82 | cur_chunk = bp->b_addr; | |
83 | if (xfs_sb_version_hascrc(&mp->m_sb)) { | |
bda65ef8 | 84 | if (!xfs_symlink_hdr_ok(ip->i_ino, offset, |
f948dd76 | 85 | byte_cnt, bp)) { |
2451337d | 86 | error = -EFSCORRUPTED; |
f948dd76 DC |
87 | xfs_alert(mp, |
88 | "symlink header does not match required off/len/owner (0x%x/Ox%x,0x%llx)", | |
89 | offset, byte_cnt, ip->i_ino); | |
90 | xfs_buf_relse(bp); | |
91 | goto out; | |
92 | ||
93 | } | |
94 | ||
95 | cur_chunk += sizeof(struct xfs_dsymlink_hdr); | |
96 | } | |
97 | ||
2ac56d3d | 98 | memcpy(link + offset, cur_chunk, byte_cnt); |
f948dd76 | 99 | |
19de7351 | 100 | pathlen -= byte_cnt; |
f948dd76 | 101 | offset += byte_cnt; |
19de7351 | 102 | |
19de7351 DC |
103 | xfs_buf_relse(bp); |
104 | } | |
f948dd76 | 105 | ASSERT(pathlen == 0); |
19de7351 DC |
106 | |
107 | link[ip->i_d.di_size] = '\0'; | |
108 | error = 0; | |
109 | ||
110 | out: | |
111 | return error; | |
112 | } | |
113 | ||
114 | int | |
115 | xfs_readlink( | |
f948dd76 | 116 | struct xfs_inode *ip, |
19de7351 DC |
117 | char *link) |
118 | { | |
f948dd76 | 119 | struct xfs_mount *mp = ip->i_mount; |
19de7351 DC |
120 | xfs_fsize_t pathlen; |
121 | int error = 0; | |
122 | ||
123 | trace_xfs_readlink(ip); | |
124 | ||
30ee052e CH |
125 | ASSERT(!(ip->i_df.if_flags & XFS_IFINLINE)); |
126 | ||
19de7351 | 127 | if (XFS_FORCED_SHUTDOWN(mp)) |
2451337d | 128 | return -EIO; |
19de7351 DC |
129 | |
130 | xfs_ilock(ip, XFS_ILOCK_SHARED); | |
131 | ||
132 | pathlen = ip->i_d.di_size; | |
133 | if (!pathlen) | |
134 | goto out; | |
135 | ||
6eb0b8df | 136 | if (pathlen < 0 || pathlen > XFS_SYMLINK_MAXLEN) { |
19de7351 DC |
137 | xfs_alert(mp, "%s: inode (%llu) bad symlink length (%lld)", |
138 | __func__, (unsigned long long) ip->i_ino, | |
139 | (long long) pathlen); | |
140 | ASSERT(0); | |
2451337d | 141 | error = -EFSCORRUPTED; |
19de7351 DC |
142 | goto out; |
143 | } | |
144 | ||
145 | ||
5da8f2f8 | 146 | error = xfs_readlink_bmap_ilocked(ip, link); |
19de7351 DC |
147 | |
148 | out: | |
149 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | |
150 | return error; | |
151 | } | |
152 | ||
153 | int | |
154 | xfs_symlink( | |
f948dd76 | 155 | struct xfs_inode *dp, |
19de7351 DC |
156 | struct xfs_name *link_name, |
157 | const char *target_path, | |
158 | umode_t mode, | |
f948dd76 | 159 | struct xfs_inode **ipp) |
19de7351 | 160 | { |
f948dd76 DC |
161 | struct xfs_mount *mp = dp->i_mount; |
162 | struct xfs_trans *tp = NULL; | |
163 | struct xfs_inode *ip = NULL; | |
164 | int error = 0; | |
19de7351 | 165 | int pathlen; |
58c90473 | 166 | bool unlock_dp_on_error = false; |
19de7351 DC |
167 | xfs_fileoff_t first_fsb; |
168 | xfs_filblks_t fs_blocks; | |
169 | int nmaps; | |
f948dd76 | 170 | struct xfs_bmbt_irec mval[XFS_SYMLINK_MAPS]; |
19de7351 DC |
171 | xfs_daddr_t d; |
172 | const char *cur_chunk; | |
173 | int byte_cnt; | |
174 | int n; | |
175 | xfs_buf_t *bp; | |
176 | prid_t prid; | |
113a5683 CS |
177 | struct xfs_dquot *udqp = NULL; |
178 | struct xfs_dquot *gdqp = NULL; | |
92f8ff73 | 179 | struct xfs_dquot *pdqp = NULL; |
19de7351 DC |
180 | uint resblks; |
181 | ||
182 | *ipp = NULL; | |
19de7351 DC |
183 | |
184 | trace_xfs_symlink(dp, link_name); | |
185 | ||
186 | if (XFS_FORCED_SHUTDOWN(mp)) | |
2451337d | 187 | return -EIO; |
19de7351 DC |
188 | |
189 | /* | |
190 | * Check component lengths of the target path name. | |
191 | */ | |
192 | pathlen = strlen(target_path); | |
6eb0b8df | 193 | if (pathlen >= XFS_SYMLINK_MAXLEN) /* total string too long */ |
2451337d | 194 | return -ENAMETOOLONG; |
19de7351 DC |
195 | |
196 | udqp = gdqp = NULL; | |
163467d3 | 197 | prid = xfs_get_initial_prid(dp); |
19de7351 DC |
198 | |
199 | /* | |
200 | * Make sure that we have allocated dquot(s) on disk. | |
201 | */ | |
7aab1b28 DE |
202 | error = xfs_qm_vop_dqalloc(dp, |
203 | xfs_kuid_to_uid(current_fsuid()), | |
204 | xfs_kgid_to_gid(current_fsgid()), prid, | |
205 | XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, | |
206 | &udqp, &gdqp, &pdqp); | |
19de7351 | 207 | if (error) |
58c90473 | 208 | return error; |
19de7351 | 209 | |
19de7351 DC |
210 | /* |
211 | * The symlink will fit into the inode data fork? | |
212 | * There can't be any attributes so we get the whole variable part. | |
213 | */ | |
214 | if (pathlen <= XFS_LITINO(mp, dp->i_d.di_version)) | |
215 | fs_blocks = 0; | |
216 | else | |
321a9583 | 217 | fs_blocks = xfs_symlink_blocks(mp, pathlen); |
19de7351 | 218 | resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks); |
253f4911 CH |
219 | |
220 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_symlink, resblks, 0, 0, &tp); | |
4906e215 | 221 | if (error) |
253f4911 | 222 | goto out_release_inode; |
19de7351 | 223 | |
65523218 | 224 | xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT); |
19de7351 DC |
225 | unlock_dp_on_error = true; |
226 | ||
227 | /* | |
228 | * Check whether the directory allows new symlinks or not. | |
229 | */ | |
230 | if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) { | |
2451337d | 231 | error = -EPERM; |
58c90473 | 232 | goto out_trans_cancel; |
19de7351 DC |
233 | } |
234 | ||
235 | /* | |
236 | * Reserve disk quota : blocks and inode. | |
237 | */ | |
92f8ff73 CS |
238 | error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp, |
239 | pdqp, resblks, 1, 0); | |
19de7351 | 240 | if (error) |
58c90473 | 241 | goto out_trans_cancel; |
19de7351 | 242 | |
19de7351 DC |
243 | /* |
244 | * Allocate an inode for the symlink. | |
245 | */ | |
246 | error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT), 1, 0, | |
c959025e | 247 | prid, &ip); |
58c90473 DC |
248 | if (error) |
249 | goto out_trans_cancel; | |
19de7351 DC |
250 | |
251 | /* | |
58c90473 DC |
252 | * Now we join the directory inode to the transaction. We do not do it |
253 | * earlier because xfs_dir_ialloc might commit the previous transaction | |
254 | * (and release all the locks). An error from here on will result in | |
255 | * the transaction cancel unlocking dp so don't do it explicitly in the | |
19de7351 DC |
256 | * error path. |
257 | */ | |
65523218 | 258 | xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL); |
19de7351 DC |
259 | unlock_dp_on_error = false; |
260 | ||
261 | /* | |
262 | * Also attach the dquot(s) to it, if applicable. | |
263 | */ | |
92f8ff73 | 264 | xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp); |
19de7351 DC |
265 | |
266 | if (resblks) | |
267 | resblks -= XFS_IALLOC_SPACE_RES(mp); | |
268 | /* | |
269 | * If the symlink will fit into the inode, write it inline. | |
270 | */ | |
271 | if (pathlen <= XFS_IFORK_DSIZE(ip)) { | |
143f4aed | 272 | xfs_init_local_fork(ip, XFS_DATA_FORK, target_path, pathlen); |
19de7351 | 273 | |
143f4aed | 274 | ip->i_d.di_size = pathlen; |
19de7351 DC |
275 | ip->i_d.di_format = XFS_DINODE_FMT_LOCAL; |
276 | xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE); | |
19de7351 | 277 | } else { |
f948dd76 DC |
278 | int offset; |
279 | ||
19de7351 DC |
280 | first_fsb = 0; |
281 | nmaps = XFS_SYMLINK_MAPS; | |
282 | ||
283 | error = xfs_bmapi_write(tp, ip, first_fsb, fs_blocks, | |
a7beabea | 284 | XFS_BMAPI_METADATA, resblks, mval, &nmaps); |
19de7351 | 285 | if (error) |
c8eac49e | 286 | goto out_trans_cancel; |
19de7351 DC |
287 | |
288 | if (resblks) | |
289 | resblks -= fs_blocks; | |
290 | ip->i_d.di_size = pathlen; | |
291 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); | |
292 | ||
293 | cur_chunk = target_path; | |
f948dd76 | 294 | offset = 0; |
19de7351 | 295 | for (n = 0; n < nmaps; n++) { |
321a9583 | 296 | char *buf; |
f948dd76 | 297 | |
19de7351 DC |
298 | d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock); |
299 | byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount); | |
300 | bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d, | |
301 | BTOBB(byte_cnt), 0); | |
302 | if (!bp) { | |
2451337d | 303 | error = -ENOMEM; |
c8eac49e | 304 | goto out_trans_cancel; |
19de7351 | 305 | } |
f948dd76 DC |
306 | bp->b_ops = &xfs_symlink_buf_ops; |
307 | ||
308 | byte_cnt = XFS_SYMLINK_BUF_SPACE(mp, byte_cnt); | |
321a9583 | 309 | byte_cnt = min(byte_cnt, pathlen); |
19de7351 | 310 | |
f948dd76 DC |
311 | buf = bp->b_addr; |
312 | buf += xfs_symlink_hdr_set(mp, ip->i_ino, offset, | |
313 | byte_cnt, bp); | |
314 | ||
315 | memcpy(buf, cur_chunk, byte_cnt); | |
316 | ||
19de7351 | 317 | cur_chunk += byte_cnt; |
f948dd76 DC |
318 | pathlen -= byte_cnt; |
319 | offset += byte_cnt; | |
19de7351 | 320 | |
daf7b799 | 321 | xfs_trans_buf_set_type(tp, bp, XFS_BLFT_SYMLINK_BUF); |
f948dd76 DC |
322 | xfs_trans_log_buf(tp, bp, 0, (buf + byte_cnt - 1) - |
323 | (char *)bp->b_addr); | |
19de7351 | 324 | } |
321a9583 | 325 | ASSERT(pathlen == 0); |
19de7351 DC |
326 | } |
327 | ||
328 | /* | |
329 | * Create the directory entry for the symlink. | |
330 | */ | |
381eee69 | 331 | error = xfs_dir_createname(tp, dp, link_name, ip->i_ino, resblks); |
19de7351 | 332 | if (error) |
c8eac49e | 333 | goto out_trans_cancel; |
19de7351 DC |
334 | xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
335 | xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE); | |
336 | ||
337 | /* | |
338 | * If this is a synchronous mount, make sure that the | |
339 | * symlink transaction goes to disk before returning to | |
340 | * the user. | |
341 | */ | |
342 | if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) { | |
343 | xfs_trans_set_sync(tp); | |
344 | } | |
345 | ||
70393313 | 346 | error = xfs_trans_commit(tp); |
58c90473 DC |
347 | if (error) |
348 | goto out_release_inode; | |
349 | ||
19de7351 DC |
350 | xfs_qm_dqrele(udqp); |
351 | xfs_qm_dqrele(gdqp); | |
92f8ff73 | 352 | xfs_qm_dqrele(pdqp); |
19de7351 DC |
353 | |
354 | *ipp = ip; | |
355 | return 0; | |
356 | ||
58c90473 | 357 | out_trans_cancel: |
4906e215 | 358 | xfs_trans_cancel(tp); |
58c90473 DC |
359 | out_release_inode: |
360 | /* | |
361 | * Wait until after the current transaction is aborted to finish the | |
362 | * setup of the inode and release the inode. This prevents recursive | |
363 | * transactions and deadlocks from xfs_inactive. | |
364 | */ | |
365 | if (ip) { | |
366 | xfs_finish_inode_setup(ip); | |
44a8736b | 367 | xfs_irele(ip); |
58c90473 DC |
368 | } |
369 | ||
19de7351 DC |
370 | xfs_qm_dqrele(udqp); |
371 | xfs_qm_dqrele(gdqp); | |
92f8ff73 | 372 | xfs_qm_dqrele(pdqp); |
19de7351 DC |
373 | |
374 | if (unlock_dp_on_error) | |
65523218 | 375 | xfs_iunlock(dp, XFS_ILOCK_EXCL); |
19de7351 DC |
376 | return error; |
377 | } | |
378 | ||
379 | /* | |
380 | * Free a symlink that has blocks associated with it. | |
381 | */ | |
725eb1eb | 382 | STATIC int |
19de7351 | 383 | xfs_inactive_symlink_rmt( |
36b21dde | 384 | struct xfs_inode *ip) |
19de7351 DC |
385 | { |
386 | xfs_buf_t *bp; | |
19de7351 DC |
387 | int done; |
388 | int error; | |
19de7351 DC |
389 | int i; |
390 | xfs_mount_t *mp; | |
391 | xfs_bmbt_irec_t mval[XFS_SYMLINK_MAPS]; | |
392 | int nmaps; | |
19de7351 DC |
393 | int size; |
394 | xfs_trans_t *tp; | |
395 | ||
19de7351 | 396 | mp = ip->i_mount; |
725eb1eb | 397 | ASSERT(ip->i_df.if_flags & XFS_IFEXTENTS); |
19de7351 DC |
398 | /* |
399 | * We're freeing a symlink that has some | |
400 | * blocks allocated to it. Free the | |
401 | * blocks here. We know that we've got | |
402 | * either 1 or 2 extents and that we can | |
403 | * free them all in one bunmapi call. | |
404 | */ | |
405 | ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2); | |
406 | ||
253f4911 CH |
407 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp); |
408 | if (error) | |
36b21dde | 409 | return error; |
36b21dde BF |
410 | |
411 | xfs_ilock(ip, XFS_ILOCK_EXCL); | |
412 | xfs_trans_ijoin(tp, ip, 0); | |
413 | ||
19de7351 DC |
414 | /* |
415 | * Lock the inode, fix the size, and join it to the transaction. | |
416 | * Hold it so in the normal path, we still have it locked for | |
417 | * the second transaction. In the error paths we need it | |
418 | * held so the cancel won't rele it, see below. | |
419 | */ | |
420 | size = (int)ip->i_d.di_size; | |
421 | ip->i_d.di_size = 0; | |
422 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); | |
423 | /* | |
424 | * Find the block(s) so we can inval and unmap them. | |
425 | */ | |
426 | done = 0; | |
19de7351 | 427 | nmaps = ARRAY_SIZE(mval); |
f948dd76 | 428 | error = xfs_bmapi_read(ip, 0, xfs_symlink_blocks(mp, size), |
19de7351 DC |
429 | mval, &nmaps, 0); |
430 | if (error) | |
36b21dde | 431 | goto error_trans_cancel; |
19de7351 | 432 | /* |
f948dd76 | 433 | * Invalidate the block(s). No validation is done. |
19de7351 DC |
434 | */ |
435 | for (i = 0; i < nmaps; i++) { | |
436 | bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, | |
437 | XFS_FSB_TO_DADDR(mp, mval[i].br_startblock), | |
438 | XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0); | |
439 | if (!bp) { | |
2451337d | 440 | error = -ENOMEM; |
c8eac49e | 441 | goto error_trans_cancel; |
19de7351 DC |
442 | } |
443 | xfs_trans_binval(tp, bp); | |
444 | } | |
445 | /* | |
2c3234d1 | 446 | * Unmap the dead block(s) to the dfops. |
19de7351 | 447 | */ |
2af52842 | 448 | error = xfs_bunmapi(tp, ip, 0, size, 0, nmaps, &done); |
36b21dde | 449 | if (error) |
c8eac49e | 450 | goto error_trans_cancel; |
19de7351 | 451 | ASSERT(done); |
3565b660 | 452 | |
19de7351 | 453 | /* |
c8eac49e BF |
454 | * Commit the transaction. This first logs the EFI and the inode, then |
455 | * rolls and commits the transaction that frees the extents. | |
19de7351 | 456 | */ |
3565b660 | 457 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
70393313 | 458 | error = xfs_trans_commit(tp); |
19de7351 DC |
459 | if (error) { |
460 | ASSERT(XFS_FORCED_SHUTDOWN(mp)); | |
36b21dde | 461 | goto error_unlock; |
19de7351 | 462 | } |
19de7351 DC |
463 | |
464 | /* | |
465 | * Remove the memory for extent descriptions (just bookkeeping). | |
466 | */ | |
467 | if (ip->i_df.if_bytes) | |
468 | xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK); | |
469 | ASSERT(ip->i_df.if_bytes == 0); | |
19de7351 | 470 | |
36b21dde | 471 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
19de7351 DC |
472 | return 0; |
473 | ||
36b21dde | 474 | error_trans_cancel: |
4906e215 | 475 | xfs_trans_cancel(tp); |
36b21dde BF |
476 | error_unlock: |
477 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | |
19de7351 DC |
478 | return error; |
479 | } | |
725eb1eb MT |
480 | |
481 | /* | |
482 | * xfs_inactive_symlink - free a symlink | |
483 | */ | |
484 | int | |
485 | xfs_inactive_symlink( | |
36b21dde | 486 | struct xfs_inode *ip) |
725eb1eb MT |
487 | { |
488 | struct xfs_mount *mp = ip->i_mount; | |
489 | int pathlen; | |
490 | ||
491 | trace_xfs_inactive_symlink(ip); | |
492 | ||
725eb1eb | 493 | if (XFS_FORCED_SHUTDOWN(mp)) |
2451337d | 494 | return -EIO; |
725eb1eb | 495 | |
36b21dde BF |
496 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
497 | ||
725eb1eb MT |
498 | /* |
499 | * Zero length symlinks _can_ exist. | |
500 | */ | |
501 | pathlen = (int)ip->i_d.di_size; | |
36b21dde BF |
502 | if (!pathlen) { |
503 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | |
725eb1eb | 504 | return 0; |
36b21dde | 505 | } |
725eb1eb | 506 | |
6eb0b8df | 507 | if (pathlen < 0 || pathlen > XFS_SYMLINK_MAXLEN) { |
725eb1eb MT |
508 | xfs_alert(mp, "%s: inode (0x%llx) bad symlink length (%d)", |
509 | __func__, (unsigned long long)ip->i_ino, pathlen); | |
36b21dde | 510 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
725eb1eb | 511 | ASSERT(0); |
2451337d | 512 | return -EFSCORRUPTED; |
725eb1eb MT |
513 | } |
514 | ||
515 | if (ip->i_df.if_flags & XFS_IFINLINE) { | |
36b21dde | 516 | if (ip->i_df.if_bytes > 0) |
725eb1eb MT |
517 | xfs_idata_realloc(ip, -(ip->i_df.if_bytes), |
518 | XFS_DATA_FORK); | |
36b21dde | 519 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
725eb1eb MT |
520 | ASSERT(ip->i_df.if_bytes == 0); |
521 | return 0; | |
522 | } | |
523 | ||
36b21dde BF |
524 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
525 | ||
725eb1eb | 526 | /* remove the remote symlink */ |
36b21dde | 527 | return xfs_inactive_symlink_rmt(ip); |
725eb1eb | 528 | } |