-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapc.c
724 lines (616 loc) · 23.2 KB
/
apc.c
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
/*
+----------------------------------------------------------------------+
| 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 |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Daniel Cowgill <[email protected]> |
| George Schlossnagle <[email protected]> |
| Rasmus Lerdorf <[email protected]> |
| Arun C. Murthy <[email protected]> |
| Gopal Vijayaraghavan <[email protected]> |
+----------------------------------------------------------------------+
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 327370 2012-08-29 21:45:33Z ab $ */
#include "apc.h"
#include "apc_zend.h"
#include "apc_cache.h"
#include "apc_globals.h"
#include "php.h"
#if HAVE_PCRE || HAVE_BUNDLED_PCRE
/* Deal with problem present until php-5.2.2 where php_pcre.h was not installed correctly */
# if !HAVE_BUNDLED_PCRE && PHP_MAJOR_VERSION == 5 && (PHP_MINOR_VERSION < 2 || (PHP_MINOR_VERSION == 2 && PHP_RELEASE_VERSION < 2))
# include "apc_php_pcre.h"
# else
# include "ext/pcre/php_pcre.h"
# endif
# include "ext/standard/php_smart_str.h"
#endif
#define NELEMS(a) (sizeof(a)/sizeof((a)[0]))
/* {{{ memory allocation wrappers */
void* apc_emalloc(size_t n TSRMLS_DC)
{
void* p = malloc(n);
if (p == NULL) {
apc_error("apc_emalloc: malloc failed to allocate %u bytes:" TSRMLS_CC, n);
return NULL;
}
return p;
}
void* apc_erealloc(void* p, size_t n TSRMLS_DC)
{
void *new;
new = realloc(p, n);
if (new == NULL) {
apc_error("apc_erealloc: realloc failed to allocate %u bytes:" TSRMLS_CC, n);
return NULL;
}
return new;
}
void apc_efree(void* p TSRMLS_DC)
{
if (p == NULL) {
apc_error("apc_efree: attempt to free null pointer" TSRMLS_CC);
return;
}
free(p);
}
char* APC_ALLOC apc_estrdup(const char* s TSRMLS_DC)
{
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:" TSRMLS_CC, len+1);
return NULL;
}
memcpy(dup, s, len);
dup[len] = '\0';
return dup;
}
void* APC_ALLOC apc_xstrdup(const char* s, apc_malloc_t f TSRMLS_DC)
{
return s != NULL ? apc_xmemcpy(s, strlen(s)+1, f TSRMLS_CC) : NULL;
}
void* APC_ALLOC apc_xmemcpy(const void* p, size_t n, apc_malloc_t f TSRMLS_DC)
{
void* q;
if (p != NULL && (q = f(n TSRMLS_CC)) != NULL) {
memcpy(q, p, n);
return q;
}
return NULL;
}
/* }}} */
/* {{{ console display functions */
#ifdef ZTS
# define APC_PRINT_FUNCTION_PARAMETER TSRMLS_C
#else
# define APC_PRINT_FUNCTION_PARAMETER format
#endif
#define APC_PRINT_FUNCTION(name, verbosity) \
void apc_##name(const char *format TSRMLS_DC, ...) \
{ \
va_list args; \
\
va_start(args, APC_PRINT_FUNCTION_PARAMETER); \
php_verror(NULL, "", verbosity, format, args TSRMLS_CC); \
va_end(args); \
}
APC_PRINT_FUNCTION(error, E_ERROR)
APC_PRINT_FUNCTION(warning, E_WARNING)
APC_PRINT_FUNCTION(notice, E_NOTICE)
#ifdef __DEBUG_APC__
APC_PRINT_FUNCTION(debug, E_NOTICE)
#else
void apc_debug(const char *format TSRMLS_DC, ...) {}
#endif
/* }}} */
/* {{{ string and text manipulation */
char* apc_append(const char* s, const char* t TSRMLS_DC)
{
int slen;
int tlen;
char* p;
slen = strlen(s);
tlen = strlen(t);
p = (char*) apc_emalloc((slen + tlen + 1) * sizeof(char) TSRMLS_CC);
memcpy(p, s, slen);
memcpy(p + slen, t, tlen + 1);
return p;
}
char* apc_substr(const char* s, int start, int length TSRMLS_DC)
{
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 TSRMLS_CC);
substr[length] = '\0';
return substr;
}
char** apc_tokenize(const char* s, char delim TSRMLS_DC)
{
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*) TSRMLS_CC);
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*) TSRMLS_CC);
}
/* save the current token */
tokens[n] = apc_substr(s, cur, next-cur TSRMLS_CC);
tokens[++n] = NULL;
cur = next + 1;
}
return tokens;
}
/* }}} */
/* {{{ apc_win32_restat */
#ifdef PHP_WIN32
static int apc_restat(apc_fileinfo_t *fileinfo TSRMLS_DC)
{
HANDLE hFile;
BY_HANDLE_FILE_INFORMATION hInfo;
hFile = CreateFile(fileinfo->fullpath, GENERIC_WRITE, FILE_SHARE_WRITE|FILE_SHARE_READ, NULL, OPEN_ALWAYS, FILE_FLAG_BACKUP_SEMANTICS, NULL);
if (!hFile) {
apc_debug("Cannot create a file HANDLE for %s\n" TSRMLS_CC, fileinfo->fullpath);
return -1;
}
if (!GetFileInformationByHandle(hFile, &hInfo)) {
apc_debug("Cannot get file information from handle\n" TSRMLS_CC);
CloseHandle(hFile);
return -1;
}
CloseHandle(hFile);
fileinfo->st_buf.sb.st_dev = hInfo.dwVolumeSerialNumber;
fileinfo->st_buf.sb.st_ino = (((apc_ino_t)(hInfo.nFileIndexHigh) << 32) | (apc_ino_t) hInfo.nFileIndexLow);
return 0;
}
#else
static int apc_restat(apc_fileinfo_t *fileinfo TSRMLS_DC)
{
return 0;
}
#endif
/* }}} */
/* {{{ apc_search_paths */
/* similar to php_stream_stat_path */
#define APC_URL_STAT(wrapper, filename, pstatbuf) \
((wrapper)->wops->url_stat((wrapper), (filename), PHP_STREAM_URL_STAT_QUIET, (pstatbuf), NULL TSRMLS_CC))
/* copy out to path_buf if path_for_open isn't the same as filename */
#define COPY_IF_CHANGED(p) \
(char*) (((p) == filename) ? filename : \
(strlcpy((char*)fileinfo->path_buf, (p), sizeof(fileinfo->path_buf))) \
? (fileinfo->path_buf) : NULL)
/* len checks can be skipped here because filename is NUL terminated */
#define IS_RELATIVE_PATH(filename, len) \
((filename) && (filename[0] == '.' && \
(IS_SLASH(filename[1]) || \
(filename[1] == '.' && \
IS_SLASH(filename[2])))))
/* {{{ stupid stringifcation */
#if DEFAULT_SLASH == '/'
#define DEFAULT_SLASH_STRING "/"
#elif DEFAULT_SLASH == '\\'
#define DEFAULT_SLASH_STRING "\\"
#else
#error "Unknown value for DEFAULT_SLASH"
#endif
/* }}} */
#define IS_COMMON_WRAPPER(fname, len) \
(((len) >= 5 && strncmp((fname), "file:", 5) == 0) || \
((len) >= 5 && strncmp((fname), "http:", 5) == 0) || \
((len) >= 4 && strncmp((fname), "ftp:", 4) == 0) || \
((len) >= 4 && strncmp((fname), "php:", 4) == 0) || \
((len) >= 5 && strncmp((fname), "zlib:", 5) == 0) || \
((len) >= 5 && strncmp((fname), "data:", 5) == 0) || \
((len) >= 5 && strncmp((fname), "glob:", 5) == 0) || \
((len) >= 5 && strncmp((fname), "phar:", 5) == 0) || \
((len) >= 5 && strncmp((fname), "ssh2:", 5) == 0) || \
((len) >= 4 && strncmp((fname), "rar:", 4) == 0) || \
((len) >= 4 && strncmp((fname), "ogg:", 4) == 0) || \
((len) >= 7 && strncmp((fname), "expect:", 7) == 0))
int apc_search_paths(const char* filename, const char* path, apc_fileinfo_t* fileinfo TSRMLS_DC)
{
char** paths = NULL;
char *exec_fname;
int exec_fname_length;
int found = 0;
int i;
php_stream_wrapper *wrapper = NULL;
char *path_for_open = NULL;
int is_user_wrapper = 0;
int filename_len = strlen(filename);
assert(filename && fileinfo);
/* Prevent tries to stat userspace stream wrappers when reading opcodes
right after the file was compiled. The core stream wrappers should be
already loaded, so looking for them should be ok (not sure about phar) */
if (!IS_ABSOLUTE_PATH(filename, filename_len) &&
!IS_RELATIVE_PATH(filename, filename_len) &&
!IS_COMMON_WRAPPER(filename, filename_len)) {
char *p = (char *)filename;
int n = 0;
/* If we're here, it's most likely a userspace stream wrapper. Extract
it's protocol and check if it's already been registered. */
for (; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++) {
n++;
}
if ((*p == ':') && (n > 1) && (!strncmp("//", p+1, 2) || (n == 4 && !memcmp("data:", path, 5)))) {
char *tmp = estrndup(filename, n);
if (!zend_hash_exists(php_stream_get_url_stream_wrappers_hash(), tmp, n + 1)) {
return -1;
}
efree(tmp);
}
}
wrapper = php_stream_locate_url_wrapper(filename, &path_for_open, 0 TSRMLS_CC);
if(!wrapper || !wrapper->wops) {
return -1;
}
is_user_wrapper = (NULL != wrapper->wops->label) && (strncmp(wrapper->wops->label, "user-space", 11) == 0);
if (!is_user_wrapper && !wrapper->wops->url_stat) {
return -1;
}
if(wrapper != &php_plain_files_wrapper) {
if(!is_user_wrapper && APC_URL_STAT(wrapper, path_for_open, &fileinfo->st_buf) == 0) {
fileinfo->fullpath = COPY_IF_CHANGED(path_for_open);
return apc_restat(fileinfo TSRMLS_CC);
}
return -1; /* cannot stat */
}
if (IS_ABSOLUTE_PATH(path_for_open, strlen(path_for_open)) &&
APC_URL_STAT(wrapper, path_for_open, &fileinfo->st_buf) == 0) {
fileinfo->fullpath = COPY_IF_CHANGED(path_for_open);
return apc_restat(fileinfo TSRMLS_CC);
}
if (!IS_RELATIVE_PATH(path_for_open, strlen(path_for_open))) {
paths = apc_tokenize(path, DEFAULT_DIR_SEPARATOR TSRMLS_CC);
if (!paths)
return -1;
/* for each directory in paths, look for filename inside */
for (i = 0; paths[i]; i++) {
snprintf(fileinfo->path_buf, sizeof(fileinfo->path_buf), "%s%c%s", paths[i], DEFAULT_SLASH, path_for_open);
if (APC_URL_STAT(wrapper, fileinfo->path_buf, &fileinfo->st_buf) == 0) {
fileinfo->fullpath = (char*) fileinfo->path_buf;
found = 1;
break;
}
}
/* in cli mode PHP explicitly checks the cwd, so we should as well */
if(APCG(enable_cli) && !strcmp(sapi_module.name, "cli")) {
snprintf(fileinfo->path_buf, sizeof(fileinfo->path_buf), ".%c%s", DEFAULT_SLASH, path_for_open);
if (APC_URL_STAT(wrapper, fileinfo->path_buf, &fileinfo->st_buf) == 0) {
fileinfo->fullpath = (char*) fileinfo->path_buf;
found = 1;
}
}
} else {
/* read cwd and try to fake up fullpath */
fileinfo->path_buf[0] = '\0';
if(VCWD_GETCWD(fileinfo->path_buf, sizeof(fileinfo->path_buf))) {
strlcat(fileinfo->path_buf, DEFAULT_SLASH_STRING, sizeof(fileinfo->path_buf));
strlcat(fileinfo->path_buf, path_for_open, sizeof(fileinfo->path_buf));
if (APC_URL_STAT(wrapper, fileinfo->path_buf, &fileinfo->st_buf) == 0) {
fileinfo->fullpath = (char*) fileinfo->path_buf;
return apc_restat(fileinfo TSRMLS_CC);
}
}
}
/* check in path of the calling scripts' current working directory */
/* modified from main/streams/plain_wrapper.c */
if(!found && zend_is_executing(TSRMLS_C)) {
exec_fname = zend_get_executed_filename(TSRMLS_C);
exec_fname_length = strlen(exec_fname);
while((--exec_fname_length >= 0) && !IS_SLASH(exec_fname[exec_fname_length]));
if((exec_fname && exec_fname[0] != '[') && exec_fname_length > 0) {
/* not: [no active file] or no path */
memcpy(fileinfo->path_buf, exec_fname, exec_fname_length);
fileinfo->path_buf[exec_fname_length] = DEFAULT_SLASH;
strlcpy(fileinfo->path_buf +exec_fname_length +1, path_for_open,sizeof(fileinfo->path_buf)-exec_fname_length-1);
/* apc_warning("filename: %s, exec_fname: %s, fileinfo->path_buf: %s" TSRMLS_CC, path_for_open, exec_fname, fileinfo->path_buf); */
if (APC_URL_STAT(wrapper, fileinfo->path_buf, &fileinfo->st_buf) == 0) {
fileinfo->fullpath = (char*) fileinfo->path_buf;
found = 1;
}
}
}
if(paths) {
/* free the value returned by apc_tokenize */
for (i = 0; paths[i]; i++) {
apc_efree(paths[i] TSRMLS_CC);
}
apc_efree(paths TSRMLS_CC);
}
return found ? apc_restat(fileinfo TSRMLS_CC) : -1;
}
/* }}} */
/* {{{ regular expression wrapper functions */
#if (HAVE_PCRE || HAVE_BUNDLED_PCRE)
typedef struct {
pcre *preg;
pcre *nreg;
} apc_regex;
#define APC_ADD_PATTERN(match, pat) do {\
if(match.len > 1) {\
smart_str_appendc(&match, '|');\
}\
smart_str_appendc(&match, '(');\
while(*pat) {\
if(*pat == '/') smart_str_appendc(&match, '\\');\
\
smart_str_appendc(&match, *(pat++));\
}\
smart_str_appendc(&match, ')');\
} while(0)
#define APC_COMPILE_PATTERN(re, match) do {\
if(match.len > 2) { /* more than just "//" */\
if (((re) = pcre_get_compiled_regex(match.c, NULL, NULL TSRMLS_CC)) == NULL) {\
apc_warning("apc_regex_compile_array: invalid expression '%s'" TSRMLS_CC, match.c); \
smart_str_free(&match);\
return NULL;\
}\
} else { \
(re) = NULL;\
}\
} while(0)
void* apc_regex_compile_array(char* patterns[] TSRMLS_DC)
{
apc_regex* regs;
int npat;
smart_str pmatch = {0,};
smart_str nmatch = {0,};
char* pattern;
if (!patterns)
return NULL;
regs = (apc_regex*) apc_emalloc(sizeof(apc_regex) TSRMLS_CC);
smart_str_appendc(&pmatch, '/');
smart_str_appendc(&nmatch, '/');
for (npat = 0; patterns[npat] != NULL; npat++) {
pattern = patterns[npat];
if(pattern[0] == '+') {
pattern += sizeof(char);
APC_ADD_PATTERN(pmatch, pattern);
} else {
if(pattern[0] == '-') pattern += sizeof(char);
APC_ADD_PATTERN(nmatch, pattern);
}
}
smart_str_appendc(&pmatch, '/');
smart_str_appendc(&nmatch, '/');
smart_str_0(&nmatch);
smart_str_0(&pmatch);
APC_COMPILE_PATTERN(regs->preg, pmatch);
APC_COMPILE_PATTERN(regs->nreg, nmatch);
smart_str_free(&pmatch);
smart_str_free(&nmatch);
return (void*) regs;
}
void apc_regex_destroy_array(void* p TSRMLS_DC)
{
if (p != NULL) {
apc_regex* regs = (apc_regex*) p;
/* XXX add more tests and activate when it works properly on all SAPIs*/
#if 0
if (regs->preg) {
pefree(regs->preg, 1);
}
if (regs->nreg) {
pefree(regs->nreg, 1);
}
#endif
apc_efree(regs TSRMLS_CC);
}
}
#define APC_MATCH_PATTERN(re, input, output) do {\
if (re && pcre_exec(re, NULL, (input), strlen(input), 0, 0, NULL, 0) >= 0) {\
return (output);\
}\
} while(0)
int apc_regex_match_array(void* p, const char* input)
{
apc_regex* regs;
if (!p)
return 0;
regs = (apc_regex*) p;
APC_MATCH_PATTERN(regs->preg, input, APC_POSITIVE_MATCH);
APC_MATCH_PATTERN(regs->nreg, input, APC_NEGATIVE_MATCH);
return 0;
}
#else /* no pcre */
void* apc_regex_compile_array(char* patterns[] TSRMLS_DC)
{
if(patterns && patterns[0] != NULL) {
apc_warning("pcre missing, disabling filters" TSRMLS_CC);
}
return NULL;
}
void apc_regex_destroy_array(void* p)
{
/* nothing */
}
int apc_regex_match_array(void* p, const char* input)
{
return 0;
}
#endif
/* }}} */
/* {{{ 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;
}
/* crc32gen: generate the nth (0..255) crc32 table value */
#if 0
static unsigned long crc32gen(int n)
{
int i;
unsigned long crc;
crc = n;
for (i = 8; i >= 0; i--) {
if (crc & 1) {
crc = (crc >> 1) ^ 0xEDB88320;
}
else {
crc >>= 1;
}
}
return crc;
}
#endif
/* }}} */
/* {{{ apc_flip_hash() */
HashTable* apc_flip_hash(HashTable *hash) {
zval **entry, *data;
HashTable *new_hash;
HashPosition pos;
if(hash == NULL) return hash;
MAKE_STD_ZVAL(data);
ZVAL_LONG(data, 1);
new_hash = emalloc(sizeof(HashTable));
zend_hash_init(new_hash, hash->nTableSize, NULL, ZVAL_PTR_DTOR, 0);
zend_hash_internal_pointer_reset_ex(hash, &pos);
while (zend_hash_get_current_data_ex(hash, (void **)&entry, &pos) == SUCCESS) {
if(Z_TYPE_PP(entry) == IS_STRING) {
zend_hash_update(new_hash, Z_STRVAL_PP(entry), Z_STRLEN_PP(entry) +1, &data, sizeof(data), NULL);
} else {
zend_hash_index_update(new_hash, Z_LVAL_PP(entry), &data, sizeof(data), NULL);
}
Z_ADDREF_P(data);
zend_hash_move_forward_ex(hash, &pos);
}
zval_ptr_dtor(&data);
return new_hash;
}
/* }}} */
/*
* 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
*/