main.c 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 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: Andi Gutmans <andi@zend.com> |
  16. | Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
  17. | Zeev Suraski <zeev@zend.com> |
  18. +----------------------------------------------------------------------+
  19. */
  20. /* $Id$ */
  21. /* {{{ includes
  22. */
  23. #define ZEND_INCLUDE_FULL_WINDOWS_HEADERS
  24. #include "php.h"
  25. #include <stdio.h>
  26. #include <fcntl.h>
  27. #ifdef PHP_WIN32
  28. #include "win32/time.h"
  29. #include "win32/signal.h"
  30. #include "win32/php_win32_globals.h"
  31. #include "win32/winutil.h"
  32. #include <process.h>
  33. #elif defined(NETWARE)
  34. #include <sys/timeval.h>
  35. #ifdef USE_WINSOCK
  36. #include <novsock2.h>
  37. #endif
  38. #endif
  39. #if HAVE_SYS_TIME_H
  40. #include <sys/time.h>
  41. #endif
  42. #if HAVE_UNISTD_H
  43. #include <unistd.h>
  44. #endif
  45. #if HAVE_SIGNAL_H
  46. #include <signal.h>
  47. #endif
  48. #if HAVE_SETLOCALE
  49. #include <locale.h>
  50. #endif
  51. #include "zend.h"
  52. #include "zend_extensions.h"
  53. #include "php_ini.h"
  54. #include "php_globals.h"
  55. #include "php_main.h"
  56. #include "fopen_wrappers.h"
  57. #include "ext/standard/php_standard.h"
  58. #include "ext/standard/php_string.h"
  59. #include "ext/date/php_date.h"
  60. #include "php_variables.h"
  61. #include "ext/standard/credits.h"
  62. #ifdef PHP_WIN32
  63. #include <io.h>
  64. #include "win32/php_registry.h"
  65. #include "ext/standard/flock_compat.h"
  66. #endif
  67. #include "php_syslog.h"
  68. #include "Zend/zend_exceptions.h"
  69. #if PHP_SIGCHILD
  70. #include <sys/types.h>
  71. #include <sys/wait.h>
  72. #endif
  73. #include "zend_compile.h"
  74. #include "zend_execute.h"
  75. #include "zend_highlight.h"
  76. #include "zend_indent.h"
  77. #include "zend_extensions.h"
  78. #include "zend_ini.h"
  79. #include "zend_dtrace.h"
  80. #include "php_content_types.h"
  81. #include "php_ticks.h"
  82. #include "php_streams.h"
  83. #include "php_open_temporary_file.h"
  84. #include "SAPI.h"
  85. #include "rfc1867.h"
  86. #if HAVE_MMAP || defined(PHP_WIN32)
  87. # if HAVE_UNISTD_H
  88. # include <unistd.h>
  89. # if defined(_SC_PAGESIZE)
  90. # define REAL_PAGE_SIZE sysconf(_SC_PAGESIZE);
  91. # elif defined(_SC_PAGE_SIZE)
  92. # define REAL_PAGE_SIZE sysconf(_SC_PAGE_SIZE);
  93. # endif
  94. # endif
  95. # if HAVE_SYS_MMAN_H
  96. # include <sys/mman.h>
  97. # endif
  98. # ifndef REAL_PAGE_SIZE
  99. # ifdef PAGE_SIZE
  100. # define REAL_PAGE_SIZE PAGE_SIZE
  101. # else
  102. # define REAL_PAGE_SIZE 4096
  103. # endif
  104. # endif
  105. #endif
  106. /* }}} */
  107. #ifndef S_ISREG
  108. #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
  109. #endif
  110. PHPAPI int (*php_register_internal_extensions_func)(TSRMLS_D) = php_register_internal_extensions;
  111. #ifndef ZTS
  112. php_core_globals core_globals;
  113. #else
  114. PHPAPI int core_globals_id;
  115. #endif
  116. #ifdef PHP_WIN32
  117. #include "win32_internal_function_disabled.h"
  118. static php_win32_disable_functions(TSRMLS_D)
  119. {
  120. int i;
  121. if (EG(windows_version_info).dwMajorVersion < 5) {
  122. for (i = 0; i < function_name_cnt_5; i++) {
  123. if (zend_hash_del(CG(function_table), function_name_5[i], strlen(function_name_5[i]) + 1)==FAILURE) {
  124. php_printf("Unable to disable function '%s'\n", function_name_5[i]);
  125. return FAILURE;
  126. }
  127. }
  128. }
  129. if (EG(windows_version_info).dwMajorVersion < 6) {
  130. for (i = 0; i < function_name_cnt_6; i++) {
  131. if (zend_hash_del(CG(function_table), function_name_6[i], strlen(function_name_6[i]) + 1)==FAILURE) {
  132. php_printf("Unable to disable function '%s'\n", function_name_6[i]);
  133. return FAILURE;
  134. }
  135. }
  136. }
  137. return SUCCESS;
  138. }
  139. #endif
  140. #define SAFE_FILENAME(f) ((f)?(f):"-")
  141. /* {{{ PHP_INI_MH
  142. */
  143. static PHP_INI_MH(OnSetPrecision)
  144. {
  145. int i = atoi(new_value);
  146. if (i >= 0) {
  147. EG(precision) = i;
  148. return SUCCESS;
  149. } else {
  150. return FAILURE;
  151. }
  152. }
  153. /* }}} */
  154. /* {{{ PHP_INI_MH
  155. */
  156. static PHP_INI_MH(OnChangeMemoryLimit)
  157. {
  158. if (new_value) {
  159. PG(memory_limit) = zend_atol(new_value, new_value_length);
  160. } else {
  161. PG(memory_limit) = 1<<30; /* effectively, no limit */
  162. }
  163. return zend_set_memory_limit(PG(memory_limit));
  164. }
  165. /* }}} */
  166. /* {{{ php_disable_functions
  167. */
  168. static void php_disable_functions(TSRMLS_D)
  169. {
  170. char *s = NULL, *e;
  171. if (!*(INI_STR("disable_functions"))) {
  172. return;
  173. }
  174. e = PG(disable_functions) = strdup(INI_STR("disable_functions"));
  175. if (e == NULL) {
  176. return;
  177. }
  178. while (*e) {
  179. switch (*e) {
  180. case ' ':
  181. case ',':
  182. if (s) {
  183. *e = '\0';
  184. zend_disable_function(s, e-s TSRMLS_CC);
  185. s = NULL;
  186. }
  187. break;
  188. default:
  189. if (!s) {
  190. s = e;
  191. }
  192. break;
  193. }
  194. e++;
  195. }
  196. if (s) {
  197. zend_disable_function(s, e-s TSRMLS_CC);
  198. }
  199. }
  200. /* }}} */
  201. /* {{{ php_disable_classes
  202. */
  203. static void php_disable_classes(TSRMLS_D)
  204. {
  205. char *s = NULL, *e;
  206. if (!*(INI_STR("disable_classes"))) {
  207. return;
  208. }
  209. e = PG(disable_classes) = strdup(INI_STR("disable_classes"));
  210. while (*e) {
  211. switch (*e) {
  212. case ' ':
  213. case ',':
  214. if (s) {
  215. *e = '\0';
  216. zend_disable_class(s, e-s TSRMLS_CC);
  217. s = NULL;
  218. }
  219. break;
  220. default:
  221. if (!s) {
  222. s = e;
  223. }
  224. break;
  225. }
  226. e++;
  227. }
  228. if (s) {
  229. zend_disable_class(s, e-s TSRMLS_CC);
  230. }
  231. }
  232. /* }}} */
  233. /* {{{ php_binary_init
  234. */
  235. static void php_binary_init(TSRMLS_D)
  236. {
  237. char *binary_location;
  238. #ifdef PHP_WIN32
  239. binary_location = (char *)malloc(MAXPATHLEN);
  240. if (GetModuleFileName(0, binary_location, MAXPATHLEN) == 0) {
  241. free(binary_location);
  242. PG(php_binary) = NULL;
  243. }
  244. #else
  245. if (sapi_module.executable_location) {
  246. binary_location = (char *)malloc(MAXPATHLEN);
  247. if (!strchr(sapi_module.executable_location, '/')) {
  248. char *envpath, *path;
  249. int found = 0;
  250. if ((envpath = getenv("PATH")) != NULL) {
  251. char *search_dir, search_path[MAXPATHLEN];
  252. char *last = NULL;
  253. struct stat s;
  254. path = estrdup(envpath);
  255. search_dir = php_strtok_r(path, ":", &last);
  256. while (search_dir) {
  257. snprintf(search_path, MAXPATHLEN, "%s/%s", search_dir, sapi_module.executable_location);
  258. if (VCWD_REALPATH(search_path, binary_location) && !VCWD_ACCESS(binary_location, X_OK) && VCWD_STAT(binary_location, &s) == 0 && S_ISREG(s.st_mode)) {
  259. found = 1;
  260. break;
  261. }
  262. search_dir = php_strtok_r(NULL, ":", &last);
  263. }
  264. efree(path);
  265. }
  266. if (!found) {
  267. free(binary_location);
  268. binary_location = NULL;
  269. }
  270. } else if (!VCWD_REALPATH(sapi_module.executable_location, binary_location) || VCWD_ACCESS(binary_location, X_OK)) {
  271. free(binary_location);
  272. binary_location = NULL;
  273. }
  274. } else {
  275. binary_location = NULL;
  276. }
  277. #endif
  278. PG(php_binary) = binary_location;
  279. }
  280. /* }}} */
  281. /* {{{ PHP_INI_MH
  282. */
  283. static PHP_INI_MH(OnUpdateTimeout)
  284. {
  285. if (stage==PHP_INI_STAGE_STARTUP) {
  286. /* Don't set a timeout on startup, only per-request */
  287. EG(timeout_seconds) = atoi(new_value);
  288. return SUCCESS;
  289. }
  290. zend_unset_timeout(TSRMLS_C);
  291. EG(timeout_seconds) = atoi(new_value);
  292. zend_set_timeout(EG(timeout_seconds), 0);
  293. return SUCCESS;
  294. }
  295. /* }}} */
  296. /* {{{ php_get_display_errors_mode() helper function
  297. */
  298. static int php_get_display_errors_mode(char *value, int value_length)
  299. {
  300. int mode;
  301. if (!value) {
  302. return PHP_DISPLAY_ERRORS_STDOUT;
  303. }
  304. if (value_length == 2 && !strcasecmp("on", value)) {
  305. mode = PHP_DISPLAY_ERRORS_STDOUT;
  306. } else if (value_length == 3 && !strcasecmp("yes", value)) {
  307. mode = PHP_DISPLAY_ERRORS_STDOUT;
  308. } else if (value_length == 4 && !strcasecmp("true", value)) {
  309. mode = PHP_DISPLAY_ERRORS_STDOUT;
  310. } else if (value_length == 6 && !strcasecmp(value, "stderr")) {
  311. mode = PHP_DISPLAY_ERRORS_STDERR;
  312. } else if (value_length == 6 && !strcasecmp(value, "stdout")) {
  313. mode = PHP_DISPLAY_ERRORS_STDOUT;
  314. } else {
  315. mode = atoi(value);
  316. if (mode && mode != PHP_DISPLAY_ERRORS_STDOUT && mode != PHP_DISPLAY_ERRORS_STDERR) {
  317. mode = PHP_DISPLAY_ERRORS_STDOUT;
  318. }
  319. }
  320. return mode;
  321. }
  322. /* }}} */
  323. /* {{{ PHP_INI_MH
  324. */
  325. static PHP_INI_MH(OnUpdateDisplayErrors)
  326. {
  327. PG(display_errors) = (zend_bool) php_get_display_errors_mode(new_value, new_value_length);
  328. return SUCCESS;
  329. }
  330. /* }}} */
  331. /* {{{ PHP_INI_DISP
  332. */
  333. static PHP_INI_DISP(display_errors_mode)
  334. {
  335. int mode, tmp_value_length, cgi_or_cli;
  336. char *tmp_value;
  337. TSRMLS_FETCH();
  338. if (type == ZEND_INI_DISPLAY_ORIG && ini_entry->modified) {
  339. tmp_value = (ini_entry->orig_value ? ini_entry->orig_value : NULL );
  340. tmp_value_length = ini_entry->orig_value_length;
  341. } else if (ini_entry->value) {
  342. tmp_value = ini_entry->value;
  343. tmp_value_length = ini_entry->value_length;
  344. } else {
  345. tmp_value = NULL;
  346. tmp_value_length = 0;
  347. }
  348. mode = php_get_display_errors_mode(tmp_value, tmp_value_length);
  349. /* Display 'On' for other SAPIs instead of STDOUT or STDERR */
  350. cgi_or_cli = (!strcmp(sapi_module.name, "cli") || !strcmp(sapi_module.name, "cgi"));
  351. switch (mode) {
  352. case PHP_DISPLAY_ERRORS_STDERR:
  353. if (cgi_or_cli ) {
  354. PUTS("STDERR");
  355. } else {
  356. PUTS("On");
  357. }
  358. break;
  359. case PHP_DISPLAY_ERRORS_STDOUT:
  360. if (cgi_or_cli ) {
  361. PUTS("STDOUT");
  362. } else {
  363. PUTS("On");
  364. }
  365. break;
  366. default:
  367. PUTS("Off");
  368. break;
  369. }
  370. }
  371. /* }}} */
  372. /* {{{ PHP_INI_MH
  373. */
  374. static PHP_INI_MH(OnUpdateInternalEncoding)
  375. {
  376. if (new_value) {
  377. OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
  378. }
  379. return SUCCESS;
  380. }
  381. /* }}} */
  382. /* {{{ PHP_INI_MH
  383. */
  384. static PHP_INI_MH(OnUpdateInputEncoding)
  385. {
  386. if (new_value) {
  387. OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
  388. }
  389. return SUCCESS;
  390. }
  391. /* }}} */
  392. /* {{{ PHP_INI_MH
  393. */
  394. static PHP_INI_MH(OnUpdateOutputEncoding)
  395. {
  396. if (new_value) {
  397. OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
  398. }
  399. return SUCCESS;
  400. }
  401. /* }}} */
  402. /* {{{ PHP_INI_MH
  403. */
  404. static PHP_INI_MH(OnUpdateErrorLog)
  405. {
  406. /* Only do the safemode/open_basedir check at runtime */
  407. if ((stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) && new_value && strcmp(new_value, "syslog")) {
  408. if (PG(open_basedir) && php_check_open_basedir(new_value TSRMLS_CC)) {
  409. return FAILURE;
  410. }
  411. }
  412. OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
  413. return SUCCESS;
  414. }
  415. /* }}} */
  416. /* {{{ PHP_INI_MH
  417. */
  418. static PHP_INI_MH(OnUpdateMailLog)
  419. {
  420. /* Only do the safemode/open_basedir check at runtime */
  421. if ((stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) && new_value) {
  422. if (PG(open_basedir) && php_check_open_basedir(new_value TSRMLS_CC)) {
  423. return FAILURE;
  424. }
  425. }
  426. OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
  427. return SUCCESS;
  428. }
  429. /* }}} */
  430. /* {{{ PHP_INI_MH
  431. */
  432. static PHP_INI_MH(OnChangeMailForceExtra)
  433. {
  434. /* Don't allow changing it in htaccess */
  435. if (stage == PHP_INI_STAGE_HTACCESS) {
  436. return FAILURE;
  437. }
  438. return SUCCESS;
  439. }
  440. /* }}} */
  441. /* defined in browscap.c */
  442. PHP_INI_MH(OnChangeBrowscap);
  443. /* {{{ PHP_INI_MH
  444. */
  445. static PHP_INI_MH(OnChangeAlwaysPopulateRawPostData)
  446. {
  447. signed char *p;
  448. #ifndef ZTS
  449. char *base = (char *) mh_arg2;
  450. #else
  451. char *base;
  452. base = (char *) ts_resource(*((int *) mh_arg2));
  453. #endif
  454. p = (signed char *) (base+(size_t) mh_arg1);
  455. *p = zend_atol(new_value, new_value_length);
  456. if (new_value_length == 2 && strcasecmp("on", new_value) == 0) {
  457. *p = (signed char) 1;
  458. }
  459. else if (new_value_length == 3 && strcasecmp("yes", new_value) == 0) {
  460. *p = (signed char) 1;
  461. }
  462. else if (new_value_length == 4 && strcasecmp("true", new_value) == 0) {
  463. *p = (signed char) 1;
  464. }
  465. else if (new_value_length == 5 && strcasecmp("never", new_value) == 0) {
  466. *p = (signed char) -1;
  467. }
  468. else {
  469. *p = (signed char) atoi(new_value);
  470. }
  471. return SUCCESS;
  472. }
  473. /* }}} */
  474. /* Need to be read from the environment (?):
  475. * PHP_AUTO_PREPEND_FILE
  476. * PHP_AUTO_APPEND_FILE
  477. * PHP_DOCUMENT_ROOT
  478. * PHP_USER_DIR
  479. * PHP_INCLUDE_PATH
  480. */
  481. /* Windows and Netware use the internal mail */
  482. #if defined(PHP_WIN32) || defined(NETWARE)
  483. # define DEFAULT_SENDMAIL_PATH NULL
  484. #elif defined(PHP_PROG_SENDMAIL)
  485. # define DEFAULT_SENDMAIL_PATH PHP_PROG_SENDMAIL " -t -i "
  486. #else
  487. # define DEFAULT_SENDMAIL_PATH "/usr/sbin/sendmail -t -i"
  488. #endif
  489. /* {{{ PHP_INI
  490. */
  491. PHP_INI_BEGIN()
  492. PHP_INI_ENTRY_EX("highlight.comment", HL_COMMENT_COLOR, PHP_INI_ALL, NULL, php_ini_color_displayer_cb)
  493. PHP_INI_ENTRY_EX("highlight.default", HL_DEFAULT_COLOR, PHP_INI_ALL, NULL, php_ini_color_displayer_cb)
  494. PHP_INI_ENTRY_EX("highlight.html", HL_HTML_COLOR, PHP_INI_ALL, NULL, php_ini_color_displayer_cb)
  495. PHP_INI_ENTRY_EX("highlight.keyword", HL_KEYWORD_COLOR, PHP_INI_ALL, NULL, php_ini_color_displayer_cb)
  496. PHP_INI_ENTRY_EX("highlight.string", HL_STRING_COLOR, PHP_INI_ALL, NULL, php_ini_color_displayer_cb)
  497. STD_PHP_INI_BOOLEAN("asp_tags", "0", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateBool, asp_tags, zend_compiler_globals, compiler_globals)
  498. STD_PHP_INI_ENTRY_EX("display_errors", "1", PHP_INI_ALL, OnUpdateDisplayErrors, display_errors, php_core_globals, core_globals, display_errors_mode)
  499. STD_PHP_INI_BOOLEAN("display_startup_errors", "0", PHP_INI_ALL, OnUpdateBool, display_startup_errors, php_core_globals, core_globals)
  500. STD_PHP_INI_BOOLEAN("enable_dl", "1", PHP_INI_SYSTEM, OnUpdateBool, enable_dl, php_core_globals, core_globals)
  501. STD_PHP_INI_BOOLEAN("expose_php", "1", PHP_INI_SYSTEM, OnUpdateBool, expose_php, php_core_globals, core_globals)
  502. STD_PHP_INI_ENTRY("docref_root", "", PHP_INI_ALL, OnUpdateString, docref_root, php_core_globals, core_globals)
  503. STD_PHP_INI_ENTRY("docref_ext", "", PHP_INI_ALL, OnUpdateString, docref_ext, php_core_globals, core_globals)
  504. STD_PHP_INI_BOOLEAN("html_errors", "1", PHP_INI_ALL, OnUpdateBool, html_errors, php_core_globals, core_globals)
  505. STD_PHP_INI_BOOLEAN("xmlrpc_errors", "0", PHP_INI_SYSTEM, OnUpdateBool, xmlrpc_errors, php_core_globals, core_globals)
  506. STD_PHP_INI_ENTRY("xmlrpc_error_number", "0", PHP_INI_ALL, OnUpdateLong, xmlrpc_error_number, php_core_globals, core_globals)
  507. STD_PHP_INI_ENTRY("max_input_time", "-1", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateLong, max_input_time, php_core_globals, core_globals)
  508. STD_PHP_INI_BOOLEAN("ignore_user_abort", "0", PHP_INI_ALL, OnUpdateBool, ignore_user_abort, php_core_globals, core_globals)
  509. STD_PHP_INI_BOOLEAN("implicit_flush", "0", PHP_INI_ALL, OnUpdateBool, implicit_flush, php_core_globals, core_globals)
  510. STD_PHP_INI_BOOLEAN("log_errors", "0", PHP_INI_ALL, OnUpdateBool, log_errors, php_core_globals, core_globals)
  511. STD_PHP_INI_ENTRY("log_errors_max_len", "1024", PHP_INI_ALL, OnUpdateLong, log_errors_max_len, php_core_globals, core_globals)
  512. STD_PHP_INI_BOOLEAN("ignore_repeated_errors", "0", PHP_INI_ALL, OnUpdateBool, ignore_repeated_errors, php_core_globals, core_globals)
  513. STD_PHP_INI_BOOLEAN("ignore_repeated_source", "0", PHP_INI_ALL, OnUpdateBool, ignore_repeated_source, php_core_globals, core_globals)
  514. STD_PHP_INI_BOOLEAN("report_memleaks", "1", PHP_INI_ALL, OnUpdateBool, report_memleaks, php_core_globals, core_globals)
  515. STD_PHP_INI_BOOLEAN("report_zend_debug", "1", PHP_INI_ALL, OnUpdateBool, report_zend_debug, php_core_globals, core_globals)
  516. STD_PHP_INI_ENTRY("output_buffering", "0", PHP_INI_PERDIR|PHP_INI_SYSTEM, OnUpdateLong, output_buffering, php_core_globals, core_globals)
  517. STD_PHP_INI_ENTRY("output_handler", NULL, PHP_INI_PERDIR|PHP_INI_SYSTEM, OnUpdateString, output_handler, php_core_globals, core_globals)
  518. STD_PHP_INI_BOOLEAN("register_argc_argv", "1", PHP_INI_PERDIR|PHP_INI_SYSTEM, OnUpdateBool, register_argc_argv, php_core_globals, core_globals)
  519. STD_PHP_INI_BOOLEAN("auto_globals_jit", "1", PHP_INI_PERDIR|PHP_INI_SYSTEM, OnUpdateBool, auto_globals_jit, php_core_globals, core_globals)
  520. STD_PHP_INI_BOOLEAN("short_open_tag", DEFAULT_SHORT_OPEN_TAG, PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateBool, short_tags, zend_compiler_globals, compiler_globals)
  521. STD_PHP_INI_BOOLEAN("sql.safe_mode", "0", PHP_INI_SYSTEM, OnUpdateBool, sql_safe_mode, php_core_globals, core_globals)
  522. STD_PHP_INI_BOOLEAN("track_errors", "0", PHP_INI_ALL, OnUpdateBool, track_errors, php_core_globals, core_globals)
  523. STD_PHP_INI_ENTRY("unserialize_callback_func", NULL, PHP_INI_ALL, OnUpdateString, unserialize_callback_func, php_core_globals, core_globals)
  524. STD_PHP_INI_ENTRY("serialize_precision", "17", PHP_INI_ALL, OnUpdateLongGEZero, serialize_precision, php_core_globals, core_globals)
  525. STD_PHP_INI_ENTRY("arg_separator.output", "&", PHP_INI_ALL, OnUpdateStringUnempty, arg_separator.output, php_core_globals, core_globals)
  526. STD_PHP_INI_ENTRY("arg_separator.input", "&", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateStringUnempty, arg_separator.input, php_core_globals, core_globals)
  527. STD_PHP_INI_ENTRY("auto_append_file", NULL, PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateString, auto_append_file, php_core_globals, core_globals)
  528. STD_PHP_INI_ENTRY("auto_prepend_file", NULL, PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateString, auto_prepend_file, php_core_globals, core_globals)
  529. STD_PHP_INI_ENTRY("doc_root", NULL, PHP_INI_SYSTEM, OnUpdateStringUnempty, doc_root, php_core_globals, core_globals)
  530. STD_PHP_INI_ENTRY("default_charset", PHP_DEFAULT_CHARSET, PHP_INI_ALL, OnUpdateString, default_charset, sapi_globals_struct, sapi_globals)
  531. STD_PHP_INI_ENTRY("default_mimetype", SAPI_DEFAULT_MIMETYPE, PHP_INI_ALL, OnUpdateString, default_mimetype, sapi_globals_struct, sapi_globals)
  532. STD_PHP_INI_ENTRY("internal_encoding", NULL, PHP_INI_ALL, OnUpdateInternalEncoding, internal_encoding, php_core_globals, core_globals)
  533. STD_PHP_INI_ENTRY("input_encoding", NULL, PHP_INI_ALL, OnUpdateInputEncoding, input_encoding, php_core_globals, core_globals)
  534. STD_PHP_INI_ENTRY("output_encoding", NULL, PHP_INI_ALL, OnUpdateOutputEncoding, output_encoding, php_core_globals, core_globals)
  535. STD_PHP_INI_ENTRY("error_log", NULL, PHP_INI_ALL, OnUpdateErrorLog, error_log, php_core_globals, core_globals)
  536. STD_PHP_INI_ENTRY("extension_dir", PHP_EXTENSION_DIR, PHP_INI_SYSTEM, OnUpdateStringUnempty, extension_dir, php_core_globals, core_globals)
  537. STD_PHP_INI_ENTRY("sys_temp_dir", NULL, PHP_INI_SYSTEM, OnUpdateStringUnempty, sys_temp_dir, php_core_globals, core_globals)
  538. STD_PHP_INI_ENTRY("include_path", PHP_INCLUDE_PATH, PHP_INI_ALL, OnUpdateStringUnempty, include_path, php_core_globals, core_globals)
  539. PHP_INI_ENTRY("max_execution_time", "30", PHP_INI_ALL, OnUpdateTimeout)
  540. STD_PHP_INI_ENTRY("open_basedir", NULL, PHP_INI_ALL, OnUpdateBaseDir, open_basedir, php_core_globals, core_globals)
  541. STD_PHP_INI_BOOLEAN("file_uploads", "1", PHP_INI_SYSTEM, OnUpdateBool, file_uploads, php_core_globals, core_globals)
  542. STD_PHP_INI_ENTRY("upload_max_filesize", "2M", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateLong, upload_max_filesize, php_core_globals, core_globals)
  543. STD_PHP_INI_ENTRY("post_max_size", "8M", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateLong, post_max_size, sapi_globals_struct,sapi_globals)
  544. STD_PHP_INI_ENTRY("upload_tmp_dir", NULL, PHP_INI_SYSTEM, OnUpdateStringUnempty, upload_tmp_dir, php_core_globals, core_globals)
  545. STD_PHP_INI_ENTRY("max_input_nesting_level", "64", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateLongGEZero, max_input_nesting_level, php_core_globals, core_globals)
  546. STD_PHP_INI_ENTRY("max_input_vars", "1000", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateLongGEZero, max_input_vars, php_core_globals, core_globals)
  547. STD_PHP_INI_ENTRY("user_dir", NULL, PHP_INI_SYSTEM, OnUpdateString, user_dir, php_core_globals, core_globals)
  548. STD_PHP_INI_ENTRY("variables_order", "EGPCS", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateStringUnempty, variables_order, php_core_globals, core_globals)
  549. STD_PHP_INI_ENTRY("request_order", NULL, PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateString, request_order, php_core_globals, core_globals)
  550. STD_PHP_INI_ENTRY("error_append_string", NULL, PHP_INI_ALL, OnUpdateString, error_append_string, php_core_globals, core_globals)
  551. STD_PHP_INI_ENTRY("error_prepend_string", NULL, PHP_INI_ALL, OnUpdateString, error_prepend_string, php_core_globals, core_globals)
  552. PHP_INI_ENTRY("SMTP", "localhost",PHP_INI_ALL, NULL)
  553. PHP_INI_ENTRY("smtp_port", "25", PHP_INI_ALL, NULL)
  554. STD_PHP_INI_BOOLEAN("mail.add_x_header", "0", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateBool, mail_x_header, php_core_globals, core_globals)
  555. STD_PHP_INI_ENTRY("mail.log", NULL, PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateMailLog, mail_log, php_core_globals, core_globals)
  556. PHP_INI_ENTRY("browscap", NULL, PHP_INI_SYSTEM, OnChangeBrowscap)
  557. PHP_INI_ENTRY("memory_limit", "128M", PHP_INI_ALL, OnChangeMemoryLimit)
  558. PHP_INI_ENTRY("precision", "14", PHP_INI_ALL, OnSetPrecision)
  559. PHP_INI_ENTRY("sendmail_from", NULL, PHP_INI_ALL, NULL)
  560. PHP_INI_ENTRY("sendmail_path", DEFAULT_SENDMAIL_PATH, PHP_INI_SYSTEM, NULL)
  561. PHP_INI_ENTRY("mail.force_extra_parameters",NULL, PHP_INI_SYSTEM|PHP_INI_PERDIR, OnChangeMailForceExtra)
  562. PHP_INI_ENTRY("disable_functions", "", PHP_INI_SYSTEM, NULL)
  563. PHP_INI_ENTRY("disable_classes", "", PHP_INI_SYSTEM, NULL)
  564. PHP_INI_ENTRY("max_file_uploads", "20", PHP_INI_SYSTEM|PHP_INI_PERDIR, NULL)
  565. STD_PHP_INI_BOOLEAN("allow_url_fopen", "1", PHP_INI_SYSTEM, OnUpdateBool, allow_url_fopen, php_core_globals, core_globals)
  566. STD_PHP_INI_BOOLEAN("allow_url_include", "0", PHP_INI_SYSTEM, OnUpdateBool, allow_url_include, php_core_globals, core_globals)
  567. STD_PHP_INI_BOOLEAN("enable_post_data_reading", "1", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateBool, enable_post_data_reading, php_core_globals, core_globals)
  568. STD_PHP_INI_ENTRY("always_populate_raw_post_data", "0", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnChangeAlwaysPopulateRawPostData, always_populate_raw_post_data, php_core_globals, core_globals)
  569. STD_PHP_INI_ENTRY("realpath_cache_size", "16K", PHP_INI_SYSTEM, OnUpdateLong, realpath_cache_size_limit, virtual_cwd_globals, cwd_globals)
  570. STD_PHP_INI_ENTRY("realpath_cache_ttl", "120", PHP_INI_SYSTEM, OnUpdateLong, realpath_cache_ttl, virtual_cwd_globals, cwd_globals)
  571. STD_PHP_INI_ENTRY("user_ini.filename", ".user.ini", PHP_INI_SYSTEM, OnUpdateString, user_ini_filename, php_core_globals, core_globals)
  572. STD_PHP_INI_ENTRY("user_ini.cache_ttl", "300", PHP_INI_SYSTEM, OnUpdateLong, user_ini_cache_ttl, php_core_globals, core_globals)
  573. STD_PHP_INI_BOOLEAN("exit_on_timeout", "0", PHP_INI_ALL, OnUpdateBool, exit_on_timeout, php_core_globals, core_globals)
  574. #ifdef PHP_WIN32
  575. STD_PHP_INI_BOOLEAN("windows.show_crt_warning", "0", PHP_INI_ALL, OnUpdateBool, windows_show_crt_warning, php_core_globals, core_globals)
  576. #endif
  577. PHP_INI_END()
  578. /* }}} */
  579. /* True globals (no need for thread safety */
  580. /* But don't make them a single int bitfield */
  581. static int module_initialized = 0;
  582. static int module_startup = 1;
  583. static int module_shutdown = 0;
  584. /* {{{ php_during_module_startup */
  585. static int php_during_module_startup(void)
  586. {
  587. return module_startup;
  588. }
  589. /* }}} */
  590. /* {{{ php_during_module_shutdown */
  591. static int php_during_module_shutdown(void)
  592. {
  593. return module_shutdown;
  594. }
  595. /* }}} */
  596. /* {{{ php_get_module_initialized
  597. */
  598. PHPAPI int php_get_module_initialized(void)
  599. {
  600. return module_initialized;
  601. }
  602. /* }}} */
  603. /* {{{ php_log_err
  604. */
  605. PHPAPI void php_log_err(char *log_message TSRMLS_DC)
  606. {
  607. int fd = -1;
  608. time_t error_time;
  609. if (PG(in_error_log)) {
  610. /* prevent recursive invocation */
  611. return;
  612. }
  613. PG(in_error_log) = 1;
  614. /* Try to use the specified logging location. */
  615. if (PG(error_log) != NULL) {
  616. #ifdef HAVE_SYSLOG_H
  617. if (!strcmp(PG(error_log), "syslog")) {
  618. php_syslog(LOG_NOTICE, "%s", log_message);
  619. PG(in_error_log) = 0;
  620. return;
  621. }
  622. #endif
  623. fd = VCWD_OPEN_MODE(PG(error_log), O_CREAT | O_APPEND | O_WRONLY, 0644);
  624. if (fd != -1) {
  625. char *tmp;
  626. int len;
  627. char *error_time_str;
  628. time(&error_time);
  629. #ifdef ZTS
  630. if (!php_during_module_startup()) {
  631. error_time_str = php_format_date("d-M-Y H:i:s e", 13, error_time, 1 TSRMLS_CC);
  632. } else {
  633. error_time_str = php_format_date("d-M-Y H:i:s e", 13, error_time, 0 TSRMLS_CC);
  634. }
  635. #else
  636. error_time_str = php_format_date("d-M-Y H:i:s e", 13, error_time, 1 TSRMLS_CC);
  637. #endif
  638. len = spprintf(&tmp, 0, "[%s] %s%s", error_time_str, log_message, PHP_EOL);
  639. #ifdef PHP_WIN32
  640. php_flock(fd, 2);
  641. #endif
  642. php_ignore_value(write(fd, tmp, len));
  643. efree(tmp);
  644. efree(error_time_str);
  645. close(fd);
  646. PG(in_error_log) = 0;
  647. return;
  648. }
  649. }
  650. /* Otherwise fall back to the default logging location, if we have one */
  651. if (sapi_module.log_message) {
  652. sapi_module.log_message(log_message TSRMLS_CC);
  653. }
  654. PG(in_error_log) = 0;
  655. }
  656. /* }}} */
  657. /* {{{ php_write
  658. wrapper for modules to use PHPWRITE */
  659. PHPAPI int php_write(void *buf, uint size TSRMLS_DC)
  660. {
  661. return PHPWRITE(buf, size);
  662. }
  663. /* }}} */
  664. /* {{{ php_printf
  665. */
  666. PHPAPI int php_printf(const char *format, ...)
  667. {
  668. va_list args;
  669. int ret;
  670. char *buffer;
  671. int size;
  672. TSRMLS_FETCH();
  673. va_start(args, format);
  674. size = vspprintf(&buffer, 0, format, args);
  675. ret = PHPWRITE(buffer, size);
  676. efree(buffer);
  677. va_end(args);
  678. return ret;
  679. }
  680. /* }}} */
  681. /* {{{ php_verror */
  682. /* php_verror is called from php_error_docref<n> functions.
  683. * Its purpose is to unify error messages and automatically generate clickable
  684. * html error messages if correcponding ini setting (html_errors) is activated.
  685. * See: CODING_STANDARDS for details.
  686. */
  687. PHPAPI void php_verror(const char *docref, const char *params, int type, const char *format, va_list args TSRMLS_DC)
  688. {
  689. char *buffer = NULL, *docref_buf = NULL, *target = NULL;
  690. char *docref_target = "", *docref_root = "";
  691. char *p;
  692. int buffer_len = 0;
  693. const char *space = "";
  694. const char *class_name = "";
  695. const char *function;
  696. int origin_len;
  697. char *origin;
  698. char *message;
  699. int is_function = 0;
  700. /* get error text into buffer and escape for html if necessary */
  701. buffer_len = vspprintf(&buffer, 0, format, args);
  702. if (PG(html_errors)) {
  703. size_t len;
  704. char *replace = php_escape_html_entities(buffer, buffer_len, &len, 0, ENT_COMPAT, NULL TSRMLS_CC);
  705. if (!replace || len < 1) {
  706. replace = php_escape_html_entities(buffer, buffer_len, &len, 0, ENT_COMPAT | ENT_HTML_SUBSTITUTE_ERRORS, NULL TSRMLS_CC);
  707. }
  708. efree(buffer);
  709. if (replace) {
  710. buffer = replace;
  711. buffer_len = len;
  712. } else {
  713. buffer = "";
  714. buffer_len = 0;
  715. }
  716. }
  717. /* which function caused the problem if any at all */
  718. if (php_during_module_startup()) {
  719. function = "PHP Startup";
  720. } else if (php_during_module_shutdown()) {
  721. function = "PHP Shutdown";
  722. } else if (EG(current_execute_data) &&
  723. EG(current_execute_data)->opline &&
  724. EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL
  725. ) {
  726. switch (EG(current_execute_data)->opline->extended_value) {
  727. case ZEND_EVAL:
  728. function = "eval";
  729. is_function = 1;
  730. break;
  731. case ZEND_INCLUDE:
  732. function = "include";
  733. is_function = 1;
  734. break;
  735. case ZEND_INCLUDE_ONCE:
  736. function = "include_once";
  737. is_function = 1;
  738. break;
  739. case ZEND_REQUIRE:
  740. function = "require";
  741. is_function = 1;
  742. break;
  743. case ZEND_REQUIRE_ONCE:
  744. function = "require_once";
  745. is_function = 1;
  746. break;
  747. default:
  748. function = "Unknown";
  749. }
  750. } else {
  751. function = get_active_function_name(TSRMLS_C);
  752. if (!function || !strlen(function)) {
  753. function = "Unknown";
  754. } else {
  755. is_function = 1;
  756. class_name = get_active_class_name(&space TSRMLS_CC);
  757. }
  758. }
  759. /* if we still have memory then format the origin */
  760. if (is_function) {
  761. origin_len = spprintf(&origin, 0, "%s%s%s(%s)", class_name, space, function, params);
  762. } else {
  763. origin_len = spprintf(&origin, 0, "%s", function);
  764. }
  765. if (PG(html_errors)) {
  766. size_t len;
  767. char *replace = php_escape_html_entities(origin, origin_len, &len, 0, ENT_COMPAT, NULL TSRMLS_CC);
  768. efree(origin);
  769. origin = replace;
  770. }
  771. /* origin and buffer available, so lets come up with the error message */
  772. if (docref && docref[0] == '#') {
  773. docref_target = strchr(docref, '#');
  774. docref = NULL;
  775. }
  776. /* no docref given but function is known (the default) */
  777. if (!docref && is_function) {
  778. int doclen;
  779. while (*function == '_') {
  780. function++;
  781. }
  782. if (space[0] == '\0') {
  783. doclen = spprintf(&docref_buf, 0, "function.%s", function);
  784. } else {
  785. doclen = spprintf(&docref_buf, 0, "%s.%s", class_name, function);
  786. }
  787. while((p = strchr(docref_buf, '_')) != NULL) {
  788. *p = '-';
  789. }
  790. docref = php_strtolower(docref_buf, doclen);
  791. }
  792. /* we have a docref for a function AND
  793. * - we show errors in html mode AND
  794. * - the user wants to see the links
  795. */
  796. if (docref && is_function && PG(html_errors) && strlen(PG(docref_root))) {
  797. if (strncmp(docref, "http://", 7)) {
  798. /* We don't have 'http://' so we use docref_root */
  799. char *ref; /* temp copy for duplicated docref */
  800. docref_root = PG(docref_root);
  801. ref = estrdup(docref);
  802. if (docref_buf) {
  803. efree(docref_buf);
  804. }
  805. docref_buf = ref;
  806. /* strip of the target if any */
  807. p = strrchr(ref, '#');
  808. if (p) {
  809. target = estrdup(p);
  810. if (target) {
  811. docref_target = target;
  812. *p = '\0';
  813. }
  814. }
  815. /* add the extension if it is set in ini */
  816. if (PG(docref_ext) && strlen(PG(docref_ext))) {
  817. spprintf(&docref_buf, 0, "%s%s", ref, PG(docref_ext));
  818. efree(ref);
  819. }
  820. docref = docref_buf;
  821. }
  822. /* display html formatted or only show the additional links */
  823. if (PG(html_errors)) {
  824. spprintf(&message, 0, "%s [<a href='%s%s%s'>%s</a>]: %s", origin, docref_root, docref, docref_target, docref, buffer);
  825. } else {
  826. spprintf(&message, 0, "%s [%s%s%s]: %s", origin, docref_root, docref, docref_target, buffer);
  827. }
  828. if (target) {
  829. efree(target);
  830. }
  831. } else {
  832. spprintf(&message, 0, "%s: %s", origin, buffer);
  833. }
  834. str_efree(origin);
  835. if (docref_buf) {
  836. efree(docref_buf);
  837. }
  838. if (PG(track_errors) && module_initialized &&
  839. (!EG(user_error_handler) || !(EG(user_error_handler_error_reporting) & type))) {
  840. if (!EG(active_symbol_table)) {
  841. zend_rebuild_symbol_table(TSRMLS_C);
  842. }
  843. if (EG(active_symbol_table)) {
  844. zval *tmp;
  845. ALLOC_INIT_ZVAL(tmp);
  846. ZVAL_STRINGL(tmp, buffer, buffer_len, 1);
  847. zend_hash_update(EG(active_symbol_table), "php_errormsg", sizeof("php_errormsg"), (void **) &tmp, sizeof(zval *), NULL);
  848. }
  849. }
  850. if (buffer_len > 0) {
  851. str_efree(buffer);
  852. }
  853. php_error(type, "%s", message);
  854. efree(message);
  855. }
  856. /* }}} */
  857. /* {{{ php_error_docref0 */
  858. /* See: CODING_STANDARDS for details. */
  859. PHPAPI void php_error_docref0(const char *docref TSRMLS_DC, int type, const char *format, ...)
  860. {
  861. va_list args;
  862. va_start(args, format);
  863. php_verror(docref, "", type, format, args TSRMLS_CC);
  864. va_end(args);
  865. }
  866. /* }}} */
  867. /* {{{ php_error_docref1 */
  868. /* See: CODING_STANDARDS for details. */
  869. PHPAPI void php_error_docref1(const char *docref TSRMLS_DC, const char *param1, int type, const char *format, ...)
  870. {
  871. va_list args;
  872. va_start(args, format);
  873. php_verror(docref, param1, type, format, args TSRMLS_CC);
  874. va_end(args);
  875. }
  876. /* }}} */
  877. /* {{{ php_error_docref2 */
  878. /* See: CODING_STANDARDS for details. */
  879. PHPAPI void php_error_docref2(const char *docref TSRMLS_DC, const char *param1, const char *param2, int type, const char *format, ...)
  880. {
  881. char *params;
  882. va_list args;
  883. spprintf(&params, 0, "%s,%s", param1, param2);
  884. va_start(args, format);
  885. php_verror(docref, params ? params : "...", type, format, args TSRMLS_CC);
  886. va_end(args);
  887. if (params) {
  888. efree(params);
  889. }
  890. }
  891. /* }}} */
  892. #ifdef PHP_WIN32
  893. #define PHP_WIN32_ERROR_MSG_BUFFER_SIZE 512
  894. PHPAPI void php_win32_docref2_from_error(DWORD error, const char *param1, const char *param2 TSRMLS_DC) {
  895. if (error == 0) {
  896. php_error_docref2(NULL TSRMLS_CC, param1, param2, E_WARNING, "%s", strerror(errno));
  897. } else {
  898. char buf[PHP_WIN32_ERROR_MSG_BUFFER_SIZE + 1];
  899. int buf_len;
  900. FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, error, 0, buf, PHP_WIN32_ERROR_MSG_BUFFER_SIZE, NULL);
  901. buf_len = strlen(buf);
  902. if (buf_len >= 2) {
  903. buf[buf_len - 1] = '\0';
  904. buf[buf_len - 2] = '\0';
  905. }
  906. php_error_docref2(NULL TSRMLS_CC, param1, param2, E_WARNING, "%s (code: %lu)", (char *)buf, error);
  907. }
  908. }
  909. #undef PHP_WIN32_ERROR_MSG_BUFFER_SIZE
  910. #endif
  911. /* {{{ php_html_puts */
  912. PHPAPI void php_html_puts(const char *str, uint size TSRMLS_DC)
  913. {
  914. zend_html_puts(str, size TSRMLS_CC);
  915. }
  916. /* }}} */
  917. /* {{{ php_error_cb
  918. extended error handling function */
  919. static void php_error_cb(int type, const char *error_filename, const uint error_lineno, const char *format, va_list args)
  920. {
  921. char *buffer;
  922. int buffer_len, display;
  923. TSRMLS_FETCH();
  924. buffer_len = vspprintf(&buffer, PG(log_errors_max_len), format, args);
  925. /* check for repeated errors to be ignored */
  926. if (PG(ignore_repeated_errors) && PG(last_error_message)) {
  927. /* no check for PG(last_error_file) is needed since it cannot
  928. * be NULL if PG(last_error_message) is not NULL */
  929. if (strcmp(PG(last_error_message), buffer)
  930. || (!PG(ignore_repeated_source)
  931. && ((PG(last_error_lineno) != (int)error_lineno)
  932. || strcmp(PG(last_error_file), error_filename)))) {
  933. display = 1;
  934. } else {
  935. display = 0;
  936. }
  937. } else {
  938. display = 1;
  939. }
  940. /* store the error if it has changed */
  941. if (display) {
  942. #ifdef ZEND_SIGNALS
  943. HANDLE_BLOCK_INTERRUPTIONS();
  944. #endif
  945. if (PG(last_error_message)) {
  946. free(PG(last_error_message));
  947. PG(last_error_message) = NULL;
  948. }
  949. if (PG(last_error_file)) {
  950. free(PG(last_error_file));
  951. PG(last_error_file) = NULL;
  952. }
  953. #ifdef ZEND_SIGNALS
  954. HANDLE_UNBLOCK_INTERRUPTIONS();
  955. #endif
  956. if (!error_filename) {
  957. error_filename = "Unknown";
  958. }
  959. PG(last_error_type) = type;
  960. PG(last_error_message) = strdup(buffer);
  961. PG(last_error_file) = strdup(error_filename);
  962. PG(last_error_lineno) = error_lineno;
  963. }
  964. /* according to error handling mode, suppress error, throw exception or show it */
  965. if (EG(error_handling) != EH_NORMAL) {
  966. switch (type) {
  967. case E_ERROR:
  968. case E_CORE_ERROR:
  969. case E_COMPILE_ERROR:
  970. case E_USER_ERROR:
  971. case E_PARSE:
  972. /* fatal errors are real errors and cannot be made exceptions */
  973. break;
  974. case E_STRICT:
  975. case E_DEPRECATED:
  976. case E_USER_DEPRECATED:
  977. /* for the sake of BC to old damaged code */
  978. break;
  979. case E_NOTICE:
  980. case E_USER_NOTICE:
  981. /* notices are no errors and are not treated as such like E_WARNINGS */
  982. break;
  983. default:
  984. /* throw an exception if we are in EH_THROW mode
  985. * but DO NOT overwrite a pending exception
  986. */
  987. if (EG(error_handling) == EH_THROW && !EG(exception)) {
  988. zend_throw_error_exception(EG(exception_class), buffer, 0, type TSRMLS_CC);
  989. }
  990. efree(buffer);
  991. return;
  992. }
  993. }
  994. /* display/log the error if necessary */
  995. if (display && (EG(error_reporting) & type || (type & E_CORE))
  996. && (PG(log_errors) || PG(display_errors) || (!module_initialized))) {
  997. char *error_type_str;
  998. switch (type) {
  999. case E_ERROR:
  1000. case E_CORE_ERROR:
  1001. case E_COMPILE_ERROR:
  1002. case E_USER_ERROR:
  1003. error_type_str = "Fatal error";
  1004. break;
  1005. case E_RECOVERABLE_ERROR:
  1006. error_type_str = "Catchable fatal error";
  1007. break;
  1008. case E_WARNING:
  1009. case E_CORE_WARNING:
  1010. case E_COMPILE_WARNING:
  1011. case E_USER_WARNING:
  1012. error_type_str = "Warning";
  1013. break;
  1014. case E_PARSE:
  1015. error_type_str = "Parse error";
  1016. break;
  1017. case E_NOTICE:
  1018. case E_USER_NOTICE:
  1019. error_type_str = "Notice";
  1020. break;
  1021. case E_STRICT:
  1022. error_type_str = "Strict Standards";
  1023. break;
  1024. case E_DEPRECATED:
  1025. case E_USER_DEPRECATED:
  1026. error_type_str = "Deprecated";
  1027. break;
  1028. default:
  1029. error_type_str = "Unknown error";
  1030. break;
  1031. }
  1032. if (!module_initialized || PG(log_errors)) {
  1033. char *log_buffer;
  1034. #ifdef PHP_WIN32
  1035. if (type == E_CORE_ERROR || type == E_CORE_WARNING) {
  1036. syslog(LOG_ALERT, "PHP %s: %s (%s)", error_type_str, buffer, GetCommandLine());
  1037. }
  1038. #endif
  1039. spprintf(&log_buffer, 0, "PHP %s: %s in %s on line %d", error_type_str, buffer, error_filename, error_lineno);
  1040. php_log_err(log_buffer TSRMLS_CC);
  1041. efree(log_buffer);
  1042. }
  1043. if (PG(display_errors) && ((module_initialized && !PG(during_request_startup)) || (PG(display_startup_errors)))) {
  1044. if (PG(xmlrpc_errors)) {
  1045. php_printf("<?xml version=\"1.0\"?><methodResponse><fault><value><struct><member><name>faultCode</name><value><int>%ld</int></value></member><member><name>faultString</name><value><string>%s:%s in %s on line %d</string></value></member></struct></value></fault></methodResponse>", PG(xmlrpc_error_number), error_type_str, buffer, error_filename, error_lineno);
  1046. } else {
  1047. char *prepend_string = INI_STR("error_prepend_string");
  1048. char *append_string = INI_STR("error_append_string");
  1049. if (PG(html_errors)) {
  1050. if (type == E_ERROR || type == E_PARSE) {
  1051. size_t len;
  1052. char *buf = php_escape_html_entities(buffer, buffer_len, &len, 0, ENT_COMPAT, NULL TSRMLS_CC);
  1053. php_printf("%s<br />\n<b>%s</b>: %s in <b>%s</b> on line <b>%d</b><br />\n%s", STR_PRINT(prepend_string), error_type_str, buf, error_filename, error_lineno, STR_PRINT(append_string));
  1054. str_efree(buf);
  1055. } else {
  1056. php_printf("%s<br />\n<b>%s</b>: %s in <b>%s</b> on line <b>%d</b><br />\n%s", STR_PRINT(prepend_string), error_type_str, buffer, error_filename, error_lineno, STR_PRINT(append_string));
  1057. }
  1058. } else {
  1059. /* Write CLI/CGI errors to stderr if display_errors = "stderr" */
  1060. if ((!strcmp(sapi_module.name, "cli") || !strcmp(sapi_module.name, "cgi")) &&
  1061. PG(display_errors) == PHP_DISPLAY_ERRORS_STDERR
  1062. ) {
  1063. #ifdef PHP_WIN32
  1064. fprintf(stderr, "%s: %s in %s on line %d\n", error_type_str, buffer, error_filename, error_lineno);
  1065. fflush(stderr);
  1066. #else
  1067. fprintf(stderr, "%s: %s in %s on line %d\n", error_type_str, buffer, error_filename, error_lineno);
  1068. #endif
  1069. } else {
  1070. php_printf("%s\n%s: %s in %s on line %d\n%s", STR_PRINT(prepend_string), error_type_str, buffer, error_filename, error_lineno, STR_PRINT(append_string));
  1071. }
  1072. }
  1073. }
  1074. }
  1075. #if ZEND_DEBUG
  1076. if (PG(report_zend_debug)) {
  1077. zend_bool trigger_break;
  1078. switch (type) {
  1079. case E_ERROR:
  1080. case E_CORE_ERROR:
  1081. case E_COMPILE_ERROR:
  1082. case E_USER_ERROR:
  1083. trigger_break=1;
  1084. break;
  1085. default:
  1086. trigger_break=0;
  1087. break;
  1088. }
  1089. zend_output_debug_string(trigger_break, "%s(%d) : %s - %s", error_filename, error_lineno, error_type_str, buffer);
  1090. }
  1091. #endif
  1092. }
  1093. /* Bail out if we can't recover */
  1094. switch (type) {
  1095. case E_CORE_ERROR:
  1096. if(!module_initialized) {
  1097. /* bad error in module startup - no way we can live with this */
  1098. exit(-2);
  1099. }
  1100. /* no break - intentionally */
  1101. case E_ERROR:
  1102. case E_RECOVERABLE_ERROR:
  1103. case E_PARSE:
  1104. case E_COMPILE_ERROR:
  1105. case E_USER_ERROR:
  1106. { /* new block to allow variable definition */
  1107. /* eval() errors do not affect exit_status or response code */
  1108. zend_bool during_eval = (type == E_PARSE) && (EG(current_execute_data) &&
  1109. EG(current_execute_data)->opline &&
  1110. EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL &&
  1111. EG(current_execute_data)->opline->extended_value == ZEND_EVAL);
  1112. if (!during_eval) {
  1113. EG(exit_status) = 255;
  1114. }
  1115. if (module_initialized) {
  1116. if (!PG(display_errors) &&
  1117. !SG(headers_sent) &&
  1118. SG(sapi_headers).http_response_code == 200 &&
  1119. !during_eval
  1120. ) {
  1121. sapi_header_line ctr = {0};
  1122. ctr.line = "HTTP/1.0 500 Internal Server Error";
  1123. ctr.line_len = sizeof("HTTP/1.0 500 Internal Server Error") - 1;
  1124. sapi_header_op(SAPI_HEADER_REPLACE, &ctr TSRMLS_CC);
  1125. }
  1126. /* the parser would return 1 (failure), we can bail out nicely */
  1127. if (type == E_PARSE) {
  1128. CG(parse_error) = 0;
  1129. } else {
  1130. /* restore memory limit */
  1131. zend_set_memory_limit(PG(memory_limit));
  1132. efree(buffer);
  1133. zend_objects_store_mark_destructed(&EG(objects_store) TSRMLS_CC);
  1134. zend_bailout();
  1135. return;
  1136. }
  1137. }
  1138. break;
  1139. }
  1140. }
  1141. /* Log if necessary */
  1142. if (!display) {
  1143. efree(buffer);
  1144. return;
  1145. }
  1146. if (PG(track_errors) && module_initialized) {
  1147. if (!EG(active_symbol_table)) {
  1148. zend_rebuild_symbol_table(TSRMLS_C);
  1149. }
  1150. if (EG(active_symbol_table)) {
  1151. zval *tmp;
  1152. ALLOC_INIT_ZVAL(tmp);
  1153. ZVAL_STRINGL(tmp, buffer, buffer_len, 1);
  1154. zend_hash_update(EG(active_symbol_table), "php_errormsg", sizeof("php_errormsg"), (void **) & tmp, sizeof(zval *), NULL);
  1155. }
  1156. }
  1157. efree(buffer);
  1158. }
  1159. /* }}} */
  1160. /* {{{ php_get_current_user
  1161. */
  1162. PHPAPI char *php_get_current_user(TSRMLS_D)
  1163. {
  1164. struct stat *pstat;
  1165. if (SG(request_info).current_user) {
  1166. return SG(request_info).current_user;
  1167. }
  1168. /* FIXME: I need to have this somehow handled if
  1169. USE_SAPI is defined, because cgi will also be
  1170. interfaced in USE_SAPI */
  1171. pstat = sapi_get_stat(TSRMLS_C);
  1172. if (!pstat) {
  1173. return "";
  1174. } else {
  1175. #ifdef PHP_WIN32
  1176. char name[256];
  1177. DWORD len = sizeof(name)-1;
  1178. if (!GetUserName(name, &len)) {
  1179. return "";
  1180. }
  1181. name[len] = '\0';
  1182. SG(request_info).current_user_length = len;
  1183. SG(request_info).current_user = estrndup(name, len);
  1184. return SG(request_info).current_user;
  1185. #else
  1186. struct passwd *pwd;
  1187. #if defined(ZTS) && defined(HAVE_GETPWUID_R) && defined(_SC_GETPW_R_SIZE_MAX)
  1188. struct passwd _pw;
  1189. struct passwd *retpwptr = NULL;
  1190. int pwbuflen = sysconf(_SC_GETPW_R_SIZE_MAX);
  1191. char *pwbuf;
  1192. if (pwbuflen < 1) {
  1193. return "";
  1194. }
  1195. pwbuf = emalloc(pwbuflen);
  1196. if (getpwuid_r(pstat->st_uid, &_pw, pwbuf, pwbuflen, &retpwptr) != 0) {
  1197. efree(pwbuf);
  1198. return "";
  1199. }
  1200. if (retpwptr == NULL) {
  1201. efree(pwbuf);
  1202. return "";
  1203. }
  1204. pwd = &_pw;
  1205. #else
  1206. if ((pwd=getpwuid(pstat->st_uid))==NULL) {
  1207. return "";
  1208. }
  1209. #endif
  1210. SG(request_info).current_user_length = strlen(pwd->pw_name);
  1211. SG(request_info).current_user = estrndup(pwd->pw_name, SG(request_info).current_user_length);
  1212. #if defined(ZTS) && defined(HAVE_GETPWUID_R) && defined(_SC_GETPW_R_SIZE_MAX)
  1213. efree(pwbuf);
  1214. #endif
  1215. return SG(request_info).current_user;
  1216. #endif
  1217. }
  1218. }
  1219. /* }}} */
  1220. /* {{{ proto bool set_time_limit(int seconds)
  1221. Sets the maximum time a script can run */
  1222. PHP_FUNCTION(set_time_limit)
  1223. {
  1224. long new_timeout;
  1225. char *new_timeout_str;
  1226. int new_timeout_strlen;
  1227. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &new_timeout) == FAILURE) {
  1228. return;
  1229. }
  1230. new_timeout_strlen = zend_spprintf(&new_timeout_str, 0, "%ld", new_timeout);
  1231. if (zend_alter_ini_entry_ex("max_execution_time", sizeof("max_execution_time"), new_timeout_str, new_timeout_strlen, PHP_INI_USER, PHP_INI_STAGE_RUNTIME, 0 TSRMLS_CC) == SUCCESS) {
  1232. RETVAL_TRUE;
  1233. } else {
  1234. RETVAL_FALSE;
  1235. }
  1236. efree(new_timeout_str);
  1237. }
  1238. /* }}} */
  1239. /* {{{ php_fopen_wrapper_for_zend
  1240. */
  1241. static FILE *php_fopen_wrapper_for_zend(const char *filename, char **opened_path TSRMLS_DC)
  1242. {
  1243. return php_stream_open_wrapper_as_file((char *)filename, "rb", USE_PATH|IGNORE_URL_WIN|REPORT_ERRORS|STREAM_OPEN_FOR_INCLUDE, opened_path);
  1244. }
  1245. /* }}} */
  1246. static void php_zend_stream_closer(void *handle TSRMLS_DC) /* {{{ */
  1247. {
  1248. php_stream_close((php_stream*)handle);
  1249. }
  1250. /* }}} */
  1251. static void php_zend_stream_mmap_closer(void *handle TSRMLS_DC) /* {{{ */
  1252. {
  1253. php_stream_mmap_unmap((php_stream*)handle);
  1254. php_zend_stream_closer(handle TSRMLS_CC);
  1255. }
  1256. /* }}} */
  1257. static size_t php_zend_stream_fsizer(void *handle TSRMLS_DC) /* {{{ */
  1258. {
  1259. php_stream_statbuf ssb;
  1260. if (php_stream_stat((php_stream*)handle, &ssb) == 0) {
  1261. return ssb.sb.st_size;
  1262. }
  1263. return 0;
  1264. }
  1265. /* }}} */
  1266. static int php_stream_open_for_zend(const char *filename, zend_file_handle *handle TSRMLS_DC) /* {{{ */
  1267. {
  1268. return php_stream_open_for_zend_ex(filename, handle, USE_PATH|REPORT_ERRORS|STREAM_OPEN_FOR_INCLUDE TSRMLS_CC);
  1269. }
  1270. /* }}} */
  1271. PHPAPI int php_stream_open_for_zend_ex(const char *filename, zend_file_handle *handle, int mode TSRMLS_DC) /* {{{ */
  1272. {
  1273. char *p;
  1274. size_t len, mapped_len;
  1275. php_stream *stream = php_stream_open_wrapper((char *)filename, "rb", mode, &handle->opened_path);
  1276. if (stream) {
  1277. #if HAVE_MMAP || defined(PHP_WIN32)
  1278. size_t page_size = REAL_PAGE_SIZE;
  1279. #endif
  1280. handle->filename = (char*)filename;
  1281. handle->free_filename = 0;
  1282. handle->handle.stream.handle = stream;
  1283. handle->handle.stream.reader = (zend_stream_reader_t)_php_stream_read;
  1284. handle->handle.stream.fsizer = php_zend_stream_fsizer;
  1285. handle->handle.stream.isatty = 0;
  1286. /* can we mmap immediately? */
  1287. memset(&handle->handle.stream.mmap, 0, sizeof(handle->handle.stream.mmap));
  1288. len = php_zend_stream_fsizer(stream TSRMLS_CC);
  1289. if (len != 0
  1290. #if HAVE_MMAP || defined(PHP_WIN32)
  1291. && ((len - 1) % page_size) <= page_size - ZEND_MMAP_AHEAD
  1292. #endif
  1293. && php_stream_mmap_possible(stream)
  1294. && (p = php_stream_mmap_range(stream, 0, len, PHP_STREAM_MAP_MODE_SHARED_READONLY, &mapped_len)) != NULL) {
  1295. handle->handle.stream.closer = php_zend_stream_mmap_closer;
  1296. handle->handle.stream.mmap.buf = p;
  1297. handle->handle.stream.mmap.len = mapped_len;
  1298. handle->type = ZEND_HANDLE_MAPPED;
  1299. } else {
  1300. handle->handle.stream.closer = php_zend_stream_closer;
  1301. handle->type = ZEND_HANDLE_STREAM;
  1302. }
  1303. /* suppress warning if this stream is not explicitly closed */
  1304. php_stream_auto_cleanup(stream);
  1305. return SUCCESS;
  1306. }
  1307. return FAILURE;
  1308. }
  1309. /* }}} */
  1310. static char *php_resolve_path_for_zend(const char *filename, int filename_len TSRMLS_DC) /* {{{ */
  1311. {
  1312. return php_resolve_path(filename, filename_len, PG(include_path) TSRMLS_CC);
  1313. }
  1314. /* }}} */
  1315. /* {{{ php_get_configuration_directive_for_zend
  1316. */
  1317. static int php_get_configuration_directive_for_zend(const char *name, uint name_length, zval *contents)
  1318. {
  1319. zval *retval = cfg_get_entry(name, name_length);
  1320. if (retval) {
  1321. *contents = *retval;
  1322. return SUCCESS;
  1323. } else {
  1324. return FAILURE;
  1325. }
  1326. }
  1327. /* }}} */
  1328. /* {{{ php_message_handler_for_zend
  1329. */
  1330. static void php_message_handler_for_zend(long message, const void *data TSRMLS_DC)
  1331. {
  1332. switch (message) {
  1333. case ZMSG_FAILED_INCLUDE_FOPEN:
  1334. php_error_docref("function.include" TSRMLS_CC, E_WARNING, "Failed opening '%s' for inclusion (include_path='%s')", php_strip_url_passwd((char *) data), STR_PRINT(PG(include_path)));
  1335. break;
  1336. case ZMSG_FAILED_REQUIRE_FOPEN:
  1337. php_error_docref("function.require" TSRMLS_CC, E_COMPILE_ERROR, "Failed opening required '%s' (include_path='%s')", php_strip_url_passwd((char *) data), STR_PRINT(PG(include_path)));
  1338. break;
  1339. case ZMSG_FAILED_HIGHLIGHT_FOPEN:
  1340. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed opening '%s' for highlighting", php_strip_url_passwd((char *) data));
  1341. break;
  1342. case ZMSG_MEMORY_LEAK_DETECTED:
  1343. case ZMSG_MEMORY_LEAK_REPEATED:
  1344. #if ZEND_DEBUG
  1345. if (EG(error_reporting) & E_WARNING) {
  1346. char memory_leak_buf[1024];
  1347. if (message==ZMSG_MEMORY_LEAK_DETECTED) {
  1348. zend_leak_info *t = (zend_leak_info *) data;
  1349. snprintf(memory_leak_buf, 512, "%s(%d) : Freeing 0x%.8lX (%zu bytes), script=%s\n", t->filename, t->lineno, (zend_uintptr_t)t->addr, t->size, SAFE_FILENAME(SG(request_info).path_translated));
  1350. if (t->orig_filename) {
  1351. char relay_buf[512];
  1352. snprintf(relay_buf, 512, "%s(%d) : Actual location (location was relayed)\n", t->orig_filename, t->orig_lineno);
  1353. strlcat(memory_leak_buf, relay_buf, sizeof(memory_leak_buf));
  1354. }
  1355. } else {
  1356. unsigned long leak_count = (zend_uintptr_t) data;
  1357. snprintf(memory_leak_buf, 512, "Last leak repeated %ld time%s\n", leak_count, (leak_count>1?"s":""));
  1358. }
  1359. # if defined(PHP_WIN32)
  1360. OutputDebugString(memory_leak_buf);
  1361. # else
  1362. fprintf(stderr, "%s", memory_leak_buf);
  1363. # endif
  1364. }
  1365. #endif
  1366. break;
  1367. case ZMSG_MEMORY_LEAKS_GRAND_TOTAL:
  1368. #if ZEND_DEBUG
  1369. if (EG(error_reporting) & E_WARNING) {
  1370. char memory_leak_buf[512];
  1371. snprintf(memory_leak_buf, 512, "=== Total %d memory leaks detected ===\n", *((zend_uint *) data));
  1372. # if defined(PHP_WIN32)
  1373. OutputDebugString(memory_leak_buf);
  1374. # else
  1375. fprintf(stderr, "%s", memory_leak_buf);
  1376. # endif
  1377. }
  1378. #endif
  1379. break;
  1380. case ZMSG_LOG_SCRIPT_NAME: {
  1381. struct tm *ta, tmbuf;
  1382. time_t curtime;
  1383. char *datetime_str, asctimebuf[52];
  1384. char memory_leak_buf[4096];
  1385. time(&curtime);
  1386. ta = php_localtime_r(&curtime, &tmbuf);
  1387. datetime_str = php_asctime_r(ta, asctimebuf);
  1388. if (datetime_str) {
  1389. datetime_str[strlen(datetime_str)-1]=0; /* get rid of the trailing newline */
  1390. snprintf(memory_leak_buf, sizeof(memory_leak_buf), "[%s] Script: '%s'\n", datetime_str, SAFE_FILENAME(SG(request_info).path_translated));
  1391. } else {
  1392. snprintf(memory_leak_buf, sizeof(memory_leak_buf), "[null] Script: '%s'\n", SAFE_FILENAME(SG(request_info).path_translated));
  1393. }
  1394. # if defined(PHP_WIN32)
  1395. OutputDebugString(memory_leak_buf);
  1396. # else
  1397. fprintf(stderr, "%s", memory_leak_buf);
  1398. # endif
  1399. }
  1400. break;
  1401. }
  1402. }
  1403. /* }}} */
  1404. void php_on_timeout(int seconds TSRMLS_DC)
  1405. {
  1406. PG(connection_status) |= PHP_CONNECTION_TIMEOUT;
  1407. zend_set_timeout(EG(timeout_seconds), 1);
  1408. if(PG(exit_on_timeout)) sapi_terminate_process(TSRMLS_C);
  1409. }
  1410. #if PHP_SIGCHILD
  1411. /* {{{ sigchld_handler
  1412. */
  1413. static void sigchld_handler(int apar)
  1414. {
  1415. int errno_save = errno;
  1416. while (waitpid(-1, NULL, WNOHANG) > 0);
  1417. signal(SIGCHLD, sigchld_handler);
  1418. errno = errno_save;
  1419. }
  1420. /* }}} */
  1421. #endif
  1422. /* {{{ php_start_sapi()
  1423. */
  1424. static int php_start_sapi(TSRMLS_D)
  1425. {
  1426. int retval = SUCCESS;
  1427. if(!SG(sapi_started)) {
  1428. zend_try {
  1429. PG(during_request_startup) = 1;
  1430. /* initialize global variables */
  1431. PG(modules_activated) = 0;
  1432. PG(header_is_being_sent) = 0;
  1433. PG(connection_status) = PHP_CONNECTION_NORMAL;
  1434. zend_activate(TSRMLS_C);
  1435. zend_set_timeout(EG(timeout_seconds), 1);
  1436. zend_activate_modules(TSRMLS_C);
  1437. PG(modules_activated)=1;
  1438. } zend_catch {
  1439. retval = FAILURE;
  1440. } zend_end_try();
  1441. SG(sapi_started) = 1;
  1442. }
  1443. return retval;
  1444. }
  1445. /* }}} */
  1446. /* {{{ php_request_startup
  1447. */
  1448. #ifndef APACHE_HOOKS
  1449. int php_request_startup(TSRMLS_D)
  1450. {
  1451. int retval = SUCCESS;
  1452. #ifdef HAVE_DTRACE
  1453. DTRACE_REQUEST_STARTUP(SAFE_FILENAME(SG(request_info).path_translated), SAFE_FILENAME(SG(request_info).request_uri), (char *)SAFE_FILENAME(SG(request_info).request_method));
  1454. #endif /* HAVE_DTRACE */
  1455. #ifdef PHP_WIN32
  1456. # if defined(ZTS)
  1457. _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
  1458. # endif
  1459. PG(com_initialized) = 0;
  1460. #endif
  1461. #if PHP_SIGCHILD
  1462. signal(SIGCHLD, sigchld_handler);
  1463. #endif
  1464. zend_try {
  1465. PG(in_error_log) = 0;
  1466. PG(during_request_startup) = 1;
  1467. php_output_activate(TSRMLS_C);
  1468. /* initialize global variables */
  1469. PG(modules_activated) = 0;
  1470. PG(header_is_being_sent) = 0;
  1471. PG(connection_status) = PHP_CONNECTION_NORMAL;
  1472. PG(in_user_include) = 0;
  1473. zend_activate(TSRMLS_C);
  1474. sapi_activate(TSRMLS_C);
  1475. #ifdef ZEND_SIGNALS
  1476. zend_signal_activate(TSRMLS_C);
  1477. #endif
  1478. if (PG(max_input_time) == -1) {
  1479. zend_set_timeout(EG(timeout_seconds), 1);
  1480. } else {
  1481. zend_set_timeout(PG(max_input_time), 1);
  1482. }
  1483. /* Disable realpath cache if an open_basedir is set */
  1484. if (PG(open_basedir) && *PG(open_basedir)) {
  1485. CWDG(realpath_cache_size_limit) = 0;
  1486. }
  1487. if (PG(expose_php)) {
  1488. sapi_add_header(SAPI_PHP_VERSION_HEADER, sizeof(SAPI_PHP_VERSION_HEADER)-1, 1);
  1489. }
  1490. if (PG(output_handler) && PG(output_handler)[0]) {
  1491. zval *oh;
  1492. MAKE_STD_ZVAL(oh);
  1493. ZVAL_STRING(oh, PG(output_handler), 1);
  1494. php_output_start_user(oh, 0, PHP_OUTPUT_HANDLER_STDFLAGS TSRMLS_CC);
  1495. zval_ptr_dtor(&oh);
  1496. } else if (PG(output_buffering)) {
  1497. php_output_start_user(NULL, PG(output_buffering) > 1 ? PG(output_buffering) : 0, PHP_OUTPUT_HANDLER_STDFLAGS TSRMLS_CC);
  1498. } else if (PG(implicit_flush)) {
  1499. php_output_set_implicit_flush(1 TSRMLS_CC);
  1500. }
  1501. /* We turn this off in php_execute_script() */
  1502. /* PG(during_request_startup) = 0; */
  1503. php_hash_environment(TSRMLS_C);
  1504. zend_activate_modules(TSRMLS_C);
  1505. PG(modules_activated)=1;
  1506. } zend_catch {
  1507. retval = FAILURE;
  1508. } zend_end_try();
  1509. SG(sapi_started) = 1;
  1510. return retval;
  1511. }
  1512. # else
  1513. int php_request_startup(TSRMLS_D)
  1514. {
  1515. int retval = SUCCESS;
  1516. #if PHP_SIGCHILD
  1517. signal(SIGCHLD, sigchld_handler);
  1518. #endif
  1519. if (php_start_sapi() == FAILURE) {
  1520. return FAILURE;
  1521. }
  1522. php_output_activate(TSRMLS_C);
  1523. sapi_activate(TSRMLS_C);
  1524. php_hash_environment(TSRMLS_C);
  1525. zend_try {
  1526. PG(during_request_startup) = 1;
  1527. if (PG(expose_php)) {
  1528. sapi_add_header(SAPI_PHP_VERSION_HEADER, sizeof(SAPI_PHP_VERSION_HEADER)-1, 1);
  1529. }
  1530. } zend_catch {
  1531. retval = FAILURE;
  1532. } zend_end_try();
  1533. return retval;
  1534. }
  1535. # endif
  1536. /* }}} */
  1537. /* {{{ php_request_startup_for_hook
  1538. */
  1539. int php_request_startup_for_hook(TSRMLS_D)
  1540. {
  1541. int retval = SUCCESS;
  1542. #if PHP_SIGCHLD
  1543. signal(SIGCHLD, sigchld_handler);
  1544. #endif
  1545. if (php_start_sapi(TSRMLS_C) == FAILURE) {
  1546. return FAILURE;
  1547. }
  1548. php_output_activate(TSRMLS_C);
  1549. sapi_activate_headers_only(TSRMLS_C);
  1550. php_hash_environment(TSRMLS_C);
  1551. return retval;
  1552. }
  1553. /* }}} */
  1554. /* {{{ php_request_shutdown_for_exec
  1555. */
  1556. void php_request_shutdown_for_exec(void *dummy)
  1557. {
  1558. TSRMLS_FETCH();
  1559. /* used to close fd's in the 3..255 range here, but it's problematic
  1560. */
  1561. shutdown_memory_manager(1, 1 TSRMLS_CC);
  1562. zend_interned_strings_restore(TSRMLS_C);
  1563. }
  1564. /* }}} */
  1565. /* {{{ php_request_shutdown_for_hook
  1566. */
  1567. void php_request_shutdown_for_hook(void *dummy)
  1568. {
  1569. TSRMLS_FETCH();
  1570. if (PG(modules_activated)) zend_try {
  1571. php_call_shutdown_functions(TSRMLS_C);
  1572. } zend_end_try();
  1573. if (PG(modules_activated)) {
  1574. zend_deactivate_modules(TSRMLS_C);
  1575. php_free_shutdown_functions(TSRMLS_C);
  1576. }
  1577. zend_try {
  1578. zend_unset_timeout(TSRMLS_C);
  1579. } zend_end_try();
  1580. zend_try {
  1581. int i;
  1582. for (i = 0; i < NUM_TRACK_VARS; i++) {
  1583. if (PG(http_globals)[i]) {
  1584. zval_ptr_dtor(&PG(http_globals)[i]);
  1585. }
  1586. }
  1587. } zend_end_try();
  1588. zend_deactivate(TSRMLS_C);
  1589. zend_try {
  1590. sapi_deactivate(TSRMLS_C);
  1591. } zend_end_try();
  1592. zend_try {
  1593. php_shutdown_stream_hashes(TSRMLS_C);
  1594. } zend_end_try();
  1595. zend_try {
  1596. shutdown_memory_manager(CG(unclean_shutdown), 0 TSRMLS_CC);
  1597. } zend_end_try();
  1598. zend_interned_strings_restore(TSRMLS_C);
  1599. #ifdef ZEND_SIGNALS
  1600. zend_try {
  1601. zend_signal_deactivate(TSRMLS_C);
  1602. } zend_end_try();
  1603. #endif
  1604. }
  1605. /* }}} */
  1606. /* {{{ php_request_shutdown
  1607. */
  1608. void php_request_shutdown(void *dummy)
  1609. {
  1610. zend_bool report_memleaks;
  1611. TSRMLS_FETCH();
  1612. report_memleaks = PG(report_memleaks);
  1613. /* EG(opline_ptr) points into nirvana and therefore cannot be safely accessed
  1614. * inside zend_executor callback functions.
  1615. */
  1616. EG(opline_ptr) = NULL;
  1617. EG(active_op_array) = NULL;
  1618. php_deactivate_ticks(TSRMLS_C);
  1619. /* 1. Call all possible shutdown functions registered with register_shutdown_function() */
  1620. if (PG(modules_activated)) zend_try {
  1621. php_call_shutdown_functions(TSRMLS_C);
  1622. } zend_end_try();
  1623. /* 2. Call all possible __destruct() functions */
  1624. zend_try {
  1625. zend_call_destructors(TSRMLS_C);
  1626. } zend_end_try();
  1627. /* 3. Flush all output buffers */
  1628. zend_try {
  1629. zend_bool send_buffer = SG(request_info).headers_only ? 0 : 1;
  1630. if (CG(unclean_shutdown) && PG(last_error_type) == E_ERROR &&
  1631. (size_t)PG(memory_limit) < zend_memory_usage(1 TSRMLS_CC)
  1632. ) {
  1633. send_buffer = 0;
  1634. }
  1635. if (!send_buffer) {
  1636. php_output_discard_all(TSRMLS_C);
  1637. } else {
  1638. php_output_end_all(TSRMLS_C);
  1639. }
  1640. } zend_end_try();
  1641. /* 4. Reset max_execution_time (no longer executing php code after response sent) */
  1642. zend_try {
  1643. zend_unset_timeout(TSRMLS_C);
  1644. } zend_end_try();
  1645. /* 5. Call all extensions RSHUTDOWN functions */
  1646. if (PG(modules_activated)) {
  1647. zend_deactivate_modules(TSRMLS_C);
  1648. php_free_shutdown_functions(TSRMLS_C);
  1649. }
  1650. /* 6. Shutdown output layer (send the set HTTP headers, cleanup output handlers, etc.) */
  1651. zend_try {
  1652. php_output_deactivate(TSRMLS_C);
  1653. } zend_end_try();
  1654. /* 7. Destroy super-globals */
  1655. zend_try {
  1656. int i;
  1657. for (i=0; i<NUM_TRACK_VARS; i++) {
  1658. if (PG(http_globals)[i]) {
  1659. zval_ptr_dtor(&PG(http_globals)[i]);
  1660. }
  1661. }
  1662. } zend_end_try();
  1663. /* 7.5 free last error information and temp dir */
  1664. if (PG(last_error_message)) {
  1665. free(PG(last_error_message));
  1666. PG(last_error_message) = NULL;
  1667. }
  1668. if (PG(last_error_file)) {
  1669. free(PG(last_error_file));
  1670. PG(last_error_file) = NULL;
  1671. }
  1672. php_shutdown_temporary_directory();
  1673. /* 7. Shutdown scanner/executor/compiler and restore ini entries */
  1674. zend_deactivate(TSRMLS_C);
  1675. /* 8. Call all extensions post-RSHUTDOWN functions */
  1676. zend_try {
  1677. zend_post_deactivate_modules(TSRMLS_C);
  1678. } zend_end_try();
  1679. /* 9. SAPI related shutdown (free stuff) */
  1680. zend_try {
  1681. sapi_deactivate(TSRMLS_C);
  1682. } zend_end_try();
  1683. /* 9.5 free virtual CWD memory */
  1684. virtual_cwd_deactivate(TSRMLS_C);
  1685. /* 10. Destroy stream hashes */
  1686. zend_try {
  1687. php_shutdown_stream_hashes(TSRMLS_C);
  1688. } zend_end_try();
  1689. /* 11. Free Willy (here be crashes) */
  1690. zend_try {
  1691. shutdown_memory_manager(CG(unclean_shutdown) || !report_memleaks, 0 TSRMLS_CC);
  1692. } zend_end_try();
  1693. zend_interned_strings_restore(TSRMLS_C);
  1694. /* 12. Reset max_execution_time */
  1695. zend_try {
  1696. zend_unset_timeout(TSRMLS_C);
  1697. } zend_end_try();
  1698. #ifdef PHP_WIN32
  1699. if (PG(com_initialized)) {
  1700. CoUninitialize();
  1701. PG(com_initialized) = 0;
  1702. }
  1703. #endif
  1704. #ifdef HAVE_DTRACE
  1705. DTRACE_REQUEST_SHUTDOWN(SAFE_FILENAME(SG(request_info).path_translated), SAFE_FILENAME(SG(request_info).request_uri), (char *)SAFE_FILENAME(SG(request_info).request_method));
  1706. #endif /* HAVE_DTRACE */
  1707. }
  1708. /* }}} */
  1709. /* {{{ php_com_initialize
  1710. */
  1711. PHPAPI void php_com_initialize(TSRMLS_D)
  1712. {
  1713. #ifdef PHP_WIN32
  1714. if (!PG(com_initialized)) {
  1715. if (CoInitialize(NULL) == S_OK) {
  1716. PG(com_initialized) = 1;
  1717. }
  1718. }
  1719. #endif
  1720. }
  1721. /* }}} */
  1722. /* {{{ php_output_wrapper
  1723. */
  1724. static int php_output_wrapper(const char *str, uint str_length)
  1725. {
  1726. TSRMLS_FETCH();
  1727. return php_output_write(str, str_length TSRMLS_CC);
  1728. }
  1729. /* }}} */
  1730. #ifdef ZTS
  1731. /* {{{ core_globals_ctor
  1732. */
  1733. static void core_globals_ctor(php_core_globals *core_globals TSRMLS_DC)
  1734. {
  1735. memset(core_globals, 0, sizeof(*core_globals));
  1736. php_startup_ticks(TSRMLS_C);
  1737. }
  1738. /* }}} */
  1739. #endif
  1740. /* {{{ core_globals_dtor
  1741. */
  1742. static void core_globals_dtor(php_core_globals *core_globals TSRMLS_DC)
  1743. {
  1744. if (core_globals->last_error_message) {
  1745. free(core_globals->last_error_message);
  1746. }
  1747. if (core_globals->last_error_file) {
  1748. free(core_globals->last_error_file);
  1749. }
  1750. if (core_globals->disable_functions) {
  1751. free(core_globals->disable_functions);
  1752. }
  1753. if (core_globals->disable_classes) {
  1754. free(core_globals->disable_classes);
  1755. }
  1756. if (core_globals->php_binary) {
  1757. free(core_globals->php_binary);
  1758. }
  1759. php_shutdown_ticks(TSRMLS_C);
  1760. }
  1761. /* }}} */
  1762. PHP_MINFO_FUNCTION(php_core) { /* {{{ */
  1763. php_info_print_table_start();
  1764. php_info_print_table_row(2, "PHP Version", PHP_VERSION);
  1765. php_info_print_table_end();
  1766. DISPLAY_INI_ENTRIES();
  1767. }
  1768. /* }}} */
  1769. /* {{{ php_register_extensions
  1770. */
  1771. int php_register_extensions(zend_module_entry **ptr, int count TSRMLS_DC)
  1772. {
  1773. zend_module_entry **end = ptr + count;
  1774. while (ptr < end) {
  1775. if (*ptr) {
  1776. if (zend_register_internal_module(*ptr TSRMLS_CC)==NULL) {
  1777. return FAILURE;
  1778. }
  1779. }
  1780. ptr++;
  1781. }
  1782. return SUCCESS;
  1783. }
  1784. /* A very long time ago php_module_startup() was refactored in a way
  1785. * which broke calling it with more than one additional module.
  1786. * This alternative to php_register_extensions() works around that
  1787. * by walking the shallower structure.
  1788. *
  1789. * See algo: https://bugs.php.net/bug.php?id=63159
  1790. */
  1791. static int php_register_extensions_bc(zend_module_entry *ptr, int count TSRMLS_DC)
  1792. {
  1793. while (count--) {
  1794. if (zend_register_internal_module(ptr++ TSRMLS_CC) == NULL) {
  1795. return FAILURE;
  1796. }
  1797. }
  1798. return SUCCESS;
  1799. }
  1800. /* }}} */
  1801. #if defined(PHP_WIN32) && _MSC_VER >= 1400
  1802. static _invalid_parameter_handler old_invalid_parameter_handler;
  1803. void dummy_invalid_parameter_handler(
  1804. const wchar_t *expression,
  1805. const wchar_t *function,
  1806. const wchar_t *file,
  1807. unsigned int line,
  1808. uintptr_t pEwserved)
  1809. {
  1810. static int called = 0;
  1811. char buf[1024];
  1812. int len;
  1813. if (!called) {
  1814. TSRMLS_FETCH();
  1815. if(PG(windows_show_crt_warning)) {
  1816. called = 1;
  1817. if (function) {
  1818. if (file) {
  1819. len = _snprintf(buf, sizeof(buf)-1, "Invalid parameter detected in CRT function '%ws' (%ws:%d)", function, file, line);
  1820. } else {
  1821. len = _snprintf(buf, sizeof(buf)-1, "Invalid parameter detected in CRT function '%ws'", function);
  1822. }
  1823. } else {
  1824. len = _snprintf(buf, sizeof(buf)-1, "Invalid CRT parameter detected (function not known)");
  1825. }
  1826. zend_error(E_WARNING, "%s", buf);
  1827. called = 0;
  1828. }
  1829. }
  1830. }
  1831. #endif
  1832. /* {{{ php_module_startup
  1833. */
  1834. int php_module_startup(sapi_module_struct *sf, zend_module_entry *additional_modules, uint num_additional_modules)
  1835. {
  1836. zend_utility_functions zuf;
  1837. zend_utility_values zuv;
  1838. int retval = SUCCESS, module_number=0; /* for REGISTER_INI_ENTRIES() */
  1839. char *php_os;
  1840. zend_module_entry *module;
  1841. #ifdef ZTS
  1842. zend_executor_globals *executor_globals;
  1843. void ***tsrm_ls;
  1844. php_core_globals *core_globals;
  1845. #endif
  1846. #if defined(PHP_WIN32) || (defined(NETWARE) && defined(USE_WINSOCK))
  1847. WORD wVersionRequested = MAKEWORD(2, 0);
  1848. WSADATA wsaData;
  1849. #endif
  1850. #ifdef PHP_WIN32
  1851. php_os = "WINNT";
  1852. #if _MSC_VER >= 1400
  1853. old_invalid_parameter_handler =
  1854. _set_invalid_parameter_handler(dummy_invalid_parameter_handler);
  1855. if (old_invalid_parameter_handler != NULL) {
  1856. _set_invalid_parameter_handler(old_invalid_parameter_handler);
  1857. }
  1858. /* Disable the message box for assertions.*/
  1859. _CrtSetReportMode(_CRT_ASSERT, 0);
  1860. #endif
  1861. #else
  1862. php_os=PHP_OS;
  1863. #endif
  1864. #ifdef ZTS
  1865. tsrm_ls = ts_resource(0);
  1866. #endif
  1867. #ifdef PHP_WIN32
  1868. php_win32_init_rng_lock();
  1869. #endif
  1870. module_shutdown = 0;
  1871. module_startup = 1;
  1872. sapi_initialize_empty_request(TSRMLS_C);
  1873. sapi_activate(TSRMLS_C);
  1874. if (module_initialized) {
  1875. return SUCCESS;
  1876. }
  1877. sapi_module = *sf;
  1878. php_output_startup();
  1879. zuf.error_function = php_error_cb;
  1880. zuf.printf_function = php_printf;
  1881. zuf.write_function = php_output_wrapper;
  1882. zuf.fopen_function = php_fopen_wrapper_for_zend;
  1883. zuf.message_handler = php_message_handler_for_zend;
  1884. zuf.block_interruptions = sapi_module.block_interruptions;
  1885. zuf.unblock_interruptions = sapi_module.unblock_interruptions;
  1886. zuf.get_configuration_directive = php_get_configuration_directive_for_zend;
  1887. zuf.ticks_function = php_run_ticks;
  1888. zuf.on_timeout = php_on_timeout;
  1889. zuf.stream_open_function = php_stream_open_for_zend;
  1890. zuf.vspprintf_function = vspprintf;
  1891. zuf.getenv_function = sapi_getenv;
  1892. zuf.resolve_path_function = php_resolve_path_for_zend;
  1893. zend_startup(&zuf, NULL TSRMLS_CC);
  1894. #ifdef ZTS
  1895. executor_globals = ts_resource(executor_globals_id);
  1896. ts_allocate_id(&core_globals_id, sizeof(php_core_globals), (ts_allocate_ctor) core_globals_ctor, (ts_allocate_dtor) core_globals_dtor);
  1897. core_globals = ts_resource(core_globals_id);
  1898. #ifdef PHP_WIN32
  1899. ts_allocate_id(&php_win32_core_globals_id, sizeof(php_win32_core_globals), (ts_allocate_ctor) php_win32_core_globals_ctor, (ts_allocate_dtor) php_win32_core_globals_dtor);
  1900. #endif
  1901. #else
  1902. php_startup_ticks(TSRMLS_C);
  1903. #endif
  1904. gc_globals_ctor(TSRMLS_C);
  1905. #ifdef PHP_WIN32
  1906. {
  1907. OSVERSIONINFOEX *osvi = &EG(windows_version_info);
  1908. ZeroMemory(osvi, sizeof(OSVERSIONINFOEX));
  1909. osvi->dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
  1910. if( !GetVersionEx((OSVERSIONINFO *) osvi)) {
  1911. php_printf("\nGetVersionEx unusable. %d\n", GetLastError());
  1912. return FAILURE;
  1913. }
  1914. }
  1915. #endif
  1916. EG(bailout) = NULL;
  1917. EG(error_reporting) = E_ALL & ~E_NOTICE;
  1918. EG(active_symbol_table) = NULL;
  1919. PG(header_is_being_sent) = 0;
  1920. SG(request_info).headers_only = 0;
  1921. SG(request_info).argv0 = NULL;
  1922. SG(request_info).argc=0;
  1923. SG(request_info).argv=(char **)NULL;
  1924. PG(connection_status) = PHP_CONNECTION_NORMAL;
  1925. PG(during_request_startup) = 0;
  1926. PG(last_error_message) = NULL;
  1927. PG(last_error_file) = NULL;
  1928. PG(last_error_lineno) = 0;
  1929. EG(error_handling) = EH_NORMAL;
  1930. EG(exception_class) = NULL;
  1931. PG(disable_functions) = NULL;
  1932. PG(disable_classes) = NULL;
  1933. EG(exception) = NULL;
  1934. EG(objects_store).object_buckets = NULL;
  1935. #if HAVE_SETLOCALE
  1936. setlocale(LC_CTYPE, "");
  1937. zend_update_current_locale();
  1938. #endif
  1939. #if HAVE_TZSET
  1940. tzset();
  1941. #endif
  1942. #if defined(PHP_WIN32) || (defined(NETWARE) && defined(USE_WINSOCK))
  1943. /* start up winsock services */
  1944. if (WSAStartup(wVersionRequested, &wsaData) != 0) {
  1945. php_printf("\nwinsock.dll unusable. %d\n", WSAGetLastError());
  1946. return FAILURE;
  1947. }
  1948. #endif
  1949. le_index_ptr = zend_register_list_destructors_ex(NULL, NULL, "index pointer", 0);
  1950. /* Register constants */
  1951. REGISTER_MAIN_STRINGL_CONSTANT("PHP_VERSION", PHP_VERSION, sizeof(PHP_VERSION)-1, CONST_PERSISTENT | CONST_CS);
  1952. REGISTER_MAIN_LONG_CONSTANT("PHP_MAJOR_VERSION", PHP_MAJOR_VERSION, CONST_PERSISTENT | CONST_CS);
  1953. REGISTER_MAIN_LONG_CONSTANT("PHP_MINOR_VERSION", PHP_MINOR_VERSION, CONST_PERSISTENT | CONST_CS);
  1954. REGISTER_MAIN_LONG_CONSTANT("PHP_RELEASE_VERSION", PHP_RELEASE_VERSION, CONST_PERSISTENT | CONST_CS);
  1955. REGISTER_MAIN_STRINGL_CONSTANT("PHP_EXTRA_VERSION", PHP_EXTRA_VERSION, sizeof(PHP_EXTRA_VERSION) - 1, CONST_PERSISTENT | CONST_CS);
  1956. REGISTER_MAIN_LONG_CONSTANT("PHP_VERSION_ID", PHP_VERSION_ID, CONST_PERSISTENT | CONST_CS);
  1957. #ifdef ZTS
  1958. REGISTER_MAIN_LONG_CONSTANT("PHP_ZTS", 1, CONST_PERSISTENT | CONST_CS);
  1959. #else
  1960. REGISTER_MAIN_LONG_CONSTANT("PHP_ZTS", 0, CONST_PERSISTENT | CONST_CS);
  1961. #endif
  1962. REGISTER_MAIN_LONG_CONSTANT("PHP_DEBUG", PHP_DEBUG, CONST_PERSISTENT | CONST_CS);
  1963. REGISTER_MAIN_STRINGL_CONSTANT("PHP_OS", php_os, strlen(php_os), CONST_PERSISTENT | CONST_CS);
  1964. REGISTER_MAIN_STRINGL_CONSTANT("PHP_SAPI", sapi_module.name, strlen(sapi_module.name), CONST_PERSISTENT | CONST_CS);
  1965. REGISTER_MAIN_STRINGL_CONSTANT("DEFAULT_INCLUDE_PATH", PHP_INCLUDE_PATH, sizeof(PHP_INCLUDE_PATH)-1, CONST_PERSISTENT | CONST_CS);
  1966. REGISTER_MAIN_STRINGL_CONSTANT("PEAR_INSTALL_DIR", PEAR_INSTALLDIR, sizeof(PEAR_INSTALLDIR)-1, CONST_PERSISTENT | CONST_CS);
  1967. REGISTER_MAIN_STRINGL_CONSTANT("PEAR_EXTENSION_DIR", PHP_EXTENSION_DIR, sizeof(PHP_EXTENSION_DIR)-1, CONST_PERSISTENT | CONST_CS);
  1968. REGISTER_MAIN_STRINGL_CONSTANT("PHP_EXTENSION_DIR", PHP_EXTENSION_DIR, sizeof(PHP_EXTENSION_DIR)-1, CONST_PERSISTENT | CONST_CS);
  1969. REGISTER_MAIN_STRINGL_CONSTANT("PHP_PREFIX", PHP_PREFIX, sizeof(PHP_PREFIX)-1, CONST_PERSISTENT | CONST_CS);
  1970. REGISTER_MAIN_STRINGL_CONSTANT("PHP_BINDIR", PHP_BINDIR, sizeof(PHP_BINDIR)-1, CONST_PERSISTENT | CONST_CS);
  1971. #ifndef PHP_WIN32
  1972. REGISTER_MAIN_STRINGL_CONSTANT("PHP_MANDIR", PHP_MANDIR, sizeof(PHP_MANDIR)-1, CONST_PERSISTENT | CONST_CS);
  1973. #endif
  1974. REGISTER_MAIN_STRINGL_CONSTANT("PHP_LIBDIR", PHP_LIBDIR, sizeof(PHP_LIBDIR)-1, CONST_PERSISTENT | CONST_CS);
  1975. REGISTER_MAIN_STRINGL_CONSTANT("PHP_DATADIR", PHP_DATADIR, sizeof(PHP_DATADIR)-1, CONST_PERSISTENT | CONST_CS);
  1976. REGISTER_MAIN_STRINGL_CONSTANT("PHP_SYSCONFDIR", PHP_SYSCONFDIR, sizeof(PHP_SYSCONFDIR)-1, CONST_PERSISTENT | CONST_CS);
  1977. REGISTER_MAIN_STRINGL_CONSTANT("PHP_LOCALSTATEDIR", PHP_LOCALSTATEDIR, sizeof(PHP_LOCALSTATEDIR)-1, CONST_PERSISTENT | CONST_CS);
  1978. REGISTER_MAIN_STRINGL_CONSTANT("PHP_CONFIG_FILE_PATH", PHP_CONFIG_FILE_PATH, strlen(PHP_CONFIG_FILE_PATH), CONST_PERSISTENT | CONST_CS);
  1979. REGISTER_MAIN_STRINGL_CONSTANT("PHP_CONFIG_FILE_SCAN_DIR", PHP_CONFIG_FILE_SCAN_DIR, sizeof(PHP_CONFIG_FILE_SCAN_DIR)-1, CONST_PERSISTENT | CONST_CS);
  1980. REGISTER_MAIN_STRINGL_CONSTANT("PHP_SHLIB_SUFFIX", PHP_SHLIB_SUFFIX, sizeof(PHP_SHLIB_SUFFIX)-1, CONST_PERSISTENT | CONST_CS);
  1981. REGISTER_MAIN_STRINGL_CONSTANT("PHP_EOL", PHP_EOL, sizeof(PHP_EOL)-1, CONST_PERSISTENT | CONST_CS);
  1982. REGISTER_MAIN_LONG_CONSTANT("PHP_MAXPATHLEN", MAXPATHLEN, CONST_PERSISTENT | CONST_CS);
  1983. REGISTER_MAIN_LONG_CONSTANT("PHP_INT_MAX", LONG_MAX, CONST_PERSISTENT | CONST_CS);
  1984. REGISTER_MAIN_LONG_CONSTANT("PHP_INT_SIZE", sizeof(long), CONST_PERSISTENT | CONST_CS);
  1985. #ifdef PHP_WIN32
  1986. REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_MAJOR", EG(windows_version_info).dwMajorVersion, CONST_PERSISTENT | CONST_CS);
  1987. REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_MINOR", EG(windows_version_info).dwMinorVersion, CONST_PERSISTENT | CONST_CS);
  1988. REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_BUILD", EG(windows_version_info).dwBuildNumber, CONST_PERSISTENT | CONST_CS);
  1989. REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_PLATFORM", EG(windows_version_info).dwPlatformId, CONST_PERSISTENT | CONST_CS);
  1990. REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_SP_MAJOR", EG(windows_version_info).wServicePackMajor, CONST_PERSISTENT | CONST_CS);
  1991. REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_SP_MINOR", EG(windows_version_info).wServicePackMinor, CONST_PERSISTENT | CONST_CS);
  1992. REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_SUITEMASK", EG(windows_version_info).wSuiteMask, CONST_PERSISTENT | CONST_CS);
  1993. REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_PRODUCTTYPE", EG(windows_version_info).wProductType, CONST_PERSISTENT | CONST_CS);
  1994. REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_NT_DOMAIN_CONTROLLER", VER_NT_DOMAIN_CONTROLLER, CONST_PERSISTENT | CONST_CS);
  1995. REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_NT_SERVER", VER_NT_SERVER, CONST_PERSISTENT | CONST_CS);
  1996. REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_NT_WORKSTATION", VER_NT_WORKSTATION, CONST_PERSISTENT | CONST_CS);
  1997. #endif
  1998. php_binary_init(TSRMLS_C);
  1999. if (PG(php_binary)) {
  2000. REGISTER_MAIN_STRINGL_CONSTANT("PHP_BINARY", PG(php_binary), strlen(PG(php_binary)), CONST_PERSISTENT | CONST_CS);
  2001. } else {
  2002. REGISTER_MAIN_STRINGL_CONSTANT("PHP_BINARY", "", 0, CONST_PERSISTENT | CONST_CS);
  2003. }
  2004. php_output_register_constants(TSRMLS_C);
  2005. php_rfc1867_register_constants(TSRMLS_C);
  2006. /* this will read in php.ini, set up the configuration parameters,
  2007. load zend extensions and register php function extensions
  2008. to be loaded later */
  2009. if (php_init_config(TSRMLS_C) == FAILURE) {
  2010. return FAILURE;
  2011. }
  2012. /* Register PHP core ini entries */
  2013. REGISTER_INI_ENTRIES();
  2014. /* Register Zend ini entries */
  2015. zend_register_standard_ini_entries(TSRMLS_C);
  2016. /* Disable realpath cache if an open_basedir is set */
  2017. if (PG(open_basedir) && *PG(open_basedir)) {
  2018. CWDG(realpath_cache_size_limit) = 0;
  2019. }
  2020. /* initialize stream wrappers registry
  2021. * (this uses configuration parameters from php.ini)
  2022. */
  2023. if (php_init_stream_wrappers(module_number TSRMLS_CC) == FAILURE) {
  2024. php_printf("PHP: Unable to initialize stream url wrappers.\n");
  2025. return FAILURE;
  2026. }
  2027. zuv.html_errors = 1;
  2028. zuv.import_use_extension = ".php";
  2029. php_startup_auto_globals(TSRMLS_C);
  2030. zend_set_utility_values(&zuv);
  2031. php_startup_sapi_content_types(TSRMLS_C);
  2032. /* startup extensions statically compiled in */
  2033. if (php_register_internal_extensions_func(TSRMLS_C) == FAILURE) {
  2034. php_printf("Unable to start builtin modules\n");
  2035. return FAILURE;
  2036. }
  2037. /* start additional PHP extensions */
  2038. php_register_extensions_bc(additional_modules, num_additional_modules TSRMLS_CC);
  2039. /* load and startup extensions compiled as shared objects (aka DLLs)
  2040. as requested by php.ini entries
  2041. theese are loaded after initialization of internal extensions
  2042. as extensions *might* rely on things from ext/standard
  2043. which is always an internal extension and to be initialized
  2044. ahead of all other internals
  2045. */
  2046. php_ini_register_extensions(TSRMLS_C);
  2047. zend_startup_modules(TSRMLS_C);
  2048. /* start Zend extensions */
  2049. zend_startup_extensions();
  2050. zend_collect_module_handlers(TSRMLS_C);
  2051. /* register additional functions */
  2052. if (sapi_module.additional_functions) {
  2053. if (zend_hash_find(&module_registry, "standard", sizeof("standard"), (void**)&module)==SUCCESS) {
  2054. EG(current_module) = module;
  2055. zend_register_functions(NULL, sapi_module.additional_functions, NULL, MODULE_PERSISTENT TSRMLS_CC);
  2056. EG(current_module) = NULL;
  2057. }
  2058. }
  2059. /* disable certain classes and functions as requested by php.ini */
  2060. php_disable_functions(TSRMLS_C);
  2061. php_disable_classes(TSRMLS_C);
  2062. /* make core report what it should */
  2063. if (zend_hash_find(&module_registry, "core", sizeof("core"), (void**)&module)==SUCCESS) {
  2064. module->version = PHP_VERSION;
  2065. module->info_func = PHP_MINFO(php_core);
  2066. }
  2067. #ifdef PHP_WIN32
  2068. /* Disable incompatible functions for the running platform */
  2069. if (php_win32_disable_functions(TSRMLS_C) == FAILURE) {
  2070. php_printf("Unable to disable unsupported functions\n");
  2071. return FAILURE;
  2072. }
  2073. #endif
  2074. zend_post_startup(TSRMLS_C);
  2075. module_initialized = 1;
  2076. /* Check for deprecated directives */
  2077. /* NOTE: If you add anything here, remember to add it to Makefile.global! */
  2078. {
  2079. struct {
  2080. const long error_level;
  2081. const char *phrase;
  2082. const char *directives[16]; /* Remember to change this if the number of directives change */
  2083. } directives[2] = {
  2084. {
  2085. E_DEPRECATED,
  2086. "Directive '%s' is deprecated in PHP 5.3 and greater",
  2087. {
  2088. NULL
  2089. }
  2090. },
  2091. {
  2092. E_CORE_ERROR,
  2093. "Directive '%s' is no longer available in PHP",
  2094. {
  2095. "allow_call_time_pass_reference",
  2096. "define_syslog_variables",
  2097. "highlight.bg",
  2098. "magic_quotes_gpc",
  2099. "magic_quotes_runtime",
  2100. "magic_quotes_sybase",
  2101. "register_globals",
  2102. "register_long_arrays",
  2103. "safe_mode",
  2104. "safe_mode_gid",
  2105. "safe_mode_include_dir",
  2106. "safe_mode_exec_dir",
  2107. "safe_mode_allowed_env_vars",
  2108. "safe_mode_protected_env_vars",
  2109. "zend.ze1_compatibility_mode",
  2110. NULL
  2111. }
  2112. }
  2113. };
  2114. unsigned int i;
  2115. zend_try {
  2116. /* 2 = Count of deprecation structs */
  2117. for (i = 0; i < 2; i++) {
  2118. const char **p = directives[i].directives;
  2119. while(*p) {
  2120. long value;
  2121. if (cfg_get_long((char*)*p, &value) == SUCCESS && value) {
  2122. zend_error(directives[i].error_level, directives[i].phrase, *p);
  2123. }
  2124. ++p;
  2125. }
  2126. }
  2127. } zend_catch {
  2128. retval = FAILURE;
  2129. } zend_end_try();
  2130. }
  2131. sapi_deactivate(TSRMLS_C);
  2132. module_startup = 0;
  2133. shutdown_memory_manager(1, 0 TSRMLS_CC);
  2134. zend_interned_strings_snapshot(TSRMLS_C);
  2135. virtual_cwd_activate(TSRMLS_C);
  2136. /* we're done */
  2137. return retval;
  2138. }
  2139. /* }}} */
  2140. void php_module_shutdown_for_exec(void)
  2141. {
  2142. /* used to close fd's in the range 3.255 here, but it's problematic */
  2143. }
  2144. /* {{{ php_module_shutdown_wrapper
  2145. */
  2146. int php_module_shutdown_wrapper(sapi_module_struct *sapi_globals)
  2147. {
  2148. TSRMLS_FETCH();
  2149. php_module_shutdown(TSRMLS_C);
  2150. return SUCCESS;
  2151. }
  2152. /* }}} */
  2153. /* {{{ php_module_shutdown
  2154. */
  2155. void php_module_shutdown(TSRMLS_D)
  2156. {
  2157. int module_number=0; /* for UNREGISTER_INI_ENTRIES() */
  2158. module_shutdown = 1;
  2159. if (!module_initialized) {
  2160. return;
  2161. }
  2162. #ifdef ZTS
  2163. ts_free_worker_threads();
  2164. #endif
  2165. #if defined(PHP_WIN32) || (defined(NETWARE) && defined(USE_WINSOCK))
  2166. /*close winsock */
  2167. WSACleanup();
  2168. #endif
  2169. #ifdef PHP_WIN32
  2170. php_win32_free_rng_lock();
  2171. #endif
  2172. sapi_flush(TSRMLS_C);
  2173. zend_shutdown(TSRMLS_C);
  2174. /* Destroys filter & transport registries too */
  2175. php_shutdown_stream_wrappers(module_number TSRMLS_CC);
  2176. UNREGISTER_INI_ENTRIES();
  2177. /* close down the ini config */
  2178. php_shutdown_config();
  2179. #ifndef ZTS
  2180. zend_ini_shutdown(TSRMLS_C);
  2181. shutdown_memory_manager(CG(unclean_shutdown), 1 TSRMLS_CC);
  2182. #else
  2183. zend_ini_global_shutdown(TSRMLS_C);
  2184. #endif
  2185. php_output_shutdown();
  2186. module_initialized = 0;
  2187. #ifndef ZTS
  2188. core_globals_dtor(&core_globals TSRMLS_CC);
  2189. gc_globals_dtor(TSRMLS_C);
  2190. #else
  2191. ts_free_id(core_globals_id);
  2192. #endif
  2193. #if defined(PHP_WIN32) && defined(_MSC_VER) && (_MSC_VER >= 1400)
  2194. if (old_invalid_parameter_handler == NULL) {
  2195. _set_invalid_parameter_handler(old_invalid_parameter_handler);
  2196. }
  2197. #endif
  2198. }
  2199. /* }}} */
  2200. /* {{{ php_execute_script
  2201. */
  2202. PHPAPI int php_execute_script(zend_file_handle *primary_file TSRMLS_DC)
  2203. {
  2204. zend_file_handle *prepend_file_p, *append_file_p;
  2205. zend_file_handle prepend_file = {0}, append_file = {0};
  2206. #if HAVE_BROKEN_GETCWD
  2207. volatile int old_cwd_fd = -1;
  2208. #else
  2209. char *old_cwd;
  2210. ALLOCA_FLAG(use_heap)
  2211. #endif
  2212. int retval = 0;
  2213. EG(exit_status) = 0;
  2214. #ifndef HAVE_BROKEN_GETCWD
  2215. # define OLD_CWD_SIZE 4096
  2216. old_cwd = do_alloca(OLD_CWD_SIZE, use_heap);
  2217. old_cwd[0] = '\0';
  2218. #endif
  2219. zend_try {
  2220. char realfile[MAXPATHLEN];
  2221. #ifdef PHP_WIN32
  2222. if(primary_file->filename) {
  2223. UpdateIniFromRegistry(primary_file->filename TSRMLS_CC);
  2224. }
  2225. #endif
  2226. PG(during_request_startup) = 0;
  2227. if (primary_file->filename && !(SG(options) & SAPI_OPTION_NO_CHDIR)) {
  2228. #if HAVE_BROKEN_GETCWD
  2229. /* this looks nasty to me */
  2230. old_cwd_fd = open(".", 0);
  2231. #else
  2232. php_ignore_value(VCWD_GETCWD(old_cwd, OLD_CWD_SIZE-1));
  2233. #endif
  2234. VCWD_CHDIR_FILE(primary_file->filename);
  2235. }
  2236. /* Only lookup the real file path and add it to the included_files list if already opened
  2237. * otherwise it will get opened and added to the included_files list in zend_execute_scripts
  2238. */
  2239. if (primary_file->filename &&
  2240. (primary_file->filename[0] != '-' || primary_file->filename[1] != 0) &&
  2241. primary_file->opened_path == NULL &&
  2242. primary_file->type != ZEND_HANDLE_FILENAME
  2243. ) {
  2244. int realfile_len;
  2245. int dummy = 1;
  2246. if (expand_filepath(primary_file->filename, realfile TSRMLS_CC)) {
  2247. realfile_len = strlen(realfile);
  2248. zend_hash_add(&EG(included_files), realfile, realfile_len+1, (void *)&dummy, sizeof(int), NULL);
  2249. primary_file->opened_path = estrndup(realfile, realfile_len);
  2250. }
  2251. }
  2252. if (PG(auto_prepend_file) && PG(auto_prepend_file)[0]) {
  2253. prepend_file.filename = PG(auto_prepend_file);
  2254. prepend_file.opened_path = NULL;
  2255. prepend_file.free_filename = 0;
  2256. prepend_file.type = ZEND_HANDLE_FILENAME;
  2257. prepend_file_p = &prepend_file;
  2258. } else {
  2259. prepend_file_p = NULL;
  2260. }
  2261. if (PG(auto_append_file) && PG(auto_append_file)[0]) {
  2262. append_file.filename = PG(auto_append_file);
  2263. append_file.opened_path = NULL;
  2264. append_file.free_filename = 0;
  2265. append_file.type = ZEND_HANDLE_FILENAME;
  2266. append_file_p = &append_file;
  2267. } else {
  2268. append_file_p = NULL;
  2269. }
  2270. if (PG(max_input_time) != -1) {
  2271. #ifdef PHP_WIN32
  2272. zend_unset_timeout(TSRMLS_C);
  2273. #endif
  2274. zend_set_timeout(INI_INT("max_execution_time"), 0);
  2275. }
  2276. /*
  2277. If cli primary file has shabang line and there is a prepend file,
  2278. the `start_lineno` will be used by prepend file but not primary file,
  2279. save it and restore after prepend file been executed.
  2280. */
  2281. if (CG(start_lineno) && prepend_file_p) {
  2282. int orig_start_lineno = CG(start_lineno);
  2283. CG(start_lineno) = 0;
  2284. if (zend_execute_scripts(ZEND_REQUIRE TSRMLS_CC, NULL, 1, prepend_file_p) == SUCCESS) {
  2285. CG(start_lineno) = orig_start_lineno;
  2286. retval = (zend_execute_scripts(ZEND_REQUIRE TSRMLS_CC, NULL, 2, primary_file, append_file_p) == SUCCESS);
  2287. }
  2288. } else {
  2289. retval = (zend_execute_scripts(ZEND_REQUIRE TSRMLS_CC, NULL, 3, prepend_file_p, primary_file, append_file_p) == SUCCESS);
  2290. }
  2291. } zend_end_try();
  2292. #if HAVE_BROKEN_GETCWD
  2293. if (old_cwd_fd != -1) {
  2294. fchdir(old_cwd_fd);
  2295. close(old_cwd_fd);
  2296. }
  2297. #else
  2298. if (old_cwd[0] != '\0') {
  2299. php_ignore_value(VCWD_CHDIR(old_cwd));
  2300. }
  2301. free_alloca(old_cwd, use_heap);
  2302. #endif
  2303. return retval;
  2304. }
  2305. /* }}} */
  2306. /* {{{ php_execute_simple_script
  2307. */
  2308. PHPAPI int php_execute_simple_script(zend_file_handle *primary_file, zval **ret TSRMLS_DC)
  2309. {
  2310. char *old_cwd;
  2311. ALLOCA_FLAG(use_heap)
  2312. EG(exit_status) = 0;
  2313. #define OLD_CWD_SIZE 4096
  2314. old_cwd = do_alloca(OLD_CWD_SIZE, use_heap);
  2315. old_cwd[0] = '\0';
  2316. zend_try {
  2317. #ifdef PHP_WIN32
  2318. if(primary_file->filename) {
  2319. UpdateIniFromRegistry(primary_file->filename TSRMLS_CC);
  2320. }
  2321. #endif
  2322. PG(during_request_startup) = 0;
  2323. if (primary_file->filename && !(SG(options) & SAPI_OPTION_NO_CHDIR)) {
  2324. php_ignore_value(VCWD_GETCWD(old_cwd, OLD_CWD_SIZE-1));
  2325. VCWD_CHDIR_FILE(primary_file->filename);
  2326. }
  2327. zend_execute_scripts(ZEND_REQUIRE TSRMLS_CC, ret, 1, primary_file);
  2328. } zend_end_try();
  2329. if (old_cwd[0] != '\0') {
  2330. php_ignore_value(VCWD_CHDIR(old_cwd));
  2331. }
  2332. free_alloca(old_cwd, use_heap);
  2333. return EG(exit_status);
  2334. }
  2335. /* }}} */
  2336. /* {{{ php_handle_aborted_connection
  2337. */
  2338. PHPAPI void php_handle_aborted_connection(void)
  2339. {
  2340. TSRMLS_FETCH();
  2341. PG(connection_status) = PHP_CONNECTION_ABORTED;
  2342. php_output_set_status(PHP_OUTPUT_DISABLED TSRMLS_CC);
  2343. if (!PG(ignore_user_abort)) {
  2344. zend_bailout();
  2345. }
  2346. }
  2347. /* }}} */
  2348. /* {{{ php_handle_auth_data
  2349. */
  2350. PHPAPI int php_handle_auth_data(const char *auth TSRMLS_DC)
  2351. {
  2352. int ret = -1;
  2353. if (auth && auth[0] != '\0' && strncmp(auth, "Basic ", 6) == 0) {
  2354. char *pass;
  2355. char *user;
  2356. user = php_base64_decode(auth + 6, strlen(auth) - 6, NULL);
  2357. if (user) {
  2358. pass = strchr(user, ':');
  2359. if (pass) {
  2360. *pass++ = '\0';
  2361. SG(request_info).auth_user = user;
  2362. SG(request_info).auth_password = estrdup(pass);
  2363. ret = 0;
  2364. } else {
  2365. efree(user);
  2366. }
  2367. }
  2368. }
  2369. if (ret == -1) {
  2370. SG(request_info).auth_user = SG(request_info).auth_password = NULL;
  2371. } else {
  2372. SG(request_info).auth_digest = NULL;
  2373. }
  2374. if (ret == -1 && auth && auth[0] != '\0' && strncmp(auth, "Digest ", 7) == 0) {
  2375. SG(request_info).auth_digest = estrdup(auth + 7);
  2376. ret = 0;
  2377. }
  2378. if (ret == -1) {
  2379. SG(request_info).auth_digest = NULL;
  2380. }
  2381. return ret;
  2382. }
  2383. /* }}} */
  2384. /* {{{ php_lint_script
  2385. */
  2386. PHPAPI int php_lint_script(zend_file_handle *file TSRMLS_DC)
  2387. {
  2388. zend_op_array *op_array;
  2389. int retval = FAILURE;
  2390. zend_try {
  2391. op_array = zend_compile_file(file, ZEND_INCLUDE TSRMLS_CC);
  2392. zend_destroy_file_handle(file TSRMLS_CC);
  2393. if (op_array) {
  2394. destroy_op_array(op_array TSRMLS_CC);
  2395. efree(op_array);
  2396. retval = SUCCESS;
  2397. }
  2398. } zend_end_try();
  2399. return retval;
  2400. }
  2401. /* }}} */
  2402. #ifdef PHP_WIN32
  2403. /* {{{ dummy_indent
  2404. just so that this symbol gets exported... */
  2405. PHPAPI void dummy_indent(void)
  2406. {
  2407. zend_indent();
  2408. }
  2409. /* }}} */
  2410. #endif
  2411. /*
  2412. * Local variables:
  2413. * tab-width: 4
  2414. * c-basic-offset: 4
  2415. * End:
  2416. * vim600: sw=4 ts=4 fdm=marker
  2417. * vim<600: sw=4 ts=4
  2418. */