-
run_buffer(): unblock all signals for spawned scripts. · ebec9176Andrey Mazo authored
Currently, all scripts, specified as "lxc.network.script.up", inherit lxc-execute's signal mask. This, for example, includes blocked SIGALRM signal which, in turn, makes alarm(2), sleep(3) and setitimer(2) functions silently unusable in all programs, invoked in turn by the "lxc.network.script.up". To fix this, run_buffer() should restore default signal mask prior to executing "lxc.network.script.up". A naive implementation would temprorary unblock all signals just before calling popen() and block them back immediately after it. But that would result in an immediate delivery of all pending signals just after their unblocking. Thus, we should restore default signal mask exactly in child (after fork()) just before calling exec(). To achieve this, a home-brewed popen() alternative is needed. The added lxc_popen() and lxc_pclose() are mostly taken from glibc with several simplifications (as we currently need only "re" mode). The implementation uses Linux-specific pipe2() system-call, which is only available since Linux 2.6.27 and supported by glibc since version 2.9 (according to pipe(2) man-page), but this shouldn't be a problem as lxc requires a fairly recent kernel too. lxc_popen()/lxc_pclose() are meant to be direct replacements for their stdio counterparts, so they perform no process_lock() locking themselves. (as fopen_cloexec() does) All existing users of popen()/pclose() are converted to the new lxc_popen()/lxc_pclose(). (mazo: don't clear close-on-exec flag for parent's end; place the new functions in utils.c; convert bdev.c to use the new functions; coding style fixes; comments fixes; commit message tweaks) Signed-off-by:
Ivan Bolsunov <bolsunov@telum.ru> Signed-off-by:
Andrey Mazo <mazo@telum.ru>
ebec9176
| Name |
Last commit
|
Last update |
|---|---|---|
| .. | ||
| include | Loading commit data... | |
| lua-lxc | Loading commit data... | |
| lxc | Loading commit data... | |
| python-lxc | Loading commit data... | |
| tests | Loading commit data... | |
| Makefile.am | Loading commit data... |