rfc1867.c 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333
  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. | Jani Taskinen <jani@php.net> |
  17. +----------------------------------------------------------------------+
  18. */
  19. /* $Id$ */
  20. /*
  21. * This product includes software developed by the Apache Group
  22. * for use in the Apache HTTP server project (http://www.apache.org/).
  23. *
  24. */
  25. #include <stdio.h>
  26. #include "php.h"
  27. #include "php_open_temporary_file.h"
  28. #include "zend_globals.h"
  29. #include "php_globals.h"
  30. #include "php_variables.h"
  31. #include "rfc1867.h"
  32. #include "ext/standard/php_string.h"
  33. #include "ext/standard/php_smart_str.h"
  34. #if defined(PHP_WIN32) && !defined(HAVE_ATOLL)
  35. # define atoll(s) _atoi64(s)
  36. # define HAVE_ATOLL 1
  37. #endif
  38. #define DEBUG_FILE_UPLOAD ZEND_DEBUG
  39. static int dummy_encoding_translation(TSRMLS_D)
  40. {
  41. return 0;
  42. }
  43. static char *php_ap_getword(const zend_encoding *encoding, char **line, char stop TSRMLS_DC);
  44. static char *php_ap_getword_conf(const zend_encoding *encoding, char *str TSRMLS_DC);
  45. static php_rfc1867_encoding_translation_t php_rfc1867_encoding_translation = dummy_encoding_translation;
  46. static php_rfc1867_get_detect_order_t php_rfc1867_get_detect_order = NULL;
  47. static php_rfc1867_set_input_encoding_t php_rfc1867_set_input_encoding = NULL;
  48. static php_rfc1867_getword_t php_rfc1867_getword = php_ap_getword;
  49. static php_rfc1867_getword_conf_t php_rfc1867_getword_conf = php_ap_getword_conf;
  50. static php_rfc1867_basename_t php_rfc1867_basename = NULL;
  51. PHPAPI int (*php_rfc1867_callback)(unsigned int event, void *event_data, void **extra TSRMLS_DC) = NULL;
  52. static void safe_php_register_variable(char *var, char *strval, int val_len, zval *track_vars_array, zend_bool override_protection TSRMLS_DC);
  53. /* The longest property name we use in an uploaded file array */
  54. #define MAX_SIZE_OF_INDEX sizeof("[tmp_name]")
  55. /* The longest anonymous name */
  56. #define MAX_SIZE_ANONNAME 33
  57. /* Errors */
  58. #define UPLOAD_ERROR_OK 0 /* File upload successful */
  59. #define UPLOAD_ERROR_A 1 /* Uploaded file exceeded upload_max_filesize */
  60. #define UPLOAD_ERROR_B 2 /* Uploaded file exceeded MAX_FILE_SIZE */
  61. #define UPLOAD_ERROR_C 3 /* Partially uploaded */
  62. #define UPLOAD_ERROR_D 4 /* No file uploaded */
  63. #define UPLOAD_ERROR_E 6 /* Missing /tmp or similar directory */
  64. #define UPLOAD_ERROR_F 7 /* Failed to write file to disk */
  65. #define UPLOAD_ERROR_X 8 /* File upload stopped by extension */
  66. void php_rfc1867_register_constants(TSRMLS_D) /* {{{ */
  67. {
  68. REGISTER_MAIN_LONG_CONSTANT("UPLOAD_ERR_OK", UPLOAD_ERROR_OK, CONST_CS | CONST_PERSISTENT);
  69. REGISTER_MAIN_LONG_CONSTANT("UPLOAD_ERR_INI_SIZE", UPLOAD_ERROR_A, CONST_CS | CONST_PERSISTENT);
  70. REGISTER_MAIN_LONG_CONSTANT("UPLOAD_ERR_FORM_SIZE", UPLOAD_ERROR_B, CONST_CS | CONST_PERSISTENT);
  71. REGISTER_MAIN_LONG_CONSTANT("UPLOAD_ERR_PARTIAL", UPLOAD_ERROR_C, CONST_CS | CONST_PERSISTENT);
  72. REGISTER_MAIN_LONG_CONSTANT("UPLOAD_ERR_NO_FILE", UPLOAD_ERROR_D, CONST_CS | CONST_PERSISTENT);
  73. REGISTER_MAIN_LONG_CONSTANT("UPLOAD_ERR_NO_TMP_DIR", UPLOAD_ERROR_E, CONST_CS | CONST_PERSISTENT);
  74. REGISTER_MAIN_LONG_CONSTANT("UPLOAD_ERR_CANT_WRITE", UPLOAD_ERROR_F, CONST_CS | CONST_PERSISTENT);
  75. REGISTER_MAIN_LONG_CONSTANT("UPLOAD_ERR_EXTENSION", UPLOAD_ERROR_X, CONST_CS | CONST_PERSISTENT);
  76. }
  77. /* }}} */
  78. static void normalize_protected_variable(char *varname TSRMLS_DC) /* {{{ */
  79. {
  80. char *s = varname, *index = NULL, *indexend = NULL, *p;
  81. /* overjump leading space */
  82. while (*s == ' ') {
  83. s++;
  84. }
  85. /* and remove it */
  86. if (s != varname) {
  87. memmove(varname, s, strlen(s)+1);
  88. }
  89. for (p = varname; *p && *p != '['; p++) {
  90. switch(*p) {
  91. case ' ':
  92. case '.':
  93. *p = '_';
  94. break;
  95. }
  96. }
  97. /* find index */
  98. index = strchr(varname, '[');
  99. if (index) {
  100. index++;
  101. s = index;
  102. } else {
  103. return;
  104. }
  105. /* done? */
  106. while (index) {
  107. while (*index == ' ' || *index == '\r' || *index == '\n' || *index=='\t') {
  108. index++;
  109. }
  110. indexend = strchr(index, ']');
  111. indexend = indexend ? indexend + 1 : index + strlen(index);
  112. if (s != index) {
  113. memmove(s, index, strlen(index)+1);
  114. s += indexend-index;
  115. } else {
  116. s = indexend;
  117. }
  118. if (*s == '[') {
  119. s++;
  120. index = s;
  121. } else {
  122. index = NULL;
  123. }
  124. }
  125. *s = '\0';
  126. }
  127. /* }}} */
  128. static void add_protected_variable(char *varname TSRMLS_DC) /* {{{ */
  129. {
  130. int dummy = 1;
  131. normalize_protected_variable(varname TSRMLS_CC);
  132. zend_hash_add(&PG(rfc1867_protected_variables), varname, strlen(varname)+1, &dummy, sizeof(int), NULL);
  133. }
  134. /* }}} */
  135. static zend_bool is_protected_variable(char *varname TSRMLS_DC) /* {{{ */
  136. {
  137. normalize_protected_variable(varname TSRMLS_CC);
  138. return zend_hash_exists(&PG(rfc1867_protected_variables), varname, strlen(varname)+1);
  139. }
  140. /* }}} */
  141. static void safe_php_register_variable(char *var, char *strval, int val_len, zval *track_vars_array, zend_bool override_protection TSRMLS_DC) /* {{{ */
  142. {
  143. if (override_protection || !is_protected_variable(var TSRMLS_CC)) {
  144. php_register_variable_safe(var, strval, val_len, track_vars_array TSRMLS_CC);
  145. }
  146. }
  147. /* }}} */
  148. static void safe_php_register_variable_ex(char *var, zval *val, zval *track_vars_array, zend_bool override_protection TSRMLS_DC) /* {{{ */
  149. {
  150. if (override_protection || !is_protected_variable(var TSRMLS_CC)) {
  151. php_register_variable_ex(var, val, track_vars_array TSRMLS_CC);
  152. }
  153. }
  154. /* }}} */
  155. static void register_http_post_files_variable(char *strvar, char *val, zval *http_post_files, zend_bool override_protection TSRMLS_DC) /* {{{ */
  156. {
  157. safe_php_register_variable(strvar, val, strlen(val), http_post_files, override_protection TSRMLS_CC);
  158. }
  159. /* }}} */
  160. static void register_http_post_files_variable_ex(char *var, zval *val, zval *http_post_files, zend_bool override_protection TSRMLS_DC) /* {{{ */
  161. {
  162. safe_php_register_variable_ex(var, val, http_post_files, override_protection TSRMLS_CC);
  163. }
  164. /* }}} */
  165. static int unlink_filename(char **filename TSRMLS_DC) /* {{{ */
  166. {
  167. VCWD_UNLINK(*filename);
  168. return 0;
  169. }
  170. /* }}} */
  171. void destroy_uploaded_files_hash(TSRMLS_D) /* {{{ */
  172. {
  173. zend_hash_apply(SG(rfc1867_uploaded_files), (apply_func_t) unlink_filename TSRMLS_CC);
  174. zend_hash_destroy(SG(rfc1867_uploaded_files));
  175. FREE_HASHTABLE(SG(rfc1867_uploaded_files));
  176. }
  177. /* }}} */
  178. /* {{{ Following code is based on apache_multipart_buffer.c from libapreq-0.33 package. */
  179. #define FILLUNIT (1024 * 5)
  180. typedef struct {
  181. /* read buffer */
  182. char *buffer;
  183. char *buf_begin;
  184. int bufsize;
  185. int bytes_in_buffer;
  186. /* boundary info */
  187. char *boundary;
  188. char *boundary_next;
  189. int boundary_next_len;
  190. const zend_encoding *input_encoding;
  191. const zend_encoding **detect_order;
  192. size_t detect_order_size;
  193. } multipart_buffer;
  194. typedef struct {
  195. char *key;
  196. char *value;
  197. } mime_header_entry;
  198. /*
  199. * Fill up the buffer with client data.
  200. * Returns number of bytes added to buffer.
  201. */
  202. static int fill_buffer(multipart_buffer *self TSRMLS_DC)
  203. {
  204. int bytes_to_read, total_read = 0, actual_read = 0;
  205. /* shift the existing data if necessary */
  206. if (self->bytes_in_buffer > 0 && self->buf_begin != self->buffer) {
  207. memmove(self->buffer, self->buf_begin, self->bytes_in_buffer);
  208. }
  209. self->buf_begin = self->buffer;
  210. /* calculate the free space in the buffer */
  211. bytes_to_read = self->bufsize - self->bytes_in_buffer;
  212. /* read the required number of bytes */
  213. while (bytes_to_read > 0) {
  214. char *buf = self->buffer + self->bytes_in_buffer;
  215. actual_read = sapi_module.read_post(buf, bytes_to_read TSRMLS_CC);
  216. /* update the buffer length */
  217. if (actual_read > 0) {
  218. self->bytes_in_buffer += actual_read;
  219. SG(read_post_bytes) += actual_read;
  220. total_read += actual_read;
  221. bytes_to_read -= actual_read;
  222. } else {
  223. break;
  224. }
  225. }
  226. return total_read;
  227. }
  228. /* eof if we are out of bytes, or if we hit the final boundary */
  229. static int multipart_buffer_eof(multipart_buffer *self TSRMLS_DC)
  230. {
  231. if ( (self->bytes_in_buffer == 0 && fill_buffer(self TSRMLS_CC) < 1) ) {
  232. return 1;
  233. } else {
  234. return 0;
  235. }
  236. }
  237. /* create new multipart_buffer structure */
  238. static multipart_buffer *multipart_buffer_new(char *boundary, int boundary_len TSRMLS_DC)
  239. {
  240. multipart_buffer *self = (multipart_buffer *) ecalloc(1, sizeof(multipart_buffer));
  241. int minsize = boundary_len + 6;
  242. if (minsize < FILLUNIT) minsize = FILLUNIT;
  243. self->buffer = (char *) ecalloc(1, minsize + 1);
  244. self->bufsize = minsize;
  245. spprintf(&self->boundary, 0, "--%s", boundary);
  246. self->boundary_next_len = spprintf(&self->boundary_next, 0, "\n--%s", boundary);
  247. self->buf_begin = self->buffer;
  248. self->bytes_in_buffer = 0;
  249. if (php_rfc1867_encoding_translation(TSRMLS_C)) {
  250. php_rfc1867_get_detect_order(&self->detect_order, &self->detect_order_size TSRMLS_CC);
  251. } else {
  252. self->detect_order = NULL;
  253. self->detect_order_size = 0;
  254. }
  255. self->input_encoding = NULL;
  256. return self;
  257. }
  258. /*
  259. * Gets the next CRLF terminated line from the input buffer.
  260. * If it doesn't find a CRLF, and the buffer isn't completely full, returns
  261. * NULL; otherwise, returns the beginning of the null-terminated line,
  262. * minus the CRLF.
  263. *
  264. * Note that we really just look for LF terminated lines. This works
  265. * around a bug in internet explorer for the macintosh which sends mime
  266. * boundaries that are only LF terminated when you use an image submit
  267. * button in a multipart/form-data form.
  268. */
  269. static char *next_line(multipart_buffer *self)
  270. {
  271. /* look for LF in the data */
  272. char* line = self->buf_begin;
  273. char* ptr = memchr(self->buf_begin, '\n', self->bytes_in_buffer);
  274. if (ptr) { /* LF found */
  275. /* terminate the string, remove CRLF */
  276. if ((ptr - line) > 0 && *(ptr-1) == '\r') {
  277. *(ptr-1) = 0;
  278. } else {
  279. *ptr = 0;
  280. }
  281. /* bump the pointer */
  282. self->buf_begin = ptr + 1;
  283. self->bytes_in_buffer -= (self->buf_begin - line);
  284. } else { /* no LF found */
  285. /* buffer isn't completely full, fail */
  286. if (self->bytes_in_buffer < self->bufsize) {
  287. return NULL;
  288. }
  289. /* return entire buffer as a partial line */
  290. line[self->bufsize] = 0;
  291. self->buf_begin = ptr;
  292. self->bytes_in_buffer = 0;
  293. }
  294. return line;
  295. }
  296. /* Returns the next CRLF terminated line from the client */
  297. static char *get_line(multipart_buffer *self TSRMLS_DC)
  298. {
  299. char* ptr = next_line(self);
  300. if (!ptr) {
  301. fill_buffer(self TSRMLS_CC);
  302. ptr = next_line(self);
  303. }
  304. return ptr;
  305. }
  306. /* Free header entry */
  307. static void php_free_hdr_entry(mime_header_entry *h)
  308. {
  309. if (h->key) {
  310. efree(h->key);
  311. }
  312. if (h->value) {
  313. efree(h->value);
  314. }
  315. }
  316. /* finds a boundary */
  317. static int find_boundary(multipart_buffer *self, char *boundary TSRMLS_DC)
  318. {
  319. char *line;
  320. /* loop thru lines */
  321. while( (line = get_line(self TSRMLS_CC)) )
  322. {
  323. /* finished if we found the boundary */
  324. if (!strcmp(line, boundary)) {
  325. return 1;
  326. }
  327. }
  328. /* didn't find the boundary */
  329. return 0;
  330. }
  331. /* parse headers */
  332. static int multipart_buffer_headers(multipart_buffer *self, zend_llist *header TSRMLS_DC)
  333. {
  334. char *line;
  335. mime_header_entry entry = {0};
  336. smart_str buf_value = {0};
  337. char *key = NULL;
  338. /* didn't find boundary, abort */
  339. if (!find_boundary(self, self->boundary TSRMLS_CC)) {
  340. return 0;
  341. }
  342. /* get lines of text, or CRLF_CRLF */
  343. while( (line = get_line(self TSRMLS_CC)) && line[0] != '\0' )
  344. {
  345. /* add header to table */
  346. char *value = NULL;
  347. if (php_rfc1867_encoding_translation(TSRMLS_C)) {
  348. self->input_encoding = zend_multibyte_encoding_detector((unsigned char *)line, strlen(line), self->detect_order, self->detect_order_size TSRMLS_CC);
  349. }
  350. /* space in the beginning means same header */
  351. if (!isspace(line[0])) {
  352. value = strchr(line, ':');
  353. }
  354. if (value) {
  355. if(buf_value.c && key) {
  356. /* new entry, add the old one to the list */
  357. smart_str_0(&buf_value);
  358. entry.key = key;
  359. entry.value = buf_value.c;
  360. zend_llist_add_element(header, &entry);
  361. buf_value.c = NULL;
  362. key = NULL;
  363. }
  364. *value = '\0';
  365. do { value++; } while(isspace(*value));
  366. key = estrdup(line);
  367. smart_str_appends(&buf_value, value);
  368. } else if (buf_value.c) { /* If no ':' on the line, add to previous line */
  369. smart_str_appends(&buf_value, line);
  370. } else {
  371. continue;
  372. }
  373. }
  374. if(buf_value.c && key) {
  375. /* add the last one to the list */
  376. smart_str_0(&buf_value);
  377. entry.key = key;
  378. entry.value = buf_value.c;
  379. zend_llist_add_element(header, &entry);
  380. }
  381. return 1;
  382. }
  383. static char *php_mime_get_hdr_value(zend_llist header, char *key)
  384. {
  385. mime_header_entry *entry;
  386. if (key == NULL) {
  387. return NULL;
  388. }
  389. entry = zend_llist_get_first(&header);
  390. while (entry) {
  391. if (!strcasecmp(entry->key, key)) {
  392. return entry->value;
  393. }
  394. entry = zend_llist_get_next(&header);
  395. }
  396. return NULL;
  397. }
  398. static char *php_ap_getword(const zend_encoding *encoding, char **line, char stop TSRMLS_DC)
  399. {
  400. char *pos = *line, quote;
  401. char *res;
  402. while (*pos && *pos != stop) {
  403. if ((quote = *pos) == '"' || quote == '\'') {
  404. ++pos;
  405. while (*pos && *pos != quote) {
  406. if (*pos == '\\' && pos[1] && pos[1] == quote) {
  407. pos += 2;
  408. } else {
  409. ++pos;
  410. }
  411. }
  412. if (*pos) {
  413. ++pos;
  414. }
  415. } else ++pos;
  416. }
  417. if (*pos == '\0') {
  418. res = estrdup(*line);
  419. *line += strlen(*line);
  420. return res;
  421. }
  422. res = estrndup(*line, pos - *line);
  423. while (*pos == stop) {
  424. ++pos;
  425. }
  426. *line = pos;
  427. return res;
  428. }
  429. static char *substring_conf(char *start, int len, char quote)
  430. {
  431. char *result = emalloc(len + 1);
  432. char *resp = result;
  433. int i;
  434. for (i = 0; i < len && start[i] != quote; ++i) {
  435. if (start[i] == '\\' && (start[i + 1] == '\\' || (quote && start[i + 1] == quote))) {
  436. *resp++ = start[++i];
  437. } else {
  438. *resp++ = start[i];
  439. }
  440. }
  441. *resp = '\0';
  442. return result;
  443. }
  444. static char *php_ap_getword_conf(const zend_encoding *encoding, char *str TSRMLS_DC)
  445. {
  446. while (*str && isspace(*str)) {
  447. ++str;
  448. }
  449. if (!*str) {
  450. return estrdup("");
  451. }
  452. if (*str == '"' || *str == '\'') {
  453. char quote = *str;
  454. str++;
  455. return substring_conf(str, strlen(str), quote);
  456. } else {
  457. char *strend = str;
  458. while (*strend && !isspace(*strend)) {
  459. ++strend;
  460. }
  461. return substring_conf(str, strend - str, 0);
  462. }
  463. }
  464. static char *php_ap_basename(const zend_encoding *encoding, char *path TSRMLS_DC)
  465. {
  466. char *s = strrchr(path, '\\');
  467. char *s2 = strrchr(path, '/');
  468. if (s && s2) {
  469. if (s > s2) {
  470. ++s;
  471. } else {
  472. s = ++s2;
  473. }
  474. return s;
  475. } else if (s) {
  476. return ++s;
  477. } else if (s2) {
  478. return ++s2;
  479. }
  480. return path;
  481. }
  482. /*
  483. * Search for a string in a fixed-length byte string.
  484. * If partial is true, partial matches are allowed at the end of the buffer.
  485. * Returns NULL if not found, or a pointer to the start of the first match.
  486. */
  487. static void *php_ap_memstr(char *haystack, int haystacklen, char *needle, int needlen, int partial)
  488. {
  489. int len = haystacklen;
  490. char *ptr = haystack;
  491. /* iterate through first character matches */
  492. while( (ptr = memchr(ptr, needle[0], len)) ) {
  493. /* calculate length after match */
  494. len = haystacklen - (ptr - (char *)haystack);
  495. /* done if matches up to capacity of buffer */
  496. if (memcmp(needle, ptr, needlen < len ? needlen : len) == 0 && (partial || len >= needlen)) {
  497. break;
  498. }
  499. /* next character */
  500. ptr++; len--;
  501. }
  502. return ptr;
  503. }
  504. /* read until a boundary condition */
  505. static int multipart_buffer_read(multipart_buffer *self, char *buf, int bytes, int *end TSRMLS_DC)
  506. {
  507. int len, max;
  508. char *bound;
  509. /* fill buffer if needed */
  510. if (bytes > self->bytes_in_buffer) {
  511. fill_buffer(self TSRMLS_CC);
  512. }
  513. /* look for a potential boundary match, only read data up to that point */
  514. if ((bound = php_ap_memstr(self->buf_begin, self->bytes_in_buffer, self->boundary_next, self->boundary_next_len, 1))) {
  515. max = bound - self->buf_begin;
  516. if (end && php_ap_memstr(self->buf_begin, self->bytes_in_buffer, self->boundary_next, self->boundary_next_len, 0)) {
  517. *end = 1;
  518. }
  519. } else {
  520. max = self->bytes_in_buffer;
  521. }
  522. /* maximum number of bytes we are reading */
  523. len = max < bytes-1 ? max : bytes-1;
  524. /* if we read any data... */
  525. if (len > 0) {
  526. /* copy the data */
  527. memcpy(buf, self->buf_begin, len);
  528. buf[len] = 0;
  529. if (bound && len > 0 && buf[len-1] == '\r') {
  530. buf[--len] = 0;
  531. }
  532. /* update the buffer */
  533. self->bytes_in_buffer -= len;
  534. self->buf_begin += len;
  535. }
  536. return len;
  537. }
  538. /*
  539. XXX: this is horrible memory-usage-wise, but we only expect
  540. to do this on small pieces of form data.
  541. */
  542. static char *multipart_buffer_read_body(multipart_buffer *self, unsigned int *len TSRMLS_DC)
  543. {
  544. char buf[FILLUNIT], *out=NULL;
  545. int total_bytes=0, read_bytes=0;
  546. while((read_bytes = multipart_buffer_read(self, buf, sizeof(buf), NULL TSRMLS_CC))) {
  547. out = erealloc(out, total_bytes + read_bytes + 1);
  548. memcpy(out + total_bytes, buf, read_bytes);
  549. total_bytes += read_bytes;
  550. }
  551. if (out) {
  552. out[total_bytes] = '\0';
  553. }
  554. *len = total_bytes;
  555. return out;
  556. }
  557. /* }}} */
  558. /*
  559. * The combined READER/HANDLER
  560. *
  561. */
  562. SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler) /* {{{ */
  563. {
  564. char *boundary, *s = NULL, *boundary_end = NULL, *start_arr = NULL, *array_index = NULL;
  565. char *temp_filename = NULL, *lbuf = NULL, *abuf = NULL;
  566. int boundary_len = 0, cancel_upload = 0, is_arr_upload = 0, array_len = 0;
  567. int64_t total_bytes = 0, max_file_size = 0;
  568. int skip_upload = 0, anonindex = 0, is_anonymous;
  569. zval *http_post_files = NULL;
  570. HashTable *uploaded_files = NULL;
  571. multipart_buffer *mbuff;
  572. zval *array_ptr = (zval *) arg;
  573. int fd = -1;
  574. zend_llist header;
  575. void *event_extra_data = NULL;
  576. unsigned int llen = 0;
  577. int upload_cnt = INI_INT("max_file_uploads");
  578. const zend_encoding *internal_encoding = zend_multibyte_get_internal_encoding(TSRMLS_C);
  579. php_rfc1867_getword_t getword;
  580. php_rfc1867_getword_conf_t getword_conf;
  581. php_rfc1867_basename_t _basename;
  582. long count = 0;
  583. if (php_rfc1867_encoding_translation(TSRMLS_C) && internal_encoding) {
  584. getword = php_rfc1867_getword;
  585. getword_conf = php_rfc1867_getword_conf;
  586. _basename = php_rfc1867_basename;
  587. } else {
  588. getword = php_ap_getword;
  589. getword_conf = php_ap_getword_conf;
  590. _basename = php_ap_basename;
  591. }
  592. if (SG(post_max_size) > 0 && SG(request_info).content_length > SG(post_max_size)) {
  593. sapi_module.sapi_error(E_WARNING, "POST Content-Length of %ld bytes exceeds the limit of %ld bytes", SG(request_info).content_length, SG(post_max_size));
  594. return;
  595. }
  596. /* Get the boundary */
  597. boundary = strstr(content_type_dup, "boundary");
  598. if (!boundary) {
  599. int content_type_len = strlen(content_type_dup);
  600. char *content_type_lcase = estrndup(content_type_dup, content_type_len);
  601. php_strtolower(content_type_lcase, content_type_len);
  602. boundary = strstr(content_type_lcase, "boundary");
  603. if (boundary) {
  604. boundary = content_type_dup + (boundary - content_type_lcase);
  605. }
  606. efree(content_type_lcase);
  607. }
  608. if (!boundary || !(boundary = strchr(boundary, '='))) {
  609. sapi_module.sapi_error(E_WARNING, "Missing boundary in multipart/form-data POST data");
  610. return;
  611. }
  612. boundary++;
  613. boundary_len = strlen(boundary);
  614. if (boundary[0] == '"') {
  615. boundary++;
  616. boundary_end = strchr(boundary, '"');
  617. if (!boundary_end) {
  618. sapi_module.sapi_error(E_WARNING, "Invalid boundary in multipart/form-data POST data");
  619. return;
  620. }
  621. } else {
  622. /* search for the end of the boundary */
  623. boundary_end = strpbrk(boundary, ",;");
  624. }
  625. if (boundary_end) {
  626. boundary_end[0] = '\0';
  627. boundary_len = boundary_end-boundary;
  628. }
  629. /* Initialize the buffer */
  630. if (!(mbuff = multipart_buffer_new(boundary, boundary_len TSRMLS_CC))) {
  631. sapi_module.sapi_error(E_WARNING, "Unable to initialize the input buffer");
  632. return;
  633. }
  634. /* Initialize $_FILES[] */
  635. zend_hash_init(&PG(rfc1867_protected_variables), 5, NULL, NULL, 0);
  636. ALLOC_HASHTABLE(uploaded_files);
  637. zend_hash_init(uploaded_files, 5, NULL, (dtor_func_t) free_estring, 0);
  638. SG(rfc1867_uploaded_files) = uploaded_files;
  639. ALLOC_ZVAL(http_post_files);
  640. array_init(http_post_files);
  641. INIT_PZVAL(http_post_files);
  642. PG(http_globals)[TRACK_VARS_FILES] = http_post_files;
  643. zend_llist_init(&header, sizeof(mime_header_entry), (llist_dtor_func_t) php_free_hdr_entry, 0);
  644. if (php_rfc1867_callback != NULL) {
  645. multipart_event_start event_start;
  646. event_start.content_length = SG(request_info).content_length;
  647. if (php_rfc1867_callback(MULTIPART_EVENT_START, &event_start, &event_extra_data TSRMLS_CC) == FAILURE) {
  648. goto fileupload_done;
  649. }
  650. }
  651. while (!multipart_buffer_eof(mbuff TSRMLS_CC))
  652. {
  653. char buff[FILLUNIT];
  654. char *cd = NULL, *param = NULL, *filename = NULL, *tmp = NULL;
  655. size_t blen = 0, wlen = 0;
  656. off_t offset;
  657. zend_llist_clean(&header);
  658. if (!multipart_buffer_headers(mbuff, &header TSRMLS_CC)) {
  659. goto fileupload_done;
  660. }
  661. if ((cd = php_mime_get_hdr_value(header, "Content-Disposition"))) {
  662. char *pair = NULL;
  663. int end = 0;
  664. while (isspace(*cd)) {
  665. ++cd;
  666. }
  667. while (*cd && (pair = getword(mbuff->input_encoding, &cd, ';' TSRMLS_CC)))
  668. {
  669. char *key = NULL, *word = pair;
  670. while (isspace(*cd)) {
  671. ++cd;
  672. }
  673. if (strchr(pair, '=')) {
  674. key = getword(mbuff->input_encoding, &pair, '=' TSRMLS_CC);
  675. if (!strcasecmp(key, "name")) {
  676. if (param) {
  677. efree(param);
  678. }
  679. param = getword_conf(mbuff->input_encoding, pair TSRMLS_CC);
  680. if (mbuff->input_encoding && internal_encoding) {
  681. unsigned char *new_param;
  682. size_t new_param_len;
  683. if ((size_t)-1 != zend_multibyte_encoding_converter(&new_param, &new_param_len, (unsigned char *)param, strlen(param), internal_encoding, mbuff->input_encoding TSRMLS_CC)) {
  684. efree(param);
  685. param = (char *)new_param;
  686. }
  687. }
  688. } else if (!strcasecmp(key, "filename")) {
  689. if (filename) {
  690. efree(filename);
  691. }
  692. filename = getword_conf(mbuff->input_encoding, pair TSRMLS_CC);
  693. if (mbuff->input_encoding && internal_encoding) {
  694. unsigned char *new_filename;
  695. size_t new_filename_len;
  696. if ((size_t)-1 != zend_multibyte_encoding_converter(&new_filename, &new_filename_len, (unsigned char *)filename, strlen(filename), internal_encoding, mbuff->input_encoding TSRMLS_CC)) {
  697. efree(filename);
  698. filename = (char *)new_filename;
  699. }
  700. }
  701. }
  702. }
  703. if (key) {
  704. efree(key);
  705. }
  706. efree(word);
  707. }
  708. /* Normal form variable, safe to read all data into memory */
  709. if (!filename && param) {
  710. unsigned int value_len;
  711. char *value = multipart_buffer_read_body(mbuff, &value_len TSRMLS_CC);
  712. unsigned int new_val_len; /* Dummy variable */
  713. if (!value) {
  714. value = estrdup("");
  715. value_len = 0;
  716. }
  717. if (mbuff->input_encoding && internal_encoding) {
  718. unsigned char *new_value;
  719. size_t new_value_len;
  720. if ((size_t)-1 != zend_multibyte_encoding_converter(&new_value, &new_value_len, (unsigned char *)value, value_len, internal_encoding, mbuff->input_encoding TSRMLS_CC)) {
  721. efree(value);
  722. value = (char *)new_value;
  723. value_len = new_value_len;
  724. }
  725. }
  726. if (++count <= PG(max_input_vars) && sapi_module.input_filter(PARSE_POST, param, &value, value_len, &new_val_len TSRMLS_CC)) {
  727. if (php_rfc1867_callback != NULL) {
  728. multipart_event_formdata event_formdata;
  729. size_t newlength = new_val_len;
  730. event_formdata.post_bytes_processed = SG(read_post_bytes);
  731. event_formdata.name = param;
  732. event_formdata.value = &value;
  733. event_formdata.length = new_val_len;
  734. event_formdata.newlength = &newlength;
  735. if (php_rfc1867_callback(MULTIPART_EVENT_FORMDATA, &event_formdata, &event_extra_data TSRMLS_CC) == FAILURE) {
  736. efree(param);
  737. efree(value);
  738. continue;
  739. }
  740. new_val_len = newlength;
  741. }
  742. safe_php_register_variable(param, value, new_val_len, array_ptr, 0 TSRMLS_CC);
  743. } else {
  744. if (count == PG(max_input_vars) + 1) {
  745. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Input variables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
  746. }
  747. if (php_rfc1867_callback != NULL) {
  748. multipart_event_formdata event_formdata;
  749. event_formdata.post_bytes_processed = SG(read_post_bytes);
  750. event_formdata.name = param;
  751. event_formdata.value = &value;
  752. event_formdata.length = value_len;
  753. event_formdata.newlength = NULL;
  754. php_rfc1867_callback(MULTIPART_EVENT_FORMDATA, &event_formdata, &event_extra_data TSRMLS_CC);
  755. }
  756. }
  757. if (!strcasecmp(param, "MAX_FILE_SIZE")) {
  758. #ifdef HAVE_ATOLL
  759. max_file_size = atoll(value);
  760. #else
  761. max_file_size = strtoll(value, NULL, 10);
  762. #endif
  763. }
  764. efree(param);
  765. efree(value);
  766. continue;
  767. }
  768. /* If file_uploads=off, skip the file part */
  769. if (!PG(file_uploads)) {
  770. skip_upload = 1;
  771. } else if (upload_cnt <= 0) {
  772. skip_upload = 1;
  773. sapi_module.sapi_error(E_WARNING, "Maximum number of allowable file uploads has been exceeded");
  774. }
  775. /* Return with an error if the posted data is garbled */
  776. if (!param && !filename) {
  777. sapi_module.sapi_error(E_WARNING, "File Upload Mime headers garbled");
  778. goto fileupload_done;
  779. }
  780. if (!param) {
  781. is_anonymous = 1;
  782. param = emalloc(MAX_SIZE_ANONNAME);
  783. snprintf(param, MAX_SIZE_ANONNAME, "%u", anonindex++);
  784. } else {
  785. is_anonymous = 0;
  786. }
  787. /* New Rule: never repair potential malicious user input */
  788. if (!skip_upload) {
  789. long c = 0;
  790. tmp = param;
  791. while (*tmp) {
  792. if (*tmp == '[') {
  793. c++;
  794. } else if (*tmp == ']') {
  795. c--;
  796. if (tmp[1] && tmp[1] != '[') {
  797. skip_upload = 1;
  798. break;
  799. }
  800. }
  801. if (c < 0) {
  802. skip_upload = 1;
  803. break;
  804. }
  805. tmp++;
  806. }
  807. /* Brackets should always be closed */
  808. if(c != 0) {
  809. skip_upload = 1;
  810. }
  811. }
  812. total_bytes = cancel_upload = 0;
  813. temp_filename = NULL;
  814. fd = -1;
  815. if (!skip_upload && php_rfc1867_callback != NULL) {
  816. multipart_event_file_start event_file_start;
  817. event_file_start.post_bytes_processed = SG(read_post_bytes);
  818. event_file_start.name = param;
  819. event_file_start.filename = &filename;
  820. if (php_rfc1867_callback(MULTIPART_EVENT_FILE_START, &event_file_start, &event_extra_data TSRMLS_CC) == FAILURE) {
  821. temp_filename = "";
  822. efree(param);
  823. efree(filename);
  824. continue;
  825. }
  826. }
  827. if (skip_upload) {
  828. efree(param);
  829. efree(filename);
  830. continue;
  831. }
  832. if (filename[0] == '\0') {
  833. #if DEBUG_FILE_UPLOAD
  834. sapi_module.sapi_error(E_NOTICE, "No file uploaded");
  835. #endif
  836. cancel_upload = UPLOAD_ERROR_D;
  837. }
  838. offset = 0;
  839. end = 0;
  840. if (!cancel_upload) {
  841. /* only bother to open temp file if we have data */
  842. blen = multipart_buffer_read(mbuff, buff, sizeof(buff), &end TSRMLS_CC);
  843. #if DEBUG_FILE_UPLOAD
  844. if (blen > 0) {
  845. #else
  846. /* in non-debug mode we have no problem with 0-length files */
  847. {
  848. #endif
  849. fd = php_open_temporary_fd_ex(PG(upload_tmp_dir), "php", &temp_filename, 1 TSRMLS_CC);
  850. upload_cnt--;
  851. if (fd == -1) {
  852. sapi_module.sapi_error(E_WARNING, "File upload error - unable to create a temporary file");
  853. cancel_upload = UPLOAD_ERROR_E;
  854. }
  855. }
  856. }
  857. while (!cancel_upload && (blen > 0))
  858. {
  859. if (php_rfc1867_callback != NULL) {
  860. multipart_event_file_data event_file_data;
  861. event_file_data.post_bytes_processed = SG(read_post_bytes);
  862. event_file_data.offset = offset;
  863. event_file_data.data = buff;
  864. event_file_data.length = blen;
  865. event_file_data.newlength = &blen;
  866. if (php_rfc1867_callback(MULTIPART_EVENT_FILE_DATA, &event_file_data, &event_extra_data TSRMLS_CC) == FAILURE) {
  867. cancel_upload = UPLOAD_ERROR_X;
  868. continue;
  869. }
  870. }
  871. if (PG(upload_max_filesize) > 0 && (long)(total_bytes+blen) > PG(upload_max_filesize)) {
  872. #if DEBUG_FILE_UPLOAD
  873. sapi_module.sapi_error(E_NOTICE, "upload_max_filesize of %ld bytes exceeded - file [%s=%s] not saved", PG(upload_max_filesize), param, filename);
  874. #endif
  875. cancel_upload = UPLOAD_ERROR_A;
  876. } else if (max_file_size && ((long)(total_bytes+blen) > max_file_size)) {
  877. #if DEBUG_FILE_UPLOAD
  878. sapi_module.sapi_error(E_NOTICE, "MAX_FILE_SIZE of %ld bytes exceeded - file [%s=%s] not saved", max_file_size, param, filename);
  879. #endif
  880. cancel_upload = UPLOAD_ERROR_B;
  881. } else if (blen > 0) {
  882. wlen = write(fd, buff, blen);
  883. if (wlen == -1) {
  884. /* write failed */
  885. #if DEBUG_FILE_UPLOAD
  886. sapi_module.sapi_error(E_NOTICE, "write() failed - %s", strerror(errno));
  887. #endif
  888. cancel_upload = UPLOAD_ERROR_F;
  889. } else if (wlen < blen) {
  890. #if DEBUG_FILE_UPLOAD
  891. sapi_module.sapi_error(E_NOTICE, "Only %d bytes were written, expected to write %d", wlen, blen);
  892. #endif
  893. cancel_upload = UPLOAD_ERROR_F;
  894. } else {
  895. total_bytes += wlen;
  896. }
  897. offset += wlen;
  898. }
  899. /* read data for next iteration */
  900. blen = multipart_buffer_read(mbuff, buff, sizeof(buff), &end TSRMLS_CC);
  901. }
  902. if (fd != -1) { /* may not be initialized if file could not be created */
  903. close(fd);
  904. }
  905. if (!cancel_upload && !end) {
  906. #if DEBUG_FILE_UPLOAD
  907. sapi_module.sapi_error(E_NOTICE, "Missing mime boundary at the end of the data for file %s", filename[0] != '\0' ? filename : "");
  908. #endif
  909. cancel_upload = UPLOAD_ERROR_C;
  910. }
  911. #if DEBUG_FILE_UPLOAD
  912. if (filename[0] != '\0' && total_bytes == 0 && !cancel_upload) {
  913. sapi_module.sapi_error(E_WARNING, "Uploaded file size 0 - file [%s=%s] not saved", param, filename);
  914. cancel_upload = 5;
  915. }
  916. #endif
  917. if (php_rfc1867_callback != NULL) {
  918. multipart_event_file_end event_file_end;
  919. event_file_end.post_bytes_processed = SG(read_post_bytes);
  920. event_file_end.temp_filename = temp_filename;
  921. event_file_end.cancel_upload = cancel_upload;
  922. if (php_rfc1867_callback(MULTIPART_EVENT_FILE_END, &event_file_end, &event_extra_data TSRMLS_CC) == FAILURE) {
  923. cancel_upload = UPLOAD_ERROR_X;
  924. }
  925. }
  926. if (cancel_upload) {
  927. if (temp_filename) {
  928. if (cancel_upload != UPLOAD_ERROR_E) { /* file creation failed */
  929. unlink(temp_filename);
  930. }
  931. efree(temp_filename);
  932. }
  933. temp_filename = "";
  934. } else {
  935. zend_hash_add(SG(rfc1867_uploaded_files), temp_filename, strlen(temp_filename) + 1, &temp_filename, sizeof(char *), NULL);
  936. }
  937. /* is_arr_upload is true when name of file upload field
  938. * ends in [.*]
  939. * start_arr is set to point to 1st [ */
  940. is_arr_upload = (start_arr = strchr(param,'[')) && (param[strlen(param)-1] == ']');
  941. if (is_arr_upload) {
  942. array_len = strlen(start_arr);
  943. if (array_index) {
  944. efree(array_index);
  945. }
  946. array_index = estrndup(start_arr + 1, array_len - 2);
  947. }
  948. /* Add $foo_name */
  949. if (llen < strlen(param) + MAX_SIZE_OF_INDEX + 1) {
  950. llen = strlen(param);
  951. lbuf = (char *) safe_erealloc(lbuf, llen, 1, MAX_SIZE_OF_INDEX + 1);
  952. llen += MAX_SIZE_OF_INDEX + 1;
  953. }
  954. if (is_arr_upload) {
  955. if (abuf) efree(abuf);
  956. abuf = estrndup(param, strlen(param)-array_len);
  957. snprintf(lbuf, llen, "%s_name[%s]", abuf, array_index);
  958. } else {
  959. snprintf(lbuf, llen, "%s_name", param);
  960. }
  961. /* The \ check should technically be needed for win32 systems only where
  962. * it is a valid path separator. However, IE in all it's wisdom always sends
  963. * the full path of the file on the user's filesystem, which means that unless
  964. * the user does basename() they get a bogus file name. Until IE's user base drops
  965. * to nill or problem is fixed this code must remain enabled for all systems. */
  966. s = _basename(internal_encoding, filename TSRMLS_CC);
  967. if (!s) {
  968. s = filename;
  969. }
  970. if (!is_anonymous) {
  971. safe_php_register_variable(lbuf, s, strlen(s), NULL, 0 TSRMLS_CC);
  972. }
  973. /* Add $foo[name] */
  974. if (is_arr_upload) {
  975. snprintf(lbuf, llen, "%s[name][%s]", abuf, array_index);
  976. } else {
  977. snprintf(lbuf, llen, "%s[name]", param);
  978. }
  979. register_http_post_files_variable(lbuf, s, http_post_files, 0 TSRMLS_CC);
  980. efree(filename);
  981. s = NULL;
  982. /* Possible Content-Type: */
  983. if (cancel_upload || !(cd = php_mime_get_hdr_value(header, "Content-Type"))) {
  984. cd = "";
  985. } else {
  986. /* fix for Opera 6.01 */
  987. s = strchr(cd, ';');
  988. if (s != NULL) {
  989. *s = '\0';
  990. }
  991. }
  992. /* Add $foo_type */
  993. if (is_arr_upload) {
  994. snprintf(lbuf, llen, "%s_type[%s]", abuf, array_index);
  995. } else {
  996. snprintf(lbuf, llen, "%s_type", param);
  997. }
  998. if (!is_anonymous) {
  999. safe_php_register_variable(lbuf, cd, strlen(cd), NULL, 0 TSRMLS_CC);
  1000. }
  1001. /* Add $foo[type] */
  1002. if (is_arr_upload) {
  1003. snprintf(lbuf, llen, "%s[type][%s]", abuf, array_index);
  1004. } else {
  1005. snprintf(lbuf, llen, "%s[type]", param);
  1006. }
  1007. register_http_post_files_variable(lbuf, cd, http_post_files, 0 TSRMLS_CC);
  1008. /* Restore Content-Type Header */
  1009. if (s != NULL) {
  1010. *s = ';';
  1011. }
  1012. s = "";
  1013. {
  1014. /* store temp_filename as-is (in case upload_tmp_dir
  1015. * contains escapeable characters. escape only the variable name.) */
  1016. zval zfilename;
  1017. /* Initialize variables */
  1018. add_protected_variable(param TSRMLS_CC);
  1019. /* if param is of form xxx[.*] this will cut it to xxx */
  1020. if (!is_anonymous) {
  1021. ZVAL_STRING(&zfilename, temp_filename, 1);
  1022. safe_php_register_variable_ex(param, &zfilename, NULL, 1 TSRMLS_CC);
  1023. }
  1024. /* Add $foo[tmp_name] */
  1025. if (is_arr_upload) {
  1026. snprintf(lbuf, llen, "%s[tmp_name][%s]", abuf, array_index);
  1027. } else {
  1028. snprintf(lbuf, llen, "%s[tmp_name]", param);
  1029. }
  1030. add_protected_variable(lbuf TSRMLS_CC);
  1031. ZVAL_STRING(&zfilename, temp_filename, 1);
  1032. register_http_post_files_variable_ex(lbuf, &zfilename, http_post_files, 1 TSRMLS_CC);
  1033. }
  1034. {
  1035. zval file_size, error_type;
  1036. int size_overflow = 0;
  1037. char file_size_buf[65];
  1038. ZVAL_LONG(&error_type, cancel_upload);
  1039. /* Add $foo[error] */
  1040. if (cancel_upload) {
  1041. ZVAL_LONG(&file_size, 0);
  1042. } else {
  1043. if (total_bytes > LONG_MAX) {
  1044. #ifdef PHP_WIN32
  1045. if (_i64toa_s(total_bytes, file_size_buf, 65, 10)) {
  1046. file_size_buf[0] = '0';
  1047. file_size_buf[1] = '\0';
  1048. }
  1049. #else
  1050. {
  1051. int __len = snprintf(file_size_buf, 65, "%lld", total_bytes);
  1052. file_size_buf[__len] = '\0';
  1053. }
  1054. #endif
  1055. size_overflow = 1;
  1056. } else {
  1057. ZVAL_LONG(&file_size, total_bytes);
  1058. }
  1059. }
  1060. if (is_arr_upload) {
  1061. snprintf(lbuf, llen, "%s[error][%s]", abuf, array_index);
  1062. } else {
  1063. snprintf(lbuf, llen, "%s[error]", param);
  1064. }
  1065. register_http_post_files_variable_ex(lbuf, &error_type, http_post_files, 0 TSRMLS_CC);
  1066. /* Add $foo_size */
  1067. if (is_arr_upload) {
  1068. snprintf(lbuf, llen, "%s_size[%s]", abuf, array_index);
  1069. } else {
  1070. snprintf(lbuf, llen, "%s_size", param);
  1071. }
  1072. if (!is_anonymous) {
  1073. if (size_overflow) {
  1074. ZVAL_STRING(&file_size, file_size_buf, 1);
  1075. }
  1076. safe_php_register_variable_ex(lbuf, &file_size, NULL, size_overflow TSRMLS_CC);
  1077. }
  1078. /* Add $foo[size] */
  1079. if (is_arr_upload) {
  1080. snprintf(lbuf, llen, "%s[size][%s]", abuf, array_index);
  1081. } else {
  1082. snprintf(lbuf, llen, "%s[size]", param);
  1083. }
  1084. if (size_overflow) {
  1085. ZVAL_STRING(&file_size, file_size_buf, 1);
  1086. }
  1087. register_http_post_files_variable_ex(lbuf, &file_size, http_post_files, size_overflow TSRMLS_CC);
  1088. }
  1089. efree(param);
  1090. }
  1091. }
  1092. fileupload_done:
  1093. if (php_rfc1867_callback != NULL) {
  1094. multipart_event_end event_end;
  1095. event_end.post_bytes_processed = SG(read_post_bytes);
  1096. php_rfc1867_callback(MULTIPART_EVENT_END, &event_end, &event_extra_data TSRMLS_CC);
  1097. }
  1098. if (lbuf) efree(lbuf);
  1099. if (abuf) efree(abuf);
  1100. if (array_index) efree(array_index);
  1101. zend_hash_destroy(&PG(rfc1867_protected_variables));
  1102. zend_llist_destroy(&header);
  1103. if (mbuff->boundary_next) efree(mbuff->boundary_next);
  1104. if (mbuff->boundary) efree(mbuff->boundary);
  1105. if (mbuff->buffer) efree(mbuff->buffer);
  1106. if (mbuff) efree(mbuff);
  1107. }
  1108. /* }}} */
  1109. SAPI_API void php_rfc1867_set_multibyte_callbacks(
  1110. php_rfc1867_encoding_translation_t encoding_translation,
  1111. php_rfc1867_get_detect_order_t get_detect_order,
  1112. php_rfc1867_set_input_encoding_t set_input_encoding,
  1113. php_rfc1867_getword_t getword,
  1114. php_rfc1867_getword_conf_t getword_conf,
  1115. php_rfc1867_basename_t basename) /* {{{ */
  1116. {
  1117. php_rfc1867_encoding_translation = encoding_translation;
  1118. php_rfc1867_get_detect_order = get_detect_order;
  1119. php_rfc1867_set_input_encoding = set_input_encoding;
  1120. php_rfc1867_getword = getword;
  1121. php_rfc1867_getword_conf = getword_conf;
  1122. php_rfc1867_basename = basename;
  1123. }
  1124. /* }}} */
  1125. /*
  1126. * Local variables:
  1127. * tab-width: 4
  1128. * c-basic-offset: 4
  1129. * End:
  1130. * vim600: sw=4 ts=4 fdm=marker
  1131. * vim<600: sw=4 ts=4
  1132. */