zend_file_cache.c 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Zend OPcache |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1998-2018 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: Dmitry Stogov <dmitry@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #include "zend.h"
  19. #include "zend_virtual_cwd.h"
  20. #include "zend_compile.h"
  21. #include "zend_vm.h"
  22. #include "zend_interfaces.h"
  23. #include "php.h"
  24. #ifdef ZEND_WIN32
  25. #include "ext/standard/md5.h"
  26. #endif
  27. #ifdef HAVE_OPCACHE_FILE_CACHE
  28. #include "ZendAccelerator.h"
  29. #include "zend_file_cache.h"
  30. #include "zend_shared_alloc.h"
  31. #include "zend_accelerator_util_funcs.h"
  32. #include "zend_accelerator_hash.h"
  33. #include <sys/types.h>
  34. #include <sys/stat.h>
  35. #include <fcntl.h>
  36. #if HAVE_UNISTD_H
  37. #include <unistd.h>
  38. #endif
  39. #ifdef HAVE_SYS_UIO_H
  40. # include <sys/uio.h>
  41. #endif
  42. #ifdef HAVE_SYS_FILE_H
  43. # include <sys/file.h>
  44. #endif
  45. #ifndef ZEND_WIN32
  46. #define zend_file_cache_unlink unlink
  47. #define zend_file_cache_open open
  48. #else
  49. #define zend_file_cache_unlink php_win32_ioutil_unlink
  50. #define zend_file_cache_open php_win32_ioutil_open
  51. #endif
  52. #ifdef ZEND_WIN32
  53. # define LOCK_SH 0
  54. # define LOCK_EX 1
  55. # define LOCK_UN 2
  56. static int zend_file_cache_flock(int fd, int op)
  57. {
  58. OVERLAPPED offset = {0,0,0,0,NULL};
  59. if (op == LOCK_EX) {
  60. if (LockFileEx((HANDLE)_get_osfhandle(fd),
  61. LOCKFILE_EXCLUSIVE_LOCK, 0, 1, 0, &offset) == TRUE) {
  62. return 0;
  63. }
  64. } else if (op == LOCK_SH) {
  65. if (LockFileEx((HANDLE)_get_osfhandle(fd),
  66. 0, 0, 1, 0, &offset) == TRUE) {
  67. return 0;
  68. }
  69. } else if (op == LOCK_UN) {
  70. if (UnlockFileEx((HANDLE)_get_osfhandle(fd),
  71. 0, 1, 0, &offset) == TRUE) {
  72. return 0;
  73. }
  74. }
  75. return -1;
  76. }
  77. #elif defined(HAVE_FLOCK)
  78. # define zend_file_cache_flock flock
  79. #else
  80. # define LOCK_SH 0
  81. # define LOCK_EX 1
  82. # define LOCK_UN 2
  83. static int zend_file_cache_flock(int fd, int type)
  84. {
  85. return 0;
  86. }
  87. #endif
  88. #ifndef O_BINARY
  89. # define O_BINARY 0
  90. #endif
  91. #define SUFFIX ".bin"
  92. #define IS_SERIALIZED_INTERNED(ptr) \
  93. ((size_t)(ptr) & Z_UL(1))
  94. /* Allowing == here to account for a potential empty allocation at the end of the memory */
  95. #define IS_SERIALIZED(ptr) \
  96. ((char*)(ptr) <= (char*)script->size)
  97. #define IS_UNSERIALIZED(ptr) \
  98. (((char*)(ptr) >= (char*)script->mem && (char*)(ptr) < (char*)script->mem + script->size) || \
  99. IS_ACCEL_INTERNED(ptr))
  100. #define SERIALIZE_PTR(ptr) do { \
  101. if (ptr) { \
  102. ZEND_ASSERT(IS_UNSERIALIZED(ptr)); \
  103. (ptr) = (void*)((char*)(ptr) - (char*)script->mem); \
  104. } \
  105. } while (0)
  106. #define UNSERIALIZE_PTR(ptr) do { \
  107. if (ptr) { \
  108. ZEND_ASSERT(IS_SERIALIZED(ptr)); \
  109. (ptr) = (void*)((char*)buf + (size_t)(ptr)); \
  110. } \
  111. } while (0)
  112. #define SERIALIZE_STR(ptr) do { \
  113. if (ptr) { \
  114. if (IS_ACCEL_INTERNED(ptr)) { \
  115. (ptr) = zend_file_cache_serialize_interned((zend_string*)(ptr), info); \
  116. } else { \
  117. ZEND_ASSERT(IS_UNSERIALIZED(ptr)); \
  118. /* script->corrupted shows if the script in SHM or not */ \
  119. if (EXPECTED(script->corrupted)) { \
  120. GC_ADD_FLAGS(ptr, IS_STR_INTERNED); \
  121. GC_DEL_FLAGS(ptr, IS_STR_PERMANENT); \
  122. } \
  123. (ptr) = (void*)((char*)(ptr) - (char*)script->mem); \
  124. } \
  125. } \
  126. } while (0)
  127. #define UNSERIALIZE_STR(ptr) do { \
  128. if (ptr) { \
  129. if (IS_SERIALIZED_INTERNED(ptr)) { \
  130. (ptr) = (void*)zend_file_cache_unserialize_interned((zend_string*)(ptr), !script->corrupted); \
  131. } else { \
  132. ZEND_ASSERT(IS_SERIALIZED(ptr)); \
  133. (ptr) = (void*)((char*)buf + (size_t)(ptr)); \
  134. /* script->corrupted shows if the script in SHM or not */ \
  135. if (EXPECTED(!script->corrupted)) { \
  136. GC_ADD_FLAGS(ptr, IS_STR_INTERNED | IS_STR_PERMANENT); \
  137. } else { \
  138. GC_ADD_FLAGS(ptr, IS_STR_INTERNED); \
  139. GC_DEL_FLAGS(ptr, IS_STR_PERMANENT); \
  140. } \
  141. } \
  142. } \
  143. } while (0)
  144. static const uint32_t uninitialized_bucket[-HT_MIN_MASK] =
  145. {HT_INVALID_IDX, HT_INVALID_IDX};
  146. typedef struct _zend_file_cache_metainfo {
  147. char magic[8];
  148. char system_id[32];
  149. size_t mem_size;
  150. size_t str_size;
  151. size_t script_offset;
  152. accel_time_t timestamp;
  153. uint32_t checksum;
  154. } zend_file_cache_metainfo;
  155. static int zend_file_cache_mkdir(char *filename, size_t start)
  156. {
  157. char *s = filename + start;
  158. while (*s) {
  159. if (IS_SLASH(*s)) {
  160. char old = *s;
  161. *s = '\000';
  162. #ifndef ZEND_WIN32
  163. if (mkdir(filename, S_IRWXU) < 0 && errno != EEXIST) {
  164. #else
  165. if (php_win32_ioutil_mkdir(filename, 0700) < 0 && errno != EEXIST) {
  166. #endif
  167. *s = old;
  168. return FAILURE;
  169. }
  170. *s = old;
  171. }
  172. s++;
  173. }
  174. return SUCCESS;
  175. }
  176. typedef void (*serialize_callback_t)(zval *zv,
  177. zend_persistent_script *script,
  178. zend_file_cache_metainfo *info,
  179. void *buf);
  180. typedef void (*unserialize_callback_t)(zval *zv,
  181. zend_persistent_script *script,
  182. void *buf);
  183. static void zend_file_cache_serialize_zval(zval *zv,
  184. zend_persistent_script *script,
  185. zend_file_cache_metainfo *info,
  186. void *buf);
  187. static void zend_file_cache_unserialize_zval(zval *zv,
  188. zend_persistent_script *script,
  189. void *buf);
  190. static void *zend_file_cache_serialize_interned(zend_string *str,
  191. zend_file_cache_metainfo *info)
  192. {
  193. size_t len;
  194. void *ret;
  195. /* check if the same interned string was already stored */
  196. ret = zend_shared_alloc_get_xlat_entry(str);
  197. if (ret) {
  198. return ret;
  199. }
  200. len = ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(ZSTR_LEN(str)));
  201. ret = (void*)(info->str_size | Z_UL(1));
  202. zend_shared_alloc_register_xlat_entry(str, ret);
  203. if (info->str_size + len > ZSTR_LEN((zend_string*)ZCG(mem))) {
  204. size_t new_len = info->str_size + len;
  205. ZCG(mem) = (void*)zend_string_realloc(
  206. (zend_string*)ZCG(mem),
  207. ((_ZSTR_HEADER_SIZE + 1 + new_len + 4095) & ~0xfff) - (_ZSTR_HEADER_SIZE + 1),
  208. 0);
  209. }
  210. memcpy(ZSTR_VAL((zend_string*)ZCG(mem)) + info->str_size, str, len);
  211. info->str_size += len;
  212. return ret;
  213. }
  214. static void *zend_file_cache_unserialize_interned(zend_string *str, int in_shm)
  215. {
  216. zend_string *ret;
  217. str = (zend_string*)((char*)ZCG(mem) + ((size_t)(str) & ~Z_UL(1)));
  218. if (in_shm) {
  219. ret = accel_new_interned_string(str);
  220. if (ret == str) {
  221. /* We have to create new SHM allocated string */
  222. size_t size = _ZSTR_STRUCT_SIZE(ZSTR_LEN(str));
  223. ret = zend_shared_alloc(size);
  224. if (!ret) {
  225. zend_accel_schedule_restart_if_necessary(ACCEL_RESTART_OOM);
  226. LONGJMP(*EG(bailout), FAILURE);
  227. }
  228. memcpy(ret, str, size);
  229. /* String wasn't interned but we will use it as interned anyway */
  230. GC_SET_REFCOUNT(ret, 1);
  231. GC_TYPE_INFO(ret) = IS_STRING | ((IS_STR_INTERNED | IS_STR_PERSISTENT | IS_STR_PERMANENT) << GC_FLAGS_SHIFT);
  232. }
  233. } else {
  234. ret = str;
  235. GC_ADD_FLAGS(ret, IS_STR_INTERNED);
  236. GC_DEL_FLAGS(ret, IS_STR_PERMANENT);
  237. }
  238. return ret;
  239. }
  240. static void zend_file_cache_serialize_hash(HashTable *ht,
  241. zend_persistent_script *script,
  242. zend_file_cache_metainfo *info,
  243. void *buf,
  244. serialize_callback_t func)
  245. {
  246. Bucket *p, *end;
  247. if (!(HT_FLAGS(ht) & HASH_FLAG_INITIALIZED)) {
  248. ht->arData = NULL;
  249. return;
  250. }
  251. if (IS_SERIALIZED(ht->arData)) {
  252. return;
  253. }
  254. SERIALIZE_PTR(ht->arData);
  255. p = ht->arData;
  256. UNSERIALIZE_PTR(p);
  257. end = p + ht->nNumUsed;
  258. while (p < end) {
  259. if (Z_TYPE(p->val) != IS_UNDEF) {
  260. SERIALIZE_STR(p->key);
  261. func(&p->val, script, info, buf);
  262. }
  263. p++;
  264. }
  265. }
  266. static void zend_file_cache_serialize_ast(zend_ast *ast,
  267. zend_persistent_script *script,
  268. zend_file_cache_metainfo *info,
  269. void *buf)
  270. {
  271. uint32_t i;
  272. zend_ast *tmp;
  273. if (ast->kind == ZEND_AST_ZVAL || ast->kind == ZEND_AST_CONSTANT) {
  274. zend_file_cache_serialize_zval(&((zend_ast_zval*)ast)->val, script, info, buf);
  275. } else if (zend_ast_is_list(ast)) {
  276. zend_ast_list *list = zend_ast_get_list(ast);
  277. for (i = 0; i < list->children; i++) {
  278. if (list->child[i] && !IS_SERIALIZED(list->child[i])) {
  279. SERIALIZE_PTR(list->child[i]);
  280. tmp = list->child[i];
  281. UNSERIALIZE_PTR(tmp);
  282. zend_file_cache_serialize_ast(tmp, script, info, buf);
  283. }
  284. }
  285. } else {
  286. uint32_t children = zend_ast_get_num_children(ast);
  287. for (i = 0; i < children; i++) {
  288. if (ast->child[i] && !IS_SERIALIZED(ast->child[i])) {
  289. SERIALIZE_PTR(ast->child[i]);
  290. tmp = ast->child[i];
  291. UNSERIALIZE_PTR(tmp);
  292. zend_file_cache_serialize_ast(tmp, script, info, buf);
  293. }
  294. }
  295. }
  296. }
  297. static void zend_file_cache_serialize_zval(zval *zv,
  298. zend_persistent_script *script,
  299. zend_file_cache_metainfo *info,
  300. void *buf)
  301. {
  302. switch (Z_TYPE_P(zv)) {
  303. case IS_STRING:
  304. if (!IS_SERIALIZED(Z_STR_P(zv))) {
  305. SERIALIZE_STR(Z_STR_P(zv));
  306. }
  307. break;
  308. case IS_ARRAY:
  309. if (!IS_SERIALIZED(Z_ARR_P(zv))) {
  310. HashTable *ht;
  311. SERIALIZE_PTR(Z_ARR_P(zv));
  312. ht = Z_ARR_P(zv);
  313. UNSERIALIZE_PTR(ht);
  314. zend_file_cache_serialize_hash(ht, script, info, buf, zend_file_cache_serialize_zval);
  315. }
  316. break;
  317. case IS_REFERENCE:
  318. if (!IS_SERIALIZED(Z_REF_P(zv))) {
  319. zend_reference *ref;
  320. SERIALIZE_PTR(Z_REF_P(zv));
  321. ref = Z_REF_P(zv);
  322. UNSERIALIZE_PTR(ref);
  323. zend_file_cache_serialize_zval(&ref->val, script, info, buf);
  324. }
  325. break;
  326. case IS_CONSTANT_AST:
  327. if (!IS_SERIALIZED(Z_AST_P(zv))) {
  328. zend_ast_ref *ast;
  329. SERIALIZE_PTR(Z_AST_P(zv));
  330. ast = Z_AST_P(zv);
  331. UNSERIALIZE_PTR(ast);
  332. zend_file_cache_serialize_ast(GC_AST(ast), script, info, buf);
  333. }
  334. break;
  335. }
  336. }
  337. static void zend_file_cache_serialize_op_array(zend_op_array *op_array,
  338. zend_persistent_script *script,
  339. zend_file_cache_metainfo *info,
  340. void *buf)
  341. {
  342. if (op_array->static_variables && !IS_SERIALIZED(op_array->static_variables)) {
  343. HashTable *ht;
  344. SERIALIZE_PTR(op_array->static_variables);
  345. ht = op_array->static_variables;
  346. UNSERIALIZE_PTR(ht);
  347. zend_file_cache_serialize_hash(ht, script, info, buf, zend_file_cache_serialize_zval);
  348. }
  349. if (op_array->scope && !IS_SERIALIZED(op_array->opcodes)) {
  350. if (UNEXPECTED(zend_shared_alloc_get_xlat_entry(op_array->opcodes))) {
  351. op_array->refcount = (uint32_t*)(intptr_t)-1;
  352. SERIALIZE_PTR(op_array->literals);
  353. SERIALIZE_PTR(op_array->opcodes);
  354. SERIALIZE_PTR(op_array->arg_info);
  355. SERIALIZE_PTR(op_array->vars);
  356. SERIALIZE_STR(op_array->function_name);
  357. SERIALIZE_STR(op_array->filename);
  358. SERIALIZE_PTR(op_array->live_range);
  359. SERIALIZE_PTR(op_array->scope);
  360. SERIALIZE_STR(op_array->doc_comment);
  361. SERIALIZE_PTR(op_array->try_catch_array);
  362. SERIALIZE_PTR(op_array->prototype);
  363. return;
  364. }
  365. zend_shared_alloc_register_xlat_entry(op_array->opcodes, op_array->opcodes);
  366. }
  367. if (op_array->literals && !IS_SERIALIZED(op_array->literals)) {
  368. zval *p, *end;
  369. SERIALIZE_PTR(op_array->literals);
  370. p = op_array->literals;
  371. UNSERIALIZE_PTR(p);
  372. end = p + op_array->last_literal;
  373. while (p < end) {
  374. zend_file_cache_serialize_zval(p, script, info, buf);
  375. p++;
  376. }
  377. }
  378. if (!IS_SERIALIZED(op_array->opcodes)) {
  379. zend_op *opline, *end;
  380. #if !ZEND_USE_ABS_CONST_ADDR
  381. zval *literals = op_array->literals;
  382. UNSERIALIZE_PTR(literals);
  383. #endif
  384. SERIALIZE_PTR(op_array->opcodes);
  385. opline = op_array->opcodes;
  386. UNSERIALIZE_PTR(opline);
  387. end = opline + op_array->last;
  388. while (opline < end) {
  389. #if ZEND_USE_ABS_CONST_ADDR
  390. if (opline->op1_type == IS_CONST) {
  391. SERIALIZE_PTR(opline->op1.zv);
  392. }
  393. if (opline->op2_type == IS_CONST) {
  394. SERIALIZE_PTR(opline->op2.zv);
  395. }
  396. #else
  397. if (opline->op1_type == IS_CONST) {
  398. opline->op1.constant = RT_CONSTANT(opline, opline->op1) - literals;
  399. }
  400. if (opline->op2_type == IS_CONST) {
  401. opline->op2.constant = RT_CONSTANT(opline, opline->op2) - literals;
  402. }
  403. #endif
  404. #if ZEND_USE_ABS_JMP_ADDR
  405. switch (opline->opcode) {
  406. case ZEND_JMP:
  407. case ZEND_FAST_CALL:
  408. SERIALIZE_PTR(opline->op1.jmp_addr);
  409. break;
  410. case ZEND_JMPZNZ:
  411. /* relative extended_value don't have to be changed */
  412. /* break omitted intentionally */
  413. case ZEND_JMPZ:
  414. case ZEND_JMPNZ:
  415. case ZEND_JMPZ_EX:
  416. case ZEND_JMPNZ_EX:
  417. case ZEND_JMP_SET:
  418. case ZEND_COALESCE:
  419. case ZEND_FE_RESET_R:
  420. case ZEND_FE_RESET_RW:
  421. case ZEND_ASSERT_CHECK:
  422. SERIALIZE_PTR(opline->op2.jmp_addr);
  423. break;
  424. case ZEND_CATCH:
  425. if (!(opline->extended_value & ZEND_LAST_CATCH)) {
  426. SERIALIZE_PTR(opline->op2.jmp_addr);
  427. }
  428. break;
  429. case ZEND_DECLARE_ANON_CLASS:
  430. case ZEND_DECLARE_ANON_INHERITED_CLASS:
  431. case ZEND_FE_FETCH_R:
  432. case ZEND_FE_FETCH_RW:
  433. case ZEND_SWITCH_LONG:
  434. case ZEND_SWITCH_STRING:
  435. /* relative extended_value don't have to be changed */
  436. break;
  437. }
  438. #endif
  439. zend_serialize_opcode_handler(opline);
  440. opline++;
  441. }
  442. if (op_array->arg_info) {
  443. zend_arg_info *p, *end;
  444. SERIALIZE_PTR(op_array->arg_info);
  445. p = op_array->arg_info;
  446. UNSERIALIZE_PTR(p);
  447. end = p + op_array->num_args;
  448. if (op_array->fn_flags & ZEND_ACC_HAS_RETURN_TYPE) {
  449. p--;
  450. }
  451. if (op_array->fn_flags & ZEND_ACC_VARIADIC) {
  452. end++;
  453. }
  454. while (p < end) {
  455. if (!IS_SERIALIZED(p->name)) {
  456. SERIALIZE_STR(p->name);
  457. }
  458. if (ZEND_TYPE_IS_CLASS(p->type)) {
  459. zend_bool allow_null = ZEND_TYPE_ALLOW_NULL(p->type);
  460. zend_string *type_name = ZEND_TYPE_NAME(p->type);
  461. SERIALIZE_STR(type_name);
  462. p->type =
  463. (Z_UL(1) << (sizeof(zend_type)*8-1)) | /* type is class */
  464. (allow_null ? (Z_UL(1) << (sizeof(zend_type)*8-2)) : Z_UL(0)) | /* type allow null */
  465. (zend_type)type_name;
  466. }
  467. p++;
  468. }
  469. }
  470. if (op_array->vars) {
  471. zend_string **p, **end;
  472. SERIALIZE_PTR(op_array->vars);
  473. p = op_array->vars;
  474. UNSERIALIZE_PTR(p);
  475. end = p + op_array->last_var;
  476. while (p < end) {
  477. if (!IS_SERIALIZED(*p)) {
  478. SERIALIZE_STR(*p);
  479. }
  480. p++;
  481. }
  482. }
  483. SERIALIZE_STR(op_array->function_name);
  484. SERIALIZE_STR(op_array->filename);
  485. SERIALIZE_PTR(op_array->live_range);
  486. SERIALIZE_PTR(op_array->scope);
  487. SERIALIZE_STR(op_array->doc_comment);
  488. SERIALIZE_PTR(op_array->try_catch_array);
  489. SERIALIZE_PTR(op_array->prototype);
  490. }
  491. }
  492. static void zend_file_cache_serialize_func(zval *zv,
  493. zend_persistent_script *script,
  494. zend_file_cache_metainfo *info,
  495. void *buf)
  496. {
  497. zend_op_array *op_array;
  498. SERIALIZE_PTR(Z_PTR_P(zv));
  499. op_array = Z_PTR_P(zv);
  500. UNSERIALIZE_PTR(op_array);
  501. zend_file_cache_serialize_op_array(op_array, script, info, buf);
  502. }
  503. static void zend_file_cache_serialize_prop_info(zval *zv,
  504. zend_persistent_script *script,
  505. zend_file_cache_metainfo *info,
  506. void *buf)
  507. {
  508. if (!IS_SERIALIZED(Z_PTR_P(zv))) {
  509. zend_property_info *prop;
  510. SERIALIZE_PTR(Z_PTR_P(zv));
  511. prop = Z_PTR_P(zv);
  512. UNSERIALIZE_PTR(prop);
  513. ZEND_ASSERT(prop->ce != NULL && prop->name != NULL);
  514. if (!IS_SERIALIZED(prop->ce)) {
  515. SERIALIZE_PTR(prop->ce);
  516. SERIALIZE_STR(prop->name);
  517. if (prop->doc_comment) {
  518. SERIALIZE_STR(prop->doc_comment);
  519. }
  520. }
  521. }
  522. }
  523. static void zend_file_cache_serialize_class_constant(zval *zv,
  524. zend_persistent_script *script,
  525. zend_file_cache_metainfo *info,
  526. void *buf)
  527. {
  528. if (!IS_SERIALIZED(Z_PTR_P(zv))) {
  529. zend_class_constant *c;
  530. SERIALIZE_PTR(Z_PTR_P(zv));
  531. c = Z_PTR_P(zv);
  532. UNSERIALIZE_PTR(c);
  533. ZEND_ASSERT(c->ce != NULL);
  534. if (!IS_SERIALIZED(c->ce)) {
  535. SERIALIZE_PTR(c->ce);
  536. zend_file_cache_serialize_zval(&c->value, script, info, buf);
  537. if (c->doc_comment) {
  538. SERIALIZE_STR(c->doc_comment);
  539. }
  540. }
  541. }
  542. }
  543. static void zend_file_cache_serialize_class(zval *zv,
  544. zend_persistent_script *script,
  545. zend_file_cache_metainfo *info,
  546. void *buf)
  547. {
  548. zend_class_entry *ce;
  549. SERIALIZE_PTR(Z_PTR_P(zv));
  550. ce = Z_PTR_P(zv);
  551. UNSERIALIZE_PTR(ce);
  552. SERIALIZE_STR(ce->name);
  553. zend_file_cache_serialize_hash(&ce->function_table, script, info, buf, zend_file_cache_serialize_func);
  554. if (ce->default_properties_table) {
  555. zval *p, *end;
  556. SERIALIZE_PTR(ce->default_properties_table);
  557. p = ce->default_properties_table;
  558. UNSERIALIZE_PTR(p);
  559. end = p + ce->default_properties_count;
  560. while (p < end) {
  561. zend_file_cache_serialize_zval(p, script, info, buf);
  562. p++;
  563. }
  564. }
  565. if (ce->default_static_members_table) {
  566. zval *table, *p, *end;
  567. SERIALIZE_PTR(ce->default_static_members_table);
  568. table = ce->default_static_members_table;
  569. UNSERIALIZE_PTR(table);
  570. /* Serialize only static properties in this class.
  571. * Static properties from parent classes will be handled in class_copy_ctor */
  572. p = table + (ce->parent ? ce->parent->default_static_members_count : 0);
  573. end = table + ce->default_static_members_count;
  574. while (p < end) {
  575. zend_file_cache_serialize_zval(p, script, info, buf);
  576. p++;
  577. }
  578. }
  579. zend_file_cache_serialize_hash(&ce->constants_table, script, info, buf, zend_file_cache_serialize_class_constant);
  580. SERIALIZE_STR(ce->info.user.filename);
  581. SERIALIZE_STR(ce->info.user.doc_comment);
  582. zend_file_cache_serialize_hash(&ce->properties_info, script, info, buf, zend_file_cache_serialize_prop_info);
  583. if (ce->trait_aliases) {
  584. zend_trait_alias **p, *q;
  585. SERIALIZE_PTR(ce->trait_aliases);
  586. p = ce->trait_aliases;
  587. UNSERIALIZE_PTR(p);
  588. while (*p) {
  589. SERIALIZE_PTR(*p);
  590. q = *p;
  591. UNSERIALIZE_PTR(q);
  592. if (q->trait_method.method_name) {
  593. SERIALIZE_STR(q->trait_method.method_name);
  594. }
  595. if (q->trait_method.class_name) {
  596. SERIALIZE_STR(q->trait_method.class_name);
  597. }
  598. if (q->alias) {
  599. SERIALIZE_STR(q->alias);
  600. }
  601. p++;
  602. }
  603. }
  604. if (ce->trait_precedences) {
  605. zend_trait_precedence **p, *q;
  606. int j;
  607. SERIALIZE_PTR(ce->trait_precedences);
  608. p = ce->trait_precedences;
  609. UNSERIALIZE_PTR(p);
  610. while (*p) {
  611. SERIALIZE_PTR(*p);
  612. q = *p;
  613. UNSERIALIZE_PTR(q);
  614. if (q->trait_method.method_name) {
  615. SERIALIZE_STR(q->trait_method.method_name);
  616. }
  617. if (q->trait_method.class_name) {
  618. SERIALIZE_STR(q->trait_method.class_name);
  619. }
  620. for (j = 0; j < q->num_excludes; j++) {
  621. SERIALIZE_STR(q->exclude_class_names[j]);
  622. }
  623. p++;
  624. }
  625. }
  626. SERIALIZE_PTR(ce->parent);
  627. SERIALIZE_PTR(ce->constructor);
  628. SERIALIZE_PTR(ce->destructor);
  629. SERIALIZE_PTR(ce->clone);
  630. SERIALIZE_PTR(ce->__get);
  631. SERIALIZE_PTR(ce->__set);
  632. SERIALIZE_PTR(ce->__call);
  633. SERIALIZE_PTR(ce->serialize_func);
  634. SERIALIZE_PTR(ce->unserialize_func);
  635. SERIALIZE_PTR(ce->__isset);
  636. SERIALIZE_PTR(ce->__unset);
  637. SERIALIZE_PTR(ce->__tostring);
  638. SERIALIZE_PTR(ce->__callstatic);
  639. SERIALIZE_PTR(ce->__debugInfo);
  640. }
  641. static void zend_file_cache_serialize(zend_persistent_script *script,
  642. zend_file_cache_metainfo *info,
  643. void *buf)
  644. {
  645. zend_persistent_script *new_script;
  646. memcpy(info->magic, "OPCACHE", 8);
  647. memcpy(info->system_id, ZCG(system_id), 32);
  648. info->mem_size = script->size;
  649. info->str_size = 0;
  650. info->script_offset = (char*)script - (char*)script->mem;
  651. info->timestamp = script->timestamp;
  652. memcpy(buf, script->mem, script->size);
  653. new_script = (zend_persistent_script*)((char*)buf + info->script_offset);
  654. SERIALIZE_STR(new_script->script.filename);
  655. zend_file_cache_serialize_hash(&new_script->script.class_table, script, info, buf, zend_file_cache_serialize_class);
  656. zend_file_cache_serialize_hash(&new_script->script.function_table, script, info, buf, zend_file_cache_serialize_func);
  657. zend_file_cache_serialize_op_array(&new_script->script.main_op_array, script, info, buf);
  658. SERIALIZE_PTR(new_script->arena_mem);
  659. new_script->mem = NULL;
  660. }
  661. static char *zend_file_cache_get_bin_file_path(zend_string *script_path)
  662. {
  663. size_t len;
  664. char *filename;
  665. #ifndef ZEND_WIN32
  666. len = strlen(ZCG(accel_directives).file_cache);
  667. filename = emalloc(len + 33 + ZSTR_LEN(script_path) + sizeof(SUFFIX));
  668. memcpy(filename, ZCG(accel_directives).file_cache, len);
  669. filename[len] = '/';
  670. memcpy(filename + len + 1, ZCG(system_id), 32);
  671. memcpy(filename + len + 33, ZSTR_VAL(script_path), ZSTR_LEN(script_path));
  672. memcpy(filename + len + 33 + ZSTR_LEN(script_path), SUFFIX, sizeof(SUFFIX));
  673. #else
  674. PHP_MD5_CTX ctx;
  675. char md5uname[32];
  676. unsigned char digest[16], c;
  677. size_t i;
  678. char *uname = php_win32_get_username();
  679. PHP_MD5Init(&ctx);
  680. PHP_MD5Update(&ctx, uname, strlen(uname));
  681. PHP_MD5Final(digest, &ctx);
  682. for (i = 0; i < 16; i++) {
  683. c = digest[i] >> 4;
  684. c = (c <= 9) ? c + '0' : c - 10 + 'a';
  685. md5uname[i * 2] = c;
  686. c = digest[i] & 0x0f;
  687. c = (c <= 9) ? c + '0' : c - 10 + 'a';
  688. md5uname[(i * 2) + 1] = c;
  689. }
  690. len = strlen(ZCG(accel_directives).file_cache);
  691. filename = emalloc(len + 33 + 33 + ZSTR_LEN(script_path) + sizeof(SUFFIX));
  692. memcpy(filename, ZCG(accel_directives).file_cache, len);
  693. filename[len] = '\\';
  694. memcpy(filename + 1 + len, md5uname, 32);
  695. len += 1 + 32;
  696. filename[len] = '\\';
  697. memcpy(filename + len + 1, ZCG(system_id), 32);
  698. if (ZSTR_LEN(script_path) >= 7 && ':' == ZSTR_VAL(script_path)[4] && '/' == ZSTR_VAL(script_path)[5] && '/' == ZSTR_VAL(script_path)[6]) {
  699. /* phar:// or file:// */
  700. *(filename + len + 33) = '\\';
  701. memcpy(filename + len + 34, ZSTR_VAL(script_path), 4);
  702. if (ZSTR_LEN(script_path) - 7 >= 2 && ':' == ZSTR_VAL(script_path)[8]) {
  703. *(filename + len + 38) = '\\';
  704. *(filename + len + 39) = ZSTR_VAL(script_path)[7];
  705. memcpy(filename + len + 40, ZSTR_VAL(script_path) + 9, ZSTR_LEN(script_path) - 9);
  706. memcpy(filename + len + 40 + ZSTR_LEN(script_path) - 9, SUFFIX, sizeof(SUFFIX));
  707. } else {
  708. memcpy(filename + len + 38, ZSTR_VAL(script_path) + 7, ZSTR_LEN(script_path) - 7);
  709. memcpy(filename + len + 38 + ZSTR_LEN(script_path) - 7, SUFFIX, sizeof(SUFFIX));
  710. }
  711. } else if (ZSTR_LEN(script_path) >= 2 && ':' == ZSTR_VAL(script_path)[1]) {
  712. /* local fs */
  713. *(filename + len + 33) = '\\';
  714. *(filename + len + 34) = ZSTR_VAL(script_path)[0];
  715. memcpy(filename + len + 35, ZSTR_VAL(script_path) + 2, ZSTR_LEN(script_path) - 2);
  716. memcpy(filename + len + 35 + ZSTR_LEN(script_path) - 2, SUFFIX, sizeof(SUFFIX));
  717. } else {
  718. /* network path */
  719. memcpy(filename + len + 33, ZSTR_VAL(script_path), ZSTR_LEN(script_path));
  720. memcpy(filename + len + 33 + ZSTR_LEN(script_path), SUFFIX, sizeof(SUFFIX));
  721. }
  722. free(uname);
  723. #endif
  724. return filename;
  725. }
  726. int zend_file_cache_script_store(zend_persistent_script *script, int in_shm)
  727. {
  728. int fd;
  729. char *filename;
  730. zend_file_cache_metainfo info;
  731. #ifdef HAVE_SYS_UIO_H
  732. struct iovec vec[3];
  733. #endif
  734. void *mem, *buf;
  735. filename = zend_file_cache_get_bin_file_path(script->script.filename);
  736. if (zend_file_cache_mkdir(filename, strlen(ZCG(accel_directives).file_cache)) != SUCCESS) {
  737. zend_accel_error(ACCEL_LOG_WARNING, "opcache cannot create directory for file '%s', %s\n", filename, strerror(errno));
  738. efree(filename);
  739. return FAILURE;
  740. }
  741. fd = zend_file_cache_open(filename, O_CREAT | O_EXCL | O_RDWR | O_BINARY, S_IRUSR | S_IWUSR);
  742. if (fd < 0) {
  743. if (errno != EEXIST) {
  744. zend_accel_error(ACCEL_LOG_WARNING, "opcache cannot create file '%s', %s\n", filename, strerror(errno));
  745. }
  746. efree(filename);
  747. return FAILURE;
  748. }
  749. if (zend_file_cache_flock(fd, LOCK_EX) != 0) {
  750. close(fd);
  751. efree(filename);
  752. return FAILURE;
  753. }
  754. #if defined(__AVX__) || defined(__SSE2__)
  755. /* Align to 64-byte boundary */
  756. mem = emalloc(script->size + 64);
  757. buf = (void*)(((zend_uintptr_t)mem + 63L) & ~63L);
  758. #else
  759. mem = buf = emalloc(script->size);
  760. #endif
  761. ZCG(mem) = zend_string_alloc(4096 - (_ZSTR_HEADER_SIZE + 1), 0);
  762. zend_shared_alloc_init_xlat_table();
  763. if (!in_shm) {
  764. script->corrupted = 1; /* used to check if script restored to SHM or process memory */
  765. }
  766. zend_file_cache_serialize(script, &info, buf);
  767. if (!in_shm) {
  768. script->corrupted = 0;
  769. }
  770. zend_shared_alloc_destroy_xlat_table();
  771. info.checksum = zend_adler32(ADLER32_INIT, buf, script->size);
  772. info.checksum = zend_adler32(info.checksum, (unsigned char*)ZSTR_VAL((zend_string*)ZCG(mem)), info.str_size);
  773. #ifdef HAVE_SYS_UIO_H
  774. vec[0].iov_base = (void *)&info;
  775. vec[0].iov_len = sizeof(info);
  776. vec[1].iov_base = buf;
  777. vec[1].iov_len = script->size;
  778. vec[2].iov_base = ZSTR_VAL((zend_string*)ZCG(mem));
  779. vec[2].iov_len = info.str_size;
  780. if (writev(fd, vec, 3) != (ssize_t)(sizeof(info) + script->size + info.str_size)) {
  781. zend_accel_error(ACCEL_LOG_WARNING, "opcache cannot write to file '%s'\n", filename);
  782. zend_string_release_ex((zend_string*)ZCG(mem), 0);
  783. close(fd);
  784. efree(mem);
  785. zend_file_cache_unlink(filename);
  786. efree(filename);
  787. return FAILURE;
  788. }
  789. #else
  790. if (ZEND_LONG_MAX < (zend_long)(sizeof(info) + script->size + info.str_size) ||
  791. write(fd, &info, sizeof(info)) != sizeof(info) ||
  792. write(fd, buf, script->size) != script->size ||
  793. write(fd, ((zend_string*)ZCG(mem))->val, info.str_size) != info.str_size
  794. ) {
  795. zend_accel_error(ACCEL_LOG_WARNING, "opcache cannot write to file '%s'\n", filename);
  796. zend_string_release_ex((zend_string*)ZCG(mem), 0);
  797. close(fd);
  798. efree(mem);
  799. zend_file_cache_unlink(filename);
  800. efree(filename);
  801. return FAILURE;
  802. }
  803. #endif
  804. zend_string_release_ex((zend_string*)ZCG(mem), 0);
  805. efree(mem);
  806. if (zend_file_cache_flock(fd, LOCK_UN) != 0) {
  807. zend_accel_error(ACCEL_LOG_WARNING, "opcache cannot unlock file '%s'\n", filename);
  808. }
  809. close(fd);
  810. efree(filename);
  811. return SUCCESS;
  812. }
  813. static void zend_file_cache_unserialize_hash(HashTable *ht,
  814. zend_persistent_script *script,
  815. void *buf,
  816. unserialize_callback_t func,
  817. dtor_func_t dtor)
  818. {
  819. Bucket *p, *end;
  820. ht->pDestructor = dtor;
  821. if (!(HT_FLAGS(ht) & HASH_FLAG_INITIALIZED)) {
  822. if (EXPECTED(!file_cache_only)) {
  823. HT_SET_DATA_ADDR(ht, &ZCSG(uninitialized_bucket));
  824. } else {
  825. HT_SET_DATA_ADDR(ht, &uninitialized_bucket);
  826. }
  827. return;
  828. }
  829. if (IS_UNSERIALIZED(ht->arData)) {
  830. return;
  831. }
  832. UNSERIALIZE_PTR(ht->arData);
  833. p = ht->arData;
  834. end = p + ht->nNumUsed;
  835. while (p < end) {
  836. if (Z_TYPE(p->val) != IS_UNDEF) {
  837. UNSERIALIZE_STR(p->key);
  838. func(&p->val, script, buf);
  839. }
  840. p++;
  841. }
  842. }
  843. static void zend_file_cache_unserialize_ast(zend_ast *ast,
  844. zend_persistent_script *script,
  845. void *buf)
  846. {
  847. uint32_t i;
  848. if (ast->kind == ZEND_AST_ZVAL || ast->kind == ZEND_AST_CONSTANT) {
  849. zend_file_cache_unserialize_zval(&((zend_ast_zval*)ast)->val, script, buf);
  850. } else if (zend_ast_is_list(ast)) {
  851. zend_ast_list *list = zend_ast_get_list(ast);
  852. for (i = 0; i < list->children; i++) {
  853. if (list->child[i] && !IS_UNSERIALIZED(list->child[i])) {
  854. UNSERIALIZE_PTR(list->child[i]);
  855. zend_file_cache_unserialize_ast(list->child[i], script, buf);
  856. }
  857. }
  858. } else {
  859. uint32_t children = zend_ast_get_num_children(ast);
  860. for (i = 0; i < children; i++) {
  861. if (ast->child[i] && !IS_UNSERIALIZED(ast->child[i])) {
  862. UNSERIALIZE_PTR(ast->child[i]);
  863. zend_file_cache_unserialize_ast(ast->child[i], script, buf);
  864. }
  865. }
  866. }
  867. }
  868. static void zend_file_cache_unserialize_zval(zval *zv,
  869. zend_persistent_script *script,
  870. void *buf)
  871. {
  872. switch (Z_TYPE_P(zv)) {
  873. case IS_STRING:
  874. if (!IS_UNSERIALIZED(Z_STR_P(zv))) {
  875. UNSERIALIZE_STR(Z_STR_P(zv));
  876. }
  877. break;
  878. case IS_ARRAY:
  879. if (!IS_UNSERIALIZED(Z_ARR_P(zv))) {
  880. HashTable *ht;
  881. UNSERIALIZE_PTR(Z_ARR_P(zv));
  882. ht = Z_ARR_P(zv);
  883. zend_file_cache_unserialize_hash(ht,
  884. script, buf, zend_file_cache_unserialize_zval, ZVAL_PTR_DTOR);
  885. }
  886. break;
  887. case IS_REFERENCE:
  888. if (!IS_UNSERIALIZED(Z_REF_P(zv))) {
  889. zend_reference *ref;
  890. UNSERIALIZE_PTR(Z_REF_P(zv));
  891. ref = Z_REF_P(zv);
  892. zend_file_cache_unserialize_zval(&ref->val, script, buf);
  893. }
  894. break;
  895. case IS_CONSTANT_AST:
  896. if (!IS_UNSERIALIZED(Z_AST_P(zv))) {
  897. UNSERIALIZE_PTR(Z_AST_P(zv));
  898. zend_file_cache_unserialize_ast(Z_ASTVAL_P(zv), script, buf);
  899. }
  900. break;
  901. }
  902. }
  903. static void zend_file_cache_unserialize_op_array(zend_op_array *op_array,
  904. zend_persistent_script *script,
  905. void *buf)
  906. {
  907. if (op_array->static_variables && !IS_UNSERIALIZED(op_array->static_variables)) {
  908. HashTable *ht;
  909. UNSERIALIZE_PTR(op_array->static_variables);
  910. ht = op_array->static_variables;
  911. zend_file_cache_unserialize_hash(ht,
  912. script, buf, zend_file_cache_unserialize_zval, ZVAL_PTR_DTOR);
  913. }
  914. if (op_array->refcount) {
  915. op_array->refcount = NULL;
  916. UNSERIALIZE_PTR(op_array->literals);
  917. UNSERIALIZE_PTR(op_array->opcodes);
  918. UNSERIALIZE_PTR(op_array->arg_info);
  919. UNSERIALIZE_PTR(op_array->vars);
  920. UNSERIALIZE_STR(op_array->function_name);
  921. UNSERIALIZE_STR(op_array->filename);
  922. UNSERIALIZE_PTR(op_array->live_range);
  923. UNSERIALIZE_PTR(op_array->scope);
  924. UNSERIALIZE_STR(op_array->doc_comment);
  925. UNSERIALIZE_PTR(op_array->try_catch_array);
  926. UNSERIALIZE_PTR(op_array->prototype);
  927. return;
  928. }
  929. if (op_array->literals && !IS_UNSERIALIZED(op_array->literals)) {
  930. zval *p, *end;
  931. UNSERIALIZE_PTR(op_array->literals);
  932. p = op_array->literals;
  933. end = p + op_array->last_literal;
  934. while (p < end) {
  935. zend_file_cache_unserialize_zval(p, script, buf);
  936. p++;
  937. }
  938. }
  939. if (!IS_UNSERIALIZED(op_array->opcodes)) {
  940. zend_op *opline, *end;
  941. UNSERIALIZE_PTR(op_array->opcodes);
  942. opline = op_array->opcodes;
  943. end = opline + op_array->last;
  944. while (opline < end) {
  945. #if ZEND_USE_ABS_CONST_ADDR
  946. if (opline->op1_type == IS_CONST) {
  947. UNSERIALIZE_PTR(opline->op1.zv);
  948. }
  949. if (opline->op2_type == IS_CONST) {
  950. UNSERIALIZE_PTR(opline->op2.zv);
  951. }
  952. #else
  953. if (opline->op1_type == IS_CONST) {
  954. ZEND_PASS_TWO_UPDATE_CONSTANT(op_array, opline, opline->op1);
  955. }
  956. if (opline->op2_type == IS_CONST) {
  957. ZEND_PASS_TWO_UPDATE_CONSTANT(op_array, opline, opline->op2);
  958. }
  959. #endif
  960. #if ZEND_USE_ABS_JMP_ADDR
  961. switch (opline->opcode) {
  962. case ZEND_JMP:
  963. case ZEND_FAST_CALL:
  964. UNSERIALIZE_PTR(opline->op1.jmp_addr);
  965. break;
  966. case ZEND_JMPZNZ:
  967. /* relative extended_value don't have to be changed */
  968. /* break omitted intentionally */
  969. case ZEND_JMPZ:
  970. case ZEND_JMPNZ:
  971. case ZEND_JMPZ_EX:
  972. case ZEND_JMPNZ_EX:
  973. case ZEND_JMP_SET:
  974. case ZEND_COALESCE:
  975. case ZEND_FE_RESET_R:
  976. case ZEND_FE_RESET_RW:
  977. case ZEND_ASSERT_CHECK:
  978. UNSERIALIZE_PTR(opline->op2.jmp_addr);
  979. break;
  980. case ZEND_CATCH:
  981. if (!(opline->extended_value & ZEND_LAST_CATCH)) {
  982. UNSERIALIZE_PTR(opline->op2.jmp_addr);
  983. }
  984. break;
  985. case ZEND_DECLARE_ANON_CLASS:
  986. case ZEND_DECLARE_ANON_INHERITED_CLASS:
  987. case ZEND_FE_FETCH_R:
  988. case ZEND_FE_FETCH_RW:
  989. case ZEND_SWITCH_LONG:
  990. case ZEND_SWITCH_STRING:
  991. /* relative extended_value don't have to be changed */
  992. break;
  993. }
  994. #endif
  995. zend_deserialize_opcode_handler(opline);
  996. opline++;
  997. }
  998. if (op_array->arg_info) {
  999. zend_arg_info *p, *end;
  1000. UNSERIALIZE_PTR(op_array->arg_info);
  1001. p = op_array->arg_info;
  1002. end = p + op_array->num_args;
  1003. if (op_array->fn_flags & ZEND_ACC_HAS_RETURN_TYPE) {
  1004. p--;
  1005. }
  1006. if (op_array->fn_flags & ZEND_ACC_VARIADIC) {
  1007. end++;
  1008. }
  1009. while (p < end) {
  1010. if (!IS_UNSERIALIZED(p->name)) {
  1011. UNSERIALIZE_STR(p->name);
  1012. }
  1013. if (p->type & (Z_UL(1) << (sizeof(zend_type)*8-1))) { /* type is class */
  1014. zend_bool allow_null = (p->type & (Z_UL(1) << (sizeof(zend_type)*8-2))) != 0; /* type allow null */
  1015. zend_string *type_name = (zend_string*)(p->type & ~(((Z_UL(1) << (sizeof(zend_type)*8-1))) | ((Z_UL(1) << (sizeof(zend_type)*8-2)))));
  1016. UNSERIALIZE_STR(type_name);
  1017. p->type = ZEND_TYPE_ENCODE_CLASS(type_name, allow_null);
  1018. }
  1019. p++;
  1020. }
  1021. }
  1022. if (op_array->vars) {
  1023. zend_string **p, **end;
  1024. UNSERIALIZE_PTR(op_array->vars);
  1025. p = op_array->vars;
  1026. end = p + op_array->last_var;
  1027. while (p < end) {
  1028. if (!IS_UNSERIALIZED(*p)) {
  1029. UNSERIALIZE_STR(*p);
  1030. }
  1031. p++;
  1032. }
  1033. }
  1034. UNSERIALIZE_STR(op_array->function_name);
  1035. UNSERIALIZE_STR(op_array->filename);
  1036. UNSERIALIZE_PTR(op_array->live_range);
  1037. UNSERIALIZE_PTR(op_array->scope);
  1038. UNSERIALIZE_STR(op_array->doc_comment);
  1039. UNSERIALIZE_PTR(op_array->try_catch_array);
  1040. UNSERIALIZE_PTR(op_array->prototype);
  1041. }
  1042. }
  1043. static void zend_file_cache_unserialize_func(zval *zv,
  1044. zend_persistent_script *script,
  1045. void *buf)
  1046. {
  1047. zend_op_array *op_array;
  1048. UNSERIALIZE_PTR(Z_PTR_P(zv));
  1049. op_array = Z_PTR_P(zv);
  1050. zend_file_cache_unserialize_op_array(op_array, script, buf);
  1051. }
  1052. static void zend_file_cache_unserialize_prop_info(zval *zv,
  1053. zend_persistent_script *script,
  1054. void *buf)
  1055. {
  1056. if (!IS_UNSERIALIZED(Z_PTR_P(zv))) {
  1057. zend_property_info *prop;
  1058. UNSERIALIZE_PTR(Z_PTR_P(zv));
  1059. prop = Z_PTR_P(zv);
  1060. ZEND_ASSERT(prop->ce != NULL && prop->name != NULL);
  1061. if (!IS_UNSERIALIZED(prop->ce)) {
  1062. UNSERIALIZE_PTR(prop->ce);
  1063. UNSERIALIZE_STR(prop->name);
  1064. if (prop->doc_comment) {
  1065. UNSERIALIZE_STR(prop->doc_comment);
  1066. }
  1067. }
  1068. }
  1069. }
  1070. static void zend_file_cache_unserialize_class_constant(zval *zv,
  1071. zend_persistent_script *script,
  1072. void *buf)
  1073. {
  1074. if (!IS_UNSERIALIZED(Z_PTR_P(zv))) {
  1075. zend_class_constant *c;
  1076. UNSERIALIZE_PTR(Z_PTR_P(zv));
  1077. c = Z_PTR_P(zv);
  1078. ZEND_ASSERT(c->ce != NULL);
  1079. if (!IS_UNSERIALIZED(c->ce)) {
  1080. UNSERIALIZE_PTR(c->ce);
  1081. zend_file_cache_unserialize_zval(&c->value, script, buf);
  1082. if (c->doc_comment) {
  1083. UNSERIALIZE_STR(c->doc_comment);
  1084. }
  1085. }
  1086. }
  1087. }
  1088. static void zend_file_cache_unserialize_class(zval *zv,
  1089. zend_persistent_script *script,
  1090. void *buf)
  1091. {
  1092. zend_class_entry *ce;
  1093. UNSERIALIZE_PTR(Z_PTR_P(zv));
  1094. ce = Z_PTR_P(zv);
  1095. UNSERIALIZE_STR(ce->name);
  1096. UNSERIALIZE_PTR(ce->parent);
  1097. zend_file_cache_unserialize_hash(&ce->function_table,
  1098. script, buf, zend_file_cache_unserialize_func, ZEND_FUNCTION_DTOR);
  1099. if (ce->default_properties_table) {
  1100. zval *p, *end;
  1101. UNSERIALIZE_PTR(ce->default_properties_table);
  1102. p = ce->default_properties_table;
  1103. end = p + ce->default_properties_count;
  1104. while (p < end) {
  1105. zend_file_cache_unserialize_zval(p, script, buf);
  1106. p++;
  1107. }
  1108. }
  1109. if (ce->default_static_members_table) {
  1110. zval *table, *p, *end;
  1111. /* Unserialize only static properties in this class.
  1112. * Static properties from parent classes will be handled in class_copy_ctor */
  1113. UNSERIALIZE_PTR(ce->default_static_members_table);
  1114. table = ce->default_static_members_table;
  1115. p = table + (ce->parent ? ce->parent->default_static_members_count : 0);
  1116. end = table + ce->default_static_members_count;
  1117. while (p < end) {
  1118. zend_file_cache_unserialize_zval(p, script, buf);
  1119. p++;
  1120. }
  1121. }
  1122. zend_file_cache_unserialize_hash(&ce->constants_table,
  1123. script, buf, zend_file_cache_unserialize_class_constant, NULL);
  1124. UNSERIALIZE_STR(ce->info.user.filename);
  1125. UNSERIALIZE_STR(ce->info.user.doc_comment);
  1126. zend_file_cache_unserialize_hash(&ce->properties_info,
  1127. script, buf, zend_file_cache_unserialize_prop_info, NULL);
  1128. if (ce->trait_aliases) {
  1129. zend_trait_alias **p, *q;
  1130. UNSERIALIZE_PTR(ce->trait_aliases);
  1131. p = ce->trait_aliases;
  1132. while (*p) {
  1133. UNSERIALIZE_PTR(*p);
  1134. q = *p;
  1135. if (q->trait_method.method_name) {
  1136. UNSERIALIZE_STR(q->trait_method.method_name);
  1137. }
  1138. if (q->trait_method.class_name) {
  1139. UNSERIALIZE_STR(q->trait_method.class_name);
  1140. }
  1141. if (q->alias) {
  1142. UNSERIALIZE_STR(q->alias);
  1143. }
  1144. p++;
  1145. }
  1146. }
  1147. if (ce->trait_precedences) {
  1148. zend_trait_precedence **p, *q;
  1149. int j;
  1150. UNSERIALIZE_PTR(ce->trait_precedences);
  1151. p = ce->trait_precedences;
  1152. while (*p) {
  1153. UNSERIALIZE_PTR(*p);
  1154. q = *p;
  1155. if (q->trait_method.method_name) {
  1156. UNSERIALIZE_STR(q->trait_method.method_name);
  1157. }
  1158. if (q->trait_method.class_name) {
  1159. UNSERIALIZE_STR(q->trait_method.class_name);
  1160. }
  1161. for (j = 0; j < q->num_excludes; j++) {
  1162. UNSERIALIZE_STR(q->exclude_class_names[j]);
  1163. }
  1164. p++;
  1165. }
  1166. }
  1167. UNSERIALIZE_PTR(ce->constructor);
  1168. UNSERIALIZE_PTR(ce->destructor);
  1169. UNSERIALIZE_PTR(ce->clone);
  1170. UNSERIALIZE_PTR(ce->__get);
  1171. UNSERIALIZE_PTR(ce->__set);
  1172. UNSERIALIZE_PTR(ce->__call);
  1173. UNSERIALIZE_PTR(ce->serialize_func);
  1174. UNSERIALIZE_PTR(ce->unserialize_func);
  1175. UNSERIALIZE_PTR(ce->__isset);
  1176. UNSERIALIZE_PTR(ce->__unset);
  1177. UNSERIALIZE_PTR(ce->__tostring);
  1178. UNSERIALIZE_PTR(ce->__callstatic);
  1179. UNSERIALIZE_PTR(ce->__debugInfo);
  1180. if (UNEXPECTED((ce->ce_flags & ZEND_ACC_ANON_CLASS))) {
  1181. ce->serialize = zend_class_serialize_deny;
  1182. ce->unserialize = zend_class_unserialize_deny;
  1183. }
  1184. }
  1185. static void zend_file_cache_unserialize(zend_persistent_script *script,
  1186. void *buf)
  1187. {
  1188. script->mem = buf;
  1189. UNSERIALIZE_STR(script->script.filename);
  1190. zend_file_cache_unserialize_hash(&script->script.class_table,
  1191. script, buf, zend_file_cache_unserialize_class, ZEND_CLASS_DTOR);
  1192. zend_file_cache_unserialize_hash(&script->script.function_table,
  1193. script, buf, zend_file_cache_unserialize_func, ZEND_FUNCTION_DTOR);
  1194. zend_file_cache_unserialize_op_array(&script->script.main_op_array, script, buf);
  1195. UNSERIALIZE_PTR(script->arena_mem);
  1196. }
  1197. zend_persistent_script *zend_file_cache_script_load(zend_file_handle *file_handle)
  1198. {
  1199. zend_string *full_path = file_handle->opened_path;
  1200. int fd;
  1201. char *filename;
  1202. zend_persistent_script *script;
  1203. zend_file_cache_metainfo info;
  1204. zend_accel_hash_entry *bucket;
  1205. void *mem, *checkpoint, *buf;
  1206. int cache_it = 1;
  1207. unsigned int actual_checksum;
  1208. int ok;
  1209. if (!full_path) {
  1210. return NULL;
  1211. }
  1212. filename = zend_file_cache_get_bin_file_path(full_path);
  1213. fd = zend_file_cache_open(filename, O_RDONLY | O_BINARY);
  1214. if (fd < 0) {
  1215. efree(filename);
  1216. return NULL;
  1217. }
  1218. if (zend_file_cache_flock(fd, LOCK_SH) != 0) {
  1219. close(fd);
  1220. efree(filename);
  1221. return NULL;
  1222. }
  1223. if (read(fd, &info, sizeof(info)) != sizeof(info)) {
  1224. zend_accel_error(ACCEL_LOG_WARNING, "opcache cannot read from file '%s' (info)\n", filename);
  1225. zend_file_cache_flock(fd, LOCK_UN);
  1226. close(fd);
  1227. zend_file_cache_unlink(filename);
  1228. efree(filename);
  1229. return NULL;
  1230. }
  1231. /* verify header */
  1232. if (memcmp(info.magic, "OPCACHE", 8) != 0) {
  1233. zend_accel_error(ACCEL_LOG_WARNING, "opcache cannot read from file '%s' (wrong header)\n", filename);
  1234. zend_file_cache_flock(fd, LOCK_UN);
  1235. close(fd);
  1236. zend_file_cache_unlink(filename);
  1237. efree(filename);
  1238. return NULL;
  1239. }
  1240. if (memcmp(info.system_id, ZCG(system_id), 32) != 0) {
  1241. zend_accel_error(ACCEL_LOG_WARNING, "opcache cannot read from file '%s' (wrong \"system_id\")\n", filename);
  1242. zend_file_cache_flock(fd, LOCK_UN);
  1243. close(fd);
  1244. zend_file_cache_unlink(filename);
  1245. efree(filename);
  1246. return NULL;
  1247. }
  1248. /* verify timestamp */
  1249. if (ZCG(accel_directives).validate_timestamps &&
  1250. zend_get_file_handle_timestamp(file_handle, NULL) != info.timestamp) {
  1251. if (zend_file_cache_flock(fd, LOCK_UN) != 0) {
  1252. zend_accel_error(ACCEL_LOG_WARNING, "opcache cannot unlock file '%s'\n", filename);
  1253. }
  1254. close(fd);
  1255. zend_file_cache_unlink(filename);
  1256. efree(filename);
  1257. return NULL;
  1258. }
  1259. checkpoint = zend_arena_checkpoint(CG(arena));
  1260. #if defined(__AVX__) || defined(__SSE2__)
  1261. /* Align to 64-byte boundary */
  1262. mem = zend_arena_alloc(&CG(arena), info.mem_size + info.str_size + 64);
  1263. mem = (void*)(((zend_uintptr_t)mem + 63L) & ~63L);
  1264. #else
  1265. mem = zend_arena_alloc(&CG(arena), info.mem_size + info.str_size);
  1266. #endif
  1267. if (read(fd, mem, info.mem_size + info.str_size) != (ssize_t)(info.mem_size + info.str_size)) {
  1268. zend_accel_error(ACCEL_LOG_WARNING, "opcache cannot read from file '%s' (mem)\n", filename);
  1269. zend_file_cache_flock(fd, LOCK_UN);
  1270. close(fd);
  1271. zend_file_cache_unlink(filename);
  1272. zend_arena_release(&CG(arena), checkpoint);
  1273. efree(filename);
  1274. return NULL;
  1275. }
  1276. if (zend_file_cache_flock(fd, LOCK_UN) != 0) {
  1277. zend_accel_error(ACCEL_LOG_WARNING, "opcache cannot unlock file '%s'\n", filename);
  1278. }
  1279. close(fd);
  1280. /* verify checksum */
  1281. if (ZCG(accel_directives).file_cache_consistency_checks &&
  1282. (actual_checksum = zend_adler32(ADLER32_INIT, mem, info.mem_size + info.str_size)) != info.checksum) {
  1283. zend_accel_error(ACCEL_LOG_WARNING, "corrupted file '%s' excepted checksum: 0x%08x actual checksum: 0x%08x\n", filename, info.checksum, actual_checksum);
  1284. zend_file_cache_unlink(filename);
  1285. zend_arena_release(&CG(arena), checkpoint);
  1286. efree(filename);
  1287. return NULL;
  1288. }
  1289. if (!file_cache_only &&
  1290. !ZCSG(restart_in_progress) &&
  1291. !ZSMMG(memory_exhausted) &&
  1292. accelerator_shm_read_lock() == SUCCESS) {
  1293. /* exclusive lock */
  1294. zend_shared_alloc_lock();
  1295. /* Check if we still need to put the file into the cache (may be it was
  1296. * already stored by another process. This final check is done under
  1297. * exclusive lock) */
  1298. bucket = zend_accel_hash_find_entry(&ZCSG(hash), full_path);
  1299. if (bucket) {
  1300. script = (zend_persistent_script *)bucket->data;
  1301. if (!script->corrupted) {
  1302. zend_shared_alloc_unlock();
  1303. zend_arena_release(&CG(arena), checkpoint);
  1304. efree(filename);
  1305. return script;
  1306. }
  1307. }
  1308. if (zend_accel_hash_is_full(&ZCSG(hash))) {
  1309. zend_accel_error(ACCEL_LOG_DEBUG, "No more entries in hash table!");
  1310. ZSMMG(memory_exhausted) = 1;
  1311. zend_accel_schedule_restart_if_necessary(ACCEL_RESTART_HASH);
  1312. zend_shared_alloc_unlock();
  1313. goto use_process_mem;
  1314. }
  1315. #if defined(__AVX__) || defined(__SSE2__)
  1316. /* Align to 64-byte boundary */
  1317. buf = zend_shared_alloc(info.mem_size + 64);
  1318. buf = (void*)(((zend_uintptr_t)buf + 63L) & ~63L);
  1319. #else
  1320. buf = zend_shared_alloc(info.mem_size);
  1321. #endif
  1322. if (!buf) {
  1323. zend_accel_schedule_restart_if_necessary(ACCEL_RESTART_OOM);
  1324. zend_shared_alloc_unlock();
  1325. goto use_process_mem;
  1326. }
  1327. memcpy(buf, mem, info.mem_size);
  1328. } else {
  1329. use_process_mem:
  1330. buf = mem;
  1331. cache_it = 0;
  1332. }
  1333. ZCG(mem) = ((char*)mem + info.mem_size);
  1334. script = (zend_persistent_script*)((char*)buf + info.script_offset);
  1335. script->corrupted = !cache_it; /* used to check if script restored to SHM or process memory */
  1336. ok = 1;
  1337. zend_try {
  1338. zend_file_cache_unserialize(script, buf);
  1339. } zend_catch {
  1340. ok = 0;
  1341. } zend_end_try();
  1342. if (!ok) {
  1343. if (cache_it) {
  1344. zend_shared_alloc_unlock();
  1345. goto use_process_mem;
  1346. } else {
  1347. zend_arena_release(&CG(arena), checkpoint);
  1348. efree(filename);
  1349. return NULL;
  1350. }
  1351. }
  1352. script->corrupted = 0;
  1353. if (cache_it) {
  1354. script->dynamic_members.checksum = zend_accel_script_checksum(script);
  1355. script->dynamic_members.last_used = ZCG(request_time);
  1356. zend_accel_hash_update(&ZCSG(hash), ZSTR_VAL(script->script.filename), ZSTR_LEN(script->script.filename), 0, script);
  1357. zend_shared_alloc_unlock();
  1358. zend_accel_error(ACCEL_LOG_INFO, "File cached script loaded into memory '%s'", ZSTR_VAL(script->script.filename));
  1359. zend_arena_release(&CG(arena), checkpoint);
  1360. }
  1361. efree(filename);
  1362. return script;
  1363. }
  1364. void zend_file_cache_invalidate(zend_string *full_path)
  1365. {
  1366. char *filename;
  1367. filename = zend_file_cache_get_bin_file_path(full_path);
  1368. zend_file_cache_unlink(filename);
  1369. efree(filename);
  1370. }
  1371. #endif /* HAVE_OPCACHE_FILE_CACHE */