busybox/libbb/simplify_path.c

54 lines
1023 B
C
Raw Normal View History

2001-08-10 20:35:27 +05:30
/* vi: set sw=4 ts=4: */
/*
2003-03-19 14:43:01 +05:30
* bb_simplify_path implementation for busybox
2001-08-10 20:35:27 +05:30
*
2003-03-19 14:43:01 +05:30
* Copyright (C) 2001 Manuel Novoa III <mjn3@codepoet.org>
2001-08-10 20:35:27 +05:30
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
2001-08-10 20:35:27 +05:30
*/
#include "libbb.h"
2003-03-19 14:43:01 +05:30
char *bb_simplify_path(const char *path)
2001-08-10 20:35:27 +05:30
{
2001-08-14 22:40:08 +05:30
char *s, *start, *p;
2001-08-10 20:35:27 +05:30
if (path[0] == '/')
start = xstrdup(path);
2001-08-10 20:35:27 +05:30
else {
s = xrealloc_getcwd_or_warn(NULL);
2001-08-14 22:40:08 +05:30
start = concat_path_file(s, path);
free(s);
2001-08-10 20:35:27 +05:30
}
2001-08-14 22:40:08 +05:30
p = s = start;
2001-08-10 20:35:27 +05:30
2001-08-14 22:40:08 +05:30
do {
if (*p == '/') {
if (*s == '/') { /* skip duplicate (or initial) slash */
continue;
}
if (*s == '.') {
if (s[1] == '/' || !s[1]) { /* remove extra '.' */
2001-08-14 22:40:08 +05:30
continue;
}
if ((s[1] == '.') && (s[2] == '/' || !s[2])) {
2001-08-14 22:40:08 +05:30
++s;
if (p > start) {
while (*--p != '/') /* omit previous dir */
continue;
2001-08-14 22:40:08 +05:30
}
continue;
}
2001-08-10 20:35:27 +05:30
}
}
2001-08-14 22:40:08 +05:30
*++p = *s;
} while (*++s);
if ((p == start) || (*p != '/')) { /* not a trailing slash */
++p; /* so keep last character */
2001-08-10 20:35:27 +05:30
}
2001-08-14 22:40:08 +05:30
*p = 0;
2001-08-10 20:35:27 +05:30
return start;
}