php_streams.h 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Copyright (c) The PHP Group |
  4. +----------------------------------------------------------------------+
  5. | This source file is subject to version 3.01 of the PHP license, |
  6. | that is bundled with this package in the file LICENSE, and is |
  7. | available through the world-wide-web at the following url: |
  8. | https://www.php.net/license/3_01.txt |
  9. | If you did not receive a copy of the PHP license and are unable to |
  10. | obtain it through the world-wide-web, please send a note to |
  11. | license@php.net so we can mail you a copy immediately. |
  12. +----------------------------------------------------------------------+
  13. | Author: Wez Furlong (wez@thebrainroom.com) |
  14. +----------------------------------------------------------------------+
  15. */
  16. #ifndef PHP_STREAMS_H
  17. #define PHP_STREAMS_H
  18. #ifdef HAVE_SYS_TIME_H
  19. #include <sys/time.h>
  20. #endif
  21. #include <sys/types.h>
  22. #include <sys/stat.h>
  23. #include "zend.h"
  24. #include "zend_stream.h"
  25. BEGIN_EXTERN_C()
  26. PHPAPI int php_file_le_stream(void);
  27. PHPAPI int php_file_le_pstream(void);
  28. PHPAPI int php_file_le_stream_filter(void);
  29. END_EXTERN_C()
  30. /* {{{ Streams memory debugging stuff */
  31. #if ZEND_DEBUG
  32. /* these have more of a dependency on the definitions of the zend macros than
  33. * I would prefer, but doing it this way saves loads of idefs :-/ */
  34. # define STREAMS_D int __php_stream_call_depth ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC
  35. # define STREAMS_C 0 ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC
  36. # define STREAMS_REL_C __php_stream_call_depth + 1 ZEND_FILE_LINE_CC, \
  37. __php_stream_call_depth ? __zend_orig_filename : __zend_filename, \
  38. __php_stream_call_depth ? __zend_orig_lineno : __zend_lineno
  39. # define STREAMS_DC , STREAMS_D
  40. # define STREAMS_CC , STREAMS_C
  41. # define STREAMS_REL_CC , STREAMS_REL_C
  42. #else
  43. # define STREAMS_D
  44. # define STREAMS_C
  45. # define STREAMS_REL_C
  46. # define STREAMS_DC
  47. # define STREAMS_CC
  48. # define STREAMS_REL_CC
  49. #endif
  50. /* these functions relay the file/line number information. They are depth aware, so they will pass
  51. * the ultimate ancestor, which is useful, because there can be several layers of calls */
  52. #define php_stream_alloc_rel(ops, thisptr, persistent, mode) _php_stream_alloc((ops), (thisptr), (persistent), (mode) STREAMS_REL_CC)
  53. #define php_stream_copy_to_mem_rel(src, maxlen, persistent) _php_stream_copy_to_mem((src), (buf), (maxlen), (persistent) STREAMS_REL_CC)
  54. #define php_stream_fopen_rel(filename, mode, opened, options) _php_stream_fopen((filename), (mode), (opened), (options) STREAMS_REL_CC)
  55. #define php_stream_fopen_with_path_rel(filename, mode, path, opened, options) _php_stream_fopen_with_path((filename), (mode), (path), (opened), (options) STREAMS_REL_CC)
  56. #define php_stream_fopen_from_fd_rel(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), (persistent_id) STREAMS_REL_CC)
  57. #define php_stream_fopen_from_file_rel(file, mode) _php_stream_fopen_from_file((file), (mode) STREAMS_REL_CC)
  58. #define php_stream_fopen_from_pipe_rel(file, mode) _php_stream_fopen_from_pipe((file), (mode) STREAMS_REL_CC)
  59. #define php_stream_fopen_tmpfile_rel() _php_stream_fopen_tmpfile(0 STREAMS_REL_CC)
  60. #define php_stream_fopen_temporary_file_rel(dir, pfx, opened_path) _php_stream_fopen_temporary_file((dir), (pfx), (opened_path) STREAMS_REL_CC)
  61. #define php_stream_open_wrapper_rel(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), NULL STREAMS_REL_CC)
  62. #define php_stream_open_wrapper_ex_rel(path, mode, options, opened, context) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), (context) STREAMS_REL_CC)
  63. #define php_stream_make_seekable_rel(origstream, newstream, flags) _php_stream_make_seekable((origstream), (newstream), (flags) STREAMS_REL_CC)
  64. /* }}} */
  65. /* The contents of the php_stream_ops and php_stream should only be accessed
  66. * using the functions/macros in this header.
  67. * If you need to get at something that doesn't have an API,
  68. * drop me a line <wez@thebrainroom.com> and we can sort out a way to do
  69. * it properly.
  70. *
  71. * The only exceptions to this rule are that stream implementations can use
  72. * the php_stream->abstract pointer to hold their context, and streams
  73. * opened via stream_open_wrappers can use the zval ptr in
  74. * php_stream->wrapperdata to hold meta data for php scripts to
  75. * retrieve using file_get_wrapper_data(). */
  76. typedef struct _php_stream php_stream;
  77. typedef struct _php_stream_wrapper php_stream_wrapper;
  78. typedef struct _php_stream_context php_stream_context;
  79. typedef struct _php_stream_filter php_stream_filter;
  80. #include "streams/php_stream_context.h"
  81. #include "streams/php_stream_filter_api.h"
  82. typedef struct _php_stream_statbuf {
  83. zend_stat_t sb; /* regular info */
  84. /* extended info to go here some day: content-type etc. etc. */
  85. } php_stream_statbuf;
  86. typedef struct _php_stream_dirent {
  87. char d_name[MAXPATHLEN];
  88. } php_stream_dirent;
  89. /* operations on streams that are file-handles */
  90. typedef struct _php_stream_ops {
  91. /* stdio like functions - these are mandatory! */
  92. ssize_t (*write)(php_stream *stream, const char *buf, size_t count);
  93. ssize_t (*read)(php_stream *stream, char *buf, size_t count);
  94. int (*close)(php_stream *stream, int close_handle);
  95. int (*flush)(php_stream *stream);
  96. const char *label; /* label for this ops structure */
  97. /* these are optional */
  98. int (*seek)(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);
  99. int (*cast)(php_stream *stream, int castas, void **ret);
  100. int (*stat)(php_stream *stream, php_stream_statbuf *ssb);
  101. int (*set_option)(php_stream *stream, int option, int value, void *ptrparam);
  102. } php_stream_ops;
  103. typedef struct _php_stream_wrapper_ops {
  104. /* open/create a wrapped stream */
  105. php_stream *(*stream_opener)(php_stream_wrapper *wrapper, const char *filename, const char *mode,
  106. int options, zend_string **opened_path, php_stream_context *context STREAMS_DC);
  107. /* close/destroy a wrapped stream */
  108. int (*stream_closer)(php_stream_wrapper *wrapper, php_stream *stream);
  109. /* stat a wrapped stream */
  110. int (*stream_stat)(php_stream_wrapper *wrapper, php_stream *stream, php_stream_statbuf *ssb);
  111. /* stat a URL */
  112. int (*url_stat)(php_stream_wrapper *wrapper, const char *url, int flags, php_stream_statbuf *ssb, php_stream_context *context);
  113. /* open a "directory" stream */
  114. php_stream *(*dir_opener)(php_stream_wrapper *wrapper, const char *filename, const char *mode,
  115. int options, zend_string **opened_path, php_stream_context *context STREAMS_DC);
  116. const char *label;
  117. /* delete a file */
  118. int (*unlink)(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context *context);
  119. /* rename a file */
  120. int (*rename)(php_stream_wrapper *wrapper, const char *url_from, const char *url_to, int options, php_stream_context *context);
  121. /* Create/Remove directory */
  122. int (*stream_mkdir)(php_stream_wrapper *wrapper, const char *url, int mode, int options, php_stream_context *context);
  123. int (*stream_rmdir)(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context *context);
  124. /* Metadata handling */
  125. int (*stream_metadata)(php_stream_wrapper *wrapper, const char *url, int options, void *value, php_stream_context *context);
  126. } php_stream_wrapper_ops;
  127. struct _php_stream_wrapper {
  128. const php_stream_wrapper_ops *wops; /* operations the wrapper can perform */
  129. void *abstract; /* context for the wrapper */
  130. int is_url; /* so that PG(allow_url_fopen) can be respected */
  131. };
  132. #define PHP_STREAM_FLAG_NO_SEEK 0x1
  133. #define PHP_STREAM_FLAG_NO_BUFFER 0x2
  134. #define PHP_STREAM_FLAG_EOL_UNIX 0x0 /* also includes DOS */
  135. #define PHP_STREAM_FLAG_DETECT_EOL 0x4
  136. #define PHP_STREAM_FLAG_EOL_MAC 0x8
  137. /* set this when the stream might represent "interactive" data.
  138. * When set, the read buffer will avoid certain operations that
  139. * might otherwise cause the read to block for much longer than
  140. * is strictly required. */
  141. #define PHP_STREAM_FLAG_AVOID_BLOCKING 0x10
  142. #define PHP_STREAM_FLAG_NO_CLOSE 0x20
  143. #define PHP_STREAM_FLAG_IS_DIR 0x40
  144. #define PHP_STREAM_FLAG_NO_FCLOSE 0x80
  145. /* Suppress generation of PHP warnings on stream read/write errors.
  146. * Currently for internal use only. */
  147. #define PHP_STREAM_FLAG_SUPPRESS_ERRORS 0x100
  148. #define PHP_STREAM_FLAG_WAS_WRITTEN 0x80000000
  149. struct _php_stream {
  150. const php_stream_ops *ops;
  151. void *abstract; /* convenience pointer for abstraction */
  152. php_stream_filter_chain readfilters, writefilters;
  153. php_stream_wrapper *wrapper; /* which wrapper was used to open the stream */
  154. void *wrapperthis; /* convenience pointer for a instance of a wrapper */
  155. zval wrapperdata; /* fgetwrapperdata retrieves this */
  156. uint8_t is_persistent:1;
  157. uint8_t in_free:2; /* to prevent recursion during free */
  158. uint8_t eof:1;
  159. uint8_t __exposed:1; /* non-zero if exposed as a zval somewhere */
  160. /* so we know how to clean it up correctly. This should be set to
  161. * PHP_STREAM_FCLOSE_XXX as appropriate */
  162. uint8_t fclose_stdiocast:2;
  163. char mode[16]; /* "rwb" etc. ala stdio */
  164. uint32_t flags; /* PHP_STREAM_FLAG_XXX */
  165. zend_resource *res; /* used for auto-cleanup */
  166. FILE *stdiocast; /* cache this, otherwise we might leak! */
  167. char *orig_path;
  168. zend_resource *ctx;
  169. /* buffer */
  170. zend_off_t position; /* of underlying stream */
  171. unsigned char *readbuf;
  172. size_t readbuflen;
  173. zend_off_t readpos;
  174. zend_off_t writepos;
  175. /* how much data to read when filling buffer */
  176. size_t chunk_size;
  177. #if ZEND_DEBUG
  178. const char *open_filename;
  179. uint32_t open_lineno;
  180. #endif
  181. struct _php_stream *enclosing_stream; /* this is a private stream owned by enclosing_stream */
  182. }; /* php_stream */
  183. #define PHP_STREAM_CONTEXT(stream) \
  184. ((php_stream_context*) ((stream)->ctx ? ((stream)->ctx->ptr) : NULL))
  185. /* state definitions when closing down; these are private to streams.c */
  186. #define PHP_STREAM_FCLOSE_NONE 0
  187. #define PHP_STREAM_FCLOSE_FDOPEN 1
  188. #define PHP_STREAM_FCLOSE_FOPENCOOKIE 2
  189. /* allocate a new stream for a particular ops */
  190. BEGIN_EXTERN_C()
  191. PHPAPI php_stream *_php_stream_alloc(const php_stream_ops *ops, void *abstract,
  192. const char *persistent_id, const char *mode STREAMS_DC);
  193. END_EXTERN_C()
  194. #define php_stream_alloc(ops, thisptr, persistent_id, mode) _php_stream_alloc((ops), (thisptr), (persistent_id), (mode) STREAMS_CC)
  195. #define php_stream_get_resource_id(stream) ((php_stream *)(stream))->res->handle
  196. /* use this to tell the stream that it is OK if we don't explicitly close it */
  197. #define php_stream_auto_cleanup(stream) { (stream)->__exposed = 1; }
  198. /* use this to assign the stream to a zval and tell the stream that is
  199. * has been exported to the engine; it will expect to be closed automatically
  200. * when the resources are auto-destructed */
  201. #define php_stream_to_zval(stream, zval) { ZVAL_RES(zval, (stream)->res); (stream)->__exposed = 1; }
  202. #define php_stream_from_zval(xstr, pzval) do { \
  203. if (((xstr) = (php_stream*)zend_fetch_resource2_ex((pzval), \
  204. "stream", php_file_le_stream(), php_file_le_pstream())) == NULL) { \
  205. return; \
  206. } \
  207. } while (0)
  208. #define php_stream_from_res(xstr, res) do { \
  209. if (((xstr) = (php_stream*)zend_fetch_resource2((res), \
  210. "stream", php_file_le_stream(), php_file_le_pstream())) == NULL) { \
  211. return; \
  212. } \
  213. } while (0)
  214. #define php_stream_from_res_no_verify(xstr, pzval) (xstr) = (php_stream*)zend_fetch_resource2((res), "stream", php_file_le_stream(), php_file_le_pstream())
  215. #define php_stream_from_zval_no_verify(xstr, pzval) (xstr) = (php_stream*)zend_fetch_resource2_ex((pzval), "stream", php_file_le_stream(), php_file_le_pstream())
  216. BEGIN_EXTERN_C()
  217. PHPAPI php_stream *php_stream_encloses(php_stream *enclosing, php_stream *enclosed);
  218. #define php_stream_free_enclosed(stream_enclosed, close_options) _php_stream_free_enclosed((stream_enclosed), (close_options))
  219. PHPAPI int _php_stream_free_enclosed(php_stream *stream_enclosed, int close_options);
  220. PHPAPI int php_stream_from_persistent_id(const char *persistent_id, php_stream **stream);
  221. #define PHP_STREAM_PERSISTENT_SUCCESS 0 /* id exists */
  222. #define PHP_STREAM_PERSISTENT_FAILURE 1 /* id exists but is not a stream! */
  223. #define PHP_STREAM_PERSISTENT_NOT_EXIST 2 /* id does not exist */
  224. #define PHP_STREAM_FREE_CALL_DTOR 1 /* call ops->close */
  225. #define PHP_STREAM_FREE_RELEASE_STREAM 2 /* pefree(stream) */
  226. #define PHP_STREAM_FREE_PRESERVE_HANDLE 4 /* tell ops->close to not close it's underlying handle */
  227. #define PHP_STREAM_FREE_RSRC_DTOR 8 /* called from the resource list dtor */
  228. #define PHP_STREAM_FREE_PERSISTENT 16 /* manually freeing a persistent connection */
  229. #define PHP_STREAM_FREE_IGNORE_ENCLOSING 32 /* don't close the enclosing stream instead */
  230. #define PHP_STREAM_FREE_KEEP_RSRC 64 /* keep associated zend_resource */
  231. #define PHP_STREAM_FREE_CLOSE (PHP_STREAM_FREE_CALL_DTOR | PHP_STREAM_FREE_RELEASE_STREAM)
  232. #define PHP_STREAM_FREE_CLOSE_CASTED (PHP_STREAM_FREE_CLOSE | PHP_STREAM_FREE_PRESERVE_HANDLE)
  233. #define PHP_STREAM_FREE_CLOSE_PERSISTENT (PHP_STREAM_FREE_CLOSE | PHP_STREAM_FREE_PERSISTENT)
  234. PHPAPI int _php_stream_free(php_stream *stream, int close_options);
  235. #define php_stream_free(stream, close_options) _php_stream_free((stream), (close_options))
  236. #define php_stream_close(stream) _php_stream_free((stream), PHP_STREAM_FREE_CLOSE)
  237. #define php_stream_pclose(stream) _php_stream_free((stream), PHP_STREAM_FREE_CLOSE_PERSISTENT)
  238. PHPAPI int _php_stream_seek(php_stream *stream, zend_off_t offset, int whence);
  239. #define php_stream_rewind(stream) _php_stream_seek((stream), 0L, SEEK_SET)
  240. #define php_stream_seek(stream, offset, whence) _php_stream_seek((stream), (offset), (whence))
  241. PHPAPI zend_off_t _php_stream_tell(php_stream *stream);
  242. #define php_stream_tell(stream) _php_stream_tell((stream))
  243. PHPAPI ssize_t _php_stream_read(php_stream *stream, char *buf, size_t count);
  244. #define php_stream_read(stream, buf, count) _php_stream_read((stream), (buf), (count))
  245. PHPAPI zend_string *php_stream_read_to_str(php_stream *stream, size_t len);
  246. PHPAPI ssize_t _php_stream_write(php_stream *stream, const char *buf, size_t count);
  247. #define php_stream_write_string(stream, str) _php_stream_write(stream, str, strlen(str))
  248. #define php_stream_write(stream, buf, count) _php_stream_write(stream, (buf), (count))
  249. PHPAPI int _php_stream_fill_read_buffer(php_stream *stream, size_t size);
  250. #define php_stream_fill_read_buffer(stream, size) _php_stream_fill_read_buffer((stream), (size))
  251. PHPAPI ssize_t _php_stream_printf(php_stream *stream, const char *fmt, ...) PHP_ATTRIBUTE_FORMAT(printf, 2, 3);
  252. /* php_stream_printf macro & function require */
  253. #define php_stream_printf _php_stream_printf
  254. PHPAPI int _php_stream_eof(php_stream *stream);
  255. #define php_stream_eof(stream) _php_stream_eof((stream))
  256. PHPAPI int _php_stream_getc(php_stream *stream);
  257. #define php_stream_getc(stream) _php_stream_getc((stream))
  258. PHPAPI int _php_stream_putc(php_stream *stream, int c);
  259. #define php_stream_putc(stream, c) _php_stream_putc((stream), (c))
  260. PHPAPI int _php_stream_flush(php_stream *stream, int closing);
  261. #define php_stream_flush(stream) _php_stream_flush((stream), 0)
  262. PHPAPI int _php_stream_sync(php_stream *stream, bool data_only);
  263. #define php_stream_sync(stream, d) _php_stream_sync((stream), (d))
  264. PHPAPI char *_php_stream_get_line(php_stream *stream, char *buf, size_t maxlen, size_t *returned_len);
  265. #define php_stream_gets(stream, buf, maxlen) _php_stream_get_line((stream), (buf), (maxlen), NULL)
  266. #define php_stream_get_line(stream, buf, maxlen, retlen) _php_stream_get_line((stream), (buf), (maxlen), (retlen))
  267. PHPAPI zend_string *php_stream_get_record(php_stream *stream, size_t maxlen, const char *delim, size_t delim_len);
  268. /* CAREFUL! this is equivalent to puts NOT fputs! */
  269. PHPAPI int _php_stream_puts(php_stream *stream, const char *buf);
  270. #define php_stream_puts(stream, buf) _php_stream_puts((stream), (buf))
  271. PHPAPI int _php_stream_stat(php_stream *stream, php_stream_statbuf *ssb);
  272. #define php_stream_stat(stream, ssb) _php_stream_stat((stream), (ssb))
  273. PHPAPI int _php_stream_stat_path(const char *path, int flags, php_stream_statbuf *ssb, php_stream_context *context);
  274. #define php_stream_stat_path(path, ssb) _php_stream_stat_path((path), 0, (ssb), NULL)
  275. #define php_stream_stat_path_ex(path, flags, ssb, context) _php_stream_stat_path((path), (flags), (ssb), (context))
  276. PHPAPI int _php_stream_mkdir(const char *path, int mode, int options, php_stream_context *context);
  277. #define php_stream_mkdir(path, mode, options, context) _php_stream_mkdir(path, mode, options, context)
  278. PHPAPI int _php_stream_rmdir(const char *path, int options, php_stream_context *context);
  279. #define php_stream_rmdir(path, options, context) _php_stream_rmdir(path, options, context)
  280. PHPAPI php_stream *_php_stream_opendir(const char *path, int options, php_stream_context *context STREAMS_DC);
  281. #define php_stream_opendir(path, options, context) _php_stream_opendir((path), (options), (context) STREAMS_CC)
  282. PHPAPI php_stream_dirent *_php_stream_readdir(php_stream *dirstream, php_stream_dirent *ent);
  283. #define php_stream_readdir(dirstream, dirent) _php_stream_readdir((dirstream), (dirent))
  284. #define php_stream_closedir(dirstream) php_stream_close((dirstream))
  285. #define php_stream_rewinddir(dirstream) php_stream_rewind((dirstream))
  286. PHPAPI int php_stream_dirent_alphasort(const zend_string **a, const zend_string **b);
  287. PHPAPI int php_stream_dirent_alphasortr(const zend_string **a, const zend_string **b);
  288. PHPAPI int _php_stream_scandir(const char *dirname, zend_string **namelist[], int flags, php_stream_context *context,
  289. int (*compare) (const zend_string **a, const zend_string **b));
  290. #define php_stream_scandir(dirname, namelist, context, compare) _php_stream_scandir((dirname), (namelist), 0, (context), (compare))
  291. PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam);
  292. #define php_stream_set_option(stream, option, value, ptrvalue) _php_stream_set_option((stream), (option), (value), (ptrvalue))
  293. #define php_stream_set_chunk_size(stream, size) _php_stream_set_option((stream), PHP_STREAM_OPTION_SET_CHUNK_SIZE, (size), NULL)
  294. END_EXTERN_C()
  295. /* Flags for mkdir method in wrapper ops */
  296. #define PHP_STREAM_MKDIR_RECURSIVE 1
  297. /* define REPORT ERRORS 8 (below) */
  298. /* Flags for rmdir method in wrapper ops */
  299. /* define REPORT_ERRORS 8 (below) */
  300. /* Flags for url_stat method in wrapper ops */
  301. #define PHP_STREAM_URL_STAT_LINK 1
  302. #define PHP_STREAM_URL_STAT_QUIET 2
  303. #define PHP_STREAM_URL_STAT_IGNORE_OPEN_BASEDIR 4
  304. /* change the blocking mode of stream: value == 1 => blocking, value == 0 => non-blocking. */
  305. #define PHP_STREAM_OPTION_BLOCKING 1
  306. /* change the buffering mode of stream. value is a PHP_STREAM_BUFFER_XXXX value, ptrparam is a ptr to a size_t holding
  307. * the required buffer size */
  308. #define PHP_STREAM_OPTION_READ_BUFFER 2
  309. #define PHP_STREAM_OPTION_WRITE_BUFFER 3
  310. #define PHP_STREAM_BUFFER_NONE 0 /* unbuffered */
  311. #define PHP_STREAM_BUFFER_LINE 1 /* line buffered */
  312. #define PHP_STREAM_BUFFER_FULL 2 /* fully buffered */
  313. /* set the timeout duration for reads on the stream. ptrparam is a pointer to a struct timeval * */
  314. #define PHP_STREAM_OPTION_READ_TIMEOUT 4
  315. #define PHP_STREAM_OPTION_SET_CHUNK_SIZE 5
  316. /* set or release lock on a stream */
  317. #define PHP_STREAM_OPTION_LOCKING 6
  318. /* whether or not locking is supported */
  319. #define PHP_STREAM_LOCK_SUPPORTED 1
  320. #define php_stream_supports_lock(stream) (_php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, 0, (void *) PHP_STREAM_LOCK_SUPPORTED) == 0 ? 1 : 0)
  321. #define php_stream_lock(stream, mode) _php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, (mode), (void *) NULL)
  322. /* option code used by the php_stream_xport_XXX api */
  323. #define PHP_STREAM_OPTION_XPORT_API 7 /* see php_stream_transport.h */
  324. #define PHP_STREAM_OPTION_CRYPTO_API 8 /* see php_stream_transport.h */
  325. #define PHP_STREAM_OPTION_MMAP_API 9 /* see php_stream_mmap.h */
  326. #define PHP_STREAM_OPTION_TRUNCATE_API 10
  327. #define PHP_STREAM_TRUNCATE_SUPPORTED 0
  328. #define PHP_STREAM_TRUNCATE_SET_SIZE 1 /* ptrparam is a pointer to a size_t */
  329. #define php_stream_truncate_supported(stream) (_php_stream_set_option((stream), PHP_STREAM_OPTION_TRUNCATE_API, PHP_STREAM_TRUNCATE_SUPPORTED, NULL) == PHP_STREAM_OPTION_RETURN_OK ? 1 : 0)
  330. BEGIN_EXTERN_C()
  331. PHPAPI int _php_stream_truncate_set_size(php_stream *stream, size_t newsize);
  332. #define php_stream_truncate_set_size(stream, size) _php_stream_truncate_set_size((stream), (size))
  333. END_EXTERN_C()
  334. #define PHP_STREAM_OPTION_META_DATA_API 11 /* ptrparam is a zval* to which to add meta data information */
  335. #define php_stream_populate_meta_data(stream, zv) (_php_stream_set_option((stream), PHP_STREAM_OPTION_META_DATA_API, 0, zv) == PHP_STREAM_OPTION_RETURN_OK ? 1 : 0)
  336. /* Check if the stream is still "live"; for sockets/pipes this means the socket
  337. * is still connected; for files, this does not really have meaning */
  338. #define PHP_STREAM_OPTION_CHECK_LIVENESS 12 /* no parameters */
  339. /* Enable/disable blocking reads on anonymous pipes on Windows. */
  340. #define PHP_STREAM_OPTION_PIPE_BLOCKING 13
  341. /* Stream can support fsync operation */
  342. #define PHP_STREAM_OPTION_SYNC_API 14
  343. #define PHP_STREAM_SYNC_SUPPORTED 0
  344. #define PHP_STREAM_SYNC_FSYNC 1
  345. #define PHP_STREAM_SYNC_FDSYNC 2
  346. #define php_stream_sync_supported(stream) (_php_stream_set_option((stream), PHP_STREAM_OPTION_SYNC_API, PHP_STREAM_SYNC_SUPPORTED, NULL) == PHP_STREAM_OPTION_RETURN_OK ? 1 : 0)
  347. #define PHP_STREAM_OPTION_RETURN_OK 0 /* option set OK */
  348. #define PHP_STREAM_OPTION_RETURN_ERR -1 /* problem setting option */
  349. #define PHP_STREAM_OPTION_RETURN_NOTIMPL -2 /* underlying stream does not implement; streams can handle it instead */
  350. /* copy up to maxlen bytes from src to dest. If maxlen is PHP_STREAM_COPY_ALL,
  351. * copy until eof(src). */
  352. #define PHP_STREAM_COPY_ALL ((size_t)-1)
  353. BEGIN_EXTERN_C()
  354. ZEND_ATTRIBUTE_DEPRECATED
  355. PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_DC);
  356. #define php_stream_copy_to_stream(src, dest, maxlen) _php_stream_copy_to_stream((src), (dest), (maxlen) STREAMS_CC)
  357. PHPAPI int _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, size_t *len STREAMS_DC);
  358. #define php_stream_copy_to_stream_ex(src, dest, maxlen, len) _php_stream_copy_to_stream_ex((src), (dest), (maxlen), (len) STREAMS_CC)
  359. /* read all data from stream and put into a buffer. Caller must free buffer
  360. * when done. */
  361. PHPAPI zend_string *_php_stream_copy_to_mem(php_stream *src, size_t maxlen, int persistent STREAMS_DC);
  362. #define php_stream_copy_to_mem(src, maxlen, persistent) _php_stream_copy_to_mem((src), (maxlen), (persistent) STREAMS_CC)
  363. /* output all data from a stream */
  364. PHPAPI ssize_t _php_stream_passthru(php_stream * src STREAMS_DC);
  365. #define php_stream_passthru(stream) _php_stream_passthru((stream) STREAMS_CC)
  366. END_EXTERN_C()
  367. #include "streams/php_stream_transport.h"
  368. #include "streams/php_stream_plain_wrapper.h"
  369. #include "streams/php_stream_glob_wrapper.h"
  370. #include "streams/php_stream_userspace.h"
  371. #include "streams/php_stream_mmap.h"
  372. /* coerce the stream into some other form */
  373. /* cast as a stdio FILE * */
  374. #define PHP_STREAM_AS_STDIO 0
  375. /* cast as a POSIX fd or socketd */
  376. #define PHP_STREAM_AS_FD 1
  377. /* cast as a socketd */
  378. #define PHP_STREAM_AS_SOCKETD 2
  379. /* cast as fd/socket for select purposes */
  380. #define PHP_STREAM_AS_FD_FOR_SELECT 3
  381. /* try really, really hard to make sure the cast happens (avoid using this flag if possible) */
  382. #define PHP_STREAM_CAST_TRY_HARD 0x80000000
  383. #define PHP_STREAM_CAST_RELEASE 0x40000000 /* stream becomes invalid on success */
  384. #define PHP_STREAM_CAST_INTERNAL 0x20000000 /* stream cast for internal use */
  385. #define PHP_STREAM_CAST_MASK (PHP_STREAM_CAST_TRY_HARD | PHP_STREAM_CAST_RELEASE | PHP_STREAM_CAST_INTERNAL)
  386. BEGIN_EXTERN_C()
  387. PHPAPI int _php_stream_cast(php_stream *stream, int castas, void **ret, int show_err);
  388. END_EXTERN_C()
  389. /* use this to check if a stream can be cast into another form */
  390. #define php_stream_can_cast(stream, as) _php_stream_cast((stream), (as), NULL, 0)
  391. #define php_stream_cast(stream, as, ret, show_err) _php_stream_cast((stream), (as), (ret), (show_err))
  392. /* use this to check if a stream is of a particular type:
  393. * PHPAPI int php_stream_is(php_stream *stream, php_stream_ops *ops); */
  394. #define php_stream_is(stream, anops) ((stream)->ops == anops)
  395. #define PHP_STREAM_IS_STDIO &php_stream_stdio_ops
  396. #define php_stream_is_persistent(stream) (stream)->is_persistent
  397. /* Wrappers support */
  398. #define IGNORE_PATH 0x00000000
  399. #define USE_PATH 0x00000001
  400. #define IGNORE_URL 0x00000002
  401. #define REPORT_ERRORS 0x00000008
  402. /* If you don't need to write to the stream, but really need to
  403. * be able to seek, use this flag in your options. */
  404. #define STREAM_MUST_SEEK 0x00000010
  405. /* If you are going to end up casting the stream into a FILE* or
  406. * a socket, pass this flag and the streams/wrappers will not use
  407. * buffering mechanisms while reading the headers, so that HTTP
  408. * wrapped streams will work consistently.
  409. * If you omit this flag, streams will use buffering and should end
  410. * up working more optimally.
  411. * */
  412. #define STREAM_WILL_CAST 0x00000020
  413. /* this flag applies to php_stream_locate_url_wrapper */
  414. #define STREAM_LOCATE_WRAPPERS_ONLY 0x00000040
  415. /* this flag is only used by include/require functions */
  416. #define STREAM_OPEN_FOR_INCLUDE 0x00000080
  417. /* this flag tells streams to ONLY open urls */
  418. #define STREAM_USE_URL 0x00000100
  419. /* this flag is used when only the headers from HTTP request are to be fetched */
  420. #define STREAM_ONLY_GET_HEADERS 0x00000200
  421. /* don't apply open_basedir checks */
  422. #define STREAM_DISABLE_OPEN_BASEDIR 0x00000400
  423. /* get (or create) a persistent version of the stream */
  424. #define STREAM_OPEN_PERSISTENT 0x00000800
  425. /* use glob stream for directory open in plain files stream */
  426. #define STREAM_USE_GLOB_DIR_OPEN 0x00001000
  427. /* don't check allow_url_fopen and allow_url_include */
  428. #define STREAM_DISABLE_URL_PROTECTION 0x00002000
  429. /* assume the path passed in exists and is fully expanded, avoiding syscalls */
  430. #define STREAM_ASSUME_REALPATH 0x00004000
  431. /* Allow blocking reads on anonymous pipes on Windows. */
  432. #define STREAM_USE_BLOCKING_PIPE 0x00008000
  433. /* this flag is only used by include/require functions */
  434. #define STREAM_OPEN_FOR_ZEND_STREAM 0x00010000
  435. int php_init_stream_wrappers(int module_number);
  436. int php_shutdown_stream_wrappers(int module_number);
  437. void php_shutdown_stream_hashes(void);
  438. PHP_RSHUTDOWN_FUNCTION(streams);
  439. BEGIN_EXTERN_C()
  440. PHPAPI int php_register_url_stream_wrapper(const char *protocol, const php_stream_wrapper *wrapper);
  441. PHPAPI int php_unregister_url_stream_wrapper(const char *protocol);
  442. PHPAPI int php_register_url_stream_wrapper_volatile(zend_string *protocol, php_stream_wrapper *wrapper);
  443. PHPAPI int php_unregister_url_stream_wrapper_volatile(zend_string *protocol);
  444. PHPAPI php_stream *_php_stream_open_wrapper_ex(const char *path, const char *mode, int options, zend_string **opened_path, php_stream_context *context STREAMS_DC);
  445. PHPAPI php_stream_wrapper *php_stream_locate_url_wrapper(const char *path, const char **path_for_open, int options);
  446. PHPAPI const char *php_stream_locate_eol(php_stream *stream, zend_string *buf);
  447. #define php_stream_open_wrapper(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), NULL STREAMS_CC)
  448. #define php_stream_open_wrapper_ex(path, mode, options, opened, context) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), (context) STREAMS_CC)
  449. /* pushes an error message onto the stack for a wrapper instance */
  450. PHPAPI void php_stream_wrapper_log_error(const php_stream_wrapper *wrapper, int options, const char *fmt, ...) PHP_ATTRIBUTE_FORMAT(printf, 3, 4);
  451. #define PHP_STREAM_UNCHANGED 0 /* orig stream was seekable anyway */
  452. #define PHP_STREAM_RELEASED 1 /* newstream should be used; origstream is no longer valid */
  453. #define PHP_STREAM_FAILED 2 /* an error occurred while attempting conversion */
  454. #define PHP_STREAM_CRITICAL 3 /* an error occurred; origstream is in an unknown state; you should close origstream */
  455. #define PHP_STREAM_NO_PREFERENCE 0
  456. #define PHP_STREAM_PREFER_STDIO 1
  457. #define PHP_STREAM_FORCE_CONVERSION 2
  458. /* DO NOT call this on streams that are referenced by resources! */
  459. PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STREAMS_DC);
  460. #define php_stream_make_seekable(origstream, newstream, flags) _php_stream_make_seekable((origstream), (newstream), (flags) STREAMS_CC)
  461. /* Give other modules access to the url_stream_wrappers_hash and stream_filters_hash */
  462. PHPAPI HashTable *_php_stream_get_url_stream_wrappers_hash(void);
  463. #define php_stream_get_url_stream_wrappers_hash() _php_stream_get_url_stream_wrappers_hash()
  464. PHPAPI HashTable *php_stream_get_url_stream_wrappers_hash_global(void);
  465. PHPAPI HashTable *_php_get_stream_filters_hash(void);
  466. #define php_get_stream_filters_hash() _php_get_stream_filters_hash()
  467. PHPAPI HashTable *php_get_stream_filters_hash_global(void);
  468. extern const php_stream_wrapper_ops *php_stream_user_wrapper_ops;
  469. END_EXTERN_C()
  470. #endif
  471. /* Definitions for user streams */
  472. #define PHP_STREAM_IS_URL 1
  473. /* Stream metadata definitions */
  474. /* Create if referred resource does not exist */
  475. #define PHP_STREAM_META_TOUCH 1
  476. #define PHP_STREAM_META_OWNER_NAME 2
  477. #define PHP_STREAM_META_OWNER 3
  478. #define PHP_STREAM_META_GROUP_NAME 4
  479. #define PHP_STREAM_META_GROUP 5
  480. #define PHP_STREAM_META_ACCESS 6