2007-05-24 Jonathan Chambers <joncham@gmail.com>
[mono.git] / mono / utils / mono-path.c
1 /*
2  * mono-path.c: Routines for handling path names.
3  * 
4  * Authors:
5  *      Gonzalo Paniagua Javier (gonzalo@novell.com)
6  *      Miguel de Icaza (miguel@novell.com)
7  *
8  * (C) 2006 Novell, Inc.  http://www.novell.com
9  *
10  */
11 #include <config.h>
12 #include <glib.h>
13 #include <errno.h>
14 #include <string.h>
15 #include <stdlib.h>
16 #ifdef HAVE_UNISTD_H
17 #include <unistd.h>
18 #endif
19 /* This is only needed for the mono_path_canonicalize code, MAXSYMLINKS, could be moved */
20 #ifdef HAVE_SYS_PARAM_H
21 #include <sys/param.h>
22 #endif
23
24 #include "mono-path.h"
25
26 /* Resolves '..' and '.' references in a path. If the path provided is relative,
27  * it will be relative to the current directory */
28 gchar *
29 mono_path_canonicalize (const char *path)
30 {
31         gchar *abspath, *pos, *lastpos, *dest;
32         int backc;
33
34         if (g_path_is_absolute (path)) {
35                 abspath = g_strdup (path);
36         } else {
37                 gchar *tmpdir = g_get_current_dir ();
38                 abspath = g_build_filename (tmpdir, path, NULL);
39                 g_free (tmpdir);
40         }
41
42         abspath = g_strreverse (abspath);
43
44         backc = 0;
45         dest = lastpos = abspath;
46         pos = strchr (lastpos, G_DIR_SEPARATOR);
47
48         while (pos != NULL) {
49                 int len = pos - lastpos;
50                 if (len == 1 && lastpos [0] == '.') {
51                         // nop
52                 } else if (len == 2 && lastpos [0] == '.' && lastpos [1] == '.') {
53                         backc++;
54                 } else if (len > 0) {
55                         if (backc > 0) {
56                                 backc--;
57                         } else {
58                                 if (dest != lastpos) 
59                                         /* The two strings can overlap */
60                                         memmove (dest, lastpos, len + 1);
61                                 dest += len + 1;
62                         }
63                 }
64                 lastpos = pos + 1;
65                 pos = strchr (lastpos, G_DIR_SEPARATOR);
66         }
67         
68         if (dest != lastpos) strcpy (dest, lastpos);
69         return g_strreverse (abspath);
70 }
71
72 /*
73  * This ensures that the path that we store points to the final file
74  * not a path to a symlink.
75  */
76 gchar *
77 mono_path_resolve_symlinks (const char *path)
78 {
79 #if PLATFORM_WIN32
80         return mono_path_canonicalize (path);
81 #else
82         char *p, *concat, *dir;
83         char buffer [PATH_MAX+1];
84         int n, iterations = 0;
85
86         p = g_strdup (path);
87         do {
88                 iterations++;
89                 n = readlink (p, buffer, sizeof (buffer)-1);
90                 if (n < 0){
91                         char *copy = p;
92                         p = mono_path_canonicalize (copy);
93                         g_free (copy);
94                         return p;
95                 }
96                 
97                 buffer [n] = 0;
98                 if (!g_path_is_absolute (buffer)) {
99                         dir = g_path_get_dirname (p);
100                         concat = g_build_filename (dir, buffer, NULL);
101                         g_free (dir);
102                 } else {
103                         concat = g_strdup (buffer);
104                 }
105                 g_free (p);
106                 p = mono_path_canonicalize (concat);
107                 g_free (concat);
108         } while (iterations < MAXSYMLINKS);
109
110         return p;
111 #endif
112 }
113