1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
|
/*
+----------------------------------------------------------------------+
| APC |
+----------------------------------------------------------------------+
| Copyright (c) 2006-2011 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Daniel Cowgill <dcowgill@communityconnect.com> |
| George Schlossnagle <george@omniti.com> |
| Rasmus Lerdorf <rasmus@php.net> |
| Arun C. Murthy <arunc@yahoo-inc.com> |
| Gopal Vijayaraghavan <gopalv@yahoo-inc.com> |
+----------------------------------------------------------------------+
This software was contributed to PHP by Community Connect Inc. in 2002
and revised in 2005 by Yahoo! Inc. to add support for PHP 5.1.
Future revisions and derivatives of this source code must acknowledge
Community Connect Inc. as the original contributor of this module by
leaving this note intact in the source code.
All other licensing and usage conditions are those of the PHP Group.
*/
/* $Id: apc.c 328941 2012-12-31 18:41:07Z ab $ */
#include "apc.h"
#include "apc_cache.h"
#include "apc_globals.h"
#include "php.h"
#if HAVE_PCRE || HAVE_BUNDLED_PCRE
# include "ext/pcre/php_pcre.h"
# include "zend_smart_str.h"
#endif
#define NELEMS(a) (sizeof(a)/sizeof((a)[0]))
/* {{{ memory allocation wrappers */
PHP_APCU_API void* apc_emalloc(size_t n)
{
void* p = malloc(n);
if (p == NULL) {
apc_error("apc_emalloc: malloc failed to allocate %u bytes:", n);
return NULL;
}
return p;
}
PHP_APCU_API void* apc_erealloc(void* p, size_t n)
{
void *new;
new = realloc(p, n);
if (new == NULL) {
apc_error("apc_erealloc: realloc failed to allocate %u bytes:", n);
return NULL;
}
return new;
}
PHP_APCU_API void apc_efree(void* p)
{
if (p == NULL) {
apc_error("apc_efree: attempt to free null pointer");
return;
}
free(p);
}
PHP_APCU_API void* apc_php_malloc(size_t n)
{
return emalloc(n);
}
PHP_APCU_API void apc_php_free(void* p)
{
efree(p);
}
PHP_APCU_API char* APC_ALLOC apc_estrdup(const char* s)
{
int len;
char* dup;
if (s == NULL) {
return NULL;
}
len = strlen(s);
dup = (char*) malloc(len+1);
if (dup == NULL) {
apc_error("apc_estrdup: malloc failed to allocate %u bytes:", len+1);
return NULL;
}
memcpy(dup, s, len);
dup[len] = '\0';
return dup;
}
PHP_APCU_API void* APC_ALLOC apc_xstrdup(const char* s, apc_malloc_t f)
{
return s != NULL ? apc_xmemcpy(s, strlen(s)+1, f) : NULL;
}
PHP_APCU_API void* APC_ALLOC apc_xmemcpy(const void* p, size_t n, apc_malloc_t f)
{
void* q;
if (p != NULL && (q = f(n)) != NULL) {
memcpy(q, p, n);
return q;
}
return NULL;
}
/* }}} */
/* {{{ console display functions */
#define APC_PRINT_FUNCTION(name, verbosity) \
void apc_##name(const char *format, ...) \
{ \
va_list args; \
\
va_start(args, format); \
php_verror(NULL, "", verbosity, format, args); \
va_end(args); \
}
APC_PRINT_FUNCTION(error, E_ERROR)
APC_PRINT_FUNCTION(warning, E_WARNING)
APC_PRINT_FUNCTION(notice, E_NOTICE)
#ifdef APC_DEBUG
APC_PRINT_FUNCTION(debug, E_NOTICE)
#else
void apc_debug(const char *format, ...) {}
#endif
/* }}} */
/* {{{ string and text manipulation */
char* apc_append(const char* s, const char* t)
{
int slen;
int tlen;
char* p;
slen = strlen(s);
tlen = strlen(t);
p = (char*) apc_emalloc((slen + tlen + 1) * sizeof(char));
memcpy(p, s, slen);
memcpy(p + slen, t, tlen + 1);
return p;
}
char* apc_substr(const char* s, int start, int length)
{
char* substr;
int src_len = strlen(s);
/* bring start into range */
if (start < 0) {
start = 0;
}
else if (start >= src_len) {
start = src_len - 1;
}
/* bring length into range */
if (length < 0 || src_len - start < length) {
length = src_len - start;
}
/* create the substring */
substr = apc_xmemcpy(s + start, length + 1, apc_emalloc);
substr[length] = '\0';
return substr;
}
char** apc_tokenize(const char* s, char delim)
{
char** tokens; /* array of tokens, NULL terminated */
int size; /* size of tokens array */
int n; /* index of next token in tokens array */
int cur; /* current position in input string */
int end; /* final legal position in input string */
int next; /* position of next delimiter in input */
if (!s) {
return NULL;
}
size = 2;
n = 0;
cur = 0;
end = strlen(s) - 1;
tokens = (char**) apc_emalloc(size * sizeof(char*));
tokens[n] = NULL;
while (cur <= end) {
/* search for the next delimiter */
char* p = strchr(s + cur, delim);
next = p ? p-s : end+1;
/* resize token array if necessary */
if (n == size-1) {
size *= 2;
tokens = (char**) apc_erealloc(tokens, size * sizeof(char*));
}
/* save the current token */
tokens[n] = apc_substr(s, cur, next-cur);
tokens[++n] = NULL;
cur = next + 1;
}
return tokens;
}
/* }}} */
/* {{{ crc32 implementation */
/* this table was generated by crc32gen() */
static unsigned int crc32tab[] = {
/* 0 */ 0x00000000, 0x3b83984b, 0x77073096, 0x4c84a8dd,
/* 4 */ 0xee0e612c, 0xd58df967, 0x990951ba, 0xa28ac9f1,
/* 8 */ 0x076dc419, 0x3cee5c52, 0x706af48f, 0x4be96cc4,
/* 12 */ 0xe963a535, 0xd2e03d7e, 0x9e6495a3, 0xa5e70de8,
/* 16 */ 0x0edb8832, 0x35581079, 0x79dcb8a4, 0x425f20ef,
/* 20 */ 0xe0d5e91e, 0xdb567155, 0x97d2d988, 0xac5141c3,
/* 24 */ 0x09b64c2b, 0x3235d460, 0x7eb17cbd, 0x4532e4f6,
/* 28 */ 0xe7b82d07, 0xdc3bb54c, 0x90bf1d91, 0xab3c85da,
/* 32 */ 0x1db71064, 0x2634882f, 0x6ab020f2, 0x5133b8b9,
/* 36 */ 0xf3b97148, 0xc83ae903, 0x84be41de, 0xbf3dd995,
/* 40 */ 0x1adad47d, 0x21594c36, 0x6ddde4eb, 0x565e7ca0,
/* 44 */ 0xf4d4b551, 0xcf572d1a, 0x83d385c7, 0xb8501d8c,
/* 48 */ 0x136c9856, 0x28ef001d, 0x646ba8c0, 0x5fe8308b,
/* 52 */ 0xfd62f97a, 0xc6e16131, 0x8a65c9ec, 0xb1e651a7,
/* 56 */ 0x14015c4f, 0x2f82c404, 0x63066cd9, 0x5885f492,
/* 60 */ 0xfa0f3d63, 0xc18ca528, 0x8d080df5, 0xb68b95be,
/* 64 */ 0x3b6e20c8, 0x00edb883, 0x4c69105e, 0x77ea8815,
/* 68 */ 0xd56041e4, 0xeee3d9af, 0xa2677172, 0x99e4e939,
/* 72 */ 0x3c03e4d1, 0x07807c9a, 0x4b04d447, 0x70874c0c,
/* 76 */ 0xd20d85fd, 0xe98e1db6, 0xa50ab56b, 0x9e892d20,
/* 80 */ 0x35b5a8fa, 0x0e3630b1, 0x42b2986c, 0x79310027,
/* 84 */ 0xdbbbc9d6, 0xe038519d, 0xacbcf940, 0x973f610b,
/* 88 */ 0x32d86ce3, 0x095bf4a8, 0x45df5c75, 0x7e5cc43e,
/* 92 */ 0xdcd60dcf, 0xe7559584, 0xabd13d59, 0x9052a512,
/* 96 */ 0x26d930ac, 0x1d5aa8e7, 0x51de003a, 0x6a5d9871,
/* 100 */ 0xc8d75180, 0xf354c9cb, 0xbfd06116, 0x8453f95d,
/* 104 */ 0x21b4f4b5, 0x1a376cfe, 0x56b3c423, 0x6d305c68,
/* 108 */ 0xcfba9599, 0xf4390dd2, 0xb8bda50f, 0x833e3d44,
/* 112 */ 0x2802b89e, 0x138120d5, 0x5f058808, 0x64861043,
/* 116 */ 0xc60cd9b2, 0xfd8f41f9, 0xb10be924, 0x8a88716f,
/* 120 */ 0x2f6f7c87, 0x14ece4cc, 0x58684c11, 0x63ebd45a,
/* 124 */ 0xc1611dab, 0xfae285e0, 0xb6662d3d, 0x8de5b576,
/* 128 */ 0x76dc4190, 0x4d5fd9db, 0x01db7106, 0x3a58e94d,
/* 132 */ 0x98d220bc, 0xa351b8f7, 0xefd5102a, 0xd4568861,
/* 136 */ 0x71b18589, 0x4a321dc2, 0x06b6b51f, 0x3d352d54,
/* 140 */ 0x9fbfe4a5, 0xa43c7cee, 0xe8b8d433, 0xd33b4c78,
/* 144 */ 0x7807c9a2, 0x438451e9, 0x0f00f934, 0x3483617f,
/* 148 */ 0x9609a88e, 0xad8a30c5, 0xe10e9818, 0xda8d0053,
/* 152 */ 0x7f6a0dbb, 0x44e995f0, 0x086d3d2d, 0x33eea566,
/* 156 */ 0x91646c97, 0xaae7f4dc, 0xe6635c01, 0xdde0c44a,
/* 160 */ 0x6b6b51f4, 0x50e8c9bf, 0x1c6c6162, 0x27eff929,
/* 164 */ 0x856530d8, 0xbee6a893, 0xf262004e, 0xc9e19805,
/* 168 */ 0x6c0695ed, 0x57850da6, 0x1b01a57b, 0x20823d30,
/* 172 */ 0x8208f4c1, 0xb98b6c8a, 0xf50fc457, 0xce8c5c1c,
/* 176 */ 0x65b0d9c6, 0x5e33418d, 0x12b7e950, 0x2934711b,
/* 180 */ 0x8bbeb8ea, 0xb03d20a1, 0xfcb9887c, 0xc73a1037,
/* 184 */ 0x62dd1ddf, 0x595e8594, 0x15da2d49, 0x2e59b502,
/* 188 */ 0x8cd37cf3, 0xb750e4b8, 0xfbd44c65, 0xc057d42e,
/* 192 */ 0x4db26158, 0x7631f913, 0x3ab551ce, 0x0136c985,
/* 196 */ 0xa3bc0074, 0x983f983f, 0xd4bb30e2, 0xef38a8a9,
/* 200 */ 0x4adfa541, 0x715c3d0a, 0x3dd895d7, 0x065b0d9c,
/* 204 */ 0xa4d1c46d, 0x9f525c26, 0xd3d6f4fb, 0xe8556cb0,
/* 208 */ 0x4369e96a, 0x78ea7121, 0x346ed9fc, 0x0fed41b7,
/* 212 */ 0xad678846, 0x96e4100d, 0xda60b8d0, 0xe1e3209b,
/* 216 */ 0x44042d73, 0x7f87b538, 0x33031de5, 0x088085ae,
/* 220 */ 0xaa0a4c5f, 0x9189d414, 0xdd0d7cc9, 0xe68ee482,
/* 224 */ 0x5005713c, 0x6b86e977, 0x270241aa, 0x1c81d9e1,
/* 228 */ 0xbe0b1010, 0x8588885b, 0xc90c2086, 0xf28fb8cd,
/* 232 */ 0x5768b525, 0x6ceb2d6e, 0x206f85b3, 0x1bec1df8,
/* 236 */ 0xb966d409, 0x82e54c42, 0xce61e49f, 0xf5e27cd4,
/* 240 */ 0x5edef90e, 0x655d6145, 0x29d9c998, 0x125a51d3,
/* 244 */ 0xb0d09822, 0x8b530069, 0xc7d7a8b4, 0xfc5430ff,
/* 248 */ 0x59b33d17, 0x6230a55c, 0x2eb40d81, 0x153795ca,
/* 252 */ 0xb7bd5c3b, 0x8c3ec470, 0xc0ba6cad, 0xfb39f4e6,
};
unsigned int apc_crc32(const unsigned char* buf, unsigned int len)
{
unsigned int i;
int k;
unsigned int crc;
/* preconditioning */
crc = 0xFFFFFFFF;
for (i = 0; i < len; i++) {
k = (crc ^ buf[i]) & 0x000000FF;
assert(k >= 0 && k <= 255);
crc = ((crc >> 8) & 0x00FFFFFF) ^ crc32tab[k];
}
/* postconditioning */
return ~crc;
} /* }}} */
/* {{{ apc_flip_hash */
HashTable* apc_flip_hash(HashTable *hash) {
zval data, *entry;
HashTable *new_hash;
HashPosition pos;
if(hash == NULL) return hash;
ZVAL_LONG(&data, 1);
ALLOC_HASHTABLE(new_hash);
zend_hash_init(new_hash, zend_hash_num_elements(hash), NULL, ZVAL_PTR_DTOR, 0);
zend_hash_internal_pointer_reset_ex(hash, &pos);
while ((entry = zend_hash_get_current_data_ex(hash, &pos)) != NULL) {
if(Z_TYPE_P(entry) == IS_STRING) {
zend_hash_update(new_hash, Z_STR_P(entry), &data);
} else {
zend_hash_index_update(new_hash, Z_LVAL_P(entry), &data);
}
Z_TRY_ADDREF(data);
zend_hash_move_forward_ex(hash, &pos);
}
zval_ptr_dtor(&data);
return new_hash;
}
/* }}} */
/*
* Serializer API
*/
#define APC_MAX_SERIALIZERS 16
/* pointer to the list of serializers */
static apc_serializer_t apc_serializers[APC_MAX_SERIALIZERS] = {{0,}};
/* }}} */
/* {{{ apc_register_serializer */
PHP_APCU_API int _apc_register_serializer(const char* name,
apc_serialize_t serialize,
apc_unserialize_t unserialize,
void *config) {
int i;
apc_serializer_t *serializer;
for(i = 0; i < APC_MAX_SERIALIZERS; i++) {
serializer = &apc_serializers[i];
if(!serializer->name) {
/* empty entry */
serializer->name = name;
serializer->serialize = serialize;
serializer->unserialize = unserialize;
serializer->config = config;
if (i < APC_MAX_SERIALIZERS - 1) {
apc_serializers[i+1].name = NULL;
}
return 1;
}
}
return 0;
} /* }}} */
/* {{{ apc_get_serializers */
PHP_APCU_API apc_serializer_t* apc_get_serializers() {
return &(apc_serializers[0]);
} /* }}} */
/* {{{ apc_find_serializer */
PHP_APCU_API apc_serializer_t* apc_find_serializer(const char* name) {
int i;
apc_serializer_t *serializer;
for(i = 0; i < APC_MAX_SERIALIZERS; i++) {
serializer = &apc_serializers[i];
if(serializer->name && (strcmp(serializer->name, name) == 0)) {
return serializer;
}
}
return NULL;
} /* }}} */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim>600: expandtab sw=4 ts=4 sts=4 fdm=marker
* vim<600: expandtab sw=4 ts=4 sts=4
*/
|