]> git.proxmox.com Git - mirror_lxc.git/commit - src/lxc/utils.c
run_buffer(): unblock all signals for spawned scripts.
authorAndrey Mazo <mazo@telum.ru>
Thu, 28 Nov 2013 12:45:47 +0000 (16:45 +0400)
committerAndrey Mazo <mazo@telum.ru>
Tue, 3 Dec 2013 11:47:21 +0000 (15:47 +0400)
commitebec9176c8bb039e4d3db89871322e585d88f12b
tree796f6a6faa5e400d0b5a3e492c055fb9e3bc1dbf
parent95ee490bbdb97ab2b4f1dfa63a0a26e0dd1c2f17
run_buffer(): unblock all signals for spawned scripts.

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>
src/lxc/bdev.c
src/lxc/conf.c
src/lxc/utils.c
src/lxc/utils.h