summaryrefslogtreecommitdiff
path: root/lib/mixlib/shellout/unix.rb
Commit message (Collapse)AuthorAgeFilesLines
* Block until child stream is emptyryan/issue_2062_12Ryan Cragun2014-10-311-1/+1
|
* Remove child process pipe from open pipes when the stream is closedRyan Cragun2014-10-311-0/+1
|
* Rescue ArgumentError on Marshal.load of buffered child statusRyan Cragun2014-10-311-1/+1
|
* Add buffering to the process status pipeRyan Cragun2014-10-311-7/+16
|
* Merge pull request #57 from ClogenyTechnologies/kd/processgrp-fixlamont-granquist2014-09-111-1/+4
|\ | | | | aix getpgid fails when called from parent and parent and child have different session
| * fix getpgid issue on aixkaustubh-d2014-08-271-1/+4
| |
* | aix does not allow resetting real uid once the euid is changed to non-root.kaustubh-d2014-08-271-1/+1
| |
* | remove #clean_parent_file_descriptors which is not required now.kaustubh-d2014-08-251-27/+0
| |
* | clean_parent_file_descriptors can be achieve with close_others flag to exec ↵kaustubh-d2014-08-251-1/+1
|/ | | | method, aix removed method was slow.
* Simplify live_stream vs live_stdout vs live_stderr based on PR commentsMax Lincoln2014-07-171-2/+2
|
* Support separate live stream for stderrMax Lincoln2014-07-171-1/+1
|
* AIX returns Errno::EPERM hereLamont Granquist2014-07-081-1/+1
|
* Correct spelling in spec filesTyler Cipriani2014-05-161-1/+1
|
* Correct spelling of "exceeded"Tyler Cipriani2014-05-151-2/+2
|
* Merge pull request #26 from akshaykarle/masterSerdar Sutay2014-05-131-0/+1
|\ | | | | [#MIXLIB-19] Copy stderr to live_stream along with stdout of the subprocess
| * Add stderr to live_stream.Akshay Karle2013-09-261-0/+1
| |
* | Handle ESRCH when getting pgid of a zombie on OS Xdanielsdeleo2014-03-311-1/+17
| |
* | Retire the GC disable hack for all but ruby 1.8.7danielsdeleo2014-03-071-4/+9
| | | | | | | | | | | | | | | | Originally we needed this hack for 1.8.6 and 1.8.7, which were the most common versions in use at the time. 1.8.6 is dead so we don't need to account for it any more, which leaves 1.8.7 as the only case we need to care about for this hack. On Ruby 1.9 and greater this hack isn't needed and causes memory bloat for very long running shell commands.
* | Always send KILL to process groupdanielsdeleo2013-12-091-32/+10
| | | | | | | | | | | | | | | | | | There is not a good way to reliably detect whether all grandchildren have exited after sending a TERM to the process group; if the child has correctly exited, grandchildren (which may be unresponsive) will have been adopted by init (ppid == 1) so the parent cannot wait() on them. To ensure no stuck grandchildren are left, send a KILL to the process group after allowing the processes time to clean up.
* | Run commands with unique pgid to improve timeout cleanupdanielsdeleo2013-12-091-6/+59
| | | | | | | | | | | | | | To ensure that all child processes are properly signaled to exit before forcibly killing them, use `setsid()` in the child process to give the child (and any grandchildren it might create) a new and unique process group. If the command times out, kill and reap the entire process group.
* | Add termination info to error messagesdanielsdeleo2013-11-041-1/+3
| | | | | | | | | | If no logger is configured, we still want to inform the user that the process was killed (and how).
* | Add logging about timed-out cmd termination when possibledanielsdeleo2013-11-041-0/+2
| | | | | | | | | | If a logger is configured, send `error` level messages about child process termination for timeout violations.
* | Cleanup control flow in main loopdanielsdeleo2013-11-011-13/+13
| | | | | | | | | | removes some complexity that was introduced with the fix to kill timed-out child processes
* | Force subprocess to exit after timeoutdanielsdeleo2013-11-011-17/+52
|/ | | | | | | | Fixes MIXLIB-16. This issue is particularly prominent when yum/rpm commands go off the deep end repeatedly, but affects any case where a process takes longer than the timeout to complete.
* Use blocking waitpid only on ENOENTdanielsdeleo2013-09-111-2/+10
| | | | | | | | This is a compromise that prevents us from leaving zombie processes around after a failed exec raises ENOENT, but prevents us from blocking (possibly forever) on timed-out commands. The latter case can cause zombies, so this is not optimal for all cases. See MIXLIB-16 for a proposed enhancement to solve that case.
* Wait for child process to die in case of critical errorsdanielsdeleo2013-09-091-1/+1
| | | | | | | | | | | | Ported the regression test from OHAI-455 to mixlib-shellout, which revealed a race condition in the way shellout reaps the child after a failed exec (most commonly caused by attempting to run a command that doesn't exist). The call to waitpid2 used WNOHANG to avoid hanging indefinitely if an error was caused but the child process was still alive, but this results in the child process not getting reaped if it exits after the call to waitpid2. In a single run of the stress test, this occurred 94/100 times, so it is very likely that mixlib-shellout will leak zombies for the ENOENT case without this change.
* close observed to throw EBADFLamont Granquist2013-06-141-2/+5
| | | | | | - Unsure how File.for_fd() succeeds and then then #close on the File throws this, but it must be racing with something. I don't think we care.
* More robust pipe checks and tests.sersut2013-04-171-5/+7
|
* Clean inherited file descriptors from the parent while forking subprocess.sersut2013-04-161-0/+22
|
* Add option validationMoser, Kevin2013-03-131-0/+5
|
* MIXLIB_SHELLOUT-02: Fix comments about default timeout to avoid confusion.Matthew Kent2012-10-241-1/+1
|
* CHEF-3390: Avoid GC during Marshall.loadBryan McLellan2012-09-171-5/+9
| | | | | | | Ruby < 1.8.7p369 has a bug related to Marshall.load and GC, so let's disable Garbage Collection a little earlier. http://bugs.ruby-lang.org/issues/4339
* [CHEF-2994][STDIN] Child process should accept stdin input if input is specifiedHo-Sheng Hsiao2012-03-261-8/+27
|
* [CHEF-2947] properly remove STDERR from list of fds to select/readDaniel DeLeo2012-02-221-2/+2
| | | | | | | | | | Properly remove child's stderr pipe from the list of IO objects to select on in the case that stdout has already been removed from the list. This prevents a situation where the stdout stream is always considered readable by select (because it has reached eof) but ShellOut would attempt to read from it in a tight loop. Since GC is disabled while a command is running, this would generate a bunch of EOFError objects that were not reaped and use a ton of heap space.
* update license headers and datesDaniel DeLeo2011-12-011-0/+18
|
* Initial extraction of ShellOut from ChefDaniel DeLeo2011-12-011-0/+223