2 * Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
34 #include "xfs_macros.h"
35 #include "xfs_types.h"
38 #include "xfs_trans.h"
42 #include "xfs_dmapi.h"
43 #include "xfs_mount.h"
44 #include "xfs_bmap_btree.h"
45 #include "xfs_attr_sf.h"
46 #include "xfs_dir_sf.h"
47 #include "xfs_dir2_sf.h"
48 #include "xfs_dinode.h"
49 #include "xfs_inode_item.h"
50 #include "xfs_inode.h"
52 #include "xfs_error.h"
53 #include "xfs_quota.h"
54 #include "xfs_refcache.h"
55 #include "xfs_utils.h"
56 #include "xfs_trans_space.h"
57 #include "xfs_da_btree.h"
58 #include "xfs_dir_leaf.h"
62 * Given an array of up to 4 inode pointers, unlock the pointed to inodes.
63 * If there are fewer than 4 entries in the array, the empty entries will
64 * be at the end and will have NULL pointers in them.
73 xfs_iunlock(i_tab
[0], lock_mode
);
74 for (i
= 1; i
< 4; i
++) {
75 if (i_tab
[i
] == NULL
) {
79 * Watch out for duplicate entries in the table.
81 if (i_tab
[i
] != i_tab
[i
-1]) {
82 xfs_iunlock(i_tab
[i
], lock_mode
);
88 int xfs_rename_skip
, xfs_rename_nskip
;
92 * The following routine will acquire the locks required for a rename
93 * operation. The code understands the semantics of renames and will
94 * validate that name1 exists under dp1 & that name2 may or may not
97 * We are renaming dp1/name1 to dp2/name2.
99 * Return ENOENT if dp1 does not exist, other lookup errors, or 0 for success.
103 xfs_inode_t
*dp1
, /* old (source) directory inode */
104 xfs_inode_t
*dp2
, /* new (target) directory inode */
105 vname_t
*vname1
,/* old entry name */
106 vname_t
*vname2
,/* new entry name */
107 xfs_inode_t
**ipp1
, /* inode of old entry */
108 xfs_inode_t
**ipp2
, /* inode of new entry, if it
109 already exists, NULL otherwise. */
110 xfs_inode_t
**i_tab
,/* array of inode returned, sorted */
111 int *num_inodes
) /* number of inodes in array */
113 xfs_inode_t
*ip1
, *ip2
, *temp
;
114 xfs_ino_t inum1
, inum2
;
118 int diff_dirs
= (dp1
!= dp2
);
123 * First, find out the current inums of the entries so that we
124 * can determine the initial locking order. We'll have to
125 * sanity check stuff after all the locks have been acquired
126 * to see if we still have the right inodes, directories, etc.
128 lock_mode
= xfs_ilock_map_shared(dp1
);
129 error
= xfs_get_dir_entry(vname1
, &ip1
);
131 xfs_iunlock_map_shared(dp1
, lock_mode
);
141 * Unlock dp1 and lock dp2 if they are different.
145 xfs_iunlock_map_shared(dp1
, lock_mode
);
146 lock_mode
= xfs_ilock_map_shared(dp2
);
149 error
= xfs_dir_lookup_int(XFS_ITOBHV(dp2
), lock_mode
,
150 vname2
, &inum2
, &ip2
);
151 if (error
== ENOENT
) { /* target does not need to exist. */
155 * If dp2 and dp1 are the same, the next line unlocks dp1.
158 xfs_iunlock_map_shared(dp2
, lock_mode
);
166 * i_tab contains a list of pointers to inodes. We initialize
167 * the table here & we'll sort it. We will then use it to
168 * order the acquisition of the inode locks.
170 * Note that the table may contain duplicates. e.g., dp1 == dp2.
184 * Sort the elements via bubble sort. (Remember, there are at
185 * most 4 elements to sort, so this is adequate.)
187 for (i
=0; i
< *num_inodes
; i
++) {
188 for (j
=1; j
< *num_inodes
; j
++) {
189 if (i_tab
[j
]->i_ino
< i_tab
[j
-1]->i_ino
) {
191 i_tab
[j
] = i_tab
[j
-1];
198 * We have dp2 locked. If it isn't first, unlock it.
199 * If it is first, tell xfs_lock_inodes so it can skip it
200 * when locking. if dp1 == dp2, xfs_lock_inodes will skip both
201 * since they are equal. xfs_lock_inodes needs all these inodes
202 * so that it can unlock and retry if there might be a dead-lock
203 * potential with the log.
206 if (i_tab
[0] == dp2
&& lock_mode
== XFS_ILOCK_SHARED
) {
210 xfs_lock_inodes(i_tab
, *num_inodes
, 1, XFS_ILOCK_SHARED
);
215 xfs_iunlock_map_shared(dp2
, lock_mode
);
216 xfs_lock_inodes(i_tab
, *num_inodes
, 0, XFS_ILOCK_SHARED
);
220 * Set the return value. Null out any unused entries in i_tab.
222 *ipp1
= *ipp2
= NULL
;
223 for (i
=0; i
< *num_inodes
; i
++) {
224 if (i_tab
[i
]->i_ino
== inum1
) {
227 if (i_tab
[i
]->i_ino
== inum2
) {
238 int rename_which_error_return
= 0;
245 bhv_desc_t
*src_dir_bdp
,
247 vnode_t
*target_dir_vp
,
248 vname_t
*target_vname
,
252 xfs_inode_t
*src_dp
, *target_dp
, *src_ip
, *target_ip
;
254 int new_parent
; /* moving to a new dir */
255 int src_is_directory
; /* src_name is a directory */
257 xfs_bmap_free_t free_list
;
258 xfs_fsblock_t first_block
;
261 xfs_inode_t
*inodes
[4];
262 int target_ip_dropped
= 0; /* dropped target_ip link? */
264 bhv_desc_t
*target_dir_bdp
;
266 int target_link_zero
= 0;
268 char *src_name
= VNAME(src_vname
);
269 char *target_name
= VNAME(target_vname
);
270 int src_namelen
= VNAMELEN(src_vname
);
271 int target_namelen
= VNAMELEN(target_vname
);
273 src_dir_vp
= BHV_TO_VNODE(src_dir_bdp
);
274 vn_trace_entry(src_dir_vp
, "xfs_rename", (inst_t
*)__return_address
);
275 vn_trace_entry(target_dir_vp
, "xfs_rename", (inst_t
*)__return_address
);
278 * Find the XFS behavior descriptor for the target directory
279 * vnode since it was not handed to us.
281 target_dir_bdp
= vn_bhv_lookup_unlocked(VN_BHV_HEAD(target_dir_vp
),
283 if (target_dir_bdp
== NULL
) {
284 return XFS_ERROR(EXDEV
);
287 src_dp
= XFS_BHVTOI(src_dir_bdp
);
288 target_dp
= XFS_BHVTOI(target_dir_bdp
);
289 mp
= src_dp
->i_mount
;
291 if (DM_EVENT_ENABLED(src_dir_vp
->v_vfsp
, src_dp
, DM_EVENT_RENAME
) ||
292 DM_EVENT_ENABLED(target_dir_vp
->v_vfsp
,
293 target_dp
, DM_EVENT_RENAME
)) {
294 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_RENAME
,
295 src_dir_vp
, DM_RIGHT_NULL
,
296 target_dir_vp
, DM_RIGHT_NULL
,
297 src_name
, target_name
,
303 /* Return through std_return after this point. */
306 * Lock all the participating inodes. Depending upon whether
307 * the target_name exists in the target directory, and
308 * whether the target directory is the same as the source
309 * directory, we can lock from 2 to 4 inodes.
310 * xfs_lock_for_rename() will return ENOENT if src_name
311 * does not exist in the source directory.
314 error
= xfs_lock_for_rename(src_dp
, target_dp
, src_vname
,
315 target_vname
, &src_ip
, &target_ip
, inodes
,
319 rename_which_error_return
= __LINE__
;
321 * We have nothing locked, no inode references, and
322 * no transaction, so just get out.
327 ASSERT(src_ip
!= NULL
);
329 if ((src_ip
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
) {
331 * Check for link count overflow on target_dp
333 if (target_ip
== NULL
&& (src_dp
!= target_dp
) &&
334 target_dp
->i_d
.di_nlink
>= XFS_MAXLINK
) {
335 rename_which_error_return
= __LINE__
;
336 error
= XFS_ERROR(EMLINK
);
337 xfs_rename_unlock4(inodes
, XFS_ILOCK_SHARED
);
342 new_parent
= (src_dp
!= target_dp
);
343 src_is_directory
= ((src_ip
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
);
346 * Drop the locks on our inodes so that we can start the transaction.
348 xfs_rename_unlock4(inodes
, XFS_ILOCK_SHARED
);
350 XFS_BMAP_INIT(&free_list
, &first_block
);
351 tp
= xfs_trans_alloc(mp
, XFS_TRANS_RENAME
);
352 cancel_flags
= XFS_TRANS_RELEASE_LOG_RES
;
353 spaceres
= XFS_RENAME_SPACE_RES(mp
, target_namelen
);
354 error
= xfs_trans_reserve(tp
, spaceres
, XFS_RENAME_LOG_RES(mp
), 0,
355 XFS_TRANS_PERM_LOG_RES
, XFS_RENAME_LOG_COUNT
);
356 if (error
== ENOSPC
) {
358 error
= xfs_trans_reserve(tp
, 0, XFS_RENAME_LOG_RES(mp
), 0,
359 XFS_TRANS_PERM_LOG_RES
, XFS_RENAME_LOG_COUNT
);
362 rename_which_error_return
= __LINE__
;
363 xfs_trans_cancel(tp
, 0);
368 * Attach the dquots to the inodes
370 if ((error
= XFS_QM_DQVOPRENAME(mp
, inodes
))) {
371 xfs_trans_cancel(tp
, cancel_flags
);
372 rename_which_error_return
= __LINE__
;
377 * Reacquire the inode locks we dropped above.
379 xfs_lock_inodes(inodes
, num_inodes
, 0, XFS_ILOCK_EXCL
);
382 * Join all the inodes to the transaction. From this point on,
383 * we can rely on either trans_commit or trans_cancel to unlock
384 * them. Note that we need to add a vnode reference to the
385 * directories since trans_commit & trans_cancel will decrement
386 * them when they unlock the inodes. Also, we need to be careful
387 * not to add an inode to the transaction more than once.
390 xfs_trans_ijoin(tp
, src_dp
, XFS_ILOCK_EXCL
);
392 VN_HOLD(target_dir_vp
);
393 xfs_trans_ijoin(tp
, target_dp
, XFS_ILOCK_EXCL
);
395 if ((src_ip
!= src_dp
) && (src_ip
!= target_dp
)) {
396 xfs_trans_ijoin(tp
, src_ip
, XFS_ILOCK_EXCL
);
398 if ((target_ip
!= NULL
) &&
399 (target_ip
!= src_ip
) &&
400 (target_ip
!= src_dp
) &&
401 (target_ip
!= target_dp
)) {
402 xfs_trans_ijoin(tp
, target_ip
, XFS_ILOCK_EXCL
);
408 if (target_ip
== NULL
) {
410 * If there's no space reservation, check the entry will
411 * fit before actually inserting it.
414 (error
= XFS_DIR_CANENTER(mp
, tp
, target_dp
, target_name
,
416 rename_which_error_return
= __LINE__
;
420 * If target does not exist and the rename crosses
421 * directories, adjust the target directory link count
422 * to account for the ".." reference from the new entry.
424 error
= XFS_DIR_CREATENAME(mp
, tp
, target_dp
, target_name
,
425 target_namelen
, src_ip
->i_ino
,
426 &first_block
, &free_list
, spaceres
);
427 if (error
== ENOSPC
) {
428 rename_which_error_return
= __LINE__
;
432 rename_which_error_return
= __LINE__
;
435 xfs_ichgtime(target_dp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
437 if (new_parent
&& src_is_directory
) {
438 error
= xfs_bumplink(tp
, target_dp
);
440 rename_which_error_return
= __LINE__
;
444 } else { /* target_ip != NULL */
447 * If target exists and it's a directory, check that both
448 * target and source are directories and that target can be
449 * destroyed, or that neither is a directory.
451 if ((target_ip
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
) {
453 * Make sure target dir is empty.
455 if (!(XFS_DIR_ISEMPTY(target_ip
->i_mount
, target_ip
)) ||
456 (target_ip
->i_d
.di_nlink
> 2)) {
457 error
= XFS_ERROR(EEXIST
);
458 rename_which_error_return
= __LINE__
;
464 * Link the source inode under the target name.
465 * If the source inode is a directory and we are moving
466 * it across directories, its ".." entry will be
467 * inconsistent until we replace that down below.
469 * In case there is already an entry with the same
470 * name at the destination directory, remove it first.
472 error
= XFS_DIR_REPLACE(mp
, tp
, target_dp
, target_name
,
473 target_namelen
, src_ip
->i_ino
, &first_block
,
474 &free_list
, spaceres
);
476 rename_which_error_return
= __LINE__
;
479 xfs_ichgtime(target_dp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
482 * Decrement the link count on the target since the target
483 * dir no longer points to it.
485 error
= xfs_droplink(tp
, target_ip
);
487 rename_which_error_return
= __LINE__
;
490 target_ip_dropped
= 1;
492 if (src_is_directory
) {
494 * Drop the link from the old "." entry.
496 error
= xfs_droplink(tp
, target_ip
);
498 rename_which_error_return
= __LINE__
;
503 /* Do this test while we still hold the locks */
504 target_link_zero
= (target_ip
)->i_d
.di_nlink
==0;
506 } /* target_ip != NULL */
511 if (new_parent
&& src_is_directory
) {
514 * Rewrite the ".." entry to point to the new
517 error
= XFS_DIR_REPLACE(mp
, tp
, src_ip
, "..", 2,
518 target_dp
->i_ino
, &first_block
,
519 &free_list
, spaceres
);
520 ASSERT(error
!= EEXIST
);
522 rename_which_error_return
= __LINE__
;
525 xfs_ichgtime(src_ip
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
529 * We always want to hit the ctime on the source inode.
530 * We do it in the if clause above for the 'new_parent &&
531 * src_is_directory' case, and here we get all the other
532 * cases. This isn't strictly required by the standards
533 * since the source inode isn't really being changed,
534 * but old unix file systems did it and some incremental
535 * backup programs won't work without it.
537 xfs_ichgtime(src_ip
, XFS_ICHGTIME_CHG
);
541 * Adjust the link count on src_dp. This is necessary when
542 * renaming a directory, either within one parent when
543 * the target existed, or across two parent directories.
545 if (src_is_directory
&& (new_parent
|| target_ip
!= NULL
)) {
548 * Decrement link count on src_directory since the
549 * entry that's moved no longer points to it.
551 error
= xfs_droplink(tp
, src_dp
);
553 rename_which_error_return
= __LINE__
;
558 error
= XFS_DIR_REMOVENAME(mp
, tp
, src_dp
, src_name
, src_namelen
,
559 src_ip
->i_ino
, &first_block
, &free_list
, spaceres
);
561 rename_which_error_return
= __LINE__
;
564 xfs_ichgtime(src_dp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
567 * Update the generation counts on all the directory inodes
568 * that we're modifying.
571 xfs_trans_log_inode(tp
, src_dp
, XFS_ILOG_CORE
);
575 xfs_trans_log_inode(tp
, target_dp
, XFS_ILOG_CORE
);
579 * If there was a target inode, take an extra reference on
580 * it here so that it doesn't go to xfs_inactive() from
583 if (target_ip
!= NULL
) {
588 * If this is a synchronous mount, make sure that the
589 * rename transaction goes to disk before returning to
592 if (mp
->m_flags
& (XFS_MOUNT_WSYNC
|XFS_MOUNT_DIRSYNC
)) {
593 xfs_trans_set_sync(tp
);
597 * Take refs. for vop_link_removed calls below. No need to worry
598 * about directory refs. because the caller holds them.
600 * Do holds before the xfs_bmap_finish since it might rele them down
604 if (target_ip_dropped
)
608 error
= xfs_bmap_finish(&tp
, &free_list
, first_block
, &committed
);
610 xfs_bmap_cancel(&free_list
);
611 xfs_trans_cancel(tp
, (XFS_TRANS_RELEASE_LOG_RES
|
613 if (target_ip
!= NULL
) {
616 if (target_ip_dropped
) {
624 * trans_commit will unlock src_ip, target_ip & decrement
625 * the vnode references.
627 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
628 if (target_ip
!= NULL
) {
629 xfs_refcache_purge_ip(target_ip
);
633 * Let interposed file systems know about removed links.
635 if (target_ip_dropped
) {
636 VOP_LINK_REMOVED(XFS_ITOV(target_ip
), target_dir_vp
,
641 FSC_NOTIFY_NAME_CHANGED(XFS_ITOV(src_ip
));
645 /* Fall through to std_return with error = 0 or errno from
646 * xfs_trans_commit */
648 if (DM_EVENT_ENABLED(src_dir_vp
->v_vfsp
, src_dp
, DM_EVENT_POSTRENAME
) ||
649 DM_EVENT_ENABLED(target_dir_vp
->v_vfsp
,
650 target_dp
, DM_EVENT_POSTRENAME
)) {
651 (void) XFS_SEND_NAMESP (mp
, DM_EVENT_POSTRENAME
,
652 src_dir_vp
, DM_RIGHT_NULL
,
653 target_dir_vp
, DM_RIGHT_NULL
,
654 src_name
, target_name
,
660 cancel_flags
|= XFS_TRANS_ABORT
;
663 xfs_bmap_cancel(&free_list
);
664 xfs_trans_cancel(tp
, cancel_flags
);
669 if (target_ip
!= NULL
) {