1999-04-22 08:25:57 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
1999-07-16 21:13:16 +08:00
|
|
|
| PHP version 4.0 |
|
1999-04-22 08:25:57 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-02-26 14:11:02 +08:00
|
|
|
| Copyright (c) 1997-2001 The PHP Group |
|
1999-04-22 08:25:57 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-05-18 23:34:45 +08:00
|
|
|
| This source file is subject to version 2.02 of the PHP license, |
|
1999-07-16 21:13:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
2000-05-18 23:34:45 +08:00
|
|
|
| http://www.php.net/license/2_02.txt. |
|
1999-07-16 21:13:16 +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. |
|
1999-04-22 08:25:57 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Brian Schaffner <brian@tool.net> |
|
|
|
|
| Shane Caraveo <shane@caraveo.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
1999-04-22 08:25:57 +08:00
|
|
|
|
|
|
|
#include "php.h"
|
|
|
|
#include "dl.h"
|
|
|
|
#include "php_globals.h"
|
2000-04-06 05:43:03 +08:00
|
|
|
#include "ext/standard/info.h"
|
2000-06-27 02:27:12 +08:00
|
|
|
#include "SAPI.h"
|
2000-11-06 14:31:00 +08:00
|
|
|
|
|
|
|
#ifndef PHP_WIN32
|
2000-11-05 23:10:47 +08:00
|
|
|
#include "build-defs.h"
|
2000-11-06 14:31:00 +08:00
|
|
|
#endif
|
1999-04-22 08:25:57 +08:00
|
|
|
|
1999-12-05 04:55:33 +08:00
|
|
|
#ifdef HAVE_LIBDL
|
1999-04-22 08:25:57 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2000-03-19 00:16:15 +08:00
|
|
|
|
1999-04-22 08:25:57 +08:00
|
|
|
#if HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#else
|
|
|
|
#include <strings.h>
|
|
|
|
#endif
|
2000-02-11 23:59:30 +08:00
|
|
|
#ifdef PHP_WIN32
|
1999-04-22 08:25:57 +08:00
|
|
|
#include "win32/param.h"
|
|
|
|
#include "win32/winutil.h"
|
2000-06-13 04:22:17 +08:00
|
|
|
#define GET_DL_ERROR() php_win_err()
|
1999-04-22 08:25:57 +08:00
|
|
|
#else
|
|
|
|
#include <sys/param.h>
|
2000-06-13 04:22:17 +08:00
|
|
|
#define GET_DL_ERROR() dlerror()
|
1999-04-22 08:25:57 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2000-06-13 04:22:17 +08:00
|
|
|
|
1999-04-22 08:25:57 +08:00
|
|
|
/* {{{ proto int dl(string extension_filename)
|
|
|
|
Load a PHP extension at runtime */
|
2000-03-07 04:37:11 +08:00
|
|
|
PHP_FUNCTION(dl)
|
1999-04-22 08:25:57 +08:00
|
|
|
{
|
1999-10-14 03:55:25 +08:00
|
|
|
pval **file;
|
1999-04-22 08:25:57 +08:00
|
|
|
PLS_FETCH();
|
|
|
|
|
2000-06-27 02:27:12 +08:00
|
|
|
#ifdef ZTS
|
|
|
|
if (strcmp(sapi_module.name, "cgi")!=0) {
|
|
|
|
php_error(E_ERROR, "dl() is not supported in multithreaded Web servers - use extension statements in your php.ini");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-04-22 08:25:57 +08:00
|
|
|
/* obtain arguments */
|
2000-06-06 03:47:54 +08:00
|
|
|
if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &file) == FAILURE) {
|
1999-04-22 08:25:57 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
1999-10-14 03:55:25 +08:00
|
|
|
convert_to_string_ex(file);
|
1999-04-22 08:25:57 +08:00
|
|
|
|
|
|
|
if (!PG(enable_dl)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_ERROR, "Dynamically loaded extentions aren't enabled.");
|
1999-04-22 08:25:57 +08:00
|
|
|
} else if (PG(safe_mode)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_ERROR, "Dynamically loaded extensions aren't allowed when running in SAFE MODE.");
|
1999-04-22 08:25:57 +08:00
|
|
|
} else {
|
2000-06-13 04:22:17 +08:00
|
|
|
php_dl(*file, MODULE_TEMPORARY, return_value);
|
1999-04-22 08:25:57 +08:00
|
|
|
}
|
|
|
|
}
|
1999-10-14 03:55:25 +08:00
|
|
|
|
1999-04-22 08:25:57 +08:00
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
1999-12-05 04:55:33 +08:00
|
|
|
#ifdef HAVE_LIBDL
|
1999-04-22 08:25:57 +08:00
|
|
|
|
2000-03-12 00:23:30 +08:00
|
|
|
#ifdef ZTS
|
|
|
|
#define USING_ZTS 1
|
|
|
|
#else
|
|
|
|
#define USING_ZTS 0
|
|
|
|
#endif
|
|
|
|
|
2000-06-13 04:22:17 +08:00
|
|
|
void php_dl(pval *file, int type, pval *return_value)
|
1999-04-22 08:25:57 +08:00
|
|
|
{
|
|
|
|
void *handle;
|
2000-03-07 11:43:03 +08:00
|
|
|
char *libpath;
|
1999-12-18 04:55:31 +08:00
|
|
|
zend_module_entry *module_entry,*tmp;
|
|
|
|
zend_module_entry *(*get_module)(void);
|
2000-06-13 04:22:17 +08:00
|
|
|
int error_type;
|
2000-06-13 05:01:03 +08:00
|
|
|
char *extension_dir;
|
1999-04-22 08:25:57 +08:00
|
|
|
PLS_FETCH();
|
2000-02-05 23:16:12 +08:00
|
|
|
ELS_FETCH();
|
2000-05-02 22:44:08 +08:00
|
|
|
|
2000-06-13 05:01:03 +08:00
|
|
|
|
|
|
|
if (type==MODULE_PERSISTENT) {
|
2000-11-05 23:03:41 +08:00
|
|
|
/* Use the configuration hash directly, the INI mechanism is not yet initialized */
|
2000-06-13 05:01:03 +08:00
|
|
|
if (cfg_get_string("extension_dir", &extension_dir)==FAILURE) {
|
2000-11-05 23:03:41 +08:00
|
|
|
extension_dir = PHP_EXTENSION_DIR;
|
2000-06-13 05:01:03 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
extension_dir = PG(extension_dir);
|
|
|
|
}
|
|
|
|
|
2000-06-13 04:22:17 +08:00
|
|
|
if (type==MODULE_TEMPORARY) {
|
|
|
|
error_type = E_WARNING;
|
|
|
|
} else {
|
|
|
|
error_type = E_CORE_WARNING;
|
|
|
|
}
|
|
|
|
|
2000-06-13 05:01:03 +08:00
|
|
|
if (extension_dir && extension_dir[0]){
|
|
|
|
int extension_dir_len = strlen(extension_dir);
|
1999-04-22 08:25:57 +08:00
|
|
|
|
2000-03-30 20:55:59 +08:00
|
|
|
libpath = emalloc(extension_dir_len+file->value.str.len+2);
|
2000-03-07 11:43:03 +08:00
|
|
|
|
2000-06-13 05:01:03 +08:00
|
|
|
if (IS_SLASH(extension_dir[extension_dir_len-1])) {
|
|
|
|
sprintf(libpath,"%s%s", extension_dir, file->value.str.val); /* SAFE */
|
2000-06-09 08:43:43 +08:00
|
|
|
} else {
|
2000-06-13 05:01:03 +08:00
|
|
|
sprintf(libpath,"%s/%s", extension_dir, file->value.str.val); /* SAFE */
|
2000-06-09 08:43:43 +08:00
|
|
|
}
|
1999-04-22 08:25:57 +08:00
|
|
|
} else {
|
2000-03-07 23:50:51 +08:00
|
|
|
libpath = estrndup(file->value.str.val, file->value.str.len);
|
1999-04-22 08:25:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* load dynamic symbol */
|
2000-02-11 03:41:21 +08:00
|
|
|
handle = DL_LOAD(libpath);
|
1999-04-22 08:25:57 +08:00
|
|
|
if (!handle) {
|
2000-06-13 04:22:17 +08:00
|
|
|
php_error(error_type, "Unable to load dynamic library '%s' - %s", libpath, GET_DL_ERROR());
|
2000-03-07 11:43:03 +08:00
|
|
|
efree(libpath);
|
1999-04-22 08:25:57 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-07 11:43:03 +08:00
|
|
|
|
|
|
|
efree(libpath);
|
|
|
|
|
1999-04-22 08:25:57 +08:00
|
|
|
|
2000-03-30 09:21:03 +08:00
|
|
|
get_module = (zend_module_entry *(*)(void)) DL_FETCH_SYMBOL(handle, "get_module");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* some OS prepend _ to symbol names while their dynamic linker
|
|
|
|
* does not do that automatically. Thus we check manually for
|
|
|
|
* _get_module.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!get_module)
|
|
|
|
get_module = (zend_module_entry *(*)(void)) DL_FETCH_SYMBOL(handle, "_get_module");
|
|
|
|
|
1999-04-22 08:25:57 +08:00
|
|
|
if (!get_module) {
|
2000-02-11 03:41:21 +08:00
|
|
|
DL_UNLOAD(handle);
|
2000-06-13 04:22:17 +08:00
|
|
|
php_error(error_type, "Invalid library (maybe not a PHP library) '%s' ", file->value.str.val);
|
1999-04-22 08:25:57 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
module_entry = get_module();
|
2000-03-13 14:00:36 +08:00
|
|
|
if ((module_entry->zend_debug != ZEND_DEBUG) || (module_entry->zts != USING_ZTS)
|
|
|
|
|| (module_entry->zend_api != ZEND_MODULE_API_NO)) {
|
2000-06-13 04:22:17 +08:00
|
|
|
php_error(error_type,
|
2000-03-12 00:23:30 +08:00
|
|
|
"%s: Unable to initialize module\n"
|
2000-03-13 14:00:36 +08:00
|
|
|
"Module compiled with debug=%d, thread-safety=%d module API=%d\n"
|
|
|
|
"PHP compiled with debug=%d, thread-safety=%d module API=%d\n"
|
2000-03-12 00:23:30 +08:00
|
|
|
"These options need to match\n",
|
2000-03-13 14:00:36 +08:00
|
|
|
module_entry->name, module_entry->zend_debug, module_entry->zts, module_entry->zend_api,
|
|
|
|
ZEND_DEBUG, USING_ZTS, ZEND_MODULE_API_NO);
|
2000-03-12 00:23:30 +08:00
|
|
|
DL_UNLOAD(handle);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-04-22 08:25:57 +08:00
|
|
|
module_entry->type = type;
|
|
|
|
module_entry->module_number = zend_next_free_module();
|
|
|
|
if (module_entry->module_startup_func) {
|
2000-02-05 23:16:12 +08:00
|
|
|
if (module_entry->module_startup_func(type, module_entry->module_number ELS_CC)==FAILURE) {
|
2000-06-13 04:22:17 +08:00
|
|
|
php_error(error_type, "%s: Unable to initialize module", module_entry->name);
|
2000-02-11 03:41:21 +08:00
|
|
|
DL_UNLOAD(handle);
|
1999-04-22 08:25:57 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
zend_register_module(module_entry);
|
|
|
|
|
2000-04-24 23:40:07 +08:00
|
|
|
if ((type == MODULE_TEMPORARY) && module_entry->request_startup_func) {
|
2000-02-05 23:16:12 +08:00
|
|
|
if (module_entry->request_startup_func(type, module_entry->module_number ELS_CC)) {
|
2000-06-13 04:22:17 +08:00
|
|
|
php_error(error_type, "%s: Unable to initialize module", module_entry->name);
|
2000-02-11 03:41:21 +08:00
|
|
|
DL_UNLOAD(handle);
|
1999-04-22 08:25:57 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* update the .request_started property... */
|
2000-06-13 04:22:17 +08:00
|
|
|
if (zend_hash_find(&module_registry, module_entry->name, strlen(module_entry->name)+1,(void **) &tmp)==FAILURE) {
|
|
|
|
php_error(error_type,"%s: Loaded module got lost", module_entry->name);
|
1999-04-22 08:25:57 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
tmp->handle = handle;
|
|
|
|
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
|
1999-04-24 08:12:00 +08:00
|
|
|
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_MINFO_FUNCTION(dl)
|
1999-04-24 08:12:00 +08:00
|
|
|
{
|
2000-04-06 05:43:03 +08:00
|
|
|
php_info_print_table_row(2, "Dynamic Library Support", "enabled");
|
1999-04-22 08:25:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2000-06-13 04:22:17 +08:00
|
|
|
void php_dl(pval *file, int type, pval *return_value)
|
1999-04-22 08:25:57 +08:00
|
|
|
{
|
2000-06-13 04:22:17 +08:00
|
|
|
php_error(E_WARNING,"Cannot dynamically load %s - dynamic modules are not supported", file->value.str.val);
|
1999-04-22 08:25:57 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-03-07 04:37:11 +08:00
|
|
|
PHP_MINFO_FUNCTION(dl)
|
|
|
|
{
|
|
|
|
PUTS("Dynamic Library support not available<br>.\n");
|
|
|
|
}
|
|
|
|
|
1999-04-22 08:25:57 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
2001-06-05 21:12:10 +08:00
|
|
|
* vim: sw=4 ts=4 tw=78 fdm=marker
|
1999-04-22 08:25:57 +08:00
|
|
|
*/
|