sapi_apache2.c 20 KB

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