=encoding utf-8 =head1 Name C - spawn and communicate with OS processes via stdin/stdout/stderr in a non-blocking fashion. =head1 Status This Lua module is production ready. =head1 Synopsis location = /t { content_by_lua_block { local ngx_pipe = require "ngx.pipe" local select = select local function count_char(...) local proc = ngx_pipe.spawn({'wc', '-c'}) local n = select('#', ...) for i = 1, n do local arg = select(i, ...) local bytes, err = proc:write(arg) if not bytes then ngx.say(err) return end end local ok, err = proc:shutdown('stdin') if not ok then ngx.say(err) return end local data, err = proc:stdout_read_line() if not data then ngx.say(err) return end ngx.say(data) end count_char(("1234"):rep(2048)) } } This example counts characters (bytes) directly fed by OpenResty to the UNIX command C. You could not do this with either C or C because C will not output the result until its stdin is closed. =head1 Description This module does not support non-POSIX operating systems like Windows yet. If you are not using the Nginx core shipped with OpenResty, you will need to apply the C patch to the standard Nginx core. Under the hood, this module uses C and C with the user-specified command, and communicate with such spawned processes via the POSIX C API, which contributes to the name of this module. A signal handler for C is registered so that we can receive a notification once the spawned processes exited. We combine the above implementation with Nginx's event mechanism and OpenResty's Lua coroutine scheduler, in order to ensure communication with the spawned processes is non-blocking. The communication APIs do not work in phases which do not support yielding, such as C or C, because there is no way to yield the current light thread to avoid blocking the OS thread when communicating with processes in those phases. =head1 Methods =head2 spawn B I B I> Creates and returns a new sub-process instance we can communicate with later. For example: local ngx_pipe = require "ngx.pipe" local proc, err = ngx_pipe.spawn({"sh", "-c", "sleep 0.1 && exit 2"}) if not proc then ngx.say(err) return end In case of failure, this function returns C and a string describing the error. The sub-process will be killed via C if it is still alive when the instance is collected by the garbage collector. Note that C should either be a single level array-like Lua table with string values, or just a single string. Some more examples: local proc, err = ngx_pipe.spawn({"ls", "-l"}) local proc, err = ngx_pipe.spawn({"perl", "-e", "print 'hello, wolrd'"}) If C is specified as a string, it will be executed by the operating system shell, just like C. The above example could thus be rewritten as: local ngx_pipe = require "ngx.pipe" local proc, err = ngx_pipe.spawn("sleep 0.1 && exit 2") if not proc then ngx.say(err) return end In the shell mode, you should be very careful about shell injection attacks when interpolating variables into command string, especially variables from untrusted sources. Please make sure that you escape those variables while assembling the command string. For this reason, it is highly recommended to use the multi-arguments form (C as a table) to specify each command-line argument explicitly. Since by default, Nginx does not pass along the C system environment variable, you will need to configure the C directive if you wish for it to be respected during the searching of sub-processes: env PATH; ... content_by_lua_block { local ngx_pipe = require "ngx.pipe" local proc = ngx_pipe.spawn({'ls'}) } The optional table argument C can be used to control the behavior of spawned processes. For instance: local opts = { merge_stderr = true, buffer_size = 256, environ = {"PATH=/tmp/bin", "CWD=/tmp/work"} } local proc, err = ngx_pipe.spawn({"sh", "-c", ">&2 echo data"}, opts) if not proc then ngx.say(err) return end The following options are supported: =over =item * C: when set to C, the output to stderr will be redirected to stdout in the spawned process. This is similar to doing C<< 2>&1 >> in a shell. =item * C: specifies the buffer size used by reading operations, in bytes. The default buffer size is C<4096>. =item * C: specifies environment variables for the spawned process. The value must be a single-level, array-like Lua table with string values. If the current platform does not support this option, C plus a string `"environ option not supported"` will be returned. =item * C: specifies the write timeout threshold, in milliseconds. The default threshold is C<10000>. If the threshold is C<0>, the write operation will never time out. =item * C: specifies the stdout read timeout threshold, in milliseconds. The default threshold is C<10000>. If the threshold is C<0>, the stdout read operation will never time out. =item * C: specifies the stderr read timeout threshold, in milliseconds. The default threshold is C<10000>. If the threshold is C<0>, the stderr read operation will never time out. =item * C: specifies the wait timeout threshold, in milliseconds. The default threshold is C<10000>. If the threshold is C<0>, the wait operation will never time out. =back =head2 set_timeouts B I Respectively sets: the write timeout threshold, stdout read timeout threshold, stderr read timeout threshold, and wait timeout threshold. All timeouts are in milliseconds. The default threshold for each timeout is 10 seconds. If the specified timeout argument is C, the corresponding timeout threshold will not be changed. For example: local proc, err = ngx_pipe.spawn({"sleep", "10s"}) -- only change the wait_timeout to 0.1 second. proc:set_timeouts(nil, nil, nil, 100) -- only change the send_timeout to 0.1 second. proc:set_timeouts(100) If the specified timeout argument is C<0>, the corresponding operation will never time out. =head2 wait B I B I Waits until the current sub-process exits. It is possible to control how long to wait via L. The default timeout is 10 seconds. If process exited with status code zero, the C return value will be C. If process exited abnormally, the C return value will be C. The second return value, C, will be a string. Its values may be: =over =item * C: the process exited by calling C, C<_exit(2)>, or by returning from C. In this case, C will be the exit code. =item * C: the process was terminated by a signal. In this case, C will be the signal number. =back Note that only one light thread can wait on a process at a time. If another light thread tries to wait on a process, the return values will be C and the error string C<"pipe busy waiting">. If a thread tries to wait an exited process, the return values will be C and the error string C<"exited">. =head2 pid B I Returns the pid number of the sub-process. =head2 kill B I Sends a signal to the sub-process. Note that the C argument should be signal's numerical value. If the specified C is not a number, an error will be thrown. You should use [lua-resty-signal's signum() function](https://github.com/openresty/lua-resty-signal#signum) to convert signal names to signal numbers in order to ensure portability of your application. In case of success, this method returns C. Otherwise, it returns C and a string describing the error. Killing an exited sub-process will return C and the error string C<"exited">. Sending an invalid signal to the process will return C and the error string C<"invalid signal">. =head2 shutdown B I Closes the specified direction of the current sub-process. The C argument should be one of these three values: C, C and C. In case of success, this method returns C. Otherwise, it returns C and a string describing the error. If the C option is specified in L, closing the C direction will return C and the error string C<"merged to stdout">. Shutting down a direction when a light thread is waiting on it (such as during reading or writing) will abort the light thread and return C. Shutting down directions of an exited process will return C and the error string C<"closed">. It is fine to shut down the same direction of the same stream multiple times; no side effects are to be expected. =head2 write B I B I Writes data to the current sub-process's stdin stream. The C argument can be a string or a single level array-like Lua table with string values. This method is a synchronous and non-blocking operation that will not return until I the data has been flushed to the sub-process's stdin buffer, or an error occurs. In case of success, it returns the total number of bytes that have been sent. Otherwise, it returns C and a string describing the error. The timeout threshold of this C operation can be controlled by the L method. The default timeout threshold is 10 seconds. When a timeout occurs, the data may be partially written into the sub-process's stdin buffer and read by the sub-process. Only one light thread is allowed to write to the sub-process at a time. If another light thread tries to write to it, this method will return C and the error string C<"pipe busy writing">. If the C operation is aborted by the L method, it will return C and the error string C<"aborted">. Writing to an exited sub-process will return C and the error string C<"closed">. =head2 stderr_read_all B I B I Reads all data from the current sub-process's stderr stream until it is closed. This method is a synchronous and non-blocking operation, just like the L method. The timeout threshold of this reading operation can be controlled by L. The default timeout is 10 seconds. In case of success, it returns the data received. Otherwise, it returns three values: C, a string describing the error, and, optionally, the partial data received so far. When C is specified in L, calling C will return C and the error string C<"merged to stdout">. Only one light thread is allowed to read from a sub-process's stderr or stdout stream at a time. If another thread tries to read from the same stream, this method will return C and the error string C<"pipe busy reading">. If the reading operation is aborted by the L method, it will return C and the error string C<"aborted">. Streams for stdout and stderr are separated, so at most two light threads may be reading from a sub-process at a time (one for each stream). The same way, a light thread may read from a stream while another light thread is writing to the sub-process stdin stream. Reading from an exited process's stream will return C and the error string C<"closed">. =head2 stdout_read_all B I B I Similar to the L method, but reading from the stdout stream of the sub-process. =head2 stderr_read_line B I B I Reads from stderr like L, but only reads a single line of data. When C is specified in L, calling C will return C plus the error string C<"merged to stdout">. When the data stream is truncated without a new-line character, it returns 3 values: C, the error string C<"closed">, and the partial data received so far. The line should be terminated by a C (LF) character (ASCII 10), optionally preceded by a C (CR) character (ASCII 13). The CR and LF characters are not included in the returned line data. =head2 stdout_read_line B I B I Similar to L, but reading from the stdout stream of the sub-process. =head2 stderr_read_bytes B I B I Reads from stderr like L, but only reads the specified number of bytes. If C is specified in L, calling C will return C plus the error string C<"merged to stdout">. If the data stream is truncated (fewer bytes of data available than requested), this method returns 3 values: C, the error string C<"closed">, and the partial data string received so far. =head2 stdout_read_bytes B I B I Similar to L, but reading from the stdout stream of the sub-process. =head2 stderr_read_any B I B I Reads from stderr like L, but returns immediately when any amount of data is received. At most C bytes are received. If C is specified in L, calling C will return C plus the error string C<"merged to stdout">. If the received data is more than C bytes, this method will return with exactly C bytes of data. The remaining data in the underlying receive buffer can be fetched with a subsequent reading operation. =head2 stdout_read_any B I B I Similar to L, but reading from the stdout stream of the sub-process. =head1 Community =head2 English Mailing List The L mailing list is for English speakers. =head2 Chinese Mailing List The L mailing list is for Chinese speakers. =head1 Bugs and Patches Please report bugs or submit patches by =over =item 1. creating a ticket on the L, =item 2. or posting to the L. =back =head1 Copyright and License This module is licensed under the BSD license. Copyright (C) 2018, by OpenResty Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: =over =item * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. =back =over =item * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. =back THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. =head1 See Also =over =item * the L library. =item * the ngx_lua module: https://github.com/openresty/lua-nginx-module =item * OpenResty: https://openresty.org =back