blob: ef2c7fbb21b319c76fd918fdd5a92cdf1bc44f71 [file] [log] [blame]
Jari Aaltob72432f1999-02-19 17:11:39 +00001/*
2 * rename - rename a file
3 */
4
Jari Aaltobb706242000-03-17 21:46:59 +00005/* Copyright (C) 1999 Free Software Foundation, Inc.
6
7 This file is part of GNU Bash, the Bourne Again SHell.
8
Jari Aalto31859422009-01-12 13:36:28 +00009 Bash is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
Jari Aaltobb706242000-03-17 21:46:59 +000013
Jari Aalto31859422009-01-12 13:36:28 +000014 Bash is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
Jari Aaltobb706242000-03-17 21:46:59 +000018
19 You should have received a copy of the GNU General Public License
Jari Aalto31859422009-01-12 13:36:28 +000020 along with Bash. If not, see <http://www.gnu.org/licenses/>.
21*/
Jari Aaltobb706242000-03-17 21:46:59 +000022
Jari Aaltob72432f1999-02-19 17:11:39 +000023#include <config.h>
24
25#if !defined (HAVE_RENAME)
26
27#include <bashtypes.h>
Jari Aalto7117c2d2002-07-17 14:10:11 +000028#include <posixstat.h>
Jari Aaltob72432f1999-02-19 17:11:39 +000029
30#if defined (HAVE_UNISTD_H)
31# include <unistd.h>
32#endif
Jari Aalto7117c2d2002-07-17 14:10:11 +000033#include <errno.h>
Jari Aaltob72432f1999-02-19 17:11:39 +000034
35#include <stdc.h>
36
Jari Aalto7117c2d2002-07-17 14:10:11 +000037#ifndef errno
Ricardo Cerqueiraa02fbff2013-07-25 22:35:34 +010038#include <errno.h>
Jari Aalto7117c2d2002-07-17 14:10:11 +000039#endif
40
Jari Aaltob72432f1999-02-19 17:11:39 +000041int
42rename (from, to)
43 const char *from, *to;
44{
Jari Aalto7117c2d2002-07-17 14:10:11 +000045 struct stat fb, tb;
46
47 if (stat (from, &fb) < 0)
48 return -1;
49
50 if (stat (to, &tb) < 0)
51 {
52 if (errno != ENOENT)
53 return -1;
54 }
55 else
56 {
57 if (fb.st_dev == tb.st_dev && fb.st_ino == tb.st_ino)
58 return 0; /* same file */
59 if (unlink (to) < 0 && errno != ENOENT)
60 return -1;
61 }
62
Jari Aaltob72432f1999-02-19 17:11:39 +000063 if (link (from, to) < 0)
64 return (-1);
Jari Aalto7117c2d2002-07-17 14:10:11 +000065
66 if (unlink (from) < 0 && errno != ENOENT)
67 {
68 int e = errno;
69 unlink (to);
70 errno = e;
71 return (-1);
72 }
73
Jari Aaltob72432f1999-02-19 17:11:39 +000074 return (0);
75}
76#endif /* !HAVE_RENAME */