-
Notifications
You must be signed in to change notification settings - Fork 24
/
symlinks.c
473 lines (367 loc) · 10.6 KB
/
symlinks.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
#include <unistd.h>
#ifndef _POSIX_SOURCE
#define _POSIX_SOURCE
#endif
#include <stdio.h>
#include <stdlib.h>
#if !defined(__APPLE__)
#include <malloc.h>
#endif
#include <string.h>
#include <fcntl.h>
#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <time.h>
#include <stddef.h>
#include <errno.h>
#ifndef S_ISLNK
#define S_ISLNK(mode) (((mode) & (_S_IFMT)) == (_S_IFLNK))
#endif
#ifndef PATH_MAX
#define PATH_MAX 1024
#endif
#define progver "%s: scan/change symbolic links - v1.4.3\n\n"
static char *progname;
static int verbose = 0,
fix_links = 0,
recurse = 0,
delete = 0,
shorten = 0,
testing = 0,
single_fs = 1;
/*
* tidypath removes excess slashes and "." references from a path string
*/
static int substr(char *s, char *old, char *new) {
char *tmp = NULL;
unsigned long oldlen = strlen(old), newlen = 0;
if (NULL == strstr(s, old)) {
return 0;
}
if (new) {
newlen = strlen(new);
}
if (newlen > oldlen) {
if ((tmp = malloc(strlen(s))) == NULL) {
fprintf(stderr, "no memory\n");
exit(1);
}
}
while (NULL != (s = strstr(s, old))) {
char *p, *old_s = s;
if (new) {
if (newlen > oldlen) {
old_s = strcpy(tmp, s);
}
p = new;
while (*p) {
*s++ = *p++;
}
}
p = old_s + oldlen;
while ((*s++ = *p++));
}
if (tmp) {
free(tmp);
}
return 1;
}
static int tidy_path(char *path) {
int tidied = 0;
char *s, *p;
s = path + strlen(path) - 1;
if (s[0] != '/') { /* tmp trailing slash simplifies things */
s[1] = '/';
s[2] = '\0';
}
while (substr(path, "/./", "/")) {
tidied = 1;
}
while (substr(path, "//", "/")) {
tidied = 1;
}
while ((p = strstr(path, "/../")) != NULL) {
s = p + 3;
for (p--; p != path; p--) {
if (*p == '/') { break; }
}
if (*p != '/') { break; }
while ((*p++ = *s++));
tidied = 1;
}
if (*path == '\0') {
strcpy(path, "/");
}
p = path + strlen(path) - 1;
if (p != path && *p == '/') {
*p-- = '\0'; /* remove tmp trailing slash */
}
while (p != path && *p == '/') { /* remove any others */
*p-- = '\0';
tidied = 1;
}
while (!strncmp(path, "./", 2)) {
for (p = path, s = path + 2; (*p++ = *s++););
tidied = 1;
}
return tidied;
}
static int shorten_path(char *path, char *abspath) {
static char dir[PATH_MAX];
int shortened = 0;
char *p;
/* get rid of unnecessary "../dir" sequences */
while (abspath && strlen(abspath) > 1 && (p = strstr(path, "../"))) {
/* find innermost occurance of "../dir", and save "dir" */
int slashes = 2;
char *a, *s, *d = dir;
while ((s = strstr(p + 3, "../"))) {
++slashes;
p = s;
}
s = p + 3;
*d++ = '/';
while (*s && *s != '/') {
*d++ = *s++;
}
*d++ = '/';
*d = '\0';
if (!strcmp(dir, "//")) {
break;
}
/* note: p still points at ../dir */
if (*s != '/' || !*++s) {
break;
}
a = abspath + strlen(abspath) - 1;
while (slashes-- > 0) {
if (a <= abspath) {
goto ughh;
}
while (*--a != '/') {
if (a <= abspath) {
goto ughh;
}
}
}
if (strncmp(dir, a, strlen(dir))) {
break;
}
while ((*p++ = *s++)); /* delete the ../dir */
shortened = 1;
}
ughh:
return shortened;
}
static void fix_symlink(char *path, dev_t my_dev) {
static char lpath[PATH_MAX], new[PATH_MAX], abspath[PATH_MAX];
char *p, *np, *lp, *tail, *msg;
struct stat stbuf, lstbuf;
int fix_abs = 0, fix_messy = 0, fix_long = 0;
size_t c;
if ((c = readlink(path, lpath, sizeof(lpath))) == -1) {
perror(path);
return;
}
lpath[c] = '\0'; /* readlink does not null terminate it */
/* construct the absolute address of the link */
abspath[0] = '\0';
if (lpath[0] != '/') {
strcat(abspath, path);
c = strlen(abspath);
if ((c > 0) && (abspath[c - 1] == '/')) {
abspath[c - 1] = '\0'; /* cut trailing / */
}
if ((p = strrchr(abspath, '/')) != NULL) {
*p = '\0'; /* cut last component */
}
strcat(abspath, "/");
}
strcat(abspath, lpath);
(void) tidy_path(abspath);
/* check for various things */
if (stat(abspath, &stbuf) == -1) {
printf("dangling: %s -> %s\n", path, lpath);
if (delete) {
if (unlink(path)) {
perror(path);
} else {
printf("deleted: %s -> %s\n", path, lpath);
}
}
return;
}
if (single_fs) {
lstat(abspath, &lstbuf); /* if the above didn't fail, then this shouldn't */
}
if (single_fs && lstbuf.st_dev != my_dev) {
msg = "other_fs:";
} else if (lpath[0] == '/') {
msg = "absolute:";
fix_abs = 1;
} else if (verbose) {
msg = "relative:";
} else {
msg = NULL;
}
fix_messy = tidy_path(strcpy(new, lpath));
if (shorten) {
fix_long = shorten_path(new, path);
}
if (!fix_abs) {
if (fix_messy) {
msg = "messy: ";
} else if (fix_long) {
msg = "lengthy: ";
}
}
if (msg != NULL) {
printf("%s %s -> %s\n", msg, path, lpath);
}
if (!(fix_links || testing) || !(fix_messy || fix_abs || fix_long)) {
return;
}
if (fix_abs) {
/* convert an absolute link to relative: */
/* point tail at first part of lpath that differs from path */
/* point p at first part of path that differs from lpath */
(void) tidy_path(lpath);
tail = lp = lpath;
p = path;
while (*p && (*p == *lp)) {
if (*lp++ == '/') {
tail = lp;
while (*++p == '/');
}
}
/* now create new, with "../"s followed by tail */
np = new;
while (*p) {
if (*p++ == '/') {
*np++ = '.';
*np++ = '.';
*np++ = '/';
while (*p == '/') {
++p;
}
}
}
strcpy(np, tail);
(void) tidy_path(new);
if (shorten) {
(void) shorten_path(new, path);
}
}
shorten_path(new, path);
if (!testing) {
if (unlink(path)) {
perror(path);
return;
}
if (symlink(new, path)) {
perror(path);
return;
}
}
printf("changed: %s -> %s\n", path, new);
}
static void dirwalk(char *path, unsigned long pathlen, dev_t dev) {
char *name;
DIR *dfd;
static struct stat st;
static struct dirent *dp;
if ((dfd = opendir(path)) == NULL) {
perror(path);
return;
}
name = path + pathlen;
if (*(name - 1) != '/') {
*name++ = '/';
}
while ((dp = readdir(dfd)) != NULL) {
strcpy(name, dp->d_name);
if (strcmp(name, ".") && strcmp(name, "..")) {
if (lstat(path, &st) == -1) {
perror(path);
} else if (st.st_dev == dev) {
if (S_ISLNK(st.st_mode)) {
fix_symlink(path, dev);
} else if (recurse && S_ISDIR(st.st_mode)) {
dirwalk(path, strlen(path), dev);
}
}
}
}
closedir(dfd);
path[pathlen] = '\0';
}
static void usage_error(void) {
fprintf(stderr, progver, progname);
fprintf(stderr, "Usage:\t%s [-cdorstv] dirlist\n\n", progname);
fprintf(stderr, "Flags:"
"\t-c change absolute/messy links to relative\n"
"\t-d delete dangling links\n"
"\t-o warn about links across file systems\n"
"\t-r recurse into subdirs\n"
"\t-s shorten lengthy links (displayed in output only when -c not specified)\n"
"\t-t show what would be done by -c\n"
"\t-v verbose (show all symlinks)\n\n");
exit(1);
}
int main(int argc, char **argv) {
static char path[PATH_MAX + 2], cwd[PATH_MAX + 2];
int dircount = 0;
char c, *p;
if ((progname = (char *) strrchr(*argv, '/')) == NULL) {
progname = *argv;
} else {
progname++;
}
if (NULL == getcwd(cwd, PATH_MAX)) {
fprintf(stderr, "getcwd() failed\n");
exit(1);
}
if (!*cwd || cwd[strlen(cwd) - 1] != '/') {
strcat(cwd, "/");
}
while (--argc) {
p = *++argv;
if (*p == '-') {
if (*++p == '\0') {
usage_error();
}
while ((c = *p++)) {
if (c == 'c') { fix_links = 1;
} else if (c == 'd') { delete = 1;
} else if (c == 'o') { single_fs = 0;
} else if (c == 'r') { recurse = 1;
} else if (c == 's') { shorten = 1;
} else if (c == 't') { testing = 1;
} else if (c == 'v') { verbose = 1;
} else {
usage_error();
}
}
} else {
struct stat st;
if (*p == '/') {
*path = '\0';
} else {
strcpy(path, cwd);
}
tidy_path(strcat(path, p));
if (lstat(path, &st) == -1) {
perror(path);
} else {
dirwalk(path, strlen(path), st.st_dev);
}
++dircount;
}
}
if (dircount == 0) {
usage_error();
}
exit(0);
}