Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
G
glog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
glog
Commits
ebf81ac4
Commit
ebf81ac4
authored
Oct 20, 2017
by
Shinichiro Hamaji
Committed by
GitHub
Oct 20, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #245 from DariuszOstolski/issue211
Fix username lookup in case of missing USER environment variable
parents
cb7b26bd
9d28cac4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
1 deletion
+27
-1
CMakeLists.txt
CMakeLists.txt
+1
-0
configure.ac
configure.ac
+1
-0
utilities.cc
src/utilities.cc
+25
-1
No files found.
CMakeLists.txt
View file @
ebf81ac4
...
@@ -84,6 +84,7 @@ check_include_file (syslog.h HAVE_SYSLOG_H)
...
@@ -84,6 +84,7 @@ check_include_file (syslog.h HAVE_SYSLOG_H)
check_include_file
(
ucontext.h HAVE_UCONTEXT_H
)
check_include_file
(
ucontext.h HAVE_UCONTEXT_H
)
check_include_file
(
unistd.h HAVE_UNISTD_H
)
check_include_file
(
unistd.h HAVE_UNISTD_H
)
check_include_file
(
unwind.h HAVE_UNWIND_H
)
check_include_file
(
unwind.h HAVE_UNWIND_H
)
check_include_file
(
pwd.h HAVE_PWD_H
)
check_include_file_cxx
(
"ext/hash_map"
HAVE_EXT_HASH_MAP
)
check_include_file_cxx
(
"ext/hash_map"
HAVE_EXT_HASH_MAP
)
check_include_file_cxx
(
"ext/hash_set"
HAVE_EXT_HASH_SET
)
check_include_file_cxx
(
"ext/hash_set"
HAVE_EXT_HASH_SET
)
...
...
configure.ac
View file @
ebf81ac4
...
@@ -31,6 +31,7 @@ AC_HEADER_STDC
...
@@ -31,6 +31,7 @@ AC_HEADER_STDC
AC_CHECK_HEADER(stdint.h, ac_cv_have_stdint_h=1, ac_cv_have_stdint_h=0)
AC_CHECK_HEADER(stdint.h, ac_cv_have_stdint_h=1, ac_cv_have_stdint_h=0)
AC_CHECK_HEADER(sys/types.h, ac_cv_have_systypes_h=1, ac_cv_have_systypes_h=0)
AC_CHECK_HEADER(sys/types.h, ac_cv_have_systypes_h=1, ac_cv_have_systypes_h=0)
AC_CHECK_HEADER(inttypes.h, ac_cv_have_inttypes_h=1, ac_cv_have_inttypes_h=0)
AC_CHECK_HEADER(inttypes.h, ac_cv_have_inttypes_h=1, ac_cv_have_inttypes_h=0)
AC_CHECK_HEADER(pwd.h, ac_cv_have_pwd_h=1, ac_cv_have_pwd_h=0)
AC_CHECK_HEADERS(unistd.h, ac_cv_have_unistd_h=1, ac_cv_have_unistd_h=0)
AC_CHECK_HEADERS(unistd.h, ac_cv_have_unistd_h=1, ac_cv_have_unistd_h=0)
AC_CHECK_HEADERS(syscall.h)
AC_CHECK_HEADERS(syscall.h)
AC_CHECK_HEADERS(sys/syscall.h)
AC_CHECK_HEADERS(sys/syscall.h)
...
...
src/utilities.cc
View file @
ebf81ac4
...
@@ -47,6 +47,12 @@
...
@@ -47,6 +47,12 @@
#ifdef HAVE_SYSLOG_H
#ifdef HAVE_SYSLOG_H
# include <syslog.h>
# include <syslog.h>
#endif
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h> // For geteuid.
#endif
#ifdef HAVE_PWD_H
# include <pwd.h>
#endif
#include "base/googleinit.h"
#include "base/googleinit.h"
...
@@ -299,8 +305,26 @@ static void MyUserNameInitializer() {
...
@@ -299,8 +305,26 @@ static void MyUserNameInitializer() {
if
(
user
!=
NULL
)
{
if
(
user
!=
NULL
)
{
g_my_user_name
=
user
;
g_my_user_name
=
user
;
}
else
{
}
else
{
g_my_user_name
=
"invalid-user"
;
#if defined(HAVE_PWD_H) && defined(HAVE_UNISTD_H)
uid_t
uid
;
struct
passwd
pwd
;
struct
passwd
*
result
=
NULL
;
char
buffer
[
1024
]
=
{
'\0'
};
uid
=
geteuid
();
int
pwuid_res
=
getpwuid_r
(
uid
,
&
pwd
,
buffer
,
sizeof
(
buffer
),
&
result
);
if
(
pwuid_res
==
0
)
{
g_my_user_name
=
pwd
.
pw_name
;
}
else
{
snprintf
(
buffer
,
sizeof
(
buffer
),
"uid%d"
,
uid
);
g_my_user_name
=
buffer
;
}
#endif
if
(
g_my_user_name
.
empty
())
{
g_my_user_name
=
"invalid-user"
;
}
}
}
}
}
REGISTER_MODULE_INITIALIZER
(
utilities
,
MyUserNameInitializer
());
REGISTER_MODULE_INITIALIZER
(
utilities
,
MyUserNameInitializer
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment