rename-tests: new test, exposes several platform bugs
[pspp] / doc / posix-functions / rename.texi
1 @node rename
2 @section @code{rename}
3 @findex rename
4
5 POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rename.html}
6
7 Gnulib module: rename
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function does not allow trailing slashes when creating a
13 destination directory, as in @code{rename("dir","new/")}:
14 NetBSD 1.6.
15 @item
16 This function does not reject trailing slashes on non-directories on
17 some platforms, as in @code{rename("file","new/")}:
18 Solaris 10, Cygwin 1.5.x, mingw.
19 @item
20 This function ignores trailing slashes on symlinks on some platforms,
21 such that @code{rename("link/","new")} corrupts @file{link}:
22 Solaris 9.
23 @item
24 This function incorrectly reduces the link count when comparing two
25 spellings of a hard link on some platforms:
26 NetBSD 1.6, Cygwin 1.5.x.
27 @item
28 This function will not always replace an existing destination on some
29 platforms:
30 mingw.
31 @item
32 This function mistakenly allows names ending in @samp{.} or @samp{..}
33 on some platforms:
34 Cygwin 1.5.x, mingw.
35 @item
36 This function does not reject attempts to rename existing directories
37 and non-directories onto one another on some platforms:
38 Cygwin 1.5.x, mingw.
39 @item
40 This function does not allow trailing slashes on source directories on
41 older platforms, as in @samp{rename("dir/","new")}:
42 SunOS 4.1.
43 @end itemize
44
45 Portability problems not fixed by Gnulib:
46 @itemize
47 @item
48 POSIX requires that @code{rename("symlink-to-dir/","dir2")} rename
49 @file{dir} and leave @file{symlink-to-dir} dangling; likewise, it
50 requires that @code{rename("dir","dangling/")} rename @file{dir} so
51 that @file{dangling} is no longer a dangling symlink.  This behavior
52 is counter-intuitive, so on some systems, @code{rename} fails with
53 @code{ENOTDIR} if either argument is a symlink with a trailing slash:
54 glibc, OpenBSD, Cygwin 1.7.
55 @item
56 This function will not rename a source that is currently opened
57 by any process:
58 mingw.
59 @end itemize