- Add -v option (verbose). Taken from FreeBSD with my modifications.
[dragonfly.git] / share / man / man9 / VOP_RENAME.9
1 .\" Copyright (c) 1996 Doug Rabson
2 .\"
3 .\" All rights reserved.
4 .\"
5 .\" This program is free software.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
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.
15 .\"
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.
26 .\"
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 $
29 .\"
30 .Dd July 24, 1996
31 .Os
32 .Dt VOP_RENAME 9
33 .Sh NAME
34 .Nm VOP_RENAME
35 .Nd rename a file
36 .Sh SYNOPSIS
37 .In sys/param.h
38 .In sys/vnode.h
39 .Ft int
40 .Fn VOP_RENAME "struct vnode *fdvp" "struct vnode *fvp" "struct componentname *fcnp" "struct vnode *tdvp" "struct vnode *tvp" "struct componentname *tcnp"
41 .Sh DESCRIPTION
42 This renames a file and possibly changes its parent directory.
43 If the destination object exists, it will be removed first.
44 .Pp
45 Its arguments are:
46 .Bl -tag -width fdvp
47 .It Fa fdvp
48 the vnode of the old parent directory
49 .It Fa fvp
50 the vnode of the file to be renamed
51 .It Fa fcnp
52 pathname information about the file's current name
53 .It Fa tdvp
54 the vnode of the new parent directory
55 .It Fa tvp
56 the vnode of the target file (if it exists)
57 .It Fa tcnp
58 pathname information about the file's new name
59 .El
60 .Sh LOCKS
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
63 .Fn vrele
64 both prior
65 to returning.
66 .Pp
67 The destination directory and file are locked as well as having their ref
68 count bumped.  The VOP routine is expected to
69 .Fn vput
70 both prior to
71 returning.
72 .Sh PSEUDOCODE
73 .Bd -literal
74 int
75 vop_rename(struct vnode *fdvp, struct vnode *fvp, struct componentname *fcnp,
76            struct vnode *tdvp, struct vnode *tvp, struct componentname *tcnp)
77 {
78     int doingdirectory = 0;
79     int error = 0;
80
81     /*
82      * Check for cross-device rename.
83      */
84     if (fvp->v_mount != tdvp->v_mount) {
85         error = EXDEV;
86     abortit:
87         VOP_ABORTOP(tdvp, tcnp);
88         if (tdvp == tvp)
89             vrele(tdvp);
90         else
91             vput(tdvp);
92         if (tvp)
93             vput(tvp);
94         VOP_ABORTOP(fdvp, fcnp);
95         vrele(fdvp);
96         vrele(fvp);
97         return error;
98     }
99
100     if (tvp exists and is immutable) {
101         error = EPERM;
102         goto abortit;
103     }
104
105     /*
106      * Check if just deleting a link name.
107      */
108     if (fvp == tvp) {
109         if (fvp->v_type == VDIR) {
110             error = EINVAL;
111             goto abortit;
112         }
113
114         /*
115          * Release destination.
116          */
117         VOP_ABORTOP(tdvp, tcnp);
118         vput(tdvp);
119         vput(tvp);
120
121         /*
122          * Delete source.  Pretty bizarre stuff.
123          */
124         vrele(fdvp);
125         vrele(fvp);
126         fcnp->cn_flags &= ~MODMASK;
127         fcnp->cn_flags |= LOCKPARENT | LOCKLEAF;
128         fcnp->cn_nameiop = DELETE;
129         VREF(fdvp);
130         error = relookup(fdvp, &fvp, fcnp);
131         if (error == 0)
132             vrele(fdvp);
133         return VOP_REMOVE(fdvp, fvp, fcnp);
134     }
135
136     if (fvp is immutable) {
137         error = EPERM;
138         goto abortit;
139     }
140
141     error = VOP_LOCK(fvp);
142     if (error)
143         goto abortit;
144
145     if (vp is a directory) {
146         /*
147          * Avoid ".", "..", and aliases of "." for obvious reasons.
148          */
149         if ((fcnp->cn_namelen == 1 && fcnp->cn_nameptr[0] == '.')
150             || fdvp == fvp
151             || ((fcnp->cn_flags | tcnp->cn_flags) & ISDOTDOT)) {
152             VOP_UNLOCK(fvp);
153             error = EINVAL;
154             goto abortit;
155         }
156         doingdirectory = 1;
157     }
158     vrele(fdvp);
159
160     /*
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
163      * but correctable.
164      */
165     ...;
166
167     /*
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 "..".
174      */
175     error = VOP_ACCESS(fvp, VWRITE, tcnp->cn_cred, tcnp->cn_proc);
176     VOP_UNLOCK(fvp);
177     if (doingdirectory && fdvp != tdvp) {
178         /*
179          * Check for pathname conflict.
180          */
181         ...;
182     }
183
184     /*
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.
188      */
189     if (tvp == NULL) {
190         /*
191          * Account for ".." in new directory.
192          */
193         if (doingdirectory && fdvp != tdvp) {
194             /*
195              * Increase link count of tdvp.
196              */
197             ...;
198         }
199
200         /*
201          * Add name in new directory.
202          */
203         ...;
204
205         if (error) {
206             if (doingdirectory && fdvp != tdvp) {
207                 /*
208                  * Decrease link count if tdvp.
209                  */
210                 ...;
211             }
212             goto bad;
213         }
214         vput(tdvp);
215     } else {
216         /*
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).
220          */
221         if (tvp is a directory) {
222             if (tvp is not empty) {
223                 error = ENOTEMPTY;
224                 goto bad;
225             }
226             if (!doingdirectory) {
227                 error = ENOTDIR;
228                 goto bad;
229             }
230             /*
231              * Update name cache since directory is going away.
232              */
233             cache_purge(tdvp);
234         } else if (doingdirectory) {
235             error = ENOTDIR;
236             goto bad;
237         }
238
239         /*
240          * Change name tcnp in tdvp to point at fvp.
241          */
242         ...;
243
244         /*
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 "..".
249          */
250         if (doingdirectory && fdvp == tdvp) {
251             /*
252              * Decrement link count of tdvp.
253              */
254             ...;
255         }
256         vput(tdvp);
257
258         /*
259          * Decrement the link count of tvp since the directory no
260          * longer points at it.
261          */
262         ...;
263         if (doingdirectory) {
264             /*
265              * Clean up the old directory tvp.
266              */
267             ...;
268         }
269         vput(tvp);
270     }
271
272     /*
273      * Unlink the source.  If a directory was moved to a new parent,
274      * update its ".." entry.  Gobs of ugly UFS code omitted here.
275      */
276     ...;
277
278 bad:
279     if (tvp)
280         vput(tvp);
281     vput(tdvp);
282 out:
283     if (VOP_LOCK(fvp) == 0) {
284         /*
285          * Decrement link count of fvp.
286          */
287         ...;
288         vput(fvp);
289     } else
290         vrele(fvp);
291
292     return error;
293 }
294 .Ed
295 .Sh ERRORS
296 .Bl -tag -width Er
297 .It Bq Er EPERM
298 the file is immutable
299 .It Bq Er EXDEV
300 cross device move
301 .It Bq Er EINVAL
302 illegal directory rename
303 .It Bq Er ENOTDIR
304 attempt to rename a directory to a file or vice versa
305 .It Bq Er ENOTEMPTY
306 attempt to remove a directory which is not empty
307 .El
308 .Sh SEE ALSO
309 .Xr vnode 9
310 .Sh AUTHORS
311 This man page was written by
312 .An Doug Rabson .