-
Notifications
You must be signed in to change notification settings - Fork 6.1k
8280357: user.home = "?" when running with systemd DynamicUser=true #7534
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Fall back to the value of $HOME if getpwent.user_home is null or empty.
null or less than 2 characters long.
👋 Welcome back rriggs! A progress list of the required criteria for merging this PR into |
@RogerRiggs The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
Webrevs
|
/csr |
@RogerRiggs this pull request will not be integrated until the CSR request JDK-8282102 for issue JDK-8280357 has been approved. |
There is an argument that the JDK should read $HOME first but changing it after 20+ years could be risky, probably difficult to get a list of configurations/environments where the two might yield different locations. So I think the approach is reasonable. Even if "/" were a configured as the home directory in the user entry then $HOME would need to agree so that I think the <2 check is okay too. |
I'm uncertain whether the fallback should only be done on Linux to cover the |
I think what you have is okay because it is only used when getpwent doesn't return something useful. It would add complexity if you tried to limit it systemd or containers. I can't think of scenarios on macOS that might trigger the fallback, but it's not a bad fallback to have there too. |
The CSR has been approved, please review the PR and the Release note: https://bugs.openjdk.java.net/browse/JDK-8282101 |
char* user_home = getenv("HOME"); | ||
if ((user_home != NULL) && (user_home[0] != '\0')) { | ||
sprops.user_home = user_home; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any possibility where user.home
is not initialized, and later causes SEGV or NPE? I just wonder the previous version always init to ?
which is odd, but guaranteed not to cause those errors.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't imagine it not being set. But it is easier to track down the source of a "?" than the source of null.
I thought of changing from "?" to "UNKNOWN" or "NOHOMEDIR" or something but it seems quite remote
after adding the fallback to $HOME.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another option is an empty string ""
, but I don't have a strong preference if it won't throw any errors.
char* user_home = getenv("HOME"); | ||
if ((user_home != NULL) && (user_home[0] != '\0')) { | ||
sprops.user_home = user_home; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another option is an empty string ""
, but I don't have a strong preference if it won't throw any errors.
@RogerRiggs This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 76 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
/integrate |
Going to push as commit bf19fc6.
Your commit was automatically rebased without conflicts. |
@RogerRiggs Pushed as commit bf19fc6. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
In some Linux configurations, the Linux home directory provided by getpwent is not usable.
The value of the system property
user.home
should fallback to the value of $HOMEif getpwent.user_home is null or less that 2 characters long. "/" is not a valid home directory name.
If $HOME is undefined or empty, the value of the getpwent.user_home is retained.
There are more details in the Jira issue: https://bugs.openjdk.java.net/browse/JDK-8280357
The fix has been tested manually on Ubuntu 20.0.4 using the suggested systemd command line and variations.
Progress
Issues
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/7534/head:pull/7534
$ git checkout pull/7534
Update a local copy of the PR:
$ git checkout pull/7534
$ git pull https://git.openjdk.java.net/jdk pull/7534/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 7534
View PR using the GUI difftool:
$ git pr show -t 7534
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/7534.diff