sapi_apache2.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Sascha Schumann <sascha@schumann.cx> |
  16. | Parts based on Apache 1.3 SAPI module by |
  17. | Rasmus Lerdorf and Zeev Suraski |
  18. +----------------------------------------------------------------------+
  19. */
  20. #define ZEND_INCLUDE_FULL_WINDOWS_HEADERS
  21. #include "php.h"
  22. #include "php_main.h"
  23. #include "php_ini.h"
  24. #include "php_variables.h"
  25. #include "SAPI.h"
  26. #include <fcntl.h>
  27. #include "zend_smart_str.h"
  28. #include "ext/standard/php_standard.h"
  29. #include "apr_strings.h"
  30. #include "ap_config.h"
  31. #include "util_filter.h"
  32. #include "httpd.h"
  33. #include "http_config.h"
  34. #include "http_request.h"
  35. #include "http_core.h"
  36. #include "http_protocol.h"
  37. #include "http_log.h"
  38. #include "http_main.h"
  39. #include "util_script.h"
  40. #include "http_core.h"
  41. #include "ap_mpm.h"
  42. #include "php_apache.h"
  43. /* UnixWare define shutdown to _shutdown, which causes problems later
  44. * on when using a structure member named shutdown. Since this source
  45. * file does not use the system call shutdown, it is safe to #undef it.
  46. */
  47. #undef shutdown
  48. #define PHP_MAGIC_TYPE "application/x-httpd-php"
  49. #define PHP_SOURCE_MAGIC_TYPE "application/x-httpd-php-source"
  50. #define PHP_SCRIPT "php7-script"
  51. /* A way to specify the location of the php.ini dir in an apache directive */
  52. char *apache2_php_ini_path_override = NULL;
  53. #if defined(PHP_WIN32) && defined(ZTS)
  54. ZEND_TSRMLS_CACHE_DEFINE()
  55. #endif
  56. static size_t
  57. php_apache_sapi_ub_write(const char *str, size_t str_length)
  58. {
  59. request_rec *r;
  60. php_struct *ctx;
  61. ctx = SG(server_context);
  62. r = ctx->r;
  63. if (ap_rwrite(str, str_length, r) < 0) {
  64. php_handle_aborted_connection();
  65. }
  66. return str_length; /* we always consume all the data passed to us. */
  67. }
  68. static int
  69. php_apache_sapi_header_handler(sapi_header_struct *sapi_header, sapi_header_op_enum op, sapi_headers_struct *sapi_headers)
  70. {
  71. php_struct *ctx;
  72. char *val, *ptr;
  73. ctx = SG(server_context);
  74. switch (op) {
  75. case SAPI_HEADER_DELETE:
  76. apr_table_unset(ctx->r->headers_out, sapi_header->header);
  77. return 0;
  78. case SAPI_HEADER_DELETE_ALL:
  79. apr_table_clear(ctx->r->headers_out);
  80. return 0;
  81. case SAPI_HEADER_ADD:
  82. case SAPI_HEADER_REPLACE:
  83. val = strchr(sapi_header->header, ':');
  84. if (!val) {
  85. return 0;
  86. }
  87. ptr = val;
  88. *val = '\0';
  89. do {
  90. val++;
  91. } while (*val == ' ');
  92. if (!strcasecmp(sapi_header->header, "content-type")) {
  93. if (ctx->content_type) {
  94. efree(ctx->content_type);
  95. }
  96. ctx->content_type = estrdup(val);
  97. } else if (!strcasecmp(sapi_header->header, "content-length")) {
  98. apr_off_t clen = 0;
  99. if (APR_SUCCESS != apr_strtoff(&clen, val, (char **) NULL, 10)) {
  100. /* We'll fall back to strtol, since that's what we used to
  101. * do anyway. */
  102. clen = (apr_off_t) strtol(val, (char **) NULL, 10);
  103. }
  104. ap_set_content_length(ctx->r, clen);
  105. } else if (op == SAPI_HEADER_REPLACE) {
  106. apr_table_set(ctx->r->headers_out, sapi_header->header, val);
  107. } else {
  108. apr_table_add(ctx->r->headers_out, sapi_header->header, val);
  109. }
  110. *ptr = ':';
  111. return SAPI_HEADER_ADD;
  112. default:
  113. return 0;
  114. }
  115. }
  116. static int
  117. php_apache_sapi_send_headers(sapi_headers_struct *sapi_headers)
  118. {
  119. php_struct *ctx = SG(server_context);
  120. const char *sline = SG(sapi_headers).http_status_line;
  121. ctx->r->status = SG(sapi_headers).http_response_code;
  122. /* httpd requires that r->status_line is set to the first digit of
  123. * the status-code: */
  124. if (sline && strlen(sline) > 12 && strncmp(sline, "HTTP/1.", 7) == 0 && sline[8] == ' ') {
  125. ctx->r->status_line = apr_pstrdup(ctx->r->pool, sline + 9);
  126. ctx->r->proto_num = 1000 + (sline[7]-'0');
  127. if ((sline[7]-'0') == 0) {
  128. apr_table_set(ctx->r->subprocess_env, "force-response-1.0", "true");
  129. }
  130. }
  131. /* call ap_set_content_type only once, else each time we call it,
  132. configured output filters for that content type will be added */
  133. if (!ctx->content_type) {
  134. ctx->content_type = sapi_get_default_content_type();
  135. }
  136. ap_set_content_type(ctx->r, apr_pstrdup(ctx->r->pool, ctx->content_type));
  137. efree(ctx->content_type);
  138. ctx->content_type = NULL;
  139. return SAPI_HEADER_SENT_SUCCESSFULLY;
  140. }
  141. static apr_size_t
  142. php_apache_sapi_read_post(char *buf, size_t count_bytes)
  143. {
  144. apr_size_t len, tlen=0;
  145. php_struct *ctx = SG(server_context);
  146. request_rec *r;
  147. apr_bucket_brigade *brigade;
  148. r = ctx->r;
  149. brigade = ctx->brigade;
  150. len = count_bytes;
  151. /*
  152. * This loop is needed because ap_get_brigade() can return us partial data
  153. * which would cause premature termination of request read. Therefor we
  154. * need to make sure that if data is available we fill the buffer completely.
  155. */
  156. while (ap_get_brigade(r->input_filters, brigade, AP_MODE_READBYTES, APR_BLOCK_READ, len) == APR_SUCCESS) {
  157. apr_brigade_flatten(brigade, buf, &len);
  158. apr_brigade_cleanup(brigade);
  159. tlen += len;
  160. if (tlen == count_bytes || !len) {
  161. break;
  162. }
  163. buf += len;
  164. len = count_bytes - tlen;
  165. }
  166. return tlen;
  167. }
  168. static zend_stat_t*
  169. php_apache_sapi_get_stat(void)
  170. {
  171. php_struct *ctx = SG(server_context);
  172. #ifdef PHP_WIN32
  173. ctx->finfo.st_uid = 0;
  174. ctx->finfo.st_gid = 0;
  175. #else
  176. ctx->finfo.st_uid = ctx->r->finfo.user;
  177. ctx->finfo.st_gid = ctx->r->finfo.group;
  178. #endif
  179. ctx->finfo.st_dev = ctx->r->finfo.device;
  180. ctx->finfo.st_ino = ctx->r->finfo.inode;
  181. ctx->finfo.st_atime = apr_time_sec(ctx->r->finfo.atime);
  182. ctx->finfo.st_mtime = apr_time_sec(ctx->r->finfo.mtime);
  183. ctx->finfo.st_ctime = apr_time_sec(ctx->r->finfo.ctime);
  184. ctx->finfo.st_size = ctx->r->finfo.size;
  185. ctx->finfo.st_nlink = ctx->r->finfo.nlink;
  186. return &ctx->finfo;
  187. }
  188. static char *
  189. php_apache_sapi_read_cookies(void)
  190. {
  191. php_struct *ctx = SG(server_context);
  192. const char *http_cookie;
  193. http_cookie = apr_table_get(ctx->r->headers_in, "cookie");
  194. /* The SAPI interface should use 'const char *' */
  195. return (char *) http_cookie;
  196. }
  197. static char *
  198. php_apache_sapi_getenv(char *name, size_t name_len)
  199. {
  200. php_struct *ctx = SG(server_context);
  201. const char *env_var;
  202. if (ctx == NULL) {
  203. return NULL;
  204. }
  205. env_var = apr_table_get(ctx->r->subprocess_env, name);
  206. return (char *) env_var;
  207. }
  208. static void
  209. php_apache_sapi_register_variables(zval *track_vars_array)
  210. {
  211. php_struct *ctx = SG(server_context);
  212. const apr_array_header_t *arr = apr_table_elts(ctx->r->subprocess_env);
  213. char *key, *val;
  214. size_t new_val_len;
  215. APR_ARRAY_FOREACH_OPEN(arr, key, val)
  216. if (!val) {
  217. val = "";
  218. }
  219. if (sapi_module.input_filter(PARSE_SERVER, key, &val, strlen(val), &new_val_len)) {
  220. php_register_variable_safe(key, val, new_val_len, track_vars_array);
  221. }
  222. APR_ARRAY_FOREACH_CLOSE()
  223. if (sapi_module.input_filter(PARSE_SERVER, "PHP_SELF", &ctx->r->uri, strlen(ctx->r->uri), &new_val_len)) {
  224. php_register_variable_safe("PHP_SELF", ctx->r->uri, new_val_len, track_vars_array);
  225. }
  226. }
  227. static void
  228. php_apache_sapi_flush(void *server_context)
  229. {
  230. php_struct *ctx;
  231. request_rec *r;
  232. ctx = server_context;
  233. /* If we haven't registered a server_context yet,
  234. * then don't bother flushing. */
  235. if (!server_context) {
  236. return;
  237. }
  238. r = ctx->r;
  239. sapi_send_headers();
  240. r->status = SG(sapi_headers).http_response_code;
  241. SG(headers_sent) = 1;
  242. if (ap_rflush(r) < 0 || r->connection->aborted) {
  243. php_handle_aborted_connection();
  244. }
  245. }
  246. static void php_apache_sapi_log_message(char *msg, int syslog_type_int)
  247. {
  248. php_struct *ctx;
  249. int aplog_type = APLOG_ERR;
  250. ctx = SG(server_context);
  251. switch (syslog_type_int) {
  252. #if LOG_EMERG != LOG_CRIT
  253. case LOG_EMERG:
  254. aplog_type = APLOG_EMERG;
  255. break;
  256. #endif
  257. #if LOG_ALERT != LOG_CRIT
  258. case LOG_ALERT:
  259. aplog_type = APLOG_ALERT;
  260. break;
  261. #endif
  262. case LOG_CRIT:
  263. aplog_type = APLOG_CRIT;
  264. break;
  265. case LOG_ERR:
  266. aplog_type = APLOG_ERR;
  267. break;
  268. case LOG_WARNING:
  269. aplog_type = APLOG_WARNING;
  270. break;
  271. case LOG_NOTICE:
  272. aplog_type = APLOG_NOTICE;
  273. break;
  274. #if LOG_INFO != LOG_NOTICE
  275. case LOG_INFO:
  276. aplog_type = APLOG_INFO;
  277. break;
  278. #endif
  279. #if LOG_NOTICE != LOG_DEBUG
  280. case LOG_DEBUG:
  281. aplog_type = APLOG_DEBUG;
  282. break;
  283. #endif
  284. }
  285. if (ctx == NULL) { /* we haven't initialized our ctx yet, oh well */
  286. ap_log_error(APLOG_MARK, APLOG_ERR | APLOG_STARTUP, 0, NULL, "%s", msg);
  287. } else {
  288. ap_log_rerror(APLOG_MARK, aplog_type, 0, ctx->r, "%s", msg);
  289. }
  290. }
  291. static void php_apache_sapi_log_message_ex(char *msg, request_rec *r)
  292. {
  293. if (r) {
  294. ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, msg, r->filename);
  295. } else {
  296. php_apache_sapi_log_message(msg, -1);
  297. }
  298. }
  299. static double php_apache_sapi_get_request_time(void)
  300. {
  301. php_struct *ctx = SG(server_context);
  302. return ((double) ctx->r->request_time) / 1000000.0;
  303. }
  304. extern zend_module_entry php_apache_module;
  305. static int php_apache2_startup(sapi_module_struct *sapi_module)
  306. {
  307. if (php_module_startup(sapi_module, &php_apache_module, 1)==FAILURE) {
  308. return FAILURE;
  309. }
  310. return SUCCESS;
  311. }
  312. static sapi_module_struct apache2_sapi_module = {
  313. "apache2handler",
  314. "Apache 2.0 Handler",
  315. php_apache2_startup, /* startup */
  316. php_module_shutdown_wrapper, /* shutdown */
  317. NULL, /* activate */
  318. NULL, /* deactivate */
  319. php_apache_sapi_ub_write, /* unbuffered write */
  320. php_apache_sapi_flush, /* flush */
  321. php_apache_sapi_get_stat, /* get uid */
  322. php_apache_sapi_getenv, /* getenv */
  323. php_error, /* error handler */
  324. php_apache_sapi_header_handler, /* header handler */
  325. php_apache_sapi_send_headers, /* send headers handler */
  326. NULL, /* send header handler */
  327. php_apache_sapi_read_post, /* read POST data */
  328. php_apache_sapi_read_cookies, /* read Cookies */
  329. php_apache_sapi_register_variables,
  330. php_apache_sapi_log_message, /* Log message */
  331. php_apache_sapi_get_request_time, /* Request Time */
  332. NULL, /* Child Terminate */
  333. STANDARD_SAPI_MODULE_PROPERTIES
  334. };
  335. static apr_status_t php_apache_server_shutdown(void *tmp)
  336. {
  337. apache2_sapi_module.shutdown(&apache2_sapi_module);
  338. sapi_shutdown();
  339. #ifdef ZTS
  340. tsrm_shutdown();
  341. #endif
  342. return APR_SUCCESS;
  343. }
  344. static apr_status_t php_apache_child_shutdown(void *tmp)
  345. {
  346. apache2_sapi_module.shutdown(&apache2_sapi_module);
  347. #if defined(ZTS) && !defined(PHP_WIN32)
  348. tsrm_shutdown();
  349. #endif
  350. return APR_SUCCESS;
  351. }
  352. static void php_apache_add_version(apr_pool_t *p)
  353. {
  354. if (PG(expose_php)) {
  355. ap_add_version_component(p, "PHP/" PHP_VERSION);
  356. }
  357. }
  358. static int php_pre_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp)
  359. {
  360. #ifndef ZTS
  361. int threaded_mpm;
  362. ap_mpm_query(AP_MPMQ_IS_THREADED, &threaded_mpm);
  363. if(threaded_mpm) {
  364. ap_log_error(APLOG_MARK, APLOG_CRIT, 0, 0, "Apache is running a threaded MPM, but your PHP Module is not compiled to be threadsafe. You need to recompile PHP.");
  365. return DONE;
  366. }
  367. #endif
  368. /* When this is NULL, apache won't override the hard-coded default
  369. * php.ini path setting. */
  370. apache2_php_ini_path_override = NULL;
  371. return OK;
  372. }
  373. static int
  374. php_apache_server_startup(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s)
  375. {
  376. void *data = NULL;
  377. const char *userdata_key = "apache2hook_post_config";
  378. /* Apache will load, unload and then reload a DSO module. This
  379. * prevents us from starting PHP until the second load. */
  380. apr_pool_userdata_get(&data, userdata_key, s->process->pool);
  381. if (data == NULL) {
  382. /* We must use set() here and *not* setn(), otherwise the
  383. * static string pointed to by userdata_key will be mapped
  384. * to a different location when the DSO is reloaded and the
  385. * pointers won't match, causing get() to return NULL when
  386. * we expected it to return non-NULL. */
  387. apr_pool_userdata_set((const void *)1, userdata_key, apr_pool_cleanup_null, s->process->pool);
  388. return OK;
  389. }
  390. /* Set up our overridden path. */
  391. if (apache2_php_ini_path_override) {
  392. apache2_sapi_module.php_ini_path_override = apache2_php_ini_path_override;
  393. }
  394. #ifdef ZTS
  395. tsrm_startup(1, 1, 0, NULL);
  396. (void)ts_resource(0);
  397. ZEND_TSRMLS_CACHE_UPDATE();
  398. #endif
  399. zend_signal_startup();
  400. sapi_startup(&apache2_sapi_module);
  401. apache2_sapi_module.startup(&apache2_sapi_module);
  402. apr_pool_cleanup_register(pconf, NULL, php_apache_server_shutdown, apr_pool_cleanup_null);
  403. php_apache_add_version(pconf);
  404. return OK;
  405. }
  406. static apr_status_t php_server_context_cleanup(void *data_)
  407. {
  408. void **data = data_;
  409. *data = NULL;
  410. return APR_SUCCESS;
  411. }
  412. static int php_apache_request_ctor(request_rec *r, php_struct *ctx)
  413. {
  414. char *content_length;
  415. const char *auth;
  416. SG(sapi_headers).http_response_code = !r->status ? HTTP_OK : r->status;
  417. SG(request_info).content_type = apr_table_get(r->headers_in, "Content-Type");
  418. SG(request_info).query_string = apr_pstrdup(r->pool, r->args);
  419. SG(request_info).request_method = r->method;
  420. SG(request_info).proto_num = r->proto_num;
  421. SG(request_info).request_uri = apr_pstrdup(r->pool, r->uri);
  422. SG(request_info).path_translated = apr_pstrdup(r->pool, r->filename);
  423. r->no_local_copy = 1;
  424. content_length = (char *) apr_table_get(r->headers_in, "Content-Length");
  425. if (content_length) {
  426. ZEND_ATOL(SG(request_info).content_length, content_length);
  427. } else {
  428. SG(request_info).content_length = 0;
  429. }
  430. apr_table_unset(r->headers_out, "Content-Length");
  431. apr_table_unset(r->headers_out, "Last-Modified");
  432. apr_table_unset(r->headers_out, "Expires");
  433. apr_table_unset(r->headers_out, "ETag");
  434. auth = apr_table_get(r->headers_in, "Authorization");
  435. php_handle_auth_data(auth);
  436. if (SG(request_info).auth_user == NULL && r->user) {
  437. SG(request_info).auth_user = estrdup(r->user);
  438. }
  439. ctx->r->user = apr_pstrdup(ctx->r->pool, SG(request_info).auth_user);
  440. return php_request_startup();
  441. }
  442. static void php_apache_request_dtor(request_rec *r)
  443. {
  444. php_request_shutdown(NULL);
  445. }
  446. static void php_apache_ini_dtor(request_rec *r, request_rec *p)
  447. {
  448. if (strcmp(r->protocol, "INCLUDED")) {
  449. zend_try { zend_ini_deactivate(); } zend_end_try();
  450. } else {
  451. typedef struct {
  452. HashTable config;
  453. } php_conf_rec;
  454. zend_string *str;
  455. php_conf_rec *c = ap_get_module_config(r->per_dir_config, &php7_module);
  456. ZEND_HASH_FOREACH_STR_KEY(&c->config, str) {
  457. zend_restore_ini_entry(str, ZEND_INI_STAGE_SHUTDOWN);
  458. } ZEND_HASH_FOREACH_END();
  459. }
  460. if (p) {
  461. ((php_struct *)SG(server_context))->r = p;
  462. } else {
  463. apr_pool_cleanup_run(r->pool, (void *)&SG(server_context), php_server_context_cleanup);
  464. }
  465. }
  466. static int php_handler(request_rec *r)
  467. {
  468. php_struct * volatile ctx;
  469. void *conf;
  470. apr_bucket_brigade * volatile brigade;
  471. apr_bucket *bucket;
  472. apr_status_t rv;
  473. request_rec * volatile parent_req = NULL;
  474. #ifdef ZTS
  475. /* initial resource fetch */
  476. (void)ts_resource(0);
  477. ZEND_TSRMLS_CACHE_UPDATE();
  478. #endif
  479. #define PHPAP_INI_OFF php_apache_ini_dtor(r, parent_req);
  480. conf = ap_get_module_config(r->per_dir_config, &php7_module);
  481. /* apply_config() needs r in some cases, so allocate server_context early */
  482. ctx = SG(server_context);
  483. if (ctx == NULL || (ctx && ctx->request_processed && !strcmp(r->protocol, "INCLUDED"))) {
  484. normal:
  485. ctx = SG(server_context) = apr_pcalloc(r->pool, sizeof(*ctx));
  486. /* register a cleanup so we clear out the SG(server_context)
  487. * after each request. Note: We pass in the pointer to the
  488. * server_context in case this is handled by a different thread.
  489. */
  490. apr_pool_cleanup_register(r->pool, (void *)&SG(server_context), php_server_context_cleanup, apr_pool_cleanup_null);
  491. ctx->r = r;
  492. ctx = NULL; /* May look weird to null it here, but it is to catch the right case in the first_try later on */
  493. } else {
  494. parent_req = ctx->r;
  495. ctx->r = r;
  496. }
  497. apply_config(conf);
  498. if (strcmp(r->handler, PHP_MAGIC_TYPE) && strcmp(r->handler, PHP_SOURCE_MAGIC_TYPE) && strcmp(r->handler, PHP_SCRIPT)) {
  499. /* Check for xbithack in this case. */
  500. if (!AP2(xbithack) || strcmp(r->handler, "text/html") || !(r->finfo.protection & APR_UEXECUTE)) {
  501. PHPAP_INI_OFF;
  502. return DECLINED;
  503. }
  504. }
  505. /* Give a 404 if PATH_INFO is used but is explicitly disabled in
  506. * the configuration; default behaviour is to accept. */
  507. if (r->used_path_info == AP_REQ_REJECT_PATH_INFO
  508. && r->path_info && r->path_info[0]) {
  509. PHPAP_INI_OFF;
  510. return HTTP_NOT_FOUND;
  511. }
  512. /* handle situations where user turns the engine off */
  513. if (!AP2(engine)) {
  514. PHPAP_INI_OFF;
  515. return DECLINED;
  516. }
  517. if (r->finfo.filetype == 0) {
  518. php_apache_sapi_log_message_ex("script '%s' not found or unable to stat", r);
  519. PHPAP_INI_OFF;
  520. return HTTP_NOT_FOUND;
  521. }
  522. if (r->finfo.filetype == APR_DIR) {
  523. php_apache_sapi_log_message_ex("attempt to invoke directory '%s' as script", r);
  524. PHPAP_INI_OFF;
  525. return HTTP_FORBIDDEN;
  526. }
  527. /* Setup the CGI variables if this is the main request */
  528. if (r->main == NULL ||
  529. /* .. or if the sub-request environment differs from the main-request. */
  530. r->subprocess_env != r->main->subprocess_env
  531. ) {
  532. /* setup standard CGI variables */
  533. ap_add_common_vars(r);
  534. ap_add_cgi_vars(r);
  535. }
  536. zend_first_try {
  537. if (ctx == NULL) {
  538. brigade = apr_brigade_create(r->pool, r->connection->bucket_alloc);
  539. ctx = SG(server_context);
  540. ctx->brigade = brigade;
  541. if (php_apache_request_ctor(r, ctx)!=SUCCESS) {
  542. zend_bailout();
  543. }
  544. } else {
  545. if (!parent_req) {
  546. parent_req = ctx->r;
  547. }
  548. if (parent_req && parent_req->handler &&
  549. strcmp(parent_req->handler, PHP_MAGIC_TYPE) &&
  550. strcmp(parent_req->handler, PHP_SOURCE_MAGIC_TYPE) &&
  551. strcmp(parent_req->handler, PHP_SCRIPT)) {
  552. if (php_apache_request_ctor(r, ctx)!=SUCCESS) {
  553. zend_bailout();
  554. }
  555. }
  556. /*
  557. * check if coming due to ErrorDocument
  558. * We make a special exception of 413 (Invalid POST request) as the invalidity of the request occurs
  559. * during processing of the request by PHP during POST processing. Therefor we need to re-use the exiting
  560. * PHP instance to handle the request rather then creating a new one.
  561. */
  562. if (parent_req && parent_req->status != HTTP_OK && parent_req->status != 413 && strcmp(r->protocol, "INCLUDED")) {
  563. parent_req = NULL;
  564. goto normal;
  565. }
  566. ctx->r = r;
  567. brigade = ctx->brigade;
  568. }
  569. if (AP2(last_modified)) {
  570. ap_update_mtime(r, r->finfo.mtime);
  571. ap_set_last_modified(r);
  572. }
  573. /* Determine if we need to parse the file or show the source */
  574. if (strncmp(r->handler, PHP_SOURCE_MAGIC_TYPE, sizeof(PHP_SOURCE_MAGIC_TYPE) - 1) == 0) {
  575. zend_syntax_highlighter_ini syntax_highlighter_ini;
  576. php_get_highlight_struct(&syntax_highlighter_ini);
  577. highlight_file((char *)r->filename, &syntax_highlighter_ini);
  578. } else {
  579. zend_file_handle zfd;
  580. zfd.type = ZEND_HANDLE_FILENAME;
  581. zfd.filename = (char *) r->filename;
  582. zfd.free_filename = 0;
  583. zfd.opened_path = NULL;
  584. if (!parent_req) {
  585. php_execute_script(&zfd);
  586. } else {
  587. zend_execute_scripts(ZEND_INCLUDE, NULL, 1, &zfd);
  588. }
  589. apr_table_set(r->notes, "mod_php_memory_usage",
  590. apr_psprintf(ctx->r->pool, "%" APR_SIZE_T_FMT, zend_memory_peak_usage(1)));
  591. }
  592. } zend_end_try();
  593. if (!parent_req) {
  594. php_apache_request_dtor(r);
  595. ctx->request_processed = 1;
  596. apr_brigade_cleanup(brigade);
  597. bucket = apr_bucket_eos_create(r->connection->bucket_alloc);
  598. APR_BRIGADE_INSERT_TAIL(brigade, bucket);
  599. rv = ap_pass_brigade(r->output_filters, brigade);
  600. if (rv != APR_SUCCESS || r->connection->aborted) {
  601. zend_first_try {
  602. php_handle_aborted_connection();
  603. } zend_end_try();
  604. }
  605. apr_brigade_cleanup(brigade);
  606. apr_pool_cleanup_run(r->pool, (void *)&SG(server_context), php_server_context_cleanup);
  607. } else {
  608. ctx->r = parent_req;
  609. }
  610. return OK;
  611. }
  612. static void php_apache_child_init(apr_pool_t *pchild, server_rec *s)
  613. {
  614. apr_pool_cleanup_register(pchild, NULL, php_apache_child_shutdown, apr_pool_cleanup_null);
  615. }
  616. #ifdef ZEND_SIGNALS
  617. static void php_apache_signal_init(apr_pool_t *pchild, server_rec *s)
  618. {
  619. zend_signal_init();
  620. }
  621. #endif
  622. void php_ap2_register_hook(apr_pool_t *p)
  623. {
  624. ap_hook_pre_config(php_pre_config, NULL, NULL, APR_HOOK_MIDDLE);
  625. ap_hook_post_config(php_apache_server_startup, NULL, NULL, APR_HOOK_MIDDLE);
  626. ap_hook_handler(php_handler, NULL, NULL, APR_HOOK_MIDDLE);
  627. #ifdef ZEND_SIGNALS
  628. ap_hook_child_init(php_apache_signal_init, NULL, NULL, APR_HOOK_MIDDLE);
  629. #endif
  630. ap_hook_child_init(php_apache_child_init, NULL, NULL, APR_HOOK_MIDDLE);
  631. }
  632. /*
  633. * Local variables:
  634. * tab-width: 4
  635. * c-basic-offset: 4
  636. * End:
  637. * vim600: sw=4 ts=4 fdm=marker
  638. * vim<600: sw=4 ts=4
  639. */