php-src/Zend/zend_extensions.c

214 lines
6.1 KiB
C
Raw Normal View History

1999-04-07 18:10:10 +00:00
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
2000-03-06 05:26:39 +00:00
| Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) |
1999-04-07 18:10:10 +00:00
+----------------------------------------------------------------------+
2000-03-06 05:26:39 +00:00
| This source file is subject to version 0.92 of the Zend license, |
1999-07-16 14:58:16 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
2000-03-06 05:26:39 +00:00
| http://www.zend.com/license/0_92.txt. |
1999-07-16 14:58:16 +00:00
| If you did not receive a copy of the Zend license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@zend.com so we can mail you a copy immediately. |
1999-04-07 18:10:10 +00:00
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
1999-07-16 14:58:16 +00:00
1999-04-07 18:10:10 +00:00
#include "zend_extensions.h"
ZEND_API zend_llist zend_extensions;
2000-04-28 15:52:02 +00:00
static int last_resource_number;
1999-04-07 18:10:10 +00:00
int zend_load_extensions(char **extension_paths)
{
char **p = extension_paths;
if (!p) {
return SUCCESS;
}
while (*p) {
if (zend_load_extension(*p)==FAILURE) {
return FAILURE;
}
p++;
}
return SUCCESS;
}
int zend_load_extension(char *path)
{
#if ZEND_EXTENSIONS_SUPPORT
DL_HANDLE handle;
2000-03-29 19:26:34 +00:00
zend_extension *new_extension;
1999-04-07 18:10:10 +00:00
zend_extension_version_info *extension_version_info;
handle = DL_LOAD(path);
if (!handle) {
2000-02-11 15:59:30 +00:00
#ifndef ZEND_WIN32
1999-06-08 19:37:40 +00:00
fprintf(stderr, "Failed loading %s: %s\n", path, dlerror());
#else
fprintf(stderr, "Failed loading %s\n", path);
#endif
1999-04-07 18:10:10 +00:00
return FAILURE;
}
extension_version_info = (zend_extension_version_info *) DL_FETCH_SYMBOL(handle, "extension_version_info");
new_extension = (zend_extension *) DL_FETCH_SYMBOL(handle, "zend_extension_entry");
if (!extension_version_info || !new_extension) {
1999-06-08 19:37:40 +00:00
fprintf(stderr, "%s doesn't appear to be a valid Zend extension\n", path);
1999-04-07 18:10:10 +00:00
return FAILURE;
}
if (extension_version_info->zend_extension_api_no > ZEND_EXTENSION_API_NO) {
fprintf(stderr, "%s requires Zend Engine API version %d\n"
"The installed Zend Engine API version is %d\n\n",
1999-04-07 18:10:10 +00:00
new_extension->name,
2000-06-22 18:50:55 +00:00
extension_version_info->zend_extension_api_no,
1999-04-07 18:10:10 +00:00
ZEND_EXTENSION_API_NO);
DL_UNLOAD(handle);
1999-04-07 18:10:10 +00:00
return FAILURE;
} else if (extension_version_info->zend_extension_api_no < ZEND_EXTENSION_API_NO) {
/* we may be able to allow for downwards compatability in some harmless cases. */
fprintf(stderr, "%s designed to be used with the Zend Engine API %d is outdated\n"
"It requires a more recent version of the Zend Engine\n"
"The installed Zend Engine API version is %d\n"
"Contact %s at %s for a later version of this module.\n\n",
1999-04-07 18:10:10 +00:00
new_extension->name,
extension_version_info->zend_extension_api_no,
ZEND_EXTENSION_API_NO,
new_extension->author,
new_extension->URL);
DL_UNLOAD(handle);
1999-04-07 18:10:10 +00:00
return FAILURE;
} else if (ZTS_V!=extension_version_info->thread_safe) {
1999-06-08 19:37:40 +00:00
fprintf(stderr, "Cannot load %s - it %s thread safe, whereas Zend %s\n",
1999-04-07 18:10:10 +00:00
new_extension->name,
(extension_version_info->thread_safe?"is":"isn't"),
(ZTS_V?"is":"isn't"));
DL_UNLOAD(handle);
1999-04-07 18:10:10 +00:00
return FAILURE;
1999-08-28 21:51:12 +00:00
} else if (ZEND_DEBUG!=extension_version_info->debug) {
1999-06-08 19:37:40 +00:00
fprintf(stderr, "Cannot load %s - it %s debug information, whereas Zend %s\n",
new_extension->name,
(extension_version_info->debug?"contains":"does not contain"),
1999-08-28 21:51:12 +00:00
(ZEND_DEBUG?"does":"does not"));
DL_UNLOAD(handle);
return FAILURE;
1999-04-07 18:10:10 +00:00
}
2000-03-29 19:26:34 +00:00
return zend_register_extension(new_extension, handle);
#else
fprintf(stderr, "Extensions are not supported on this platform.\n");
return FAILURE;
#endif
}
int zend_register_extension(zend_extension *new_extension, DL_HANDLE handle)
{
#if ZEND_EXTENSIONS_SUPPORT
2000-03-29 19:26:34 +00:00
zend_extension extension;
1999-04-07 18:10:10 +00:00
extension = *new_extension;
extension.handle = handle;
zend_extension_dispatch_message(ZEND_EXTMSG_NEW_EXTENSION, &extension);
1999-04-07 18:10:10 +00:00
zend_llist_add_element(&zend_extensions, &extension);
2000-03-29 19:26:34 +00:00
zend_append_version_info(&extension);
1999-06-08 19:37:40 +00:00
/*fprintf(stderr, "Loaded %s, version %s\n", extension.name, extension.version);*/
#endif
1999-04-07 18:10:10 +00:00
return SUCCESS;
}
2000-03-29 19:26:34 +00:00
static void zend_extension_shutdown(zend_extension *extension)
1999-04-07 18:10:10 +00:00
{
#if ZEND_EXTENSIONS_SUPPORT
if (extension->shutdown) {
extension->shutdown(extension);
}
#endif
}
static void zend_extension_startup(zend_extension *extension)
{
if (extension->startup) {
if (extension->startup(extension)!=SUCCESS) {
DL_UNLOAD(extension->handle);
}
}
}
int zend_startup_extensions_mechanism()
2000-04-28 15:52:02 +00:00
{
/* Startup extensions mechanism */
2000-04-28 15:52:02 +00:00
zend_llist_init(&zend_extensions, sizeof(zend_extension), (void (*)(void *)) zend_extension_dtor, 1);
last_resource_number = 0;
return SUCCESS;
}
int zend_startup_extensions()
{
zend_llist_apply(&zend_extensions, (void (*)(void *)) zend_extension_startup);
return SUCCESS;
}
void zend_shutdown_extensions()
{
zend_llist_apply(&zend_extensions, (void (*)(void *)) zend_extension_shutdown);
zend_llist_destroy(&zend_extensions);
}
void zend_extension_dtor(zend_extension *extension)
{
#if ZEND_EXTENSIONS_SUPPORT && !ZEND_DEBUG
2000-03-29 19:26:34 +00:00
if (extension->handle) {
DL_UNLOAD(extension->handle);
}
1999-04-07 18:10:10 +00:00
#endif
}
static void zend_extension_message_dispatcher(zend_extension *extension, int num_args, va_list args)
{
int message;
void *arg;
2000-04-29 10:34:03 +00:00
if (!extension->message_handler || num_args!=2) {
return;
}
message = va_arg(args, int);
arg = va_arg(args, void *);
extension->message_handler(message, arg);
}
ZEND_API void zend_extension_dispatch_message(int message, void *arg)
{
zend_llist_apply_with_arguments(&zend_extensions, (llist_apply_with_args_func_t) zend_extension_message_dispatcher, 2, message, arg);
}
1999-04-07 18:10:10 +00:00
ZEND_API int zend_get_resource_handle(zend_extension *extension)
{
2000-04-25 14:20:52 +00:00
if (last_resource_number<ZEND_MAX_RESERVED_RESOURCES) {
1999-04-07 18:10:10 +00:00
extension->resource_number = last_resource_number;
2000-04-25 14:20:52 +00:00
return last_resource_number++;
1999-04-07 18:10:10 +00:00
} else {
return -1;
}
}