2001-04-18 01:03:18 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-08 16:18:22 +08:00
|
|
|
| PHP Version 5 |
|
2001-04-18 01:03:18 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2004-01-08 16:18:22 +08:00
|
|
|
| Copyright (c) 1997-2004 The PHP Group |
|
2001-04-18 01:03:18 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2003-06-11 04:04:29 +08:00
|
|
|
| This source file is subject to version 3.0 of the PHP license, |
|
2001-04-18 01:03:18 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.php.net/license/3_0.txt. |
|
2001-04-18 01:03:18 +08:00
|
|
|
| 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. |
|
|
|
|
+----------------------------------------------------------------------+
|
2003-02-19 16:40:19 +08:00
|
|
|
| Authors: Wez Furlong <wez@thebrainroom.com> |
|
2002-03-16 05:03:08 +08:00
|
|
|
| Borrowed code from: |
|
2003-02-19 16:40:19 +08:00
|
|
|
| Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
|
|
|
|
| Jim Winstead <jimw@php.net> |
|
2001-04-18 01:03:18 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2002-06-12 02:55:48 +08:00
|
|
|
/* $Id$ */
|
|
|
|
|
2001-04-18 01:03:18 +08:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include "php.h"
|
2002-03-16 05:03:08 +08:00
|
|
|
#include "php_globals.h"
|
|
|
|
#include "php_network.h"
|
|
|
|
#include "php_open_temporary_file.h"
|
2002-03-20 22:21:30 +08:00
|
|
|
#include "ext/standard/file.h"
|
2002-03-21 09:11:52 +08:00
|
|
|
#include "ext/standard/basic_functions.h" /* for BG(mmap_file) (not strictly required) */
|
2003-02-10 04:43:05 +08:00
|
|
|
#include "ext/standard/php_string.h" /* for php_memnstr, used by php_stream_get_record() */
|
2002-09-23 23:21:16 +08:00
|
|
|
#include <stddef.h>
|
2002-08-20 06:59:10 +08:00
|
|
|
#include <fcntl.h>
|
2003-02-17 06:19:28 +08:00
|
|
|
#include "php_streams_int.h"
|
2002-08-20 06:59:10 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
/* {{{ resource and registration code */
|
2002-03-16 05:03:08 +08:00
|
|
|
static HashTable url_stream_wrappers_hash;
|
2002-09-25 23:25:12 +08:00
|
|
|
static int le_stream = FAILURE; /* true global */
|
|
|
|
static int le_pstream = FAILURE; /* true global */
|
|
|
|
|
|
|
|
PHPAPI int php_file_le_stream(void)
|
|
|
|
{
|
|
|
|
return le_stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI int php_file_le_pstream(void)
|
|
|
|
{
|
|
|
|
return le_pstream;
|
|
|
|
}
|
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
PHPAPI HashTable *php_stream_get_url_stream_wrappers_hash()
|
|
|
|
{
|
|
|
|
return &url_stream_wrappers_hash;
|
|
|
|
}
|
|
|
|
|
2003-05-21 21:33:55 +08:00
|
|
|
static int _php_stream_release_context(list_entry *le, void *pContext TSRMLS_DC)
|
|
|
|
{
|
|
|
|
if (le->ptr == pContext) {
|
|
|
|
return --le->refcount == 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-25 23:25:12 +08:00
|
|
|
static int forget_persistent_resource_id_numbers(zend_rsrc_list_entry *rsrc TSRMLS_DC)
|
|
|
|
{
|
|
|
|
php_stream *stream;
|
2003-04-01 06:13:01 +08:00
|
|
|
|
|
|
|
if (Z_TYPE_P(rsrc) != le_pstream) {
|
2002-09-25 23:25:12 +08:00
|
|
|
return 0;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-09-25 23:25:12 +08:00
|
|
|
|
|
|
|
stream = (php_stream*)rsrc->ptr;
|
|
|
|
|
|
|
|
#if STREAM_DEBUG
|
|
|
|
fprintf(stderr, "forget_persistent: %s:%p\n", stream->ops->label, stream);
|
|
|
|
#endif
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-09-25 23:25:12 +08:00
|
|
|
stream->rsrc_id = FAILURE;
|
|
|
|
|
2003-05-21 21:33:55 +08:00
|
|
|
if (stream->context) {
|
|
|
|
zend_hash_apply_with_argument(&EG(regular_list),
|
|
|
|
(apply_func_arg_t) _php_stream_release_context,
|
|
|
|
stream->context TSRMLS_CC);
|
|
|
|
stream->context = NULL;
|
|
|
|
}
|
|
|
|
|
2002-09-25 23:25:12 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
PHP_RSHUTDOWN_FUNCTION(streams)
|
|
|
|
{
|
|
|
|
zend_hash_apply(&EG(persistent_list), (apply_func_t)forget_persistent_resource_id_numbers TSRMLS_CC);
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI int php_stream_from_persistent_id(const char *persistent_id, php_stream **stream TSRMLS_DC)
|
|
|
|
{
|
2003-05-20 06:58:34 +08:00
|
|
|
zend_rsrc_list_entry *le;
|
2002-09-25 23:25:12 +08:00
|
|
|
|
|
|
|
if (zend_hash_find(&EG(persistent_list), (char*)persistent_id, strlen(persistent_id)+1, (void*) &le) == SUCCESS) {
|
|
|
|
if (Z_TYPE_P(le) == le_pstream) {
|
|
|
|
if (stream) {
|
|
|
|
*stream = (php_stream*)le->ptr;
|
2003-05-20 06:58:34 +08:00
|
|
|
le->refcount++;
|
|
|
|
(*stream)->rsrc_id = ZEND_REGISTER_RESOURCE(NULL, *stream, le_pstream);
|
2002-09-25 23:25:12 +08:00
|
|
|
}
|
|
|
|
return PHP_STREAM_PERSISTENT_SUCCESS;
|
|
|
|
}
|
|
|
|
return PHP_STREAM_PERSISTENT_FAILURE;
|
|
|
|
}
|
|
|
|
return PHP_STREAM_PERSISTENT_NOT_EXIST;
|
|
|
|
}
|
2001-04-18 01:03:18 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ wrapper error reporting */
|
2003-02-28 01:43:38 +08:00
|
|
|
void php_stream_display_wrapper_errors(php_stream_wrapper *wrapper, const char *path, const char *caption TSRMLS_DC)
|
2002-09-28 21:05:47 +08:00
|
|
|
{
|
|
|
|
char *tmp = estrdup(path);
|
|
|
|
char *msg;
|
|
|
|
int free_msg = 0;
|
|
|
|
|
|
|
|
if (wrapper) {
|
|
|
|
if (wrapper->err_count > 0) {
|
|
|
|
int i;
|
|
|
|
size_t l;
|
|
|
|
int brlen;
|
|
|
|
char *br;
|
|
|
|
|
|
|
|
if (PG(html_errors)) {
|
|
|
|
brlen = 7;
|
|
|
|
br = "<br />\n";
|
|
|
|
} else {
|
|
|
|
brlen = 1;
|
|
|
|
br = "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0, l = 0; i < wrapper->err_count; i++) {
|
|
|
|
l += strlen(wrapper->err_stack[i]);
|
2003-04-01 06:13:01 +08:00
|
|
|
if (i < wrapper->err_count - 1) {
|
2002-09-28 21:05:47 +08:00
|
|
|
l += brlen;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-09-28 21:05:47 +08:00
|
|
|
}
|
|
|
|
msg = emalloc(l + 1);
|
|
|
|
msg[0] = '\0';
|
|
|
|
for (i = 0; i < wrapper->err_count; i++) {
|
|
|
|
strcat(msg, wrapper->err_stack[i]);
|
2003-04-01 06:13:01 +08:00
|
|
|
if (i < wrapper->err_count - 1) {
|
2002-09-28 21:05:47 +08:00
|
|
|
strcat(msg, br);
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-09-28 21:05:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
free_msg = 1;
|
|
|
|
} else {
|
|
|
|
msg = strerror(errno);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
msg = "no suitable wrapper could be found";
|
|
|
|
}
|
|
|
|
|
|
|
|
php_strip_url_passwd(tmp);
|
|
|
|
php_error_docref1(NULL TSRMLS_CC, tmp, E_WARNING, "%s: %s", caption, msg);
|
|
|
|
efree(tmp);
|
2003-04-01 06:13:01 +08:00
|
|
|
if (free_msg) {
|
2002-09-28 21:05:47 +08:00
|
|
|
efree(msg);
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-09-28 21:05:47 +08:00
|
|
|
}
|
|
|
|
|
2003-02-28 01:43:38 +08:00
|
|
|
void php_stream_tidy_wrapper_error_log(php_stream_wrapper *wrapper TSRMLS_DC)
|
2002-09-28 21:05:47 +08:00
|
|
|
{
|
|
|
|
if (wrapper) {
|
|
|
|
/* tidy up the error stack */
|
|
|
|
int i;
|
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
for (i = 0; i < wrapper->err_count; i++) {
|
2002-09-28 21:05:47 +08:00
|
|
|
efree(wrapper->err_stack[i]);
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
|
|
|
if (wrapper->err_stack) {
|
2002-09-28 21:05:47 +08:00
|
|
|
efree(wrapper->err_stack);
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-09-28 21:05:47 +08:00
|
|
|
wrapper->err_stack = NULL;
|
|
|
|
wrapper->err_count = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
PHPAPI void php_stream_wrapper_log_error(php_stream_wrapper *wrapper, int options TSRMLS_DC, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char *buffer = NULL;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
vspprintf(&buffer, 0, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
if (options & REPORT_ERRORS || wrapper == NULL) {
|
2003-03-07 04:31:20 +08:00
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", buffer);
|
2003-02-17 06:19:28 +08:00
|
|
|
efree(buffer);
|
|
|
|
} else {
|
|
|
|
/* append to stack */
|
|
|
|
wrapper->err_stack = erealloc(wrapper->err_stack, (wrapper->err_count + 1) * sizeof(char *));
|
2003-04-01 06:13:01 +08:00
|
|
|
if (wrapper->err_stack) {
|
2003-02-17 06:19:28 +08:00
|
|
|
wrapper->err_stack[wrapper->err_count++] = buffer;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2003-02-17 06:19:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-28 21:05:47 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
/* }}} */
|
2002-09-28 21:05:47 +08:00
|
|
|
|
2001-04-18 01:03:18 +08:00
|
|
|
/* allocate a new stream for a particular ops */
|
2002-09-25 23:25:12 +08:00
|
|
|
PHPAPI php_stream *_php_stream_alloc(php_stream_ops *ops, void *abstract, const char *persistent_id, const char *mode STREAMS_DC TSRMLS_DC) /* {{{ */
|
2001-04-18 01:03:18 +08:00
|
|
|
{
|
2002-03-16 08:05:47 +08:00
|
|
|
php_stream *ret;
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-09-25 23:25:12 +08:00
|
|
|
ret = (php_stream*) pemalloc_rel_orig(sizeof(php_stream), persistent_id ? 1 : 0);
|
2001-04-18 01:03:18 +08:00
|
|
|
|
|
|
|
memset(ret, 0, sizeof(php_stream));
|
|
|
|
|
2004-04-01 07:48:59 +08:00
|
|
|
ret->readfilters.stream = ret;
|
|
|
|
ret->writefilters.stream = ret;
|
|
|
|
|
2002-03-28 08:49:00 +08:00
|
|
|
#if STREAM_DEBUG
|
2002-09-25 23:25:12 +08:00
|
|
|
fprintf(stderr, "stream_alloc: %s:%p persistent=%s\n", ops->label, ret, persistent_id);
|
2002-03-28 08:49:00 +08:00
|
|
|
#endif
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2001-04-18 01:03:18 +08:00
|
|
|
ret->ops = ops;
|
|
|
|
ret->abstract = abstract;
|
2002-09-25 23:25:12 +08:00
|
|
|
ret->is_persistent = persistent_id ? 1 : 0;
|
2002-09-23 09:47:04 +08:00
|
|
|
ret->chunk_size = FG(def_chunk_size);
|
2003-04-01 06:13:01 +08:00
|
|
|
|
|
|
|
if (FG(auto_detect_line_endings)) {
|
2002-09-24 02:12:39 +08:00
|
|
|
ret->flags |= PHP_STREAM_FLAG_DETECT_EOL;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-09-25 23:25:12 +08:00
|
|
|
|
|
|
|
if (persistent_id) {
|
2003-05-20 06:58:34 +08:00
|
|
|
zend_rsrc_list_entry le;
|
2002-09-25 23:25:12 +08:00
|
|
|
|
|
|
|
Z_TYPE(le) = le_pstream;
|
|
|
|
le.ptr = ret;
|
2003-05-20 06:58:34 +08:00
|
|
|
le.refcount = 0;
|
2002-09-25 23:25:12 +08:00
|
|
|
|
|
|
|
if (FAILURE == zend_hash_update(&EG(persistent_list), (char *)persistent_id,
|
|
|
|
strlen(persistent_id) + 1,
|
2003-05-20 06:58:34 +08:00
|
|
|
(void *)&le, sizeof(le), NULL)) {
|
2002-09-25 23:25:12 +08:00
|
|
|
|
|
|
|
pefree(ret, 1);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-09-25 23:25:12 +08:00
|
|
|
ret->rsrc_id = ZEND_REGISTER_RESOURCE(NULL, ret, persistent_id ? le_pstream : le_stream);
|
2002-03-16 08:05:47 +08:00
|
|
|
strlcpy(ret->mode, mode, sizeof(ret->mode));
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2001-04-18 01:03:18 +08:00
|
|
|
return ret;
|
|
|
|
}
|
2002-03-16 05:03:08 +08:00
|
|
|
/* }}} */
|
2001-04-18 01:03:18 +08:00
|
|
|
|
2003-04-14 04:30:57 +08:00
|
|
|
static int _php_stream_free_persistent(list_entry *le, void *pStream TSRMLS_DC)
|
2003-04-14 03:47:55 +08:00
|
|
|
{
|
2003-07-30 02:26:34 +08:00
|
|
|
return le->ptr == pStream;
|
2003-04-14 03:47:55 +08:00
|
|
|
}
|
|
|
|
|
2002-03-19 02:54:32 +08:00
|
|
|
PHPAPI int _php_stream_free(php_stream *stream, int close_options TSRMLS_DC) /* {{{ */
|
2001-04-18 01:03:18 +08:00
|
|
|
{
|
|
|
|
int ret = 1;
|
2002-11-18 19:39:42 +08:00
|
|
|
int remove_rsrc = 1;
|
|
|
|
int preserve_handle = close_options & PHP_STREAM_FREE_PRESERVE_HANDLE ? 1 : 0;
|
|
|
|
int release_cast = 1;
|
2001-04-18 01:03:18 +08:00
|
|
|
|
2002-03-28 08:49:00 +08:00
|
|
|
#if STREAM_DEBUG
|
2003-11-03 22:12:46 +08:00
|
|
|
fprintf(stderr, "stream_free: %s:%p[%s] in_free=%d opts=%08x\n", stream->ops->label, stream, stream->orig_path, stream->in_free, close_options);
|
2002-03-28 08:49:00 +08:00
|
|
|
#endif
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-11-18 19:39:42 +08:00
|
|
|
/* recursion protection */
|
2003-04-01 06:13:01 +08:00
|
|
|
if (stream->in_free) {
|
2002-03-20 22:21:30 +08:00
|
|
|
return 1;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-03-20 22:21:30 +08:00
|
|
|
|
|
|
|
stream->in_free++;
|
|
|
|
|
2002-11-18 19:39:42 +08:00
|
|
|
/* if we are releasing the stream only (and preserving the underlying handle),
|
|
|
|
* we need to do things a little differently.
|
|
|
|
* We are only ever called like this when the stream is cast to a FILE*
|
|
|
|
* for include (or other similar) purposes.
|
|
|
|
* */
|
|
|
|
if (preserve_handle) {
|
|
|
|
if (stream->fclose_stdiocast == PHP_STREAM_FCLOSE_FOPENCOOKIE) {
|
|
|
|
/* If the stream was fopencookied, we must NOT touch anything
|
|
|
|
* here, as the cookied stream relies on it all.
|
|
|
|
* Instead, mark the stream as OK to auto-clean */
|
|
|
|
php_stream_auto_cleanup(stream);
|
|
|
|
stream->in_free--;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* otherwise, make sure that we don't close the FILE* from a cast */
|
|
|
|
release_cast = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if STREAM_DEBUG
|
|
|
|
fprintf(stderr, "stream_free: %s:%p[%s] preserve_handle=%d release_cast=%d remove_rsrc=%d\n",
|
2003-11-03 22:12:46 +08:00
|
|
|
stream->ops->label, stream, stream->orig_path, preserve_handle, release_cast, remove_rsrc);
|
2002-11-18 19:39:42 +08:00
|
|
|
#endif
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-11-18 19:39:42 +08:00
|
|
|
/* make sure everything is saved */
|
|
|
|
_php_stream_flush(stream, 1 TSRMLS_CC);
|
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
/* If not called from the resource dtor, remove the stream from the resource list. */
|
2002-11-18 19:39:42 +08:00
|
|
|
if ((close_options & PHP_STREAM_FREE_RSRC_DTOR) == 0 && remove_rsrc) {
|
2002-03-20 22:21:30 +08:00
|
|
|
zend_list_delete(stream->rsrc_id);
|
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2003-07-03 06:18:59 +08:00
|
|
|
/* Remove stream from any context link list */
|
|
|
|
if (stream->context && stream->context->links) {
|
|
|
|
php_stream_context_del_link(stream->context, stream);
|
|
|
|
}
|
|
|
|
|
2002-03-19 02:54:32 +08:00
|
|
|
if (close_options & PHP_STREAM_FREE_CALL_DTOR) {
|
2002-11-18 19:39:42 +08:00
|
|
|
if (release_cast && stream->fclose_stdiocast == PHP_STREAM_FCLOSE_FOPENCOOKIE) {
|
2001-05-06 02:36:22 +08:00
|
|
|
/* 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.
|
|
|
|
*/
|
2002-03-20 22:21:30 +08:00
|
|
|
stream->in_free = 0;
|
2001-05-06 02:36:22 +08:00
|
|
|
return fclose(stream->stdiocast);
|
|
|
|
}
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2002-11-18 19:39:42 +08:00
|
|
|
ret = stream->ops->close(stream, preserve_handle ? 0 : 1 TSRMLS_CC);
|
2002-03-19 02:54:32 +08:00
|
|
|
stream->abstract = NULL;
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2001-05-06 02:36:22 +08:00
|
|
|
/* tidy up any FILE* that might have been fdopened */
|
2002-11-18 19:39:42 +08:00
|
|
|
if (release_cast && stream->fclose_stdiocast == PHP_STREAM_FCLOSE_FDOPEN && stream->stdiocast) {
|
2001-05-06 02:36:22 +08:00
|
|
|
fclose(stream->stdiocast);
|
|
|
|
stream->stdiocast = NULL;
|
2002-11-18 19:39:42 +08:00
|
|
|
stream->fclose_stdiocast = PHP_STREAM_FCLOSE_NONE;
|
2001-05-06 02:36:22 +08:00
|
|
|
}
|
2001-04-18 01:03:18 +08:00
|
|
|
}
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2002-03-19 02:54:32 +08:00
|
|
|
if (close_options & PHP_STREAM_FREE_RELEASE_STREAM) {
|
2003-02-18 09:22:21 +08:00
|
|
|
while (stream->readfilters.head) {
|
2003-02-18 09:39:26 +08:00
|
|
|
php_stream_filter_remove(stream->readfilters.head, 1 TSRMLS_CC);
|
2003-02-18 09:22:21 +08:00
|
|
|
}
|
|
|
|
while (stream->writefilters.head) {
|
2003-02-18 09:39:26 +08:00
|
|
|
php_stream_filter_remove(stream->writefilters.head, 1 TSRMLS_CC);
|
2002-08-21 04:47:47 +08:00
|
|
|
}
|
2002-03-19 02:54:32 +08:00
|
|
|
|
2002-04-17 06:14:27 +08:00
|
|
|
if (stream->wrapper && stream->wrapper->wops && stream->wrapper->wops->stream_closer) {
|
|
|
|
stream->wrapper->wops->stream_closer(stream->wrapper, stream TSRMLS_CC);
|
2002-03-19 02:54:32 +08:00
|
|
|
stream->wrapper = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stream->wrapperdata) {
|
2002-03-19 21:42:25 +08:00
|
|
|
zval_ptr_dtor(&stream->wrapperdata);
|
2002-03-19 02:54:32 +08:00
|
|
|
stream->wrapperdata = NULL;
|
|
|
|
}
|
|
|
|
|
2002-09-23 09:47:04 +08:00
|
|
|
if (stream->readbuf) {
|
|
|
|
pefree(stream->readbuf, stream->is_persistent);
|
|
|
|
stream->readbuf = NULL;
|
|
|
|
}
|
2003-07-29 02:57:28 +08:00
|
|
|
|
2003-07-30 02:26:34 +08:00
|
|
|
if (stream->is_persistent && (close_options & PHP_STREAM_FREE_PERSISTENT)) {
|
2003-07-29 02:57:28 +08:00
|
|
|
/* we don't work with *stream but need its value for comparison */
|
|
|
|
zend_hash_apply_with_argument(&EG(persistent_list), (apply_func_arg_t) _php_stream_free_persistent, stream TSRMLS_CC);
|
|
|
|
}
|
2002-03-20 22:21:30 +08:00
|
|
|
#if ZEND_DEBUG
|
|
|
|
if ((close_options & PHP_STREAM_FREE_RSRC_DTOR) && (stream->__exposed == 0) && (EG(error_reporting) & E_WARNING)) {
|
|
|
|
/* it leaked: Lets deliberately NOT pefree it so that the memory manager shows it
|
|
|
|
* as leaked; it will log a warning, but lets help it out and display what kind
|
|
|
|
* of stream it was. */
|
2003-09-14 03:56:38 +08:00
|
|
|
char *leakinfo;
|
2003-11-03 22:12:46 +08:00
|
|
|
spprintf(&leakinfo, 0, __FILE__ "(%d) : Stream of type '%s' %p (path:%s) was not closed\n", __LINE__, stream->ops->label, stream, stream->orig_path);
|
2002-08-21 06:08:55 +08:00
|
|
|
|
2003-11-03 22:12:46 +08:00
|
|
|
if (stream->orig_path) {
|
|
|
|
pefree(stream->orig_path, stream->is_persistent);
|
|
|
|
stream->orig_path = NULL;
|
2003-03-20 09:23:04 +08:00
|
|
|
}
|
2002-08-21 06:08:55 +08:00
|
|
|
|
2002-03-20 22:21:30 +08:00
|
|
|
# if defined(PHP_WIN32)
|
2003-09-14 03:56:38 +08:00
|
|
|
OutputDebugString(leakinfo);
|
2002-03-20 22:21:30 +08:00
|
|
|
# else
|
2003-09-14 03:56:38 +08:00
|
|
|
fprintf(stderr, "%s", leakinfo);
|
2002-03-20 22:21:30 +08:00
|
|
|
# endif
|
2003-09-14 03:56:38 +08:00
|
|
|
efree(leakinfo);
|
2002-08-21 06:08:55 +08:00
|
|
|
} else {
|
2003-11-03 22:12:46 +08:00
|
|
|
if (stream->orig_path) {
|
|
|
|
pefree(stream->orig_path, stream->is_persistent);
|
|
|
|
stream->orig_path = NULL;
|
2003-03-20 09:23:04 +08:00
|
|
|
}
|
|
|
|
|
2002-08-21 06:08:55 +08:00
|
|
|
pefree(stream, stream->is_persistent);
|
2002-03-20 22:21:30 +08:00
|
|
|
}
|
2002-08-21 06:08:55 +08:00
|
|
|
#else
|
2003-11-03 22:12:46 +08:00
|
|
|
if (stream->orig_path) {
|
|
|
|
pefree(stream->orig_path, stream->is_persistent);
|
|
|
|
stream->orig_path = NULL;
|
|
|
|
}
|
|
|
|
|
2002-03-19 02:54:32 +08:00
|
|
|
pefree(stream, stream->is_persistent);
|
2002-08-21 06:08:55 +08:00
|
|
|
#endif
|
2002-03-16 05:03:08 +08:00
|
|
|
}
|
2001-04-18 01:03:18 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2002-03-16 05:03:08 +08:00
|
|
|
/* }}} */
|
2001-04-18 01:03:18 +08:00
|
|
|
|
2002-03-16 05:03:08 +08:00
|
|
|
/* {{{ generic stream operations */
|
2002-09-23 09:47:04 +08:00
|
|
|
|
|
|
|
static void php_stream_fill_read_buffer(php_stream *stream, size_t size TSRMLS_DC)
|
2001-04-18 01:03:18 +08:00
|
|
|
{
|
2002-09-23 09:47:04 +08:00
|
|
|
/* allocate/fill the buffer */
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2003-02-18 09:22:21 +08:00
|
|
|
if (stream->readfilters.head) {
|
|
|
|
char *chunk_buf;
|
|
|
|
int err_flag = 0;
|
|
|
|
php_stream_bucket_brigade brig_in = { NULL, NULL }, brig_out = { NULL, NULL };
|
|
|
|
php_stream_bucket_brigade *brig_inp = &brig_in, *brig_outp = &brig_out, *brig_swap;
|
|
|
|
|
|
|
|
/* allocate a buffer for reading chunks */
|
|
|
|
chunk_buf = emalloc(stream->chunk_size);
|
|
|
|
|
|
|
|
while (!err_flag && (stream->writepos - stream->readpos < (off_t)size)) {
|
|
|
|
size_t justread = 0;
|
|
|
|
int flags;
|
|
|
|
php_stream_bucket *bucket;
|
2003-06-15 03:30:42 +08:00
|
|
|
php_stream_filter_status_t status = PSFS_ERR_FATAL;
|
2003-02-18 09:22:21 +08:00
|
|
|
php_stream_filter *filter;
|
|
|
|
|
|
|
|
/* read a chunk into a bucket */
|
|
|
|
justread = stream->ops->read(stream, chunk_buf, stream->chunk_size TSRMLS_CC);
|
|
|
|
if (justread > 0) {
|
|
|
|
bucket = php_stream_bucket_new(stream, chunk_buf, justread, 0, 0 TSRMLS_CC);
|
|
|
|
|
|
|
|
/* after this call, bucket is owned by the brigade */
|
2003-02-18 09:39:26 +08:00
|
|
|
php_stream_bucket_append(brig_inp, bucket TSRMLS_CC);
|
2003-02-18 09:22:21 +08:00
|
|
|
|
|
|
|
flags = PSFS_FLAG_NORMAL;
|
|
|
|
} else {
|
|
|
|
flags = stream->eof ? PSFS_FLAG_FLUSH_CLOSE : PSFS_FLAG_FLUSH_INC;
|
|
|
|
}
|
2002-09-23 09:47:04 +08:00
|
|
|
|
2003-02-18 09:22:21 +08:00
|
|
|
/* wind the handle... */
|
|
|
|
for (filter = stream->readfilters.head; filter; filter = filter->next) {
|
|
|
|
status = filter->fops->filter(stream, filter, brig_inp, brig_outp, NULL, flags TSRMLS_CC);
|
|
|
|
|
|
|
|
if (status != PSFS_PASS_ON) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* brig_out becomes brig_in.
|
|
|
|
* brig_in will always be empty here, as the filter MUST attach any un-consumed buckets
|
|
|
|
* to its own brigade */
|
|
|
|
brig_swap = brig_inp;
|
|
|
|
brig_inp = brig_outp;
|
|
|
|
brig_outp = brig_swap;
|
|
|
|
memset(brig_outp, 0, sizeof(*brig_outp));
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (status) {
|
|
|
|
case PSFS_PASS_ON:
|
|
|
|
/* we get here when the last filter in the chain has data to pass on.
|
|
|
|
* in this situation, we are passing the brig_in brigade into the
|
|
|
|
* stream read buffer */
|
|
|
|
while (brig_inp->head) {
|
|
|
|
bucket = brig_inp->head;
|
|
|
|
/* grow buffer to hold this bucket
|
|
|
|
* TODO: this can fail for persistent streams */
|
|
|
|
if (stream->readbuflen - stream->writepos < bucket->buflen) {
|
|
|
|
stream->readbuflen += bucket->buflen;
|
|
|
|
stream->readbuf = perealloc(stream->readbuf, stream->readbuflen,
|
|
|
|
stream->is_persistent);
|
|
|
|
}
|
|
|
|
memcpy(stream->readbuf + stream->writepos, bucket->buf, bucket->buflen);
|
|
|
|
stream->writepos += bucket->buflen;
|
|
|
|
|
|
|
|
php_stream_bucket_unlink(bucket TSRMLS_CC);
|
|
|
|
php_stream_bucket_delref(bucket TSRMLS_CC);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PSFS_FEED_ME:
|
|
|
|
/* when a filter needs feeding, there is no brig_out to deal with.
|
|
|
|
* we simply continue the loop; if the caller needs more data,
|
|
|
|
* we will read again, otherwise out job is done here */
|
|
|
|
if (justread == 0) {
|
|
|
|
/* there is no data */
|
|
|
|
err_flag = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
|
|
|
|
case PSFS_ERR_FATAL:
|
|
|
|
/* some fatal error. Theoretically, the stream is borked, so all
|
|
|
|
* further reads should fail. */
|
|
|
|
err_flag = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (justread == 0) {
|
|
|
|
break;
|
|
|
|
}
|
2002-09-23 09:47:04 +08:00
|
|
|
}
|
2003-02-18 09:22:21 +08:00
|
|
|
|
|
|
|
efree(chunk_buf);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* is there enough data in the buffer ? */
|
|
|
|
if (stream->writepos - stream->readpos < (off_t)size) {
|
|
|
|
size_t justread = 0;
|
|
|
|
|
|
|
|
/* reduce buffer memory consumption if possible, to avoid a realloc */
|
|
|
|
if (stream->readbuf && stream->readbuflen - stream->writepos < stream->chunk_size) {
|
|
|
|
memmove(stream->readbuf, stream->readbuf + stream->readpos, stream->readbuflen - stream->readpos);
|
|
|
|
stream->writepos -= stream->readpos;
|
|
|
|
stream->readpos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* grow the buffer if required
|
|
|
|
* TODO: this can fail for persistent streams */
|
|
|
|
if (stream->readbuflen - stream->writepos < stream->chunk_size) {
|
|
|
|
stream->readbuflen += stream->chunk_size;
|
|
|
|
stream->readbuf = perealloc(stream->readbuf, stream->readbuflen,
|
|
|
|
stream->is_persistent);
|
|
|
|
}
|
|
|
|
|
2002-09-23 09:47:04 +08:00
|
|
|
justread = stream->ops->read(stream, stream->readbuf + stream->writepos,
|
|
|
|
stream->readbuflen - stream->writepos
|
|
|
|
TSRMLS_CC);
|
2002-10-05 18:35:13 +08:00
|
|
|
|
2003-02-18 09:22:21 +08:00
|
|
|
if (justread != (size_t)-1) {
|
|
|
|
stream->writepos += justread;
|
|
|
|
}
|
2002-10-05 18:35:13 +08:00
|
|
|
}
|
2002-09-23 09:47:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI size_t _php_stream_read(php_stream *stream, char *buf, size_t size TSRMLS_DC)
|
|
|
|
{
|
2002-10-07 07:27:53 +08:00
|
|
|
size_t toread = 0, didread = 0;
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-10-07 07:27:53 +08:00
|
|
|
while (size > 0) {
|
|
|
|
|
|
|
|
/* take from the read buffer first.
|
|
|
|
* It is possible that a buffered stream was switched to non-buffered, so we
|
|
|
|
* drain the remainder of the buffer before using the "raw" read mode for
|
|
|
|
* the excess */
|
|
|
|
if (stream->writepos > stream->readpos) {
|
|
|
|
|
|
|
|
toread = stream->writepos - stream->readpos;
|
2003-04-01 06:13:01 +08:00
|
|
|
if (toread > size) {
|
2002-10-07 07:27:53 +08:00
|
|
|
toread = size;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-10-07 07:27:53 +08:00
|
|
|
|
|
|
|
memcpy(buf, stream->readbuf + stream->readpos, toread);
|
|
|
|
stream->readpos += toread;
|
|
|
|
size -= toread;
|
|
|
|
buf += toread;
|
|
|
|
didread += toread;
|
|
|
|
}
|
2002-09-23 21:22:10 +08:00
|
|
|
|
2003-01-31 05:06:34 +08:00
|
|
|
/* ignore eof here; the underlying state might have changed */
|
|
|
|
if (size == 0) {
|
2002-10-07 07:27:53 +08:00
|
|
|
break;
|
|
|
|
}
|
2002-10-05 18:35:13 +08:00
|
|
|
|
2003-02-18 09:22:21 +08:00
|
|
|
if (!stream->readfilters.head && (stream->flags & PHP_STREAM_FLAG_NO_BUFFER || stream->chunk_size == 1)) {
|
|
|
|
toread = stream->ops->read(stream, buf, size TSRMLS_CC);
|
2002-09-23 21:22:10 +08:00
|
|
|
} else {
|
2002-10-07 07:27:53 +08:00
|
|
|
php_stream_fill_read_buffer(stream, size TSRMLS_CC);
|
2002-09-23 09:47:04 +08:00
|
|
|
|
2002-10-07 07:27:53 +08:00
|
|
|
toread = stream->writepos - stream->readpos;
|
2003-04-01 06:13:01 +08:00
|
|
|
if (toread > size) {
|
2002-10-07 07:27:53 +08:00
|
|
|
toread = size;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-10-07 07:27:53 +08:00
|
|
|
|
2002-10-14 07:43:46 +08:00
|
|
|
if (toread > 0) {
|
2002-10-07 07:27:53 +08:00
|
|
|
memcpy(buf, stream->readbuf + stream->readpos, toread);
|
|
|
|
stream->readpos += toread;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (toread > 0) {
|
|
|
|
didread += toread;
|
|
|
|
buf += toread;
|
|
|
|
size -= toread;
|
|
|
|
} else {
|
|
|
|
/* EOF, or temporary end of data (for non-blocking mode). */
|
|
|
|
break;
|
2002-09-24 07:39:46 +08:00
|
|
|
}
|
2002-09-23 09:47:04 +08:00
|
|
|
}
|
2002-10-05 18:35:13 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (didread > 0) {
|
2002-10-07 07:27:53 +08:00
|
|
|
stream->position += didread;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-10-05 18:35:13 +08:00
|
|
|
|
2002-09-23 21:22:10 +08:00
|
|
|
return didread;
|
2001-04-18 01:03:18 +08:00
|
|
|
}
|
|
|
|
|
2002-03-19 02:54:32 +08:00
|
|
|
PHPAPI int _php_stream_eof(php_stream *stream TSRMLS_DC)
|
2001-04-18 01:03:18 +08:00
|
|
|
{
|
2002-09-23 09:47:04 +08:00
|
|
|
/* if there is data in the buffer, it's not EOF */
|
2003-04-01 06:13:01 +08:00
|
|
|
if (stream->writepos - stream->readpos > 0) {
|
2002-09-23 09:47:04 +08:00
|
|
|
return 0;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-09-23 09:47:04 +08:00
|
|
|
|
2004-02-05 06:46:44 +08:00
|
|
|
/* use the configured timeout when checking eof */
|
2003-11-29 07:20:23 +08:00
|
|
|
if (!stream->eof && PHP_STREAM_OPTION_RETURN_ERR ==
|
|
|
|
php_stream_set_option(stream, PHP_STREAM_OPTION_CHECK_LIVENESS,
|
2004-05-27 21:04:14 +08:00
|
|
|
0, NULL)) {
|
2003-11-29 07:20:23 +08:00
|
|
|
stream->eof = 1;
|
|
|
|
}
|
|
|
|
|
2002-10-05 18:35:13 +08:00
|
|
|
return stream->eof;
|
2001-04-18 01:03:18 +08:00
|
|
|
}
|
|
|
|
|
2002-03-19 02:54:32 +08:00
|
|
|
PHPAPI int _php_stream_putc(php_stream *stream, int c TSRMLS_DC)
|
2002-03-16 05:03:08 +08:00
|
|
|
{
|
|
|
|
unsigned char buf = c;
|
2002-03-16 08:05:47 +08:00
|
|
|
|
|
|
|
if (php_stream_write(stream, &buf, 1) > 0) {
|
2002-03-16 05:03:08 +08:00
|
|
|
return 1;
|
2002-03-16 08:05:47 +08:00
|
|
|
}
|
2002-03-16 05:03:08 +08:00
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
|
2002-03-19 02:54:32 +08:00
|
|
|
PHPAPI int _php_stream_getc(php_stream *stream TSRMLS_DC)
|
2001-04-18 01:03:18 +08:00
|
|
|
{
|
|
|
|
char buf;
|
|
|
|
|
2002-03-16 08:05:47 +08:00
|
|
|
if (php_stream_read(stream, &buf, 1) > 0) {
|
2002-03-16 10:39:39 +08:00
|
|
|
return buf & 0xff;
|
2002-03-16 08:05:47 +08:00
|
|
|
}
|
2001-04-18 01:03:18 +08:00
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
|
2002-03-19 02:54:32 +08:00
|
|
|
PHPAPI int _php_stream_puts(php_stream *stream, char *buf TSRMLS_DC)
|
2002-03-16 05:03:08 +08:00
|
|
|
{
|
|
|
|
int len;
|
|
|
|
char newline[2] = "\n"; /* is this OK for Win? */
|
|
|
|
len = strlen(buf);
|
|
|
|
|
2002-03-16 08:05:47 +08:00
|
|
|
if (len > 0 && php_stream_write(stream, buf, len) && php_stream_write(stream, newline, 1)) {
|
2002-03-16 05:03:08 +08:00
|
|
|
return 1;
|
2002-03-16 08:05:47 +08:00
|
|
|
}
|
2002-03-16 05:03:08 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-03-28 08:49:00 +08:00
|
|
|
PHPAPI int _php_stream_stat(php_stream *stream, php_stream_statbuf *ssb TSRMLS_DC)
|
|
|
|
{
|
|
|
|
memset(ssb, 0, sizeof(*ssb));
|
|
|
|
|
|
|
|
/* if the stream was wrapped, allow the wrapper to stat it */
|
|
|
|
if (stream->wrapper && stream->wrapper->wops->stream_stat != NULL) {
|
|
|
|
return stream->wrapper->wops->stream_stat(stream->wrapper, stream, ssb TSRMLS_CC);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if the stream doesn't directly support stat-ing, return with failure.
|
|
|
|
* We could try and emulate this by casting to a FD and fstat-ing it,
|
|
|
|
* but since the fd might not represent the actual underlying content
|
|
|
|
* this would give bogus results. */
|
|
|
|
if (stream->ops->stat == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2003-01-07 07:27:03 +08:00
|
|
|
return (stream->ops->stat)(stream, ssb TSRMLS_CC);
|
2002-03-28 08:49:00 +08:00
|
|
|
}
|
|
|
|
|
2002-10-19 04:39:49 +08:00
|
|
|
PHPAPI char *php_stream_locate_eol(php_stream *stream, char *buf, size_t buf_len TSRMLS_DC)
|
2001-04-18 01:03:18 +08:00
|
|
|
{
|
2002-10-05 02:21:40 +08:00
|
|
|
size_t avail;
|
2002-10-02 21:18:01 +08:00
|
|
|
char *cr, *lf, *eol = NULL;
|
2002-09-23 09:47:04 +08:00
|
|
|
char *readptr;
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-10-19 04:39:49 +08:00
|
|
|
if (!buf) {
|
|
|
|
readptr = stream->readbuf + stream->readpos;
|
|
|
|
avail = stream->writepos - stream->readpos;
|
|
|
|
} else {
|
|
|
|
readptr = buf;
|
|
|
|
avail = buf_len;
|
|
|
|
}
|
2002-10-05 02:21:40 +08:00
|
|
|
|
|
|
|
/* Look for EOL */
|
|
|
|
if (stream->flags & PHP_STREAM_FLAG_DETECT_EOL) {
|
|
|
|
cr = memchr(readptr, '\r', avail);
|
|
|
|
lf = memchr(readptr, '\n', avail);
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-10-22 23:34:50 +08:00
|
|
|
if (cr && lf != cr + 1 && !(lf && lf < cr)) {
|
2002-10-05 02:21:40 +08:00
|
|
|
/* mac */
|
|
|
|
stream->flags ^= PHP_STREAM_FLAG_DETECT_EOL;
|
|
|
|
stream->flags |= PHP_STREAM_FLAG_EOL_MAC;
|
|
|
|
eol = cr;
|
|
|
|
} else if ((cr && lf && cr == lf - 1) || (lf)) {
|
|
|
|
/* dos or unix endings */
|
|
|
|
stream->flags ^= PHP_STREAM_FLAG_DETECT_EOL;
|
|
|
|
eol = lf;
|
|
|
|
}
|
|
|
|
} else if (stream->flags & PHP_STREAM_FLAG_EOL_MAC) {
|
|
|
|
eol = memchr(readptr, '\r', avail);
|
|
|
|
} else {
|
|
|
|
/* unix (and dos) line endings */
|
|
|
|
eol = memchr(readptr, '\n', avail);
|
|
|
|
}
|
|
|
|
|
|
|
|
return eol;
|
|
|
|
}
|
|
|
|
|
2002-10-14 06:52:33 +08:00
|
|
|
/* If buf == NULL, the buffer will be allocated automatically and will be of an
|
|
|
|
* appropriate length to hold the line, regardless of the line length, memory
|
|
|
|
* permitting */
|
2002-10-19 21:11:48 +08:00
|
|
|
PHPAPI char *_php_stream_get_line(php_stream *stream, char *buf, size_t maxlen,
|
|
|
|
size_t *returned_len TSRMLS_DC)
|
2002-10-05 02:21:40 +08:00
|
|
|
{
|
|
|
|
size_t avail = 0;
|
2002-10-14 06:52:33 +08:00
|
|
|
size_t current_buf_size = 0;
|
2002-10-14 10:28:35 +08:00
|
|
|
size_t total_copied = 0;
|
2002-10-14 06:52:33 +08:00
|
|
|
int grow_mode = 0;
|
|
|
|
char *bufstart = buf;
|
2002-10-05 18:35:13 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (buf == NULL) {
|
2002-10-14 06:52:33 +08:00
|
|
|
grow_mode = 1;
|
2003-04-01 06:13:01 +08:00
|
|
|
} else if (maxlen == 0) {
|
2002-04-17 06:14:27 +08:00
|
|
|
return NULL;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2001-04-18 01:03:18 +08:00
|
|
|
|
2002-10-05 02:21:40 +08:00
|
|
|
/*
|
|
|
|
* If the underlying stream operations block when no new data is readable,
|
|
|
|
* we need to take extra precautions.
|
|
|
|
*
|
|
|
|
* If there is buffered data available, we check for a EOL. If it exists,
|
|
|
|
* we pass the data immediately back to the caller. This saves a call
|
|
|
|
* to the read implementation and will not block where blocking
|
|
|
|
* is not necessary at all.
|
|
|
|
*
|
|
|
|
* If the stream buffer contains more data than the caller requested,
|
|
|
|
* we can also avoid that costly step and simply return that data.
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (;;) {
|
2002-09-23 09:47:04 +08:00
|
|
|
avail = stream->writepos - stream->readpos;
|
2001-04-18 01:03:18 +08:00
|
|
|
|
2002-10-05 02:21:40 +08:00
|
|
|
if (avail > 0) {
|
|
|
|
size_t cpysz = 0;
|
|
|
|
char *readptr;
|
|
|
|
char *eol;
|
|
|
|
int done = 0;
|
|
|
|
|
|
|
|
readptr = stream->readbuf + stream->readpos;
|
2002-10-19 04:39:49 +08:00
|
|
|
eol = php_stream_locate_eol(stream, NULL, 0 TSRMLS_CC);
|
2002-10-05 02:21:40 +08:00
|
|
|
|
|
|
|
if (eol) {
|
|
|
|
cpysz = eol - readptr + 1;
|
|
|
|
done = 1;
|
|
|
|
} else {
|
|
|
|
cpysz = avail;
|
2002-09-23 09:47:04 +08:00
|
|
|
}
|
2002-08-21 04:47:47 +08:00
|
|
|
|
2002-10-14 06:52:33 +08:00
|
|
|
if (grow_mode) {
|
|
|
|
/* allow room for a NUL. If this realloc is really a realloc
|
|
|
|
* (ie: second time around), we get an extra byte. In most
|
|
|
|
* cases, with the default chunk size of 8K, we will only
|
|
|
|
* incur that overhead once. When people have lines longer
|
|
|
|
* than 8K, we waste 1 byte per additional 8K or so.
|
|
|
|
* That seems acceptable to me, to avoid making this code
|
|
|
|
* hard to follow */
|
|
|
|
bufstart = erealloc(bufstart, current_buf_size + cpysz + 1);
|
|
|
|
current_buf_size += cpysz + 1;
|
2002-10-14 10:28:35 +08:00
|
|
|
buf = bufstart + total_copied;
|
2002-10-14 06:52:33 +08:00
|
|
|
} else {
|
|
|
|
if (cpysz >= maxlen - 1) {
|
|
|
|
cpysz = maxlen - 1;
|
|
|
|
done = 1;
|
|
|
|
}
|
2002-10-05 02:21:40 +08:00
|
|
|
}
|
2002-09-23 09:47:04 +08:00
|
|
|
|
2002-10-05 02:21:40 +08:00
|
|
|
memcpy(buf, readptr, cpysz);
|
2002-08-21 04:47:47 +08:00
|
|
|
|
2002-10-05 02:21:40 +08:00
|
|
|
stream->position += cpysz;
|
|
|
|
stream->readpos += cpysz;
|
|
|
|
buf += cpysz;
|
|
|
|
maxlen -= cpysz;
|
2002-10-14 10:28:35 +08:00
|
|
|
total_copied += cpysz;
|
2002-09-23 09:47:04 +08:00
|
|
|
|
2002-10-05 02:21:40 +08:00
|
|
|
if (done) {
|
|
|
|
break;
|
|
|
|
}
|
2002-10-12 10:56:34 +08:00
|
|
|
} else if (stream->eof) {
|
|
|
|
break;
|
2002-10-05 02:21:40 +08:00
|
|
|
} else {
|
2002-10-05 03:08:43 +08:00
|
|
|
/* XXX: Should be fine to always read chunk_size */
|
2002-10-14 06:52:33 +08:00
|
|
|
size_t toread;
|
|
|
|
|
|
|
|
if (grow_mode) {
|
2002-10-05 02:21:40 +08:00
|
|
|
toread = stream->chunk_size;
|
2002-10-14 06:52:33 +08:00
|
|
|
} else {
|
|
|
|
toread = maxlen - 1;
|
2003-04-01 06:13:01 +08:00
|
|
|
if (toread > stream->chunk_size) {
|
2002-10-14 06:52:33 +08:00
|
|
|
toread = stream->chunk_size;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-10-14 06:52:33 +08:00
|
|
|
}
|
2002-10-05 02:21:40 +08:00
|
|
|
|
|
|
|
php_stream_fill_read_buffer(stream, toread TSRMLS_CC);
|
2002-10-05 03:36:09 +08:00
|
|
|
|
|
|
|
if (stream->writepos - stream->readpos == 0) {
|
|
|
|
break;
|
|
|
|
}
|
2002-10-05 02:21:40 +08:00
|
|
|
}
|
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-10-14 10:28:35 +08:00
|
|
|
if (total_copied == 0) {
|
2002-10-14 13:38:50 +08:00
|
|
|
if (grow_mode) {
|
|
|
|
assert(bufstart == NULL);
|
|
|
|
}
|
2002-10-05 03:48:59 +08:00
|
|
|
return NULL;
|
2002-10-14 10:28:35 +08:00
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-10-05 02:21:40 +08:00
|
|
|
buf[0] = '\0';
|
2003-04-01 06:13:01 +08:00
|
|
|
if (returned_len) {
|
2002-10-19 21:11:48 +08:00
|
|
|
*returned_len = total_copied;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-09-25 23:25:12 +08:00
|
|
|
|
2002-10-14 06:52:33 +08:00
|
|
|
return bufstart;
|
2001-04-18 01:03:18 +08:00
|
|
|
}
|
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
PHPAPI char *php_stream_get_record(php_stream *stream, size_t maxlen, size_t *returned_len, char *delim, size_t delim_len TSRMLS_DC)
|
|
|
|
{
|
|
|
|
char *e, *buf;
|
|
|
|
size_t toread;
|
|
|
|
|
|
|
|
php_stream_fill_read_buffer(stream, maxlen TSRMLS_CC);
|
|
|
|
|
|
|
|
if (delim_len == 0) {
|
|
|
|
toread = maxlen;
|
|
|
|
} else {
|
|
|
|
if (delim_len == 1) {
|
|
|
|
e = memchr(stream->readbuf, *delim, stream->readbuflen);
|
|
|
|
} else {
|
|
|
|
e = php_memnstr(stream->readbuf, delim, delim_len, (stream->readbuf + stream->readbuflen));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!e) {
|
|
|
|
toread = maxlen;
|
|
|
|
} else {
|
|
|
|
toread = e - (char *) stream->readbuf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-04 09:34:00 +08:00
|
|
|
if (toread > maxlen && maxlen > 0) {
|
|
|
|
toread = maxlen;
|
|
|
|
}
|
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
buf = emalloc(toread + 1);
|
|
|
|
*returned_len = php_stream_read(stream, buf, toread);
|
|
|
|
|
|
|
|
if (*returned_len >= 0) {
|
|
|
|
return buf;
|
|
|
|
} else {
|
|
|
|
efree(buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-18 09:22:21 +08:00
|
|
|
/* Writes a buffer directly to a stream, using multiple of the chunk size */
|
|
|
|
static size_t _php_stream_write_buffer(php_stream *stream, const char *buf, size_t count TSRMLS_DC)
|
2001-04-18 01:03:18 +08:00
|
|
|
{
|
2002-10-12 10:31:42 +08:00
|
|
|
size_t didwrite = 0, towrite, justwrote;
|
2002-08-21 04:47:47 +08:00
|
|
|
|
2003-02-25 05:40:23 +08:00
|
|
|
/* if we have a seekable stream we need to ensure that data is written at the
|
|
|
|
* current stream->position. This means invalidating the read buffer and then
|
|
|
|
* performing a low-level seek */
|
|
|
|
if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) {
|
|
|
|
stream->readpos = stream->writepos = 0;
|
|
|
|
|
|
|
|
stream->ops->seek(stream, stream->position, SEEK_SET, &stream->position TSRMLS_CC);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-12 10:31:42 +08:00
|
|
|
while (count > 0) {
|
|
|
|
towrite = count;
|
|
|
|
if (towrite > stream->chunk_size)
|
|
|
|
towrite = stream->chunk_size;
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2003-02-18 09:22:21 +08:00
|
|
|
justwrote = stream->ops->write(stream, buf, towrite TSRMLS_CC);
|
|
|
|
|
2003-09-11 13:07:26 +08:00
|
|
|
/* convert justwrote to an integer, since normally it is unsigned */
|
|
|
|
if ((int)justwrote > 0) {
|
2002-10-12 10:31:42 +08:00
|
|
|
buf += justwrote;
|
|
|
|
count -= justwrote;
|
|
|
|
didwrite += justwrote;
|
2002-10-16 00:04:46 +08:00
|
|
|
|
2003-02-14 05:08:04 +08:00
|
|
|
/* Only screw with the buffer if we can seek, otherwise we lose data
|
|
|
|
* buffered from fifos and sockets */
|
2003-04-01 07:22:10 +08:00
|
|
|
if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) {
|
2003-02-14 05:08:04 +08:00
|
|
|
stream->position += justwrote;
|
|
|
|
}
|
2002-10-12 10:31:42 +08:00
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
2002-08-21 04:47:47 +08:00
|
|
|
}
|
2002-09-23 09:47:04 +08:00
|
|
|
return didwrite;
|
2003-02-18 09:22:21 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* push some data through the write filter chain.
|
|
|
|
* buf may be NULL, if flags are set to indicate a flush.
|
|
|
|
* This may trigger a real write to the stream.
|
|
|
|
* Returns the number of bytes consumed from buf by the first filter in the chain.
|
|
|
|
* */
|
|
|
|
static size_t _php_stream_write_filtered(php_stream *stream, const char *buf, size_t count, int flags TSRMLS_DC)
|
|
|
|
{
|
|
|
|
size_t consumed = 0;
|
|
|
|
php_stream_bucket *bucket;
|
|
|
|
php_stream_bucket_brigade brig_in = { NULL, NULL }, brig_out = { NULL, NULL };
|
|
|
|
php_stream_bucket_brigade *brig_inp = &brig_in, *brig_outp = &brig_out, *brig_swap;
|
2003-06-15 03:30:42 +08:00
|
|
|
php_stream_filter_status_t status = PSFS_ERR_FATAL;
|
2003-02-18 09:22:21 +08:00
|
|
|
php_stream_filter *filter;
|
|
|
|
|
|
|
|
if (buf) {
|
|
|
|
bucket = php_stream_bucket_new(stream, (char *)buf, count, 0, 0 TSRMLS_CC);
|
2003-02-18 09:39:26 +08:00
|
|
|
php_stream_bucket_append(&brig_in, bucket TSRMLS_CC);
|
2003-02-18 09:22:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (filter = stream->writefilters.head; filter; filter = filter->next) {
|
|
|
|
/* for our return value, we are interested in the number of bytes consumed from
|
|
|
|
* the first filter in the chain */
|
|
|
|
status = filter->fops->filter(stream, filter, brig_inp, brig_outp,
|
|
|
|
filter == stream->writefilters.head ? &consumed : NULL, flags TSRMLS_CC);
|
|
|
|
|
|
|
|
if (status != PSFS_PASS_ON) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* brig_out becomes brig_in.
|
|
|
|
* brig_in will always be empty here, as the filter MUST attach any un-consumed buckets
|
|
|
|
* to its own brigade */
|
|
|
|
brig_swap = brig_inp;
|
|
|
|
brig_inp = brig_outp;
|
|
|
|
brig_outp = brig_swap;
|
|
|
|
memset(brig_outp, 0, sizeof(*brig_outp));
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (status) {
|
|
|
|
case PSFS_PASS_ON:
|
|
|
|
/* filter chain generated some output; push it through to the
|
|
|
|
* underlying stream */
|
|
|
|
while (brig_inp->head) {
|
|
|
|
bucket = brig_inp->head;
|
|
|
|
_php_stream_write_buffer(stream, bucket->buf, bucket->buflen TSRMLS_CC);
|
|
|
|
/* Potential error situation - eg: no space on device. Perhaps we should keep this brigade
|
|
|
|
* hanging around and try to write it later.
|
|
|
|
* At the moment, we just drop it on the floor
|
|
|
|
* */
|
|
|
|
|
|
|
|
php_stream_bucket_unlink(bucket TSRMLS_CC);
|
|
|
|
php_stream_bucket_delref(bucket TSRMLS_CC);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PSFS_FEED_ME:
|
|
|
|
/* need more data before we can push data through to the stream */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PSFS_ERR_FATAL:
|
|
|
|
/* some fatal error. Theoretically, the stream is borked, so all
|
|
|
|
* further writes should fail. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI int _php_stream_flush(php_stream *stream, int closing TSRMLS_DC)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2003-02-18 09:22:21 +08:00
|
|
|
if (stream->writefilters.head) {
|
|
|
|
_php_stream_write_filtered(stream, NULL, 0, closing ? PSFS_FLAG_FLUSH_CLOSE : PSFS_FLAG_FLUSH_INC TSRMLS_CC);
|
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2003-02-18 09:22:21 +08:00
|
|
|
if (stream->ops->flush) {
|
|
|
|
ret = stream->ops->flush(stream TSRMLS_CC);
|
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2003-02-18 09:22:21 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI size_t _php_stream_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC)
|
|
|
|
{
|
2003-04-01 06:13:01 +08:00
|
|
|
if (buf == NULL || count == 0 || stream->ops->write == NULL) {
|
2003-02-18 09:22:21 +08:00
|
|
|
return 0;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2003-02-18 09:22:21 +08:00
|
|
|
|
|
|
|
if (stream->writefilters.head) {
|
|
|
|
return _php_stream_write_filtered(stream, buf, count, PSFS_FLAG_NORMAL TSRMLS_CC);
|
|
|
|
} else {
|
|
|
|
return _php_stream_write_buffer(stream, buf, count TSRMLS_CC);
|
|
|
|
}
|
2001-04-18 01:03:18 +08:00
|
|
|
}
|
|
|
|
|
2002-11-06 08:15:24 +08:00
|
|
|
PHPAPI size_t _php_stream_printf(php_stream *stream TSRMLS_DC, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
size_t count;
|
|
|
|
char *buf;
|
|
|
|
va_list ap;
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-11-06 08:15:24 +08:00
|
|
|
va_start(ap, fmt);
|
|
|
|
count = vspprintf(&buf, 0, fmt, ap);
|
|
|
|
va_end(ap);
|
2003-04-01 06:13:01 +08:00
|
|
|
|
|
|
|
if (!buf) {
|
2002-11-06 08:15:24 +08:00
|
|
|
return 0; /* error condition */
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
|
|
|
|
2002-11-06 08:15:24 +08:00
|
|
|
count = php_stream_write(stream, buf, count);
|
|
|
|
efree(buf);
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-11-06 08:15:24 +08:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2002-03-19 02:54:32 +08:00
|
|
|
PHPAPI off_t _php_stream_tell(php_stream *stream TSRMLS_DC)
|
2001-04-18 01:03:18 +08:00
|
|
|
{
|
2002-09-23 09:47:04 +08:00
|
|
|
return stream->position;
|
2001-04-18 01:03:18 +08:00
|
|
|
}
|
|
|
|
|
2002-03-19 02:54:32 +08:00
|
|
|
PHPAPI int _php_stream_seek(php_stream *stream, off_t offset, int whence TSRMLS_DC)
|
2001-04-18 01:03:18 +08:00
|
|
|
{
|
2002-09-23 09:47:04 +08:00
|
|
|
/* handle the case where we are in the buffer */
|
2002-10-16 00:04:46 +08:00
|
|
|
if ((stream->flags & PHP_STREAM_FLAG_NO_BUFFER) == 0) {
|
|
|
|
switch(whence) {
|
|
|
|
case SEEK_CUR:
|
|
|
|
if (offset > 0 && offset < stream->writepos - stream->readpos) {
|
|
|
|
stream->readpos += offset;
|
|
|
|
stream->position += offset;
|
|
|
|
stream->eof = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SEEK_SET:
|
|
|
|
if (offset > stream->position &&
|
|
|
|
offset < stream->position + stream->writepos - stream->readpos) {
|
|
|
|
stream->readpos += offset - stream->position;
|
|
|
|
stream->position = offset;
|
|
|
|
stream->eof = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2002-09-23 09:47:04 +08:00
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-09-23 09:47:04 +08:00
|
|
|
|
|
|
|
if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) {
|
2002-09-23 21:22:10 +08:00
|
|
|
int ret;
|
|
|
|
|
2003-02-18 09:22:21 +08:00
|
|
|
if (stream->writefilters.head) {
|
|
|
|
_php_stream_flush(stream, 0 TSRMLS_CC);
|
|
|
|
}
|
2002-08-21 04:47:47 +08:00
|
|
|
|
2002-09-23 09:47:04 +08:00
|
|
|
switch(whence) {
|
|
|
|
case SEEK_CUR:
|
|
|
|
offset = stream->position + offset;
|
|
|
|
whence = SEEK_SET;
|
|
|
|
break;
|
|
|
|
}
|
2002-09-23 21:22:10 +08:00
|
|
|
ret = stream->ops->seek(stream, offset, whence, &stream->position TSRMLS_CC);
|
|
|
|
|
2002-10-05 18:35:13 +08:00
|
|
|
if (((stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) || ret == 0) {
|
2003-04-01 06:13:01 +08:00
|
|
|
if (ret == 0) {
|
2002-10-05 18:35:13 +08:00
|
|
|
stream->eof = 0;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2003-02-25 05:40:23 +08:00
|
|
|
|
|
|
|
/* invalidate the buffer contents */
|
|
|
|
stream->readpos = stream->writepos = 0;
|
|
|
|
|
2002-09-23 21:22:10 +08:00
|
|
|
return ret;
|
2002-10-05 18:35:13 +08:00
|
|
|
}
|
2002-09-23 21:22:10 +08:00
|
|
|
/* else the stream has decided that it can't support seeking after all;
|
|
|
|
* fall through to attempt emulation */
|
2002-03-16 08:05:47 +08:00
|
|
|
}
|
2001-04-18 01:03:18 +08:00
|
|
|
|
2002-03-16 05:03:08 +08:00
|
|
|
/* emulate forward moving seeks with reads */
|
2002-03-16 08:05:47 +08:00
|
|
|
if (whence == SEEK_CUR && offset > 0) {
|
2002-03-16 10:39:39 +08:00
|
|
|
char tmp[1024];
|
|
|
|
while(offset >= sizeof(tmp)) {
|
2003-04-01 06:13:01 +08:00
|
|
|
if (php_stream_read(stream, tmp, sizeof(tmp)) == 0) {
|
2002-03-16 10:39:39 +08:00
|
|
|
return -1;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-03-16 10:39:39 +08:00
|
|
|
offset -= sizeof(tmp);
|
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
if (offset && (php_stream_read(stream, tmp, offset) == 0)) {
|
|
|
|
return -1;
|
2002-03-16 08:05:47 +08:00
|
|
|
}
|
2002-10-05 18:35:13 +08:00
|
|
|
stream->eof = 0;
|
2002-03-16 05:03:08 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2002-09-23 21:22:10 +08:00
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "stream does not support seeking");
|
2002-09-23 09:47:04 +08:00
|
|
|
|
2001-04-18 01:03:18 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2002-08-20 06:59:10 +08:00
|
|
|
PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC)
|
|
|
|
{
|
2002-09-23 21:22:10 +08:00
|
|
|
int ret = PHP_STREAM_OPTION_RETURN_NOTIMPL;
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-09-23 21:22:10 +08:00
|
|
|
if (stream->ops->set_option) {
|
|
|
|
ret = stream->ops->set_option(stream, option, value, ptrparam TSRMLS_CC);
|
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-09-23 21:22:10 +08:00
|
|
|
if (ret == PHP_STREAM_OPTION_RETURN_NOTIMPL) {
|
|
|
|
switch(option) {
|
2002-09-29 06:10:47 +08:00
|
|
|
case PHP_STREAM_OPTION_SET_CHUNK_SIZE:
|
|
|
|
ret = stream->chunk_size;
|
|
|
|
stream->chunk_size = value;
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
case PHP_STREAM_OPTION_READ_BUFFER:
|
2002-09-23 21:22:10 +08:00
|
|
|
/* try to match the buffer mode as best we can */
|
|
|
|
if (value == PHP_STREAM_BUFFER_NONE) {
|
|
|
|
stream->flags |= PHP_STREAM_FLAG_NO_BUFFER;
|
|
|
|
} else {
|
|
|
|
stream->flags ^= PHP_STREAM_FLAG_NO_BUFFER;
|
|
|
|
}
|
|
|
|
ret = PHP_STREAM_OPTION_RETURN_OK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2003-11-29 07:20:23 +08:00
|
|
|
;
|
2002-09-23 21:22:10 +08:00
|
|
|
}
|
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-09-23 21:22:10 +08:00
|
|
|
return ret;
|
2002-08-20 06:59:10 +08:00
|
|
|
}
|
|
|
|
|
2003-02-28 01:43:38 +08:00
|
|
|
PHPAPI int _php_stream_truncate_set_size(php_stream *stream, size_t newsize TSRMLS_DC)
|
|
|
|
{
|
|
|
|
return php_stream_set_option(stream, PHP_STREAM_OPTION_TRUNCATE_API, PHP_STREAM_TRUNCATE_SET_SIZE, &newsize);
|
|
|
|
}
|
|
|
|
|
2002-03-21 09:11:52 +08:00
|
|
|
PHPAPI size_t _php_stream_passthru(php_stream * stream STREAMS_DC TSRMLS_DC)
|
|
|
|
{
|
|
|
|
size_t bcount = 0;
|
|
|
|
char buf[8192];
|
2003-02-28 01:43:38 +08:00
|
|
|
int b;
|
2002-03-21 09:11:52 +08:00
|
|
|
|
2003-02-28 01:43:38 +08:00
|
|
|
if (php_stream_mmap_possible(stream)) {
|
|
|
|
char *p;
|
|
|
|
size_t mapped;
|
|
|
|
|
|
|
|
p = php_stream_mmap_range(stream, php_stream_tell(stream), 0, PHP_STREAM_MAP_MODE_SHARED_READONLY, &mapped);
|
|
|
|
|
|
|
|
if (p) {
|
|
|
|
PHPWRITE(p, mapped);
|
|
|
|
|
|
|
|
php_stream_mmap_unmap(stream);
|
|
|
|
|
|
|
|
return mapped;
|
2002-03-21 09:11:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-28 01:43:38 +08:00
|
|
|
while ((b = php_stream_read(stream, buf, sizeof(buf))) > 0) {
|
|
|
|
PHPWRITE(buf, b);
|
|
|
|
bcount += b;
|
2002-03-21 09:11:52 +08:00
|
|
|
}
|
2003-02-28 01:43:38 +08:00
|
|
|
|
2002-03-21 09:11:52 +08:00
|
|
|
return bcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-19 02:54:32 +08:00
|
|
|
PHPAPI size_t _php_stream_copy_to_mem(php_stream *src, char **buf, size_t maxlen, int persistent STREAMS_DC TSRMLS_DC)
|
2002-03-16 05:03:08 +08:00
|
|
|
{
|
|
|
|
size_t ret = 0;
|
2002-03-16 09:58:13 +08:00
|
|
|
char *ptr;
|
2002-03-16 05:03:08 +08:00
|
|
|
size_t len = 0, max_len;
|
|
|
|
int step = CHUNK_SIZE;
|
|
|
|
int min_room = CHUNK_SIZE / 4;
|
2003-03-18 22:35:01 +08:00
|
|
|
php_stream_statbuf ssbuf;
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (buf) {
|
2002-03-16 21:48:57 +08:00
|
|
|
*buf = NULL;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (maxlen == 0) {
|
2002-03-16 21:48:57 +08:00
|
|
|
return 0;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-03-16 21:48:57 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (maxlen == PHP_STREAM_COPY_ALL) {
|
2002-03-16 21:48:57 +08:00
|
|
|
maxlen = 0;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-03-16 21:48:57 +08:00
|
|
|
|
2003-02-28 01:43:38 +08:00
|
|
|
if (php_stream_mmap_possible(src)) {
|
|
|
|
char *p;
|
|
|
|
size_t mapped;
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2003-02-28 01:43:38 +08:00
|
|
|
p = php_stream_mmap_range(src, php_stream_tell(src), maxlen, PHP_STREAM_MAP_MODE_SHARED_READONLY, &mapped);
|
2002-03-16 21:48:57 +08:00
|
|
|
|
2003-02-28 01:43:38 +08:00
|
|
|
if (p) {
|
|
|
|
*buf = pemalloc_rel_orig(mapped + 1, persistent);
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (*buf) {
|
2003-02-28 01:43:38 +08:00
|
|
|
memcpy(*buf, p, mapped);
|
|
|
|
(*buf)[mapped] = '\0';
|
|
|
|
}
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2003-02-28 01:43:38 +08:00
|
|
|
php_stream_mmap_unmap(src);
|
2002-03-28 08:49:00 +08:00
|
|
|
|
2003-02-28 01:43:38 +08:00
|
|
|
return mapped;
|
2002-03-16 05:03:08 +08:00
|
|
|
}
|
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2003-03-19 06:26:02 +08:00
|
|
|
/* avoid many reallocs by allocating a good sized chunk to begin with, if
|
|
|
|
* we can. Note that the stream may be filtered, in which case the stat
|
|
|
|
* result may be inaccurate, as the filter may inflate or deflate the
|
|
|
|
* number of bytes that we can read. In order to avoid an upsize followed
|
|
|
|
* by a downsize of the buffer, overestimate by the step size (which is
|
|
|
|
* 2K). */
|
2003-03-18 22:35:01 +08:00
|
|
|
if (php_stream_stat(src, &ssbuf) == 0 && ssbuf.sb.st_size > 0) {
|
|
|
|
max_len = ssbuf.sb.st_size + step;
|
|
|
|
} else {
|
|
|
|
max_len = step;
|
|
|
|
}
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2003-03-18 22:35:01 +08:00
|
|
|
ptr = *buf = pemalloc_rel_orig(max_len, persistent);
|
2002-03-16 05:03:08 +08:00
|
|
|
|
|
|
|
while((ret = php_stream_read(src, ptr, max_len - len))) {
|
|
|
|
len += ret;
|
2002-03-16 08:05:47 +08:00
|
|
|
if (len + min_room >= max_len) {
|
2002-03-18 06:50:59 +08:00
|
|
|
*buf = perealloc_rel_orig(*buf, max_len + step, persistent);
|
2002-03-16 05:03:08 +08:00
|
|
|
max_len += step;
|
|
|
|
ptr = *buf + len;
|
|
|
|
}
|
|
|
|
}
|
2002-03-16 08:05:47 +08:00
|
|
|
if (len) {
|
2002-06-12 02:54:57 +08:00
|
|
|
*buf = perealloc_rel_orig(*buf, len + 1, persistent);
|
|
|
|
(*buf)[len] = '\0';
|
2002-03-16 08:05:47 +08:00
|
|
|
} else {
|
2002-03-16 05:03:08 +08:00
|
|
|
pefree(*buf, persistent);
|
|
|
|
*buf = NULL;
|
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2002-03-19 02:54:32 +08:00
|
|
|
PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_DC TSRMLS_DC)
|
2002-03-16 05:03:08 +08:00
|
|
|
{
|
|
|
|
char buf[CHUNK_SIZE];
|
|
|
|
size_t readchunk;
|
|
|
|
size_t haveread = 0;
|
|
|
|
size_t didread;
|
2003-02-19 03:03:44 +08:00
|
|
|
php_stream_statbuf ssbuf;
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (maxlen == 0) {
|
2002-03-16 10:48:35 +08:00
|
|
|
return 0;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-03-16 10:48:35 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (maxlen == PHP_STREAM_COPY_ALL) {
|
2002-03-16 10:48:35 +08:00
|
|
|
maxlen = 0;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2003-02-19 03:03:44 +08:00
|
|
|
if (php_stream_stat(src, &ssbuf) == 0) {
|
|
|
|
/* in the event that the source file is 0 bytes, return 1 to indicate success
|
|
|
|
* because opening the file to write had already created a copy */
|
2003-03-18 06:25:55 +08:00
|
|
|
if (ssbuf.sb.st_size == 0
|
|
|
|
#ifdef S_ISFIFO
|
|
|
|
&& !S_ISFIFO(ssbuf.sb.st_mode)
|
2003-09-10 08:58:12 +08:00
|
|
|
#endif
|
|
|
|
#ifdef S_ISCHR
|
|
|
|
&& !S_ISCHR(ssbuf.sb.st_mode)
|
2003-03-18 06:25:55 +08:00
|
|
|
#endif
|
|
|
|
) {
|
2003-02-19 03:03:44 +08:00
|
|
|
return 1;
|
2003-02-16 03:56:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-28 01:43:38 +08:00
|
|
|
if (php_stream_mmap_possible(src)) {
|
|
|
|
char *p;
|
|
|
|
size_t mapped;
|
|
|
|
|
|
|
|
p = php_stream_mmap_range(src, php_stream_tell(src), maxlen, PHP_STREAM_MAP_MODE_SHARED_READONLY, &mapped);
|
|
|
|
|
|
|
|
if (p) {
|
|
|
|
haveread = php_stream_write(dest, p, mapped);
|
|
|
|
|
|
|
|
php_stream_mmap_unmap(src);
|
|
|
|
|
|
|
|
return mapped;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-03-16 08:05:47 +08:00
|
|
|
while(1) {
|
2002-03-16 05:03:08 +08:00
|
|
|
readchunk = sizeof(buf);
|
|
|
|
|
|
|
|
if (maxlen && (maxlen - haveread) < readchunk)
|
|
|
|
readchunk = maxlen - haveread;
|
|
|
|
|
|
|
|
didread = php_stream_read(src, buf, readchunk);
|
2002-03-20 07:29:37 +08:00
|
|
|
|
2002-03-16 08:05:47 +08:00
|
|
|
if (didread) {
|
2002-03-16 05:03:08 +08:00
|
|
|
/* extra paranoid */
|
|
|
|
size_t didwrite, towrite;
|
2002-03-16 08:05:47 +08:00
|
|
|
char *writeptr;
|
2002-03-16 05:03:08 +08:00
|
|
|
|
|
|
|
towrite = didread;
|
|
|
|
writeptr = buf;
|
|
|
|
haveread += didread;
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2002-03-16 08:05:47 +08:00
|
|
|
while(towrite) {
|
2002-03-16 05:03:08 +08:00
|
|
|
didwrite = php_stream_write(dest, writeptr, towrite);
|
2003-04-01 06:13:01 +08:00
|
|
|
if (didwrite == 0) {
|
2002-03-16 05:03:08 +08:00
|
|
|
return 0; /* error */
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2002-03-16 05:03:08 +08:00
|
|
|
towrite -= didwrite;
|
|
|
|
writeptr += didwrite;
|
|
|
|
}
|
2002-03-16 08:05:47 +08:00
|
|
|
} else {
|
2002-03-20 07:29:37 +08:00
|
|
|
if (maxlen == 0) {
|
2002-03-17 04:05:08 +08:00
|
|
|
return haveread;
|
|
|
|
} else {
|
|
|
|
return 0; /* error */
|
|
|
|
}
|
2002-03-16 08:05:47 +08:00
|
|
|
}
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2002-03-16 08:05:47 +08:00
|
|
|
if (maxlen - haveread == 0) {
|
2002-03-16 05:03:08 +08:00
|
|
|
break;
|
2002-03-16 08:05:47 +08:00
|
|
|
}
|
2002-03-16 05:03:08 +08:00
|
|
|
}
|
|
|
|
return haveread;
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2002-03-16 05:03:08 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
/* {{{ wrapper init and registration */
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
static void stream_resource_regular_dtor(zend_rsrc_list_entry *rsrc TSRMLS_DC)
|
2002-03-16 05:03:08 +08:00
|
|
|
{
|
2003-02-17 06:19:28 +08:00
|
|
|
php_stream *stream = (php_stream*)rsrc->ptr;
|
|
|
|
/* set the return value for pclose */
|
|
|
|
FG(pclose_ret) = php_stream_free(stream, PHP_STREAM_FREE_CLOSE | PHP_STREAM_FREE_RSRC_DTOR);
|
|
|
|
}
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
static void stream_resource_persistent_dtor(zend_rsrc_list_entry *rsrc TSRMLS_DC)
|
|
|
|
{
|
|
|
|
php_stream *stream = (php_stream*)rsrc->ptr;
|
|
|
|
FG(pclose_ret) = php_stream_free(stream, PHP_STREAM_FREE_CLOSE | PHP_STREAM_FREE_RSRC_DTOR);
|
2002-03-16 05:03:08 +08:00
|
|
|
}
|
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
int php_init_stream_wrappers(int module_number TSRMLS_DC)
|
2002-03-16 05:03:08 +08:00
|
|
|
{
|
2003-02-17 06:19:28 +08:00
|
|
|
le_stream = zend_register_list_destructors_ex(stream_resource_regular_dtor, NULL, "stream", module_number);
|
|
|
|
le_pstream = zend_register_list_destructors_ex(NULL, stream_resource_persistent_dtor, "persistent stream", module_number);
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
return (
|
|
|
|
zend_hash_init(&url_stream_wrappers_hash, 0, NULL, NULL, 1) == SUCCESS
|
|
|
|
&&
|
|
|
|
zend_hash_init(php_get_stream_filters_hash(), 0, NULL, NULL, 1) == SUCCESS
|
2003-02-28 01:43:38 +08:00
|
|
|
&&
|
|
|
|
zend_hash_init(php_stream_xport_get_hash(), 0, NULL, NULL, 1) == SUCCESS
|
|
|
|
&&
|
|
|
|
php_stream_xport_register("tcp", php_stream_generic_socket_factory TSRMLS_CC) == SUCCESS
|
|
|
|
&&
|
|
|
|
php_stream_xport_register("udp", php_stream_generic_socket_factory TSRMLS_CC) == SUCCESS
|
2003-12-05 21:41:02 +08:00
|
|
|
#if defined(AF_UNIX) && !(defined(PHP_WIN32) || defined(__riscos__) || defined(NETWARE))
|
2003-02-28 01:43:38 +08:00
|
|
|
&&
|
|
|
|
php_stream_xport_register("unix", php_stream_generic_socket_factory TSRMLS_CC) == SUCCESS
|
|
|
|
&&
|
|
|
|
php_stream_xport_register("udg", php_stream_generic_socket_factory TSRMLS_CC) == SUCCESS
|
|
|
|
#endif
|
2003-02-17 06:19:28 +08:00
|
|
|
) ? SUCCESS : FAILURE;
|
|
|
|
}
|
2002-11-18 19:39:42 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
int php_shutdown_stream_wrappers(int module_number TSRMLS_DC)
|
|
|
|
{
|
|
|
|
zend_hash_destroy(&url_stream_wrappers_hash);
|
|
|
|
zend_hash_destroy(php_get_stream_filters_hash());
|
2003-02-28 01:43:38 +08:00
|
|
|
zend_hash_destroy(php_stream_xport_get_hash());
|
2003-02-17 06:19:28 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
2002-11-18 19:39:42 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
PHPAPI int php_register_url_stream_wrapper(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC)
|
|
|
|
{
|
|
|
|
return zend_hash_add(&url_stream_wrappers_hash, protocol, strlen(protocol), wrapper, sizeof(*wrapper), NULL);
|
|
|
|
}
|
2002-11-18 19:39:42 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
PHPAPI int php_unregister_url_stream_wrapper(char *protocol TSRMLS_DC)
|
|
|
|
{
|
|
|
|
return zend_hash_del(&url_stream_wrappers_hash, protocol, strlen(protocol));
|
2002-03-16 05:03:08 +08:00
|
|
|
}
|
2003-02-17 06:19:28 +08:00
|
|
|
/* }}} */
|
2001-04-18 01:03:18 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
/* {{{ php_stream_locate_url_wrapper */
|
|
|
|
PHPAPI php_stream_wrapper *php_stream_locate_url_wrapper(const char *path, char **path_for_open, int options TSRMLS_DC)
|
2003-02-13 21:40:34 +08:00
|
|
|
{
|
2003-02-17 06:19:28 +08:00
|
|
|
php_stream_wrapper *wrapper = NULL;
|
|
|
|
const char *p, *protocol = NULL;
|
|
|
|
int n = 0;
|
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (path_for_open) {
|
2003-02-17 06:19:28 +08:00
|
|
|
*path_for_open = (char*)path;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2003-02-17 06:19:28 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (options & IGNORE_URL) {
|
2003-02-17 06:19:28 +08:00
|
|
|
return (options & STREAM_LOCATE_WRAPPERS_ONLY) ? NULL : &php_plain_files_wrapper;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
for (p = path; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++) {
|
|
|
|
n++;
|
2003-02-13 21:40:34 +08:00
|
|
|
}
|
2003-02-16 11:48:49 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
if ((*p == ':') && (n > 1) && !strncmp("://", p, 3)) {
|
|
|
|
protocol = path;
|
|
|
|
} else if (strncasecmp(path, "zlib:", 5) == 0) {
|
|
|
|
/* BC with older php scripts and zlib wrapper */
|
|
|
|
protocol = "compress.zlib";
|
|
|
|
n = 13;
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Use of \"zlib:\" wrapper is deprecated; please use \"compress.zlib://\" instead.");
|
2003-02-16 11:48:49 +08:00
|
|
|
}
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
if (protocol) {
|
|
|
|
if (FAILURE == zend_hash_find(&url_stream_wrappers_hash, (char*)protocol, n, (void**)&wrapper)) {
|
|
|
|
char wrapper_name[32];
|
2003-02-13 21:40:34 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
if (n >= sizeof(wrapper_name))
|
|
|
|
n = sizeof(wrapper_name) - 1;
|
|
|
|
PHP_STRLCPY(wrapper_name, protocol, sizeof(wrapper_name), n);
|
|
|
|
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Unable to find the wrapper \"%s\" - did you forget to enable it when you configured PHP?",
|
|
|
|
wrapper_name);
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
wrapper = NULL;
|
|
|
|
protocol = NULL;
|
|
|
|
}
|
2002-08-25 19:23:19 +08:00
|
|
|
}
|
2003-02-17 06:19:28 +08:00
|
|
|
/* TODO: curl based streams probably support file:// properly */
|
|
|
|
if (!protocol || !strncasecmp(protocol, "file", n)) {
|
2003-10-20 04:59:12 +08:00
|
|
|
if (protocol && path[n+1] == '/' && path[n+2] == '/' && path[n+3] != '/') {
|
2003-04-01 06:13:01 +08:00
|
|
|
if (options & REPORT_ERRORS) {
|
2003-02-17 06:19:28 +08:00
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "remote host file access not supported, %s", path);
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2003-02-17 06:19:28 +08:00
|
|
|
return NULL;
|
2003-02-16 11:48:49 +08:00
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
if (protocol && path_for_open) {
|
2003-10-20 04:59:12 +08:00
|
|
|
/* skip past protocol and :/, but handle windows correctly */
|
2003-02-17 06:19:28 +08:00
|
|
|
*path_for_open = (char*)path + n + 1;
|
2003-10-20 04:59:12 +08:00
|
|
|
while (*(++*path_for_open)=='/');
|
|
|
|
#ifdef PHP_WIN32
|
|
|
|
if (*(*path_for_open + 1) != ':')
|
|
|
|
#endif
|
2003-11-24 01:35:00 +08:00
|
|
|
(*path_for_open)--;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2003-02-17 06:19:28 +08:00
|
|
|
|
|
|
|
/* fall back on regular file access */
|
|
|
|
return (options & STREAM_LOCATE_WRAPPERS_ONLY) ? NULL : &php_plain_files_wrapper;
|
2003-02-16 11:48:49 +08:00
|
|
|
}
|
2002-12-20 04:23:50 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
if (wrapper && wrapper->is_url && !PG(allow_url_fopen)) {
|
2003-04-01 06:13:01 +08:00
|
|
|
if (options & REPORT_ERRORS) {
|
2003-02-17 06:19:28 +08:00
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "URL file-access is disabled in the server configuration");
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2003-02-17 06:19:28 +08:00
|
|
|
return NULL;
|
2003-01-01 17:58:17 +08:00
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
return wrapper;
|
2002-03-16 05:03:08 +08:00
|
|
|
}
|
2003-02-17 06:19:28 +08:00
|
|
|
/* }}} */
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2003-12-13 12:07:18 +08:00
|
|
|
/* {{{ _php_stream_mkdir
|
|
|
|
*/
|
|
|
|
PHPAPI int _php_stream_mkdir(char *path, int mode, int options, php_stream_context *context TSRMLS_DC)
|
|
|
|
{
|
|
|
|
php_stream_wrapper *wrapper = NULL;
|
|
|
|
|
|
|
|
wrapper = php_stream_locate_url_wrapper(path, NULL, ENFORCE_SAFE_MODE TSRMLS_CC);
|
2003-12-14 02:48:39 +08:00
|
|
|
if (!wrapper || !wrapper->wops || !wrapper->wops->stream_mkdir) {
|
2003-12-13 12:07:18 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-12-14 02:48:39 +08:00
|
|
|
return wrapper->wops->stream_mkdir(wrapper, path, mode, options, context TSRMLS_CC);
|
2003-12-13 12:07:18 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ _php_stream_rmdir
|
|
|
|
*/
|
|
|
|
PHPAPI int _php_stream_rmdir(char *path, int options, php_stream_context *context TSRMLS_DC)
|
|
|
|
{
|
|
|
|
php_stream_wrapper *wrapper = NULL;
|
|
|
|
|
|
|
|
wrapper = php_stream_locate_url_wrapper(path, NULL, ENFORCE_SAFE_MODE TSRMLS_CC);
|
2003-12-14 02:48:39 +08:00
|
|
|
if (!wrapper || !wrapper->wops || !wrapper->wops->stream_rmdir) {
|
2003-12-13 12:07:18 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-12-14 02:48:39 +08:00
|
|
|
return wrapper->wops->stream_rmdir(wrapper, path, options, context TSRMLS_CC);
|
2003-12-13 12:07:18 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
/* {{{ _php_stream_stat_path */
|
2003-11-29 07:25:28 +08:00
|
|
|
PHPAPI int _php_stream_stat_path(char *path, int flags, php_stream_statbuf *ssb, php_stream_context *context TSRMLS_DC)
|
2002-04-17 06:14:27 +08:00
|
|
|
{
|
|
|
|
php_stream_wrapper *wrapper = NULL;
|
|
|
|
char *path_to_open = path;
|
2003-11-29 07:25:28 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Try to hit the cache first */
|
|
|
|
if (flags & PHP_STREAM_URL_STAT_LINK) {
|
|
|
|
if (BG(CurrentLStatFile) && strcmp(path, BG(CurrentLStatFile)) == 0) {
|
|
|
|
memcpy(ssb, &BG(lssb), sizeof(php_stream_statbuf));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (BG(CurrentStatFile) && strcmp(path, BG(CurrentStatFile)) == 0) {
|
|
|
|
memcpy(ssb, &BG(ssb), sizeof(php_stream_statbuf));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2002-04-17 06:14:27 +08:00
|
|
|
|
2002-08-16 17:50:24 +08:00
|
|
|
wrapper = php_stream_locate_url_wrapper(path, &path_to_open, ENFORCE_SAFE_MODE TSRMLS_CC);
|
2002-04-17 06:14:27 +08:00
|
|
|
if (wrapper && wrapper->wops->url_stat) {
|
2003-11-29 07:25:28 +08:00
|
|
|
ret = wrapper->wops->url_stat(wrapper, path_to_open, flags, ssb, context TSRMLS_CC);
|
|
|
|
if (ret == 0) {
|
|
|
|
/* Drop into cache */
|
|
|
|
if (flags & PHP_STREAM_URL_STAT_LINK) {
|
|
|
|
if (BG(CurrentLStatFile)) {
|
|
|
|
efree(BG(CurrentLStatFile));
|
|
|
|
}
|
|
|
|
BG(CurrentLStatFile) = estrdup(path);
|
|
|
|
memcpy(&BG(lssb), ssb, sizeof(php_stream_statbuf));
|
|
|
|
} else {
|
|
|
|
if (BG(CurrentStatFile)) {
|
|
|
|
efree(BG(CurrentStatFile));
|
|
|
|
}
|
|
|
|
BG(CurrentStatFile) = estrdup(path);
|
|
|
|
memcpy(&BG(ssb), ssb, sizeof(php_stream_statbuf));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
2002-04-17 06:14:27 +08:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
2003-02-17 06:19:28 +08:00
|
|
|
/* }}} */
|
2002-04-17 06:14:27 +08:00
|
|
|
|
|
|
|
/* {{{ php_stream_opendir */
|
|
|
|
PHPAPI php_stream *_php_stream_opendir(char *path, int options,
|
|
|
|
php_stream_context *context STREAMS_DC TSRMLS_DC)
|
|
|
|
{
|
|
|
|
php_stream *stream = NULL;
|
|
|
|
php_stream_wrapper *wrapper = NULL;
|
|
|
|
char *path_to_open;
|
2003-04-01 06:13:01 +08:00
|
|
|
|
|
|
|
if (!path || !*path) {
|
2002-04-17 06:14:27 +08:00
|
|
|
return NULL;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-04-17 06:14:27 +08:00
|
|
|
|
|
|
|
path_to_open = path;
|
|
|
|
|
2002-08-16 17:50:24 +08:00
|
|
|
wrapper = php_stream_locate_url_wrapper(path, &path_to_open, options TSRMLS_CC);
|
2002-04-17 06:14:27 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (wrapper && wrapper->wops->dir_opener) {
|
2002-04-17 06:14:27 +08:00
|
|
|
stream = wrapper->wops->dir_opener(wrapper,
|
2002-09-28 21:05:47 +08:00
|
|
|
path_to_open, "r", options ^ REPORT_ERRORS, NULL,
|
2002-04-17 06:14:27 +08:00
|
|
|
context STREAMS_REL_CC TSRMLS_CC);
|
|
|
|
|
2002-09-23 09:47:04 +08:00
|
|
|
if (stream) {
|
2002-04-17 06:14:27 +08:00
|
|
|
stream->wrapper = wrapper;
|
2002-09-23 09:47:04 +08:00
|
|
|
stream->flags |= PHP_STREAM_FLAG_NO_BUFFER;
|
|
|
|
}
|
2002-09-28 21:05:47 +08:00
|
|
|
} else if (wrapper) {
|
|
|
|
php_stream_wrapper_log_error(wrapper, options ^ REPORT_ERRORS TSRMLS_CC, "not implemented");
|
2002-04-17 06:14:27 +08:00
|
|
|
}
|
|
|
|
if (stream == NULL && (options & REPORT_ERRORS)) {
|
2003-02-28 01:43:38 +08:00
|
|
|
php_stream_display_wrapper_errors(wrapper, path, "failed to open dir" TSRMLS_CC);
|
2002-04-17 06:14:27 +08:00
|
|
|
}
|
2003-02-28 01:43:38 +08:00
|
|
|
php_stream_tidy_wrapper_error_log(wrapper TSRMLS_CC);
|
2002-09-28 21:05:47 +08:00
|
|
|
|
2002-04-17 06:14:27 +08:00
|
|
|
return stream;
|
2002-03-16 05:03:08 +08:00
|
|
|
}
|
2002-03-20 22:21:30 +08:00
|
|
|
/* }}} */
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
/* {{{ _php_stream_readdir */
|
2002-04-17 06:14:27 +08:00
|
|
|
PHPAPI php_stream_dirent *_php_stream_readdir(php_stream *dirstream, php_stream_dirent *ent TSRMLS_DC)
|
|
|
|
{
|
2002-09-23 09:47:04 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (sizeof(php_stream_dirent) == php_stream_read(dirstream, (char*)ent, sizeof(php_stream_dirent))) {
|
2002-04-17 06:14:27 +08:00
|
|
|
return ent;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
|
|
|
|
2002-04-17 06:14:27 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2003-02-17 06:19:28 +08:00
|
|
|
/* }}} */
|
2002-08-11 18:53:10 +08:00
|
|
|
|
2002-04-11 06:42:32 +08:00
|
|
|
/* {{{ php_stream_open_wrapper_ex */
|
|
|
|
PHPAPI php_stream *_php_stream_open_wrapper_ex(char *path, char *mode, int options,
|
|
|
|
char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC)
|
2002-03-16 05:03:08 +08:00
|
|
|
{
|
2002-03-16 08:05:47 +08:00
|
|
|
php_stream *stream = NULL;
|
2002-04-17 06:14:27 +08:00
|
|
|
php_stream_wrapper *wrapper = NULL;
|
|
|
|
char *path_to_open;
|
2003-08-29 01:07:40 +08:00
|
|
|
int persistent = options & STREAM_OPEN_PERSISTENT;
|
2002-08-21 04:47:47 +08:00
|
|
|
char *copy_of_path = NULL;
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-08-21 04:47:47 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (opened_path) {
|
2002-03-16 05:03:08 +08:00
|
|
|
*opened_path = NULL;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (!path || !*path) {
|
2002-03-16 05:03:08 +08:00
|
|
|
return NULL;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2002-04-17 06:14:27 +08:00
|
|
|
path_to_open = path;
|
2002-03-17 04:05:08 +08:00
|
|
|
|
2002-08-16 17:50:24 +08:00
|
|
|
wrapper = php_stream_locate_url_wrapper(path, &path_to_open, options TSRMLS_CC);
|
2003-02-08 05:33:35 +08:00
|
|
|
if (options & STREAM_USE_URL && (!wrapper || !wrapper->is_url)) {
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "This function may only be used against URLs.");
|
|
|
|
return NULL;
|
|
|
|
}
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2003-04-01 06:13:01 +08:00
|
|
|
if (wrapper) {
|
2002-08-11 18:53:10 +08:00
|
|
|
|
2002-04-17 06:14:27 +08:00
|
|
|
stream = wrapper->wops->stream_opener(wrapper,
|
2002-08-11 18:53:10 +08:00
|
|
|
path_to_open, mode, options ^ REPORT_ERRORS,
|
2002-04-17 06:14:27 +08:00
|
|
|
opened_path, context STREAMS_REL_CC TSRMLS_CC);
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2003-03-19 08:17:15 +08:00
|
|
|
/* if the caller asked for a persistent stream but the wrapper did not
|
|
|
|
* return one, force an error here */
|
|
|
|
if (stream && (options & STREAM_OPEN_PERSISTENT) && !stream->is_persistent) {
|
|
|
|
php_stream_wrapper_log_error(wrapper, options ^ REPORT_ERRORS TSRMLS_CC,
|
|
|
|
"wrapper does not support persistent streams");
|
|
|
|
php_stream_close(stream);
|
|
|
|
stream = NULL;
|
|
|
|
}
|
2003-02-28 01:43:38 +08:00
|
|
|
|
|
|
|
if (stream) {
|
2002-04-17 06:14:27 +08:00
|
|
|
stream->wrapper = wrapper;
|
2003-02-28 01:43:38 +08:00
|
|
|
}
|
2002-04-17 06:14:27 +08:00
|
|
|
}
|
2002-03-20 07:29:37 +08:00
|
|
|
|
2002-08-21 04:47:47 +08:00
|
|
|
if (stream) {
|
2004-04-01 09:07:54 +08:00
|
|
|
if (stream->orig_path) {
|
|
|
|
pefree(stream->orig_path, persistent);
|
|
|
|
}
|
2003-03-20 09:23:04 +08:00
|
|
|
copy_of_path = pestrdup(path, persistent);
|
2003-11-03 22:12:46 +08:00
|
|
|
stream->orig_path = copy_of_path;
|
2002-08-21 04:47:47 +08:00
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-03-17 22:21:01 +08:00
|
|
|
if (stream != NULL && (options & STREAM_MUST_SEEK)) {
|
|
|
|
php_stream *newstream;
|
|
|
|
|
2002-09-24 03:10:33 +08:00
|
|
|
switch(php_stream_make_seekable_rel(stream, &newstream,
|
|
|
|
(options & STREAM_WILL_CAST)
|
|
|
|
? PHP_STREAM_PREFER_STDIO : PHP_STREAM_NO_PREFERENCE)) {
|
2002-03-17 22:21:01 +08:00
|
|
|
case PHP_STREAM_UNCHANGED:
|
|
|
|
return stream;
|
|
|
|
case PHP_STREAM_RELEASED:
|
2003-11-03 22:12:46 +08:00
|
|
|
newstream->orig_path = pestrdup(path, persistent);
|
2002-03-17 22:21:01 +08:00
|
|
|
return newstream;
|
|
|
|
default:
|
|
|
|
php_stream_close(stream);
|
|
|
|
stream = NULL;
|
|
|
|
if (options & REPORT_ERRORS) {
|
|
|
|
char *tmp = estrdup(path);
|
|
|
|
php_strip_url_passwd(tmp);
|
2002-08-11 18:53:10 +08:00
|
|
|
php_error_docref1(NULL TSRMLS_CC, tmp, E_WARNING, "could not make seekable - %s",
|
2003-08-29 01:07:40 +08:00
|
|
|
tmp);
|
2002-03-17 22:21:01 +08:00
|
|
|
efree(tmp);
|
|
|
|
|
|
|
|
options ^= REPORT_ERRORS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-12-23 02:05:36 +08:00
|
|
|
|
2003-01-01 17:58:17 +08:00
|
|
|
if (stream && stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0 && strchr(mode, 'a') && stream->position == 0) {
|
2002-12-23 10:56:46 +08:00
|
|
|
off_t newpos = 0;
|
2002-12-23 02:05:36 +08:00
|
|
|
|
|
|
|
/* if opened for append, we need to revise our idea of the initial file position */
|
|
|
|
if (0 == stream->ops->seek(stream, 0, SEEK_CUR, &newpos TSRMLS_CC)) {
|
|
|
|
stream->position = newpos;
|
|
|
|
}
|
|
|
|
}
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-03-17 22:21:01 +08:00
|
|
|
if (stream == NULL && (options & REPORT_ERRORS)) {
|
2003-02-28 01:43:38 +08:00
|
|
|
php_stream_display_wrapper_errors(wrapper, path, "failed to open stream" TSRMLS_CC);
|
2002-08-11 18:53:10 +08:00
|
|
|
}
|
2003-02-28 01:43:38 +08:00
|
|
|
php_stream_tidy_wrapper_error_log(wrapper TSRMLS_CC);
|
2002-08-21 04:47:47 +08:00
|
|
|
#if ZEND_DEBUG
|
2002-12-09 18:38:35 +08:00
|
|
|
if (stream == NULL && copy_of_path != NULL) {
|
2003-03-20 09:23:04 +08:00
|
|
|
pefree(copy_of_path, persistent);
|
2002-12-09 18:38:35 +08:00
|
|
|
}
|
2002-08-21 04:47:47 +08:00
|
|
|
#endif
|
2002-03-16 05:03:08 +08:00
|
|
|
return stream;
|
|
|
|
}
|
2002-03-20 22:21:30 +08:00
|
|
|
/* }}} */
|
2002-03-16 05:03:08 +08:00
|
|
|
|
2003-02-17 06:19:28 +08:00
|
|
|
/* {{{ context API */
|
2002-04-11 06:42:32 +08:00
|
|
|
PHPAPI php_stream_context *php_stream_context_set(php_stream *stream, php_stream_context *context)
|
|
|
|
{
|
|
|
|
php_stream_context *oldcontext = stream->context;
|
|
|
|
stream->context = context;
|
|
|
|
return oldcontext;
|
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI void php_stream_notification_notify(php_stream_context *context, int notifycode, int severity,
|
|
|
|
char *xmsg, int xcode, size_t bytes_sofar, size_t bytes_max, void * ptr TSRMLS_DC)
|
|
|
|
{
|
|
|
|
if (context && context->notifier)
|
|
|
|
context->notifier->func(context, notifycode, severity, xmsg, xcode, bytes_sofar, bytes_max, ptr TSRMLS_CC);
|
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI void php_stream_context_free(php_stream_context *context)
|
|
|
|
{
|
2003-06-15 03:30:42 +08:00
|
|
|
if (context->options) {
|
|
|
|
zval_ptr_dtor(&context->options);
|
|
|
|
context->options = NULL;
|
|
|
|
}
|
2003-06-27 12:27:18 +08:00
|
|
|
if (context->notifier) {
|
|
|
|
php_stream_notification_free(context->notifier);
|
|
|
|
context->notifier = NULL;
|
|
|
|
}
|
2003-07-03 06:18:59 +08:00
|
|
|
if (context->links) {
|
|
|
|
zval_ptr_dtor(&context->links);
|
|
|
|
context->links = NULL;
|
|
|
|
}
|
2002-04-11 06:42:32 +08:00
|
|
|
efree(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI php_stream_context *php_stream_context_alloc(void)
|
|
|
|
{
|
2002-04-30 08:16:00 +08:00
|
|
|
php_stream_context *context;
|
2003-04-01 06:13:01 +08:00
|
|
|
|
2002-04-30 08:16:00 +08:00
|
|
|
context = ecalloc(1, sizeof(php_stream_context));
|
2003-06-27 12:27:18 +08:00
|
|
|
context->notifier = NULL;
|
2002-04-30 08:16:00 +08:00
|
|
|
MAKE_STD_ZVAL(context->options);
|
|
|
|
array_init(context->options);
|
|
|
|
|
2003-06-14 05:33:59 +08:00
|
|
|
context->rsrc_id = ZEND_REGISTER_RESOURCE(NULL, context, php_le_stream_context());
|
2002-04-30 08:16:00 +08:00
|
|
|
return context;
|
2002-04-11 06:42:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI php_stream_notifier *php_stream_notification_alloc(void)
|
|
|
|
{
|
|
|
|
return ecalloc(1, sizeof(php_stream_notifier));
|
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI void php_stream_notification_free(php_stream_notifier *notifier)
|
|
|
|
{
|
2003-06-28 00:23:58 +08:00
|
|
|
if (notifier->dtor) {
|
|
|
|
notifier->dtor(notifier);
|
|
|
|
}
|
2002-04-11 06:42:32 +08:00
|
|
|
efree(notifier);
|
|
|
|
}
|
|
|
|
|
2002-04-30 08:16:00 +08:00
|
|
|
PHPAPI int php_stream_context_get_option(php_stream_context *context,
|
2002-09-08 04:58:30 +08:00
|
|
|
const char *wrappername, const char *optionname, zval ***optionvalue)
|
2002-04-30 08:16:00 +08:00
|
|
|
{
|
|
|
|
zval **wrapperhash;
|
2003-04-01 06:13:01 +08:00
|
|
|
|
|
|
|
if (FAILURE == zend_hash_find(Z_ARRVAL_P(context->options), (char*)wrappername, strlen(wrappername)+1, (void**)&wrapperhash)) {
|
2002-04-30 08:16:00 +08:00
|
|
|
return FAILURE;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-09-08 04:58:30 +08:00
|
|
|
return zend_hash_find(Z_ARRVAL_PP(wrapperhash), (char*)optionname, strlen(optionname)+1, (void**)optionvalue);
|
2002-04-30 08:16:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI int php_stream_context_set_option(php_stream_context *context,
|
|
|
|
const char *wrappername, const char *optionname, zval *optionvalue)
|
|
|
|
{
|
|
|
|
zval **wrapperhash;
|
2003-05-21 21:33:55 +08:00
|
|
|
zval *category, *copied_val;
|
2002-04-30 08:16:00 +08:00
|
|
|
|
2003-05-21 21:33:55 +08:00
|
|
|
ALLOC_INIT_ZVAL(copied_val);
|
|
|
|
*copied_val = *optionvalue;
|
|
|
|
zval_copy_ctor(copied_val);
|
2003-11-28 08:00:28 +08:00
|
|
|
INIT_PZVAL(copied_val);
|
|
|
|
|
2002-04-30 08:16:00 +08:00
|
|
|
if (FAILURE == zend_hash_find(Z_ARRVAL_P(context->options), (char*)wrappername, strlen(wrappername)+1, (void**)&wrapperhash)) {
|
2002-09-08 04:58:30 +08:00
|
|
|
MAKE_STD_ZVAL(category);
|
|
|
|
array_init(category);
|
2003-04-01 06:13:01 +08:00
|
|
|
if (FAILURE == zend_hash_update(Z_ARRVAL_P(context->options), (char*)wrappername, strlen(wrappername)+1, (void**)&category, sizeof(zval *), NULL)) {
|
2002-04-30 08:16:00 +08:00
|
|
|
return FAILURE;
|
2003-04-01 06:13:01 +08:00
|
|
|
}
|
2002-04-30 08:16:00 +08:00
|
|
|
|
2002-09-08 04:58:30 +08:00
|
|
|
wrapperhash = &category;
|
2002-04-30 08:16:00 +08:00
|
|
|
}
|
2003-05-21 21:33:55 +08:00
|
|
|
return zend_hash_update(Z_ARRVAL_PP(wrapperhash), (char*)optionname, strlen(optionname)+1, (void**)&copied_val, sizeof(zval *), NULL);
|
2002-04-30 08:16:00 +08:00
|
|
|
}
|
2003-07-03 06:18:59 +08:00
|
|
|
|
|
|
|
PHPAPI int php_stream_context_get_link(php_stream_context *context,
|
|
|
|
const char *hostent, php_stream **stream)
|
|
|
|
{
|
|
|
|
php_stream **pstream;
|
|
|
|
|
|
|
|
if (!stream || !hostent || !context || !(context->links)) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
if (SUCCESS == zend_hash_find(Z_ARRVAL_P(context->links), (char*)hostent, strlen(hostent)+1, (void**)&pstream)) {
|
|
|
|
*stream = *pstream;
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI int php_stream_context_set_link(php_stream_context *context,
|
|
|
|
const char *hostent, php_stream *stream)
|
|
|
|
{
|
|
|
|
if (!context) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
if (!context->links) {
|
|
|
|
ALLOC_INIT_ZVAL(context->links);
|
|
|
|
array_init(context->links);
|
|
|
|
}
|
|
|
|
if (!stream) {
|
|
|
|
/* Delete any entry for <hostent> */
|
|
|
|
return zend_hash_del(Z_ARRVAL_P(context->links), (char*)hostent, strlen(hostent)+1);
|
|
|
|
}
|
|
|
|
return zend_hash_update(Z_ARRVAL_P(context->links), (char*)hostent, strlen(hostent)+1, (void**)&stream, sizeof(php_stream *), NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
PHPAPI int php_stream_context_del_link(php_stream_context *context,
|
|
|
|
php_stream *stream)
|
|
|
|
{
|
|
|
|
php_stream **pstream;
|
|
|
|
char *hostent;
|
|
|
|
int ret = SUCCESS;
|
|
|
|
|
|
|
|
if (!context || !context->links || !stream) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(zend_hash_internal_pointer_reset(Z_ARRVAL_P(context->links));
|
|
|
|
SUCCESS == zend_hash_get_current_data(Z_ARRVAL_P(context->links), (void**)&pstream);
|
|
|
|
zend_hash_move_forward(Z_ARRVAL_P(context->links))) {
|
|
|
|
if (*pstream == stream) {
|
|
|
|
if (SUCCESS == zend_hash_get_current_key(Z_ARRVAL_P(context->links), &hostent, NULL, 0)) {
|
|
|
|
if (FAILURE == zend_hash_del(Z_ARRVAL_P(context->links), (char*)hostent, strlen(hostent)+1)) {
|
|
|
|
ret = FAILURE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ret = FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2003-02-17 06:19:28 +08:00
|
|
|
/* }}} */
|
2003-02-10 04:43:05 +08:00
|
|
|
|
2004-01-29 06:21:54 +08:00
|
|
|
/* {{{ php_stream_dirent_alphasort
|
|
|
|
*/
|
|
|
|
PHPAPI int php_stream_dirent_alphasort(const php_stream_dirent **a, const php_stream_dirent **b)
|
|
|
|
{
|
|
|
|
return strcoll((*a)->d_name,(*b)->d_name);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ php_stream_dirent_alphasortr
|
|
|
|
*/
|
|
|
|
PHPAPI int php_stream_dirent_alphasortr(const php_stream_dirent **a, const php_stream_dirent **b)
|
|
|
|
{
|
|
|
|
return strcoll((*b)->d_name,(*a)->d_name);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ php_stream_scandir
|
|
|
|
*/
|
|
|
|
PHPAPI int _php_stream_scandir(char *dirname, php_stream_dirent **namelist[], int flags, php_stream_context *context,
|
|
|
|
int (*compare) (const php_stream_dirent **a, const php_stream_dirent **b) TSRMLS_DC)
|
|
|
|
{
|
|
|
|
php_stream *stream;
|
|
|
|
php_stream_dirent sdp;
|
|
|
|
php_stream_dirent **vector = NULL;
|
|
|
|
int vector_size = 0;
|
|
|
|
int nfiles = 0;
|
|
|
|
|
|
|
|
if (!namelist) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream = php_stream_opendir(dirname, ENFORCE_SAFE_MODE | REPORT_ERRORS, context);
|
|
|
|
if (!stream) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (php_stream_readdir(stream, &sdp)) {
|
|
|
|
if (nfiles == vector_size) {
|
|
|
|
if (vector_size == 0) {
|
|
|
|
vector_size = 10;
|
|
|
|
} else {
|
|
|
|
vector_size *= 2;
|
|
|
|
}
|
|
|
|
vector = (php_stream_dirent **) erealloc(vector, vector_size * sizeof(php_stream_dirent *));
|
|
|
|
}
|
|
|
|
|
2004-03-08 05:36:55 +08:00
|
|
|
vector[nfiles] = emalloc(sizeof(php_stream_dirent));
|
|
|
|
memcpy(vector[nfiles], &sdp, sizeof(sdp));
|
|
|
|
|
|
|
|
nfiles++;
|
2004-01-29 06:21:54 +08:00
|
|
|
}
|
|
|
|
php_stream_closedir(stream);
|
|
|
|
|
|
|
|
*namelist = vector;
|
|
|
|
|
|
|
|
if (compare) {
|
2004-03-08 06:06:36 +08:00
|
|
|
qsort(*namelist, nfiles, sizeof(php_stream_dirent *), (int(*)(const void *, const void *))compare);
|
2004-01-29 06:21:54 +08:00
|
|
|
}
|
|
|
|
return nfiles;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2001-05-06 02:36:22 +08:00
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
2001-09-09 21:29:31 +08:00
|
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: noet sw=4 ts=4
|
2001-05-06 02:36:22 +08:00
|
|
|
*/
|