Skip to content

Commit bf19fc6

Browse files
author
Roger Riggs
committedFeb 24, 2022
8280357: user.home = "?" when running with systemd DynamicUser=true
Reviewed-by: naoto, alanb
1 parent b6843a1 commit bf19fc6

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed
 

‎src/java.base/unix/native/libjava/java_props_md.c

+10-2
Original file line numberDiff line numberDiff line change
@@ -488,8 +488,16 @@ GetJavaProperties(JNIEnv *env)
488488
#else
489489
sprops.user_home = pwent ? strdup(pwent->pw_dir) : NULL;
490490
#endif
491-
if (sprops.user_home == NULL) {
492-
sprops.user_home = "?";
491+
if (sprops.user_home == NULL || sprops.user_home[0] == '\0' ||
492+
sprops.user_home[1] == '\0') {
493+
// If the OS supplied home directory is not defined or less than two characters long
494+
// $HOME is the backup source for the home directory, if defined
495+
char* user_home = getenv("HOME");
496+
if ((user_home != NULL) && (user_home[0] != '\0')) {
497+
sprops.user_home = user_home;
498+
} else {
499+
sprops.user_home = "?";
500+
}
493501
}
494502
}
495503

0 commit comments

Comments
 (0)
Please sign in to comment.