php-src/main/streams.c

1102 lines
27 KiB
C
Raw Normal View History

2001-04-17 17:03:18 +00:00
/*
+----------------------------------------------------------------------+
2001-12-11 15:32:16 +00:00
| PHP Version 4 |
2001-04-17 17:03:18 +00:00
+----------------------------------------------------------------------+
2002-02-28 08:29:35 +00:00
| Copyright (c) 1997-2002 The PHP Group |
2001-04-17 17:03:18 +00:00
+----------------------------------------------------------------------+
| This source file is subject to version 2.02 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| http://www.php.net/license/2_02.txt. |
| 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. |
+----------------------------------------------------------------------+
2002-03-15 21:03:08 +00:00
| Authors: |
| Wez Furlong (wez@thebrainroom.com) |
| Borrowed code from: |
| Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
| Jim Winstead <jimw@php.net> |
2001-04-17 17:03:18 +00:00
+----------------------------------------------------------------------+
*/
#define _GNU_SOURCE
#include "php.h"
2002-03-15 21:03:08 +00:00
#include "php_globals.h"
#include "php_network.h"
#include "php_open_temporary_file.h"
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
#ifndef MAP_FAILED
#define MAP_FAILED ((void *) -1)
#endif
2001-04-17 17:03:18 +00:00
2002-03-16 03:50:17 +00:00
#define CHUNK_SIZE 8192
2001-04-17 17:03:18 +00:00
#ifdef PHP_WIN32
#define EWOULDBLOCK WSAEWOULDBLOCK
#else
#include "build-defs.h"
#endif
/* {{{ some macros to help track leaks */
#if ZEND_DEBUG
#define emalloc_rel_orig(size) \
( __php_stream_call_depth == 0 \
? _emalloc((size) ZEND_FILE_LINE_CC ZEND_FILE_LINE_RELAY_CC) \
: _emalloc((size) ZEND_FILE_LINE_CC ZEND_FILE_LINE_ORIG_RELAY_CC) )
#define erealloc_rel_orig(ptr, size) \
( __php_stream_call_depth == 0 \
? _erealloc((ptr), (size), 0 ZEND_FILE_LINE_CC ZEND_FILE_LINE_RELAY_CC) \
: _erealloc((ptr), (size), 0 ZEND_FILE_LINE_CC ZEND_FILE_LINE_ORIG_RELAY_CC) )
#define pemalloc_rel_orig(size, persistent) ((persistent) ? malloc((size)) : emalloc_rel_orig((size)))
#define perealloc_rel_orig(ptr, size, persistent) ((persistent) ? realloc((ptr), (size)) : erealloc_rel_orig((ptr), (size)))
#else
# define pemalloc_rel_orig(size, persistent) pemalloc((size), (persistent))
# define perealloc_rel_orig(ptr, size, persistent) perealloc((ptr), (size), (persistent))
# define emalloc_rel_orig(size) emalloc((size))
#endif
/* }}} */
2002-03-15 21:03:08 +00:00
static HashTable url_stream_wrappers_hash;
2001-04-17 17:03:18 +00:00
/* allocate a new stream for a particular ops */
PHPAPI php_stream *_php_stream_alloc(php_stream_ops *ops, void *abstract, int persistent, const char *mode STREAMS_DC TSRMLS_DC) /* {{{ */
2001-04-17 17:03:18 +00:00
{
php_stream *ret;
ret = (php_stream*) pemalloc_rel_orig(sizeof(php_stream), persistent);
2001-04-17 17:03:18 +00:00
memset(ret, 0, sizeof(php_stream));
ret->ops = ops;
ret->abstract = abstract;
ret->is_persistent = persistent;
strlcpy(ret->mode, mode, sizeof(ret->mode));
2001-04-17 17:03:18 +00:00
return ret;
}
2002-03-15 21:03:08 +00:00
/* }}} */
2001-04-17 17:03:18 +00:00
PHPAPI int _php_stream_free(php_stream *stream, int close_options TSRMLS_DC) /* {{{ */
2001-04-17 17:03:18 +00:00
{
int ret = 1;
if (close_options & PHP_STREAM_FREE_CALL_DTOR) {
if (stream->fclose_stdiocast == PHP_STREAM_FCLOSE_FOPENCOOKIE) {
/* calling fclose on an fopencookied stream will ultimately
call this very same function. If we were called via fclose,
the cookie_closer unsets the fclose_stdiocast flags, so
we can be sure that we only reach here when PHP code calls
php_stream_free.
Lets let the cookie code clean it all up.
*/
return fclose(stream->stdiocast);
}
php_stream_flush(stream);
ret = stream->ops->close(stream, close_options & PHP_STREAM_FREE_PRESERVE_HANDLE ? 0 : 1 TSRMLS_CC);
stream->abstract = NULL;
/* tidy up any FILE* that might have been fdopened */
if (stream->fclose_stdiocast == PHP_STREAM_FCLOSE_FDOPEN && stream->stdiocast) {
fclose(stream->stdiocast);
stream->stdiocast = NULL;
}
2001-04-17 17:03:18 +00:00
}
2002-03-15 21:03:08 +00:00
if (close_options & PHP_STREAM_FREE_RELEASE_STREAM) {
if (stream->wrapper && stream->wrapper->destroy) {
stream->wrapper->destroy(stream TSRMLS_CC);
stream->wrapper = NULL;
}
if (stream->wrapperdata) {
zval_ptr_dtor(&stream->wrapperdata);
stream->wrapperdata = NULL;
}
pefree(stream, stream->is_persistent);
2002-03-15 21:03:08 +00:00
}
2001-04-17 17:03:18 +00:00
return ret;
}
2002-03-15 21:03:08 +00:00
/* }}} */
2001-04-17 17:03:18 +00:00
2002-03-15 21:03:08 +00:00
/* {{{ generic stream operations */
PHPAPI size_t _php_stream_read(php_stream *stream, char *buf, size_t size TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
return stream->ops->read(stream, buf, size TSRMLS_CC);
2001-04-17 17:03:18 +00:00
}
PHPAPI int _php_stream_eof(php_stream *stream TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
/* we define our stream reading function so that it
must return EOF when an EOF condition occurs, when
working in unbuffered mode and called with these args */
return stream->ops->read(stream, NULL, 0 TSRMLS_CC) == EOF ? 1 : 0;
2001-04-17 17:03:18 +00:00
}
PHPAPI int _php_stream_putc(php_stream *stream, int c TSRMLS_DC)
2002-03-15 21:03:08 +00:00
{
unsigned char buf = c;
if (php_stream_write(stream, &buf, 1) > 0) {
2002-03-15 21:03:08 +00:00
return 1;
}
2002-03-15 21:03:08 +00:00
return EOF;
}
PHPAPI int _php_stream_getc(php_stream *stream TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
char buf;
if (php_stream_read(stream, &buf, 1) > 0) {
return buf & 0xff;
}
2001-04-17 17:03:18 +00:00
return EOF;
}
PHPAPI int _php_stream_puts(php_stream *stream, char *buf TSRMLS_DC)
2002-03-15 21:03:08 +00:00
{
int len;
char newline[2] = "\n"; /* is this OK for Win? */
len = strlen(buf);
if (len > 0 && php_stream_write(stream, buf, len) && php_stream_write(stream, newline, 1)) {
2002-03-15 21:03:08 +00:00
return 1;
}
2002-03-15 21:03:08 +00:00
return 0;
}
PHPAPI char *_php_stream_gets(php_stream *stream, char *buf, size_t maxlen TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
if (maxlen == 0) {
2001-04-17 17:03:18 +00:00
buf[0] = 0;
return buf;
}
if (stream->ops->gets) {
return stream->ops->gets(stream, buf, maxlen TSRMLS_CC);
} else {
2001-04-17 17:03:18 +00:00
/* unbuffered fgets - poor performance ! */
size_t n = 1;
2002-03-16 01:58:13 +00:00
char *c = buf;
2001-04-17 17:03:18 +00:00
/* TODO: look at error returns? */
while(n < maxlen && stream->ops->read(stream, c, 1 TSRMLS_CC) > 0) {
2001-04-17 17:03:18 +00:00
n++;
if (*c == '\n') {
c++;
break;
}
c++;
}
*c = 0;
return buf;
}
}
PHPAPI int _php_stream_flush(php_stream *stream TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
if (stream->ops->flush) {
return stream->ops->flush(stream TSRMLS_CC);
}
2002-03-15 21:03:08 +00:00
return 0;
2001-04-17 17:03:18 +00:00
}
PHPAPI size_t _php_stream_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
assert(stream);
if (buf == NULL || count == 0)
return 0;
return stream->ops->write(stream, buf, count TSRMLS_CC);
2001-04-17 17:03:18 +00:00
}
PHPAPI off_t _php_stream_tell(php_stream *stream TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
off_t ret = -1;
if (stream->ops->seek) {
ret = stream->ops->seek(stream, 0, SEEK_CUR TSRMLS_CC);
2001-04-17 17:03:18 +00:00
}
return ret;
}
PHPAPI int _php_stream_seek(php_stream *stream, off_t offset, int whence TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
if (stream->ops->seek) {
return stream->ops->seek(stream, offset, whence TSRMLS_CC);
}
2001-04-17 17:03:18 +00:00
2002-03-15 21:03:08 +00:00
/* emulate forward moving seeks with reads */
if (whence == SEEK_CUR && offset > 0) {
char tmp[1024];
while(offset >= sizeof(tmp)) {
if (php_stream_read(stream, tmp, sizeof(tmp)) == 0)
return -1;
offset -= sizeof(tmp);
}
if (offset) {
if (php_stream_read(stream, tmp, offset) == 0)
2002-03-15 21:03:08 +00:00
return -1;
}
2002-03-15 21:03:08 +00:00
return 0;
}
zend_error(E_WARNING, "streams of type %s do not support seeking", stream->ops->label);
2001-04-17 17:03:18 +00:00
return -1;
}
PHPAPI size_t _php_stream_copy_to_mem(php_stream *src, char **buf, size_t maxlen, int persistent STREAMS_DC TSRMLS_DC)
2002-03-15 21:03:08 +00:00
{
size_t ret = 0;
2002-03-16 01:58:13 +00:00
char *ptr;
2002-03-15 21:03:08 +00:00
size_t len = 0, max_len;
int step = CHUNK_SIZE;
int min_room = CHUNK_SIZE / 4;
#if HAVE_MMAP
int srcfd;
#endif
if (buf)
*buf = NULL;
if (maxlen == 0)
return 0;
if (maxlen == PHP_STREAM_COPY_ALL)
maxlen = 0;
2002-03-15 21:03:08 +00:00
#if HAVE_MMAP
/* try and optimize the case where we are copying from the start of a plain file.
* We could probably make this work in more situations, but I don't trust the stdio
* buffering layer.
* */
if ( php_stream_is(src, PHP_STREAM_IS_STDIO) &&
php_stream_tell(src) == 0 &&
2002-03-15 21:03:08 +00:00
SUCCESS == php_stream_cast(src, PHP_STREAM_AS_FD, (void**)&srcfd, 0))
{
struct stat sbuf;
if (fstat(srcfd, &sbuf) == 0) {
2002-03-16 01:58:13 +00:00
void *srcfile;
if (maxlen > sbuf.st_size || maxlen == 0)
maxlen = sbuf.st_size;
srcfile = mmap(NULL, maxlen, PROT_READ, MAP_SHARED, srcfd, 0);
if (srcfile != (void*)MAP_FAILED) {
2002-03-15 21:03:08 +00:00
*buf = pemalloc_rel_orig(persistent, maxlen);
2002-03-15 21:03:08 +00:00
if (*buf) {
memcpy(*buf, srcfile, maxlen);
ret = maxlen;
2002-03-15 21:03:08 +00:00
}
munmap(srcfile, maxlen);
2002-03-15 21:03:08 +00:00
return ret;
}
}
/* fall through - we might be able to copy in smaller chunks */
}
#endif
ptr = *buf = pemalloc_rel_orig(persistent, step);
2002-03-15 21:03:08 +00:00
max_len = step;
while((ret = php_stream_read(src, ptr, max_len - len))) {
len += ret;
if (len + min_room >= max_len) {
*buf = perealloc_rel_orig(*buf, max_len + step, persistent);
2002-03-15 21:03:08 +00:00
max_len += step;
ptr = *buf + len;
}
}
if (len) {
*buf = perealloc_rel_orig(*buf, len, persistent);
} else {
2002-03-15 21:03:08 +00:00
pefree(*buf, persistent);
*buf = NULL;
}
return len;
}
PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_DC TSRMLS_DC)
2002-03-15 21:03:08 +00:00
{
char buf[CHUNK_SIZE];
size_t readchunk;
size_t haveread = 0;
size_t didread;
#if HAVE_MMAP
int srcfd;
#endif
if (maxlen == 0)
return 0;
if (maxlen == PHP_STREAM_COPY_ALL)
maxlen = 0;
2002-03-15 21:03:08 +00:00
#if HAVE_MMAP
/* try and optimize the case where we are copying from the start of a plain file.
* We could probably make this work in more situations, but I don't trust the stdio
* buffering layer.
* */
if ( php_stream_is(src, PHP_STREAM_IS_STDIO) &&
php_stream_tell(src) == 0 &&
2002-03-15 21:03:08 +00:00
SUCCESS == php_stream_cast(src, PHP_STREAM_AS_FD, (void**)&srcfd, 0))
{
struct stat sbuf;
if (fstat(srcfd, &sbuf) == 0) {
2002-03-16 01:58:13 +00:00
void *srcfile;
if (maxlen > sbuf.st_size || maxlen == 0)
maxlen = sbuf.st_size;
srcfile = mmap(NULL, maxlen, PROT_READ, MAP_SHARED, srcfd, 0);
if (srcfile != (void*)MAP_FAILED) {
haveread = php_stream_write(dest, srcfile, maxlen);
munmap(srcfile, maxlen);
2002-03-15 21:03:08 +00:00
return haveread;
}
}
/* fall through - we might be able to copy in smaller chunks */
}
#endif
while(1) {
2002-03-15 21:03:08 +00:00
readchunk = sizeof(buf);
if (maxlen && (maxlen - haveread) < readchunk)
readchunk = maxlen - haveread;
didread = php_stream_read(src, buf, readchunk);
if (didread) {
2002-03-15 21:03:08 +00:00
/* extra paranoid */
size_t didwrite, towrite;
char *writeptr;
2002-03-15 21:03:08 +00:00
towrite = didread;
writeptr = buf;
haveread += didread;
while(towrite) {
2002-03-15 21:03:08 +00:00
didwrite = php_stream_write(dest, writeptr, towrite);
if (didwrite == 0)
return 0; /* error */
2002-03-15 21:03:08 +00:00
towrite -= didwrite;
writeptr += didwrite;
}
} else {
if (maxlen == 0) {
return haveread;
} else {
return 0; /* error */
}
}
2002-03-15 21:03:08 +00:00
if (maxlen - haveread == 0) {
2002-03-15 21:03:08 +00:00
break;
}
2002-03-15 21:03:08 +00:00
}
return haveread;
2002-03-15 21:03:08 +00:00
}
/* }}} */
/* {{{ ------- STDIO stream implementation -------*/
typedef struct {
2002-03-16 01:58:13 +00:00
FILE *file;
2002-03-15 21:03:08 +00:00
int is_pipe; /* use pclose */
#if HAVE_FLUSHIO
char last_op;
#endif
} php_stdio_stream_data;
PHPAPI php_stream *_php_stream_fopen_temporary_file(const char *dir, const char *pfx, char **opened_path STREAMS_DC TSRMLS_DC)
2002-03-15 21:03:08 +00:00
{
2002-03-16 03:30:19 +00:00
FILE *fp = php_open_temporary_file(dir, pfx, opened_path TSRMLS_CC);
2002-03-15 21:03:08 +00:00
if (fp) {
php_stream *stream = php_stream_fopen_from_file_rel(fp, "wb");
if (stream) {
2002-03-15 21:03:08 +00:00
return stream;
}
2002-03-15 21:03:08 +00:00
fclose(fp);
zend_error(E_WARNING, "%s(): unable to allocate stream", get_active_function_name(TSRMLS_C));
2002-03-15 21:03:08 +00:00
return NULL;
}
return NULL;
}
PHPAPI php_stream *_php_stream_fopen_tmpfile(int dummy STREAMS_DC TSRMLS_DC)
2002-03-15 21:03:08 +00:00
{
FILE *fp;
php_stream *stream;
2002-03-15 21:03:08 +00:00
fp = tmpfile();
if (fp == NULL) {
zend_error(E_WARNING, "tmpfile(): %s", strerror(errno));
return NULL;
}
stream = php_stream_fopen_from_file_rel(fp, "r+");
2002-03-15 21:03:08 +00:00
if (stream == NULL) {
zend_error(E_WARNING, "tmpfile(): %s", strerror(errno));
fclose(fp);
return NULL;
}
return stream;
}
2001-04-17 17:03:18 +00:00
2002-03-15 21:03:08 +00:00
PHPAPI php_stream *_php_stream_fopen_from_file(FILE *file, const char *mode STREAMS_DC TSRMLS_DC)
2002-03-15 21:03:08 +00:00
{
php_stdio_stream_data *self;
2002-03-15 21:03:08 +00:00
self = emalloc_rel_orig(sizeof(*self));
2002-03-15 21:03:08 +00:00
self->file = file;
self->is_pipe = 0;
return php_stream_alloc_rel(&php_stream_stdio_ops, self, 0, mode);
2002-03-15 21:03:08 +00:00
}
PHPAPI php_stream *_php_stream_fopen_from_pipe(FILE *file, const char *mode STREAMS_DC TSRMLS_DC)
2002-03-15 21:03:08 +00:00
{
php_stdio_stream_data *self;
2002-03-15 21:03:08 +00:00
self = emalloc_rel_orig(sizeof(*self));
2002-03-15 21:03:08 +00:00
self->file = file;
self->is_pipe = 1;
return php_stream_alloc_rel(&php_stream_stdio_ops, self, 0, mode);
2002-03-15 21:03:08 +00:00
}
static size_t php_stdiop_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
2002-03-16 01:58:13 +00:00
php_stdio_stream_data *data = (php_stdio_stream_data*)stream->abstract;
2002-03-15 21:03:08 +00:00
2002-03-16 11:24:12 +00:00
assert(data != NULL);
2002-03-15 21:03:08 +00:00
#if HAVE_FLUSHIO
if (data->last_op == 'r') {
2002-03-15 21:03:08 +00:00
fseek(data->file, 0, SEEK_CUR);
}
2002-03-15 21:03:08 +00:00
data->last_op = 'w';
#endif
return fwrite(buf, 1, count, data->file);
2001-04-17 17:03:18 +00:00
}
static size_t php_stdiop_read(php_stream *stream, char *buf, size_t count TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
2002-03-16 01:58:13 +00:00
php_stdio_stream_data *data = (php_stdio_stream_data*)stream->abstract;
2002-03-15 21:03:08 +00:00
2002-03-16 11:24:12 +00:00
assert(data != NULL);
2001-04-17 17:03:18 +00:00
if (buf == NULL && count == 0) {
/* check for EOF condition */
2002-03-15 21:03:08 +00:00
if (feof(data->file)) {
2001-04-17 17:03:18 +00:00
return EOF;
}
return 0;
}
2002-03-15 21:03:08 +00:00
#if HAVE_FLUSHIO
if (data->last_op == 'w')
fseek(data->file, 0, SEEK_CUR);
data->last_op = 'r';
#endif
2002-03-15 21:03:08 +00:00
return fread(buf, 1, count, data->file);
2001-04-17 17:03:18 +00:00
}
static int php_stdiop_close(php_stream *stream, int close_handle TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
2002-03-15 21:03:08 +00:00
int ret;
php_stdio_stream_data *data = (php_stdio_stream_data*)stream->abstract;
2002-03-15 21:03:08 +00:00
2002-03-16 11:24:12 +00:00
assert(data != NULL);
if (close_handle) {
if (data->is_pipe) {
ret = pclose(data->file);
} else {
ret = fclose(data->file);
}
} else {
ret = 0;
}
2002-03-15 21:03:08 +00:00
/* STDIO streams are never persistent! */
2002-03-15 21:03:08 +00:00
efree(data);
2002-03-15 21:03:08 +00:00
return ret;
2001-04-17 17:03:18 +00:00
}
static int php_stdiop_flush(php_stream *stream TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
2002-03-16 11:24:12 +00:00
php_stdio_stream_data *data = (php_stdio_stream_data*)stream->abstract;
assert(data != NULL);
2002-03-16 11:24:12 +00:00
return fflush(data->file);
2001-04-17 17:03:18 +00:00
}
static int php_stdiop_seek(php_stream *stream, off_t offset, int whence TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
2002-03-16 11:24:12 +00:00
php_stdio_stream_data *data = (php_stdio_stream_data*)stream->abstract;
assert(data != NULL);
2002-03-16 18:52:03 +00:00
if (offset == 0 && whence == SEEK_CUR)
return ftell(data->file);
2002-03-16 11:24:12 +00:00
return fseek(data->file, offset, whence);
2001-04-17 17:03:18 +00:00
}
static char *php_stdiop_gets(php_stream *stream, char *buf, size_t size TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
php_stdio_stream_data *data = (php_stdio_stream_data*)stream->abstract;
2002-03-15 21:03:08 +00:00
2002-03-16 11:24:12 +00:00
assert(data != NULL);
2002-03-15 21:03:08 +00:00
#if HAVE_FLUSHIO
if (data->last_op == 'w') {
2002-03-15 21:03:08 +00:00
fseek(data->file, 0, SEEK_CUR);
}
2002-03-15 21:03:08 +00:00
data->last_op = 'r';
#endif
2002-03-15 21:03:08 +00:00
return fgets(buf, size, data->file);
2001-04-17 17:03:18 +00:00
}
static int php_stdiop_cast(php_stream *stream, int castas, void **ret TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
int fd;
php_stdio_stream_data *data = (php_stdio_stream_data*) stream->abstract;
2002-03-16 11:24:12 +00:00
assert(data != NULL);
2001-04-17 17:03:18 +00:00
switch (castas) {
case PHP_STREAM_AS_STDIO:
if (ret) {
2002-03-15 21:03:08 +00:00
*ret = data->file;
}
2001-04-17 17:03:18 +00:00
return SUCCESS;
case PHP_STREAM_AS_FD:
2002-03-15 21:03:08 +00:00
fd = fileno(data->file);
if (fd < 0) {
2001-04-17 17:03:18 +00:00
return FAILURE;
}
if (ret) {
2001-04-17 17:03:18 +00:00
*ret = (void*)fd;
}
2001-04-17 17:03:18 +00:00
return SUCCESS;
default:
return FAILURE;
}
}
php_stream_ops php_stream_stdio_ops = {
php_stdiop_write, php_stdiop_read,
php_stdiop_close, php_stdiop_flush, php_stdiop_seek,
php_stdiop_gets, php_stdiop_cast,
"STDIO"
};
PHPAPI php_stream *_php_stream_fopen_with_path(char *filename, char *mode, char *path, char **opened_path STREAMS_DC TSRMLS_DC) /* {{{ */
2002-03-15 21:03:08 +00:00
{
/* code ripped off from fopen_wrappers.c */
char *pathbuf, *ptr, *end;
char *exec_fname;
char trypath[MAXPATHLEN];
struct stat sb;
php_stream *stream;
int path_length;
int filename_length;
int exec_fname_length;
if (opened_path) {
*opened_path = NULL;
}
if(!filename) {
return NULL;
}
filename_length = strlen(filename);
/* Relative path open */
if (*filename == '.') {
if (PG(safe_mode) && (!php_checkuid(filename, mode, CHECKUID_CHECK_MODE_PARAM))) {
return NULL;
}
2002-03-18 09:12:31 +00:00
return php_stream_fopen_rel(filename, mode, opened_path);
2002-03-15 21:03:08 +00:00
}
/*
* files in safe_mode_include_dir (or subdir) are excluded from
* safe mode GID/UID checks
*/
/* Absolute path open */
if (IS_ABSOLUTE_PATH(filename, filename_length)) {
if ((php_check_safe_mode_include_dir(filename TSRMLS_CC)) == 0)
/* filename is in safe_mode_include_dir (or subdir) */
return php_stream_fopen_rel(filename, mode, opened_path);
2002-03-15 21:03:08 +00:00
if (PG(safe_mode) && (!php_checkuid(filename, mode, CHECKUID_CHECK_MODE_PARAM)))
return NULL;
return php_stream_fopen_rel(filename, mode, opened_path);
2002-03-15 21:03:08 +00:00
}
if (!path || (path && !*path)) {
if (PG(safe_mode) && (!php_checkuid(filename, mode, CHECKUID_CHECK_MODE_PARAM))) {
return NULL;
}
return php_stream_fopen_rel(filename, mode, opened_path);
2002-03-15 21:03:08 +00:00
}
/* check in provided path */
/* append the calling scripts' current working directory
* as a fall back case
*/
if (zend_is_executing(TSRMLS_C)) {
exec_fname = zend_get_executed_filename(TSRMLS_C);
exec_fname_length = strlen(exec_fname);
path_length = strlen(path);
while ((--exec_fname_length >= 0) && !IS_SLASH(exec_fname[exec_fname_length]));
if ((exec_fname && exec_fname[0] == '[')
|| exec_fname_length<=0) {
/* [no active file] or no path */
pathbuf = estrdup(path);
} else {
2002-03-15 21:03:08 +00:00
pathbuf = (char *) emalloc(exec_fname_length + path_length +1 +1);
memcpy(pathbuf, path, path_length);
pathbuf[path_length] = DEFAULT_DIR_SEPARATOR;
memcpy(pathbuf+path_length+1, exec_fname, exec_fname_length);
pathbuf[path_length + exec_fname_length +1] = '\0';
}
} else {
pathbuf = estrdup(path);
}
ptr = pathbuf;
while (ptr && *ptr) {
end = strchr(ptr, DEFAULT_DIR_SEPARATOR);
if (end != NULL) {
*end = '\0';
end++;
}
snprintf(trypath, MAXPATHLEN, "%s/%s", ptr, filename);
if (PG(safe_mode)) {
if (VCWD_STAT(trypath, &sb) == 0) {
/* file exists ... check permission */
if ((php_check_safe_mode_include_dir(trypath TSRMLS_CC) == 0) ||
php_checkuid(trypath, mode, CHECKUID_CHECK_MODE_PARAM)) {
2002-03-15 21:03:08 +00:00
/* UID ok, or trypath is in safe_mode_include_dir */
stream = php_stream_fopen_rel(trypath, mode, opened_path);
} else {
2002-03-15 21:03:08 +00:00
stream = NULL;
}
2002-03-15 21:03:08 +00:00
efree(pathbuf);
return stream;
}
}
stream = php_stream_fopen_rel(trypath, mode, opened_path);
2002-03-15 21:03:08 +00:00
if (stream) {
efree(pathbuf);
return stream;
}
ptr = end;
} /* end provided path */
efree(pathbuf);
return NULL;
}
/* }}} */
PHPAPI php_stream *_php_stream_fopen(const char *filename, const char *mode, char **opened_path STREAMS_DC TSRMLS_DC)
2001-04-17 17:03:18 +00:00
{
FILE *fp;
2002-03-16 03:30:19 +00:00
char *realpath = NULL;
2002-03-16 03:30:19 +00:00
realpath = expand_filepath(filename, NULL TSRMLS_CC);
2002-03-15 21:03:08 +00:00
fp = fopen(realpath, mode);
2001-04-17 17:03:18 +00:00
if (fp) {
php_stream *ret = php_stream_fopen_from_file_rel(fp, mode);
2002-03-15 21:03:08 +00:00
if (ret) {
if (opened_path) {
*opened_path = realpath;
realpath = NULL;
}
if (realpath)
efree(realpath);
2001-04-17 17:03:18 +00:00
return ret;
2002-03-15 21:03:08 +00:00
}
2001-04-17 17:03:18 +00:00
fclose(fp);
}
2002-03-15 21:03:08 +00:00
efree(realpath);
2001-04-17 17:03:18 +00:00
return NULL;
}
2002-03-15 21:03:08 +00:00
/* }}} */
2001-04-17 17:03:18 +00:00
2002-03-15 21:03:08 +00:00
/* {{{ STDIO with fopencookie */
2001-04-17 17:03:18 +00:00
#if HAVE_FOPENCOOKIE
static ssize_t stream_cookie_reader(void *cookie, char *buffer, size_t size)
{
ssize_t ret;
TSRMLS_FETCH();
ret = php_stream_read(((php_stream *)cookie), buffer, size);
return ret;
2001-04-17 17:03:18 +00:00
}
static ssize_t stream_cookie_writer(void *cookie, const char *buffer, size_t size)
{
TSRMLS_FETCH();
return php_stream_write(((php_stream *)cookie), (char *)buffer, size);
2001-04-17 17:03:18 +00:00
}
static int stream_cookie_seeker(void *cookie, off_t position, int whence)
{
TSRMLS_FETCH();
return php_stream_seek((php_stream *)cookie, position, whence);
2001-04-17 17:03:18 +00:00
}
static int stream_cookie_closer(void *cookie)
{
2002-03-16 01:58:13 +00:00
php_stream *stream = (php_stream*)cookie;
2002-03-18 19:13:11 +00:00
TSRMLS_FETCH();
/* prevent recursion */
stream->fclose_stdiocast = PHP_STREAM_FCLOSE_NONE;
return php_stream_close(stream);
2001-04-17 17:03:18 +00:00
}
static COOKIE_IO_FUNCTIONS_T stream_cookie_functions =
{
stream_cookie_reader, stream_cookie_writer,
stream_cookie_seeker, stream_cookie_closer
};
#else
2001-08-25 09:20:18 +00:00
/* TODO: use socketpair() to emulate fopencookie, as suggested by Hartmut ? */
2001-04-17 17:03:18 +00:00
#endif
2002-03-15 21:03:08 +00:00
/* }}} */
2001-04-17 17:03:18 +00:00
PHPAPI int _php_stream_cast(php_stream *stream, int castas, void **ret, int show_err TSRMLS_DC) /* {{{ */
2001-04-17 17:03:18 +00:00
{
int flags = castas & PHP_STREAM_CAST_MASK;
castas &= ~PHP_STREAM_CAST_MASK;
if (castas == PHP_STREAM_AS_STDIO) {
if (stream->stdiocast) {
if (ret) {
2001-04-17 17:03:18 +00:00
*ret = stream->stdiocast;
}
goto exit_success;
2001-04-17 17:03:18 +00:00
}
/* if the stream is a stdio stream let's give it a chance to respond
* first, to avoid doubling up the layers of stdio with an fopencookie */
if (php_stream_is(stream, PHP_STREAM_IS_STDIO) &&
stream->ops->cast &&
stream->ops->cast(stream, castas, ret TSRMLS_CC) == SUCCESS)
{
2001-04-17 17:03:18 +00:00
goto exit_success;
}
2001-04-17 17:03:18 +00:00
#if HAVE_FOPENCOOKIE
/* if just checking, say yes we can be a FILE*, but don't actually create it yet */
if (ret == NULL)
goto exit_success;
*ret = fopencookie(stream, stream->mode, stream_cookie_functions);
if (*ret != NULL) {
off_t pos;
stream->fclose_stdiocast = PHP_STREAM_FCLOSE_FOPENCOOKIE;
/* If the stream position is not at the start, we need to force
* the stdio layer to believe it's real location. */
pos = php_stream_tell(stream);
if (pos > 0)
fseek(*ret, pos, SEEK_SET);
2001-04-17 17:03:18 +00:00
goto exit_success;
}
2001-04-17 17:03:18 +00:00
2002-03-19 17:49:02 +00:00
/* must be either:
a) programmer error
b) no memory
-> lets bail
*/
zend_error(E_ERROR, "%s(): fopencookie failed", get_active_function_name(TSRMLS_C));
return FAILURE;
2001-04-17 17:03:18 +00:00
#endif
}
if (stream->ops->cast && stream->ops->cast(stream, castas, ret TSRMLS_CC) == SUCCESS)
2001-04-17 17:03:18 +00:00
goto exit_success;
if (show_err) {
/* these names depend on the values of the PHP_STREAM_AS_XXX defines in php_streams.h */
2002-03-16 01:58:13 +00:00
static const char *cast_names[3] = {
"STDIO FILE*", "File Descriptor", "Socket Descriptor"
};
2001-08-25 09:20:18 +00:00
TSRMLS_FETCH();
2001-04-17 17:03:18 +00:00
zend_error(E_WARNING, "%s(): cannot represent a stream of type %s as a %s",
2001-07-30 08:24:42 +00:00
get_active_function_name(TSRMLS_C),
2001-04-17 17:03:18 +00:00
stream->ops->label,
cast_names[castas]
);
}
return FAILURE;
exit_success:
if (castas == PHP_STREAM_AS_STDIO && ret)
stream->stdiocast = *ret;
if (flags & PHP_STREAM_CAST_RELEASE) {
/* Something other than php_stream_close will be closing
* the underlying handle, so we should free the stream handle/data
* here now. The stream may not be freed immediately (in the case
* of fopencookie), but the caller should still not touch their
* original stream pointer in any case. */
if (stream->fclose_stdiocast != PHP_STREAM_FCLOSE_FOPENCOOKIE) {
/* ask the implementation to release resources other than
* the underlying handle */
php_stream_free(stream, PHP_STREAM_FREE_PRESERVE_HANDLE | PHP_STREAM_FREE_CLOSE);
}
}
2001-04-17 17:03:18 +00:00
return SUCCESS;
2002-03-15 21:03:08 +00:00
} /* }}} */
int php_init_stream_wrappers(TSRMLS_D)
2002-03-15 21:03:08 +00:00
{
if (PG(allow_url_fopen)) {
return zend_hash_init(&url_stream_wrappers_hash, 0, NULL, NULL, 1);
}
2002-03-15 21:03:08 +00:00
return SUCCESS;
}
int php_shutdown_stream_wrappers(TSRMLS_D)
2002-03-15 21:03:08 +00:00
{
if (PG(allow_url_fopen)) {
2002-03-15 21:03:08 +00:00
zend_hash_destroy(&url_stream_wrappers_hash);
}
2002-03-15 21:03:08 +00:00
return SUCCESS;
2001-04-17 17:03:18 +00:00
}
PHPAPI int php_register_url_stream_wrapper(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC)
2002-03-15 21:03:08 +00:00
{
if (PG(allow_url_fopen)) {
2002-03-17 12:06:41 +00:00
return zend_hash_add(&url_stream_wrappers_hash, protocol, strlen(protocol), wrapper, sizeof(*wrapper), NULL);
}
2002-03-15 21:03:08 +00:00
return FAILURE;
}
PHPAPI int php_unregister_url_stream_wrapper(char *protocol TSRMLS_DC)
2002-03-15 21:03:08 +00:00
{
if (PG(allow_url_fopen)) {
2002-03-15 21:03:08 +00:00
return zend_hash_del(&url_stream_wrappers_hash, protocol, strlen(protocol));
}
2002-03-15 21:03:08 +00:00
return SUCCESS;
}
static php_stream *php_stream_open_url(char *path, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC)
2002-03-15 21:03:08 +00:00
{
php_stream_wrapper *wrapper;
const char *p, *protocol = NULL;
2002-03-15 21:03:08 +00:00
int n = 0;
for (p = path; isalnum((int)*p); p++) {
2002-03-15 21:03:08 +00:00
n++;
}
2002-03-15 21:03:08 +00:00
if ((*p == ':') && (n > 1)) {
2002-03-15 21:03:08 +00:00
protocol = path;
}
2002-03-15 21:03:08 +00:00
if (protocol) {
if (FAILURE == zend_hash_find(&url_stream_wrappers_hash, (char*)protocol, n, (void**)&wrapper)) {
wrapper = NULL;
protocol = NULL;
}
if (wrapper) {
php_stream *stream = wrapper->create(path, mode, options, opened_path, wrapper->wrappercontext STREAMS_REL_CC TSRMLS_CC);
2002-03-15 21:03:08 +00:00
if (stream)
stream->wrapper = wrapper;
return stream;
}
}
if (!protocol || !strncasecmp(protocol, "file", n)) {
if (protocol && path[n+1] == '/' && path[n+2] == '/') {
zend_error(E_WARNING, "remote host file access not supported, %s", path);
return NULL;
}
if (protocol)
path += n + 1;
/* fall back on regular file access */
return php_stream_open_wrapper_rel(path, mode, (options & ~REPORT_ERRORS) | IGNORE_URL,
opened_path);
2002-03-15 21:03:08 +00:00
}
return NULL;
}
PHPAPI php_stream *_php_stream_open_wrapper(char *path, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC)
2002-03-15 21:03:08 +00:00
{
php_stream *stream = NULL;
2002-03-15 21:03:08 +00:00
if (opened_path)
*opened_path = NULL;
2002-03-15 21:03:08 +00:00
if (!path || !*path)
return NULL;
if (PG(allow_url_fopen) && !(options & IGNORE_URL)) {
stream = php_stream_open_url(path, mode, options, opened_path STREAMS_REL_CC TSRMLS_CC);
2002-03-15 21:03:08 +00:00
goto out;
}
if ((options & USE_PATH) && PG(include_path) != NULL) {
stream = php_stream_fopen_with_path_rel(path, mode, PG(include_path), opened_path);
2002-03-15 21:03:08 +00:00
goto out;
}
if ((options & ENFORCE_SAFE_MODE) && PG(safe_mode) && (!php_checkuid(path, mode, CHECKUID_CHECK_MODE_PARAM)))
return NULL;
stream = php_stream_fopen_rel(path, mode, opened_path);
2002-03-15 21:03:08 +00:00
out:
if (stream != NULL && (options & STREAM_MUST_SEEK)) {
php_stream *newstream;
2002-03-19 17:49:02 +00:00
switch(php_stream_make_seekable_rel(stream, &newstream, PHP_STREAM_NO_PREFERENCE)) {
case PHP_STREAM_UNCHANGED:
return stream;
case PHP_STREAM_RELEASED:
return newstream;
default:
php_stream_close(stream);
stream = NULL;
if (options & REPORT_ERRORS) {
char *tmp = estrdup(path);
php_strip_url_passwd(tmp);
zend_error(E_WARNING, "%s(\"%s\") - could not make seekable - %s",
get_active_function_name(TSRMLS_C), tmp, strerror(errno));
efree(tmp);
options ^= REPORT_ERRORS;
}
}
}
if (stream == NULL && (options & REPORT_ERRORS)) {
2002-03-16 01:58:13 +00:00
char *tmp = estrdup(path);
2002-03-15 21:03:08 +00:00
php_strip_url_passwd(tmp);
2002-03-16 03:33:48 +00:00
zend_error(E_WARNING, "%s(\"%s\") - %s", get_active_function_name(TSRMLS_C), tmp, strerror(errno));
2002-03-15 21:03:08 +00:00
efree(tmp);
}
return stream;
}
PHPAPI FILE * _php_stream_open_wrapper_as_file(char *path, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC)
{
FILE *fp = NULL;
php_stream *stream = NULL;
stream = php_stream_open_wrapper(path, mode, options, opened_path);
if (stream == NULL)
return NULL;
if (php_stream_cast(stream, PHP_STREAM_AS_STDIO|PHP_STREAM_CAST_TRY_HARD|PHP_STREAM_CAST_RELEASE,
(void**)&fp, REPORT_ERRORS) == FAILURE)
{
php_stream_close(stream);
if (opened_path && *opened_path)
efree(*opened_path);
return NULL;
}
return fp;
}
2002-03-19 17:49:02 +00:00
#define PHP_STREAM_MAX_MEM 2 * 1024 * 1024
PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STREAMS_DC TSRMLS_DC)
{
assert(newstream != NULL);
*newstream = NULL;
if (origstream->ops->seek != NULL) {
*newstream = origstream;
return PHP_STREAM_UNCHANGED;
}
/* Use a tmpfile and copy the old streams contents into it */
2002-03-19 17:49:02 +00:00
if (flags & PHP_STREAM_PREFER_STDIO)
*newstream = php_stream_fopen_tmpfile();
else
*newstream = php_stream_temp_create(TEMP_STREAM_DEFAULT, PHP_STREAM_MAX_MEM);
if (*newstream == NULL)
return PHP_STREAM_FAILED;
if (php_stream_copy_to_stream(origstream, *newstream, PHP_STREAM_COPY_ALL) == 0) {
php_stream_close(*newstream);
*newstream = NULL;
return PHP_STREAM_CRITICAL;
}
php_stream_close(origstream);
php_stream_seek(*newstream, 0, SEEK_SET);
return PHP_STREAM_RELEASED;
}
2002-03-15 21:03:08 +00:00
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/