1 .\" Copyright (c) 1996 Doug Rabson
3 .\" All rights reserved.
5 .\" This program is free software.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
16 .\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
17 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 .\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 .\" $FreeBSD: src/share/man/man9/VOP_RENAME.9,v 1.10.2.2 2001/12/17 11:30:18 ru Exp $
28 .\" $DragonFly: src/share/man/man9/VOP_RENAME.9,v 1.4 2004/06/01 11:36:53 hmp Exp $
40 .Fn VOP_RENAME "struct vnode *fdvp" "struct vnode *fvp" "struct componentname *fcnp" "struct vnode *tdvp" "struct vnode *tvp" "struct componentname *tcnp"
42 This renames a file and possibly changes its parent directory.
43 If the destination object exists, it will be removed first.
48 the vnode of the old parent directory
50 the vnode of the file to be renamed
52 pathname information about the file's current name
54 the vnode of the new parent directory
56 the vnode of the target file (if it exists)
58 pathname information about the file's new name
61 The source directory and file are unlocked but are expected to have their
62 ref count bumped on entry. The VOP routine is expected to
67 The destination directory and file are locked as well as having their ref
68 count bumped. The VOP routine is expected to
75 vop_rename(struct vnode *fdvp, struct vnode *fvp, struct componentname *fcnp,
76 struct vnode *tdvp, struct vnode *tvp, struct componentname *tcnp)
78 int doingdirectory = 0;
82 * Check for cross-device rename.
84 if (fvp->v_mount != tdvp->v_mount) {
87 VOP_ABORTOP(tdvp, tcnp);
94 VOP_ABORTOP(fdvp, fcnp);
100 if (tvp exists and is immutable) {
106 * Check if just deleting a link name.
109 if (fvp->v_type == VDIR) {
115 * Release destination.
117 VOP_ABORTOP(tdvp, tcnp);
122 * Delete source. Pretty bizarre stuff.
126 fcnp->cn_flags &= ~MODMASK;
127 fcnp->cn_flags |= LOCKPARENT | LOCKLEAF;
128 fcnp->cn_nameiop = DELETE;
130 error = relookup(fdvp, &fvp, fcnp);
133 return VOP_REMOVE(fdvp, fvp, fcnp);
136 if (fvp is immutable) {
141 error = VOP_LOCK(fvp);
145 if (vp is a directory) {
147 * Avoid ".", "..", and aliases of "." for obvious reasons.
149 if ((fcnp->cn_namelen == 1 && fcnp->cn_nameptr[0] == '.')
151 || ((fcnp->cn_flags | tcnp->cn_flags) & ISDOTDOT)) {
161 * Bump link count on fvp while we are moving stuff around. If we
162 * crash before completing the work, the link count may be wrong
168 * If ".." must be changed (ie the directory gets a new
169 * parent) then the source directory must not be in the
170 * directory hierarchy above the target, as this would
171 * orphan everything below the source directory. Also
172 * the user must have write permission in the source so
173 * as to be able to change "..".
175 error = VOP_ACCESS(fvp, VWRITE, tcnp->cn_cred, tcnp->cn_proc);
177 if (doingdirectory && fdvp != tdvp) {
179 * Check for pathname conflict.
185 * If the target doesn't exist, link the target to the source and
186 * unlink the source. Otherwise, rewrite the target directory to
187 * reference the source and remove the original entry.
191 * Account for ".." in new directory.
193 if (doingdirectory && fdvp != tdvp) {
195 * Increase link count of tdvp.
201 * Add name in new directory.
206 if (doingdirectory && fdvp != tdvp) {
208 * Decrease link count if tdvp.
217 * Target must be empty if a directory and have no links
218 * to it. Also, ensure source and target are compatible
219 * (both directories, or both not directories).
221 if (tvp is a directory) {
222 if (tvp is not empty) {
226 if (!doingdirectory) {
231 * Update name cache since directory is going away.
234 } else if (doingdirectory) {
240 * Change name tcnp in tdvp to point at fvp.
245 * If the target directory is in same directory as the source
246 * directory, decrement the link count on the parent of the
247 * target directory. This accounts for the fact that a
248 * directory links back to its parent with "..".
250 if (doingdirectory && fdvp == tdvp) {
252 * Decrement link count of tdvp.
259 * Decrement the link count of tvp since the directory no
260 * longer points at it.
263 if (doingdirectory) {
265 * Clean up the old directory tvp.
273 * Unlink the source. If a directory was moved to a new parent,
274 * update its ".." entry. Gobs of ugly UFS code omitted here.
283 if (VOP_LOCK(fvp) == 0) {
285 * Decrement link count of fvp.
298 the file is immutable
302 illegal directory rename
304 attempt to rename a directory to a file or vice versa
306 attempt to remove a directory which is not empty
311 This man page was written by