1999-06-06 03:52:58 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP HTML Embedded Scripting Language Version 4.0 |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Copyright (c) 1997,1998 PHP Development Team (See Credits file) |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This program is free software; you can redistribute it and/or modify |
|
|
|
|
| it under the terms of one of the following licenses: |
|
|
|
|
| |
|
|
|
|
| A) the GNU General Public License as published by the Free Software |
|
|
|
|
| Foundation; either version 2 of the License, or (at your option) |
|
|
|
|
| any later version. |
|
|
|
|
| |
|
|
|
|
| B) the PHP License as published by the PHP Development Team and |
|
|
|
|
| included in the distribution in the file: LICENSE |
|
|
|
|
| |
|
|
|
|
| This program is distributed in the hope that it will be useful, |
|
|
|
|
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
|
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
|
|
| GNU General Public License for more details. |
|
|
|
|
| |
|
|
|
|
| You should have received a copy of both licenses referred to here. |
|
|
|
|
| If you did not, or have any questions about PHP licensing, please |
|
|
|
|
| contact core@php.net. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Sascha Schumann <ss@2ns.de> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include "php.h"
|
|
|
|
#include "php_session.h"
|
1999-06-08 00:43:24 +08:00
|
|
|
#include "mod_files.h"
|
|
|
|
#include "ext/standard/flock_compat.h"
|
1999-06-06 03:52:58 +08:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int fd;
|
|
|
|
char *lastkey;
|
|
|
|
char *basedir;
|
1999-06-08 03:51:54 +08:00
|
|
|
int dirdepth;
|
1999-06-06 03:52:58 +08:00
|
|
|
} ps_files;
|
|
|
|
|
1999-06-07 03:53:59 +08:00
|
|
|
|
1999-06-06 03:52:58 +08:00
|
|
|
ps_module ps_mod_files = {
|
|
|
|
PS_MOD(files)
|
|
|
|
};
|
|
|
|
|
1999-06-07 03:53:59 +08:00
|
|
|
|
1999-06-06 03:52:58 +08:00
|
|
|
#define PS_FILES_DATA ps_files *data = *mod_data
|
|
|
|
|
|
|
|
PS_OPEN_FUNC(files)
|
|
|
|
{
|
|
|
|
ps_files *data;
|
1999-06-08 03:51:54 +08:00
|
|
|
char *p;
|
1999-06-06 03:52:58 +08:00
|
|
|
|
|
|
|
data = ecalloc(sizeof(*data), 1);
|
|
|
|
*mod_data = data;
|
|
|
|
|
|
|
|
data->fd = -1;
|
1999-06-08 03:51:54 +08:00
|
|
|
if((p = strchr(save_path, ':'))) {
|
|
|
|
data->dirdepth = strtol(save_path, NULL, 10);
|
|
|
|
save_path = p + 1;
|
|
|
|
}
|
1999-06-06 03:52:58 +08:00
|
|
|
data->basedir = estrdup(save_path);
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
PS_CLOSE_FUNC(files)
|
|
|
|
{
|
|
|
|
PS_FILES_DATA;
|
|
|
|
|
|
|
|
if(data->fd > -1) close(data->fd);
|
|
|
|
if(data->lastkey) efree(data->lastkey);
|
|
|
|
efree(data->basedir);
|
|
|
|
efree(data);
|
|
|
|
*mod_data = NULL;
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
1999-06-08 03:51:54 +08:00
|
|
|
#if WIN32|WINNT
|
|
|
|
#define DIR_DELIMITER '\\'
|
|
|
|
#else
|
|
|
|
#define DIR_DELIMITER '/'
|
|
|
|
#endif
|
|
|
|
|
1999-06-06 03:52:58 +08:00
|
|
|
static void _ps_files_open(ps_files *data, const char *key)
|
|
|
|
{
|
1999-06-07 03:53:59 +08:00
|
|
|
char buf[MAXPATHLEN];
|
1999-06-08 03:51:54 +08:00
|
|
|
const char *p;
|
|
|
|
int i;
|
|
|
|
int n;
|
|
|
|
int keylen;
|
|
|
|
|
1999-06-06 03:52:58 +08:00
|
|
|
if(data->fd < 0 || !data->lastkey || strcmp(key, data->lastkey)) {
|
|
|
|
if(data->lastkey) efree(data->lastkey);
|
|
|
|
if(data->fd > -1) close(data->fd);
|
1999-06-08 03:51:54 +08:00
|
|
|
|
|
|
|
keylen = strlen(key);
|
|
|
|
if(keylen <= data->dirdepth || MAXPATHLEN <
|
|
|
|
(strlen(data->basedir) + 2 * data->dirdepth + keylen + 5))
|
|
|
|
return;
|
|
|
|
p = key;
|
|
|
|
n = sprintf(buf, "%s/", data->basedir);
|
|
|
|
for(i = 0; i < data->dirdepth; i++) {
|
|
|
|
buf[n++] = *p++;
|
|
|
|
buf[n++] = DIR_DELIMITER;
|
|
|
|
}
|
|
|
|
strcat(buf, p);
|
1999-06-06 03:52:58 +08:00
|
|
|
|
|
|
|
data->lastkey = estrdup(key);
|
|
|
|
|
|
|
|
data->fd = open(buf, O_CREAT | O_RDWR, 0600);
|
|
|
|
if(data->fd > -1) {
|
|
|
|
flock(data->fd, LOCK_EX);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PS_READ_FUNC(files)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
struct stat sbuf;
|
|
|
|
PS_FILES_DATA;
|
|
|
|
|
|
|
|
_ps_files_open(data, key);
|
|
|
|
if(data->fd < 0)
|
|
|
|
return FAILURE;
|
|
|
|
|
|
|
|
if(fstat(data->fd, &sbuf)) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
lseek(data->fd, 0, SEEK_SET);
|
|
|
|
|
|
|
|
*vallen = sbuf.st_size;
|
|
|
|
*val = emalloc(sbuf.st_size);
|
|
|
|
|
|
|
|
n = read(data->fd, *val, sbuf.st_size);
|
|
|
|
if(n != sbuf.st_size) {
|
|
|
|
efree(*val);
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
PS_WRITE_FUNC(files)
|
|
|
|
{
|
|
|
|
PS_FILES_DATA;
|
|
|
|
|
|
|
|
_ps_files_open(data, key);
|
|
|
|
if(data->fd < 0)
|
|
|
|
return FAILURE;
|
|
|
|
|
|
|
|
ftruncate(data->fd, 0);
|
|
|
|
lseek(data->fd, 0, SEEK_SET);
|
|
|
|
write(data->fd, val, vallen);
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
1999-06-11 17:23:00 +08:00
|
|
|
PS_DESTROY_FUNC(files)
|
1999-06-06 03:52:58 +08:00
|
|
|
{
|
1999-06-07 03:53:59 +08:00
|
|
|
char buf[MAXPATHLEN];
|
1999-06-06 03:52:58 +08:00
|
|
|
PS_FILES_DATA;
|
|
|
|
|
1999-06-07 03:53:59 +08:00
|
|
|
snprintf(buf, MAXPATHLEN, "%s/%s", data->basedir, key);
|
1999-06-06 03:52:58 +08:00
|
|
|
unlink(buf);
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
PS_GC_FUNC(files)
|
|
|
|
{
|
1999-06-08 03:51:54 +08:00
|
|
|
|
1999-06-06 03:52:58 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|