Merge pull request #727 from libgit2/env-expansion windows: Properly expand all environment variables
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
diff --git a/src/fileops.c b/src/fileops.c
index 6dd9270..cd4b3c4 100644
--- a/src/fileops.c
+++ b/src/fileops.c
@@ -354,110 +354,22 @@ int git_futils_rmdir_r(const char *path, git_directory_removal_type removal_type
}
#ifdef GIT_WIN32
-static char *win32_getenv(const wchar_t *name)
-{
- char *val_utf8;
- wchar_t *val_utf16;
- DWORD len = GetEnvironmentVariableW(name, NULL, 0);
-
- if (len <= 0)
- return NULL;
-
- val_utf16 = git__calloc(len, sizeof(wchar_t));
- if (!val_utf16)
- return NULL;
-
- if (GetEnvironmentVariableW(name, val_utf16, len) != len - 1) {
- giterr_set(GITERR_OS, "Could not read environment variable");
- git__free(val_utf16);
- return NULL;
- }
-
- val_utf8 = gitwin_from_utf16(val_utf16);
-
- git__free(val_utf16);
-
- return val_utf8;
-}
-#endif
-
-int git_futils_find_global_file(git_buf *path, const char *filename)
-{
- char *home;
-
-#ifdef GIT_WIN32
- home = win32_getenv(L"HOME");
-
- if (!home)
- home = win32_getenv(L"USERPROFILE");
-
- if (home)
- git_path_mkposix(home);
-#else
- home = getenv("HOME");
-#endif
-
- if (home == NULL) {
- giterr_set(GITERR_OS, "Global file lookup failed. "
- "Cannot locate the user's home directory");
- return -1;
- }
-
- if (git_buf_joinpath(path, home, filename) < 0)
- return -1;
-
-#ifdef GIT_WIN32
- git__free(home);
-#endif
-
- if (git_path_exists(path->ptr) == false) {
- git_buf_clear(path);
- return GIT_ENOTFOUND;
- }
-
- return 0;
-}
-
-#ifdef GIT_WIN32
-typedef struct {
- wchar_t *path;
+struct win32_path {
+ wchar_t path[MAX_PATH];
DWORD len;
-} win32_path;
+};
-static const win32_path *win32_system_root(void)
+static int win32_expand_path(struct win32_path *s_root, const wchar_t *templ)
{
- static win32_path s_root = { 0, 0 };
-
- if (s_root.path == NULL) {
- const wchar_t *root_tmpl = L"%PROGRAMFILES%\\Git\\etc\\";
-
- s_root.len = ExpandEnvironmentStringsW(root_tmpl, NULL, 0);
- if (s_root.len <= 0) {
- giterr_set(GITERR_OS, "Failed to expand environment strings");
- return NULL;
- }
-
- s_root.path = git__calloc(s_root.len, sizeof(wchar_t));
- if (s_root.path == NULL)
- return NULL;
-
- if (ExpandEnvironmentStringsW(root_tmpl, s_root.path, s_root.len) != s_root.len) {
- giterr_set(GITERR_OS, "Failed to expand environment strings");
- git__free(s_root.path);
- s_root.path = NULL;
- return NULL;
- }
- }
-
- return &s_root;
+ s_root->len = ExpandEnvironmentStringsW(templ, s_root->path, MAX_PATH);
+ return s_root->len ? 0 : -1;
}
-static int win32_find_system_file(git_buf *path, const char *filename)
+static int win32_find_file(git_buf *path, const struct win32_path *root, const char *filename)
{
int error = 0;
- const win32_path *root = win32_system_root();
size_t len;
- wchar_t *file_utf16 = NULL, *scan;
+ wchar_t *file_utf16 = NULL;
char *file_utf8 = NULL;
if (!root || !filename || (len = strlen(filename)) == 0)
@@ -479,10 +391,6 @@ static int win32_find_system_file(git_buf *path, const char *filename)
goto cleanup;
}
- for (scan = file_utf16; *scan; scan++)
- if (*scan == L'/')
- *scan = L'\\';
-
/* check access */
if (_waccess(file_utf16, F_OK) < 0) {
error = GIT_ENOTFOUND;
@@ -499,13 +407,24 @@ static int win32_find_system_file(git_buf *path, const char *filename)
cleanup:
git__free(file_utf16);
-
return error;
}
#endif
int git_futils_find_system_file(git_buf *path, const char *filename)
{
+#ifdef GIT_WIN32
+ struct win32_path root;
+
+ if (win32_expand_path(&root, L"%PROGRAMFILES%\\Git\\etc\\") < 0 ||
+ win32_find_file(path, &root, filename) < 0) {
+ giterr_set(GITERR_OS, "Cannot find the system's Program Files directory");
+ return -1;
+ }
+
+ return 0;
+
+#else
if (git_buf_joinpath(path, "/etc", filename) < 0)
return -1;
@@ -513,10 +432,39 @@ int git_futils_find_system_file(git_buf *path, const char *filename)
return 0;
git_buf_clear(path);
+ return GIT_ENOTFOUND;
+#endif
+}
+int git_futils_find_global_file(git_buf *path, const char *filename)
+{
#ifdef GIT_WIN32
- return win32_find_system_file(path, filename);
+ struct win32_path root;
+
+ if (win32_expand_path(&root, L"%USERPROFILE%\\") < 0 ||
+ win32_find_file(path, &root, filename) < 0) {
+ giterr_set(GITERR_OS, "Failed to lookup the current user's Windows profile");
+ return -1;
+ }
+
+ return 0;
#else
- return GIT_ENOTFOUND;
+ const char *home = getenv("HOME");
+
+ if (home == NULL) {
+ giterr_set(GITERR_OS, "Global file lookup failed. "
+ "Cannot locate the user's home directory");
+ return -1;
+ }
+
+ if (git_buf_joinpath(path, home, filename) < 0)
+ return -1;
+
+ if (git_path_exists(path->ptr) == false) {
+ git_buf_clear(path);
+ return GIT_ENOTFOUND;
+ }
+
+ return 0;
#endif
}
diff --git a/tests-clar/core/env.c b/tests-clar/core/env.c
index abe7bf8..0d58e56 100644
--- a/tests-clar/core/env.c
+++ b/tests-clar/core/env.c
@@ -53,26 +53,24 @@ static int cl_setenv(const char *name, const char *value)
#endif
static char *env_home = NULL;
-#ifdef GIT_WIN32
static char *env_userprofile = NULL;
-#endif
void test_core_env__initialize(void)
{
- env_home = cl_getenv("HOME");
#ifdef GIT_WIN32
env_userprofile = cl_getenv("USERPROFILE");
+#else
+ env_home = cl_getenv("HOME");
#endif
}
void test_core_env__cleanup(void)
{
- cl_setenv("HOME", env_home);
#ifdef GIT_WIN32
cl_setenv("USERPROFILE", env_userprofile);
-
- git__free(env_home);
git__free(env_userprofile);
+#else
+ cl_setenv("HOME", env_home);
#endif
}
@@ -102,32 +100,25 @@ void test_core_env__0(void)
*/
cl_git_pass(git_path_prettify(&path, *val, NULL));
- cl_git_pass(cl_setenv("HOME", path.ptr));
-
- /* do a quick check that it was set correctly */
- check = cl_getenv("HOME");
- cl_assert_equal_s(path.ptr, check);
#ifdef GIT_WIN32
- git__free(check);
-
cl_git_pass(cl_setenv("USERPROFILE", path.ptr));
/* do a quick check that it was set correctly */
check = cl_getenv("USERPROFILE");
cl_assert_equal_s(path.ptr, check);
git__free(check);
+#else
+ cl_git_pass(cl_setenv("HOME", path.ptr));
+
+ /* do a quick check that it was set correctly */
+ check = cl_getenv("HOME");
+ cl_assert_equal_s(path.ptr, check);
#endif
cl_git_pass(git_buf_puts(&path, "/testfile"));
cl_git_mkfile(path.ptr, "find me");
cl_git_pass(git_futils_find_global_file(&found, "testfile"));
-
-#ifdef GIT_WIN32
- /* do another check with HOME unset */
- cl_git_pass(cl_setenv("HOME", NULL));
- cl_git_pass(git_futils_find_global_file(&found, "testfile"));
-#endif
}
}