Jes Sorensen | 86b645e | 2010-06-10 11:42:19 +0200 | [diff] [blame] | 1 | /* |
| 2 | * os-posix.c |
| 3 | * |
| 4 | * Copyright (c) 2003-2008 Fabrice Bellard |
| 5 | * Copyright (c) 2010 Red Hat, Inc. |
| 6 | * |
| 7 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 8 | * of this software and associated documentation files (the "Software"), to deal |
| 9 | * in the Software without restriction, including without limitation the rights |
| 10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 11 | * copies of the Software, and to permit persons to whom the Software is |
| 12 | * furnished to do so, subject to the following conditions: |
| 13 | * |
| 14 | * The above copyright notice and this permission notice shall be included in |
| 15 | * all copies or substantial portions of the Software. |
| 16 | * |
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 20 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 23 | * THE SOFTWARE. |
| 24 | */ |
| 25 | |
Peter Maydell | d38ea87 | 2016-01-29 17:50:05 +0000 | [diff] [blame] | 26 | #include "qemu/osdep.h" |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 27 | #include <sys/wait.h> |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 28 | #include <pwd.h> |
Stefan Hajnoczi | cc4662f | 2011-07-09 10:22:07 +0100 | [diff] [blame] | 29 | #include <grp.h> |
Jes Sorensen | 6170540 | 2010-06-10 11:42:23 +0200 | [diff] [blame] | 30 | #include <libgen.h> |
Jes Sorensen | 86b645e | 2010-06-10 11:42:19 +0200 | [diff] [blame] | 31 | |
| 32 | /* Needed early for CONFIG_BSD etc. */ |
Jes Sorensen | 59a5264 | 2010-06-10 11:42:25 +0200 | [diff] [blame] | 33 | #include "net/slirp.h" |
Paolo Bonzini | fd5fc4b | 2021-05-17 07:34:21 -0400 | [diff] [blame] | 34 | #include "qemu/qemu-options.h" |
Thomas Huth | f853ac6 | 2016-01-13 09:05:32 +0100 | [diff] [blame] | 35 | #include "qemu/error-report.h" |
Dimitris Aragiorgis | 96c33a4 | 2016-02-18 13:38:38 +0200 | [diff] [blame] | 36 | #include "qemu/log.h" |
Markus Armbruster | 54d3123 | 2019-08-12 07:23:59 +0200 | [diff] [blame] | 37 | #include "sysemu/runstate.h" |
Veronia Bahaa | f348b6d | 2016-03-20 19:16:19 +0200 | [diff] [blame] | 38 | #include "qemu/cutils.h" |
Claudio Imbrenda | 80bd81c | 2023-05-05 14:00:51 +0200 | [diff] [blame^] | 39 | #include "qemu/config-file.h" |
| 40 | #include "qemu/option.h" |
Jes Sorensen | 86b645e | 2010-06-10 11:42:19 +0200 | [diff] [blame] | 41 | |
Jes Sorensen | ce798cf | 2010-06-10 11:42:31 +0200 | [diff] [blame] | 42 | #ifdef CONFIG_LINUX |
| 43 | #include <sys/prctl.h> |
Claudio Imbrenda | c891c24 | 2022-08-12 15:34:53 +0200 | [diff] [blame] | 44 | #include "qemu/async-teardown.h" |
Jes Sorensen | 949d31e | 2010-10-26 10:39:22 +0200 | [diff] [blame] | 45 | #endif |
| 46 | |
Ian Jackson | 2c42f1e | 2017-09-15 18:10:44 +0100 | [diff] [blame] | 47 | /* |
| 48 | * Must set all three of these at once. |
| 49 | * Legal combinations are unset by name by uid |
| 50 | */ |
| 51 | static struct passwd *user_pwd; /* NULL non-NULL NULL */ |
| 52 | static uid_t user_uid = (uid_t)-1; /* -1 -1 >=0 */ |
| 53 | static gid_t user_gid = (gid_t)-1; /* -1 -1 >=0 */ |
| 54 | |
Jes Sorensen | 0766379 | 2010-06-10 11:42:27 +0200 | [diff] [blame] | 55 | static const char *chroot_dir; |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 56 | static int daemonize; |
Michael Tokarev | 0be5e43 | 2014-10-30 17:30:51 +0300 | [diff] [blame] | 57 | static int daemon_pipe; |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 58 | |
Jes Sorensen | fe98ac1 | 2010-06-10 11:42:21 +0200 | [diff] [blame] | 59 | void os_setup_early_signal_handling(void) |
Jes Sorensen | 86b645e | 2010-06-10 11:42:19 +0200 | [diff] [blame] | 60 | { |
| 61 | struct sigaction act; |
| 62 | sigfillset(&act.sa_mask); |
| 63 | act.sa_flags = 0; |
| 64 | act.sa_handler = SIG_IGN; |
| 65 | sigaction(SIGPIPE, &act, NULL); |
| 66 | } |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 67 | |
Gleb Natapov | f64622c | 2011-03-15 13:56:04 +0200 | [diff] [blame] | 68 | static void termsig_handler(int signal, siginfo_t *info, void *c) |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 69 | { |
Gleb Natapov | f64622c | 2011-03-15 13:56:04 +0200 | [diff] [blame] | 70 | qemu_system_killed(info->si_signo, info->si_pid); |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 71 | } |
| 72 | |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 73 | void os_setup_signal_handling(void) |
| 74 | { |
| 75 | struct sigaction act; |
| 76 | |
| 77 | memset(&act, 0, sizeof(act)); |
Gleb Natapov | f64622c | 2011-03-15 13:56:04 +0200 | [diff] [blame] | 78 | act.sa_sigaction = termsig_handler; |
| 79 | act.sa_flags = SA_SIGINFO; |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 80 | sigaction(SIGINT, &act, NULL); |
| 81 | sigaction(SIGHUP, &act, NULL); |
| 82 | sigaction(SIGTERM, &act, NULL); |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 83 | } |
Jes Sorensen | 6170540 | 2010-06-10 11:42:23 +0200 | [diff] [blame] | 84 | |
Jes Sorensen | ce798cf | 2010-06-10 11:42:31 +0200 | [diff] [blame] | 85 | void os_set_proc_name(const char *s) |
| 86 | { |
| 87 | #if defined(PR_SET_NAME) |
| 88 | char name[16]; |
| 89 | if (!s) |
| 90 | return; |
Jim Meyering | 3eadc68 | 2012-10-04 13:09:51 +0200 | [diff] [blame] | 91 | pstrcpy(name, sizeof(name), s); |
Jes Sorensen | ce798cf | 2010-06-10 11:42:31 +0200 | [diff] [blame] | 92 | /* Could rewrite argv[0] too, but that's a bit more complicated. |
| 93 | This simple way is enough for `top'. */ |
| 94 | if (prctl(PR_SET_NAME, name)) { |
Ian Jackson | a7aaec1 | 2018-04-16 15:16:23 +0100 | [diff] [blame] | 95 | error_report("unable to change process name: %s", strerror(errno)); |
Jes Sorensen | ce798cf | 2010-06-10 11:42:31 +0200 | [diff] [blame] | 96 | exit(1); |
| 97 | } |
| 98 | #else |
Ian Jackson | 22cd4f4 | 2018-04-16 15:15:51 +0100 | [diff] [blame] | 99 | error_report("Change of process name not supported by your OS"); |
Jes Sorensen | ce798cf | 2010-06-10 11:42:31 +0200 | [diff] [blame] | 100 | exit(1); |
| 101 | #endif |
| 102 | } |
| 103 | |
Ian Jackson | 2c42f1e | 2017-09-15 18:10:44 +0100 | [diff] [blame] | 104 | |
| 105 | static bool os_parse_runas_uid_gid(const char *optarg) |
| 106 | { |
| 107 | unsigned long lv; |
| 108 | const char *ep; |
| 109 | uid_t got_uid; |
| 110 | gid_t got_gid; |
| 111 | int rc; |
| 112 | |
| 113 | rc = qemu_strtoul(optarg, &ep, 0, &lv); |
| 114 | got_uid = lv; /* overflow here is ID in C99 */ |
| 115 | if (rc || *ep != ':' || got_uid != lv || got_uid == (uid_t)-1) { |
| 116 | return false; |
| 117 | } |
| 118 | |
| 119 | rc = qemu_strtoul(ep + 1, 0, 0, &lv); |
| 120 | got_gid = lv; /* overflow here is ID in C99 */ |
| 121 | if (rc || got_gid != lv || got_gid == (gid_t)-1) { |
| 122 | return false; |
| 123 | } |
| 124 | |
| 125 | user_pwd = NULL; |
| 126 | user_uid = got_uid; |
| 127 | user_gid = got_gid; |
| 128 | return true; |
| 129 | } |
| 130 | |
Jes Sorensen | 59a5264 | 2010-06-10 11:42:25 +0200 | [diff] [blame] | 131 | /* |
| 132 | * Parse OS specific command line options. |
| 133 | * return 0 if option handled, -1 otherwise |
| 134 | */ |
Thomas Huth | 1217d6ca | 2018-05-04 19:01:07 +0200 | [diff] [blame] | 135 | int os_parse_cmd_args(int index, const char *optarg) |
Jes Sorensen | 59a5264 | 2010-06-10 11:42:25 +0200 | [diff] [blame] | 136 | { |
| 137 | switch (index) { |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 138 | case QEMU_OPTION_runas: |
| 139 | user_pwd = getpwnam(optarg); |
Ian Jackson | 2c42f1e | 2017-09-15 18:10:44 +0100 | [diff] [blame] | 140 | if (user_pwd) { |
| 141 | user_uid = -1; |
| 142 | user_gid = -1; |
| 143 | } else if (!os_parse_runas_uid_gid(optarg)) { |
| 144 | error_report("User \"%s\" doesn't exist" |
| 145 | " (and is not <uid>:<gid>)", |
| 146 | optarg); |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 147 | exit(1); |
| 148 | } |
| 149 | break; |
Jes Sorensen | 0766379 | 2010-06-10 11:42:27 +0200 | [diff] [blame] | 150 | case QEMU_OPTION_chroot: |
| 151 | chroot_dir = optarg; |
| 152 | break; |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 153 | case QEMU_OPTION_daemonize: |
| 154 | daemonize = 1; |
| 155 | break; |
Claudio Imbrenda | c891c24 | 2022-08-12 15:34:53 +0200 | [diff] [blame] | 156 | #if defined(CONFIG_LINUX) |
Claudio Imbrenda | 80bd81c | 2023-05-05 14:00:51 +0200 | [diff] [blame^] | 157 | /* deprecated */ |
Claudio Imbrenda | c891c24 | 2022-08-12 15:34:53 +0200 | [diff] [blame] | 158 | case QEMU_OPTION_asyncteardown: |
| 159 | init_async_teardown(); |
| 160 | break; |
Claudio Imbrenda | 80bd81c | 2023-05-05 14:00:51 +0200 | [diff] [blame^] | 161 | case QEMU_OPTION_run_with: { |
| 162 | QemuOpts *opts = qemu_opts_parse_noisily(qemu_find_opts("run-with"), |
| 163 | optarg, false); |
| 164 | if (!opts) { |
| 165 | exit(1); |
| 166 | } |
| 167 | if (qemu_opt_get_bool(opts, "async-teardown", false)) { |
| 168 | init_async_teardown(); |
| 169 | } |
| 170 | break; |
| 171 | } |
Claudio Imbrenda | c891c24 | 2022-08-12 15:34:53 +0200 | [diff] [blame] | 172 | #endif |
Thomas Huth | 1217d6ca | 2018-05-04 19:01:07 +0200 | [diff] [blame] | 173 | default: |
| 174 | return -1; |
Jes Sorensen | 59a5264 | 2010-06-10 11:42:25 +0200 | [diff] [blame] | 175 | } |
Thomas Huth | 1217d6ca | 2018-05-04 19:01:07 +0200 | [diff] [blame] | 176 | |
| 177 | return 0; |
Jes Sorensen | 59a5264 | 2010-06-10 11:42:25 +0200 | [diff] [blame] | 178 | } |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 179 | |
Jes Sorensen | e06eb60 | 2010-06-10 11:42:29 +0200 | [diff] [blame] | 180 | static void change_process_uid(void) |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 181 | { |
Ian Jackson | 2c42f1e | 2017-09-15 18:10:44 +0100 | [diff] [blame] | 182 | assert((user_uid == (uid_t)-1) || user_pwd == NULL); |
| 183 | assert((user_uid == (uid_t)-1) == |
| 184 | (user_gid == (gid_t)-1)); |
| 185 | |
| 186 | if (user_pwd || user_uid != (uid_t)-1) { |
| 187 | gid_t intended_gid = user_pwd ? user_pwd->pw_gid : user_gid; |
| 188 | uid_t intended_uid = user_pwd ? user_pwd->pw_uid : user_uid; |
| 189 | if (setgid(intended_gid) < 0) { |
| 190 | error_report("Failed to setgid(%d)", intended_gid); |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 191 | exit(1); |
| 192 | } |
Ian Jackson | 2c42f1e | 2017-09-15 18:10:44 +0100 | [diff] [blame] | 193 | if (user_pwd) { |
| 194 | if (initgroups(user_pwd->pw_name, user_pwd->pw_gid) < 0) { |
| 195 | error_report("Failed to initgroups(\"%s\", %d)", |
| 196 | user_pwd->pw_name, user_pwd->pw_gid); |
| 197 | exit(1); |
| 198 | } |
| 199 | } else { |
| 200 | if (setgroups(1, &user_gid) < 0) { |
| 201 | error_report("Failed to setgroups(1, [%d])", |
| 202 | user_gid); |
| 203 | exit(1); |
| 204 | } |
Stefan Hajnoczi | cc4662f | 2011-07-09 10:22:07 +0100 | [diff] [blame] | 205 | } |
Ian Jackson | 2c42f1e | 2017-09-15 18:10:44 +0100 | [diff] [blame] | 206 | if (setuid(intended_uid) < 0) { |
| 207 | error_report("Failed to setuid(%d)", intended_uid); |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 208 | exit(1); |
| 209 | } |
| 210 | if (setuid(0) != -1) { |
Ian Jackson | f0a2171 | 2018-04-16 15:08:03 +0100 | [diff] [blame] | 211 | error_report("Dropping privileges failed"); |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 212 | exit(1); |
| 213 | } |
| 214 | } |
| 215 | } |
Jes Sorensen | 0766379 | 2010-06-10 11:42:27 +0200 | [diff] [blame] | 216 | |
Jes Sorensen | e06eb60 | 2010-06-10 11:42:29 +0200 | [diff] [blame] | 217 | static void change_root(void) |
Jes Sorensen | 0766379 | 2010-06-10 11:42:27 +0200 | [diff] [blame] | 218 | { |
| 219 | if (chroot_dir) { |
| 220 | if (chroot(chroot_dir) < 0) { |
Ian Jackson | 22cd4f4 | 2018-04-16 15:15:51 +0100 | [diff] [blame] | 221 | error_report("chroot failed"); |
Jes Sorensen | 0766379 | 2010-06-10 11:42:27 +0200 | [diff] [blame] | 222 | exit(1); |
| 223 | } |
| 224 | if (chdir("/")) { |
Ian Jackson | a7aaec1 | 2018-04-16 15:16:23 +0100 | [diff] [blame] | 225 | error_report("not able to chdir to /: %s", strerror(errno)); |
Jes Sorensen | 0766379 | 2010-06-10 11:42:27 +0200 | [diff] [blame] | 226 | exit(1); |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | } |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 231 | |
| 232 | void os_daemonize(void) |
| 233 | { |
| 234 | if (daemonize) { |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 235 | pid_t pid; |
Michael Tokarev | 0be5e43 | 2014-10-30 17:30:51 +0300 | [diff] [blame] | 236 | int fds[2]; |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 237 | |
Marc-André Lureau | 3338a41 | 2022-04-22 14:47:59 +0400 | [diff] [blame] | 238 | if (!g_unix_open_pipe(fds, FD_CLOEXEC, NULL)) { |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 239 | exit(1); |
| 240 | } |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 241 | |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 242 | pid = fork(); |
| 243 | if (pid > 0) { |
| 244 | uint8_t status; |
| 245 | ssize_t len; |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 246 | |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 247 | close(fds[1]); |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 248 | |
Michael Tokarev | ccea25f | 2014-10-30 17:37:16 +0300 | [diff] [blame] | 249 | do { |
| 250 | len = read(fds[0], &status, 1); |
| 251 | } while (len < 0 && errno == EINTR); |
Michael Tokarev | fee78fd | 2014-10-30 17:40:48 +0300 | [diff] [blame] | 252 | |
| 253 | /* only exit successfully if our child actually wrote |
| 254 | * a one-byte zero to our pipe, upon successful init */ |
| 255 | exit(len == 1 && status == 0 ? 0 : 1); |
| 256 | |
| 257 | } else if (pid < 0) { |
| 258 | exit(1); |
| 259 | } |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 260 | |
| 261 | close(fds[0]); |
Michael Tokarev | 0be5e43 | 2014-10-30 17:30:51 +0300 | [diff] [blame] | 262 | daemon_pipe = fds[1]; |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 263 | |
| 264 | setsid(); |
| 265 | |
| 266 | pid = fork(); |
| 267 | if (pid > 0) { |
| 268 | exit(0); |
| 269 | } else if (pid < 0) { |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 270 | exit(1); |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 271 | } |
| 272 | umask(027); |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 273 | |
| 274 | signal(SIGTSTP, SIG_IGN); |
| 275 | signal(SIGTTOU, SIG_IGN); |
| 276 | signal(SIGTTIN, SIG_IGN); |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | void os_setup_post(void) |
| 281 | { |
| 282 | int fd = 0; |
| 283 | |
| 284 | if (daemonize) { |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 285 | if (chdir("/")) { |
Ian Jackson | a7aaec1 | 2018-04-16 15:16:23 +0100 | [diff] [blame] | 286 | error_report("not able to chdir to /: %s", strerror(errno)); |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 287 | exit(1); |
| 288 | } |
Nikita Ivanov | 8b6aa69 | 2022-10-23 12:04:21 +0300 | [diff] [blame] | 289 | fd = RETRY_ON_EINTR(qemu_open_old("/dev/null", O_RDWR)); |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 290 | if (fd == -1) { |
| 291 | exit(1); |
| 292 | } |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 293 | } |
| 294 | |
Jes Sorensen | e06eb60 | 2010-06-10 11:42:29 +0200 | [diff] [blame] | 295 | change_root(); |
| 296 | change_process_uid(); |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 297 | |
| 298 | if (daemonize) { |
Michael Tokarev | 25cec2b | 2014-10-30 17:47:46 +0300 | [diff] [blame] | 299 | uint8_t status = 0; |
| 300 | ssize_t len; |
| 301 | |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 302 | dup2(fd, 0); |
| 303 | dup2(fd, 1); |
Dimitris Aragiorgis | 96c33a4 | 2016-02-18 13:38:38 +0200 | [diff] [blame] | 304 | /* In case -D is given do not redirect stderr to /dev/null */ |
Richard Henderson | 229ef2e | 2022-04-17 11:29:45 -0700 | [diff] [blame] | 305 | if (!qemu_log_enabled()) { |
Dimitris Aragiorgis | 96c33a4 | 2016-02-18 13:38:38 +0200 | [diff] [blame] | 306 | dup2(fd, 2); |
| 307 | } |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 308 | |
| 309 | close(fd); |
Michael Tokarev | 25cec2b | 2014-10-30 17:47:46 +0300 | [diff] [blame] | 310 | |
| 311 | do { |
| 312 | len = write(daemon_pipe, &status, 1); |
| 313 | } while (len < 0 && errno == EINTR); |
| 314 | if (len != 1) { |
| 315 | exit(1); |
| 316 | } |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 317 | } |
| 318 | } |
| 319 | |
Jes Sorensen | 9156d76 | 2010-06-10 11:42:30 +0200 | [diff] [blame] | 320 | void os_set_line_buffering(void) |
| 321 | { |
| 322 | setvbuf(stdout, NULL, _IOLBF, 0); |
| 323 | } |
Jes Sorensen | 949d31e | 2010-10-26 10:39:22 +0200 | [diff] [blame] | 324 | |
Hitoshi Mitake | 995ee2b | 2012-09-15 01:15:41 +0900 | [diff] [blame] | 325 | bool is_daemonized(void) |
| 326 | { |
| 327 | return daemonize; |
| 328 | } |
Satoru Moriya | 888a6bc | 2013-04-19 16:42:06 +0200 | [diff] [blame] | 329 | |
Hanna Reitz | f22ac47 | 2022-03-03 17:48:11 +0100 | [diff] [blame] | 330 | int os_set_daemonize(bool d) |
| 331 | { |
| 332 | daemonize = d; |
| 333 | return 0; |
| 334 | } |
| 335 | |
Satoru Moriya | 888a6bc | 2013-04-19 16:42:06 +0200 | [diff] [blame] | 336 | int os_mlock(void) |
| 337 | { |
David CARLIER | 195588c | 2020-07-13 14:36:09 +0100 | [diff] [blame] | 338 | #ifdef HAVE_MLOCKALL |
Satoru Moriya | 888a6bc | 2013-04-19 16:42:06 +0200 | [diff] [blame] | 339 | int ret = 0; |
| 340 | |
| 341 | ret = mlockall(MCL_CURRENT | MCL_FUTURE); |
| 342 | if (ret < 0) { |
Ian Jackson | a7aaec1 | 2018-04-16 15:16:23 +0100 | [diff] [blame] | 343 | error_report("mlockall: %s", strerror(errno)); |
Satoru Moriya | 888a6bc | 2013-04-19 16:42:06 +0200 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | return ret; |
David CARLIER | 195588c | 2020-07-13 14:36:09 +0100 | [diff] [blame] | 347 | #else |
| 348 | return -ENOSYS; |
| 349 | #endif |
Satoru Moriya | 888a6bc | 2013-04-19 16:42:06 +0200 | [diff] [blame] | 350 | } |