busybox/libbb/simplify_path.c

60 lines
1.1 KiB
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 source tree.
2001-08-10 20:35:27 +05:30
*/
#include "libbb.h"
char* FAST_FUNC bb_simplify_abs_path_inplace(char *start)
2001-08-10 20:35:27 +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 == '/') {
if (*s == '/') { /* skip duplicate (or initial) slash */
2001-08-14 22:40:08 +05:30
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
}
*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
bb_simplify_abs_path_inplace(s);
return s;
2001-08-10 20:35:27 +05:30
}