aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/nofork_noexec.txt39
1 files changed, 33 insertions, 6 deletions
diff --git a/docs/nofork_noexec.txt b/docs/nofork_noexec.txt
index c58f5a83f..a24dd9c27 100644
--- a/docs/nofork_noexec.txt
+++ b/docs/nofork_noexec.txt
@@ -33,6 +33,7 @@ roughly are:
33* do not expect shared global variables/buffers to be in their 33* do not expect shared global variables/buffers to be in their
34 "initialized" state. Examples: xfunc_error_retval can be != 1, 34 "initialized" state. Examples: xfunc_error_retval can be != 1,
35 bb_common_bufsiz1 can be scribbled over, ... 35 bb_common_bufsiz1 can be scribbled over, ...
36 (although usually xfunc_error_retval's state is not a problem).
36* do not expect that stdio wasn't used before. Calling set[v]buf() 37* do not expect that stdio wasn't used before. Calling set[v]buf()
37 can be disastrous. 38 can be disastrous.
38* ... 39* ...
@@ -81,18 +82,44 @@ are probably not worth the effort.
81Any NOFORK applet is also a NOEXEC applet. 82Any NOFORK applet is also a NOEXEC applet.
82 83
83 84
85 Calling NOFORK applets
86
87API to call NOFORK applets is two functions:
88
89 run_nofork_applet(appno, argv)
90 spawn_and_wait(argv) // only if FEATURE_PREFER_APPLETS=y
91
92First one is directly used by shells if FEATURE_SH_NOFORK=y.
93Second one is used by many applets, but main users are xargs and find.
94It itself calls run_nofork_applet(), if argv[0] turned out to be a name
95of a NOFORK applet.
96
97run_nofork_applet() saves/inits/restores option parsing, xfunc_error_retval,
98applet_name. Thus, for example, caller does not need to worry about
99option_mask32 getting trashed.
100
101
102 Calling NOEXEC applets
103
104It's the same trusty spawn_and_wait(argv). If FEATURE_PREFER_APPLETS=y,
105it does NOEXEC trick. It resets xfunc_error_retval = 1 and
106logmode = LOGMODE_STDIO in the child.
107
108
84 Relevant CONFIG options 109 Relevant CONFIG options
85 110
86FEATURE_PREFER_APPLETS 111FEATURE_PREFER_APPLETS
87 BB_EXECVP(cmd, argv) will try to exec /proc/self/exe 112 BB_EXECVP(cmd, argv) will try to exec /proc/self/exe
88 if command's name matches some applet name 113 if command's name matches some applet name;
89 applet tables will contain NOFORK/NOEXEC bits
90 spawn_and_wait(argv) will do NOFORK/NOEXEC tricks 114 spawn_and_wait(argv) will do NOFORK/NOEXEC tricks
91 115
92FEATURE_SH_STANDALONE (needs FEATURE_PREFER_APPLETS=y) 116//TODO: the above two things probably should have separate options?
117
118FEATURE_SH_STANDALONE
93 shells will try to exec /proc/self/exe if command's name matches 119 shells will try to exec /proc/self/exe if command's name matches
94 some applet name 120 some applet name; shells will do NOEXEC trick on NOEXEC applets
95 shells will do NOEXEC trick on NOEXEC applets 121
122//TODO: split (same as for PREFER_APPLETS)
96 123
97FEATURE_SH_NOFORK (needs FEATURE_PREFER_APPLETS=y) 124FEATURE_SH_NOFORK
98 shells will do NOFORK trick on NOFORK applets 125 shells will do NOFORK trick on NOFORK applets