php_fopen_wrapper.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Rasmus Lerdorf <rasmus@php.net> |
  16. | Jim Winstead <jimw@php.net> |
  17. | Hartmut Holzgraefe <hholzgra@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. /* $Id$ */
  21. #include <stdio.h>
  22. #include <stdlib.h>
  23. #if HAVE_UNISTD_H
  24. #include <unistd.h>
  25. #endif
  26. #include "php.h"
  27. #include "php_globals.h"
  28. #include "php_standard.h"
  29. #include "php_fopen_wrappers.h"
  30. #include "SAPI.h"
  31. static size_t php_stream_output_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC) /* {{{ */
  32. {
  33. PHPWRITE(buf, count);
  34. return count;
  35. }
  36. /* }}} */
  37. static size_t php_stream_output_read(php_stream *stream, char *buf, size_t count TSRMLS_DC) /* {{{ */
  38. {
  39. stream->eof = 1;
  40. return 0;
  41. }
  42. /* }}} */
  43. static int php_stream_output_close(php_stream *stream, int close_handle TSRMLS_DC) /* {{{ */
  44. {
  45. return 0;
  46. }
  47. /* }}} */
  48. php_stream_ops php_stream_output_ops = {
  49. php_stream_output_write,
  50. php_stream_output_read,
  51. php_stream_output_close,
  52. NULL, /* flush */
  53. "Output",
  54. NULL, /* seek */
  55. NULL, /* cast */
  56. NULL, /* stat */
  57. NULL /* set_option */
  58. };
  59. typedef struct php_stream_input { /* {{{ */
  60. php_stream *body;
  61. off_t position;
  62. } php_stream_input_t;
  63. /* }}} */
  64. static size_t php_stream_input_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC) /* {{{ */
  65. {
  66. return -1;
  67. }
  68. /* }}} */
  69. static size_t php_stream_input_read(php_stream *stream, char *buf, size_t count TSRMLS_DC) /* {{{ */
  70. {
  71. php_stream_input_t *input = stream->abstract;
  72. size_t read;
  73. if (!SG(post_read) && SG(read_post_bytes) < input->position + count) {
  74. /* read requested data from SAPI */
  75. int read_bytes = sapi_read_post_block(buf, count TSRMLS_CC);
  76. if (read_bytes > 0) {
  77. php_stream_seek(input->body, 0, SEEK_END);
  78. php_stream_write(input->body, buf, read_bytes);
  79. }
  80. }
  81. if (!input->body->readfilters.head) {
  82. /* If the input stream contains filters, it's not really seekable. The
  83. input->position is likely to be wrong for unfiltered data. */
  84. php_stream_seek(input->body, input->position, SEEK_SET);
  85. }
  86. read = php_stream_read(input->body, buf, count);
  87. if (!read || read == (size_t) -1) {
  88. stream->eof = 1;
  89. } else {
  90. input->position += read;
  91. }
  92. return read;
  93. }
  94. /* }}} */
  95. static int php_stream_input_close(php_stream *stream, int close_handle TSRMLS_DC) /* {{{ */
  96. {
  97. efree(stream->abstract);
  98. stream->abstract = NULL;
  99. return 0;
  100. }
  101. /* }}} */
  102. static int php_stream_input_flush(php_stream *stream TSRMLS_DC) /* {{{ */
  103. {
  104. return -1;
  105. }
  106. /* }}} */
  107. static int php_stream_input_seek(php_stream *stream, off_t offset, int whence, off_t *newoffset TSRMLS_DC) /* {{{ */
  108. {
  109. php_stream_input_t *input = stream->abstract;
  110. if (input->body) {
  111. int sought = php_stream_seek(input->body, offset, whence);
  112. *newoffset = (input->body)->position;
  113. return sought;
  114. }
  115. return -1;
  116. }
  117. /* }}} */
  118. php_stream_ops php_stream_input_ops = {
  119. php_stream_input_write,
  120. php_stream_input_read,
  121. php_stream_input_close,
  122. php_stream_input_flush,
  123. "Input",
  124. php_stream_input_seek,
  125. NULL, /* cast */
  126. NULL, /* stat */
  127. NULL /* set_option */
  128. };
  129. static void php_stream_apply_filter_list(php_stream *stream, char *filterlist, int read_chain, int write_chain TSRMLS_DC) /* {{{ */
  130. {
  131. char *p, *token;
  132. php_stream_filter *temp_filter;
  133. p = php_strtok_r(filterlist, "|", &token);
  134. while (p) {
  135. php_url_decode(p, strlen(p));
  136. if (read_chain) {
  137. if ((temp_filter = php_stream_filter_create(p, NULL, php_stream_is_persistent(stream) TSRMLS_CC))) {
  138. php_stream_filter_append(&stream->readfilters, temp_filter);
  139. } else {
  140. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to create filter (%s)", p);
  141. }
  142. }
  143. if (write_chain) {
  144. if ((temp_filter = php_stream_filter_create(p, NULL, php_stream_is_persistent(stream) TSRMLS_CC))) {
  145. php_stream_filter_append(&stream->writefilters, temp_filter);
  146. } else {
  147. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to create filter (%s)", p);
  148. }
  149. }
  150. p = php_strtok_r(NULL, "|", &token);
  151. }
  152. }
  153. /* }}} */
  154. php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, const char *path, const char *mode, int options,
  155. char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) /* {{{ */
  156. {
  157. int fd = -1;
  158. int mode_rw = 0;
  159. php_stream * stream = NULL;
  160. char *p, *token, *pathdup;
  161. long max_memory;
  162. FILE *file = NULL;
  163. if (!strncasecmp(path, "php://", 6)) {
  164. path += 6;
  165. }
  166. if (!strncasecmp(path, "temp", 4)) {
  167. path += 4;
  168. max_memory = PHP_STREAM_MAX_MEM;
  169. if (!strncasecmp(path, "/maxmemory:", 11)) {
  170. path += 11;
  171. max_memory = strtol(path, NULL, 10);
  172. if (max_memory < 0) {
  173. php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "Max memory must be >= 0");
  174. return NULL;
  175. }
  176. }
  177. if (strpbrk(mode, "wa+")) {
  178. mode_rw = TEMP_STREAM_DEFAULT;
  179. } else {
  180. mode_rw = TEMP_STREAM_READONLY;
  181. }
  182. return php_stream_temp_create(mode_rw, max_memory);
  183. }
  184. if (!strcasecmp(path, "memory")) {
  185. if (strpbrk(mode, "wa+")) {
  186. mode_rw = TEMP_STREAM_DEFAULT;
  187. } else {
  188. mode_rw = TEMP_STREAM_READONLY;
  189. }
  190. return php_stream_memory_create(mode_rw);
  191. }
  192. if (!strcasecmp(path, "output")) {
  193. return php_stream_alloc(&php_stream_output_ops, NULL, 0, "wb");
  194. }
  195. if (!strcasecmp(path, "input")) {
  196. php_stream_input_t *input;
  197. if ((options & STREAM_OPEN_FOR_INCLUDE) && !PG(allow_url_include) ) {
  198. if (options & REPORT_ERRORS) {
  199. php_error_docref(NULL TSRMLS_CC, E_WARNING, "URL file-access is disabled in the server configuration");
  200. }
  201. return NULL;
  202. }
  203. input = ecalloc(1, sizeof(*input));
  204. if ((input->body = SG(request_info).request_body)) {
  205. php_stream_rewind(input->body);
  206. } else {
  207. input->body = php_stream_temp_create_ex(TEMP_STREAM_DEFAULT, SAPI_POST_BLOCK_SIZE, PG(upload_tmp_dir));
  208. SG(request_info).request_body = input->body;
  209. }
  210. return php_stream_alloc(&php_stream_input_ops, input, 0, "rb");
  211. }
  212. if (!strcasecmp(path, "stdin")) {
  213. if ((options & STREAM_OPEN_FOR_INCLUDE) && !PG(allow_url_include) ) {
  214. if (options & REPORT_ERRORS) {
  215. php_error_docref(NULL TSRMLS_CC, E_WARNING, "URL file-access is disabled in the server configuration");
  216. }
  217. return NULL;
  218. }
  219. if (!strcmp(sapi_module.name, "cli")) {
  220. static int cli_in = 0;
  221. fd = STDIN_FILENO;
  222. if (cli_in) {
  223. fd = dup(fd);
  224. } else {
  225. cli_in = 1;
  226. file = stdin;
  227. }
  228. } else {
  229. fd = dup(STDIN_FILENO);
  230. }
  231. } else if (!strcasecmp(path, "stdout")) {
  232. if (!strcmp(sapi_module.name, "cli")) {
  233. static int cli_out = 0;
  234. fd = STDOUT_FILENO;
  235. if (cli_out++) {
  236. fd = dup(fd);
  237. } else {
  238. cli_out = 1;
  239. file = stdout;
  240. }
  241. } else {
  242. fd = dup(STDOUT_FILENO);
  243. }
  244. } else if (!strcasecmp(path, "stderr")) {
  245. if (!strcmp(sapi_module.name, "cli")) {
  246. static int cli_err = 0;
  247. fd = STDERR_FILENO;
  248. if (cli_err++) {
  249. fd = dup(fd);
  250. } else {
  251. cli_err = 1;
  252. file = stderr;
  253. }
  254. } else {
  255. fd = dup(STDERR_FILENO);
  256. }
  257. } else if (!strncasecmp(path, "fd/", 3)) {
  258. const char *start;
  259. char *end;
  260. long fildes_ori;
  261. int dtablesize;
  262. if (strcmp(sapi_module.name, "cli")) {
  263. if (options & REPORT_ERRORS) {
  264. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Direct access to file descriptors is only available from command-line PHP");
  265. }
  266. return NULL;
  267. }
  268. if ((options & STREAM_OPEN_FOR_INCLUDE) && !PG(allow_url_include) ) {
  269. if (options & REPORT_ERRORS) {
  270. php_error_docref(NULL TSRMLS_CC, E_WARNING, "URL file-access is disabled in the server configuration");
  271. }
  272. return NULL;
  273. }
  274. start = &path[3];
  275. fildes_ori = strtol(start, &end, 10);
  276. if (end == start || *end != '\0') {
  277. php_stream_wrapper_log_error(wrapper, options TSRMLS_CC,
  278. "php://fd/ stream must be specified in the form php://fd/<orig fd>");
  279. return NULL;
  280. }
  281. #if HAVE_UNISTD_H
  282. dtablesize = getdtablesize();
  283. #else
  284. dtablesize = INT_MAX;
  285. #endif
  286. if (fildes_ori < 0 || fildes_ori >= dtablesize) {
  287. php_stream_wrapper_log_error(wrapper, options TSRMLS_CC,
  288. "The file descriptors must be non-negative numbers smaller than %d", dtablesize);
  289. return NULL;
  290. }
  291. fd = dup(fildes_ori);
  292. if (fd == -1) {
  293. php_stream_wrapper_log_error(wrapper, options TSRMLS_CC,
  294. "Error duping file descriptor %ld; possibly it doesn't exist: "
  295. "[%d]: %s", fildes_ori, errno, strerror(errno));
  296. return NULL;
  297. }
  298. } else if (!strncasecmp(path, "filter/", 7)) {
  299. /* Save time/memory when chain isn't specified */
  300. if (strchr(mode, 'r') || strchr(mode, '+')) {
  301. mode_rw |= PHP_STREAM_FILTER_READ;
  302. }
  303. if (strchr(mode, 'w') || strchr(mode, '+') || strchr(mode, 'a')) {
  304. mode_rw |= PHP_STREAM_FILTER_WRITE;
  305. }
  306. pathdup = estrndup(path + 6, strlen(path + 6));
  307. p = strstr(pathdup, "/resource=");
  308. if (!p) {
  309. php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "No URL resource specified");
  310. efree(pathdup);
  311. return NULL;
  312. }
  313. if (!(stream = php_stream_open_wrapper(p + 10, mode, options, opened_path))) {
  314. efree(pathdup);
  315. return NULL;
  316. }
  317. *p = '\0';
  318. p = php_strtok_r(pathdup + 1, "/", &token);
  319. while (p) {
  320. if (!strncasecmp(p, "read=", 5)) {
  321. php_stream_apply_filter_list(stream, p + 5, 1, 0 TSRMLS_CC);
  322. } else if (!strncasecmp(p, "write=", 6)) {
  323. php_stream_apply_filter_list(stream, p + 6, 0, 1 TSRMLS_CC);
  324. } else {
  325. php_stream_apply_filter_list(stream, p, mode_rw & PHP_STREAM_FILTER_READ, mode_rw & PHP_STREAM_FILTER_WRITE TSRMLS_CC);
  326. }
  327. p = php_strtok_r(NULL, "/", &token);
  328. }
  329. efree(pathdup);
  330. return stream;
  331. } else {
  332. /* invalid php://thingy */
  333. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid php:// URL specified");
  334. return NULL;
  335. }
  336. /* must be stdin, stderr or stdout */
  337. if (fd == -1) {
  338. /* failed to dup */
  339. return NULL;
  340. }
  341. #if defined(S_IFSOCK) && !defined(WIN32) && !defined(__BEOS__)
  342. do {
  343. struct stat st;
  344. memset(&st, 0, sizeof(st));
  345. if (fstat(fd, &st) == 0 && (st.st_mode & S_IFMT) == S_IFSOCK) {
  346. stream = php_stream_sock_open_from_socket(fd, NULL);
  347. if (stream) {
  348. stream->ops = &php_stream_socket_ops;
  349. return stream;
  350. }
  351. }
  352. } while (0);
  353. #endif
  354. if (file) {
  355. stream = php_stream_fopen_from_file(file, mode);
  356. } else {
  357. stream = php_stream_fopen_from_fd(fd, mode, NULL);
  358. if (stream == NULL) {
  359. close(fd);
  360. }
  361. }
  362. return stream;
  363. }
  364. /* }}} */
  365. static php_stream_wrapper_ops php_stdio_wops = {
  366. php_stream_url_wrap_php,
  367. NULL, /* close */
  368. NULL, /* fstat */
  369. NULL, /* stat */
  370. NULL, /* opendir */
  371. "PHP",
  372. NULL, /* unlink */
  373. NULL, /* rename */
  374. NULL, /* mkdir */
  375. NULL /* rmdir */
  376. };
  377. php_stream_wrapper php_stream_php_wrapper = {
  378. &php_stdio_wops,
  379. NULL,
  380. 0, /* is_url */
  381. };
  382. /*
  383. * Local variables:
  384. * tab-width: 4
  385. * c-basic-offset: 4
  386. * End:
  387. * vim600: sw=4 ts=4 fdm=marker
  388. * vim<600: sw=4 ts=4
  389. */