php-src/ext/standard/var_unserializer.c

1234 lines
27 KiB
C
Raw Normal View History

/* Generated by re2c 0.13.5 */
2005-12-01 09:34:20 +00:00
#line 1 "ext/standard/var_unserializer.re"
/*
2003-04-17 02:54:23 +00:00
+----------------------------------------------------------------------+
2004-01-08 08:18:22 +00:00
| PHP Version 5 |
2003-04-17 02:54:23 +00:00
+----------------------------------------------------------------------+
| Copyright (c) 1997-2013 The PHP Group |
2003-04-17 02:54:23 +00:00
+----------------------------------------------------------------------+
2006-01-01 12:51:34 +00:00
| This source file is subject to version 3.01 of the PHP license, |
2003-04-17 02:54:23 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
2006-01-01 12:51:34 +00:00
| http://www.php.net/license/3_01.txt |
2003-04-17 02:54:23 +00:00
| 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. |
+----------------------------------------------------------------------+
| Author: Sascha Schumann <sascha@schumann.cx> |
+----------------------------------------------------------------------+
*/
/* $Id$ */
#include "php.h"
#include "ext/standard/php_var.h"
#include "php_incomplete_class.h"
/* {{{ reference-handling for unserializer: var_* */
#define VAR_ENTRIES_MAX 1024
#define VAR_ENTRIES_DBG 0
typedef struct {
2014-03-17 13:23:27 +00:00
zval *data[VAR_ENTRIES_MAX];
long used_slots;
void *next;
} var_entries;
2014-03-17 13:23:27 +00:00
static inline void var_push(php_unserialize_data_t *var_hashx, zval *rval)
{
var_entries *var_hash = (*var_hashx)->last;
#if VAR_ENTRIES_DBG
fprintf(stderr, "var_push(%ld): %d\n", var_hash?var_hash->used_slots:-1L, Z_TYPE_PP(rval));
#endif
if (!var_hash || var_hash->used_slots == VAR_ENTRIES_MAX) {
var_hash = emalloc(sizeof(var_entries));
var_hash->used_slots = 0;
var_hash->next = 0;
if (!(*var_hashx)->first) {
(*var_hashx)->first = var_hash;
} else {
((var_entries *) (*var_hashx)->last)->next = var_hash;
}
(*var_hashx)->last = var_hash;
}
2014-03-17 13:23:27 +00:00
var_hash->data[var_hash->used_slots++] = rval;
}
PHPAPI void var_push_dtor(php_unserialize_data_t *var_hashx, zval *rval)
2005-01-15 18:18:08 +00:00
{
var_entries *var_hash = (*var_hashx)->last_dtor;
#if VAR_ENTRIES_DBG
fprintf(stderr, "var_push_dtor(%ld): %d\n", var_hash?var_hash->used_slots:-1L, Z_TYPE_PP(rval));
#endif
2005-01-15 18:18:08 +00:00
if (!var_hash || var_hash->used_slots == VAR_ENTRIES_MAX) {
2005-01-15 18:18:08 +00:00
var_hash = emalloc(sizeof(var_entries));
var_hash->used_slots = 0;
var_hash->next = 0;
if (!(*var_hashx)->first_dtor) {
(*var_hashx)->first_dtor = var_hash;
} else {
((var_entries *) (*var_hashx)->last_dtor)->next = var_hash;
}
(*var_hashx)->last_dtor = var_hash;
2005-01-15 18:18:08 +00:00
}
2014-03-17 13:23:27 +00:00
Z_ADDREF_P(rval);
var_hash->data[var_hash->used_slots++] = rval;
2005-01-15 18:18:08 +00:00
}
PHPAPI void var_push_dtor_no_addref(php_unserialize_data_t *var_hashx, zval *rval)
{
var_entries *var_hash = (*var_hashx)->last_dtor;
#if VAR_ENTRIES_DBG
fprintf(stderr, "var_push_dtor_no_addref(%ld): %d (%d)\n", var_hash?var_hash->used_slots:-1L, Z_TYPE_PP(rval), Z_REFCOUNT_PP(rval));
#endif
if (!var_hash || var_hash->used_slots == VAR_ENTRIES_MAX) {
var_hash = emalloc(sizeof(var_entries));
var_hash->used_slots = 0;
var_hash->next = 0;
if (!(*var_hashx)->first_dtor) {
(*var_hashx)->first_dtor = var_hash;
} else {
((var_entries *) (*var_hashx)->last_dtor)->next = var_hash;
}
(*var_hashx)->last_dtor = var_hash;
}
2014-03-17 13:23:27 +00:00
var_hash->data[var_hash->used_slots++] = rval;
}
static int var_access(php_unserialize_data_t *var_hashx, long id, zval **store)
{
var_entries *var_hash = (*var_hashx)->first;
#if VAR_ENTRIES_DBG
fprintf(stderr, "var_access(%ld): %ld\n", var_hash?var_hash->used_slots:-1L, id);
#endif
while (id >= VAR_ENTRIES_MAX && var_hash && var_hash->used_slots == VAR_ENTRIES_MAX) {
var_hash = var_hash->next;
id -= VAR_ENTRIES_MAX;
}
if (!var_hash) return !SUCCESS;
2004-12-01 22:42:00 +00:00
if (id < 0 || id >= var_hash->used_slots) return !SUCCESS;
2014-03-17 13:23:27 +00:00
*store = var_hash->data[id];
return SUCCESS;
}
PHPAPI void var_destroy(php_unserialize_data_t *var_hashx)
{
void *next;
long i;
var_entries *var_hash = (*var_hashx)->first;
#if VAR_ENTRIES_DBG
fprintf(stderr, "var_destroy(%ld)\n", var_hash?var_hash->used_slots:-1L);
#endif
while (var_hash) {
next = var_hash->next;
efree(var_hash);
var_hash = next;
}
var_hash = (*var_hashx)->first_dtor;
2005-01-15 18:18:08 +00:00
while (var_hash) {
for (i = 0; i < var_hash->used_slots; i++) {
2014-03-17 13:23:27 +00:00
zval_ptr_dtor(var_hash->data[i]);
2005-01-15 18:18:08 +00:00
}
next = var_hash->next;
efree(var_hash);
var_hash = next;
}
}
/* }}} */
2007-07-09 14:31:56 +00:00
static char *unserialize_str(const unsigned char **p, size_t *len, size_t maxlen)
{
size_t i, j;
char *str = safe_emalloc(*len, 1, 1);
2007-07-09 14:31:56 +00:00
unsigned char *end = *(unsigned char **)p+maxlen;
2007-08-06 18:33:29 +00:00
if (end < *p) {
efree(str);
return NULL;
}
2007-07-09 14:31:56 +00:00
for (i = 0; i < *len; i++) {
if (*p >= end) {
efree(str);
return NULL;
}
if (**p != '\\') {
str[i] = (char)**p;
} else {
unsigned char ch = 0;
for (j = 0; j < 2; j++) {
(*p)++;
if (**p >= '0' && **p <= '9') {
ch = (ch << 4) + (**p -'0');
} else if (**p >= 'a' && **p <= 'f') {
ch = (ch << 4) + (**p -'a'+10);
} else if (**p >= 'A' && **p <= 'F') {
ch = (ch << 4) + (**p -'A'+10);
} else {
efree(str);
return NULL;
}
}
str[i] = (char)ch;
}
(*p)++;
}
str[i] = 0;
*len = i;
return str;
}
#define YYFILL(n) do { } while (0)
#define YYCTYPE unsigned char
#define YYCURSOR cursor
#define YYLIMIT limit
#define YYMARKER marker
2014-03-17 13:23:27 +00:00
#line 215 "ext/standard/var_unserializer.re"
static inline long parse_iv2(const unsigned char *p, const unsigned char **q)
{
char cursor;
long result = 0;
int neg = 0;
switch (*p) {
case '-':
neg++;
/* fall-through */
case '+':
p++;
}
while (1) {
cursor = (char)*p;
if (cursor >= '0' && cursor <= '9') {
2010-08-06 22:23:39 +00:00
result = result * 10 + (size_t)(cursor - (unsigned char)'0');
} else {
break;
}
p++;
}
if (q) *q = p;
if (neg) return -result;
return result;
}
static inline long parse_iv(const unsigned char *p)
{
return parse_iv2(p, NULL);
}
/* no need to check for length - re2c already did */
static inline size_t parse_uiv(const unsigned char *p)
{
unsigned char cursor;
size_t result = 0;
if (*p == '+') {
p++;
}
while (1) {
cursor = *p;
if (cursor >= '0' && cursor <= '9') {
result = result * 10 + (size_t)(cursor - (unsigned char)'0');
} else {
break;
}
p++;
}
return result;
}
#define UNSERIALIZE_PARAMETER zval *rval, const unsigned char **p, const unsigned char *max, php_unserialize_data_t *var_hash TSRMLS_DC
#define UNSERIALIZE_PASSTHRU rval, p, max, var_hash TSRMLS_CC
static inline int process_nested_data(UNSERIALIZE_PARAMETER, HashTable *ht, long elements, int objprops)
{
while (elements-- > 0) {
2014-02-26 07:51:53 +00:00
zval key, *data, d, *old_data;
2014-03-17 13:23:27 +00:00
if (!php_var_unserialize(&key, p, max, NULL TSRMLS_CC)) {
zval_dtor(&key);
return 0;
}
if (Z_TYPE(key) != IS_LONG && Z_TYPE(key) != IS_STRING) {
zval_dtor(&key);
return 0;
}
2014-03-17 13:23:27 +00:00
data = NULL;
ZVAL_UNDEF(&d);
if (!objprops) {
switch (Z_TYPE(key)) {
case IS_LONG:
if ((old_data = zend_hash_index_find(ht, Z_LVAL(key))) != NULL) {
2005-01-15 18:30:16 +00:00
var_push_dtor(var_hash, old_data);
}
2014-03-17 13:23:27 +00:00
data = zend_hash_index_update(ht, Z_LVAL(key), &d);
break;
case IS_STRING:
if ((old_data = zend_symtable_find(ht, Z_STR(key))) != NULL) {
2005-01-15 18:30:16 +00:00
var_push_dtor(var_hash, old_data);
}
2014-03-17 13:23:27 +00:00
data = zend_symtable_update(ht, Z_STR(key), &d);
break;
}
} else {
/* object properties should include no integers */
convert_to_string(&key);
2014-03-17 13:23:27 +00:00
data = zend_hash_update(ht, Z_STR(key), &d);
}
zval_dtor(&key);
2004-09-12 12:45:01 +00:00
2014-03-17 13:23:27 +00:00
if (!php_var_unserialize(data, p, max, var_hash TSRMLS_CC)) {
return 0;
}
2007-08-06 18:33:29 +00:00
if (elements && *(*p-1) != ';' && *(*p-1) != '}') {
2004-09-12 12:45:01 +00:00
(*p)--;
return 0;
}
}
return 1;
}
static inline int finish_nested_data(UNSERIALIZE_PARAMETER)
{
2007-08-06 18:33:29 +00:00
if (*((*p)++) == '}')
return 1;
#if SOMETHING_NEW_MIGHT_LEAD_TO_CRASH_ENABLE_IF_YOU_ARE_BRAVE
zval_ptr_dtor(rval);
#endif
return 0;
}
static inline int object_custom(UNSERIALIZE_PARAMETER, zend_class_entry *ce)
{
long datalen;
datalen = parse_iv2((*p) + 2, p);
(*p) += 2;
2007-08-06 18:33:29 +00:00
if (datalen < 0 || (*p) + datalen >= max) {
zend_error(E_WARNING, "Insufficient data for unserializing - %ld required, %ld present", datalen, (long)(max - (*p)));
return 0;
}
2005-03-08 06:40:05 +00:00
if (ce->unserialize == NULL) {
zend_error(E_WARNING, "Class %s has no unserializer", ce->name->val);
object_init_ex(rval, ce);
} else if (ce->unserialize(rval, ce, (const unsigned char*)*p, datalen, (zend_unserialize_data *)var_hash TSRMLS_CC) != SUCCESS) {
return 0;
}
(*p) += datalen;
return finish_nested_data(UNSERIALIZE_PASSTHRU);
}
static inline long object_common1(UNSERIALIZE_PARAMETER, zend_class_entry *ce)
{
long elements;
elements = parse_iv2((*p) + 2, p);
(*p) += 2;
object_init_ex(rval, ce);
return elements;
}
#ifdef PHP_WIN32
# pragma optimize("", off)
#endif
static inline int object_common2(UNSERIALIZE_PARAMETER, long elements)
{
zval retval;
zval fname;
if (!process_nested_data(UNSERIALIZE_PASSTHRU, Z_OBJPROP_P(rval), elements, 1)) {
return 0;
}
2014-03-17 13:23:27 +00:00
if (Z_ISREF_P(rval)) {
rval = Z_REFVAL_P(rval);
}
if (Z_OBJCE_P(rval) != PHP_IC_ENTRY &&
zend_hash_str_exists(&Z_OBJCE_P(rval)->function_table, "__wakeup", sizeof("__wakeup")-1)) {
ZVAL_STRINGL(&fname, "__wakeup", sizeof("__wakeup") - 1);
BG(serialize_lock)++;
call_user_function_ex(CG(function_table), rval, &fname, &retval, 0, 0, 1, NULL TSRMLS_CC);
BG(serialize_lock)--;
2014-02-25 08:54:26 +00:00
zval_dtor(&fname);
zval_dtor(&retval);
2003-08-05 09:23:17 +00:00
}
if (EG(exception)) {
return 0;
}
return finish_nested_data(UNSERIALIZE_PASSTHRU);
}
#ifdef PHP_WIN32
# pragma optimize("", on)
#endif
PHPAPI int php_var_unserialize(UNSERIALIZE_PARAMETER)
{
const unsigned char *cursor, *limit, *marker, *start;
zval *rval_ref;
limit = max;
cursor = *p;
if (YYCURSOR >= YYLIMIT) {
return 0;
}
2014-03-17 13:23:27 +00:00
if (var_hash && (*p)[0] != 'R') {
var_push(var_hash, rval);
}
start = cursor;
2008-04-08 12:17:04 +00:00
2014-03-17 13:23:27 +00:00
#line 432 "ext/standard/var_unserializer.c"
2005-06-28 23:16:49 +00:00
{
2008-04-08 12:17:04 +00:00
YYCTYPE yych;
static const unsigned char yybm[] = {
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
128, 128, 128, 128, 128, 128, 128, 128,
128, 128, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
};
2008-04-08 12:17:04 +00:00
if ((YYLIMIT - YYCURSOR) < 7) YYFILL(7);
yych = *YYCURSOR;
switch (yych) {
case 'C':
case 'O': goto yy13;
case 'N': goto yy5;
case 'R': goto yy2;
case 'S': goto yy10;
case 'a': goto yy11;
case 'b': goto yy6;
case 'd': goto yy8;
case 'i': goto yy7;
case 'o': goto yy12;
case 'r': goto yy4;
case 's': goto yy9;
case '}': goto yy14;
default: goto yy16;
}
yy2:
2008-04-08 12:17:04 +00:00
yych = *(YYMARKER = ++YYCURSOR);
if (yych == ':') goto yy95;
2005-09-05 16:22:58 +00:00
yy3:
2014-03-17 13:23:27 +00:00
#line 778 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{ return 0; }
2014-03-17 13:23:27 +00:00
#line 494 "ext/standard/var_unserializer.c"
yy4:
2008-04-08 12:17:04 +00:00
yych = *(YYMARKER = ++YYCURSOR);
if (yych == ':') goto yy89;
goto yy3;
yy5:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych == ';') goto yy87;
goto yy3;
yy6:
2008-04-08 12:17:04 +00:00
yych = *(YYMARKER = ++YYCURSOR);
if (yych == ':') goto yy83;
goto yy3;
yy7:
2008-04-08 12:17:04 +00:00
yych = *(YYMARKER = ++YYCURSOR);
if (yych == ':') goto yy77;
goto yy3;
yy8:
2008-04-08 12:17:04 +00:00
yych = *(YYMARKER = ++YYCURSOR);
if (yych == ':') goto yy53;
goto yy3;
yy9:
2008-04-08 12:17:04 +00:00
yych = *(YYMARKER = ++YYCURSOR);
if (yych == ':') goto yy46;
goto yy3;
yy10:
2008-04-08 12:17:04 +00:00
yych = *(YYMARKER = ++YYCURSOR);
if (yych == ':') goto yy39;
goto yy3;
yy11:
2008-04-08 12:17:04 +00:00
yych = *(YYMARKER = ++YYCURSOR);
if (yych == ':') goto yy32;
goto yy3;
yy12:
2008-04-08 12:17:04 +00:00
yych = *(YYMARKER = ++YYCURSOR);
if (yych == ':') goto yy25;
goto yy3;
yy13:
2008-04-08 12:17:04 +00:00
yych = *(YYMARKER = ++YYCURSOR);
if (yych == ':') goto yy17;
goto yy3;
yy14:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 772 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
/* this is the case where we have less data than planned */
2003-01-24 16:29:40 +00:00
php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Unexpected end of serialized data");
return 0; /* not sure if it should be 0 or 1 here? */
}
2014-03-17 13:23:27 +00:00
#line 543 "ext/standard/var_unserializer.c"
yy16:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
goto yy3;
yy17:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yybm[0+yych] & 128) {
goto yy20;
2008-04-08 12:17:04 +00:00
}
if (yych == '+') goto yy19;
yy18:
2008-04-08 12:17:04 +00:00
YYCURSOR = YYMARKER;
goto yy3;
yy19:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yybm[0+yych] & 128) {
goto yy20;
2008-04-08 12:17:04 +00:00
}
goto yy18;
yy20:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
if ((YYLIMIT - YYCURSOR) < 2) YYFILL(2);
yych = *YYCURSOR;
if (yybm[0+yych] & 128) {
goto yy20;
2008-04-08 12:17:04 +00:00
}
if (yych != ':') goto yy18;
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych != '"') goto yy18;
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 633 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
size_t len, len2, len3, maxlen;
long elements;
char *str;
zend_string *class_name;
zend_class_entry *ce;
int incomplete_class = 0;
2005-02-24 17:50:20 +00:00
int custom_object = 0;
2005-02-24 17:50:20 +00:00
zval user_func;
zval retval;
zval args[1];
2007-08-06 18:33:29 +00:00
if (*start == 'C') {
custom_object = 1;
}
//??? INIT_PZVAL(rval);
len2 = len = parse_uiv(start + 2);
maxlen = max - YYCURSOR;
if (maxlen < len || len == 0) {
*p = start + 2;
return 0;
}
str = (char*)YYCURSOR;
YYCURSOR += len;
if (*(YYCURSOR) != '"') {
*p = YYCURSOR;
return 0;
}
if (*(YYCURSOR+1) != ':') {
*p = YYCURSOR+1;
return 0;
}
len3 = strspn(str, "0123456789_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\177\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377\\");
if (len3 != len)
{
*p = YYCURSOR + len3 - len;
return 0;
}
class_name = STR_INIT(str, len, 0);
2003-05-24 17:12:58 +00:00
do {
/* Try to find class directly */
BG(serialize_lock)++;
ce = zend_lookup_class(class_name TSRMLS_CC);
if (ce) {
BG(serialize_lock)--;
if (EG(exception)) {
STR_RELEASE(class_name);
return 0;
}
2003-05-24 17:12:58 +00:00
break;
}
BG(serialize_lock)--;
if (EG(exception)) {
STR_RELEASE(class_name);
return 0;
}
2003-05-24 17:12:58 +00:00
/* Check for unserialize callback */
if ((PG(unserialize_callback_func) == NULL) || (PG(unserialize_callback_func)[0] == '\0')) {
incomplete_class = 1;
ce = PHP_IC_ENTRY;
2003-05-24 17:12:58 +00:00
break;
}
/* Call unserialize callback */
ZVAL_STRING(&user_func, PG(unserialize_callback_func));
2014-02-25 08:54:26 +00:00
ZVAL_STR(&args[0], STR_COPY(class_name));
BG(serialize_lock)++;
if (call_user_function_ex(CG(function_table), NULL, &user_func, &retval, 1, args, 0, NULL TSRMLS_CC) != SUCCESS) {
BG(serialize_lock)--;
if (EG(exception)) {
2014-02-25 08:54:26 +00:00
STR_RELEASE(class_name);
zval_ptr_dtor(&user_func);
zval_ptr_dtor(&args[0]);
return 0;
}
php_error_docref(NULL TSRMLS_CC, E_WARNING, "defined (%s) but not found", Z_STRVAL(user_func));
2003-05-24 17:12:58 +00:00
incomplete_class = 1;
ce = PHP_IC_ENTRY;
zval_ptr_dtor(&user_func);
zval_ptr_dtor(&args[0]);
2003-05-24 17:12:58 +00:00
break;
}
BG(serialize_lock)--;
zval_ptr_dtor(&retval);
if (EG(exception)) {
2014-02-25 08:54:26 +00:00
STR_RELEASE(class_name);
zval_ptr_dtor(&user_func);
zval_ptr_dtor(&args[0]);
return 0;
}
2003-05-24 17:12:58 +00:00
/* The callback function may have defined the class */
if ((ce = zend_lookup_class(class_name TSRMLS_CC)) == NULL) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Function %s() hasn't defined the class it was called for", Z_STRVAL(user_func));
2003-05-24 17:12:58 +00:00
incomplete_class = 1;
ce = PHP_IC_ENTRY;
}
2003-05-24 17:12:58 +00:00
zval_ptr_dtor(&user_func);
zval_ptr_dtor(&args[0]);
2003-05-24 17:12:58 +00:00
break;
} while (1);
*p = YYCURSOR;
2007-08-06 18:33:29 +00:00
if (custom_object) {
int ret;
ret = object_custom(UNSERIALIZE_PASSTHRU, ce);
if (ret && incomplete_class) {
php_store_class_name(rval, class_name->val, len2);
}
2014-02-25 08:54:26 +00:00
STR_RELEASE(class_name);
return ret;
}
elements = object_common1(UNSERIALIZE_PASSTHRU, ce);
if (incomplete_class) {
php_store_class_name(rval, class_name->val, len2);
}
2014-02-25 08:54:26 +00:00
STR_RELEASE(class_name);
return object_common2(UNSERIALIZE_PASSTHRU, elements);
}
2014-03-17 13:23:27 +00:00
#line 712 "ext/standard/var_unserializer.c"
yy25:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= ',') {
if (yych != '+') goto yy18;
} else {
if (yych <= '-') goto yy26;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy27;
goto yy18;
2008-04-08 12:17:04 +00:00
}
yy26:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= '/') goto yy18;
if (yych >= ':') goto yy18;
yy27:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
if ((YYLIMIT - YYCURSOR) < 2) YYFILL(2);
yych = *YYCURSOR;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy27;
if (yych >= ';') goto yy18;
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych != '"') goto yy18;
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 625 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
//??? INIT_PZVAL(rval);
return object_common2(UNSERIALIZE_PASSTHRU,
object_common1(UNSERIALIZE_PASSTHRU, ZEND_STANDARD_CLASS_DEF_PTR));
}
2014-03-17 13:23:27 +00:00
#line 745 "ext/standard/var_unserializer.c"
yy32:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych == '+') goto yy33;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy34;
goto yy18;
yy33:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= '/') goto yy18;
if (yych >= ':') goto yy18;
yy34:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
if ((YYLIMIT - YYCURSOR) < 2) YYFILL(2);
yych = *YYCURSOR;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy34;
if (yych >= ';') goto yy18;
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych != '{') goto yy18;
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 604 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
long elements = parse_iv(start + 2);
/* use iv() not uiv() in order to check data range */
*p = YYCURSOR;
2005-03-01 09:26:28 +00:00
if (elements < 0) {
return 0;
}
array_init_size(rval, elements);
2014-03-17 13:23:27 +00:00
//??? we can't convert from packed to hash during unserialization, becaue
//??? reference to some zvals might be keept in var_hash (to support references)
zend_hash_real_init(Z_ARRVAL_P(rval), 0);
if (!process_nested_data(UNSERIALIZE_PASSTHRU, Z_ARRVAL_P(rval), elements, 0)) {
return 0;
}
return finish_nested_data(UNSERIALIZE_PASSTHRU);
}
2014-03-17 13:23:27 +00:00
#line 787 "ext/standard/var_unserializer.c"
yy39:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych == '+') goto yy40;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy41;
goto yy18;
yy40:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= '/') goto yy18;
if (yych >= ':') goto yy18;
yy41:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
if ((YYLIMIT - YYCURSOR) < 2) YYFILL(2);
yych = *YYCURSOR;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy41;
if (yych >= ';') goto yy18;
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych != '"') goto yy18;
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 574 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
size_t len, maxlen;
2014-03-17 13:23:27 +00:00
//??? TODO: use zend_string* instead of char*
char *str;
len = parse_uiv(start + 2);
maxlen = max - YYCURSOR;
if (maxlen < len) {
*p = start + 2;
return 0;
}
2007-07-09 14:31:56 +00:00
if ((str = unserialize_str(&YYCURSOR, &len, maxlen)) == NULL) {
return 0;
}
if (*(YYCURSOR) != '"') {
efree(str);
*p = YYCURSOR;
return 0;
}
YYCURSOR += 2;
*p = YYCURSOR;
ZVAL_STRINGL(rval, str, len);
2014-03-17 13:23:27 +00:00
efree(str);
return 1;
}
2014-03-17 13:23:27 +00:00
#line 838 "ext/standard/var_unserializer.c"
yy46:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych == '+') goto yy47;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy48;
goto yy18;
yy47:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= '/') goto yy18;
if (yych >= ':') goto yy18;
yy48:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
if ((YYLIMIT - YYCURSOR) < 2) YYFILL(2);
yych = *YYCURSOR;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy48;
if (yych >= ';') goto yy18;
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych != '"') goto yy18;
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 547 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
size_t len, maxlen;
char *str;
len = parse_uiv(start + 2);
maxlen = max - YYCURSOR;
if (maxlen < len) {
*p = start + 2;
return 0;
}
str = (char*)YYCURSOR;
YYCURSOR += len;
if (*(YYCURSOR) != '"') {
*p = YYCURSOR;
return 0;
}
YYCURSOR += 2;
*p = YYCURSOR;
ZVAL_STRINGL(rval, str, len);
return 1;
}
2014-03-17 13:23:27 +00:00
#line 886 "ext/standard/var_unserializer.c"
yy53:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= '/') {
if (yych <= ',') {
if (yych == '+') goto yy57;
goto yy18;
} else {
if (yych <= '-') goto yy55;
if (yych <= '.') goto yy60;
goto yy18;
}
} else {
if (yych <= 'I') {
if (yych <= '9') goto yy58;
if (yych <= 'H') goto yy18;
goto yy56;
} else {
if (yych != 'N') goto yy18;
}
2008-04-08 12:17:04 +00:00
}
yych = *++YYCURSOR;
if (yych == 'A') goto yy76;
goto yy18;
2008-04-08 12:17:04 +00:00
yy55:
yych = *++YYCURSOR;
if (yych <= '/') {
if (yych == '.') goto yy60;
goto yy18;
} else {
if (yych <= '9') goto yy58;
if (yych != 'I') goto yy18;
2008-04-08 12:17:04 +00:00
}
yy56:
yych = *++YYCURSOR;
if (yych == 'N') goto yy72;
goto yy18;
yy57:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych == '.') goto yy60;
if (yych <= '/') goto yy18;
if (yych >= ':') goto yy18;
yy58:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
if ((YYLIMIT - YYCURSOR) < 4) YYFILL(4);
yych = *YYCURSOR;
if (yych <= ':') {
if (yych <= '.') {
if (yych <= '-') goto yy18;
goto yy70;
} else {
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy58;
goto yy18;
}
} else {
if (yych <= 'E') {
if (yych <= ';') goto yy63;
if (yych <= 'D') goto yy18;
goto yy65;
} else {
if (yych == 'e') goto yy65;
goto yy18;
}
2008-04-08 12:17:04 +00:00
}
yy60:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= '/') goto yy18;
if (yych >= ':') goto yy18;
yy61:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
if ((YYLIMIT - YYCURSOR) < 4) YYFILL(4);
yych = *YYCURSOR;
if (yych <= ';') {
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy61;
if (yych <= ':') goto yy18;
} else {
if (yych <= 'E') {
if (yych <= 'D') goto yy18;
goto yy65;
} else {
if (yych == 'e') goto yy65;
goto yy18;
}
2008-04-08 12:17:04 +00:00
}
yy63:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 538 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
#if SIZEOF_LONG == 4
use_double:
#endif
2004-03-27 01:27:53 +00:00
*p = YYCURSOR;
ZVAL_DOUBLE(rval, zend_strtod((const char *)start + 2, NULL));
2004-03-27 01:27:53 +00:00
return 1;
}
2014-03-17 13:23:27 +00:00
#line 983 "ext/standard/var_unserializer.c"
yy65:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= ',') {
if (yych != '+') goto yy18;
} else {
if (yych <= '-') goto yy66;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy67;
goto yy18;
2008-04-08 12:17:04 +00:00
}
yy66:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= ',') {
if (yych == '+') goto yy69;
goto yy18;
} else {
if (yych <= '-') goto yy69;
if (yych <= '/') goto yy18;
if (yych >= ':') goto yy18;
2008-04-08 12:17:04 +00:00
}
yy67:
++YYCURSOR;
if (YYLIMIT <= YYCURSOR) YYFILL(1);
yych = *YYCURSOR;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy67;
if (yych == ';') goto yy63;
goto yy18;
yy69:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy67;
goto yy18;
yy70:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
if ((YYLIMIT - YYCURSOR) < 4) YYFILL(4);
yych = *YYCURSOR;
if (yych <= ';') {
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy70;
if (yych <= ':') goto yy18;
goto yy63;
} else {
if (yych <= 'E') {
if (yych <= 'D') goto yy18;
goto yy65;
} else {
if (yych == 'e') goto yy65;
goto yy18;
}
2008-04-08 12:17:04 +00:00
}
yy72:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych != 'F') goto yy18;
yy73:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych != ';') goto yy18;
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 522 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
2004-03-27 01:27:53 +00:00
*p = YYCURSOR;
if (!strncmp((char*)start + 2, "NAN", 3)) {
ZVAL_DOUBLE(rval, php_get_nan());
} else if (!strncmp((char*)start + 2, "INF", 3)) {
ZVAL_DOUBLE(rval, php_get_inf());
} else if (!strncmp((char*)start + 2, "-INF", 4)) {
ZVAL_DOUBLE(rval, -php_get_inf());
} else {
ZVAL_NULL(rval);
2004-03-27 01:27:53 +00:00
}
2004-03-27 01:27:53 +00:00
return 1;
}
2014-03-17 13:23:27 +00:00
#line 1058 "ext/standard/var_unserializer.c"
yy76:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych == 'N') goto yy73;
goto yy18;
yy77:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= ',') {
if (yych != '+') goto yy18;
} else {
if (yych <= '-') goto yy78;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy79;
goto yy18;
2008-04-08 12:17:04 +00:00
}
yy78:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= '/') goto yy18;
if (yych >= ':') goto yy18;
yy79:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
if (YYLIMIT <= YYCURSOR) YYFILL(1);
yych = *YYCURSOR;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy79;
if (yych != ';') goto yy18;
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 496 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
#if SIZEOF_LONG == 4
int digits = YYCURSOR - start - 3;
if (start[2] == '-' || start[2] == '+') {
digits--;
}
/* Use double for large long values that were serialized on a 64-bit system */
if (digits >= MAX_LENGTH_OF_LONG - 1) {
if (digits == MAX_LENGTH_OF_LONG - 1) {
int cmp = strncmp((char*)YYCURSOR - MAX_LENGTH_OF_LONG, long_min_digits, MAX_LENGTH_OF_LONG - 1);
if (!(cmp < 0 || (cmp == 0 && start[2] == '-'))) {
goto use_double;
}
} else {
goto use_double;
}
}
#endif
*p = YYCURSOR;
ZVAL_LONG(rval, parse_iv(start + 2));
return 1;
}
2014-03-17 13:23:27 +00:00
#line 1111 "ext/standard/var_unserializer.c"
yy83:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= '/') goto yy18;
if (yych >= '2') goto yy18;
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych != ';') goto yy18;
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 490 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
*p = YYCURSOR;
ZVAL_BOOL(rval, parse_iv(start + 2));
return 1;
}
2014-03-17 13:23:27 +00:00
#line 1125 "ext/standard/var_unserializer.c"
yy87:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 484 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
*p = YYCURSOR;
ZVAL_NULL(rval);
return 1;
}
2014-03-17 13:23:27 +00:00
#line 1134 "ext/standard/var_unserializer.c"
yy89:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= ',') {
if (yych != '+') goto yy18;
} else {
if (yych <= '-') goto yy90;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy91;
goto yy18;
2008-04-08 12:17:04 +00:00
}
yy90:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= '/') goto yy18;
if (yych >= ':') goto yy18;
yy91:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
if (YYLIMIT <= YYCURSOR) YYFILL(1);
yych = *YYCURSOR;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy91;
if (yych != ';') goto yy18;
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 461 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
long id;
*p = YYCURSOR;
if (!var_hash) return 0;
id = parse_iv(start + 2) - 1;
if (id == -1 || var_access(var_hash, id, &rval_ref) != SUCCESS) {
return 0;
}
//???
2014-03-17 13:23:27 +00:00
//??? if (rval == rval_ref) return 0;
if (!ZVAL_IS_UNDEF(rval)) {
var_push_dtor_no_addref(var_hash, rval);
}
ZVAL_COPY(rval, rval_ref);
//??? Z_UNSET_ISREF_PP(rval);
return 1;
}
2014-03-17 13:23:27 +00:00
#line 1180 "ext/standard/var_unserializer.c"
yy95:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= ',') {
if (yych != '+') goto yy18;
} else {
if (yych <= '-') goto yy96;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy97;
goto yy18;
2008-04-08 12:17:04 +00:00
}
yy96:
2008-04-08 12:17:04 +00:00
yych = *++YYCURSOR;
if (yych <= '/') goto yy18;
if (yych >= ':') goto yy18;
yy97:
2008-04-08 12:17:04 +00:00
++YYCURSOR;
if (YYLIMIT <= YYCURSOR) YYFILL(1);
yych = *YYCURSOR;
if (yych <= '/') goto yy18;
if (yych <= '9') goto yy97;
if (yych != ';') goto yy18;
2008-04-08 12:17:04 +00:00
++YYCURSOR;
2014-03-17 13:23:27 +00:00
#line 436 "ext/standard/var_unserializer.re"
2008-04-08 12:17:04 +00:00
{
long id;
*p = YYCURSOR;
if (!var_hash) return 0;
id = parse_iv(start + 2) - 1;
if (id == -1 || var_access(var_hash, id, &rval_ref) != SUCCESS) {
return 0;
}
if (!ZVAL_IS_UNDEF(rval)) {
zval_ptr_dtor(rval);
}
2014-03-17 13:23:27 +00:00
if (Z_ISREF_P(rval_ref)) {
ZVAL_COPY(rval, rval_ref);
} else {
ZVAL_NEW_REF(rval_ref, rval_ref);
ZVAL_COPY(rval, rval_ref);
}
//??? Z_SET_ISREF_PP(rval);
return 1;
}
2014-03-17 13:23:27 +00:00
#line 1228 "ext/standard/var_unserializer.c"
}
2014-03-17 13:23:27 +00:00
#line 780 "ext/standard/var_unserializer.re"
return 0;
}