1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
/****************************************************************************
* bfs *
* Copyright (C) 2018 Tavian Barnes <tavianator@tavianator.com> *
* *
* Permission to use, copy, modify, and/or distribute this software for any *
* purpose with or without fee is hereby granted. *
* *
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES *
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF *
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR *
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES *
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN *
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF *
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *
****************************************************************************/
/**
* A process-spawning library inspired by posix_spawn().
*/
#ifndef BFS_SPAWN_H
#define BFS_SPAWN_H
#include <stdbool.h>
#include <signal.h>
#include <sys/types.h>
/**
* bfs_spawn() flags.
*/
enum bfs_spawn_flags {
/** Use the PATH variable to resolve the executable (like execvp()). */
BFS_SPAWN_USEPATH = 1 << 0,
};
/**
* bfs_spawn() attributes, controlling the context of the new process.
*/
struct bfs_spawn {
enum bfs_spawn_flags flags;
struct bfs_spawn_action *actions;
struct bfs_spawn_action **tail;
};
/**
* Create a new bfs_spawn() context.
*
* @return 0 on success, -1 on failure.
*/
int bfs_spawn_init(struct bfs_spawn *ctx);
/**
* Destroy a bfs_spawn() context.
*
* @return 0 on success, -1 on failure.
*/
int bfs_spawn_destroy(struct bfs_spawn *ctx);
/**
* Set the flags for a bfs_spawn() context.
*
* @return 0 on success, -1 on failure.
*/
int bfs_spawn_setflags(struct bfs_spawn *ctx, enum bfs_spawn_flags flags);
/**
* Add an fchdir() action to a bfs_spawn() context.
*
* @return 0 on success, -1 on failure.
*/
int bfs_spawn_addfchdir(struct bfs_spawn *ctx, int fd);
/**
* Spawn a new process.
*
* @param exe
* The executable to run.
* @param ctx
* The context for the new process.
* @param argv
* The arguments for the new process.
* @param envp
* The environment variables for the new process.
* @return
* The PID of the new process, or -1 on error.
*/
pid_t bfs_spawn(const char *exe, const struct bfs_spawn *ctx, char **argv, char **envp);
#endif // BFS_SPAWN_H
|