2 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
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.
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
20 #include "xfs_types.h"
23 #include "xfs_trans.h"
27 #include "xfs_dmapi.h"
28 #include "xfs_mount.h"
29 #include "xfs_da_btree.h"
30 #include "xfs_bmap_btree.h"
31 #include "xfs_dir2_sf.h"
32 #include "xfs_attr_sf.h"
33 #include "xfs_dinode.h"
34 #include "xfs_inode.h"
35 #include "xfs_inode_item.h"
37 #include "xfs_error.h"
38 #include "xfs_quota.h"
39 #include "xfs_utils.h"
40 #include "xfs_trans_space.h"
41 #include "xfs_vnodeops.h"
45 * Given an array of up to 4 inode pointers, unlock the pointed to inodes.
46 * If there are fewer than 4 entries in the array, the empty entries will
47 * be at the end and will have NULL pointers in them.
56 xfs_iunlock(i_tab[0], lock_mode);
57 for (i = 1; i < 4; i++) {
58 if (i_tab[i] == NULL) {
62 * Watch out for duplicate entries in the table.
64 if (i_tab[i] != i_tab[i-1]) {
65 xfs_iunlock(i_tab[i], lock_mode);
71 int xfs_rename_skip, xfs_rename_nskip;
75 * The following routine will acquire the locks required for a rename
76 * operation. The code understands the semantics of renames and will
77 * validate that name1 exists under dp1 & that name2 may or may not
80 * We are renaming dp1/name1 to dp2/name2.
82 * Return ENOENT if dp1 does not exist, other lookup errors, or 0 for success.
86 xfs_inode_t *dp1, /* in: old (source) directory inode */
87 xfs_inode_t *dp2, /* in: new (target) directory inode */
88 xfs_inode_t *ip1, /* in: inode of old entry */
89 struct xfs_name *name2, /* in: new entry name */
90 xfs_inode_t **ipp2, /* out: inode of new entry, if it
91 already exists, NULL otherwise. */
92 xfs_inode_t **i_tab,/* out: array of inode returned, sorted */
93 int *num_inodes) /* out: number of inodes in array */
95 xfs_inode_t *ip2 = NULL;
97 xfs_ino_t inum1, inum2;
101 int diff_dirs = (dp1 != dp2);
104 * First, find out the current inums of the entries so that we
105 * can determine the initial locking order. We'll have to
106 * sanity check stuff after all the locks have been acquired
107 * to see if we still have the right inodes, directories, etc.
109 lock_mode = xfs_ilock_map_shared(dp1);
116 * Unlock dp1 and lock dp2 if they are different.
119 xfs_iunlock_map_shared(dp1, lock_mode);
120 lock_mode = xfs_ilock_map_shared(dp2);
123 error = xfs_dir_lookup_int(dp2, lock_mode, name2, &inum2, &ip2);
124 if (error == ENOENT) { /* target does not need to exist. */
128 * If dp2 and dp1 are the same, the next line unlocks dp1.
131 xfs_iunlock_map_shared(dp2, lock_mode);
139 * i_tab contains a list of pointers to inodes. We initialize
140 * the table here & we'll sort it. We will then use it to
141 * order the acquisition of the inode locks.
143 * Note that the table may contain duplicates. e.g., dp1 == dp2.
158 * Sort the elements via bubble sort. (Remember, there are at
159 * most 4 elements to sort, so this is adequate.)
161 for (i=0; i < *num_inodes; i++) {
162 for (j=1; j < *num_inodes; j++) {
163 if (i_tab[j]->i_ino < i_tab[j-1]->i_ino) {
165 i_tab[j] = i_tab[j-1];
172 * We have dp2 locked. If it isn't first, unlock it.
173 * If it is first, tell xfs_lock_inodes so it can skip it
174 * when locking. if dp1 == dp2, xfs_lock_inodes will skip both
175 * since they are equal. xfs_lock_inodes needs all these inodes
176 * so that it can unlock and retry if there might be a dead-lock
177 * potential with the log.
180 if (i_tab[0] == dp2 && lock_mode == XFS_ILOCK_SHARED) {
184 xfs_lock_inodes(i_tab, *num_inodes, 1, XFS_ILOCK_SHARED);
189 xfs_iunlock_map_shared(dp2, lock_mode);
190 xfs_lock_inodes(i_tab, *num_inodes, 0, XFS_ILOCK_SHARED);
202 struct xfs_name *src_name,
204 xfs_inode_t *target_dp,
205 struct xfs_name *target_name)
208 xfs_inode_t *target_ip;
209 xfs_mount_t *mp = src_dp->i_mount;
210 int new_parent; /* moving to a new dir */
211 int src_is_directory; /* src_name is a directory */
213 xfs_bmap_free_t free_list;
214 xfs_fsblock_t first_block;
217 xfs_inode_t *inodes[4];
218 int target_ip_dropped = 0; /* dropped target_ip link? */
220 int target_link_zero = 0;
223 xfs_itrace_entry(src_dp);
224 xfs_itrace_entry(target_dp);
226 if (DM_EVENT_ENABLED(src_dp, DM_EVENT_RENAME) ||
227 DM_EVENT_ENABLED(target_dp, DM_EVENT_RENAME)) {
228 error = XFS_SEND_NAMESP(mp, DM_EVENT_RENAME,
229 src_dp, DM_RIGHT_NULL,
230 target_dp, DM_RIGHT_NULL,
231 src_name->name, target_name->name,
237 /* Return through std_return after this point. */
240 * Lock all the participating inodes. Depending upon whether
241 * the target_name exists in the target directory, and
242 * whether the target directory is the same as the source
243 * directory, we can lock from 2 to 4 inodes.
244 * xfs_lock_for_rename() will return ENOENT if src_name
245 * does not exist in the source directory.
248 error = xfs_lock_for_rename(src_dp, target_dp, src_ip, target_name,
249 &target_ip, inodes, &num_inodes);
252 * We have nothing locked, no inode references, and
253 * no transaction, so just get out.
258 ASSERT(src_ip != NULL);
260 if ((src_ip->i_d.di_mode & S_IFMT) == S_IFDIR) {
262 * Check for link count overflow on target_dp
264 if (target_ip == NULL && (src_dp != target_dp) &&
265 target_dp->i_d.di_nlink >= XFS_MAXLINK) {
266 error = XFS_ERROR(EMLINK);
267 xfs_rename_unlock4(inodes, XFS_ILOCK_SHARED);
273 * If we are using project inheritance, we only allow renames
274 * into our tree when the project IDs are the same; else the
275 * tree quota mechanism would be circumvented.
277 if (unlikely((target_dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
278 (target_dp->i_d.di_projid != src_ip->i_d.di_projid))) {
279 error = XFS_ERROR(EXDEV);
280 xfs_rename_unlock4(inodes, XFS_ILOCK_SHARED);
284 new_parent = (src_dp != target_dp);
285 src_is_directory = ((src_ip->i_d.di_mode & S_IFMT) == S_IFDIR);
288 * Drop the locks on our inodes so that we can start the transaction.
290 xfs_rename_unlock4(inodes, XFS_ILOCK_SHARED);
292 XFS_BMAP_INIT(&free_list, &first_block);
293 tp = xfs_trans_alloc(mp, XFS_TRANS_RENAME);
294 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
295 spaceres = XFS_RENAME_SPACE_RES(mp, target_name->len);
296 error = xfs_trans_reserve(tp, spaceres, XFS_RENAME_LOG_RES(mp), 0,
297 XFS_TRANS_PERM_LOG_RES, XFS_RENAME_LOG_COUNT);
298 if (error == ENOSPC) {
300 error = xfs_trans_reserve(tp, 0, XFS_RENAME_LOG_RES(mp), 0,
301 XFS_TRANS_PERM_LOG_RES, XFS_RENAME_LOG_COUNT);
304 xfs_trans_cancel(tp, 0);
309 * Attach the dquots to the inodes
311 if ((error = XFS_QM_DQVOPRENAME(mp, inodes))) {
312 xfs_trans_cancel(tp, cancel_flags);
317 * Reacquire the inode locks we dropped above.
319 xfs_lock_inodes(inodes, num_inodes, 0, XFS_ILOCK_EXCL);
322 * Join all the inodes to the transaction. From this point on,
323 * we can rely on either trans_commit or trans_cancel to unlock
324 * them. Note that we need to add a vnode reference to the
325 * directories since trans_commit & trans_cancel will decrement
326 * them when they unlock the inodes. Also, we need to be careful
327 * not to add an inode to the transaction more than once.
330 xfs_trans_ijoin(tp, src_dp, XFS_ILOCK_EXCL);
333 xfs_trans_ijoin(tp, target_dp, XFS_ILOCK_EXCL);
335 if ((src_ip != src_dp) && (src_ip != target_dp)) {
336 xfs_trans_ijoin(tp, src_ip, XFS_ILOCK_EXCL);
338 if ((target_ip != NULL) &&
339 (target_ip != src_ip) &&
340 (target_ip != src_dp) &&
341 (target_ip != target_dp)) {
342 xfs_trans_ijoin(tp, target_ip, XFS_ILOCK_EXCL);
348 if (target_ip == NULL) {
350 * If there's no space reservation, check the entry will
351 * fit before actually inserting it.
353 error = xfs_dir_canenter(tp, target_dp, target_name, spaceres);
357 * If target does not exist and the rename crosses
358 * directories, adjust the target directory link count
359 * to account for the ".." reference from the new entry.
361 error = xfs_dir_createname(tp, target_dp, target_name,
362 src_ip->i_ino, &first_block,
363 &free_list, spaceres);
368 xfs_ichgtime(target_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
370 if (new_parent && src_is_directory) {
371 error = xfs_bumplink(tp, target_dp);
375 } else { /* target_ip != NULL */
377 * If target exists and it's a directory, check that both
378 * target and source are directories and that target can be
379 * destroyed, or that neither is a directory.
381 if ((target_ip->i_d.di_mode & S_IFMT) == S_IFDIR) {
383 * Make sure target dir is empty.
385 if (!(xfs_dir_isempty(target_ip)) ||
386 (target_ip->i_d.di_nlink > 2)) {
387 error = XFS_ERROR(EEXIST);
393 * Link the source inode under the target name.
394 * If the source inode is a directory and we are moving
395 * it across directories, its ".." entry will be
396 * inconsistent until we replace that down below.
398 * In case there is already an entry with the same
399 * name at the destination directory, remove it first.
401 error = xfs_dir_replace(tp, target_dp, target_name,
403 &first_block, &free_list, spaceres);
406 xfs_ichgtime(target_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
409 * Decrement the link count on the target since the target
410 * dir no longer points to it.
412 error = xfs_droplink(tp, target_ip);
415 target_ip_dropped = 1;
417 if (src_is_directory) {
419 * Drop the link from the old "." entry.
421 error = xfs_droplink(tp, target_ip);
426 /* Do this test while we still hold the locks */
427 target_link_zero = (target_ip)->i_d.di_nlink==0;
429 } /* target_ip != NULL */
434 if (new_parent && src_is_directory) {
436 * Rewrite the ".." entry to point to the new
439 error = xfs_dir_replace(tp, src_ip, &xfs_name_dotdot,
441 &first_block, &free_list, spaceres);
442 ASSERT(error != EEXIST);
445 xfs_ichgtime(src_ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
449 * We always want to hit the ctime on the source inode.
450 * We do it in the if clause above for the 'new_parent &&
451 * src_is_directory' case, and here we get all the other
452 * cases. This isn't strictly required by the standards
453 * since the source inode isn't really being changed,
454 * but old unix file systems did it and some incremental
455 * backup programs won't work without it.
457 xfs_ichgtime(src_ip, XFS_ICHGTIME_CHG);
461 * Adjust the link count on src_dp. This is necessary when
462 * renaming a directory, either within one parent when
463 * the target existed, or across two parent directories.
465 if (src_is_directory && (new_parent || target_ip != NULL)) {
468 * Decrement link count on src_directory since the
469 * entry that's moved no longer points to it.
471 error = xfs_droplink(tp, src_dp);
476 error = xfs_dir_removename(tp, src_dp, src_name, src_ip->i_ino,
477 &first_block, &free_list, spaceres);
480 xfs_ichgtime(src_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
483 * Update the generation counts on all the directory inodes
484 * that we're modifying.
487 xfs_trans_log_inode(tp, src_dp, XFS_ILOG_CORE);
491 xfs_trans_log_inode(tp, target_dp, XFS_ILOG_CORE);
495 * If there was a target inode, take an extra reference on
496 * it here so that it doesn't go to xfs_inactive() from
499 if (target_ip != NULL) {
504 * If this is a synchronous mount, make sure that the
505 * rename transaction goes to disk before returning to
508 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
509 xfs_trans_set_sync(tp);
513 * Take refs. for vop_link_removed calls below. No need to worry
514 * about directory refs. because the caller holds them.
516 * Do holds before the xfs_bmap_finish since it might rele them down
520 if (target_ip_dropped)
524 error = xfs_bmap_finish(&tp, &free_list, &committed);
526 xfs_bmap_cancel(&free_list);
527 xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES |
529 if (target_ip != NULL) {
532 if (target_ip_dropped) {
540 * trans_commit will unlock src_ip, target_ip & decrement
541 * the vnode references.
543 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
544 if (target_ip != NULL)
547 * Let interposed file systems know about removed links.
549 if (target_ip_dropped)
554 /* Fall through to std_return with error = 0 or errno from
555 * xfs_trans_commit */
557 if (DM_EVENT_ENABLED(src_dp, DM_EVENT_POSTRENAME) ||
558 DM_EVENT_ENABLED(target_dp, DM_EVENT_POSTRENAME)) {
559 (void) XFS_SEND_NAMESP (mp, DM_EVENT_POSTRENAME,
560 src_dp, DM_RIGHT_NULL,
561 target_dp, DM_RIGHT_NULL,
562 src_name->name, target_name->name,
568 cancel_flags |= XFS_TRANS_ABORT;
571 xfs_bmap_cancel(&free_list);
572 xfs_trans_cancel(tp, cancel_flags);
577 if (target_ip != NULL) {