summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2002-01-25 20:59:24 +0000
committerYasuo Ohgaki <yohgaki@php.net>2002-01-25 20:59:24 +0000
commit93cb48163441ad6b284f1c2a54490a520dda3ee3 (patch)
tree3c21e7c085fb151448fee1e83867e5076fa62f5a
parentedb0118d96b7edccf3484b507441da64164b7cad (diff)
downloadphp-git-93cb48163441ad6b284f1c2a54490a520dda3ee3.tar.gz
We need mm file for each user.
# GCI/CLI SAPI need this. It might be better to disable mm save handler # for CGI/CLI, though.
-rw-r--r--ext/session/mod_mm.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/ext/session/mod_mm.c b/ext/session/mod_mm.c
index 40810cc7d2..296af9e77d 100644
--- a/ext/session/mod_mm.c
+++ b/ext/session/mod_mm.c
@@ -22,6 +22,7 @@
#ifdef HAVE_LIBMM
+#include <unistd.h>
#include <mm.h>
#include <time.h>
#include <sys/stat.h>
@@ -250,24 +251,27 @@ PHP_MINIT_FUNCTION(ps_mm)
{
int save_path_len = strlen(PS(save_path));
int mod_name_len = strlen(sapi_module.name);
- char *ps_mm_path;
+ char *ps_mm_path, euid[30];
int ret;
ps_mm_instance = calloc(sizeof(*ps_mm_instance), 1);
if (!ps_mm_instance)
return FAILURE;
-
- ps_mm_path = do_alloca(save_path_len + 1 + sizeof(PS_MM_FILE) + mod_name_len + 1); /* Directory + '/' + File + Module Name + \0 */
+ if (!sprintf(euid,"%d", geteuid()))
+ return FAILURE;
+
+ /* Directory + '/' + File + Module Name + Effective UID + \0 */
+ ps_mm_path = do_alloca(save_path_len+1+sizeof(PS_MM_FILE)+mod_name_len+strlen(euid)+1);
+
memcpy(ps_mm_path, PS(save_path), save_path_len + 1);
-
if (save_path_len > 0 && ps_mm_path[save_path_len - 1] != DEFAULT_SLASH) {
ps_mm_path[save_path_len] = DEFAULT_SLASH;
ps_mm_path[save_path_len+1] = '\0';
}
-
strcat(ps_mm_path, PS_MM_FILE);
strcat(ps_mm_path, sapi_module.name);
+ strcat(ps_mm_path, euid);
ret = ps_mm_initialize(ps_mm_instance, ps_mm_path);