Fix: utils_expand_path now works for paths that ends with '/.' or '/..'
authorRaphaël Beamonte <raphael.beamonte@gmail.com>
Sat, 23 Nov 2013 22:32:26 +0000 (17:32 -0500)
committerDavid Goulet <dgoulet@efficios.com>
Mon, 25 Nov 2013 15:18:30 +0000 (10:18 -0500)
Cases where the path given ended with '/.' or '/..' were not handled
properly using the utils_expand_path function and the resulting path
was still showing this end part. This fix aims to treat that last
part and 'expand' it as expected.

Signed-off-by: Raphaël Beamonte <raphael.beamonte@gmail.com>
src/common/utils.c

index 330c04e82916359053981b69025c9f6339ab1a1f..ce25f232d5209b7c08b644ce21a7fa526d70a244 100644 (file)
@@ -178,6 +178,8 @@ LTTNG_HIDDEN
 char *utils_expand_path(const char *path)
 {
        char *next, *previous, *slash, *start_path, *absolute_path = NULL;
 char *utils_expand_path(const char *path)
 {
        char *next, *previous, *slash, *start_path, *absolute_path = NULL;
+       char *last_token;
+       int is_dot, is_dotdot;
 
        /* Safety net */
        if (path == NULL) {
 
        /* Safety net */
        if (path == NULL) {
@@ -241,6 +243,31 @@ char *utils_expand_path(const char *path)
                                absolute_path, PATH_MAX);
        }
 
                                absolute_path, PATH_MAX);
        }
 
+       /* Identify the last token */
+       last_token = strrchr(absolute_path, '/');
+
+       /* Verify that this token is not a relative path */
+       is_dotdot = (strcmp(last_token, "/..") == 0);
+       is_dot = (strcmp(last_token, "/.") == 0);
+
+       /* If it is, take action */
+       if (is_dot || is_dotdot) {
+               /* For both, remove this token */
+               *last_token = '\0';
+
+               /* If it was a reference to parent directory, go back one more time */
+               if (is_dotdot) {
+                       last_token = strrchr(absolute_path, '/');
+
+                       /* If there was only one level left, we keep the first '/' */
+                       if (last_token == absolute_path) {
+                               last_token++;
+                       }
+
+                       *last_token = '\0';
+               }
+       }
+
        return absolute_path;
 
 error:
        return absolute_path;
 
 error:
This page took 0.027757 seconds and 5 git commands to generate.