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
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-08-10 20:35:27 +05:30
|
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2009-04-22 19:19:16 +05:30
|
|
|
char* FAST_FUNC bb_simplify_abs_path_inplace(char *start)
|
2001-08-10 20:35:27 +05:30
|
|
|
{
|
2009-04-22 19:19:16 +05:30
|
|
|
char *s, *p;
|
2001-08-10 20:35:27 +05:30
|
|
|
|
2001-08-14 22:40:08 +05:30
|
|
|
p = s = start;
|
|
|
|
do {
|
|
|
|
if (*p == '/') {
|
2010-10-29 15:16:52 +05:30
|
|
|
if (*s == '/') { /* skip duplicate (or initial) slash */
|
2001-08-14 22:40:08 +05:30
|
|
|
continue;
|
2007-04-14 05:29:52 +05:30
|
|
|
}
|
|
|
|
if (*s == '.') {
|
2010-10-29 15:16:52 +05:30
|
|
|
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) {
|
2010-10-29 15:16:52 +05:30
|
|
|
while (*--p != '/') /* omit previous dir */
|
2007-04-14 05:29:52 +05:30
|
|
|
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);
|
|
|
|
|
2010-10-29 15:16:52 +05:30
|
|
|
if ((p == start) || (*p != '/')) { /* not a trailing slash */
|
|
|
|
++p; /* so keep last character */
|
2001-08-10 20:35:27 +05:30
|
|
|
}
|
2009-04-22 19:19:16 +05:30
|
|
|
*p = '\0';
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* FAST_FUNC bb_simplify_path(const char *path)
|
|
|
|
{
|
|
|
|
char *s, *p;
|
|
|
|
|
|
|
|
if (path[0] == '/')
|
|
|
|
s = xstrdup(path);
|
|
|
|
else {
|
|
|
|
p = xrealloc_getcwd_or_warn(NULL);
|
|
|
|
s = concat_path_file(p, path);
|
|
|
|
free(p);
|
|
|
|
}
|
2001-08-14 22:40:08 +05:30
|
|
|
|
2009-04-22 19:19:16 +05:30
|
|
|
bb_simplify_abs_path_inplace(s);
|
|
|
|
return s;
|
2001-08-10 20:35:27 +05:30
|
|
|
}
|