mirror of
https://github.com/postgres/postgres.git
synced 2025-07-11 10:01:57 +03:00
Prefer $HOME when looking up the current user's home directory.
When we need to identify the home directory on non-Windows, first consult getenv("HOME"). If that's empty or unset, fall back on our previous method of checking the <pwd.h> database. Preferring $HOME allows the user to intentionally point at some other directory, and it seems to be in line with the behavior of most other utilities. However, we shouldn't rely on it completely, as $HOME is likely to be unset when running as a daemon. Anders Kaseorg Discussion: https://postgr.es/m/1634252654444.90107@mit.edu
This commit is contained in:
@ -7267,14 +7267,21 @@ bool
|
||||
pqGetHomeDirectory(char *buf, int bufsize)
|
||||
{
|
||||
#ifndef WIN32
|
||||
char pwdbuf[BUFSIZ];
|
||||
struct passwd pwdstr;
|
||||
struct passwd *pwd = NULL;
|
||||
const char *home;
|
||||
|
||||
(void) pqGetpwuid(geteuid(), &pwdstr, pwdbuf, sizeof(pwdbuf), &pwd);
|
||||
if (pwd == NULL)
|
||||
return false;
|
||||
strlcpy(buf, pwd->pw_dir, bufsize);
|
||||
home = getenv("HOME");
|
||||
if (home == NULL || home[0] == '\0')
|
||||
{
|
||||
char pwdbuf[BUFSIZ];
|
||||
struct passwd pwdstr;
|
||||
struct passwd *pwd = NULL;
|
||||
|
||||
(void) pqGetpwuid(geteuid(), &pwdstr, pwdbuf, sizeof(pwdbuf), &pwd);
|
||||
if (pwd == NULL)
|
||||
return false;
|
||||
home = pwd->pw_dir;
|
||||
}
|
||||
strlcpy(buf, home, bufsize);
|
||||
return true;
|
||||
#else
|
||||
char tmppath[MAX_PATH];
|
||||
|
Reference in New Issue
Block a user