| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 The Android Open Source Project |
| 3 | * All rights reserved. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * * Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * * Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in |
| 12 | * the documentation and/or other materials provided with the |
| 13 | * distribution. |
| 14 | * |
| 15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 16 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 17 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 18 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 19 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 20 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 21 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 22 | * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 23 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 24 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 25 | * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 26 | * SUCH DAMAGE. |
| 27 | */ |
| 28 | |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 29 | #pragma once |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 30 | |
| 31 | #include <sys/cdefs.h> |
| 32 | #include <sys/types.h> |
| 33 | #include <sched.h> |
| 34 | #include <signal.h> |
| 35 | |
| 36 | __BEGIN_DECLS |
| 37 | |
| 38 | #define POSIX_SPAWN_RESETIDS 1 |
| 39 | #define POSIX_SPAWN_SETPGROUP 2 |
| 40 | #define POSIX_SPAWN_SETSIGDEF 4 |
| 41 | #define POSIX_SPAWN_SETSIGMASK 8 |
| 42 | #define POSIX_SPAWN_SETSCHEDPARAM 16 |
| 43 | #define POSIX_SPAWN_SETSCHEDULER 32 |
| 44 | #if defined(__USE_GNU) |
| 45 | #define POSIX_SPAWN_USEVFORK 64 |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 46 | #endif |
| 47 | #if defined(__USE_GNU) |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 48 | #define POSIX_SPAWN_SETSID 128 |
| 49 | #endif |
| Elliott Hughes | 2229e55 | 2024-08-22 17:12:23 +0000 | [diff] [blame] | 50 | /** |
| 51 | * Used with posix_spawnattr_setflags() to mark all fds except |
| 52 | * stdin/stdout/stderr as O_CLOEXEC prior to executing registered file actions. |
| 53 | */ |
| Maciej Żenczykowski | 262b873 | 2022-01-20 14:56:20 -0800 | [diff] [blame] | 54 | #define POSIX_SPAWN_CLOEXEC_DEFAULT 256 |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 55 | |
| 56 | typedef struct __posix_spawnattr* posix_spawnattr_t; |
| 57 | typedef struct __posix_spawn_file_actions* posix_spawn_file_actions_t; |
| 58 | |
| Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 59 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| Elliott Hughes | 2229e55 | 2024-08-22 17:12:23 +0000 | [diff] [blame] | 60 | int posix_spawn(pid_t* _Nullable __pid, const char* _Nonnull __path, const posix_spawn_file_actions_t _Nullable * _Nullable __actions, const posix_spawnattr_t _Nullable * _Nullable __attr, char* const _Nullable __argv[_Nullable], char* const _Nullable __env[_Nullable]) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 61 | #endif |
| 62 | |
| 63 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| Elliott Hughes | 2229e55 | 2024-08-22 17:12:23 +0000 | [diff] [blame] | 64 | int posix_spawnp(pid_t* _Nullable __pid, const char* _Nonnull __file, const posix_spawn_file_actions_t _Nullable * _Nullable __actions, const posix_spawnattr_t _Nullable * _Nullable __attr, char* const _Nullable __argv[_Nullable], char* const _Nullable __env[_Nullable]) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 65 | #endif |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 66 | |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 67 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 148476d | 2024-02-29 22:55:00 +0000 | [diff] [blame] | 68 | int posix_spawnattr_init(posix_spawnattr_t _Nullable * _Nonnull __attr) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 69 | #endif |
| 70 | |
| 71 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 72 | int posix_spawnattr_destroy(posix_spawnattr_t _Nonnull * _Nonnull __attr) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 73 | #endif |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 74 | |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 75 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 76 | int posix_spawnattr_setflags(posix_spawnattr_t _Nonnull * _Nonnull __attr, short __flags) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 77 | #endif |
| 78 | |
| 79 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 80 | int posix_spawnattr_getflags(const posix_spawnattr_t _Nonnull * _Nonnull __attr, short* _Nonnull __flags) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 81 | #endif |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 82 | |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 83 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 84 | int posix_spawnattr_setpgroup(posix_spawnattr_t _Nonnull * _Nonnull __attr, pid_t __pgroup) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 85 | #endif |
| 86 | |
| 87 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 88 | int posix_spawnattr_getpgroup(const posix_spawnattr_t _Nonnull * _Nonnull __attr, pid_t* _Nonnull __pgroup) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 89 | #endif |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 90 | |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 91 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 92 | int posix_spawnattr_setsigmask(posix_spawnattr_t _Nonnull * _Nonnull __attr, const sigset_t* _Nonnull __mask) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 93 | #endif |
| 94 | |
| 95 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 96 | int posix_spawnattr_setsigmask64(posix_spawnattr_t _Nonnull * _Nonnull __attr, const sigset64_t* _Nonnull __mask) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 97 | #endif |
| 98 | |
| 99 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 100 | int posix_spawnattr_getsigmask(const posix_spawnattr_t _Nonnull * _Nonnull __attr, sigset_t* _Nonnull __mask) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 101 | #endif |
| 102 | |
| 103 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 104 | int posix_spawnattr_getsigmask64(const posix_spawnattr_t _Nonnull * _Nonnull __attr, sigset64_t* _Nonnull __mask) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 105 | #endif |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 106 | |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 107 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 108 | int posix_spawnattr_setsigdefault(posix_spawnattr_t _Nonnull * _Nonnull __attr, const sigset_t* _Nonnull __mask) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 109 | #endif |
| 110 | |
| 111 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 112 | int posix_spawnattr_setsigdefault64(posix_spawnattr_t _Nonnull * _Nonnull __attr, const sigset64_t* _Nonnull __mask) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 113 | #endif |
| 114 | |
| 115 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 116 | int posix_spawnattr_getsigdefault(const posix_spawnattr_t _Nonnull * _Nonnull __attr, sigset_t* _Nonnull __mask) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 117 | #endif |
| 118 | |
| 119 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 120 | int posix_spawnattr_getsigdefault64(const posix_spawnattr_t _Nonnull * _Nonnull __attr, sigset64_t* _Nonnull __mask) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 121 | #endif |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 122 | |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 123 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 124 | int posix_spawnattr_setschedparam(posix_spawnattr_t _Nonnull * _Nonnull __attr, const struct sched_param* _Nonnull __param) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 125 | #endif |
| 126 | |
| 127 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 128 | int posix_spawnattr_getschedparam(const posix_spawnattr_t _Nonnull * _Nonnull __attr, struct sched_param* _Nonnull __param) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 129 | #endif |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 130 | |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 131 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 132 | int posix_spawnattr_setschedpolicy(posix_spawnattr_t _Nonnull * _Nonnull __attr, int __policy) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 133 | #endif |
| 134 | |
| 135 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 136 | int posix_spawnattr_getschedpolicy(const posix_spawnattr_t _Nonnull * _Nonnull __attr, int* _Nonnull __policy) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 137 | #endif |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 138 | |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 139 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 140 | int posix_spawn_file_actions_init(posix_spawn_file_actions_t _Nonnull * _Nonnull __actions) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 141 | #endif |
| 142 | |
| 143 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 144 | int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t _Nonnull * _Nonnull __actions) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 145 | #endif |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 146 | |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 147 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 148 | int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t _Nonnull * _Nonnull __actions, int __fd, const char* _Nonnull __path, int __flags, mode_t __mode) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 149 | #endif |
| 150 | |
| 151 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 152 | int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t _Nonnull * _Nonnull __actions, int __fd) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 153 | #endif |
| 154 | |
| 155 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| zijunzhao | 8f23da6 | 2023-03-31 06:08:20 +0000 | [diff] [blame] | 156 | int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t _Nonnull * _Nonnull __actions, int __fd, int __new_fd) __INTRODUCED_IN(28); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 157 | #endif |
| Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 158 | |
| Elliott Hughes | 480a70a | 2025-04-10 12:34:04 -0400 | [diff] [blame] | 159 | /** Synonym for posix_spawn_file_actions_addchdir(). */ |
| Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 160 | #if __BIONIC_AVAILABILITY_GUARD(34) |
| Elliott Hughes | 462ca8b | 2023-04-04 13:33:28 -0700 | [diff] [blame] | 161 | int posix_spawn_file_actions_addchdir_np(posix_spawn_file_actions_t _Nonnull * _Nonnull __actions, const char* _Nonnull __path) __INTRODUCED_IN(34); |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 162 | #endif |
| Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 163 | |
| Elliott Hughes | 480a70a | 2025-04-10 12:34:04 -0400 | [diff] [blame] | 164 | /** |
| 165 | * posix_spawn_file_actions_addchdir() adds a chdir() as an action |
| 166 | * to be performed between the fork() and exec(). |
| 167 | * |
| 168 | * Returns 0 on success and returns an error number on failure. |
| 169 | */ |
| 170 | #if __BIONIC_AVAILABILITY_GUARD(34) |
| 171 | int posix_spawn_file_actions_addchdir(posix_spawn_file_actions_t _Nonnull * _Nonnull __actions, const char* _Nonnull __path) __INTRODUCED_IN(34) __RENAME(posix_spawn_file_actions_addchdir_np); |
| 172 | #endif |
| 173 | |
| 174 | /** Synonym for posix_spawn_file_actions_addfchdir(). */ |
| Elliott Hughes | c0f84c9 | 2025-04-09 06:24:03 -0700 | [diff] [blame] | 175 | #if __BIONIC_AVAILABILITY_GUARD(34) |
| 176 | int posix_spawn_file_actions_addfchdir_np(posix_spawn_file_actions_t _Nonnull * _Nonnull __actions, int __fd) __INTRODUCED_IN(34); |
| 177 | #endif |
| Elliott Hughes | 462ca8b | 2023-04-04 13:33:28 -0700 | [diff] [blame] | 178 | |
| Elliott Hughes | 480a70a | 2025-04-10 12:34:04 -0400 | [diff] [blame] | 179 | /** |
| 180 | * posix_spawn_file_actions_addfchdir() adds an fchdir() as an action |
| 181 | * to be performed between the fork() and exec(). |
| 182 | * |
| 183 | * Returns 0 on success and returns an error number on failure. |
| 184 | */ |
| 185 | #if __BIONIC_AVAILABILITY_GUARD(34) |
| 186 | int posix_spawn_file_actions_addfchdir(posix_spawn_file_actions_t _Nonnull * _Nonnull __actions, int __fd) __INTRODUCED_IN(34) __RENAME(posix_spawn_file_actions_addfchdir_np); |
| 187 | #endif |
| 188 | |
| Elliott Hughes | 14e3ff9 | 2017-10-06 16:58:36 -0700 | [diff] [blame] | 189 | __END_DECLS |