feat: add support for systemd listener activation sockets #205
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
To support starting a network service on demand and to support a "least privilege-approach" with regards to the permission a network service process needs to have, systemd supports opening a network socket on behalf of the service and passing it as an open file descriptor.
The service gets notified about open file descriptors for this purpose as well as metadata such as named listeners via environment variables.
This pull request adds support for prefixing the listen address passed with --address with
"sd-listen-fd:"
to access these file descriptors, taking either a listener name passed using theLISTEN_FDNAMES
environment variable orLISTEN_FD_$n
for unnamed file descriptiors wheren
is the id of the descriptor starting at 3 (LISTEN_FD_3).See sd_listen_fds(3)