X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_cache_api.h;h=14ae720d0886ce9829f430a744db8d2dc3fc554f;hp=bef8cc8b97d14cdf94548db85c82868e261e3ddb;hb=2e1cd7f9942bb07d7c3a2efb79090215fc1406d6;hpb=a347d63a12d0863cf848c2e4ffa891fe827e29bb diff --git a/php_http_cache_api.h b/php_http_cache_api.h index bef8cc8..14ae720 100644 --- a/php_http_cache_api.h +++ b/php_http_cache_api.h @@ -22,25 +22,29 @@ #include "ext/standard/md5.h" #include "ext/standard/sha1.h" +#include "ext/standard/crc32.h" #include "php_http_std_defs.h" #include "php_http.h" #include "php_http_api.h" #include "php_http_send_api.h" -#ifdef HAVE_LIBMHASH +#ifdef HTTP_HAVE_MHASH # include #endif ZEND_EXTERN_MODULE_GLOBALS(http); +#define http_cache_global_init() _http_cache_global_init(INIT_FUNC_ARGS_PASSTHRU) +extern STATUS _http_cache_global_init(INIT_FUNC_ARGS); + typedef enum { + HTTP_ETAG_CRC32 = -3, HTTP_ETAG_MD5 = -2, HTTP_ETAG_SHA1 = -1, - HTTP_ETAG_MHASH = 0, } http_etag_mode; -#ifdef HAVE_LIBMHASH +#ifdef HTTP_HAVE_MHASH static void *http_etag_alloc_mhash_digest(size_t size) { return emalloc(size); @@ -68,34 +72,34 @@ static inline char *_http_etag_digest(const unsigned char *digest, int len TSRML #define http_etag_init() _http_etag_init(TSRMLS_C) static inline void *_http_etag_init(TSRMLS_D) { - void *ctx; + void *ctx = NULL; long mode = INI_INT("http.etag_mode"); switch (mode) { + case HTTP_ETAG_CRC32: + ctx = emalloc(sizeof(unsigned int)); + memset(ctx, 1, sizeof(unsigned int)); + break; + case HTTP_ETAG_SHA1: PHP_SHA1Init(ctx = emalloc(sizeof(PHP_SHA1_CTX))); break; case HTTP_ETAG_MD5: -invalid_flag: +#ifndef HTTP_HAVE_MHASH + default: +#endif PHP_MD5Init(ctx = emalloc(sizeof(PHP_MD5_CTX))); break; +#ifdef HTTP_HAVE_MHASH default: - { -#ifdef HAVE_LIBMHASH - if ((mode >= 0) && (mode <= mhash_count())) { - ctx = mhash_init(mode); + if ((mode < 0) || ((ulong)mode > mhash_count()) || (!(ctx = mhash_init(mode)))) { + http_error_ex(HE_ERROR, HTTP_E_RUNTIME, "Invalid ETag mode: %ld", mode); } - if ((!ctx) || (ctx == MHASH_FAILED)) -#endif - { - HTTP_G(etag).mode = HTTP_ETAG_MD5; - goto invalid_flag; - } - } break; +#endif } return ctx; @@ -110,6 +114,12 @@ static inline char *_http_etag_finish(void *ctx TSRMLS_DC) switch (mode) { + case HTTP_ETAG_CRC32: + *((unsigned int *) ctx) = ~*((unsigned int *) ctx); + etag = http_etag_digest((const unsigned char *) ctx, sizeof(unsigned int)); + efree(ctx); + break; + case HTTP_ETAG_SHA1: PHP_SHA1Final(digest, ctx); etag = http_etag_digest(digest, 20); @@ -117,20 +127,23 @@ static inline char *_http_etag_finish(void *ctx TSRMLS_DC) break; case HTTP_ETAG_MD5: +#ifndef HTTP_HAVE_MHASH + default: +#endif PHP_MD5Final(digest, ctx); etag = http_etag_digest(digest, 16); efree(ctx); break; +#ifdef HTTP_HAVE_MHASH default: { -#ifdef HAVE_LIBMHASH unsigned char *mhash_digest = mhash_end_m(ctx, http_etag_alloc_mhash_digest); etag = http_etag_digest(mhash_digest, mhash_get_block_size(mode)); efree(mhash_digest); -#endif } break; +#endif } return etag; @@ -141,19 +154,33 @@ static inline void _http_etag_update(void *ctx, const char *data_ptr, size_t dat { switch (INI_INT("http.etag_mode")) { + case HTTP_ETAG_CRC32: + { + unsigned int i, c = *((unsigned int *) ctx); + + for (i = 0; i < data_len; ++i) { + c = CRC32(c, data_ptr[i]); + } + *((unsigned int *)ctx) = c; + } + break; + case HTTP_ETAG_SHA1: - PHP_SHA1Update(ctx, data_ptr, data_len); + PHP_SHA1Update(ctx, (const unsigned char *) data_ptr, data_len); break; case HTTP_ETAG_MD5: - PHP_MD5Update(ctx, data_ptr, data_len); +#ifndef HTTP_HAVE_MHASH + default: +#endif + PHP_MD5Update(ctx, (const unsigned char *) data_ptr, data_len); break; +#ifdef HTTP_HAVE_MHASH default: -#ifdef HAVE_LIBMHASH mhash(ctx, data_ptr, data_len); -#endif break; +#endif } }