zlib.c 31 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049
  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@lerdorf.on.ca> |
  16. | Stefan Röhrich <sr@linux.de> |
  17. | Zeev Suraski <zeev@zend.com> |
  18. | Jade Nicoletti <nicoletti@nns.ch> |
  19. | Michael Wallner <mike@php.net> |
  20. +----------------------------------------------------------------------+
  21. */
  22. /* $Id$ */
  23. #ifdef HAVE_CONFIG_H
  24. #include "config.h"
  25. #endif
  26. #include "php.h"
  27. #include "SAPI.h"
  28. #include "php_ini.h"
  29. #include "ext/standard/info.h"
  30. #include "ext/standard/file.h"
  31. #include "ext/standard/php_string.h"
  32. #include "php_zlib.h"
  33. /*
  34. * zlib include files can define the following preprocessor defines which rename
  35. * the corresponding PHP functions to gzopen64, gzseek64 and gztell64 and thereby
  36. * breaking some software, most notably PEAR's Archive_Tar, which halts execution
  37. * without error message on gzip compressed archivesa.
  38. *
  39. * This only seems to happen on 32bit systems with large file support.
  40. */
  41. #undef gzopen
  42. #undef gzseek
  43. #undef gztell
  44. ZEND_DECLARE_MODULE_GLOBALS(zlib);
  45. /* {{{ Memory management wrappers */
  46. static voidpf php_zlib_alloc(voidpf opaque, uInt items, uInt size)
  47. {
  48. return (voidpf)safe_emalloc(items, size, 0);
  49. }
  50. static void php_zlib_free(voidpf opaque, voidpf address)
  51. {
  52. efree((void*)address);
  53. }
  54. /* }}} */
  55. /* {{{ php_zlib_output_conflict_check() */
  56. static int php_zlib_output_conflict_check(const char *handler_name, size_t handler_name_len TSRMLS_DC)
  57. {
  58. if (php_output_get_level(TSRMLS_C) > 0) {
  59. if (php_output_handler_conflict(handler_name, handler_name_len, ZEND_STRL(PHP_ZLIB_OUTPUT_HANDLER_NAME) TSRMLS_CC)
  60. || php_output_handler_conflict(handler_name, handler_name_len, ZEND_STRL("ob_gzhandler") TSRMLS_CC)
  61. || php_output_handler_conflict(handler_name, handler_name_len, ZEND_STRL("mb_output_handler") TSRMLS_CC)
  62. || php_output_handler_conflict(handler_name, handler_name_len, ZEND_STRL("URL-Rewriter") TSRMLS_CC)) {
  63. return FAILURE;
  64. }
  65. }
  66. return SUCCESS;
  67. }
  68. /* }}} */
  69. /* {{{ php_zlib_output_encoding() */
  70. static int php_zlib_output_encoding(TSRMLS_D)
  71. {
  72. zval **enc;
  73. if (!ZLIBG(compression_coding)) {
  74. if ((PG(http_globals)[TRACK_VARS_SERVER] || zend_is_auto_global(ZEND_STRL("_SERVER") TSRMLS_CC)) &&
  75. SUCCESS == zend_hash_find(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER]), "HTTP_ACCEPT_ENCODING", sizeof("HTTP_ACCEPT_ENCODING"), (void *) &enc)) {
  76. convert_to_string(*enc);
  77. if (strstr(Z_STRVAL_PP(enc), "gzip")) {
  78. ZLIBG(compression_coding) = PHP_ZLIB_ENCODING_GZIP;
  79. } else if (strstr(Z_STRVAL_PP(enc), "deflate")) {
  80. ZLIBG(compression_coding) = PHP_ZLIB_ENCODING_DEFLATE;
  81. }
  82. }
  83. }
  84. return ZLIBG(compression_coding);
  85. }
  86. /* }}} */
  87. /* {{{ php_zlib_output_handler_ex() */
  88. static int php_zlib_output_handler_ex(php_zlib_context *ctx, php_output_context *output_context)
  89. {
  90. int flags = Z_SYNC_FLUSH;
  91. PHP_OUTPUT_TSRMLS(output_context);
  92. if (output_context->op & PHP_OUTPUT_HANDLER_START) {
  93. /* start up */
  94. if (Z_OK != deflateInit2(&ctx->Z, ZLIBG(output_compression_level), Z_DEFLATED, ZLIBG(compression_coding), MAX_MEM_LEVEL, Z_DEFAULT_STRATEGY)) {
  95. return FAILURE;
  96. }
  97. }
  98. if (output_context->op & PHP_OUTPUT_HANDLER_CLEAN) {
  99. /* free buffers */
  100. deflateEnd(&ctx->Z);
  101. if (output_context->op & PHP_OUTPUT_HANDLER_FINAL) {
  102. /* discard */
  103. return SUCCESS;
  104. } else {
  105. /* restart */
  106. if (Z_OK != deflateInit2(&ctx->Z, ZLIBG(output_compression_level), Z_DEFLATED, ZLIBG(compression_coding), MAX_MEM_LEVEL, Z_DEFAULT_STRATEGY)) {
  107. return FAILURE;
  108. }
  109. ctx->buffer.used = 0;
  110. }
  111. } else {
  112. if (output_context->in.used) {
  113. /* append input */
  114. if (ctx->buffer.free < output_context->in.used) {
  115. if (!(ctx->buffer.aptr = erealloc_recoverable(ctx->buffer.data, ctx->buffer.used + ctx->buffer.free + output_context->in.used))) {
  116. deflateEnd(&ctx->Z);
  117. return FAILURE;
  118. }
  119. ctx->buffer.data = ctx->buffer.aptr;
  120. ctx->buffer.free += output_context->in.used;
  121. }
  122. memcpy(ctx->buffer.data + ctx->buffer.used, output_context->in.data, output_context->in.used);
  123. ctx->buffer.free -= output_context->in.used;
  124. ctx->buffer.used += output_context->in.used;
  125. }
  126. output_context->out.size = PHP_ZLIB_BUFFER_SIZE_GUESS(output_context->in.used);
  127. output_context->out.data = emalloc(output_context->out.size);
  128. output_context->out.free = 1;
  129. output_context->out.used = 0;
  130. ctx->Z.avail_in = ctx->buffer.used;
  131. ctx->Z.next_in = (Bytef *) ctx->buffer.data;
  132. ctx->Z.avail_out = output_context->out.size;
  133. ctx->Z.next_out = (Bytef *) output_context->out.data;
  134. if (output_context->op & PHP_OUTPUT_HANDLER_FINAL) {
  135. flags = Z_FINISH;
  136. } else if (output_context->op & PHP_OUTPUT_HANDLER_FLUSH) {
  137. flags = Z_FULL_FLUSH;
  138. }
  139. switch (deflate(&ctx->Z, flags)) {
  140. case Z_OK:
  141. if (flags == Z_FINISH) {
  142. deflateEnd(&ctx->Z);
  143. return FAILURE;
  144. }
  145. case Z_STREAM_END:
  146. if (ctx->Z.avail_in) {
  147. memmove(ctx->buffer.data, ctx->buffer.data + ctx->buffer.used - ctx->Z.avail_in, ctx->Z.avail_in);
  148. }
  149. ctx->buffer.free += ctx->buffer.used - ctx->Z.avail_in;
  150. ctx->buffer.used = ctx->Z.avail_in;
  151. output_context->out.used = output_context->out.size - ctx->Z.avail_out;
  152. break;
  153. default:
  154. deflateEnd(&ctx->Z);
  155. return FAILURE;
  156. }
  157. if (output_context->op & PHP_OUTPUT_HANDLER_FINAL) {
  158. deflateEnd(&ctx->Z);
  159. }
  160. }
  161. return SUCCESS;
  162. }
  163. /* }}} */
  164. /* {{{ php_zlib_output_handler() */
  165. static int php_zlib_output_handler(void **handler_context, php_output_context *output_context)
  166. {
  167. php_zlib_context *ctx = *(php_zlib_context **) handler_context;
  168. PHP_OUTPUT_TSRMLS(output_context);
  169. if (!php_zlib_output_encoding(TSRMLS_C)) {
  170. /* "Vary: Accept-Encoding" header sent along uncompressed content breaks caching in MSIE,
  171. so let's just send it with successfully compressed content or unless the complete
  172. buffer gets discarded, see http://bugs.php.net/40325;
  173. Test as follows:
  174. +Vary: $ HTTP_ACCEPT_ENCODING=gzip ./sapi/cgi/php <<<'<?php ob_start("ob_gzhandler"); echo "foo\n";'
  175. +Vary: $ HTTP_ACCEPT_ENCODING= ./sapi/cgi/php <<<'<?php ob_start("ob_gzhandler"); echo "foo\n";'
  176. -Vary: $ HTTP_ACCEPT_ENCODING=gzip ./sapi/cgi/php <<<'<?php ob_start("ob_gzhandler"); echo "foo\n"; ob_end_clean();'
  177. -Vary: $ HTTP_ACCEPT_ENCODING= ./sapi/cgi/php <<<'<?php ob_start("ob_gzhandler"); echo "foo\n"; ob_end_clean();'
  178. */
  179. if ((output_context->op & PHP_OUTPUT_HANDLER_START)
  180. && (output_context->op != (PHP_OUTPUT_HANDLER_START|PHP_OUTPUT_HANDLER_CLEAN|PHP_OUTPUT_HANDLER_FINAL))
  181. ) {
  182. sapi_add_header_ex(ZEND_STRL("Vary: Accept-Encoding"), 1, 0 TSRMLS_CC);
  183. }
  184. return FAILURE;
  185. }
  186. if (SUCCESS != php_zlib_output_handler_ex(ctx, output_context)) {
  187. return FAILURE;
  188. }
  189. if (!(output_context->op & PHP_OUTPUT_HANDLER_CLEAN)) {
  190. int flags;
  191. if (SUCCESS == php_output_handler_hook(PHP_OUTPUT_HANDLER_HOOK_GET_FLAGS, &flags TSRMLS_CC)) {
  192. /* only run this once */
  193. if (!(flags & PHP_OUTPUT_HANDLER_STARTED)) {
  194. if (SG(headers_sent) || !ZLIBG(output_compression)) {
  195. deflateEnd(&ctx->Z);
  196. return FAILURE;
  197. }
  198. switch (ZLIBG(compression_coding)) {
  199. case PHP_ZLIB_ENCODING_GZIP:
  200. sapi_add_header_ex(ZEND_STRL("Content-Encoding: gzip"), 1, 1 TSRMLS_CC);
  201. break;
  202. case PHP_ZLIB_ENCODING_DEFLATE:
  203. sapi_add_header_ex(ZEND_STRL("Content-Encoding: deflate"), 1, 1 TSRMLS_CC);
  204. break;
  205. default:
  206. deflateEnd(&ctx->Z);
  207. return FAILURE;
  208. }
  209. sapi_add_header_ex(ZEND_STRL("Vary: Accept-Encoding"), 1, 0 TSRMLS_CC);
  210. php_output_handler_hook(PHP_OUTPUT_HANDLER_HOOK_IMMUTABLE, NULL TSRMLS_CC);
  211. }
  212. }
  213. }
  214. return SUCCESS;
  215. }
  216. /* }}} */
  217. /* {{{ php_zlib_output_handler_context_init() */
  218. static php_zlib_context *php_zlib_output_handler_context_init(TSRMLS_D)
  219. {
  220. php_zlib_context *ctx = (php_zlib_context *) ecalloc(1, sizeof(php_zlib_context));
  221. ctx->Z.zalloc = php_zlib_alloc;
  222. ctx->Z.zfree = php_zlib_free;
  223. return ctx;
  224. }
  225. /* }}} */
  226. /* {{{ php_zlib_output_handler_context_dtor() */
  227. static void php_zlib_output_handler_context_dtor(void *opaq TSRMLS_DC)
  228. {
  229. php_zlib_context *ctx = (php_zlib_context *) opaq;
  230. if (ctx) {
  231. if (ctx->buffer.data) {
  232. efree(ctx->buffer.data);
  233. }
  234. efree(ctx);
  235. }
  236. }
  237. /* }}} */
  238. /* {{{ php_zlib_output_handler_init() */
  239. static php_output_handler *php_zlib_output_handler_init(const char *handler_name, size_t handler_name_len, size_t chunk_size, int flags TSRMLS_DC)
  240. {
  241. php_output_handler *h = NULL;
  242. if (!ZLIBG(output_compression)) {
  243. ZLIBG(output_compression) = chunk_size ? chunk_size : PHP_OUTPUT_HANDLER_DEFAULT_SIZE;
  244. }
  245. ZLIBG(handler_registered) = 1;
  246. if ((h = php_output_handler_create_internal(handler_name, handler_name_len, php_zlib_output_handler, chunk_size, flags TSRMLS_CC))) {
  247. php_output_handler_set_context(h, php_zlib_output_handler_context_init(TSRMLS_C), php_zlib_output_handler_context_dtor TSRMLS_CC);
  248. }
  249. return h;
  250. }
  251. /* }}} */
  252. /* {{{ php_zlib_output_compression_start() */
  253. static void php_zlib_output_compression_start(TSRMLS_D)
  254. {
  255. zval *zoh;
  256. php_output_handler *h;
  257. switch (ZLIBG(output_compression)) {
  258. case 0:
  259. break;
  260. case 1:
  261. ZLIBG(output_compression) = PHP_OUTPUT_HANDLER_DEFAULT_SIZE;
  262. /* break omitted intentionally */
  263. default:
  264. if ( php_zlib_output_encoding(TSRMLS_C) &&
  265. (h = php_zlib_output_handler_init(ZEND_STRL(PHP_ZLIB_OUTPUT_HANDLER_NAME), ZLIBG(output_compression), PHP_OUTPUT_HANDLER_STDFLAGS TSRMLS_CC)) &&
  266. (SUCCESS == php_output_handler_start(h TSRMLS_CC))) {
  267. if (ZLIBG(output_handler) && *ZLIBG(output_handler)) {
  268. MAKE_STD_ZVAL(zoh);
  269. ZVAL_STRING(zoh, ZLIBG(output_handler), 1);
  270. php_output_start_user(zoh, ZLIBG(output_compression), PHP_OUTPUT_HANDLER_STDFLAGS TSRMLS_CC);
  271. zval_ptr_dtor(&zoh);
  272. }
  273. }
  274. break;
  275. }
  276. }
  277. /* }}} */
  278. /* {{{ php_zlib_encode() */
  279. static int php_zlib_encode(const char *in_buf, size_t in_len, char **out_buf, size_t *out_len, int encoding, int level TSRMLS_DC)
  280. {
  281. int status;
  282. z_stream Z;
  283. memset(&Z, 0, sizeof(z_stream));
  284. Z.zalloc = php_zlib_alloc;
  285. Z.zfree = php_zlib_free;
  286. if (Z_OK == (status = deflateInit2(&Z, level, Z_DEFLATED, encoding, MAX_MEM_LEVEL, Z_DEFAULT_STRATEGY))) {
  287. *out_len = PHP_ZLIB_BUFFER_SIZE_GUESS(in_len);
  288. *out_buf = emalloc(*out_len);
  289. Z.next_in = (Bytef *) in_buf;
  290. Z.next_out = (Bytef *) *out_buf;
  291. Z.avail_in = in_len;
  292. Z.avail_out = *out_len;
  293. status = deflate(&Z, Z_FINISH);
  294. deflateEnd(&Z);
  295. if (Z_STREAM_END == status) {
  296. /* size buffer down to actual length */
  297. *out_buf = erealloc(*out_buf, Z.total_out + 1);
  298. (*out_buf)[*out_len = Z.total_out] = '\0';
  299. return SUCCESS;
  300. } else {
  301. efree(*out_buf);
  302. }
  303. }
  304. *out_buf = NULL;
  305. *out_len = 0;
  306. php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", zError(status));
  307. return FAILURE;
  308. }
  309. /* }}} */
  310. /* {{{ php_zlib_inflate_rounds() */
  311. static inline int php_zlib_inflate_rounds(z_stream *Z, size_t max, char **buf, size_t *len)
  312. {
  313. int status, round = 0;
  314. php_zlib_buffer buffer = {NULL, NULL, 0, 0, 0};
  315. *buf = NULL;
  316. *len = 0;
  317. buffer.size = (max && (max < Z->avail_in)) ? max : Z->avail_in;
  318. do {
  319. if ((max && (max <= buffer.used)) || !(buffer.aptr = erealloc_recoverable(buffer.data, buffer.size))) {
  320. status = Z_MEM_ERROR;
  321. } else {
  322. buffer.data = buffer.aptr;
  323. Z->avail_out = buffer.free = buffer.size - buffer.used;
  324. Z->next_out = (Bytef *) buffer.data + buffer.used;
  325. #if 0
  326. fprintf(stderr, "\n%3d: %3d PRIOR: size=%7lu,\tfree=%7lu,\tused=%7lu,\tavail_in=%7lu,\tavail_out=%7lu\n", round, status, buffer.size, buffer.free, buffer.used, Z->avail_in, Z->avail_out);
  327. #endif
  328. status = inflate(Z, Z_NO_FLUSH);
  329. buffer.used += buffer.free - Z->avail_out;
  330. buffer.free = Z->avail_out;
  331. #if 0
  332. fprintf(stderr, "%3d: %3d AFTER: size=%7lu,\tfree=%7lu,\tused=%7lu,\tavail_in=%7lu,\tavail_out=%7lu\n", round, status, buffer.size, buffer.free, buffer.used, Z->avail_in, Z->avail_out);
  333. #endif
  334. buffer.size += (buffer.size >> 3) + 1;
  335. }
  336. } while ((Z_BUF_ERROR == status || (Z_OK == status && Z->avail_in)) && ++round < 100);
  337. if (status == Z_STREAM_END) {
  338. buffer.data = erealloc(buffer.data, buffer.used + 1);
  339. buffer.data[buffer.used] = '\0';
  340. *buf = buffer.data;
  341. *len = buffer.used;
  342. } else {
  343. if (buffer.data) {
  344. efree(buffer.data);
  345. }
  346. /* HACK: See zlib/examples/zpipe.c inf() function for explanation. */
  347. /* This works as long as this function is not used for streaming. Required to catch very short invalid data. */
  348. status = (status == Z_OK) ? Z_DATA_ERROR : status;
  349. }
  350. return status;
  351. }
  352. /* }}} */
  353. /* {{{ php_zlib_decode() */
  354. static int php_zlib_decode(const char *in_buf, size_t in_len, char **out_buf, size_t *out_len, int encoding, size_t max_len TSRMLS_DC)
  355. {
  356. int status = Z_DATA_ERROR;
  357. z_stream Z;
  358. memset(&Z, 0, sizeof(z_stream));
  359. Z.zalloc = php_zlib_alloc;
  360. Z.zfree = php_zlib_free;
  361. if (in_len) {
  362. retry_raw_inflate:
  363. status = inflateInit2(&Z, encoding);
  364. if (Z_OK == status) {
  365. Z.next_in = (Bytef *) in_buf;
  366. Z.avail_in = in_len + 1; /* NOTE: data must be zero terminated */
  367. switch (status = php_zlib_inflate_rounds(&Z, max_len, out_buf, out_len)) {
  368. case Z_STREAM_END:
  369. inflateEnd(&Z);
  370. return SUCCESS;
  371. case Z_DATA_ERROR:
  372. /* raw deflated data? */
  373. if (PHP_ZLIB_ENCODING_ANY == encoding) {
  374. inflateEnd(&Z);
  375. encoding = PHP_ZLIB_ENCODING_RAW;
  376. goto retry_raw_inflate;
  377. }
  378. }
  379. inflateEnd(&Z);
  380. }
  381. }
  382. *out_buf = NULL;
  383. *out_len = 0;
  384. php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", zError(status));
  385. return FAILURE;
  386. }
  387. /* }}} */
  388. /* {{{ php_zlib_cleanup_ob_gzhandler_mess() */
  389. static void php_zlib_cleanup_ob_gzhandler_mess(TSRMLS_D)
  390. {
  391. if (ZLIBG(ob_gzhandler)) {
  392. deflateEnd(&(ZLIBG(ob_gzhandler)->Z));
  393. php_zlib_output_handler_context_dtor(ZLIBG(ob_gzhandler) TSRMLS_CC);
  394. ZLIBG(ob_gzhandler) = NULL;
  395. }
  396. }
  397. /* }}} */
  398. /* {{{ proto string ob_gzhandler(string data, int flags)
  399. Legacy hack */
  400. static PHP_FUNCTION(ob_gzhandler)
  401. {
  402. char *in_str;
  403. int in_len;
  404. long flags = 0;
  405. php_output_context ctx = {0};
  406. int encoding, rv;
  407. /*
  408. * NOTE that the real ob_gzhandler is an alias to "zlib output compression".
  409. * This is a really bad hack, because
  410. * - we have to initialize a php_zlib_context on demand
  411. * - we have to clean it up in RSHUTDOWN
  412. * - OG(running) is not set or set to any other output handler
  413. * - we have to mess around with php_output_context */
  414. if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl", &in_str, &in_len, &flags)) {
  415. RETURN_FALSE;
  416. }
  417. if (!(encoding = php_zlib_output_encoding(TSRMLS_C))) {
  418. RETURN_FALSE;
  419. }
  420. if (flags & PHP_OUTPUT_HANDLER_START) {
  421. switch (encoding) {
  422. case PHP_ZLIB_ENCODING_GZIP:
  423. sapi_add_header_ex(ZEND_STRL("Content-Encoding: gzip"), 1, 1 TSRMLS_CC);
  424. break;
  425. case PHP_ZLIB_ENCODING_DEFLATE:
  426. sapi_add_header_ex(ZEND_STRL("Content-Encoding: deflate"), 1, 1 TSRMLS_CC);
  427. break;
  428. }
  429. sapi_add_header_ex(ZEND_STRL("Vary: Accept-Encoding"), 1, 0 TSRMLS_CC);
  430. }
  431. if (!ZLIBG(ob_gzhandler)) {
  432. ZLIBG(ob_gzhandler) = php_zlib_output_handler_context_init(TSRMLS_C);
  433. }
  434. TSRMLS_SET_CTX(ctx.tsrm_ls);
  435. ctx.op = flags;
  436. ctx.in.data = in_str;
  437. ctx.in.used = in_len;
  438. rv = php_zlib_output_handler_ex(ZLIBG(ob_gzhandler), &ctx);
  439. if (SUCCESS != rv) {
  440. if (ctx.out.data && ctx.out.free) {
  441. efree(ctx.out.data);
  442. }
  443. php_zlib_cleanup_ob_gzhandler_mess(TSRMLS_C);
  444. RETURN_FALSE;
  445. }
  446. if (ctx.out.data) {
  447. RETVAL_STRINGL(ctx.out.data, ctx.out.used, 1);
  448. if (ctx.out.free) {
  449. efree(ctx.out.data);
  450. }
  451. } else {
  452. RETVAL_EMPTY_STRING();
  453. }
  454. }
  455. /* }}} */
  456. /* {{{ proto string zlib_get_coding_type(void)
  457. Returns the coding type used for output compression */
  458. static PHP_FUNCTION(zlib_get_coding_type)
  459. {
  460. if (zend_parse_parameters_none() == FAILURE) {
  461. return;
  462. }
  463. switch (ZLIBG(compression_coding)) {
  464. case PHP_ZLIB_ENCODING_GZIP:
  465. RETURN_STRINGL("gzip", sizeof("gzip") - 1, 1);
  466. case PHP_ZLIB_ENCODING_DEFLATE:
  467. RETURN_STRINGL("deflate", sizeof("deflate") - 1, 1);
  468. default:
  469. RETURN_FALSE;
  470. }
  471. }
  472. /* }}} */
  473. /* {{{ proto array gzfile(string filename [, int use_include_path])
  474. Read and uncompress entire .gz-file into an array */
  475. static PHP_FUNCTION(gzfile)
  476. {
  477. char *filename;
  478. int filename_len;
  479. int flags = REPORT_ERRORS;
  480. char buf[8192] = {0};
  481. register int i = 0;
  482. long use_include_path = 0;
  483. php_stream *stream;
  484. if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|l", &filename, &filename_len, &use_include_path)) {
  485. return;
  486. }
  487. if (use_include_path) {
  488. flags |= USE_PATH;
  489. }
  490. /* using a stream here is a bit more efficient (resource wise) than php_gzopen_wrapper */
  491. stream = php_stream_gzopen(NULL, filename, "rb", flags, NULL, NULL STREAMS_CC TSRMLS_CC);
  492. if (!stream) {
  493. /* Error reporting is already done by stream code */
  494. RETURN_FALSE;
  495. }
  496. /* Initialize return array */
  497. array_init(return_value);
  498. /* Now loop through the file and do the magic quotes thing if needed */
  499. memset(buf, 0, sizeof(buf));
  500. while (php_stream_gets(stream, buf, sizeof(buf) - 1) != NULL) {
  501. add_index_string(return_value, i++, buf, 1);
  502. }
  503. php_stream_close(stream);
  504. }
  505. /* }}} */
  506. /* {{{ proto resource gzopen(string filename, string mode [, int use_include_path])
  507. Open a .gz-file and return a .gz-file pointer */
  508. static PHP_FUNCTION(gzopen)
  509. {
  510. char *filename;
  511. char *mode;
  512. int filename_len, mode_len;
  513. int flags = REPORT_ERRORS;
  514. php_stream *stream;
  515. long use_include_path = 0;
  516. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ps|l", &filename, &filename_len, &mode, &mode_len, &use_include_path) == FAILURE) {
  517. return;
  518. }
  519. if (use_include_path) {
  520. flags |= USE_PATH;
  521. }
  522. stream = php_stream_gzopen(NULL, filename, mode, flags, NULL, NULL STREAMS_CC TSRMLS_CC);
  523. if (!stream) {
  524. RETURN_FALSE;
  525. }
  526. php_stream_to_zval(stream, return_value);
  527. }
  528. /* }}} */
  529. /* {{{ proto int readgzfile(string filename [, int use_include_path])
  530. Output a .gz-file */
  531. static PHP_FUNCTION(readgzfile)
  532. {
  533. char *filename;
  534. int filename_len;
  535. int flags = REPORT_ERRORS;
  536. php_stream *stream;
  537. int size;
  538. long use_include_path = 0;
  539. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|l", &filename, &filename_len, &use_include_path) == FAILURE) {
  540. return;
  541. }
  542. if (use_include_path) {
  543. flags |= USE_PATH;
  544. }
  545. stream = php_stream_gzopen(NULL, filename, "rb", flags, NULL, NULL STREAMS_CC TSRMLS_CC);
  546. if (!stream) {
  547. RETURN_FALSE;
  548. }
  549. size = php_stream_passthru(stream);
  550. php_stream_close(stream);
  551. RETURN_LONG(size);
  552. }
  553. /* }}} */
  554. #define PHP_ZLIB_ENCODE_FUNC(name, default_encoding) \
  555. static PHP_FUNCTION(name) \
  556. { \
  557. char *in_buf, *out_buf; \
  558. int in_len; \
  559. size_t out_len; \
  560. long level = -1; \
  561. long encoding = default_encoding; \
  562. if (default_encoding) { \
  563. if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|ll", &in_buf, &in_len, &level, &encoding)) { \
  564. return; \
  565. } \
  566. } else { \
  567. if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|l", &in_buf, &in_len, &encoding, &level)) { \
  568. return; \
  569. } \
  570. } \
  571. if (level < -1 || level > 9) { \
  572. php_error_docref(NULL TSRMLS_CC, E_WARNING, "compression level (%ld) must be within -1..9", level); \
  573. RETURN_FALSE; \
  574. } \
  575. switch (encoding) { \
  576. case PHP_ZLIB_ENCODING_RAW: \
  577. case PHP_ZLIB_ENCODING_GZIP: \
  578. case PHP_ZLIB_ENCODING_DEFLATE: \
  579. break; \
  580. default: \
  581. php_error_docref(NULL TSRMLS_CC, E_WARNING, "encoding mode must be either ZLIB_ENCODING_RAW, ZLIB_ENCODING_GZIP or ZLIB_ENCODING_DEFLATE"); \
  582. RETURN_FALSE; \
  583. } \
  584. if (SUCCESS != php_zlib_encode(in_buf, in_len, &out_buf, &out_len, encoding, level TSRMLS_CC)) { \
  585. RETURN_FALSE; \
  586. } \
  587. RETVAL_STRINGL_CHECK(out_buf, out_len, 0); \
  588. }
  589. #define PHP_ZLIB_DECODE_FUNC(name, encoding) \
  590. static PHP_FUNCTION(name) \
  591. { \
  592. char *in_buf, *out_buf; \
  593. int in_len; \
  594. size_t out_len; \
  595. long max_len = 0; \
  596. if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &in_buf, &in_len, &max_len)) { \
  597. return; \
  598. } \
  599. if (max_len < 0) { \
  600. php_error_docref(NULL TSRMLS_CC, E_WARNING, "length (%ld) must be greater or equal zero", max_len); \
  601. RETURN_FALSE; \
  602. } \
  603. if (SUCCESS != php_zlib_decode(in_buf, in_len, &out_buf, &out_len, encoding, max_len TSRMLS_CC)) { \
  604. RETURN_FALSE; \
  605. } \
  606. RETVAL_STRINGL_CHECK(out_buf, out_len, 0); \
  607. }
  608. /* {{{ proto binary zlib_encode(binary data, int encoding[, int level = -1])
  609. Compress data with the specified encoding */
  610. PHP_ZLIB_ENCODE_FUNC(zlib_encode, 0);
  611. /* }}} */
  612. /* {{{ proto binary zlib_decode(binary data[, int max_decoded_len])
  613. Uncompress any raw/gzip/zlib encoded data */
  614. PHP_ZLIB_DECODE_FUNC(zlib_decode, PHP_ZLIB_ENCODING_ANY);
  615. /* }}} */
  616. /* NOTE: The naming of these userland functions was quite unlucky */
  617. /* {{{ proto binary gzdeflate(binary data[, int level = -1[, int encoding = ZLIB_ENCODING_RAW])
  618. Encode data with the raw deflate encoding */
  619. PHP_ZLIB_ENCODE_FUNC(gzdeflate, PHP_ZLIB_ENCODING_RAW);
  620. /* }}} */
  621. /* {{{ proto binary gzencode(binary data[, int level = -1[, int encoding = ZLIB_ENCODING_GZIP])
  622. Encode data with the gzip encoding */
  623. PHP_ZLIB_ENCODE_FUNC(gzencode, PHP_ZLIB_ENCODING_GZIP);
  624. /* }}} */
  625. /* {{{ proto binary gzcompress(binary data[, int level = -1[, int encoding = ZLIB_ENCODING_DEFLATE])
  626. Encode data with the zlib encoding */
  627. PHP_ZLIB_ENCODE_FUNC(gzcompress, PHP_ZLIB_ENCODING_DEFLATE);
  628. /* }}} */
  629. /* {{{ proto binary gzinflate(binary data[, int max_decoded_len])
  630. Decode raw deflate encoded data */
  631. PHP_ZLIB_DECODE_FUNC(gzinflate, PHP_ZLIB_ENCODING_RAW);
  632. /* }}} */
  633. /* {{{ proto binary gzdecode(binary data[, int max_decoded_len])
  634. Decode gzip encoded data */
  635. PHP_ZLIB_DECODE_FUNC(gzdecode, PHP_ZLIB_ENCODING_GZIP);
  636. /* }}} */
  637. /* {{{ proto binary gzuncompress(binary data[, int max_decoded_len])
  638. Decode zlib encoded data */
  639. PHP_ZLIB_DECODE_FUNC(gzuncompress, PHP_ZLIB_ENCODING_DEFLATE);
  640. /* }}} */
  641. #ifdef COMPILE_DL_ZLIB
  642. ZEND_GET_MODULE(php_zlib)
  643. #endif
  644. /* {{{ arginfo */
  645. ZEND_BEGIN_ARG_INFO_EX(arginfo_ob_gzhandler, 0, 0, 2)
  646. ZEND_ARG_INFO(0, data)
  647. ZEND_ARG_INFO(0, flags)
  648. ZEND_END_ARG_INFO()
  649. ZEND_BEGIN_ARG_INFO(arginfo_zlib_get_coding_type, 0)
  650. ZEND_END_ARG_INFO()
  651. ZEND_BEGIN_ARG_INFO_EX(arginfo_gzfile, 0, 0, 1)
  652. ZEND_ARG_INFO(0, filename)
  653. ZEND_ARG_INFO(0, use_include_path)
  654. ZEND_END_ARG_INFO()
  655. ZEND_BEGIN_ARG_INFO_EX(arginfo_gzopen, 0, 0, 2)
  656. ZEND_ARG_INFO(0, filename)
  657. ZEND_ARG_INFO(0, mode)
  658. ZEND_ARG_INFO(0, use_include_path)
  659. ZEND_END_ARG_INFO()
  660. ZEND_BEGIN_ARG_INFO_EX(arginfo_readgzfile, 0, 0, 1)
  661. ZEND_ARG_INFO(0, filename)
  662. ZEND_ARG_INFO(0, use_include_path)
  663. ZEND_END_ARG_INFO()
  664. ZEND_BEGIN_ARG_INFO_EX(arginfo_zlib_encode, 0, 0, 2)
  665. ZEND_ARG_INFO(0, data)
  666. ZEND_ARG_INFO(0, encoding)
  667. ZEND_ARG_INFO(0, level)
  668. ZEND_END_ARG_INFO()
  669. ZEND_BEGIN_ARG_INFO_EX(arginfo_zlib_decode, 0, 0, 1)
  670. ZEND_ARG_INFO(0, data)
  671. ZEND_ARG_INFO(0, max_decoded_len)
  672. ZEND_END_ARG_INFO()
  673. ZEND_BEGIN_ARG_INFO_EX(arginfo_gzdeflate, 0, 0, 1)
  674. ZEND_ARG_INFO(0, data)
  675. ZEND_ARG_INFO(0, level)
  676. ZEND_ARG_INFO(0, encoding)
  677. ZEND_END_ARG_INFO()
  678. ZEND_BEGIN_ARG_INFO_EX(arginfo_gzencode, 0, 0, 1)
  679. ZEND_ARG_INFO(0, data)
  680. ZEND_ARG_INFO(0, level)
  681. ZEND_ARG_INFO(0, encoding)
  682. ZEND_END_ARG_INFO()
  683. ZEND_BEGIN_ARG_INFO_EX(arginfo_gzcompress, 0, 0, 1)
  684. ZEND_ARG_INFO(0, data)
  685. ZEND_ARG_INFO(0, level)
  686. ZEND_ARG_INFO(0, encoding)
  687. ZEND_END_ARG_INFO()
  688. ZEND_BEGIN_ARG_INFO_EX(arginfo_gzinflate, 0, 0, 1)
  689. ZEND_ARG_INFO(0, data)
  690. ZEND_ARG_INFO(0, max_decoded_len)
  691. ZEND_END_ARG_INFO()
  692. ZEND_BEGIN_ARG_INFO_EX(arginfo_gzdecode, 0, 0, 1)
  693. ZEND_ARG_INFO(0, data)
  694. ZEND_ARG_INFO(0, max_decoded_len)
  695. ZEND_END_ARG_INFO()
  696. ZEND_BEGIN_ARG_INFO_EX(arginfo_gzuncompress, 0, 0, 1)
  697. ZEND_ARG_INFO(0, data)
  698. ZEND_ARG_INFO(0, max_decoded_len)
  699. ZEND_END_ARG_INFO()
  700. ZEND_BEGIN_ARG_INFO_EX(arginfo_gzputs, 0, 0, 2)
  701. ZEND_ARG_INFO(0, fp)
  702. ZEND_ARG_INFO(0, str)
  703. ZEND_ARG_INFO(0, length)
  704. ZEND_END_ARG_INFO()
  705. ZEND_BEGIN_ARG_INFO(arginfo_gzpassthru, 0)
  706. ZEND_ARG_INFO(0, fp)
  707. ZEND_END_ARG_INFO()
  708. ZEND_BEGIN_ARG_INFO_EX(arginfo_gzseek, 0, 0, 2)
  709. ZEND_ARG_INFO(0, fp)
  710. ZEND_ARG_INFO(0, offset)
  711. ZEND_ARG_INFO(0, whence)
  712. ZEND_END_ARG_INFO()
  713. ZEND_BEGIN_ARG_INFO(arginfo_gzread, 0)
  714. ZEND_ARG_INFO(0, fp)
  715. ZEND_ARG_INFO(0, length)
  716. ZEND_END_ARG_INFO()
  717. ZEND_BEGIN_ARG_INFO_EX(arginfo_gzgetss, 0, 0, 1)
  718. ZEND_ARG_INFO(0, fp)
  719. ZEND_ARG_INFO(0, length)
  720. ZEND_ARG_INFO(0, allowable_tags)
  721. ZEND_END_ARG_INFO()
  722. ZEND_BEGIN_ARG_INFO_EX(arginfo_gzgets, 0, 0, 1)
  723. ZEND_ARG_INFO(0, fp)
  724. ZEND_ARG_INFO(0, length)
  725. ZEND_END_ARG_INFO()
  726. /* }}} */
  727. /* {{{ php_zlib_functions[] */
  728. static const zend_function_entry php_zlib_functions[] = {
  729. PHP_FE(readgzfile, arginfo_readgzfile)
  730. PHP_FALIAS(gzrewind, rewind, arginfo_gzpassthru)
  731. PHP_FALIAS(gzclose, fclose, arginfo_gzpassthru)
  732. PHP_FALIAS(gzeof, feof, arginfo_gzpassthru)
  733. PHP_FALIAS(gzgetc, fgetc, arginfo_gzpassthru)
  734. PHP_FALIAS(gzgets, fgets, arginfo_gzgets)
  735. PHP_FALIAS(gzgetss, fgetss, arginfo_gzgetss)
  736. PHP_FALIAS(gzread, fread, arginfo_gzread)
  737. PHP_FE(gzopen, arginfo_gzopen)
  738. PHP_FALIAS(gzpassthru, fpassthru, arginfo_gzpassthru)
  739. PHP_FALIAS(gzseek, fseek, arginfo_gzseek)
  740. PHP_FALIAS(gztell, ftell, arginfo_gzpassthru)
  741. PHP_FALIAS(gzwrite, fwrite, arginfo_gzputs)
  742. PHP_FALIAS(gzputs, fwrite, arginfo_gzputs)
  743. PHP_FE(gzfile, arginfo_gzfile)
  744. PHP_FE(gzcompress, arginfo_gzcompress)
  745. PHP_FE(gzuncompress, arginfo_gzuncompress)
  746. PHP_FE(gzdeflate, arginfo_gzdeflate)
  747. PHP_FE(gzinflate, arginfo_gzinflate)
  748. PHP_FE(gzencode, arginfo_gzencode)
  749. PHP_FE(gzdecode, arginfo_gzdecode)
  750. PHP_FE(zlib_encode, arginfo_zlib_encode)
  751. PHP_FE(zlib_decode, arginfo_zlib_decode)
  752. PHP_FE(zlib_get_coding_type, arginfo_zlib_get_coding_type)
  753. PHP_FE(ob_gzhandler, arginfo_ob_gzhandler)
  754. PHP_FE_END
  755. };
  756. /* }}} */
  757. /* {{{ OnUpdate_zlib_output_compression */
  758. static PHP_INI_MH(OnUpdate_zlib_output_compression)
  759. {
  760. int status, int_value;
  761. char *ini_value;
  762. if (new_value == NULL) {
  763. return FAILURE;
  764. }
  765. if (!strncasecmp(new_value, "off", sizeof("off"))) {
  766. new_value = "0";
  767. new_value_length = sizeof("0");
  768. } else if (!strncasecmp(new_value, "on", sizeof("on"))) {
  769. new_value = "1";
  770. new_value_length = sizeof("1");
  771. }
  772. int_value = zend_atoi(new_value, new_value_length);
  773. ini_value = zend_ini_string("output_handler", sizeof("output_handler"), 0);
  774. if (ini_value && *ini_value && int_value) {
  775. php_error_docref("ref.outcontrol" TSRMLS_CC, E_CORE_ERROR, "Cannot use both zlib.output_compression and output_handler together!!");
  776. return FAILURE;
  777. }
  778. if (stage == PHP_INI_STAGE_RUNTIME) {
  779. status = php_output_get_status(TSRMLS_C);
  780. if (status & PHP_OUTPUT_SENT) {
  781. php_error_docref("ref.outcontrol" TSRMLS_CC, E_WARNING, "Cannot change zlib.output_compression - headers already sent");
  782. return FAILURE;
  783. }
  784. }
  785. status = OnUpdateLong(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
  786. ZLIBG(output_compression) = ZLIBG(output_compression_default);
  787. if (stage == PHP_INI_STAGE_RUNTIME && int_value) {
  788. if (!php_output_handler_started(ZEND_STRL(PHP_ZLIB_OUTPUT_HANDLER_NAME) TSRMLS_CC)) {
  789. php_zlib_output_compression_start(TSRMLS_C);
  790. }
  791. }
  792. return status;
  793. }
  794. /* }}} */
  795. /* {{{ OnUpdate_zlib_output_handler */
  796. static PHP_INI_MH(OnUpdate_zlib_output_handler)
  797. {
  798. if (stage == PHP_INI_STAGE_RUNTIME && (php_output_get_status(TSRMLS_C) & PHP_OUTPUT_SENT)) {
  799. php_error_docref("ref.outcontrol" TSRMLS_CC, E_WARNING, "Cannot change zlib.output_handler - headers already sent");
  800. return FAILURE;
  801. }
  802. return OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
  803. }
  804. /* }}} */
  805. /* {{{ INI */
  806. PHP_INI_BEGIN()
  807. STD_PHP_INI_BOOLEAN("zlib.output_compression", "0", PHP_INI_ALL, OnUpdate_zlib_output_compression, output_compression_default, zend_zlib_globals, zlib_globals)
  808. STD_PHP_INI_ENTRY("zlib.output_compression_level", "-1", PHP_INI_ALL, OnUpdateLong, output_compression_level, zend_zlib_globals, zlib_globals)
  809. STD_PHP_INI_ENTRY("zlib.output_handler", "", PHP_INI_ALL, OnUpdate_zlib_output_handler, output_handler, zend_zlib_globals, zlib_globals)
  810. PHP_INI_END()
  811. /* }}} */
  812. /* {{{ PHP_MINIT_FUNCTION */
  813. static PHP_MINIT_FUNCTION(zlib)
  814. {
  815. php_register_url_stream_wrapper("compress.zlib", &php_stream_gzip_wrapper TSRMLS_CC);
  816. php_stream_filter_register_factory("zlib.*", &php_zlib_filter_factory TSRMLS_CC);
  817. php_output_handler_alias_register(ZEND_STRL("ob_gzhandler"), php_zlib_output_handler_init TSRMLS_CC);
  818. php_output_handler_conflict_register(ZEND_STRL("ob_gzhandler"), php_zlib_output_conflict_check TSRMLS_CC);
  819. php_output_handler_conflict_register(ZEND_STRL(PHP_ZLIB_OUTPUT_HANDLER_NAME), php_zlib_output_conflict_check TSRMLS_CC);
  820. REGISTER_LONG_CONSTANT("FORCE_GZIP", PHP_ZLIB_ENCODING_GZIP, CONST_CS|CONST_PERSISTENT);
  821. REGISTER_LONG_CONSTANT("FORCE_DEFLATE", PHP_ZLIB_ENCODING_DEFLATE, CONST_CS|CONST_PERSISTENT);
  822. REGISTER_LONG_CONSTANT("ZLIB_ENCODING_RAW", PHP_ZLIB_ENCODING_RAW, CONST_CS|CONST_PERSISTENT);
  823. REGISTER_LONG_CONSTANT("ZLIB_ENCODING_GZIP", PHP_ZLIB_ENCODING_GZIP, CONST_CS|CONST_PERSISTENT);
  824. REGISTER_LONG_CONSTANT("ZLIB_ENCODING_DEFLATE", PHP_ZLIB_ENCODING_DEFLATE, CONST_CS|CONST_PERSISTENT);
  825. REGISTER_INI_ENTRIES();
  826. return SUCCESS;
  827. }
  828. /* }}} */
  829. /* {{{ PHP_MSHUTDOWN_FUNCTION */
  830. static PHP_MSHUTDOWN_FUNCTION(zlib)
  831. {
  832. php_unregister_url_stream_wrapper("zlib" TSRMLS_CC);
  833. php_stream_filter_unregister_factory("zlib.*" TSRMLS_CC);
  834. UNREGISTER_INI_ENTRIES();
  835. return SUCCESS;
  836. }
  837. /* }}} */
  838. /* {{{ PHP_RINIT_FUNCTION */
  839. static PHP_RINIT_FUNCTION(zlib)
  840. {
  841. ZLIBG(compression_coding) = 0;
  842. if (!ZLIBG(handler_registered)) {
  843. ZLIBG(output_compression) = ZLIBG(output_compression_default);
  844. php_zlib_output_compression_start(TSRMLS_C);
  845. }
  846. return SUCCESS;
  847. }
  848. /* }}} */
  849. /* {{{ PHP_RSHUTDOWN_FUNCTION */
  850. static PHP_RSHUTDOWN_FUNCTION(zlib)
  851. {
  852. php_zlib_cleanup_ob_gzhandler_mess(TSRMLS_C);
  853. ZLIBG(handler_registered) = 0;
  854. return SUCCESS;
  855. }
  856. /* }}} */
  857. /* {{{ PHP_MINFO_FUNCTION */
  858. static PHP_MINFO_FUNCTION(zlib)
  859. {
  860. php_info_print_table_start();
  861. php_info_print_table_header(2, "ZLib Support", "enabled");
  862. php_info_print_table_row(2, "Stream Wrapper", "compress.zlib://");
  863. php_info_print_table_row(2, "Stream Filter", "zlib.inflate, zlib.deflate");
  864. php_info_print_table_row(2, "Compiled Version", ZLIB_VERSION);
  865. php_info_print_table_row(2, "Linked Version", (char *) zlibVersion());
  866. php_info_print_table_end();
  867. DISPLAY_INI_ENTRIES();
  868. }
  869. /* }}} */
  870. /* {{{ ZEND_MODULE_GLOBALS_CTOR */
  871. static ZEND_MODULE_GLOBALS_CTOR_D(zlib)
  872. {
  873. zlib_globals->ob_gzhandler = NULL;
  874. zlib_globals->handler_registered = 0;
  875. }
  876. /* }}} */
  877. /* {{{ php_zlib_module_entry */
  878. zend_module_entry php_zlib_module_entry = {
  879. STANDARD_MODULE_HEADER,
  880. "zlib",
  881. php_zlib_functions,
  882. PHP_MINIT(zlib),
  883. PHP_MSHUTDOWN(zlib),
  884. PHP_RINIT(zlib),
  885. PHP_RSHUTDOWN(zlib),
  886. PHP_MINFO(zlib),
  887. "2.0",
  888. PHP_MODULE_GLOBALS(zlib),
  889. ZEND_MODULE_GLOBALS_CTOR_N(zlib),
  890. NULL,
  891. NULL,
  892. STANDARD_MODULE_PROPERTIES_EX
  893. };
  894. /* }}} */
  895. /*
  896. * Local variables:
  897. * tab-width: 4
  898. * c-basic-offset: 4
  899. * End:
  900. * vim600: sw=4 ts=4 fdm=marker
  901. * vim<600: sw=4 ts=4
  902. */