mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 12:35:17 +00:00
util: move code for getting listen FDs into systemd module
The virGetListenFDs method no longer needs to be called directly, so it can be a static function internal to the systemd code. Reviewed-by: Michal Privoznik <mprivozn@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
7ac64b5c86
commit
2879315d39
@ -3231,7 +3231,6 @@ virGetGroupList;
|
||||
virGetGroupName;
|
||||
virGetHostname;
|
||||
virGetHostnameQuiet;
|
||||
virGetListenFDs;
|
||||
virGetSelfLastChanged;
|
||||
virGetSystemPageSize;
|
||||
virGetSystemPageSizeKB;
|
||||
|
@ -756,6 +756,78 @@ virSystemdActivationInitFromMap(virSystemdActivationPtr act,
|
||||
return -1;
|
||||
}
|
||||
|
||||
#ifndef WIN32
|
||||
|
||||
/**
|
||||
* virSystemdGetListenFDs:
|
||||
*
|
||||
* Parse LISTEN_PID and LISTEN_FDS passed from caller.
|
||||
*
|
||||
* Returns number of passed FDs.
|
||||
*/
|
||||
static unsigned int
|
||||
virSystemdGetListenFDs(void)
|
||||
{
|
||||
const char *pidstr;
|
||||
const char *fdstr;
|
||||
size_t i = 0;
|
||||
unsigned long long procid;
|
||||
unsigned int nfds;
|
||||
|
||||
VIR_DEBUG("Setting up networking from caller");
|
||||
|
||||
if (!(pidstr = virGetEnvAllowSUID("LISTEN_PID"))) {
|
||||
VIR_DEBUG("No LISTEN_PID from caller");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (virStrToLong_ull(pidstr, NULL, 10, &procid) < 0) {
|
||||
VIR_DEBUG("Malformed LISTEN_PID from caller %s", pidstr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if ((pid_t)procid != getpid()) {
|
||||
VIR_DEBUG("LISTEN_PID %s is not for us %lld",
|
||||
pidstr, (long long) getpid());
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!(fdstr = virGetEnvAllowSUID("LISTEN_FDS"))) {
|
||||
VIR_DEBUG("No LISTEN_FDS from caller");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (virStrToLong_ui(fdstr, NULL, 10, &nfds) < 0) {
|
||||
VIR_DEBUG("Malformed LISTEN_FDS from caller %s", fdstr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsetenv("LISTEN_PID");
|
||||
unsetenv("LISTEN_FDS");
|
||||
|
||||
VIR_DEBUG("Got %u file descriptors", nfds);
|
||||
|
||||
for (i = 0; i < nfds; i++) {
|
||||
int fd = STDERR_FILENO + i + 1;
|
||||
|
||||
VIR_DEBUG("Disabling inheritance of passed FD %d", fd);
|
||||
|
||||
if (virSetInherit(fd, false) < 0)
|
||||
VIR_WARN("Couldn't disable inheritance of passed FD %d", fd);
|
||||
}
|
||||
|
||||
return nfds;
|
||||
}
|
||||
|
||||
#else /* WIN32 */
|
||||
|
||||
static unsigned int
|
||||
virSystemdGetListenFDs(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif /* WIN32 */
|
||||
|
||||
static virSystemdActivationPtr
|
||||
virSystemdActivationNew(virSystemdActivationMap *map,
|
||||
@ -812,7 +884,7 @@ virSystemdGetActivation(virSystemdActivationMap *map,
|
||||
{
|
||||
int nfds = 0;
|
||||
|
||||
if ((nfds = virGetListenFDs()) < 0)
|
||||
if ((nfds = virSystemdGetListenFDs()) < 0)
|
||||
return -1;
|
||||
|
||||
if (nfds == 0) {
|
||||
|
@ -1784,78 +1784,6 @@ void virUpdateSelfLastChanged(const char *path)
|
||||
}
|
||||
}
|
||||
|
||||
#ifndef WIN32
|
||||
|
||||
/**
|
||||
* virGetListenFDs:
|
||||
*
|
||||
* Parse LISTEN_PID and LISTEN_FDS passed from caller.
|
||||
*
|
||||
* Returns number of passed FDs.
|
||||
*/
|
||||
unsigned int
|
||||
virGetListenFDs(void)
|
||||
{
|
||||
const char *pidstr;
|
||||
const char *fdstr;
|
||||
size_t i = 0;
|
||||
unsigned long long procid;
|
||||
unsigned int nfds;
|
||||
|
||||
VIR_DEBUG("Setting up networking from caller");
|
||||
|
||||
if (!(pidstr = virGetEnvAllowSUID("LISTEN_PID"))) {
|
||||
VIR_DEBUG("No LISTEN_PID from caller");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (virStrToLong_ull(pidstr, NULL, 10, &procid) < 0) {
|
||||
VIR_DEBUG("Malformed LISTEN_PID from caller %s", pidstr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if ((pid_t)procid != getpid()) {
|
||||
VIR_DEBUG("LISTEN_PID %s is not for us %lld",
|
||||
pidstr, (long long) getpid());
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!(fdstr = virGetEnvAllowSUID("LISTEN_FDS"))) {
|
||||
VIR_DEBUG("No LISTEN_FDS from caller");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (virStrToLong_ui(fdstr, NULL, 10, &nfds) < 0) {
|
||||
VIR_DEBUG("Malformed LISTEN_FDS from caller %s", fdstr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsetenv("LISTEN_PID");
|
||||
unsetenv("LISTEN_FDS");
|
||||
|
||||
VIR_DEBUG("Got %u file descriptors", nfds);
|
||||
|
||||
for (i = 0; i < nfds; i++) {
|
||||
int fd = STDERR_FILENO + i + 1;
|
||||
|
||||
VIR_DEBUG("Disabling inheritance of passed FD %d", fd);
|
||||
|
||||
if (virSetInherit(fd, false) < 0)
|
||||
VIR_WARN("Couldn't disable inheritance of passed FD %d", fd);
|
||||
}
|
||||
|
||||
return nfds;
|
||||
}
|
||||
|
||||
#else /* WIN32 */
|
||||
|
||||
unsigned int
|
||||
virGetListenFDs(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif /* WIN32 */
|
||||
|
||||
#ifdef HAVE_SYS_UN_H
|
||||
char *virGetUNIXSocketPath(int fd)
|
||||
|
@ -149,7 +149,6 @@ bool virIsSUID(void);
|
||||
time_t virGetSelfLastChanged(void);
|
||||
void virUpdateSelfLastChanged(const char *path);
|
||||
|
||||
unsigned int virGetListenFDs(void);
|
||||
char *virGetUNIXSocketPath(int fd);
|
||||
|
||||
long virGetSystemPageSize(void) ATTRIBUTE_NOINLINE;
|
||||
|
Loading…
x
Reference in New Issue
Block a user