-
Notifications
You must be signed in to change notification settings - Fork 2k
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
raw_exec windows: add support for setting the task user #25496
Conversation
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.
Hi @x-dvr! The overall approach you've got here looks good. I've left some comments about some of the details. Something that I'd really like to see with this PR is some kind of test that exercises the behavior. Is there a Windows user in the typical CI environments GHA has that would be appropriate to use here?
Also, can you run make cl
to add a changelog entry for this PR? It would also be great if you could update the raw_exec docs and task.user
docs to match the change you're making here? You can find those in website/content/docs
if cmd.SysProcAttr == nil { | ||
cmd.SysProcAttr = &syscall.SysProcAttr{} | ||
} | ||
cmd.SysProcAttr.Token = *token |
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.
We don't have a lot of control or visibility into what's happening in the LogonUserW
call. Is it ever possible that this value could be nil without returning an error? There's no guarantees of that in the API docs as far as I can tell.
Also, do you know if Go will close this handle when the object is garbage collected? Do we need to clean up this resource up manually?
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.
When LogonUserW
is not able to create token is should return 0 and this case is handled. So I would assume if function didn't return 0, then token value should be populated with correct handle.
You are right token needs to be manually closed. I will add clean up code for the token.
Hello @tgross! Thank you for the feedback. I have integrated it and also updated documentation. |
As a side note, I did manual tests on my windows machine, with Nomad built from my branch.
Contents of nomad.hcl:
So I executed the following job file:
When this job is run without user specified in the logs one can find:
When the user is set to network service:
|
@tgross What should be my next steps? |
This is great. I think you're right about the testing on GHA and that's likely not practical. We might be able to get a test case in our end-to-end infra but there's currently an issue with our nightly runner on Windows, so that will have to wait. Give me some time to re-review and we'll look at getting this merged. |
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.
Thank you for updating the docs! I left some suggestions so the content conforms to your docs style guide.
Co-authored-by: Aimee Ukasick <aimee.ukasick@hashicorp.com>
Co-authored-by: Aimee Ukasick <aimee.ukasick@hashicorp.com>
Thank you for the feedback @aimeeu. I've integrated your proposed changes and updated my branch with latest changes from upstream |
Description
This PR adds support to set user under which task will be executed for raw_exec driver on Windows platform.
It will work for the case when nomad is being run as windows service, and the user for task is set to one of service accounts that do not require password. This is particularly important in environments with stricter security policies, where is is required to have as little workload do be run under system service account.
The following job file will allow to run task under more restrictive
NT AUTHORITY\NetworkService
account:Links
Partially closes: #9424
Contributor Checklist
changelog entry using the
make cl
command.ensure regressions will be caught.
and job configuration, please update the Nomad website documentation to reflect this. Refer to
the website README for docs guidelines. Please also consider whether the
change requires notes within the upgrade guide.
Reviewer Checklist
backporting document.
in the majority of situations. The main exceptions are long-lived feature branches or merges where
history should be preserved.
within the public repository.