blob: 7b2a1ca511f1e3f6a539b68033542acee009bcc1 [file] [log] [blame]
Matt Kraaia7cecbc2001-08-10 15:05:27 +00001/* vi: set sw=4 ts=4: */
2/*
3 * simplify_path implementation for busybox
4 *
Matt Kraai0a685902001-08-14 17:10:08 +00005 * Copyright (C) 2001 Manuel Novoa III <mjn3@opensource.lineo.com>
Matt Kraaia7cecbc2001-08-10 15:05:27 +00006 *
Matt Kraaia7cecbc2001-08-10 15:05:27 +00007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
23#include <stdlib.h>
24
25#include "libbb.h"
26
Matt Kraaia7cecbc2001-08-10 15:05:27 +000027char *simplify_path(const char *path)
28{
Matt Kraai0a685902001-08-14 17:10:08 +000029 char *s, *start, *p;
Matt Kraaia7cecbc2001-08-10 15:05:27 +000030
31 if (path[0] == '/')
Matt Kraai0a685902001-08-14 17:10:08 +000032 start = xstrdup(path);
Matt Kraaia7cecbc2001-08-10 15:05:27 +000033 else {
Matt Kraai0a685902001-08-14 17:10:08 +000034 s = xgetcwd(NULL);
35 start = concat_path_file(s, path);
36 free(s);
Matt Kraaia7cecbc2001-08-10 15:05:27 +000037 }
Matt Kraai0a685902001-08-14 17:10:08 +000038 p = s = start;
Matt Kraaia7cecbc2001-08-10 15:05:27 +000039
Matt Kraai0a685902001-08-14 17:10:08 +000040 do {
41 if (*p == '/') {
42 if (*s == '/') { /* skip duplicate (or initial) slash */
43 continue;
44 } else if (*s == '.') {
45 if (s[1] == '/' || s[1] == 0) { /* remove extra '.' */
46 continue;
47 } else if ((s[1] == '.') && (s[2] == '/' || s[2] == 0)) {
48 ++s;
49 if (p > start) {
50 while (*--p != '/'); /* omit previous dir */
51 }
52 continue;
53 }
Matt Kraaia7cecbc2001-08-10 15:05:27 +000054 }
55 }
Matt Kraai0a685902001-08-14 17:10:08 +000056 *++p = *s;
57 } while (*++s);
58
59 if ((p == start) || (*p != '/')) { /* not a trailing slash */
60 ++p; /* so keep last character */
Matt Kraaia7cecbc2001-08-10 15:05:27 +000061 }
Matt Kraai0a685902001-08-14 17:10:08 +000062 *p = 0;
63
Matt Kraaia7cecbc2001-08-10 15:05:27 +000064 return start;
65}