|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ?? 1999, Version 4.0 Beta 3
+- Added shared memory module for session data storage (Sascha)
+- Fixed session.auto_start (Sascha)
- Fixed several problems with output buffering and HEAD requests (Zeev)
- Fixed HTTP Status code issue with ISAPI module (Zeev)
- Fixed a problem that prevented $GLOBALS from working properly (Zeev, Zend
dnl to make dynamic libraries as well.
dnl
AC_DEFUN(PHP_EXTENSION,[
+ if test -d "$cwd/$srcdir/ext/$1" ; then
EXT_SUBDIRS="$EXT_SUBDIRS $1"
if test "$2" != "shared" -a "$2" != "yes"; then
_extlib="libphpext_$1.a"
dnl EXT_INCLUDE_CODE="\#include \"ext/$1/php3_$1.h\"\\n$EXT_INCLUDE_CODE"
dnl EXT_MODULE_PTRS="phpext_$1_ptr, $EXT_MODULE_PTRS"
dnl "
+ fi
])
AC_SUBST(EXT_SUBDIRS)
AC_ADD_INCLUDE($MM_DIR/include)
AC_DEFINE(HAVE_LIBMM, 1)
MM_RESULT=yes
+ PHP_EXTENSION(ps_mm)
fi
])
AC_MSG_RESULT($MM_RESULT)
#include "php_session.h"
#include "mod_mm.h"
+#define PS_MM_PATH "/tmp/session_mm"
+
+/*
+ * this list holds all data associated with one session
+ */
+
typedef struct ps_sd {
+ struct ps_sd *next, *prev;
time_t ctime;
char *key;
void *data;
size_t datalen;
- struct ps_sd *next, *prev;
} ps_sd;
typedef struct {
static ps_mm *ps_mm_instance = NULL;
/* should be a prime */
-#define HASH_SIZE 11
+#define HASH_SIZE 577
#if 0
#define ps_mm_debug(a...) fprintf(stderr, a)
#define ONE_EIGTH ((int) (BITS_IN_int / 8))
#define HIGH_BITS (~((unsigned int)(~0) >> ONE_EIGTH))
+/*
+ * Weinberger's generic hash algorithm, adapted by Holub
+ * (published in [Holub 1990])
+ */
+
static unsigned int ps_sd_hash(const char *data)
{
unsigned int val, i;
h = ps_sd_hash(key) % HASH_SIZE;
sd = mm_malloc(data->mm, sizeof(*sd));
+ if(!sd) {
+ return NULL;
+ }
sd->ctime = 0;
sd->data = mm_malloc(data->mm, sdatalen);
- memcpy(sd->data, sdata, sdatalen);
+ if(!sd->data) {
+ mm_free(data->mm, sd);
+ return NULL;
+ }
+
sd->datalen = sdatalen;
sd->key = mm_strdup(data->mm, key);
+ if(!sd->key) {
+ mm_free(data->mm, sd->data);
+ mm_free(data->mm, sd);
+ return NULL;
+ }
+
+ memcpy(sd->data, sdata, sdatalen);
if((sd->next = data->hash[h]))
sd->next->prev = sd;
data->hash[h] = sd->next;
mm_free(data->mm, sd->key);
- mm_free(data->mm, sd->data);
+ if(sd->data) mm_free(data->mm, sd->data);
mm_free(data->mm, sd);
}
static void ps_mm_destroy(ps_mm *data)
{
+ int h;
+ ps_sd *sd, *next;
+
+ for(h = 0; h < HASH_SIZE; h++) {
+ for(sd = data->hash[h]; sd; sd = next) {
+ next = sd->next;
+ ps_sd_destroy(data, sd);
+ }
+ }
+
mm_free(data->mm, data->hash);
mm_destroy(data->mm);
}
-PS_OPEN_FUNC(mm)
+PHP_GINIT_FUNCTION(ps_mm)
{
- if(!ps_mm_instance) {
- ps_mm_instance = calloc(sizeof(*data), 1);
- ps_mm_initialize(ps_mm_instance, save_path);
- }
+ ps_mm_instance = calloc(sizeof(*ps_mm_instance), 1);
+ ps_mm_initialize(ps_mm_instance, PS_MM_PATH);
+ return SUCCESS;
+}
+
+PHP_GSHUTDOWN_FUNCTION(ps_mm)
+{
+ ps_mm_destroy(ps_mm_instance);
+ free(ps_mm_instance);
+ return SUCCESS;
+}
+PS_OPEN_FUNC(mm)
+{
+ ps_mm_debug("open: ps_mm_instance=%x\n", ps_mm_instance);
+
PS_SET_MOD_DATA(ps_mm_instance);
return SUCCESS;
mm_free(data->mm, sd->data);
sd->datalen = vallen;
sd->data = mm_malloc(data->mm, vallen);
- memcpy(sd->data, val, vallen);
+ if(!sd->data) {
+ ps_sd_destroy(data, sd);
+ sd = NULL;
+ } else {
+ memcpy(sd->data, val, vallen);
+ }
}
- time(&sd->ctime);
+ if(sd) time(&sd->ctime);
mm_unlock(data->mm);
- return SUCCESS;
+ return sd ? SUCCESS : FAILURE;
}
PS_DESTROY_FUNC(mm)
return SUCCESS;
}
+zend_module_entry php_session_mm_module = {
+ "Session MM",
+ NULL,
+ NULL, NULL,
+ NULL, NULL,
+ NULL,
+ PHP_GINIT(ps_mm), PHP_GSHUTDOWN(ps_mm),
+ STANDARD_MODULE_PROPERTIES_EX
+};
+
#endif
#ifdef HAVE_LIBMM
+#include "php_session.h"
+
extern ps_module ps_mod_mm;
#define ps_mm_ptr &ps_mod_mm
+extern zend_module_entry php_session_mm_module;
+#define phpext_ps_mm_ptr &php_session_mm_module
+
PS_FUNCS(mm);
#else
#define ps_mm_ptr NULL
+#define phpext_ps_mm_ptr NULL
#endif
cookie = ecalloc(len + 1, 1);
snprintf(cookie, len, COOKIE_FMT, PS(session_name), PS(id));
- cookie[len] = '\0';
if (PS(lifetime) > 0) {
strcat(cookie, COOKIE_EXPIRES);
strcat(cookie, date_fmt);
return FAILURE;
}
- if(INI_INT("session_auto_start")) {
+ if(INI_INT("session.auto_start")) {
_php_session_start(PSLS_C);
}
#! /bin/sh
-# $Id: genif.sh,v 1.6 1999-05-21 10:05:41 sas Exp $
+# $Id: genif.sh,v 1.7 1999-09-03 17:46:39 sas Exp $
# replacement for genif.pl
infile="$1"
module_ptrs=""
includes=""
+olddir=`pwd`
+cd $srcdir
+
for ext in ${1+"$@"} ; do
module_ptrs=" phpext_${ext}_ptr,\\\n$module_ptrs"
- for pre in php3_ php_ php4_ zend_ "" ; do
- hdrfile="ext/$ext/${pre}${ext}.h"
- if test -f "$srcdir/$hdrfile" ; then
- includes="#include \"$hdrfile\"\\\n$includes"
+ for header in ext/$ext/*.h ; do
+ if grep phpext_ $header >/dev/null 2>&1 ; then
+ includes="#include \"$header\"\\\n$includes"
fi
done
done
+cd $olddir
+
cat $infile | \
sed \
-e "s'@EXT_INCLUDE_CODE@'$includes'" \
#ifdef ZTS
sapi_globals_id = ts_allocate_id(sizeof(sapi_globals_struct), NULL, NULL);
#endif
-}
+ module_global_startup_modules();
+}
SAPI_API void sapi_shutdown()
{
+ module_global_shutdown_modules();
zend_hash_destroy(&known_post_content_types);
}
@EXT_MODULE_PTRS@
};
-
+
int module_startup_modules(void)
{
zend_module_entry **ptr = php3_builtin_modules, **end = ptr+(sizeof(php3_builtin_modules)/sizeof(zend_module_entry *));
return SUCCESS;
}
+int module_global_startup_modules(void)
+{
+ zend_module_entry **ptr = php3_builtin_modules, **end = ptr+(sizeof(php3_builtin_modules)/sizeof(zend_module_entry *));
+
+ while (ptr < end) {
+ if (*ptr) {
+ if ((*ptr)->global_startup_func &&
+ (*ptr)->global_startup_func()==FAILURE) {
+ return FAILURE;
+ }
+ }
+ ptr++;
+ }
+ return SUCCESS;
+}
+
+int module_global_shutdown_modules(void)
+{
+ zend_module_entry **ptr = php3_builtin_modules, **end = ptr+(sizeof(php3_builtin_modules)/sizeof(zend_module_entry *));
+
+ while (ptr < end) {
+ if (*ptr) {
+ if ((*ptr)->global_shutdown_func &&
+ (*ptr)->global_shutdown_func()==FAILURE) {
+ return FAILURE;
+ }
+ }
+ ptr++;
+ }
+ return SUCCESS;
+}
/*
* Local variables:
int size;
va_start(args, format);
- size = vsprintf(buffer, format, args);
+ size = vsnprintf(buffer, sizeof(buffer), format, args);
ret = PHPWRITE(buffer, size);
va_end(args);
#define PHP_RINIT(module) php3_rinit_##module
#define PHP_RSHUTDOWN(module) php3_rshutdown_##module
#define PHP_MINFO(module) php3_info_##module
-
-#define PHP_MINIT_FUNCTION(module) int php3_minit_##module(INIT_FUNC_ARGS)
-#define PHP_MSHUTDOWN_FUNCTION(module) int php3_mshutdown_##module(SHUTDOWN_FUNC_ARGS)
-#define PHP_RINIT_FUNCTION(module) int php3_rinit_##module(INIT_FUNC_ARGS)
-#define PHP_RSHUTDOWN_FUNCTION(module) int php3_rshutdown_##module(SHUTDOWN_FUNC_ARGS)
-#define PHP_MINFO_FUNCTION(module) void php3_info_##module(ZEND_MODULE_INFO_FUNC_ARGS)
+#define PHP_GINIT(module) php3_ginit_##module
+#define PHP_GSHUTDOWN(module) php3_gshutdown_##module
+
+#define PHP_MINIT_FUNCTION(module) int PHP_MINIT(module)(INIT_FUNC_ARGS)
+#define PHP_MSHUTDOWN_FUNCTION(module) int PHP_MSHUTDOWN(module)(SHUTDOWN_FUNC_ARGS)
+#define PHP_RINIT_FUNCTION(module) int PHP_RINIT(module)(INIT_FUNC_ARGS)
+#define PHP_RSHUTDOWN_FUNCTION(module) int PHP_RSHUTDOWN(module)(SHUTDOWN_FUNC_ARGS)
+#define PHP_MINFO_FUNCTION(module) void PHP_MINFO(module)(ZEND_MODULE_INFO_FUNC_ARGS)
+#define PHP_GINIT_FUNCTION(module) static int PHP_GINIT(module)(void)
+#define PHP_GSHUTDOWN_FUNCTION(module) static int PHP_GSHUTDOWN(module)(void)
/* global variables */