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
|
|
|
*
|
2006-07-10 17:11:19 +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"
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
char* FAST_FUNC 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] == '/')
|
2006-08-03 21:11:12 +05:30
|
|
|
start = xstrdup(path);
|
2001-08-10 20:35:27 +05:30
|
|
|
else {
|
2007-02-11 21:49:28 +05:30
|
|
|
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;
|
2007-04-14 05:29:52 +05:30
|
|
|
}
|
|
|
|
if (*s == '.') {
|
|
|
|
if (s[1] == '/' || !s[1]) { /* remove extra '.' */
|
2001-08-14 22:40:08 +05:30
|
|
|
continue;
|
2007-04-14 05:29:52 +05:30
|
|
|
}
|
|
|
|
if ((s[1] == '.') && (s[2] == '/' || !s[2])) {
|
2001-08-14 22:40:08 +05:30
|
|
|
++s;
|
|
|
|
if (p > start) {
|
2007-04-14 05:29:52 +05:30
|
|
|
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;
|
|
|
|
}
|