2003-01-16 00:29:00 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-08 16:18:22 +08:00
|
|
|
| PHP Version 5 |
|
2003-01-16 00:29:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2014-01-03 11:08:10 +08:00
|
|
|
| Copyright (c) 1997-2014 The PHP Group |
|
2003-01-16 00:29:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2003-01-16 00:29:00 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2003-01-16 00:29:00 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
2003-01-16 02:54:03 +08:00
|
|
|
| Author: Wez Furlong <wez@thebrainroom.com> |
|
2003-01-16 00:29:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
/* $Id$ */
|
|
|
|
|
2004-05-29 17:27:18 +08:00
|
|
|
#if 0 && (defined(__linux__) || defined(sun) || defined(__IRIX__))
|
2004-05-28 21:25:51 +08:00
|
|
|
# define _BSD_SOURCE /* linux wants this when XOPEN mode is on */
|
|
|
|
# define _BSD_COMPAT /* irix: uint */
|
|
|
|
# define _XOPEN_SOURCE 500 /* turn on Unix98 */
|
|
|
|
# define __EXTENSIONS__ 1 /* Solaris: uint */
|
|
|
|
#endif
|
2004-04-19 23:07:30 +08:00
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
#include "php.h"
|
2004-04-19 23:07:30 +08:00
|
|
|
#include <stdio.h>
|
2003-01-16 00:29:00 +08:00
|
|
|
#include <ctype.h>
|
|
|
|
#include "php_string.h"
|
|
|
|
#include "ext/standard/head.h"
|
2009-07-26 23:14:18 +08:00
|
|
|
#include "ext/standard/basic_functions.h"
|
2003-01-16 00:29:00 +08:00
|
|
|
#include "ext/standard/file.h"
|
|
|
|
#include "exec.h"
|
|
|
|
#include "php_globals.h"
|
|
|
|
#include "SAPI.h"
|
2014-03-19 13:26:54 +08:00
|
|
|
#include "main/php_network.h"
|
2003-01-16 00:29:00 +08:00
|
|
|
|
2004-09-29 14:04:36 +08:00
|
|
|
#ifdef NETWARE
|
|
|
|
#include <proc.h>
|
|
|
|
#include <library.h>
|
|
|
|
#endif
|
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
#if HAVE_SYS_WAIT_H
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#endif
|
|
|
|
#if HAVE_SIGNAL_H
|
|
|
|
#include <signal.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_SYS_STAT_H
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#endif
|
|
|
|
#if HAVE_FCNTL_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* This symbol is defined in ext/standard/config.m4.
|
|
|
|
* Essentially, it is set if you HAVE_FORK || PHP_WIN32
|
2012-05-29 21:44:04 +08:00
|
|
|
* Other platforms may modify that configure check and add suitable #ifdefs
|
2003-01-16 00:29:00 +08:00
|
|
|
* around the alternate code.
|
|
|
|
* */
|
|
|
|
#ifdef PHP_CAN_SUPPORT_PROC_OPEN
|
|
|
|
|
2004-05-29 17:27:18 +08:00
|
|
|
#if 0 && HAVE_PTSNAME && HAVE_GRANTPT && HAVE_UNLOCKPT && HAVE_SYS_IOCTL_H && HAVE_TERMIOS_H
|
2004-04-19 23:07:30 +08:00
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# include <termios.h>
|
2004-05-29 08:30:11 +08:00
|
|
|
# define PHP_CAN_DO_PTS 1
|
2004-04-19 23:07:30 +08:00
|
|
|
#endif
|
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
#include "proc_open.h"
|
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
static int le_proc_open;
|
|
|
|
|
2003-02-16 23:38:54 +08:00
|
|
|
/* {{{ _php_array_to_envp */
|
|
|
|
static php_process_env_t _php_array_to_envp(zval *environment, int is_persistent TSRMLS_DC)
|
|
|
|
{
|
2014-02-14 17:40:11 +08:00
|
|
|
zval *element;
|
2003-02-16 23:38:54 +08:00
|
|
|
php_process_env_t env;
|
2014-02-14 17:40:11 +08:00
|
|
|
zend_string *string_key;
|
2003-02-16 23:38:54 +08:00
|
|
|
#ifndef PHP_WIN32
|
|
|
|
char **ep;
|
|
|
|
#endif
|
|
|
|
char *p;
|
2014-05-09 19:01:38 +08:00
|
|
|
uint cnt, l, sizeenv=0;
|
2003-02-16 23:38:54 +08:00
|
|
|
HashTable *target_hash;
|
|
|
|
|
|
|
|
memset(&env, 0, sizeof(env));
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-02-16 23:38:54 +08:00
|
|
|
if (!environment) {
|
|
|
|
return env;
|
|
|
|
}
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-02-16 23:38:54 +08:00
|
|
|
cnt = zend_hash_num_elements(Z_ARRVAL_P(environment));
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-02-16 23:38:54 +08:00
|
|
|
if (cnt < 1) {
|
2007-08-17 18:42:30 +08:00
|
|
|
#ifndef PHP_WIN32
|
|
|
|
env.envarray = (char **) pecalloc(1, sizeof(char *), is_persistent);
|
|
|
|
#endif
|
|
|
|
env.envp = (char *) pecalloc(4, 1, is_persistent);
|
2003-02-16 23:38:54 +08:00
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
|
|
|
target_hash = HASH_OF(environment);
|
|
|
|
if (!target_hash) {
|
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* first, we have to get the size of all the elements in the hash */
|
2014-05-09 19:01:38 +08:00
|
|
|
ZEND_HASH_FOREACH_STR_KEY_VAL(target_hash, string_key, element) {
|
|
|
|
zend_string *str = zval_get_string(element);
|
|
|
|
uint el_len = str->len;
|
|
|
|
STR_RELEASE(str);
|
|
|
|
|
2003-02-16 23:38:54 +08:00
|
|
|
if (el_len == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2014-05-09 19:01:38 +08:00
|
|
|
sizeenv += el_len + 1;
|
2010-09-08 17:11:18 +08:00
|
|
|
|
2014-04-18 23:18:11 +08:00
|
|
|
if (string_key) {
|
|
|
|
if (string_key->len == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2014-04-26 04:32:51 +08:00
|
|
|
sizeenv += string_key->len + 1;
|
2003-02-16 23:38:54 +08:00
|
|
|
}
|
2014-04-18 23:18:11 +08:00
|
|
|
} ZEND_HASH_FOREACH_END();
|
2003-02-16 23:38:54 +08:00
|
|
|
|
|
|
|
#ifndef PHP_WIN32
|
|
|
|
ep = env.envarray = (char **) pecalloc(cnt + 1, sizeof(char *), is_persistent);
|
|
|
|
#endif
|
|
|
|
p = env.envp = (char *) pecalloc(sizeenv + 4, 1, is_persistent);
|
|
|
|
|
2014-05-09 19:01:38 +08:00
|
|
|
ZEND_HASH_FOREACH_STR_KEY_VAL(target_hash, string_key, element) {
|
|
|
|
zend_string *str = zval_get_string(element);
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2014-05-09 19:01:38 +08:00
|
|
|
if (str->len == 0) {
|
2013-10-10 20:21:14 +08:00
|
|
|
goto next_element;
|
2003-02-16 23:38:54 +08:00
|
|
|
}
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2014-04-18 23:18:11 +08:00
|
|
|
if (string_key) {
|
|
|
|
if (string_key->len == 0) {
|
2014-04-26 04:32:51 +08:00
|
|
|
goto next_element;
|
2014-04-18 23:18:11 +08:00
|
|
|
}
|
|
|
|
|
2014-05-09 19:01:38 +08:00
|
|
|
l = string_key->len + str->len + 2;
|
2014-04-18 23:18:11 +08:00
|
|
|
memcpy(p, string_key->val, string_key->len);
|
|
|
|
strncat(p, "=", 1);
|
2014-05-09 19:01:38 +08:00
|
|
|
strncat(p, str->val, str->len);
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-02-16 23:38:54 +08:00
|
|
|
#ifndef PHP_WIN32
|
2014-04-18 23:18:11 +08:00
|
|
|
*ep = p;
|
|
|
|
++ep;
|
2003-02-16 23:38:54 +08:00
|
|
|
#endif
|
2014-04-18 23:18:11 +08:00
|
|
|
p += l;
|
|
|
|
} else {
|
2014-05-09 19:01:38 +08:00
|
|
|
memcpy(p, str->val, str->len);
|
2003-02-16 23:38:54 +08:00
|
|
|
#ifndef PHP_WIN32
|
2014-04-18 23:18:11 +08:00
|
|
|
*ep = p;
|
|
|
|
++ep;
|
2003-02-16 23:38:54 +08:00
|
|
|
#endif
|
2014-05-09 19:01:38 +08:00
|
|
|
p += str->len + 1;
|
2003-02-16 23:38:54 +08:00
|
|
|
}
|
2013-10-10 20:21:14 +08:00
|
|
|
next_element:
|
2014-05-09 19:01:38 +08:00
|
|
|
STR_RELEASE(str);
|
2014-04-18 23:18:11 +08:00
|
|
|
} ZEND_HASH_FOREACH_END();
|
2003-02-16 23:38:54 +08:00
|
|
|
|
2010-09-06 18:28:04 +08:00
|
|
|
assert((uint)(p - env.envp) <= sizeenv);
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-02-16 23:38:54 +08:00
|
|
|
return env;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ _php_free_envp */
|
|
|
|
static void _php_free_envp(php_process_env_t env, int is_persistent)
|
|
|
|
{
|
|
|
|
#ifndef PHP_WIN32
|
|
|
|
if (env.envarray) {
|
|
|
|
pefree(env.envarray, is_persistent);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (env.envp) {
|
|
|
|
pefree(env.envp, is_persistent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2003-07-12 15:01:30 +08:00
|
|
|
/* {{{ proc_open_rsrc_dtor */
|
2014-02-14 17:40:11 +08:00
|
|
|
static void proc_open_rsrc_dtor(zend_resource *rsrc TSRMLS_DC)
|
2003-01-16 00:29:00 +08:00
|
|
|
{
|
2003-01-16 02:54:03 +08:00
|
|
|
struct php_process_handle *proc = (struct php_process_handle*)rsrc->ptr;
|
|
|
|
int i;
|
2003-01-16 00:29:00 +08:00
|
|
|
#ifdef PHP_WIN32
|
|
|
|
DWORD wstatus;
|
2003-01-16 02:54:03 +08:00
|
|
|
#elif HAVE_SYS_WAIT_H
|
|
|
|
int wstatus;
|
2013-01-15 18:25:55 +08:00
|
|
|
int waitpid_options = 0;
|
2003-01-16 02:54:03 +08:00
|
|
|
pid_t wait_pid;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Close all handles to avoid a deadlock */
|
|
|
|
for (i = 0; i < proc->npipes; i++) {
|
|
|
|
if (proc->pipes[i] != 0) {
|
2014-05-09 06:24:01 +08:00
|
|
|
GC_REFCOUNT(proc->pipes[i])--;
|
|
|
|
zend_list_close(proc->pipes[i]);
|
2003-01-16 02:54:03 +08:00
|
|
|
proc->pipes[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
#ifdef PHP_WIN32
|
2013-01-15 18:25:55 +08:00
|
|
|
if (FG(pclose_wait)) {
|
|
|
|
WaitForSingleObject(proc->childHandle, INFINITE);
|
|
|
|
}
|
2006-12-31 22:47:17 +08:00
|
|
|
GetExitCodeProcess(proc->childHandle, &wstatus);
|
2013-01-15 18:25:55 +08:00
|
|
|
if (wstatus == STILL_ACTIVE) {
|
|
|
|
FG(pclose_ret) = -1;
|
|
|
|
} else {
|
|
|
|
FG(pclose_ret) = wstatus;
|
|
|
|
}
|
2006-12-31 22:47:17 +08:00
|
|
|
CloseHandle(proc->childHandle);
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
#elif HAVE_SYS_WAIT_H
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2013-01-15 18:25:55 +08:00
|
|
|
if (!FG(pclose_wait)) {
|
|
|
|
waitpid_options = WNOHANG;
|
|
|
|
}
|
2003-01-16 00:29:00 +08:00
|
|
|
do {
|
2013-01-15 18:25:55 +08:00
|
|
|
wait_pid = waitpid(proc->child, &wstatus, waitpid_options);
|
2003-01-16 00:29:00 +08:00
|
|
|
} while (wait_pid == -1 && errno == EINTR);
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2013-01-15 18:25:55 +08:00
|
|
|
if (wait_pid <= 0) {
|
2003-01-16 00:29:00 +08:00
|
|
|
FG(pclose_ret) = -1;
|
2009-07-20 12:31:07 +08:00
|
|
|
} else {
|
2003-01-16 00:29:00 +08:00
|
|
|
if (WIFEXITED(wstatus))
|
|
|
|
wstatus = WEXITSTATUS(wstatus);
|
|
|
|
FG(pclose_ret) = wstatus;
|
|
|
|
}
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
#else
|
2003-01-16 00:29:00 +08:00
|
|
|
FG(pclose_ret) = -1;
|
|
|
|
#endif
|
2003-02-16 23:38:54 +08:00
|
|
|
_php_free_envp(proc->env, proc->is_persistent);
|
2003-01-16 02:54:03 +08:00
|
|
|
pefree(proc->command, proc->is_persistent);
|
|
|
|
pefree(proc, proc->is_persistent);
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
}
|
2003-07-12 15:01:30 +08:00
|
|
|
/* }}} */
|
2003-01-16 00:29:00 +08:00
|
|
|
|
2003-07-12 15:01:30 +08:00
|
|
|
/* {{{ PHP_MINIT_FUNCTION(proc_open) */
|
2003-01-16 00:29:00 +08:00
|
|
|
PHP_MINIT_FUNCTION(proc_open)
|
|
|
|
{
|
|
|
|
le_proc_open = zend_register_list_destructors_ex(proc_open_rsrc_dtor, NULL, "process", module_number);
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
2003-07-12 15:01:30 +08:00
|
|
|
/* }}} */
|
2003-02-16 01:18:57 +08:00
|
|
|
|
2007-02-15 03:13:31 +08:00
|
|
|
/* {{{ proto bool proc_terminate(resource process [, long signal])
|
2003-02-16 01:18:57 +08:00
|
|
|
kill a process opened by proc_open */
|
|
|
|
PHP_FUNCTION(proc_terminate)
|
|
|
|
{
|
|
|
|
zval *zproc;
|
|
|
|
struct php_process_handle *proc;
|
2003-02-16 01:33:11 +08:00
|
|
|
long sig_no = SIGTERM;
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-02-16 01:33:11 +08:00
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|l", &zproc, &sig_no) == FAILURE) {
|
2003-02-16 01:18:57 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
ZEND_FETCH_RESOURCE(proc, struct php_process_handle *, zproc, -1, "process", le_proc_open);
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-02-16 01:18:57 +08:00
|
|
|
#ifdef PHP_WIN32
|
2007-02-15 03:13:31 +08:00
|
|
|
if (TerminateProcess(proc->childHandle, 255)) {
|
|
|
|
RETURN_TRUE;
|
|
|
|
} else {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2003-02-16 01:18:57 +08:00
|
|
|
#else
|
2007-02-15 03:13:31 +08:00
|
|
|
if (kill(proc->child, sig_no) == 0) {
|
|
|
|
RETURN_TRUE;
|
|
|
|
} else {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2003-02-16 01:18:57 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
/* {{{ proto int proc_close(resource process)
|
|
|
|
close a process opened by proc_open */
|
|
|
|
PHP_FUNCTION(proc_close)
|
|
|
|
{
|
2003-01-16 02:54:03 +08:00
|
|
|
zval *zproc;
|
|
|
|
struct php_process_handle *proc;
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &zproc) == FAILURE) {
|
2003-01-16 00:29:00 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
ZEND_FETCH_RESOURCE(proc, struct php_process_handle *, zproc, -1, "process", le_proc_open);
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2013-01-15 18:25:55 +08:00
|
|
|
FG(pclose_wait) = 1;
|
2014-05-09 06:24:01 +08:00
|
|
|
zend_list_close(Z_RES_P(zproc));
|
2013-01-15 18:25:55 +08:00
|
|
|
FG(pclose_wait) = 0;
|
2003-01-16 00:29:00 +08:00
|
|
|
RETURN_LONG(FG(pclose_ret));
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
/* {{{ proto array proc_get_status(resource process)
|
|
|
|
get information about a process opened by proc_open */
|
|
|
|
PHP_FUNCTION(proc_get_status)
|
|
|
|
{
|
|
|
|
zval *zproc;
|
|
|
|
struct php_process_handle *proc;
|
|
|
|
#ifdef PHP_WIN32
|
|
|
|
DWORD wstatus;
|
|
|
|
#elif HAVE_SYS_WAIT_H
|
|
|
|
int wstatus;
|
|
|
|
pid_t wait_pid;
|
|
|
|
#endif
|
|
|
|
int running = 1, signaled = 0, stopped = 0;
|
|
|
|
int exitcode = -1, termsig = 0, stopsig = 0;
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &zproc) == FAILURE) {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
ZEND_FETCH_RESOURCE(proc, struct php_process_handle *, zproc, -1, "process", le_proc_open);
|
2003-01-16 02:54:03 +08:00
|
|
|
|
|
|
|
array_init(return_value);
|
|
|
|
|
2014-04-15 19:40:40 +08:00
|
|
|
add_assoc_string(return_value, "command", proc->command);
|
2003-01-25 00:45:34 +08:00
|
|
|
add_assoc_long(return_value, "pid", (long) proc->child);
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
#ifdef PHP_WIN32
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2006-12-31 22:47:17 +08:00
|
|
|
GetExitCodeProcess(proc->childHandle, &wstatus);
|
2003-01-16 02:54:03 +08:00
|
|
|
|
|
|
|
running = wstatus == STILL_ACTIVE;
|
2009-08-04 03:05:56 +08:00
|
|
|
exitcode = running ? -1 : wstatus;
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
#elif HAVE_SYS_WAIT_H
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
errno = 0;
|
|
|
|
wait_pid = waitpid(proc->child, &wstatus, WNOHANG|WUNTRACED);
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
if (wait_pid == proc->child) {
|
|
|
|
if (WIFEXITED(wstatus)) {
|
|
|
|
running = 0;
|
|
|
|
exitcode = WEXITSTATUS(wstatus);
|
|
|
|
}
|
|
|
|
if (WIFSIGNALED(wstatus)) {
|
2005-04-08 07:07:45 +08:00
|
|
|
running = 0;
|
2003-01-16 02:54:03 +08:00
|
|
|
signaled = 1;
|
2005-02-21 17:50:48 +08:00
|
|
|
#ifdef NETWARE
|
|
|
|
termsig = WIFTERMSIG(wstatus);
|
|
|
|
#else
|
2003-01-16 02:54:03 +08:00
|
|
|
termsig = WTERMSIG(wstatus);
|
2005-02-21 17:50:48 +08:00
|
|
|
#endif
|
2003-01-16 02:54:03 +08:00
|
|
|
}
|
|
|
|
if (WIFSTOPPED(wstatus)) {
|
|
|
|
stopped = 1;
|
|
|
|
stopsig = WSTOPSIG(wstatus);
|
|
|
|
}
|
2005-04-08 07:07:45 +08:00
|
|
|
} else if (wait_pid == -1) {
|
2005-03-08 00:17:12 +08:00
|
|
|
running = 0;
|
2003-01-16 02:54:03 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
add_assoc_bool(return_value, "running", running);
|
|
|
|
add_assoc_bool(return_value, "signaled", signaled);
|
|
|
|
add_assoc_bool(return_value, "stopped", stopped);
|
|
|
|
add_assoc_long(return_value, "exitcode", exitcode);
|
|
|
|
add_assoc_long(return_value, "termsig", termsig);
|
|
|
|
add_assoc_long(return_value, "stopsig", stopsig);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
/* {{{ handy definitions for portability/readability */
|
|
|
|
#ifdef PHP_WIN32
|
2011-10-24 20:39:55 +08:00
|
|
|
# define pipe(pair) (CreatePipe(&pair[0], &pair[1], &security, 0) ? 0 : -1)
|
2003-01-16 00:29:00 +08:00
|
|
|
|
|
|
|
# define COMSPEC_NT "cmd.exe"
|
|
|
|
|
|
|
|
static inline HANDLE dup_handle(HANDLE src, BOOL inherit, BOOL closeorig)
|
|
|
|
{
|
|
|
|
HANDLE copy, self = GetCurrentProcess();
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
if (!DuplicateHandle(self, src, self, ©, 0, inherit, DUPLICATE_SAME_ACCESS |
|
|
|
|
(closeorig ? DUPLICATE_CLOSE_SOURCE : 0)))
|
|
|
|
return NULL;
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline HANDLE dup_fd_as_handle(int fd)
|
|
|
|
{
|
|
|
|
return dup_handle((HANDLE)_get_osfhandle(fd), TRUE, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
# define close_descriptor(fd) CloseHandle(fd)
|
|
|
|
#else
|
|
|
|
# define close_descriptor(fd) close(fd)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DESC_PIPE 1
|
|
|
|
#define DESC_FILE 2
|
|
|
|
#define DESC_PARENT_MODE_WRITE 8
|
|
|
|
|
|
|
|
struct php_proc_open_descriptor_item {
|
|
|
|
int index; /* desired fd number in child process */
|
2003-01-16 02:54:03 +08:00
|
|
|
php_file_descriptor_t parentend, childend; /* fds for pipes in parent/child */
|
2003-01-16 00:29:00 +08:00
|
|
|
int mode; /* mode for proc_open code */
|
|
|
|
int mode_flags; /* mode flags for opening fds */
|
|
|
|
};
|
|
|
|
/* }}} */
|
|
|
|
|
2003-12-06 18:48:56 +08:00
|
|
|
/* {{{ proto resource proc_open(string command, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]])
|
2003-01-16 00:29:00 +08:00
|
|
|
Run a process with more control over it's file descriptors */
|
|
|
|
PHP_FUNCTION(proc_open)
|
|
|
|
{
|
2003-02-16 23:38:54 +08:00
|
|
|
char *command, *cwd=NULL;
|
2008-10-22 06:08:38 +08:00
|
|
|
int command_len, cwd_len = 0;
|
2003-01-16 00:29:00 +08:00
|
|
|
zval *descriptorspec;
|
|
|
|
zval *pipes;
|
2003-02-16 23:38:54 +08:00
|
|
|
zval *environment = NULL;
|
2003-12-05 21:45:00 +08:00
|
|
|
zval *other_options = NULL;
|
2003-02-16 23:38:54 +08:00
|
|
|
php_process_env_t env;
|
2003-01-16 00:29:00 +08:00
|
|
|
int ndesc = 0;
|
|
|
|
int i;
|
2014-02-14 17:40:11 +08:00
|
|
|
zval *descitem = NULL;
|
2014-04-18 23:18:11 +08:00
|
|
|
zend_string *str_index;
|
|
|
|
ulong nindex;
|
2003-01-16 02:54:03 +08:00
|
|
|
struct php_proc_open_descriptor_item descriptors[PHP_PROC_OPEN_MAX_DESCRIPTORS];
|
2003-01-16 00:29:00 +08:00
|
|
|
#ifdef PHP_WIN32
|
|
|
|
PROCESS_INFORMATION pi;
|
2006-12-31 22:47:17 +08:00
|
|
|
HANDLE childHandle;
|
2003-01-16 00:29:00 +08:00
|
|
|
STARTUPINFO si;
|
|
|
|
BOOL newprocok;
|
|
|
|
SECURITY_ATTRIBUTES security;
|
2009-06-09 08:25:37 +08:00
|
|
|
DWORD dwCreateFlags = 0;
|
2003-01-16 00:29:00 +08:00
|
|
|
char *command_with_cmd;
|
2003-12-05 21:45:00 +08:00
|
|
|
UINT old_error_mode;
|
2013-01-07 20:03:12 +08:00
|
|
|
char cur_cwd[MAXPATHLEN];
|
2004-09-29 14:04:36 +08:00
|
|
|
#endif
|
|
|
|
#ifdef NETWARE
|
2009-07-20 19:48:04 +08:00
|
|
|
char** child_argv = NULL;
|
2004-09-29 14:04:36 +08:00
|
|
|
char* command_dup = NULL;
|
|
|
|
char* orig_cwd = NULL;
|
|
|
|
int command_num_args = 0;
|
|
|
|
wiring_t channel;
|
2003-01-16 00:29:00 +08:00
|
|
|
#endif
|
2003-01-16 02:54:03 +08:00
|
|
|
php_process_id_t child;
|
|
|
|
struct php_process_handle *proc;
|
|
|
|
int is_persistent = 0; /* TODO: ensure that persistent procs will work */
|
2006-06-01 22:03:49 +08:00
|
|
|
#ifdef PHP_WIN32
|
2003-12-05 21:48:40 +08:00
|
|
|
int suppress_errors = 0;
|
2009-07-19 22:52:27 +08:00
|
|
|
int bypass_shell = 0;
|
2009-07-20 19:48:04 +08:00
|
|
|
#endif
|
2004-04-19 23:07:30 +08:00
|
|
|
#if PHP_CAN_DO_PTS
|
|
|
|
php_file_descriptor_t dev_ptmx = -1; /* master */
|
|
|
|
php_file_descriptor_t slave_pty = -1;
|
|
|
|
#endif
|
2003-01-16 00:29:00 +08:00
|
|
|
|
2009-07-20 19:48:04 +08:00
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "saz|s!a!a!", &command,
|
|
|
|
&command_len, &descriptorspec, &pipes, &cwd, &cwd_len, &environment,
|
2003-12-05 21:45:00 +08:00
|
|
|
&other_options) == FAILURE) {
|
2003-01-16 00:29:00 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2010-04-27 07:53:30 +08:00
|
|
|
command = pestrdup(command, is_persistent);
|
2009-07-20 19:48:04 +08:00
|
|
|
|
|
|
|
#ifdef PHP_WIN32
|
2003-12-05 21:45:00 +08:00
|
|
|
if (other_options) {
|
|
|
|
zval **item;
|
|
|
|
if (SUCCESS == zend_hash_find(Z_ARRVAL_P(other_options), "suppress_errors", sizeof("suppress_errors"), (void**)&item)) {
|
2007-01-06 17:02:02 +08:00
|
|
|
if ((Z_TYPE_PP(item) == IS_BOOL || Z_TYPE_PP(item) == IS_LONG) &&
|
|
|
|
Z_LVAL_PP(item)) {
|
2003-12-05 21:45:00 +08:00
|
|
|
suppress_errors = 1;
|
|
|
|
}
|
2010-08-31 00:52:48 +08:00
|
|
|
}
|
2007-01-06 17:02:02 +08:00
|
|
|
if (SUCCESS == zend_hash_find(Z_ARRVAL_P(other_options), "bypass_shell", sizeof("bypass_shell"), (void**)&item)) {
|
|
|
|
if ((Z_TYPE_PP(item) == IS_BOOL || Z_TYPE_PP(item) == IS_LONG) &&
|
|
|
|
Z_LVAL_PP(item)) {
|
|
|
|
bypass_shell = 1;
|
|
|
|
}
|
2010-08-31 00:52:48 +08:00
|
|
|
}
|
2009-07-19 22:52:27 +08:00
|
|
|
}
|
|
|
|
#endif
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-02-17 14:45:37 +08:00
|
|
|
command_len = strlen(command);
|
2003-02-17 11:26:16 +08:00
|
|
|
|
2003-02-16 23:38:54 +08:00
|
|
|
if (environment) {
|
|
|
|
env = _php_array_to_envp(environment, is_persistent TSRMLS_CC);
|
|
|
|
} else {
|
|
|
|
memset(&env, 0, sizeof(env));
|
|
|
|
}
|
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
memset(descriptors, 0, sizeof(descriptors));
|
|
|
|
|
|
|
|
#ifdef PHP_WIN32
|
|
|
|
/* we use this to allow the child to inherit handles */
|
|
|
|
memset(&security, 0, sizeof(security));
|
|
|
|
security.nLength = sizeof(security);
|
|
|
|
security.bInheritHandle = TRUE;
|
|
|
|
security.lpSecurityDescriptor = NULL;
|
|
|
|
#endif
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
/* walk the descriptor spec and set up files/pipes */
|
2014-04-18 23:18:11 +08:00
|
|
|
ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(descriptorspec), nindex, str_index, descitem) {
|
2014-02-14 17:40:11 +08:00
|
|
|
zval *ztype;
|
2003-01-16 00:29:00 +08:00
|
|
|
|
|
|
|
if (str_index) {
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "descriptor spec must be an integer indexed array");
|
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
descriptors[ndesc].index = nindex;
|
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
if (Z_TYPE_P(descitem) == IS_RESOURCE) {
|
2003-01-16 00:29:00 +08:00
|
|
|
/* should be a stream - try and dup the descriptor */
|
|
|
|
php_stream *stream;
|
2014-03-19 13:26:54 +08:00
|
|
|
php_socket_t fd;
|
2003-01-16 00:29:00 +08:00
|
|
|
|
|
|
|
php_stream_from_zval(stream, descitem);
|
|
|
|
|
|
|
|
if (FAILURE == php_stream_cast(stream, PHP_STREAM_AS_FD, (void **)&fd, REPORT_ERRORS)) {
|
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef PHP_WIN32
|
|
|
|
descriptors[ndesc].childend = dup_fd_as_handle(fd);
|
|
|
|
if (descriptors[ndesc].childend == NULL) {
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "unable to dup File-Handle for descriptor %d", nindex);
|
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
descriptors[ndesc].childend = dup(fd);
|
|
|
|
if (descriptors[ndesc].childend < 0) {
|
2003-08-29 00:49:57 +08:00
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "unable to dup File-Handle for descriptor %ld - %s", nindex, strerror(errno));
|
2003-01-16 00:29:00 +08:00
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
descriptors[ndesc].mode = DESC_FILE;
|
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
} else if (Z_TYPE_P(descitem) != IS_ARRAY) {
|
2003-01-16 00:29:00 +08:00
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Descriptor item must be either an array or a File-Handle");
|
|
|
|
goto exit_fail;
|
|
|
|
} else {
|
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
if ((ztype = zend_hash_index_find(Z_ARRVAL_P(descitem), 0)) != NULL) {
|
2003-01-16 00:29:00 +08:00
|
|
|
convert_to_string_ex(ztype);
|
|
|
|
} else {
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Missing handle qualifier in array");
|
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
if (strcmp(Z_STRVAL_P(ztype), "pipe") == 0) {
|
2003-01-16 02:54:03 +08:00
|
|
|
php_file_descriptor_t newpipe[2];
|
2014-02-14 17:40:11 +08:00
|
|
|
zval *zmode;
|
2003-01-16 00:29:00 +08:00
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
if ((zmode = zend_hash_index_find(Z_ARRVAL_P(descitem), 1)) != NULL) {
|
2003-01-16 00:29:00 +08:00
|
|
|
convert_to_string_ex(zmode);
|
|
|
|
} else {
|
2003-08-29 00:49:57 +08:00
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Missing mode parameter for 'pipe'");
|
2003-01-16 00:29:00 +08:00
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
descriptors[ndesc].mode = DESC_PIPE;
|
|
|
|
|
|
|
|
if (0 != pipe(newpipe)) {
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "unable to create pipe %s", strerror(errno));
|
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
if (strncmp(Z_STRVAL_P(zmode), "w", 1) != 0) {
|
2003-01-16 00:29:00 +08:00
|
|
|
descriptors[ndesc].parentend = newpipe[1];
|
|
|
|
descriptors[ndesc].childend = newpipe[0];
|
|
|
|
descriptors[ndesc].mode |= DESC_PARENT_MODE_WRITE;
|
|
|
|
} else {
|
|
|
|
descriptors[ndesc].parentend = newpipe[0];
|
|
|
|
descriptors[ndesc].childend = newpipe[1];
|
|
|
|
}
|
|
|
|
#ifdef PHP_WIN32
|
|
|
|
/* don't let the child inherit the parent side of the pipe */
|
|
|
|
descriptors[ndesc].parentend = dup_handle(descriptors[ndesc].parentend, FALSE, TRUE);
|
|
|
|
#endif
|
|
|
|
descriptors[ndesc].mode_flags = descriptors[ndesc].mode & DESC_PARENT_MODE_WRITE ? O_WRONLY : O_RDONLY;
|
|
|
|
#ifdef PHP_WIN32
|
2014-02-14 17:40:11 +08:00
|
|
|
if (Z_STRLEN_P(zmode) >= 2 && Z_STRVAL_P(zmode)[1] == 'b')
|
2003-01-16 00:29:00 +08:00
|
|
|
descriptors[ndesc].mode_flags |= O_BINARY;
|
|
|
|
#endif
|
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
} else if (strcmp(Z_STRVAL_P(ztype), "file") == 0) {
|
|
|
|
zval *zfile, *zmode;
|
2014-03-19 13:26:54 +08:00
|
|
|
php_socket_t fd;
|
2003-01-16 00:29:00 +08:00
|
|
|
php_stream *stream;
|
|
|
|
|
|
|
|
descriptors[ndesc].mode = DESC_FILE;
|
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
if ((zfile = zend_hash_index_find(Z_ARRVAL_P(descitem), 1)) != NULL) {
|
2003-01-16 00:29:00 +08:00
|
|
|
convert_to_string_ex(zfile);
|
|
|
|
} else {
|
2003-08-29 00:49:57 +08:00
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Missing file name parameter for 'file'");
|
2003-01-16 00:29:00 +08:00
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
if ((zmode = zend_hash_index_find(Z_ARRVAL_P(descitem), 2)) != NULL) {
|
2003-01-16 00:29:00 +08:00
|
|
|
convert_to_string_ex(zmode);
|
|
|
|
} else {
|
2003-08-29 00:49:57 +08:00
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Missing mode parameter for 'file'");
|
2003-01-16 00:29:00 +08:00
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* try a wrapper */
|
2014-02-14 17:40:11 +08:00
|
|
|
stream = php_stream_open_wrapper(Z_STRVAL_P(zfile), Z_STRVAL_P(zmode),
|
2010-04-27 07:53:30 +08:00
|
|
|
REPORT_ERRORS|STREAM_WILL_CAST, NULL);
|
2003-01-16 00:29:00 +08:00
|
|
|
|
|
|
|
/* force into an fd */
|
|
|
|
if (stream == NULL || FAILURE == php_stream_cast(stream,
|
|
|
|
PHP_STREAM_CAST_RELEASE|PHP_STREAM_AS_FD,
|
|
|
|
(void **)&fd, REPORT_ERRORS)) {
|
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef PHP_WIN32
|
2006-12-31 23:27:13 +08:00
|
|
|
descriptors[ndesc].childend = dup_fd_as_handle(fd);
|
|
|
|
_close(fd);
|
2007-09-12 19:42:43 +08:00
|
|
|
|
|
|
|
/* simulate the append mode by fseeking to the end of the file
|
|
|
|
this introduces a potential race-condition, but it is the best we can do, though */
|
|
|
|
if (strchr(Z_STRVAL_PP(zmode), 'a')) {
|
|
|
|
SetFilePointer(descriptors[ndesc].childend, 0, NULL, FILE_END);
|
|
|
|
}
|
2003-01-16 00:29:00 +08:00
|
|
|
#else
|
|
|
|
descriptors[ndesc].childend = fd;
|
|
|
|
#endif
|
2014-02-14 17:40:11 +08:00
|
|
|
} else if (strcmp(Z_STRVAL_P(ztype), "pty") == 0) {
|
2004-04-19 23:07:30 +08:00
|
|
|
#if PHP_CAN_DO_PTS
|
|
|
|
if (dev_ptmx == -1) {
|
|
|
|
/* open things up */
|
|
|
|
dev_ptmx = open("/dev/ptmx", O_RDWR);
|
|
|
|
if (dev_ptmx == -1) {
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "failed to open /dev/ptmx, errno %d", errno);
|
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
grantpt(dev_ptmx);
|
|
|
|
unlockpt(dev_ptmx);
|
|
|
|
slave_pty = open(ptsname(dev_ptmx), O_RDWR);
|
2003-01-16 00:29:00 +08:00
|
|
|
|
2004-04-19 23:07:30 +08:00
|
|
|
if (slave_pty == -1) {
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "failed to open slave pty, errno %d", errno);
|
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
descriptors[ndesc].mode = DESC_PIPE;
|
|
|
|
descriptors[ndesc].childend = dup(slave_pty);
|
|
|
|
descriptors[ndesc].parentend = dup(dev_ptmx);
|
|
|
|
descriptors[ndesc].mode_flags = O_RDWR;
|
|
|
|
#else
|
2005-06-20 19:10:11 +08:00
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "pty pseudo terminal not supported on this system");
|
2004-04-19 23:07:30 +08:00
|
|
|
goto exit_fail;
|
|
|
|
#endif
|
2003-01-16 00:29:00 +08:00
|
|
|
} else {
|
2014-02-14 17:40:11 +08:00
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s is not a valid descriptor spec/mode", Z_STRVAL_P(ztype));
|
2003-01-16 00:29:00 +08:00
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
if (++ndesc == PHP_PROC_OPEN_MAX_DESCRIPTORS)
|
2003-01-16 00:29:00 +08:00
|
|
|
break;
|
2014-04-18 23:18:11 +08:00
|
|
|
} ZEND_HASH_FOREACH_END();
|
2003-01-16 00:29:00 +08:00
|
|
|
|
|
|
|
#ifdef PHP_WIN32
|
2010-09-08 16:34:57 +08:00
|
|
|
if (cwd == NULL) {
|
|
|
|
char *getcwd_result;
|
|
|
|
getcwd_result = VCWD_GETCWD(cur_cwd, MAXPATHLEN);
|
|
|
|
if (!getcwd_result) {
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot get current directory");
|
|
|
|
goto exit_fail;
|
|
|
|
}
|
2013-01-07 20:03:12 +08:00
|
|
|
cwd = cur_cwd;
|
2010-09-08 16:34:57 +08:00
|
|
|
}
|
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
memset(&si, 0, sizeof(si));
|
|
|
|
si.cb = sizeof(si);
|
|
|
|
si.dwFlags = STARTF_USESTDHANDLES;
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
si.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
|
|
|
|
si.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
|
|
|
|
si.hStdError = GetStdHandle(STD_ERROR_HANDLE);
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
/* redirect stdin/stdout/stderr if requested */
|
|
|
|
for (i = 0; i < ndesc; i++) {
|
|
|
|
switch(descriptors[i].index) {
|
|
|
|
case 0:
|
|
|
|
si.hStdInput = descriptors[i].childend;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
si.hStdOutput = descriptors[i].childend;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
si.hStdError = descriptors[i].childend;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
memset(&pi, 0, sizeof(pi));
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-12-05 21:45:00 +08:00
|
|
|
if (suppress_errors) {
|
|
|
|
old_error_mode = SetErrorMode(SEM_FAILCRITICALERRORS|SEM_NOGPFAULTERRORBOX);
|
|
|
|
}
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2009-06-09 08:25:37 +08:00
|
|
|
dwCreateFlags = NORMAL_PRIORITY_CLASS;
|
|
|
|
if(strcmp(sapi_module.name, "cli") != 0) {
|
|
|
|
dwCreateFlags |= CREATE_NO_WINDOW;
|
|
|
|
}
|
|
|
|
|
2007-01-06 17:02:02 +08:00
|
|
|
if (bypass_shell) {
|
2009-06-09 08:25:37 +08:00
|
|
|
newprocok = CreateProcess(NULL, command, &security, &security, TRUE, dwCreateFlags, env.envp, cwd, &si, &pi);
|
2007-01-06 17:02:02 +08:00
|
|
|
} else {
|
2011-10-24 18:53:17 +08:00
|
|
|
spprintf(&command_with_cmd, 0, "%s /c %s", COMSPEC_NT, command);
|
2007-01-06 17:02:02 +08:00
|
|
|
|
2009-06-09 08:25:37 +08:00
|
|
|
newprocok = CreateProcess(NULL, command_with_cmd, &security, &security, TRUE, dwCreateFlags, env.envp, cwd, &si, &pi);
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2007-01-06 17:02:02 +08:00
|
|
|
efree(command_with_cmd);
|
|
|
|
}
|
2003-12-05 21:45:00 +08:00
|
|
|
|
|
|
|
if (suppress_errors) {
|
|
|
|
SetErrorMode(old_error_mode);
|
|
|
|
}
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
if (FALSE == newprocok) {
|
2008-08-21 19:27:57 +08:00
|
|
|
DWORD dw = GetLastError();
|
|
|
|
|
2007-01-10 00:27:17 +08:00
|
|
|
/* clean up all the descriptors */
|
|
|
|
for (i = 0; i < ndesc; i++) {
|
|
|
|
CloseHandle(descriptors[i].childend);
|
|
|
|
if (descriptors[i].parentend) {
|
|
|
|
CloseHandle(descriptors[i].parentend);
|
|
|
|
}
|
|
|
|
}
|
2008-08-21 19:27:57 +08:00
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "CreateProcess failed, error code - %u", dw);
|
2003-01-16 00:29:00 +08:00
|
|
|
goto exit_fail;
|
|
|
|
}
|
|
|
|
|
2006-12-31 22:47:17 +08:00
|
|
|
childHandle = pi.hProcess;
|
|
|
|
child = pi.dwProcessId;
|
2003-01-16 00:29:00 +08:00
|
|
|
CloseHandle(pi.hThread);
|
|
|
|
|
2005-07-01 14:49:29 +08:00
|
|
|
#elif defined(NETWARE)
|
|
|
|
if (cwd) {
|
|
|
|
orig_cwd = getcwd(NULL, PATH_MAX);
|
|
|
|
chdir2(cwd);
|
|
|
|
}
|
|
|
|
channel.infd = descriptors[0].childend;
|
|
|
|
channel.outfd = descriptors[1].childend;
|
|
|
|
channel.errfd = -1;
|
|
|
|
/* Duplicate the command as processing downwards will modify it*/
|
|
|
|
command_dup = strdup(command);
|
2007-02-24 11:24:40 +08:00
|
|
|
if (!command_dup) {
|
|
|
|
goto exit_fail;
|
|
|
|
}
|
2005-07-01 14:49:29 +08:00
|
|
|
/* get a number of args */
|
|
|
|
construct_argc_argv(command_dup, NULL, &command_num_args, NULL);
|
|
|
|
child_argv = (char**) malloc((command_num_args + 1) * sizeof(char*));
|
|
|
|
if(!child_argv) {
|
|
|
|
free(command_dup);
|
|
|
|
if (cwd && orig_cwd) {
|
|
|
|
chdir2(orig_cwd);
|
|
|
|
free(orig_cwd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* fill the child arg vector */
|
|
|
|
construct_argc_argv(command_dup, NULL, &command_num_args, child_argv);
|
|
|
|
child_argv[command_num_args] = NULL;
|
|
|
|
child = procve(child_argv[0], PROC_DETACHED|PROC_INHERIT_CWD, NULL, &channel, NULL, NULL, 0, NULL, (const char**)child_argv);
|
|
|
|
free(child_argv);
|
|
|
|
free(command_dup);
|
|
|
|
if (cwd && orig_cwd) {
|
|
|
|
chdir2(orig_cwd);
|
|
|
|
free(orig_cwd);
|
|
|
|
}
|
|
|
|
if (child < 0) {
|
|
|
|
/* failed to fork() */
|
|
|
|
/* clean up all the descriptors */
|
|
|
|
for (i = 0; i < ndesc; i++) {
|
|
|
|
close(descriptors[i].childend);
|
2007-01-02 23:29:09 +08:00
|
|
|
if (descriptors[i].parentend)
|
|
|
|
close(descriptors[i].parentend);
|
2005-07-01 14:49:29 +08:00
|
|
|
}
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "procve failed - %s", strerror(errno));
|
|
|
|
goto exit_fail;
|
|
|
|
}
|
2003-01-16 02:54:03 +08:00
|
|
|
#elif HAVE_FORK
|
2003-01-16 00:29:00 +08:00
|
|
|
/* the unix way */
|
|
|
|
child = fork();
|
|
|
|
|
|
|
|
if (child == 0) {
|
|
|
|
/* this is the child process */
|
|
|
|
|
2004-04-19 23:07:30 +08:00
|
|
|
#if PHP_CAN_DO_PTS
|
|
|
|
if (dev_ptmx >= 0) {
|
|
|
|
int my_pid = getpid();
|
|
|
|
|
2004-05-29 08:30:11 +08:00
|
|
|
#ifdef TIOCNOTTY
|
2004-04-19 23:07:30 +08:00
|
|
|
/* detach from original tty. Might only need this if isatty(0) is true */
|
|
|
|
ioctl(0,TIOCNOTTY,NULL);
|
2004-05-29 08:30:11 +08:00
|
|
|
#else
|
|
|
|
setsid();
|
|
|
|
#endif
|
2004-04-19 23:07:30 +08:00
|
|
|
/* become process group leader */
|
|
|
|
setpgid(my_pid, my_pid);
|
|
|
|
tcsetpgrp(0, my_pid);
|
|
|
|
}
|
|
|
|
#endif
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
/* close those descriptors that we just opened for the parent stuff,
|
|
|
|
* dup new descriptors into required descriptors and close the original
|
|
|
|
* cruft */
|
|
|
|
for (i = 0; i < ndesc; i++) {
|
|
|
|
switch (descriptors[i].mode & ~DESC_PARENT_MODE_WRITE) {
|
|
|
|
case DESC_PIPE:
|
|
|
|
close(descriptors[i].parentend);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (dup2(descriptors[i].childend, descriptors[i].index) < 0)
|
|
|
|
perror("dup2");
|
|
|
|
if (descriptors[i].childend != descriptors[i].index)
|
|
|
|
close(descriptors[i].childend);
|
|
|
|
}
|
2004-04-19 23:07:30 +08:00
|
|
|
|
|
|
|
#if PHP_CAN_DO_PTS
|
|
|
|
if (dev_ptmx >= 0) {
|
|
|
|
close(dev_ptmx);
|
|
|
|
close(slave_pty);
|
|
|
|
}
|
|
|
|
#endif
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2003-02-16 23:38:54 +08:00
|
|
|
if (cwd) {
|
2011-05-17 01:22:41 +08:00
|
|
|
php_ignore_value(chdir(cwd));
|
2003-02-16 23:38:54 +08:00
|
|
|
}
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2009-07-20 19:48:04 +08:00
|
|
|
if (env.envarray) {
|
2003-02-16 23:38:54 +08:00
|
|
|
execle("/bin/sh", "sh", "-c", command, NULL, env.envarray);
|
|
|
|
} else {
|
|
|
|
execl("/bin/sh", "sh", "-c", command, NULL);
|
|
|
|
}
|
2003-01-16 00:29:00 +08:00
|
|
|
_exit(127);
|
|
|
|
|
|
|
|
} else if (child < 0) {
|
|
|
|
/* failed to fork() */
|
|
|
|
|
|
|
|
/* clean up all the descriptors */
|
|
|
|
for (i = 0; i < ndesc; i++) {
|
|
|
|
close(descriptors[i].childend);
|
2007-01-02 23:29:09 +08:00
|
|
|
if (descriptors[i].parentend)
|
|
|
|
close(descriptors[i].parentend);
|
2003-01-16 00:29:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "fork failed - %s", strerror(errno));
|
|
|
|
|
|
|
|
goto exit_fail;
|
|
|
|
|
|
|
|
}
|
2003-01-16 02:54:03 +08:00
|
|
|
#else
|
|
|
|
# error You lose (configure should not have let you get here)
|
2003-01-16 00:29:00 +08:00
|
|
|
#endif
|
|
|
|
/* we forked/spawned and this is the parent */
|
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
proc = (struct php_process_handle*)pemalloc(sizeof(struct php_process_handle), is_persistent);
|
|
|
|
proc->is_persistent = is_persistent;
|
|
|
|
proc->command = command;
|
|
|
|
proc->npipes = ndesc;
|
|
|
|
proc->child = child;
|
2006-12-31 22:47:17 +08:00
|
|
|
#ifdef PHP_WIN32
|
|
|
|
proc->childHandle = childHandle;
|
|
|
|
#endif
|
2003-02-16 23:38:54 +08:00
|
|
|
proc->env = env;
|
2003-01-16 02:54:03 +08:00
|
|
|
|
2003-07-12 14:50:32 +08:00
|
|
|
if (pipes != NULL) {
|
2014-04-15 19:40:40 +08:00
|
|
|
ZVAL_DEREF(pipes);
|
2003-07-12 14:50:32 +08:00
|
|
|
zval_dtor(pipes);
|
2014-03-03 16:50:35 +08:00
|
|
|
}
|
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
array_init(pipes);
|
|
|
|
|
2004-04-19 23:07:30 +08:00
|
|
|
#if PHP_CAN_DO_PTS
|
|
|
|
if (dev_ptmx >= 0) {
|
|
|
|
close(dev_ptmx);
|
|
|
|
close(slave_pty);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-01-16 00:29:00 +08:00
|
|
|
/* clean up all the child ends and then open streams on the parent
|
|
|
|
* ends, where appropriate */
|
|
|
|
for (i = 0; i < ndesc; i++) {
|
|
|
|
char *mode_string=NULL;
|
2004-04-19 23:07:30 +08:00
|
|
|
php_stream *stream = NULL;
|
2003-01-16 00:29:00 +08:00
|
|
|
|
|
|
|
close_descriptor(descriptors[i].childend);
|
|
|
|
|
|
|
|
switch (descriptors[i].mode & ~DESC_PARENT_MODE_WRITE) {
|
|
|
|
case DESC_PIPE:
|
|
|
|
switch(descriptors[i].mode_flags) {
|
|
|
|
#ifdef PHP_WIN32
|
|
|
|
case O_WRONLY|O_BINARY:
|
|
|
|
mode_string = "wb";
|
|
|
|
break;
|
|
|
|
case O_RDONLY|O_BINARY:
|
|
|
|
mode_string = "rb";
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case O_WRONLY:
|
|
|
|
mode_string = "w";
|
|
|
|
break;
|
|
|
|
case O_RDONLY:
|
|
|
|
mode_string = "r";
|
|
|
|
break;
|
2004-04-19 23:07:30 +08:00
|
|
|
case O_RDWR:
|
|
|
|
mode_string = "r+";
|
|
|
|
break;
|
2003-01-16 00:29:00 +08:00
|
|
|
}
|
|
|
|
#ifdef PHP_WIN32
|
2007-04-16 16:09:56 +08:00
|
|
|
stream = php_stream_fopen_from_fd(_open_osfhandle((zend_intptr_t)descriptors[i].parentend,
|
2004-04-19 23:07:30 +08:00
|
|
|
descriptors[i].mode_flags), mode_string, NULL);
|
2003-01-16 00:29:00 +08:00
|
|
|
#else
|
2004-04-19 23:07:30 +08:00
|
|
|
stream = php_stream_fopen_from_fd(descriptors[i].parentend, mode_string, NULL);
|
2007-02-14 03:53:42 +08:00
|
|
|
# if defined(F_SETFD) && defined(FD_CLOEXEC)
|
|
|
|
/* mark the descriptor close-on-exec, so that it won't be inherited by potential other children */
|
|
|
|
fcntl(descriptors[i].parentend, F_SETFD, FD_CLOEXEC);
|
|
|
|
# endif
|
2003-01-16 00:29:00 +08:00
|
|
|
#endif
|
2004-04-19 23:07:30 +08:00
|
|
|
if (stream) {
|
2014-02-14 17:40:11 +08:00
|
|
|
zval retfp;
|
2003-01-16 00:29:00 +08:00
|
|
|
|
2004-04-19 23:07:30 +08:00
|
|
|
/* nasty hack; don't copy it */
|
2008-07-23 19:25:14 +08:00
|
|
|
stream->flags |= PHP_STREAM_FLAG_NO_SEEK;
|
2010-08-31 00:52:48 +08:00
|
|
|
|
2014-02-14 17:40:11 +08:00
|
|
|
php_stream_to_zval(stream, &retfp);
|
|
|
|
add_index_zval(pipes, descriptors[i].index, &retfp);
|
2003-01-16 02:54:03 +08:00
|
|
|
|
2014-04-09 19:05:22 +08:00
|
|
|
proc->pipes[i] = Z_RES(retfp);
|
|
|
|
Z_ADDREF(retfp);
|
2003-01-16 00:29:00 +08:00
|
|
|
}
|
|
|
|
break;
|
2003-01-16 02:54:03 +08:00
|
|
|
default:
|
2014-02-14 17:40:11 +08:00
|
|
|
proc->pipes[i] = NULL;
|
2003-01-16 00:29:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-16 02:54:03 +08:00
|
|
|
ZEND_REGISTER_RESOURCE(return_value, proc, le_proc_open);
|
2003-01-16 00:29:00 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
exit_fail:
|
2003-02-16 23:38:54 +08:00
|
|
|
_php_free_envp(env, is_persistent);
|
2003-01-16 02:54:03 +08:00
|
|
|
pefree(command, is_persistent);
|
2004-04-19 23:07:30 +08:00
|
|
|
#if PHP_CAN_DO_PTS
|
|
|
|
if (dev_ptmx >= 0) {
|
|
|
|
close(dev_ptmx);
|
|
|
|
}
|
|
|
|
if (slave_pty >= 0) {
|
|
|
|
close(slave_pty);
|
|
|
|
}
|
|
|
|
#endif
|
2003-01-16 00:29:00 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
#endif /* PHP_CAN_SUPPORT_PROC_OPEN */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
* vim600: sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: sw=4 ts=4
|
|
|
|
*/
|