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" |
Fiona Ebner | 03e471c | 2023-12-18 11:13:40 +0100 | [diff] [blame] | 27 | #include <sys/resource.h> |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 28 | #include <sys/wait.h> |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 29 | #include <pwd.h> |
Stefan Hajnoczi | cc4662f | 2011-07-09 10:22:07 +0100 | [diff] [blame] | 30 | #include <grp.h> |
Jes Sorensen | 6170540 | 2010-06-10 11:42:23 +0200 | [diff] [blame] | 31 | #include <libgen.h> |
Jes Sorensen | 86b645e | 2010-06-10 11:42:19 +0200 | [diff] [blame] | 32 | |
Thomas Huth | f853ac6 | 2016-01-13 09:05:32 +0100 | [diff] [blame] | 33 | #include "qemu/error-report.h" |
Dimitris Aragiorgis | 96c33a4 | 2016-02-18 13:38:38 +0200 | [diff] [blame] | 34 | #include "qemu/log.h" |
Philippe Mathieu-Daudé | 32cad1f | 2024-12-03 15:20:13 +0100 | [diff] [blame] | 35 | #include "system/runstate.h" |
Veronia Bahaa | f348b6d | 2016-03-20 19:16:19 +0200 | [diff] [blame] | 36 | #include "qemu/cutils.h" |
Jes Sorensen | 86b645e | 2010-06-10 11:42:19 +0200 | [diff] [blame] | 37 | |
Jes Sorensen | ce798cf | 2010-06-10 11:42:31 +0200 | [diff] [blame] | 38 | #ifdef CONFIG_LINUX |
| 39 | #include <sys/prctl.h> |
Jes Sorensen | 949d31e | 2010-10-26 10:39:22 +0200 | [diff] [blame] | 40 | #endif |
| 41 | |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 42 | |
Jes Sorensen | fe98ac1 | 2010-06-10 11:42:21 +0200 | [diff] [blame] | 43 | void os_setup_early_signal_handling(void) |
Jes Sorensen | 86b645e | 2010-06-10 11:42:19 +0200 | [diff] [blame] | 44 | { |
| 45 | struct sigaction act; |
| 46 | sigfillset(&act.sa_mask); |
| 47 | act.sa_flags = 0; |
| 48 | act.sa_handler = SIG_IGN; |
| 49 | sigaction(SIGPIPE, &act, NULL); |
| 50 | } |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 51 | |
Gleb Natapov | f64622c | 2011-03-15 13:56:04 +0200 | [diff] [blame] | 52 | static void termsig_handler(int signal, siginfo_t *info, void *c) |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 53 | { |
Gleb Natapov | f64622c | 2011-03-15 13:56:04 +0200 | [diff] [blame] | 54 | qemu_system_killed(info->si_signo, info->si_pid); |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 55 | } |
| 56 | |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 57 | void os_setup_signal_handling(void) |
| 58 | { |
| 59 | struct sigaction act; |
| 60 | |
| 61 | memset(&act, 0, sizeof(act)); |
Gleb Natapov | f64622c | 2011-03-15 13:56:04 +0200 | [diff] [blame] | 62 | act.sa_sigaction = termsig_handler; |
| 63 | act.sa_flags = SA_SIGINFO; |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 64 | sigaction(SIGINT, &act, NULL); |
| 65 | sigaction(SIGHUP, &act, NULL); |
| 66 | sigaction(SIGTERM, &act, NULL); |
Jes Sorensen | 8d963e6 | 2010-06-10 11:42:22 +0200 | [diff] [blame] | 67 | } |
Jes Sorensen | 6170540 | 2010-06-10 11:42:23 +0200 | [diff] [blame] | 68 | |
Jes Sorensen | ce798cf | 2010-06-10 11:42:31 +0200 | [diff] [blame] | 69 | void os_set_proc_name(const char *s) |
| 70 | { |
| 71 | #if defined(PR_SET_NAME) |
| 72 | char name[16]; |
| 73 | if (!s) |
| 74 | return; |
Jim Meyering | 3eadc68 | 2012-10-04 13:09:51 +0200 | [diff] [blame] | 75 | pstrcpy(name, sizeof(name), s); |
Jes Sorensen | ce798cf | 2010-06-10 11:42:31 +0200 | [diff] [blame] | 76 | /* Could rewrite argv[0] too, but that's a bit more complicated. |
| 77 | This simple way is enough for `top'. */ |
| 78 | if (prctl(PR_SET_NAME, name)) { |
Ian Jackson | a7aaec1 | 2018-04-16 15:16:23 +0100 | [diff] [blame] | 79 | error_report("unable to change process name: %s", strerror(errno)); |
Jes Sorensen | ce798cf | 2010-06-10 11:42:31 +0200 | [diff] [blame] | 80 | exit(1); |
| 81 | } |
| 82 | #else |
Ian Jackson | 22cd4f4 | 2018-04-16 15:15:51 +0100 | [diff] [blame] | 83 | error_report("Change of process name not supported by your OS"); |
Jes Sorensen | ce798cf | 2010-06-10 11:42:31 +0200 | [diff] [blame] | 84 | exit(1); |
| 85 | #endif |
| 86 | } |
| 87 | |
Michael Tokarev | 433aed5 | 2023-09-01 13:12:59 +0300 | [diff] [blame] | 88 | |
| 89 | /* |
| 90 | * Must set all three of these at once. |
| 91 | * Legal combinations are unset by name by uid |
| 92 | */ |
| 93 | static struct passwd *user_pwd; /* NULL non-NULL NULL */ |
| 94 | static uid_t user_uid = (uid_t)-1; /* -1 -1 >=0 */ |
| 95 | static gid_t user_gid = (gid_t)-1; /* -1 -1 >=0 */ |
| 96 | |
Michael Tokarev | 22d0251 | 2023-09-01 13:12:56 +0300 | [diff] [blame] | 97 | /* |
Philippe Mathieu-Daudé | d280337 | 2023-10-04 14:00:07 +0200 | [diff] [blame] | 98 | * Prepare to change user ID. user_id can be one of 3 forms: |
Michael Tokarev | 22d0251 | 2023-09-01 13:12:56 +0300 | [diff] [blame] | 99 | * - a username, in which case user ID will be changed to its uid, |
| 100 | * with primary and supplementary groups set up too; |
| 101 | * - a numeric uid, in which case only the uid will be set; |
| 102 | * - a pair of numeric uid:gid. |
| 103 | */ |
Philippe Mathieu-Daudé | d280337 | 2023-10-04 14:00:07 +0200 | [diff] [blame] | 104 | bool os_set_runas(const char *user_id) |
Ian Jackson | 2c42f1e | 2017-09-15 18:10:44 +0100 | [diff] [blame] | 105 | { |
| 106 | unsigned long lv; |
| 107 | const char *ep; |
| 108 | uid_t got_uid; |
| 109 | gid_t got_gid; |
| 110 | int rc; |
| 111 | |
Philippe Mathieu-Daudé | d280337 | 2023-10-04 14:00:07 +0200 | [diff] [blame] | 112 | user_pwd = getpwnam(user_id); |
Michael Tokarev | 22d0251 | 2023-09-01 13:12:56 +0300 | [diff] [blame] | 113 | if (user_pwd) { |
| 114 | user_uid = -1; |
| 115 | user_gid = -1; |
| 116 | return true; |
| 117 | } |
| 118 | |
Philippe Mathieu-Daudé | d280337 | 2023-10-04 14:00:07 +0200 | [diff] [blame] | 119 | rc = qemu_strtoul(user_id, &ep, 0, &lv); |
Ian Jackson | 2c42f1e | 2017-09-15 18:10:44 +0100 | [diff] [blame] | 120 | got_uid = lv; /* overflow here is ID in C99 */ |
| 121 | if (rc || *ep != ':' || got_uid != lv || got_uid == (uid_t)-1) { |
| 122 | return false; |
| 123 | } |
| 124 | |
| 125 | rc = qemu_strtoul(ep + 1, 0, 0, &lv); |
| 126 | got_gid = lv; /* overflow here is ID in C99 */ |
| 127 | if (rc || got_gid != lv || got_gid == (gid_t)-1) { |
| 128 | return false; |
| 129 | } |
| 130 | |
| 131 | user_pwd = NULL; |
| 132 | user_uid = got_uid; |
| 133 | user_gid = got_gid; |
| 134 | return true; |
| 135 | } |
| 136 | |
Jes Sorensen | e06eb60 | 2010-06-10 11:42:29 +0200 | [diff] [blame] | 137 | static void change_process_uid(void) |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 138 | { |
Ian Jackson | 2c42f1e | 2017-09-15 18:10:44 +0100 | [diff] [blame] | 139 | assert((user_uid == (uid_t)-1) || user_pwd == NULL); |
| 140 | assert((user_uid == (uid_t)-1) == |
| 141 | (user_gid == (gid_t)-1)); |
| 142 | |
| 143 | if (user_pwd || user_uid != (uid_t)-1) { |
| 144 | gid_t intended_gid = user_pwd ? user_pwd->pw_gid : user_gid; |
| 145 | uid_t intended_uid = user_pwd ? user_pwd->pw_uid : user_uid; |
| 146 | if (setgid(intended_gid) < 0) { |
| 147 | error_report("Failed to setgid(%d)", intended_gid); |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 148 | exit(1); |
| 149 | } |
Ian Jackson | 2c42f1e | 2017-09-15 18:10:44 +0100 | [diff] [blame] | 150 | if (user_pwd) { |
| 151 | if (initgroups(user_pwd->pw_name, user_pwd->pw_gid) < 0) { |
| 152 | error_report("Failed to initgroups(\"%s\", %d)", |
| 153 | user_pwd->pw_name, user_pwd->pw_gid); |
| 154 | exit(1); |
| 155 | } |
| 156 | } else { |
| 157 | if (setgroups(1, &user_gid) < 0) { |
| 158 | error_report("Failed to setgroups(1, [%d])", |
| 159 | user_gid); |
| 160 | exit(1); |
| 161 | } |
Stefan Hajnoczi | cc4662f | 2011-07-09 10:22:07 +0100 | [diff] [blame] | 162 | } |
Ian Jackson | 2c42f1e | 2017-09-15 18:10:44 +0100 | [diff] [blame] | 163 | if (setuid(intended_uid) < 0) { |
| 164 | error_report("Failed to setuid(%d)", intended_uid); |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 165 | exit(1); |
| 166 | } |
| 167 | if (setuid(0) != -1) { |
Ian Jackson | f0a2171 | 2018-04-16 15:08:03 +0100 | [diff] [blame] | 168 | error_report("Dropping privileges failed"); |
Jes Sorensen | 8847cfe | 2010-06-10 11:42:26 +0200 | [diff] [blame] | 169 | exit(1); |
| 170 | } |
| 171 | } |
| 172 | } |
Jes Sorensen | 0766379 | 2010-06-10 11:42:27 +0200 | [diff] [blame] | 173 | |
Michael Tokarev | 433aed5 | 2023-09-01 13:12:59 +0300 | [diff] [blame] | 174 | |
| 175 | static const char *chroot_dir; |
| 176 | |
Philippe Mathieu-Daudé | d280337 | 2023-10-04 14:00:07 +0200 | [diff] [blame] | 177 | void os_set_chroot(const char *path) |
Michael Tokarev | 5b15639 | 2023-09-01 13:12:57 +0300 | [diff] [blame] | 178 | { |
Philippe Mathieu-Daudé | d280337 | 2023-10-04 14:00:07 +0200 | [diff] [blame] | 179 | chroot_dir = path; |
Michael Tokarev | 5b15639 | 2023-09-01 13:12:57 +0300 | [diff] [blame] | 180 | } |
| 181 | |
Jes Sorensen | e06eb60 | 2010-06-10 11:42:29 +0200 | [diff] [blame] | 182 | static void change_root(void) |
Jes Sorensen | 0766379 | 2010-06-10 11:42:27 +0200 | [diff] [blame] | 183 | { |
| 184 | if (chroot_dir) { |
| 185 | if (chroot(chroot_dir) < 0) { |
Ian Jackson | 22cd4f4 | 2018-04-16 15:15:51 +0100 | [diff] [blame] | 186 | error_report("chroot failed"); |
Jes Sorensen | 0766379 | 2010-06-10 11:42:27 +0200 | [diff] [blame] | 187 | exit(1); |
| 188 | } |
| 189 | if (chdir("/")) { |
Ian Jackson | a7aaec1 | 2018-04-16 15:16:23 +0100 | [diff] [blame] | 190 | error_report("not able to chdir to /: %s", strerror(errno)); |
Jes Sorensen | 0766379 | 2010-06-10 11:42:27 +0200 | [diff] [blame] | 191 | exit(1); |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | } |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 196 | |
Michael Tokarev | 433aed5 | 2023-09-01 13:12:59 +0300 | [diff] [blame] | 197 | |
| 198 | static int daemonize; |
| 199 | static int daemon_pipe; |
| 200 | |
| 201 | bool is_daemonized(void) |
| 202 | { |
| 203 | return daemonize; |
| 204 | } |
| 205 | |
| 206 | int os_set_daemonize(bool d) |
| 207 | { |
| 208 | daemonize = d; |
| 209 | return 0; |
| 210 | } |
| 211 | |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 212 | void os_daemonize(void) |
| 213 | { |
| 214 | if (daemonize) { |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 215 | pid_t pid; |
Michael Tokarev | 0be5e43 | 2014-10-30 17:30:51 +0300 | [diff] [blame] | 216 | int fds[2]; |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 217 | |
Marc-André Lureau | 3338a41 | 2022-04-22 14:47:59 +0400 | [diff] [blame] | 218 | if (!g_unix_open_pipe(fds, FD_CLOEXEC, NULL)) { |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 219 | exit(1); |
| 220 | } |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 221 | |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 222 | pid = fork(); |
| 223 | if (pid > 0) { |
| 224 | uint8_t status; |
| 225 | ssize_t len; |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 226 | |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 227 | close(fds[1]); |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 228 | |
Michael Tokarev | ccea25f | 2014-10-30 17:37:16 +0300 | [diff] [blame] | 229 | do { |
| 230 | len = read(fds[0], &status, 1); |
| 231 | } while (len < 0 && errno == EINTR); |
Michael Tokarev | fee78fd | 2014-10-30 17:40:48 +0300 | [diff] [blame] | 232 | |
| 233 | /* only exit successfully if our child actually wrote |
| 234 | * a one-byte zero to our pipe, upon successful init */ |
| 235 | exit(len == 1 && status == 0 ? 0 : 1); |
| 236 | |
| 237 | } else if (pid < 0) { |
| 238 | exit(1); |
| 239 | } |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 240 | |
| 241 | close(fds[0]); |
Michael Tokarev | 0be5e43 | 2014-10-30 17:30:51 +0300 | [diff] [blame] | 242 | daemon_pipe = fds[1]; |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 243 | |
| 244 | setsid(); |
| 245 | |
| 246 | pid = fork(); |
| 247 | if (pid > 0) { |
| 248 | exit(0); |
| 249 | } else if (pid < 0) { |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 250 | exit(1); |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 251 | } |
| 252 | umask(027); |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 253 | |
| 254 | signal(SIGTSTP, SIG_IGN); |
| 255 | signal(SIGTTOU, SIG_IGN); |
| 256 | signal(SIGTTIN, SIG_IGN); |
| 257 | } |
| 258 | } |
| 259 | |
Fiona Ebner | 03e471c | 2023-12-18 11:13:40 +0100 | [diff] [blame] | 260 | void os_setup_limits(void) |
| 261 | { |
| 262 | struct rlimit nofile; |
| 263 | |
| 264 | if (getrlimit(RLIMIT_NOFILE, &nofile) < 0) { |
| 265 | warn_report("unable to query NOFILE limit: %s", strerror(errno)); |
| 266 | return; |
| 267 | } |
| 268 | |
| 269 | if (nofile.rlim_cur == nofile.rlim_max) { |
| 270 | return; |
| 271 | } |
| 272 | |
Trent Huber | de448e0 | 2024-06-14 17:06:38 -0400 | [diff] [blame] | 273 | #ifdef CONFIG_DARWIN |
| 274 | nofile.rlim_cur = OPEN_MAX < nofile.rlim_max ? OPEN_MAX : nofile.rlim_max; |
| 275 | #else |
Fiona Ebner | 03e471c | 2023-12-18 11:13:40 +0100 | [diff] [blame] | 276 | nofile.rlim_cur = nofile.rlim_max; |
Trent Huber | de448e0 | 2024-06-14 17:06:38 -0400 | [diff] [blame] | 277 | #endif |
Fiona Ebner | 03e471c | 2023-12-18 11:13:40 +0100 | [diff] [blame] | 278 | |
| 279 | if (setrlimit(RLIMIT_NOFILE, &nofile) < 0) { |
| 280 | warn_report("unable to set NOFILE limit: %s", strerror(errno)); |
| 281 | return; |
| 282 | } |
| 283 | } |
| 284 | |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 285 | void os_setup_post(void) |
| 286 | { |
| 287 | int fd = 0; |
| 288 | |
| 289 | if (daemonize) { |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 290 | if (chdir("/")) { |
Ian Jackson | a7aaec1 | 2018-04-16 15:16:23 +0100 | [diff] [blame] | 291 | error_report("not able to chdir to /: %s", strerror(errno)); |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 292 | exit(1); |
| 293 | } |
Nikita Ivanov | 8b6aa69 | 2022-10-23 12:04:21 +0300 | [diff] [blame] | 294 | fd = RETRY_ON_EINTR(qemu_open_old("/dev/null", O_RDWR)); |
Gonglei | 63ce8e1 | 2014-09-26 16:14:30 +0800 | [diff] [blame] | 295 | if (fd == -1) { |
| 296 | exit(1); |
| 297 | } |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 298 | } |
| 299 | |
Jes Sorensen | e06eb60 | 2010-06-10 11:42:29 +0200 | [diff] [blame] | 300 | change_root(); |
| 301 | change_process_uid(); |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 302 | |
| 303 | if (daemonize) { |
Michael Tokarev | 25cec2b | 2014-10-30 17:47:46 +0300 | [diff] [blame] | 304 | uint8_t status = 0; |
| 305 | ssize_t len; |
| 306 | |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 307 | dup2(fd, 0); |
| 308 | dup2(fd, 1); |
Dimitris Aragiorgis | 96c33a4 | 2016-02-18 13:38:38 +0200 | [diff] [blame] | 309 | /* In case -D is given do not redirect stderr to /dev/null */ |
Richard Henderson | 229ef2e | 2022-04-17 11:29:45 -0700 | [diff] [blame] | 310 | if (!qemu_log_enabled()) { |
Dimitris Aragiorgis | 96c33a4 | 2016-02-18 13:38:38 +0200 | [diff] [blame] | 311 | dup2(fd, 2); |
| 312 | } |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 313 | |
| 314 | close(fd); |
Michael Tokarev | 25cec2b | 2014-10-30 17:47:46 +0300 | [diff] [blame] | 315 | |
| 316 | do { |
| 317 | len = write(daemon_pipe, &status, 1); |
| 318 | } while (len < 0 && errno == EINTR); |
| 319 | if (len != 1) { |
| 320 | exit(1); |
| 321 | } |
Jes Sorensen | eb505be | 2010-06-10 11:42:28 +0200 | [diff] [blame] | 322 | } |
| 323 | } |
| 324 | |
Jes Sorensen | 9156d76 | 2010-06-10 11:42:30 +0200 | [diff] [blame] | 325 | void os_set_line_buffering(void) |
| 326 | { |
| 327 | setvbuf(stdout, NULL, _IOLBF, 0); |
| 328 | } |
Jes Sorensen | 949d31e | 2010-10-26 10:39:22 +0200 | [diff] [blame] | 329 | |
Daniil Tatianin | e76fadf | 2025-02-12 17:39:17 +0300 | [diff] [blame] | 330 | int os_mlock(bool on_fault) |
Satoru Moriya | 888a6bc | 2013-04-19 16:42:06 +0200 | [diff] [blame] | 331 | { |
David CARLIER | 195588c | 2020-07-13 14:36:09 +0100 | [diff] [blame] | 332 | #ifdef HAVE_MLOCKALL |
Satoru Moriya | 888a6bc | 2013-04-19 16:42:06 +0200 | [diff] [blame] | 333 | int ret = 0; |
Daniil Tatianin | e76fadf | 2025-02-12 17:39:17 +0300 | [diff] [blame] | 334 | int flags = MCL_CURRENT | MCL_FUTURE; |
Satoru Moriya | 888a6bc | 2013-04-19 16:42:06 +0200 | [diff] [blame] | 335 | |
Daniil Tatianin | e76fadf | 2025-02-12 17:39:17 +0300 | [diff] [blame] | 336 | if (on_fault) { |
| 337 | #ifdef HAVE_MLOCK_ONFAULT |
| 338 | flags |= MCL_ONFAULT; |
| 339 | #else |
| 340 | error_report("mlockall: on_fault not supported"); |
| 341 | return -EINVAL; |
| 342 | #endif |
| 343 | } |
| 344 | |
| 345 | ret = mlockall(flags); |
Satoru Moriya | 888a6bc | 2013-04-19 16:42:06 +0200 | [diff] [blame] | 346 | if (ret < 0) { |
Ian Jackson | a7aaec1 | 2018-04-16 15:16:23 +0100 | [diff] [blame] | 347 | error_report("mlockall: %s", strerror(errno)); |
Satoru Moriya | 888a6bc | 2013-04-19 16:42:06 +0200 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | return ret; |
David CARLIER | 195588c | 2020-07-13 14:36:09 +0100 | [diff] [blame] | 351 | #else |
Daniil Tatianin | e76fadf | 2025-02-12 17:39:17 +0300 | [diff] [blame] | 352 | (void)on_fault; |
David CARLIER | 195588c | 2020-07-13 14:36:09 +0100 | [diff] [blame] | 353 | return -ENOSYS; |
| 354 | #endif |
Satoru Moriya | 888a6bc | 2013-04-19 16:42:06 +0200 | [diff] [blame] | 355 | } |