blob: 53d9600af4a424bc2b18e0f38e96597fd8f57c4e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_dir2.h"
26#include "xfs_dmapi.h"
27#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_bmap.h"
36#include "xfs_error.h"
37#include "xfs_quota.h"
38#include "xfs_refcache.h"
39#include "xfs_utils.h"
40#include "xfs_trans_space.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42
43/*
44 * Given an array of up to 4 inode pointers, unlock the pointed to inodes.
45 * If there are fewer than 4 entries in the array, the empty entries will
46 * be at the end and will have NULL pointers in them.
47 */
48STATIC void
49xfs_rename_unlock4(
50 xfs_inode_t **i_tab,
51 uint lock_mode)
52{
53 int i;
54
55 xfs_iunlock(i_tab[0], lock_mode);
56 for (i = 1; i < 4; i++) {
57 if (i_tab[i] == NULL) {
58 break;
59 }
60 /*
61 * Watch out for duplicate entries in the table.
62 */
63 if (i_tab[i] != i_tab[i-1]) {
64 xfs_iunlock(i_tab[i], lock_mode);
65 }
66 }
67}
68
69#ifdef DEBUG
70int xfs_rename_skip, xfs_rename_nskip;
71#endif
72
73/*
74 * The following routine will acquire the locks required for a rename
75 * operation. The code understands the semantics of renames and will
76 * validate that name1 exists under dp1 & that name2 may or may not
77 * exist under dp2.
78 *
79 * We are renaming dp1/name1 to dp2/name2.
80 *
81 * Return ENOENT if dp1 does not exist, other lookup errors, or 0 for success.
82 */
83STATIC int
84xfs_lock_for_rename(
85 xfs_inode_t *dp1, /* old (source) directory inode */
86 xfs_inode_t *dp2, /* new (target) directory inode */
Nathan Scott8285fb52006-06-09 17:07:12 +100087 bhv_vname_t *vname1,/* old entry name */
88 bhv_vname_t *vname2,/* new entry name */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 xfs_inode_t **ipp1, /* inode of old entry */
90 xfs_inode_t **ipp2, /* inode of new entry, if it
91 already exists, NULL otherwise. */
92 xfs_inode_t **i_tab,/* array of inode returned, sorted */
93 int *num_inodes) /* number of inodes in array */
94{
95 xfs_inode_t *ip1, *ip2, *temp;
96 xfs_ino_t inum1, inum2;
97 int error;
98 int i, j;
99 uint lock_mode;
100 int diff_dirs = (dp1 != dp2);
101
102 ip2 = NULL;
103
104 /*
105 * First, find out the current inums of the entries so that we
106 * can determine the initial locking order. We'll have to
107 * sanity check stuff after all the locks have been acquired
108 * to see if we still have the right inodes, directories, etc.
109 */
110 lock_mode = xfs_ilock_map_shared(dp1);
111 error = xfs_get_dir_entry(vname1, &ip1);
112 if (error) {
113 xfs_iunlock_map_shared(dp1, lock_mode);
114 return error;
115 }
116
117 inum1 = ip1->i_ino;
118
119 ASSERT(ip1);
120 ITRACE(ip1);
121
122 /*
123 * Unlock dp1 and lock dp2 if they are different.
124 */
125
126 if (diff_dirs) {
127 xfs_iunlock_map_shared(dp1, lock_mode);
128 lock_mode = xfs_ilock_map_shared(dp2);
129 }
130
131 error = xfs_dir_lookup_int(XFS_ITOBHV(dp2), lock_mode,
132 vname2, &inum2, &ip2);
133 if (error == ENOENT) { /* target does not need to exist. */
134 inum2 = 0;
135 } else if (error) {
136 /*
137 * If dp2 and dp1 are the same, the next line unlocks dp1.
138 * Got it?
139 */
140 xfs_iunlock_map_shared(dp2, lock_mode);
141 IRELE (ip1);
142 return error;
143 } else {
144 ITRACE(ip2);
145 }
146
147 /*
148 * i_tab contains a list of pointers to inodes. We initialize
149 * the table here & we'll sort it. We will then use it to
150 * order the acquisition of the inode locks.
151 *
152 * Note that the table may contain duplicates. e.g., dp1 == dp2.
153 */
154 i_tab[0] = dp1;
155 i_tab[1] = dp2;
156 i_tab[2] = ip1;
157 if (inum2 == 0) {
158 *num_inodes = 3;
159 i_tab[3] = NULL;
160 } else {
161 *num_inodes = 4;
162 i_tab[3] = ip2;
163 }
164
165 /*
166 * Sort the elements via bubble sort. (Remember, there are at
167 * most 4 elements to sort, so this is adequate.)
168 */
169 for (i=0; i < *num_inodes; i++) {
170 for (j=1; j < *num_inodes; j++) {
171 if (i_tab[j]->i_ino < i_tab[j-1]->i_ino) {
172 temp = i_tab[j];
173 i_tab[j] = i_tab[j-1];
174 i_tab[j-1] = temp;
175 }
176 }
177 }
178
179 /*
180 * We have dp2 locked. If it isn't first, unlock it.
181 * If it is first, tell xfs_lock_inodes so it can skip it
182 * when locking. if dp1 == dp2, xfs_lock_inodes will skip both
183 * since they are equal. xfs_lock_inodes needs all these inodes
184 * so that it can unlock and retry if there might be a dead-lock
185 * potential with the log.
186 */
187
188 if (i_tab[0] == dp2 && lock_mode == XFS_ILOCK_SHARED) {
189#ifdef DEBUG
190 xfs_rename_skip++;
191#endif
192 xfs_lock_inodes(i_tab, *num_inodes, 1, XFS_ILOCK_SHARED);
193 } else {
194#ifdef DEBUG
195 xfs_rename_nskip++;
196#endif
197 xfs_iunlock_map_shared(dp2, lock_mode);
198 xfs_lock_inodes(i_tab, *num_inodes, 0, XFS_ILOCK_SHARED);
199 }
200
201 /*
202 * Set the return value. Null out any unused entries in i_tab.
203 */
204 *ipp1 = *ipp2 = NULL;
205 for (i=0; i < *num_inodes; i++) {
206 if (i_tab[i]->i_ino == inum1) {
207 *ipp1 = i_tab[i];
208 }
209 if (i_tab[i]->i_ino == inum2) {
210 *ipp2 = i_tab[i];
211 }
212 }
213 for (;i < 4; i++) {
214 i_tab[i] = NULL;
215 }
216 return 0;
217}
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/*
220 * xfs_rename
221 */
222int
223xfs_rename(
224 bhv_desc_t *src_dir_bdp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000225 bhv_vname_t *src_vname,
Nathan Scott67fcaa72006-06-09 17:00:52 +1000226 bhv_vnode_t *target_dir_vp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000227 bhv_vname_t *target_vname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 cred_t *credp)
229{
230 xfs_trans_t *tp;
231 xfs_inode_t *src_dp, *target_dp, *src_ip, *target_ip;
232 xfs_mount_t *mp;
233 int new_parent; /* moving to a new dir */
234 int src_is_directory; /* src_name is a directory */
235 int error;
236 xfs_bmap_free_t free_list;
237 xfs_fsblock_t first_block;
238 int cancel_flags;
239 int committed;
240 xfs_inode_t *inodes[4];
241 int target_ip_dropped = 0; /* dropped target_ip link? */
Nathan Scott67fcaa72006-06-09 17:00:52 +1000242 bhv_vnode_t *src_dir_vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 int spaceres;
244 int target_link_zero = 0;
245 int num_inodes;
246 char *src_name = VNAME(src_vname);
247 char *target_name = VNAME(target_vname);
248 int src_namelen = VNAMELEN(src_vname);
249 int target_namelen = VNAMELEN(target_vname);
250
251 src_dir_vp = BHV_TO_VNODE(src_dir_bdp);
252 vn_trace_entry(src_dir_vp, "xfs_rename", (inst_t *)__return_address);
253 vn_trace_entry(target_dir_vp, "xfs_rename", (inst_t *)__return_address);
254
255 /*
256 * Find the XFS behavior descriptor for the target directory
257 * vnode since it was not handed to us.
258 */
Christoph Hellwig75e17b32006-01-11 20:58:44 +1100259 target_dp = xfs_vtoi(target_dir_vp);
260 if (target_dp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return XFS_ERROR(EXDEV);
262 }
263
264 src_dp = XFS_BHVTOI(src_dir_bdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 mp = src_dp->i_mount;
266
Christoph Hellwigeb9df392007-08-16 18:42:07 +1000267 if (DM_EVENT_ENABLED(src_dp, DM_EVENT_RENAME) ||
268 DM_EVENT_ENABLED(target_dp, DM_EVENT_RENAME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 error = XFS_SEND_NAMESP(mp, DM_EVENT_RENAME,
270 src_dir_vp, DM_RIGHT_NULL,
271 target_dir_vp, DM_RIGHT_NULL,
272 src_name, target_name,
273 0, 0, 0);
274 if (error) {
275 return error;
276 }
277 }
278 /* Return through std_return after this point. */
279
280 /*
281 * Lock all the participating inodes. Depending upon whether
282 * the target_name exists in the target directory, and
283 * whether the target directory is the same as the source
284 * directory, we can lock from 2 to 4 inodes.
285 * xfs_lock_for_rename() will return ENOENT if src_name
286 * does not exist in the source directory.
287 */
288 tp = NULL;
289 error = xfs_lock_for_rename(src_dp, target_dp, src_vname,
290 target_vname, &src_ip, &target_ip, inodes,
291 &num_inodes);
292
293 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 /*
295 * We have nothing locked, no inode references, and
296 * no transaction, so just get out.
297 */
298 goto std_return;
299 }
300
301 ASSERT(src_ip != NULL);
302
303 if ((src_ip->i_d.di_mode & S_IFMT) == S_IFDIR) {
304 /*
305 * Check for link count overflow on target_dp
306 */
307 if (target_ip == NULL && (src_dp != target_dp) &&
308 target_dp->i_d.di_nlink >= XFS_MAXLINK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 error = XFS_ERROR(EMLINK);
310 xfs_rename_unlock4(inodes, XFS_ILOCK_SHARED);
311 goto rele_return;
312 }
313 }
314
Nathan Scottb1ecdda2006-05-08 19:51:42 +1000315 /*
316 * If we are using project inheritance, we only allow renames
317 * into our tree when the project IDs are the same; else the
318 * tree quota mechanism would be circumvented.
319 */
320 if (unlikely((target_dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
321 (target_dp->i_d.di_projid != src_ip->i_d.di_projid))) {
322 error = XFS_ERROR(EXDEV);
323 xfs_rename_unlock4(inodes, XFS_ILOCK_SHARED);
324 goto rele_return;
325 }
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 new_parent = (src_dp != target_dp);
328 src_is_directory = ((src_ip->i_d.di_mode & S_IFMT) == S_IFDIR);
329
330 /*
331 * Drop the locks on our inodes so that we can start the transaction.
332 */
333 xfs_rename_unlock4(inodes, XFS_ILOCK_SHARED);
334
335 XFS_BMAP_INIT(&free_list, &first_block);
336 tp = xfs_trans_alloc(mp, XFS_TRANS_RENAME);
337 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
338 spaceres = XFS_RENAME_SPACE_RES(mp, target_namelen);
339 error = xfs_trans_reserve(tp, spaceres, XFS_RENAME_LOG_RES(mp), 0,
340 XFS_TRANS_PERM_LOG_RES, XFS_RENAME_LOG_COUNT);
341 if (error == ENOSPC) {
342 spaceres = 0;
343 error = xfs_trans_reserve(tp, 0, XFS_RENAME_LOG_RES(mp), 0,
344 XFS_TRANS_PERM_LOG_RES, XFS_RENAME_LOG_COUNT);
345 }
346 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 xfs_trans_cancel(tp, 0);
348 goto rele_return;
349 }
350
351 /*
352 * Attach the dquots to the inodes
353 */
354 if ((error = XFS_QM_DQVOPRENAME(mp, inodes))) {
355 xfs_trans_cancel(tp, cancel_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 goto rele_return;
357 }
358
359 /*
360 * Reacquire the inode locks we dropped above.
361 */
362 xfs_lock_inodes(inodes, num_inodes, 0, XFS_ILOCK_EXCL);
363
364 /*
365 * Join all the inodes to the transaction. From this point on,
366 * we can rely on either trans_commit or trans_cancel to unlock
367 * them. Note that we need to add a vnode reference to the
368 * directories since trans_commit & trans_cancel will decrement
369 * them when they unlock the inodes. Also, we need to be careful
370 * not to add an inode to the transaction more than once.
371 */
372 VN_HOLD(src_dir_vp);
373 xfs_trans_ijoin(tp, src_dp, XFS_ILOCK_EXCL);
374 if (new_parent) {
375 VN_HOLD(target_dir_vp);
376 xfs_trans_ijoin(tp, target_dp, XFS_ILOCK_EXCL);
377 }
378 if ((src_ip != src_dp) && (src_ip != target_dp)) {
379 xfs_trans_ijoin(tp, src_ip, XFS_ILOCK_EXCL);
380 }
381 if ((target_ip != NULL) &&
382 (target_ip != src_ip) &&
383 (target_ip != src_dp) &&
384 (target_ip != target_dp)) {
385 xfs_trans_ijoin(tp, target_ip, XFS_ILOCK_EXCL);
386 }
387
388 /*
389 * Set up the target.
390 */
391 if (target_ip == NULL) {
392 /*
393 * If there's no space reservation, check the entry will
394 * fit before actually inserting it.
395 */
396 if (spaceres == 0 &&
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000397 (error = xfs_dir_canenter(tp, target_dp, target_name,
398 target_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 /*
401 * If target does not exist and the rename crosses
402 * directories, adjust the target directory link count
403 * to account for the ".." reference from the new entry.
404 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000405 error = xfs_dir_createname(tp, target_dp, target_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 target_namelen, src_ip->i_ino,
407 &first_block, &free_list, spaceres);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000408 if (error == ENOSPC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 goto error_return;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000410 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 xfs_ichgtime(target_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
413
414 if (new_parent && src_is_directory) {
415 error = xfs_bumplink(tp, target_dp);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000416 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419 } else { /* target_ip != NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 /*
421 * If target exists and it's a directory, check that both
422 * target and source are directories and that target can be
423 * destroyed, or that neither is a directory.
424 */
425 if ((target_ip->i_d.di_mode & S_IFMT) == S_IFDIR) {
426 /*
427 * Make sure target dir is empty.
428 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000429 if (!(xfs_dir_isempty(target_ip)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 (target_ip->i_d.di_nlink > 2)) {
431 error = XFS_ERROR(EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 goto error_return;
433 }
434 }
435
436 /*
437 * Link the source inode under the target name.
438 * If the source inode is a directory and we are moving
439 * it across directories, its ".." entry will be
440 * inconsistent until we replace that down below.
441 *
442 * In case there is already an entry with the same
443 * name at the destination directory, remove it first.
444 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000445 error = xfs_dir_replace(tp, target_dp, target_name,
446 target_namelen, src_ip->i_ino,
447 &first_block, &free_list, spaceres);
448 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 xfs_ichgtime(target_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
451
452 /*
453 * Decrement the link count on the target since the target
454 * dir no longer points to it.
455 */
456 error = xfs_droplink(tp, target_ip);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000457 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 target_ip_dropped = 1;
460
461 if (src_is_directory) {
462 /*
463 * Drop the link from the old "." entry.
464 */
465 error = xfs_droplink(tp, target_ip);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000466 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469
470 /* Do this test while we still hold the locks */
471 target_link_zero = (target_ip)->i_d.di_nlink==0;
472
473 } /* target_ip != NULL */
474
475 /*
476 * Remove the source.
477 */
478 if (new_parent && src_is_directory) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 /*
480 * Rewrite the ".." entry to point to the new
481 * directory.
482 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000483 error = xfs_dir_replace(tp, src_ip, "..", 2, target_dp->i_ino,
484 &first_block, &free_list, spaceres);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 ASSERT(error != EEXIST);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000486 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 xfs_ichgtime(src_ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
489
490 } else {
491 /*
492 * We always want to hit the ctime on the source inode.
493 * We do it in the if clause above for the 'new_parent &&
494 * src_is_directory' case, and here we get all the other
495 * cases. This isn't strictly required by the standards
496 * since the source inode isn't really being changed,
497 * but old unix file systems did it and some incremental
498 * backup programs won't work without it.
499 */
500 xfs_ichgtime(src_ip, XFS_ICHGTIME_CHG);
501 }
502
503 /*
504 * Adjust the link count on src_dp. This is necessary when
505 * renaming a directory, either within one parent when
506 * the target existed, or across two parent directories.
507 */
508 if (src_is_directory && (new_parent || target_ip != NULL)) {
509
510 /*
511 * Decrement link count on src_directory since the
512 * entry that's moved no longer points to it.
513 */
514 error = xfs_droplink(tp, src_dp);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000515 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000519 error = xfs_dir_removename(tp, src_dp, src_name, src_namelen,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 src_ip->i_ino, &first_block, &free_list, spaceres);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000521 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 goto abort_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 xfs_ichgtime(src_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
524
525 /*
526 * Update the generation counts on all the directory inodes
527 * that we're modifying.
528 */
529 src_dp->i_gen++;
530 xfs_trans_log_inode(tp, src_dp, XFS_ILOG_CORE);
531
532 if (new_parent) {
533 target_dp->i_gen++;
534 xfs_trans_log_inode(tp, target_dp, XFS_ILOG_CORE);
535 }
536
537 /*
538 * If there was a target inode, take an extra reference on
539 * it here so that it doesn't go to xfs_inactive() from
540 * within the commit.
541 */
542 if (target_ip != NULL) {
543 IHOLD(target_ip);
544 }
545
546 /*
547 * If this is a synchronous mount, make sure that the
548 * rename transaction goes to disk before returning to
549 * the user.
550 */
551 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
552 xfs_trans_set_sync(tp);
553 }
554
555 /*
556 * Take refs. for vop_link_removed calls below. No need to worry
557 * about directory refs. because the caller holds them.
558 *
559 * Do holds before the xfs_bmap_finish since it might rele them down
560 * to zero.
561 */
562
563 if (target_ip_dropped)
564 IHOLD(target_ip);
565 IHOLD(src_ip);
566
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100567 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (error) {
569 xfs_bmap_cancel(&free_list);
570 xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES |
571 XFS_TRANS_ABORT));
572 if (target_ip != NULL) {
573 IRELE(target_ip);
574 }
575 if (target_ip_dropped) {
576 IRELE(target_ip);
577 }
578 IRELE(src_ip);
579 goto std_return;
580 }
581
582 /*
583 * trans_commit will unlock src_ip, target_ip & decrement
584 * the vnode references.
585 */
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000586 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (target_ip != NULL) {
588 xfs_refcache_purge_ip(target_ip);
589 IRELE(target_ip);
590 }
591 /*
592 * Let interposed file systems know about removed links.
593 */
594 if (target_ip_dropped) {
Nathan Scott67fcaa72006-06-09 17:00:52 +1000595 bhv_vop_link_removed(XFS_ITOV(target_ip), target_dir_vp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 target_link_zero);
597 IRELE(target_ip);
598 }
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 IRELE(src_ip);
601
602 /* Fall through to std_return with error = 0 or errno from
603 * xfs_trans_commit */
604std_return:
Christoph Hellwigeb9df392007-08-16 18:42:07 +1000605 if (DM_EVENT_ENABLED(src_dp, DM_EVENT_POSTRENAME) ||
606 DM_EVENT_ENABLED(target_dp, DM_EVENT_POSTRENAME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 (void) XFS_SEND_NAMESP (mp, DM_EVENT_POSTRENAME,
608 src_dir_vp, DM_RIGHT_NULL,
609 target_dir_vp, DM_RIGHT_NULL,
610 src_name, target_name,
611 0, error, 0);
612 }
613 return error;
614
615 abort_return:
616 cancel_flags |= XFS_TRANS_ABORT;
617 /* FALLTHROUGH */
618 error_return:
619 xfs_bmap_cancel(&free_list);
620 xfs_trans_cancel(tp, cancel_flags);
621 goto std_return;
622
623 rele_return:
624 IRELE(src_ip);
625 if (target_ip != NULL) {
626 IRELE(target_ip);
627 }
628 goto std_return;
629}