Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | |
Junio C Hamano | 90b4a71 | 2008-09-09 01:27:07 -0700 | [diff] [blame] | 3 | /* |
| 4 | * Do not use this for inspecting *tracked* content. When path is a |
| 5 | * symlink to a directory, we do not want to say it is a directory when |
| 6 | * dealing with tracked content in the working tree. |
| 7 | */ |
| 8 | int is_directory(const char *path) |
| 9 | { |
| 10 | struct stat st; |
| 11 | return (!stat(path, &st) && S_ISDIR(st.st_mode)); |
| 12 | } |
| 13 | |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 14 | /* We allow "recursive" symbolic links. Only within reason, though. */ |
| 15 | #define MAXDEPTH 5 |
| 16 | |
Carlos Martín Nieto | e2a57aa | 2011-03-17 12:26:46 +0100 | [diff] [blame] | 17 | /* |
| 18 | * Use this to get the real path, i.e. resolve links. If you want an |
| 19 | * absolute path but don't mind links, use absolute_path. |
| 20 | * |
| 21 | * If path is our buffer, then return path, as it's already what the |
| 22 | * user wants. |
| 23 | */ |
| 24 | const char *real_path(const char *path) |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 25 | { |
| 26 | static char bufs[2][PATH_MAX + 1], *buf = bufs[0], *next_buf = bufs[1]; |
| 27 | char cwd[1024] = ""; |
Brandon Casey | 1630726 | 2009-08-27 11:16:33 -0500 | [diff] [blame] | 28 | int buf_index = 1; |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 29 | |
| 30 | int depth = MAXDEPTH; |
| 31 | char *last_elem = NULL; |
| 32 | struct stat st; |
| 33 | |
Carlos Martín Nieto | 1d679de | 2011-03-16 17:06:17 +0100 | [diff] [blame] | 34 | /* We've already done it */ |
| 35 | if (path == buf || path == next_buf) |
| 36 | return path; |
| 37 | |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 38 | if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX) |
| 39 | die ("Too long path: %.*s", 60, path); |
| 40 | |
| 41 | while (depth--) { |
Junio C Hamano | 90b4a71 | 2008-09-09 01:27:07 -0700 | [diff] [blame] | 42 | if (!is_directory(buf)) { |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 43 | char *last_slash = strrchr(buf, '/'); |
| 44 | if (last_slash) { |
| 45 | *last_slash = '\0'; |
| 46 | last_elem = xstrdup(last_slash + 1); |
| 47 | } else { |
| 48 | last_elem = xstrdup(buf); |
| 49 | *buf = '\0'; |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | if (*buf) { |
| 54 | if (!*cwd && !getcwd(cwd, sizeof(cwd))) |
Thomas Rast | 0721c31 | 2009-06-27 17:58:47 +0200 | [diff] [blame] | 55 | die_errno ("Could not get current working directory"); |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 56 | |
| 57 | if (chdir(buf)) |
Thomas Rast | 0721c31 | 2009-06-27 17:58:47 +0200 | [diff] [blame] | 58 | die_errno ("Could not switch to '%s'", buf); |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 59 | } |
| 60 | if (!getcwd(buf, PATH_MAX)) |
Thomas Rast | 0721c31 | 2009-06-27 17:58:47 +0200 | [diff] [blame] | 61 | die_errno ("Could not get current working directory"); |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 62 | |
| 63 | if (last_elem) { |
Brandon Casey | 1630726 | 2009-08-27 11:16:33 -0500 | [diff] [blame] | 64 | size_t len = strlen(buf); |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 65 | if (len + strlen(last_elem) + 2 > PATH_MAX) |
| 66 | die ("Too long path name: '%s/%s'", |
| 67 | buf, last_elem); |
Nguyễn Thái Ngọc Duy | ed0cb46 | 2010-02-14 22:44:41 +0700 | [diff] [blame] | 68 | if (len && buf[len-1] != '/') |
| 69 | buf[len++] = '/'; |
| 70 | strcpy(buf + len, last_elem); |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 71 | free(last_elem); |
| 72 | last_elem = NULL; |
| 73 | } |
| 74 | |
| 75 | if (!lstat(buf, &st) && S_ISLNK(st.st_mode)) { |
Brandon Casey | 1630726 | 2009-08-27 11:16:33 -0500 | [diff] [blame] | 76 | ssize_t len = readlink(buf, next_buf, PATH_MAX); |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 77 | if (len < 0) |
Thomas Rast | 0721c31 | 2009-06-27 17:58:47 +0200 | [diff] [blame] | 78 | die_errno ("Invalid symlink '%s'", buf); |
Junio C Hamano | 737e31a | 2008-12-17 12:37:48 -0800 | [diff] [blame] | 79 | if (PATH_MAX <= len) |
| 80 | die("symbolic link too long: %s", buf); |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 81 | next_buf[len] = '\0'; |
| 82 | buf = next_buf; |
| 83 | buf_index = 1 - buf_index; |
| 84 | next_buf = bufs[buf_index]; |
| 85 | } else |
| 86 | break; |
| 87 | } |
| 88 | |
| 89 | if (*cwd && chdir(cwd)) |
Thomas Rast | 0721c31 | 2009-06-27 17:58:47 +0200 | [diff] [blame] | 90 | die_errno ("Could not change back to '%s'", cwd); |
Dmitry Potapov | 5b8e6f8 | 2008-06-28 00:46:42 +0400 | [diff] [blame] | 91 | |
| 92 | return buf; |
| 93 | } |
Johannes Sixt | 10c4c88 | 2008-07-21 21:19:55 +0200 | [diff] [blame] | 94 | |
| 95 | static const char *get_pwd_cwd(void) |
| 96 | { |
| 97 | static char cwd[PATH_MAX + 1]; |
| 98 | char *pwd; |
| 99 | struct stat cwd_stat, pwd_stat; |
| 100 | if (getcwd(cwd, PATH_MAX) == NULL) |
| 101 | return NULL; |
| 102 | pwd = getenv("PWD"); |
| 103 | if (pwd && strcmp(pwd, cwd)) { |
| 104 | stat(cwd, &cwd_stat); |
| 105 | if (!stat(pwd, &pwd_stat) && |
| 106 | pwd_stat.st_dev == cwd_stat.st_dev && |
| 107 | pwd_stat.st_ino == cwd_stat.st_ino) { |
| 108 | strlcpy(cwd, pwd, PATH_MAX); |
| 109 | } |
| 110 | } |
| 111 | return cwd; |
| 112 | } |
| 113 | |
Carlos Martín Nieto | e2a57aa | 2011-03-17 12:26:46 +0100 | [diff] [blame] | 114 | /* |
| 115 | * Use this to get an absolute path from a relative one. If you want |
| 116 | * to resolve links, you should use real_path. |
| 117 | * |
| 118 | * If the path is already absolute, then return path. As the user is |
| 119 | * never meant to free the return value, we're safe. |
| 120 | */ |
| 121 | const char *absolute_path(const char *path) |
Johannes Sixt | 10c4c88 | 2008-07-21 21:19:55 +0200 | [diff] [blame] | 122 | { |
| 123 | static char buf[PATH_MAX + 1]; |
| 124 | |
| 125 | if (is_absolute_path(path)) { |
| 126 | if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX) |
| 127 | die("Too long path: %.*s", 60, path); |
| 128 | } else { |
Eric Sunshine | b248e95 | 2010-07-06 21:48:47 -0400 | [diff] [blame] | 129 | size_t len; |
| 130 | const char *fmt; |
Johannes Sixt | 10c4c88 | 2008-07-21 21:19:55 +0200 | [diff] [blame] | 131 | const char *cwd = get_pwd_cwd(); |
| 132 | if (!cwd) |
Thomas Rast | 0721c31 | 2009-06-27 17:58:47 +0200 | [diff] [blame] | 133 | die_errno("Cannot determine the current working directory"); |
Eric Sunshine | b248e95 | 2010-07-06 21:48:47 -0400 | [diff] [blame] | 134 | len = strlen(cwd); |
| 135 | fmt = (len > 0 && is_dir_sep(cwd[len-1])) ? "%s%s" : "%s/%s"; |
| 136 | if (snprintf(buf, PATH_MAX, fmt, cwd, path) >= PATH_MAX) |
Johannes Sixt | 10c4c88 | 2008-07-21 21:19:55 +0200 | [diff] [blame] | 137 | die("Too long path: %.*s", 60, path); |
| 138 | } |
| 139 | return buf; |
| 140 | } |