php-src/ext/posix/posix.c

1009 lines
21 KiB
C
Raw Normal View History

1999-12-03 13:13:48 +00:00
/*
+----------------------------------------------------------------------+
2001-12-11 15:32:16 +00:00
| PHP Version 4 |
1999-12-03 13:13:48 +00:00
+----------------------------------------------------------------------+
2001-12-11 15:32:16 +00:00
| Copyright (c) 1997-2002 The PHP Group |
1999-12-03 13:13:48 +00:00
+----------------------------------------------------------------------+
| This source file is subject to version 2.02 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| http://www.php.net/license/2_02.txt. |
| 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. |
1999-12-03 13:13:48 +00:00
+----------------------------------------------------------------------+
2002-02-28 08:29:35 +00:00
| Author: Kristian Koehntopp <kris@koehntopp.de> |
1999-12-03 13:13:48 +00:00
+----------------------------------------------------------------------+
*/
1999-12-03 13:13:48 +00:00
/* $Id$ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
1999-12-03 13:13:48 +00:00
#include "php.h"
2000-04-05 21:43:03 +00:00
#include "ext/standard/info.h"
2001-08-08 02:02:02 +00:00
#include "ext/standard/php_string.h"
#include "php_posix.h"
1999-12-03 13:13:48 +00:00
#if HAVE_POSIX
2001-08-08 02:02:02 +00:00
1999-12-03 13:13:48 +00:00
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
2001-08-08 02:02:02 +00:00
1999-12-03 13:13:48 +00:00
#include <unistd.h>
#include <sys/resource.h>
#include <sys/utsname.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <signal.h>
#include <sys/times.h>
#include <errno.h>
#include <grp.h>
#include <pwd.h>
ZEND_DECLARE_MODULE_GLOBALS(posix)
1999-12-03 13:13:48 +00:00
/* {{{ posix_functions[]
*/
1999-12-03 13:13:48 +00:00
function_entry posix_functions[] = {
/* POSIX.1, 3.3 */
PHP_FE(posix_kill, NULL)
/* POSIX.1, 4.1 */
PHP_FE(posix_getpid, NULL)
PHP_FE(posix_getppid, NULL)
/* POSIX.1, 4.2 */
PHP_FE(posix_getuid, NULL)
PHP_FE(posix_setuid, NULL)
PHP_FE(posix_geteuid, NULL)
#ifdef HAVE_SETEUID
PHP_FE(posix_seteuid, NULL)
#endif
1999-12-03 13:13:48 +00:00
PHP_FE(posix_getgid, NULL)
PHP_FE(posix_setgid, NULL)
PHP_FE(posix_getegid, NULL)
2002-04-10 06:22:12 +00:00
#ifdef HAVE_SETEGID
PHP_FE(posix_setegid, NULL)
2002-04-10 06:22:12 +00:00
#endif
1999-12-03 13:13:48 +00:00
PHP_FE(posix_getgroups, NULL)
PHP_FE(posix_getlogin, NULL)
/* POSIX.1, 4.3 */
PHP_FE(posix_getpgrp, NULL)
#ifdef HAVE_SETSID
1999-12-03 13:13:48 +00:00
PHP_FE(posix_setsid, NULL)
#endif
1999-12-03 13:13:48 +00:00
PHP_FE(posix_setpgid, NULL)
/* Non-Posix functions which are common */
#ifdef HAVE_GETPGID
1999-12-03 13:13:48 +00:00
PHP_FE(posix_getpgid, NULL)
#endif /* HAVE_GETPGID */
#ifdef HAVE_GETSID
1999-12-03 13:13:48 +00:00
PHP_FE(posix_getsid, NULL)
#endif /* HAVE_GETSID */
1999-12-03 13:13:48 +00:00
/* POSIX.1, 4.4 */
PHP_FE(posix_uname, NULL)
/* POSIX.1, 4.5 */
PHP_FE(posix_times, NULL)
/* POSIX.1, 4.7 */
#ifdef HAVE_CTERMID
1999-12-03 13:13:48 +00:00
PHP_FE(posix_ctermid, NULL)
#endif
1999-12-03 13:13:48 +00:00
PHP_FE(posix_ttyname, NULL)
PHP_FE(posix_isatty, NULL)
/* POSIX.1, 5.2 */
PHP_FE(posix_getcwd, NULL)
/* POSIX.1, 5.4 */
#ifdef HAVE_MKFIFO
1999-12-03 13:13:48 +00:00
PHP_FE(posix_mkfifo, NULL)
#endif
1999-12-03 13:13:48 +00:00
/* POSIX.1, 9.2 */
PHP_FE(posix_getgrnam, NULL)
PHP_FE(posix_getgrgid, NULL)
PHP_FE(posix_getpwnam, NULL)
PHP_FE(posix_getpwuid, NULL)
#ifdef HAVE_GETRLIMIT
1999-12-03 13:13:48 +00:00
PHP_FE(posix_getrlimit, NULL)
#endif
PHP_FE(posix_get_last_error, NULL)
PHP_FALIAS(posix_errno, posix_get_last_error, NULL)
PHP_FE(posix_strerror, NULL)
1999-12-03 13:13:48 +00:00
{NULL, NULL, NULL}
};
/* }}} */
1999-12-03 13:13:48 +00:00
/* {{{ PHP_MINFO_FUNCTION
*/
static PHP_MINFO_FUNCTION(posix)
{
php_info_print_table_start();
php_info_print_table_row(2, "Revision", "$Revision$");
php_info_print_table_end();
}
/* }}} */
static void php_posix_init_globals(zend_posix_globals *posix_globals TSRMLS_DC)
{
posix_globals->last_error = 0;
}
/* {{{ PHP_MINIT_FUNCTION(posix)
*/
static PHP_MINIT_FUNCTION(posix)
{
ZEND_INIT_MODULE_GLOBALS(posix, php_posix_init_globals, NULL);
return SUCCESS;
}
/* }}} */
1999-12-03 13:13:48 +00:00
static PHP_MINFO_FUNCTION(posix);
/* {{{ posix_module_entry
*/
zend_module_entry posix_module_entry = {
STANDARD_MODULE_HEADER,
"posix",
1999-12-03 13:13:48 +00:00
posix_functions,
PHP_MINIT(posix),
1999-12-03 13:13:48 +00:00
NULL,
NULL,
NULL,
PHP_MINFO(posix),
NO_VERSION_YET,
1999-12-03 13:13:48 +00:00
STANDARD_MODULE_PROPERTIES
};
/* }}} */
1999-12-03 13:13:48 +00:00
2000-05-23 09:33:51 +00:00
#ifdef COMPILE_DL_POSIX
ZEND_GET_MODULE(posix)
1999-12-03 13:13:48 +00:00
#endif
/* {{{ proto bool posix_kill(int pid, int sig)
1999-12-03 13:13:48 +00:00
Send a signal to a process (POSIX.1, 3.3.2) */
PHP_FUNCTION(posix_kill)
{
long pid, sig;
1999-12-03 13:13:48 +00:00
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ll", &pid, &sig) == FAILURE)
return;
1999-12-03 13:13:48 +00:00
if (kill(pid, sig) < 0) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
RETURN_TRUE;
}
/* }}} */
/* {{{ proto int posix_getpid(void)
1999-12-03 13:13:48 +00:00
Get the current process id (POSIX.1, 4.1.1) */
PHP_FUNCTION(posix_getpid)
{
pid_t pid;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
1999-12-03 13:13:48 +00:00
pid = getpid();
RETURN_LONG(pid);
}
/* }}} */
/* {{{ proto int posix_getppid(void)
1999-12-03 13:13:48 +00:00
Get the parent process id (POSIX.1, 4.1.1) */
PHP_FUNCTION(posix_getppid)
{
pid_t ppid;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
1999-12-03 13:13:48 +00:00
ppid = getppid();
RETURN_LONG(ppid);
}
/* }}} */
/* {{{ proto int posix_getuid(void)
1999-12-03 13:13:48 +00:00
Get the current user id (POSIX.1, 4.2.1) */
PHP_FUNCTION(posix_getuid)
{
uid_t uid;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
1999-12-03 13:13:48 +00:00
uid = getuid();
RETURN_LONG(uid);
}
/* }}} */
/* {{{ proto int posix_getgid(void)
1999-12-03 13:13:48 +00:00
Get the current group id (POSIX.1, 4.2.1) */
PHP_FUNCTION(posix_getgid)
{
gid_t gid;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
1999-12-03 13:13:48 +00:00
gid = getgid();
RETURN_LONG(gid);
}
/* }}} */
/* {{{ proto int posix_geteuid(void)
1999-12-03 13:13:48 +00:00
Get the current effective user id (POSIX.1, 4.2.1) */
PHP_FUNCTION(posix_geteuid)
{
uid_t uid;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
1999-12-03 13:13:48 +00:00
uid = geteuid();
RETURN_LONG(uid);
}
/* }}} */
/* {{{ proto int posix_getegid(void)
1999-12-03 13:13:48 +00:00
Get the current effective group id (POSIX.1, 4.2.1) */
PHP_FUNCTION(posix_getegid)
{
gid_t gid;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
1999-12-03 13:13:48 +00:00
gid = getegid();
RETURN_LONG(gid);
}
1999-12-03 13:13:48 +00:00
/* }}} */
/* {{{ proto bool posix_setuid(long uid)
1999-12-03 13:13:48 +00:00
Set user id (POSIX.1, 4.2.2) */
PHP_FUNCTION(posix_setuid)
{
long uid;
1999-12-03 13:13:48 +00:00
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &uid) == FAILURE)
return;
1999-12-03 13:13:48 +00:00
if (setuid(uid) < 0) {
POSIX_G(last_error) = errno;
RETURN_FALSE;
1999-12-03 13:13:48 +00:00
}
RETURN_TRUE;
1999-12-03 13:13:48 +00:00
}
/* }}} */
/* {{{ proto bool posix_setgid(int uid)
1999-12-03 13:13:48 +00:00
Set group id (POSIX.1, 4.2.2) */
PHP_FUNCTION(posix_setgid)
{
long gid;
1999-12-03 13:13:48 +00:00
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &gid) == FAILURE)
return;
1999-12-03 13:13:48 +00:00
if (setgid(gid) < 0) {
POSIX_G(last_error) = errno;
RETURN_FALSE;
1999-12-03 13:13:48 +00:00
}
RETURN_TRUE;
1999-12-03 13:13:48 +00:00
}
/* }}} */
/* {{{ proto bool posix_seteuid(long uid)
Set effective user id */
#ifdef HAVE_SETEUID
PHP_FUNCTION(posix_seteuid)
{
long euid;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &euid) == FAILURE)
return;
if (seteuid(euid) < 0) {
POSIX_G(last_error) = errno;
RETURN_FALSE;
}
RETURN_TRUE;
}
#endif
/* }}} */
/* {{{ proto bool posix_setegid(long uid)
Set effective group id */
#ifdef HAVE_SETEGID
PHP_FUNCTION(posix_setegid)
{
long egid;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &egid) == FAILURE)
return;
if (setegid(egid) < 0) {
POSIX_G(last_error) = errno;
RETURN_FALSE;
}
RETURN_TRUE;
}
#endif
/* }}} */
/* {{{ proto array posix_getgroups(void)
1999-12-03 13:13:48 +00:00
Get supplementary group id's (POSIX.1, 4.2.3) */
PHP_FUNCTION(posix_getgroups)
{
gid_t gidlist[NGROUPS_MAX];
int result;
int i;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
if ((result = getgroups(NGROUPS_MAX, gidlist)) < 0) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
if (array_init(return_value) == FAILURE) {
2002-04-13 00:31:55 +00:00
/* TODO: Should we issue a warning here so we don't have ambiguity
* with the above return value ?
*/
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
for (i=0; i<result; i++) {
add_next_index_long(return_value, gidlist[i]);
1999-12-03 13:13:48 +00:00
}
}
/* }}} */
/* {{{ proto string posix_getlogin(void)
Get user name (POSIX.1, 4.2.4) */
PHP_FUNCTION(posix_getlogin)
{
char *p;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
if (NULL == (p = getlogin())) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
RETURN_STRING(p, 1);
}
/* }}} */
/* {{{ proto int posix_getpgrp(void)
1999-12-03 13:13:48 +00:00
Get current process group id (POSIX.1, 4.3.1) */
PHP_FUNCTION(posix_getpgrp)
{
pid_t pgrp;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
1999-12-03 13:13:48 +00:00
pgrp = getpgrp();
RETURN_LONG(pgrp);
}
/* }}} */
/* {{{ proto int posix_setsid(void)
1999-12-03 13:13:48 +00:00
Create session and set process group id (POSIX.1, 4.3.2) */
#ifdef HAVE_SETSID
1999-12-03 13:13:48 +00:00
PHP_FUNCTION(posix_setsid)
{
pid_t sid;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
1999-12-03 13:13:48 +00:00
sid = setsid();
RETURN_LONG(sid);
}
#endif
1999-12-03 13:13:48 +00:00
/* }}} */
/* {{{ proto bool posix_setpgid(int pid, int pgid)
1999-12-03 13:13:48 +00:00
Set process group id for job control (POSIX.1, 4.3.3) */
PHP_FUNCTION(posix_setpgid)
{
long pid, pgid;
1999-12-03 13:13:48 +00:00
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ll", &pid, &pgid) == FAILURE)
return;
if (setpgid(pid, pgid) < 0) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
RETURN_TRUE;
1999-12-03 13:13:48 +00:00
}
/* }}} */
/* {{{ proto int posix_getpgid(void)
1999-12-03 13:13:48 +00:00
Get the process group id of the specified process (This is not a POSIX function, but a SVR4ism, so we compile conditionally) */
#ifdef HAVE_GETPGID
1999-12-03 13:13:48 +00:00
PHP_FUNCTION(posix_getpgid)
{
long pid;
pid_t pgid;
1999-12-03 13:13:48 +00:00
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &pid) == FAILURE)
return;
1999-12-03 13:13:48 +00:00
if ((pgid = getpgid(pid)) < 0) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
RETURN_LONG(pgid);
1999-12-03 13:13:48 +00:00
}
#endif
1999-12-03 13:13:48 +00:00
/* }}} */
/* {{{ proto int posix_getsid(void)
1999-12-03 13:13:48 +00:00
Get process group id of session leader (This is not a POSIX function, but a SVR4ism, so be compile conditionally) */
#ifdef HAVE_GETSID
1999-12-03 13:13:48 +00:00
PHP_FUNCTION(posix_getsid)
{
long pid;
pid_t sid;
1999-12-03 13:13:48 +00:00
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &pid) == FAILURE)
return;
1999-12-03 13:13:48 +00:00
if ((sid = getsid(pid)) < 0) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
RETURN_LONG(sid);
1999-12-03 13:13:48 +00:00
}
#endif
1999-12-03 13:13:48 +00:00
/* }}} */
/* {{{ proto array posix_uname(void)
1999-12-03 13:13:48 +00:00
Get system name (POSIX.1, 4.4.1) */
PHP_FUNCTION(posix_uname)
{
struct utsname u;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
if (uname(&u) < 0) {
POSIX_G(last_error) = errno;
RETURN_FALSE;
}
1999-12-03 13:13:48 +00:00
if (array_init(return_value) == FAILURE) {
2002-04-13 00:31:55 +00:00
/* TODO: Should we issue a warning here so we don't have ambiguity
* with the above return value ?
*/
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
add_assoc_string(return_value, "sysname", u.sysname, 1);
add_assoc_string(return_value, "nodename", u.nodename, 1);
add_assoc_string(return_value, "release", u.release, 1);
add_assoc_string(return_value, "version", u.version, 1);
add_assoc_string(return_value, "machine", u.machine, 1);
#ifdef _GNU_SOURCE
add_assoc_string(return_value, "domainname", u.domainname, 1);
#endif
1999-12-03 13:13:48 +00:00
}
/* }}} */
/* POSIX.1, 4.5.1 time() - Get System Time
already covered by PHP
1999-12-03 13:13:48 +00:00
*/
/* {{{ proto array posix_times(void)
1999-12-03 13:13:48 +00:00
Get process times (POSIX.1, 4.5.2) */
PHP_FUNCTION(posix_times)
{
struct tms t;
clock_t ticks;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
if((ticks = times(&t)) < 0) {
POSIX_G(last_error) = errno;
RETURN_FALSE;
1999-12-03 13:13:48 +00:00
}
if (array_init(return_value) == FAILURE) {
2002-04-13 00:31:55 +00:00
/* TODO: Should we issue a warning here so we don't have ambiguity
* with the above return value ?
*/
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
add_assoc_long(return_value, "ticks", ticks); /* clock ticks */
add_assoc_long(return_value, "utime", t.tms_utime); /* user time */
add_assoc_long(return_value, "stime", t.tms_stime); /* system time */
add_assoc_long(return_value, "cutime", t.tms_cutime); /* user time of children */
add_assoc_long(return_value, "cstime", t.tms_cstime); /* system time of children */
1999-12-03 13:13:48 +00:00
}
/* }}} */
/* POSIX.1, 4.6.1 getenv() - Environment Access
already covered by PHP
1999-12-03 13:13:48 +00:00
*/
/* {{{ proto string posix_ctermid(void)
1999-12-03 13:13:48 +00:00
Generate terminal path name (POSIX.1, 4.7.1) */
#ifdef HAVE_CTERMID
1999-12-03 13:13:48 +00:00
PHP_FUNCTION(posix_ctermid)
{
char buffer[L_ctermid];
char *p;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
if (NULL == (p = ctermid(buffer))) {
2002-04-13 00:31:55 +00:00
/* Found no documentation how the defined behaviour is when this
* function fails
*/
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
RETURN_STRING(buffer, 1);
}
#endif
1999-12-03 13:13:48 +00:00
/* }}} */
/* {{{ proto string posix_ttyname(int fd)
1999-12-03 13:13:48 +00:00
Determine terminal device name (POSIX.1, 4.7.2) */
PHP_FUNCTION(posix_ttyname)
{
long fd;
1999-12-03 13:13:48 +00:00
char *p;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &fd) == FAILURE)
return;
1999-12-03 13:13:48 +00:00
if (NULL == (p = ttyname(fd))) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
RETURN_STRING(p, 1);
}
/* }}} */
/* {{{ proto bool posix_isatty(int fd)
1999-12-03 13:13:48 +00:00
Determine if filedesc is a tty (POSIX.1, 4.7.1) */
PHP_FUNCTION(posix_isatty)
{
long fd;
1999-12-03 13:13:48 +00:00
int result;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &fd) == FAILURE)
return;
1999-12-03 13:13:48 +00:00
result = isatty(fd);
1999-12-03 13:13:48 +00:00
if (!result)
RETURN_FALSE;
RETURN_TRUE;
1999-12-03 13:13:48 +00:00
}
/* }}} */
/*
POSIX.1, 4.8.1 sysconf() - TODO
POSIX.1, 5.7.1 pathconf(), fpathconf() - TODO
POSIX.1, 5.1.2 opendir(), readdir(), rewinddir(), closedir()
POSIX.1, 5.2.1 chdir()
already supported by PHP
*/
/* {{{ proto string posix_getcwd(void)
1999-12-03 13:13:48 +00:00
Get working directory pathname (POSIX.1, 5.2.2) */
PHP_FUNCTION(posix_getcwd)
{
char buffer[MAXPATHLEN];
char *p;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
p = VCWD_GETCWD(buffer, MAXPATHLEN);
1999-12-03 13:13:48 +00:00
if (!p) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
RETURN_STRING(buffer, 1);
}
/* }}} */
/*
POSIX.1, 5.3.x open(), creat(), umask()
POSIX.1, 5.4.1 link()
already supported by PHP.
*/
2002-04-23 22:22:17 +00:00
/* {{{ proto bool posix_mkfifo(string pathname, int mode)
1999-12-03 13:13:48 +00:00
Make a FIFO special file (POSIX.1, 5.4.2) */
#ifdef HAVE_MKFIFO
1999-12-03 13:13:48 +00:00
PHP_FUNCTION(posix_mkfifo)
{
char *path;
long path_len, mode;
1999-12-03 13:13:48 +00:00
int result;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl", &path, &path_len, &mode) == FAILURE)
return;
1999-12-03 13:13:48 +00:00
if (PG(safe_mode) && (!php_checkuid(path, NULL, CHECKUID_ALLOW_ONLY_DIR))) {
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
result = mkfifo(path, mode);
1999-12-03 13:13:48 +00:00
if (result < 0) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
RETURN_TRUE;
}
1999-12-03 13:13:48 +00:00
#endif
/* }}} */
1999-12-03 13:13:48 +00:00
/* Takes a pointer to posix group and a pointer to an already initialized ZVAL
* array container and fills the array with the posix group member data. */
int php_posix_group_to_array(struct group *g, zval *array_group) {
zval *array_members;
int count;
if (NULL == g)
return 0;
if (array_group == NULL || Z_TYPE_P(array_group) != IS_ARRAY)
return 0;
MAKE_STD_ZVAL(array_members);
if (array_init(array_members) == FAILURE)
return 0;
add_assoc_string(array_group, "name", g->gr_name, 1);
add_assoc_string(array_group, "passwd", g->gr_passwd, 1);
for (count=0; g->gr_mem[count] != NULL; count++) {
add_next_index_string(array_members, g->gr_mem[count], 1);
}
zend_hash_update(Z_ARRVAL_P(array_group), "members", sizeof("members"), (void*)&array_members, sizeof(zval*), NULL);
add_assoc_long(array_group, "gid", g->gr_gid);
return 1;
}
1999-12-03 13:13:48 +00:00
/*
POSIX.1, 5.5.1 unlink()
POSIX.1, 5.5.2 rmdir()
POSIX.1, 5.5.3 rename()
POSIX.1, 5.6.x stat(), access(), chmod(), utime()
already supported by PHP (access() not supported, because it is
braindead and dangerous and gives outdated results).
POSIX.1, 6.x most I/O functions already supported by PHP.
POSIX.1, 7.x tty functions, TODO
POSIX.1, 8.x interactions with other C language functions
POSIX.1, 9.x system database access
*/
/* {{{ proto array posix_getgrnam(string groupname)
1999-12-03 13:13:48 +00:00
Group database access (POSIX.1, 9.2.1) */
PHP_FUNCTION(posix_getgrnam)
{
char *name;
struct group *g;
int name_len;
1999-12-03 13:13:48 +00:00
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, &name_len) == FAILURE)
return;
1999-12-03 13:13:48 +00:00
if (NULL == (g = getgrnam(name))) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
1999-12-03 13:13:48 +00:00
if (array_init(return_value) == FAILURE) {
2002-04-13 00:31:55 +00:00
/* TODO: Should we issue a warning here so we don't have ambiguity
* with the above return value ?
*/
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
if (!php_posix_group_to_array(g, return_value)) {
php_error(E_WARNING, "%s() unable to convert posix group to array",
get_active_function_name(TSRMLS_C));
RETURN_FALSE;
1999-12-03 13:13:48 +00:00
}
}
/* }}} */
/* {{{ proto array posix_getgrgid(long gid)
Group database access (POSIX.1, 9.2.1) */
PHP_FUNCTION(posix_getgrgid)
{
long gid;
struct group *g;
1999-12-03 13:13:48 +00:00
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &gid) == FAILURE)
return;
1999-12-03 13:13:48 +00:00
if (NULL == (g = getgrgid(gid))) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
1999-12-03 13:13:48 +00:00
if (array_init(return_value) == FAILURE) {
2002-04-13 00:31:55 +00:00
/* TODO: Should we issue a warning here so we don't have ambiguity
* with the above return value ?
*/
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
if (!php_posix_group_to_array(g, return_value)) {
php_error(E_WARNING, "%s() unable to convert posix group struct to array",
get_active_function_name(TSRMLS_C));
RETURN_FALSE;
1999-12-03 13:13:48 +00:00
}
}
/* }}} */
int php_posix_passwd_to_array(struct passwd *pw, zval *return_value) {
if (NULL == pw)
return 0;
if (NULL == return_value || Z_TYPE_P(return_value) != IS_ARRAY)
return 0;
add_assoc_string(return_value, "name", pw->pw_name, 1);
add_assoc_string(return_value, "passwd", pw->pw_passwd, 1);
add_assoc_long (return_value, "uid", pw->pw_uid);
add_assoc_long (return_value, "gid", pw->pw_gid);
add_assoc_string(return_value, "gecos", pw->pw_gecos, 1);
add_assoc_string(return_value, "dir", pw->pw_dir, 1);
add_assoc_string(return_value, "shell", pw->pw_shell, 1);
return 1;
}
1999-12-03 13:13:48 +00:00
/* {{{ proto array posix_getpwnam(string groupname)
User database access (POSIX.1, 9.2.2) */
PHP_FUNCTION(posix_getpwnam)
{
struct passwd *pw;
char *name;
int name_len;
1999-12-03 13:13:48 +00:00
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, &name_len) == FAILURE)
return;
1999-12-03 13:13:48 +00:00
if (NULL == (pw = getpwnam(name))) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
1999-12-03 13:13:48 +00:00
if (array_init(return_value) == FAILURE) {
RETURN_FALSE;
}
if (!php_posix_passwd_to_array(pw, return_value)) {
php_error(E_WARNING, "%s() unable to convert posix passwd struct to array",
get_active_function_name(TSRMLS_C));
RETURN_FALSE;
}
1999-12-03 13:13:48 +00:00
}
/* }}} */
/* {{{ proto array posix_getpwuid(long uid)
User database access (POSIX.1, 9.2.2) */
PHP_FUNCTION(posix_getpwuid)
{
long uid;
1999-12-03 13:13:48 +00:00
struct passwd *pw;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &uid) == FAILURE)
return;
1999-12-03 13:13:48 +00:00
if (NULL == (pw = getpwuid(uid))) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
1999-12-03 13:13:48 +00:00
if (array_init(return_value) == FAILURE) {
RETURN_FALSE;
}
if (!php_posix_passwd_to_array(pw, return_value)) {
php_error(E_WARNING, "%s() unable to convert posix passwd struct to array",
get_active_function_name(TSRMLS_C));
RETURN_FALSE;
}
1999-12-03 13:13:48 +00:00
}
/* }}} */
#ifdef HAVE_GETRLIMIT
#define UNLIMITED_STRING "unlimited"
/* {{{ posix_addlimit
*/
2002-03-06 11:26:05 +00:00
static int posix_addlimit(int limit, char *name, zval *return_value TSRMLS_DC) {
1999-12-03 13:13:48 +00:00
int result;
struct rlimit rl;
char hard[80];
char soft[80];
snprintf(hard, 80, "hard %s", name);
snprintf(soft, 80, "soft %s", name);
result = getrlimit(limit, &rl);
if (result < 0) {
POSIX_G(last_error) = errno;
1999-12-03 13:13:48 +00:00
return FAILURE;
}
if (rl.rlim_cur == RLIM_INFINITY) {
add_assoc_stringl(return_value, soft, UNLIMITED_STRING, sizeof(UNLIMITED_STRING)-1, 1);
} else {
add_assoc_long(return_value, soft, rl.rlim_cur);
}
1999-12-03 13:13:48 +00:00
if (rl.rlim_max == RLIM_INFINITY) {
add_assoc_stringl(return_value, hard, UNLIMITED_STRING, sizeof(UNLIMITED_STRING)-1, 1);
} else {
add_assoc_long(return_value, hard, rl.rlim_max);
}
1999-12-03 13:13:48 +00:00
return SUCCESS;
}
/* }}} */
1999-12-03 13:13:48 +00:00
/* {{{ limits[]
*/
1999-12-03 13:13:48 +00:00
struct limitlist {
int limit;
char *name;
} limits[] = {
#ifdef RLIMIT_CORE
{ RLIMIT_CORE, "core" },
#endif
#ifdef RLIMIT_DATA
{ RLIMIT_DATA, "data" },
#endif
#ifdef RLIMIT_STACK
{ RLIMIT_STACK, "stack" },
#endif
#ifdef RLIMIT_VMEM
{ RLIMIT_VMEM, "virtualmem" },
#endif
#ifdef RLIMIT_AS
{ RLIMIT_AS, "totalmem" },
#endif
#ifdef RLIMIT_RSS
{ RLIMIT_RSS, "rss" },
#endif
#ifdef RLIMIT_NPROC
{ RLIMIT_NPROC, "maxproc" },
#endif
#ifdef RLIMIT_MEMLOCK
{ RLIMIT_MEMLOCK, "memlock" },
#endif
#ifdef RLIMIT_CPU
{ RLIMIT_CPU, "cpu" },
#endif
#ifdef RLIMIT_FSIZE
{ RLIMIT_FSIZE, "filesize" },
#endif
#ifdef RLIMIT_NOFILE
{ RLIMIT_NOFILE, "openfiles" },
#endif
#ifdef RLIMIT_OFILE
{ RLIMIT_OFILE, "openfiles" },
#endif
{ 0, NULL }
};
/* }}} */
1999-12-03 13:13:48 +00:00
/* {{{ proto int posix_getrlimit(void)
1999-12-03 13:13:48 +00:00
Get system resource consumption limits (This is not a POSIX function, but a BSDism and a SVR4ism. We compile conditionally) */
PHP_FUNCTION(posix_getrlimit)
{
struct limitlist *l = NULL;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
1999-12-03 13:13:48 +00:00
if (array_init(return_value) == FAILURE) {
RETURN_FALSE;
}
for (l=limits; l->name; l++) {
2002-03-06 11:26:05 +00:00
if (posix_addlimit(l->limit, l->name, return_value TSRMLS_CC) == FAILURE)
1999-12-03 13:13:48 +00:00
RETURN_FALSE;
}
}
/* }}} */
#endif /* HAVE_GETRLIMIT */
/* {{{ proto int posix_get_last_error(void)
Retrieve the error number set by the last posix function which failed. */
PHP_FUNCTION(posix_get_last_error)
{
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE)
return;
RETURN_LONG(POSIX_G(last_error));
}
/* }}} */
/* {{{ proto string posix_strerror(int errno)
Retrieve the system error message associated with the given errno. */
PHP_FUNCTION(posix_strerror)
{
long error;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &error) == FAILURE)
return;
RETURN_STRING(strerror(error), 1);
1999-12-03 13:13:48 +00:00
}
/* }}} */
#endif
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: sw=4 ts=4 fdm=marker
* vim<600: sw=4 ts=4
1999-12-03 13:13:48 +00:00
*/