target/arm: Set VFP-related MVFR0 fields for arm926 and arm1026
[qemu/ar7.git] / util / systemd.c
blobd22e86c707685ba47610dddb624f61c5e88cc7ef
1 /*
2 * systemd socket activation support
4 * Copyright 2017 Red Hat, Inc. and/or its affiliates
6 * Authors:
7 * Richard W.M. Jones <rjones@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "qemu/systemd.h"
15 #include "qemu/cutils.h"
16 #include "qemu/error-report.h"
18 #ifndef _WIN32
19 unsigned int check_socket_activation(void)
21 const char *s;
22 unsigned long pid;
23 unsigned long nr_fds;
24 unsigned int i;
25 int fd;
26 int err;
28 s = getenv("LISTEN_PID");
29 if (s == NULL) {
30 return 0;
32 err = qemu_strtoul(s, NULL, 10, &pid);
33 if (err) {
34 return 0;
36 if (pid != getpid()) {
37 return 0;
40 s = getenv("LISTEN_FDS");
41 if (s == NULL) {
42 return 0;
44 err = qemu_strtoul(s, NULL, 10, &nr_fds);
45 if (err) {
46 return 0;
48 assert(nr_fds <= UINT_MAX);
50 /* So these are not passed to any child processes we might start. */
51 unsetenv("LISTEN_FDS");
52 unsetenv("LISTEN_PID");
54 /* So the file descriptors don't leak into child processes. */
55 for (i = 0; i < nr_fds; ++i) {
56 fd = FIRST_SOCKET_ACTIVATION_FD + i;
57 if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1) {
58 /* If we cannot set FD_CLOEXEC then it probably means the file
59 * descriptor is invalid, so socket activation has gone wrong
60 * and we should exit.
62 error_report("Socket activation failed: "
63 "invalid file descriptor fd = %d: %m",
64 fd);
65 exit(EXIT_FAILURE);
69 return (unsigned int) nr_fds;
72 #else /* !_WIN32 */
73 unsigned int check_socket_activation(void)
75 return 0;
77 #endif