]> git.ipfire.org Git - thirdparty/util-linux.git/blame - misc-utils/rename.c
rename: prevent --no-act from setting --no-overwrite
[thirdparty/util-linux.git] / misc-utils / rename.c
CommitLineData
eb63b9b8
KZ
1/*
2 * rename.c - aeb 2000-01-01
3 *
4--------------------------------------------------------------
5#!/bin/sh
6if [ $# -le 2 ]; then echo call: rename from to files; exit; fi
7FROM="$1"
8TO="$2"
9shift
10shift
11for i in $@; do N=`echo "$i" | sed "s/$FROM/$TO/g"`; mv "$i" "$N"; done
12--------------------------------------------------------------
13 * This shell script will do renames of files, but may fail
14 * in cases involving special characters. Here a C version.
15 */
16#include <stdio.h>
17#include <string.h>
18#include <stdlib.h>
19#include <errno.h>
d200a926 20#include <getopt.h>
5a2a8177
JM
21#include <unistd.h>
22#include <sys/types.h>
23#include <sys/stat.h>
87f3feac 24
eb63b9b8 25#include "nls.h"
87f3feac 26#include "xalloc.h"
d200a926 27#include "c.h"
c05a80ca 28#include "closestream.h"
eb63b9b8 29
d6cf9e16
SK
30#define RENAME_EXIT_SOMEOK 2
31#define RENAME_EXIT_NOTHING 4
32#define RENAME_EXIT_UNEXPLAINED 64
33
5651128a 34static int string_replace(char *from, char *to, char *s, char *orig, char **newname)
d200a926 35{
5651128a
SK
36 char *p, *q, *where;
37
38 where = strstr(s, from);
39 if (where == NULL)
40 return 1;
41 p = orig;
42 *newname = xmalloc(strlen(orig) + strlen(to) + 1);
43 q = *newname;
eb63b9b8
KZ
44 while (p < where)
45 *q++ = *p++;
46 p = to;
47 while (*p)
48 *q++ = *p++;
5651128a 49 p = where + strlen(from);
eb63b9b8
KZ
50 while (*p)
51 *q++ = *p++;
22853e4a 52 *q = 0;
5651128a
SK
53 return 0;
54}
eb63b9b8 55
9a838c3c 56static int do_symlink(char *from, char *to, char *s, int verbose, int noact, int nooverwrite)
5651128a
SK
57{
58 char *newname = NULL, *target = NULL;
59 int ret = 1;
60 struct stat sb;
61
62 if (lstat(s, &sb) == -1) {
fc14ceba 63 warn(_("stat of %s failed"), s);
5651128a
SK
64 return 2;
65 }
66 if (!S_ISLNK(sb.st_mode)) {
67 warnx(_("%s: not a symbolic link"), s);
68 return 2;
69 }
70 target = xmalloc(sb.st_size + 1);
71 if (readlink(s, target, sb.st_size + 1) < 0) {
72 warn(_("%s: readlink failed"), s);
73 free(target);
74 return 2;
75 }
76 target[sb.st_size] = '\0';
77 if (string_replace(from, to, target, target, &newname))
78 ret = 0;
fabb9067 79
5bb92700 80 if (ret == 1 && nooverwrite && lstat(target, &sb) == 0) {
fabb9067 81 if (verbose)
b98ab303 82 printf(_("Skipping existing link: `%s' -> `%s'\n"), s, target);
fabb9067
DG
83
84 ret = 0;
85 }
86
87 if (ret == 1) {
88 if (!noact && 0 > unlink(s)) {
89 warn(_("%s: unlink failed"), s);
90 ret = 2;
91 } else if (!noact && symlink(newname, s) != 0) {
92 warn(_("%s: symlinking to %s failed"), s, newname);
93 ret = 2;
94 }
5a2a8177 95 }
990bf1f0 96 if (verbose && (noact || ret == 1))
fabb9067
DG
97 if (verbose)
98 printf("%s: `%s' -> `%s'\n", s, target, newname);
d200a926 99 free(newname);
23b4715b 100 free(target);
d6cf9e16 101 return ret;
eb63b9b8
KZ
102}
103
9a838c3c 104static int do_file(char *from, char *to, char *s, int verbose, int noact, int nooverwrite)
5651128a 105{
9fa6088a 106 char *newname = NULL, *file=NULL;
5651128a
SK
107 int ret = 1;
108
9fa6088a
AH
109 if (strchr(from, '/') == NULL && strchr(to, '/') == NULL)
110 file = strrchr(s, '/');
5651128a
SK
111 if (file == NULL)
112 file = s;
113 if (string_replace(from, to, file, s, &newname))
114 return 0;
378d58ab 115 if (nooverwrite && access(newname, F_OK) == 0) {
6277e231
M
116 if (verbose)
117 printf(_("Skipping existing file: `%s'\n"), newname);
fabb9067
DG
118 ret = 0;
119 }
990bf1f0 120 else if (!noact && rename(s, newname) != 0) {
5651128a
SK
121 warn(_("%s: rename to %s failed"), s, newname);
122 ret = 2;
123 }
990bf1f0 124 if (verbose && (noact || ret == 1))
5651128a
SK
125 printf("`%s' -> `%s'\n", s, newname);
126 free(newname);
127 return ret;
128}
129
6e1eda6f 130static void __attribute__((__noreturn__)) usage(void)
d200a926 131{
6e1eda6f 132 FILE *out = stdout;
540dfebe 133 fputs(USAGE_HEADER, out);
d200a926 134 fprintf(out,
09af3db4 135 _(" %s [options] <expression> <replacement> <file>...\n"),
d200a926 136 program_invocation_short_name);
451dbcfa
BS
137
138 fputs(USAGE_SEPARATOR, out);
139 fputs(_("Rename files.\n"), out);
140
540dfebe 141 fputs(USAGE_OPTIONS, out);
9a838c3c
DG
142 fputs(_(" -v, --verbose explain what is being done\n"), out);
143 fputs(_(" -s, --symlink act on the target of symlinks\n"), out);
144 fputs(_(" -n, --no-act do not make any changes\n"), out);
145 fputs(_(" -o, --no-overwrite don't overwrite existing files\n"), out);
540dfebe 146 fputs(USAGE_SEPARATOR, out);
f45f3ec3
RM
147 printf(USAGE_HELP_OPTIONS(21));
148 printf(USAGE_MAN_TAIL("rename(1)"));
6e1eda6f 149 exit(EXIT_SUCCESS);
d200a926 150}
eb63b9b8 151
d200a926
SK
152int main(int argc, char **argv)
153{
154 char *from, *to;
9a838c3c
DG
155 int i, c, ret = 0, verbose = 0, noact = 0, nooverwrite = 0;
156 int (*do_rename)(char *from, char *to, char *s, int verbose, int noact, int nooverwrite) = do_file;
d200a926
SK
157
158 static const struct option longopts[] = {
159 {"verbose", no_argument, NULL, 'v'},
160 {"version", no_argument, NULL, 'V'},
161 {"help", no_argument, NULL, 'h'},
990bf1f0 162 {"no-act", no_argument, NULL, 'n'},
9a838c3c 163 {"no-overwrite", no_argument, NULL, 'o'},
5a2a8177 164 {"symlink", no_argument, NULL, 's'},
d200a926
SK
165 {NULL, 0, NULL, 0}
166 };
eb63b9b8
KZ
167
168 setlocale(LC_ALL, "");
169 bindtextdomain(PACKAGE, LOCALEDIR);
170 textdomain(PACKAGE);
c05a80ca 171 atexit(close_stdout);
eb63b9b8 172
fabb9067 173 while ((c = getopt_long(argc, argv, "vsVhno", longopts, NULL)) != -1)
d200a926 174 switch (c) {
990bf1f0
AR
175 case 'n':
176 noact = 1;
0849ff36 177 break;
8c1ce08d
SK
178 case 'v':
179 verbose = 1;
990bf1f0 180 break;
0849ff36
M
181 case 'o':
182 nooverwrite = 1;
183 break;
5a2a8177 184 case 's':
5651128a 185 do_rename = do_symlink;
5a2a8177 186 break;
d200a926 187 case 'V':
c717b032 188 printf(UTIL_LINUX_VERSION);
d200a926
SK
189 return EXIT_SUCCESS;
190 case 'h':
6e1eda6f 191 usage();
d200a926 192 default:
677ec86c 193 errtryhelp(EXIT_FAILURE);
eb63b9b8 194 }
d200a926
SK
195
196 argc -= optind;
197 argv += optind;
eb63b9b8
KZ
198
199 if (argc < 3) {
8c219bf4 200 warnx(_("not enough arguments"));
6e1eda6f 201 errtryhelp(EXIT_FAILURE);
eb63b9b8
KZ
202 }
203
d200a926
SK
204 from = argv[0];
205 to = argv[1];
206
9f430c8a
SK
207 if (!strcmp(from, to))
208 return RENAME_EXIT_NOTHING;
209
d200a926 210 for (i = 2; i < argc; i++)
9a838c3c 211 ret |= do_rename(from, to, argv[i], verbose, noact, nooverwrite);
d6cf9e16
SK
212
213 switch (ret) {
214 case 0:
215 return RENAME_EXIT_NOTHING;
216 case 1:
217 return EXIT_SUCCESS;
218 case 2:
219 return EXIT_FAILURE;
220 case 3:
221 return RENAME_EXIT_SOMEOK;
222 default:
223 return RENAME_EXIT_UNEXPLAINED;
224 }
eb63b9b8 225}