#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if defined(__linux__) #include #elif defined(__FreeBSD__) || defined(__OpenBSD__) #include #endif #include #include "_cgo_export.h" #include "frankenphp_arginfo.h" #if defined(PHP_WIN32) && defined(ZTS) ZEND_TSRMLS_CACHE_DEFINE() #endif /** * The list of modules to reload on each request. If an external module * requires to be reloaded between requests, it is possible to hook on * `sapi_module.activate` and `sapi_module.deactivate`. * * @see https://github.com/DataDog/dd-trace-php/pull/3169 for an example */ static const char *MODULES_TO_RELOAD[] = {"filter", "session", NULL}; frankenphp_version frankenphp_get_version() { return (frankenphp_version){ PHP_MAJOR_VERSION, PHP_MINOR_VERSION, PHP_RELEASE_VERSION, PHP_EXTRA_VERSION, PHP_VERSION, PHP_VERSION_ID, }; } frankenphp_config frankenphp_get_config() { return (frankenphp_config){ frankenphp_get_version(), #ifdef ZTS true, #else false, #endif #ifdef ZEND_SIGNALS true, #else false, #endif #ifdef ZEND_MAX_EXECUTION_TIMERS true, #else false, #endif }; } bool should_filter_var = 0; __thread uintptr_t thread_index; __thread bool is_worker_thread = false; __thread zval *os_environment = NULL; static void frankenphp_free_request_context() { if (SG(request_info).cookie_data != NULL) { free(SG(request_info).cookie_data); SG(request_info).cookie_data = NULL; } /* freed via thread.Unpin() */ SG(request_info).auth_password = NULL; SG(request_info).auth_user = NULL; SG(request_info).request_method = NULL; SG(request_info).query_string = NULL; SG(request_info).content_type = NULL; SG(request_info).path_translated = NULL; SG(request_info).request_uri = NULL; } static void frankenphp_destroy_super_globals() { zend_try { for (int i = 0; i < NUM_TRACK_VARS; i++) { zval_ptr_dtor_nogc(&PG(http_globals)[i]); } } zend_end_try(); } /* * free php_stream resources that are temporary (php_stream_temp_ops) * streams are globally registered in EG(regular_list), see zend_list.c * this fixes a leak when reading the body of a request */ static void frankenphp_release_temporary_streams() { zend_resource *val; int stream_type = php_file_le_stream(); ZEND_HASH_FOREACH_PTR(&EG(regular_list), val) { /* verify the resource is a stream */ if (val->type == stream_type) { php_stream *stream = (php_stream *)val->ptr; if (stream != NULL && stream->ops == &php_stream_temp_ops && stream->__exposed == 0 && GC_REFCOUNT(val) == 1) { ZEND_ASSERT(!stream->is_persistent); zend_list_delete(val); } } } ZEND_HASH_FOREACH_END(); } /* Adapted from php_request_shutdown */ static void frankenphp_worker_request_shutdown() { /* Flush all output buffers */ zend_try { php_output_end_all(); } zend_end_try(); const char **module_name; zend_module_entry *module; for (module_name = MODULES_TO_RELOAD; *module_name; module_name++) { if ((module = zend_hash_str_find_ptr(&module_registry, *module_name, strlen(*module_name)))) { module->request_shutdown_func(module->type, module->module_number); } } /* Shutdown output layer (send the set HTTP headers, cleanup output handlers, * etc.) */ zend_try { php_output_deactivate(); } zend_end_try(); /* SAPI related shutdown (free stuff) */ frankenphp_free_request_context(); zend_try { sapi_deactivate(); } zend_end_try(); zend_set_memory_limit(PG(memory_limit)); } // shutdown the dummy request that starts the worker script bool frankenphp_shutdown_dummy_request(void) { if (SG(server_context) == NULL) { return false; } frankenphp_worker_request_shutdown(); return true; } PHPAPI void get_full_env(zval *track_vars_array) { go_getfullenv(thread_index, track_vars_array); } void frankenphp_add_assoc_str_ex(zval *track_vars_array, char *key, size_t keylen, zend_string *val) { add_assoc_str_ex(track_vars_array, key, keylen, val); } /* Adapted from php_request_startup() */ static int frankenphp_worker_request_startup() { int retval = SUCCESS; zend_try { frankenphp_destroy_super_globals(); frankenphp_release_temporary_streams(); php_output_activate(); /* initialize global variables */ PG(header_is_being_sent) = 0; PG(connection_status) = PHP_CONNECTION_NORMAL; /* Keep the current execution context */ sapi_activate(); #ifdef ZEND_MAX_EXECUTION_TIMERS if (PG(max_input_time) == -1) { zend_set_timeout(EG(timeout_seconds), 1); } else { zend_set_timeout(PG(max_input_time), 1); } #endif if (PG(expose_php)) { sapi_add_header(SAPI_PHP_VERSION_HEADER, sizeof(SAPI_PHP_VERSION_HEADER) - 1, 1); } if (PG(output_handler) && PG(output_handler)[0]) { zval oh; ZVAL_STRING(&oh, PG(output_handler)); php_output_start_user(&oh, 0, PHP_OUTPUT_HANDLER_STDFLAGS); zval_ptr_dtor(&oh); } else if (PG(output_buffering)) { php_output_start_user(NULL, PG(output_buffering) > 1 ? PG(output_buffering) : 0, PHP_OUTPUT_HANDLER_STDFLAGS); } else if (PG(implicit_flush)) { php_output_set_implicit_flush(1); } php_hash_environment(); /* zend_is_auto_global will force a re-import of the $_SERVER global */ zend_is_auto_global(ZSTR_KNOWN(ZEND_STR_AUTOGLOBAL_SERVER)); /* disarm the $_ENV auto_global to prevent it from being reloaded in worker * mode */ if (zend_hash_str_exists(&EG(symbol_table), "_ENV", 4)) { zend_auto_global *env_global; if ((env_global = zend_hash_find_ptr( CG(auto_globals), ZSTR_KNOWN(ZEND_STR_AUTOGLOBAL_ENV))) != NULL) { env_global->armed = 0; } } const char **module_name; zend_module_entry *module; for (module_name = MODULES_TO_RELOAD; *module_name; module_name++) { if ((module = zend_hash_str_find_ptr(&module_registry, *module_name, strlen(*module_name))) && module->request_startup_func) { module->request_startup_func(module->type, module->module_number); } } } zend_catch { retval = FAILURE; } zend_end_try(); SG(sapi_started) = 1; return retval; } PHP_FUNCTION(frankenphp_finish_request) { /* {{{ */ ZEND_PARSE_PARAMETERS_NONE(); if (go_is_context_done(thread_index)) { RETURN_FALSE; } php_output_end_all(); php_header(); go_frankenphp_finish_php_request(thread_index); RETURN_TRUE; } /* }}} */ /* {{{ Call go's putenv to prevent race conditions */ PHP_FUNCTION(frankenphp_putenv) { char *setting; size_t setting_len; ZEND_PARSE_PARAMETERS_START(1, 1) Z_PARAM_STRING(setting, setting_len) ZEND_PARSE_PARAMETERS_END(); // Cast str_len to int (ensure it fits in an int) if (setting_len > INT_MAX) { php_error(E_WARNING, "String length exceeds maximum integer value"); RETURN_FALSE; } if (go_putenv(thread_index, setting, (int)setting_len)) { RETURN_TRUE; } else { RETURN_FALSE; } } /* }}} */ /* {{{ Call go's getenv to prevent race conditions */ PHP_FUNCTION(frankenphp_getenv) { char *name = NULL; size_t name_len = 0; bool local_only = 0; ZEND_PARSE_PARAMETERS_START(0, 2) Z_PARAM_OPTIONAL Z_PARAM_STRING_OR_NULL(name, name_len) Z_PARAM_BOOL(local_only) ZEND_PARSE_PARAMETERS_END(); if (!name) { array_init(return_value); get_full_env(return_value); return; } struct go_getenv_return result = go_getenv(thread_index, name); if (result.r0) { // Return the single environment variable as a string RETVAL_STR(result.r1); } else { // Environment variable does not exist RETVAL_FALSE; } } /* }}} */ /* {{{ Fetch all HTTP request headers */ PHP_FUNCTION(frankenphp_request_headers) { ZEND_PARSE_PARAMETERS_NONE(); struct go_apache_request_headers_return headers = go_apache_request_headers(thread_index); array_init_size(return_value, headers.r1); for (size_t i = 0; i < headers.r1; i++) { go_string key = headers.r0[i * 2]; go_string val = headers.r0[i * 2 + 1]; add_assoc_stringl_ex(return_value, key.data, key.len, val.data, val.len); } } /* }}} */ /* add_response_header and apache_response_headers are copied from * https://github.com/php/php-src/blob/master/sapi/cli/php_cli_server.c * Copyright (c) The PHP Group * Licensed under The PHP License * Original authors: Moriyoshi Koizumi and Xinchen Hui * */ static void add_response_header(sapi_header_struct *h, zval *return_value) /* {{{ */ { if (h->header_len > 0) { char *s; size_t len = 0; ALLOCA_FLAG(use_heap) char *p = strchr(h->header, ':'); if (NULL != p) { len = p - h->header; } if (len > 0) { while (len != 0 && (h->header[len - 1] == ' ' || h->header[len - 1] == '\t')) { len--; } if (len) { s = do_alloca(len + 1, use_heap); memcpy(s, h->header, len); s[len] = 0; do { p++; } while (*p == ' ' || *p == '\t'); add_assoc_stringl_ex(return_value, s, len, p, h->header_len - (p - h->header)); free_alloca(s, use_heap); } } } } /* }}} */ PHP_FUNCTION(frankenphp_response_headers) /* {{{ */ { ZEND_PARSE_PARAMETERS_NONE(); array_init(return_value); zend_llist_apply_with_argument( &SG(sapi_headers).headers, (llist_apply_with_arg_func_t)add_response_header, return_value); } /* }}} */ PHP_FUNCTION(frankenphp_handle_request) { zend_fcall_info fci; zend_fcall_info_cache fcc; ZEND_PARSE_PARAMETERS_START(1, 1) Z_PARAM_FUNC(fci, fcc) ZEND_PARSE_PARAMETERS_END(); if (!is_worker_thread) { /* not a worker, throw an error */ zend_throw_exception( spl_ce_RuntimeException, "frankenphp_handle_request() called while not in worker mode", 0); RETURN_THROWS(); } #ifdef ZEND_MAX_EXECUTION_TIMERS /* Disable timeouts while waiting for a request to handle */ zend_unset_timeout(); #endif bool has_request = go_frankenphp_worker_handle_request_start(thread_index); if (frankenphp_worker_request_startup() == FAILURE /* Shutting down */ || !has_request) { RETURN_FALSE; } #ifdef ZEND_MAX_EXECUTION_TIMERS /* * Reset default timeout */ if (PG(max_input_time) != -1) { zend_set_timeout(INI_INT("max_execution_time"), 0); } #endif /* Call the PHP func passed to frankenphp_handle_request() */ zval retval = {0}; fci.size = sizeof fci; fci.retval = &retval; if (zend_call_function(&fci, &fcc) == SUCCESS) { zval_ptr_dtor(&retval); } /* * If an exception occurred, print the message to the client before * closing the connection and bailout. */ if (EG(exception) && !zend_is_unwind_exit(EG(exception)) && !zend_is_graceful_exit(EG(exception))) { zend_exception_error(EG(exception), E_ERROR); zend_bailout(); } frankenphp_worker_request_shutdown(); go_frankenphp_finish_worker_request(thread_index); RETURN_TRUE; } PHP_FUNCTION(headers_send) { zend_long response_code = 200; ZEND_PARSE_PARAMETERS_START(0, 1) Z_PARAM_OPTIONAL Z_PARAM_LONG(response_code) ZEND_PARSE_PARAMETERS_END(); int previous_status_code = SG(sapi_headers).http_response_code; SG(sapi_headers).http_response_code = response_code; if (response_code >= 100 && response_code < 200) { int ret = sapi_module.send_headers(&SG(sapi_headers)); SG(sapi_headers).http_response_code = previous_status_code; RETURN_LONG(ret); } RETURN_LONG(sapi_send_headers()); } PHP_MINIT_FUNCTION(frankenphp) { zend_function *func; // Override putenv func = zend_hash_str_find_ptr(CG(function_table), "putenv", sizeof("putenv") - 1); if (func != NULL && func->type == ZEND_INTERNAL_FUNCTION) { ((zend_internal_function *)func)->handler = ZEND_FN(frankenphp_putenv); } else { php_error(E_WARNING, "Failed to find built-in putenv function"); } // Override getenv func = zend_hash_str_find_ptr(CG(function_table), "getenv", sizeof("getenv") - 1); if (func != NULL && func->type == ZEND_INTERNAL_FUNCTION) { ((zend_internal_function *)func)->handler = ZEND_FN(frankenphp_getenv); } else { php_error(E_WARNING, "Failed to find built-in getenv function"); } return SUCCESS; } static zend_module_entry frankenphp_module = { STANDARD_MODULE_HEADER, "frankenphp", ext_functions, /* function table */ PHP_MINIT(frankenphp), /* initialization */ NULL, /* shutdown */ NULL, /* request initialization */ NULL, /* request shutdown */ NULL, /* information */ TOSTRING(FRANKENPHP_VERSION), STANDARD_MODULE_PROPERTIES}; static void frankenphp_request_shutdown() { if (is_worker_thread) { /* ensure $_ENV is not in an invalid state before shutdown */ zval_ptr_dtor_nogc(&PG(http_globals)[TRACK_VARS_ENV]); array_init(&PG(http_globals)[TRACK_VARS_ENV]); } php_request_shutdown((void *)0); frankenphp_free_request_context(); } int frankenphp_update_server_context(bool is_worker_request, const char *request_method, char *query_string, zend_long content_length, char *path_translated, char *request_uri, const char *content_type, char *auth_user, char *auth_password, int proto_num) { SG(server_context) = (void *)1; is_worker_thread = is_worker_request; // It is not reset by zend engine, set it to 200. SG(sapi_headers).http_response_code = 200; SG(request_info).auth_password = auth_password; SG(request_info).auth_user = auth_user; SG(request_info).request_method = request_method; SG(request_info).query_string = query_string; SG(request_info).content_type = content_type; SG(request_info).content_length = content_length; SG(request_info).path_translated = path_translated; SG(request_info).request_uri = request_uri; SG(request_info).proto_num = proto_num; return SUCCESS; } static int frankenphp_startup(sapi_module_struct *sapi_module) { php_import_environment_variables = get_full_env; return php_module_startup(sapi_module, &frankenphp_module); } static int frankenphp_deactivate(void) { return SUCCESS; } static size_t frankenphp_ub_write(const char *str, size_t str_length) { struct go_ub_write_return result = go_ub_write(thread_index, (char *)str, str_length); if (result.r1) { php_handle_aborted_connection(); } return result.r0; } static int frankenphp_send_headers(sapi_headers_struct *sapi_headers) { if (SG(request_info).no_headers == 1) { return SAPI_HEADER_SENT_SUCCESSFULLY; } int status; if (SG(sapi_headers).http_status_line) { status = atoi((SG(sapi_headers).http_status_line) + 9); } else { status = SG(sapi_headers).http_response_code; if (!status) { status = 200; } } bool success = go_write_headers(thread_index, status, &sapi_headers->headers); if (success) { return SAPI_HEADER_SENT_SUCCESSFULLY; } return SAPI_HEADER_SEND_FAILED; } static void frankenphp_sapi_flush(void *server_context) { sapi_send_headers(); if (go_sapi_flush(thread_index)) { php_handle_aborted_connection(); } } static size_t frankenphp_read_post(char *buffer, size_t count_bytes) { return go_read_post(thread_index, buffer, count_bytes); } static char *frankenphp_read_cookies(void) { return go_read_cookies(thread_index); } /* all variables with well defined keys can safely be registered like this */ void frankenphp_register_trusted_var(zend_string *z_key, char *value, size_t val_len, HashTable *ht) { if (value == NULL) { zval empty; ZVAL_EMPTY_STRING(&empty); zend_hash_update_ind(ht, z_key, &empty); return; } size_t new_val_len = val_len; if (!should_filter_var || sapi_module.input_filter(PARSE_SERVER, ZSTR_VAL(z_key), &value, new_val_len, &new_val_len)) { zval z_value; ZVAL_STRINGL_FAST(&z_value, value, new_val_len); zend_hash_update_ind(ht, z_key, &z_value); } } void frankenphp_register_single(zend_string *z_key, char *value, size_t val_len, zval *track_vars_array) { HashTable *ht = Z_ARRVAL_P(track_vars_array); frankenphp_register_trusted_var(z_key, value, val_len, ht); } /* Register known $_SERVER variables in bulk to avoid cgo overhead */ void frankenphp_register_bulk( zval *track_vars_array, ht_key_value_pair remote_addr, ht_key_value_pair remote_host, ht_key_value_pair remote_port, ht_key_value_pair document_root, ht_key_value_pair path_info, ht_key_value_pair php_self, ht_key_value_pair document_uri, ht_key_value_pair script_filename, ht_key_value_pair script_name, ht_key_value_pair https, ht_key_value_pair ssl_protocol, ht_key_value_pair request_scheme, ht_key_value_pair server_name, ht_key_value_pair server_port, ht_key_value_pair content_length, ht_key_value_pair gateway_interface, ht_key_value_pair server_protocol, ht_key_value_pair server_software, ht_key_value_pair http_host, ht_key_value_pair auth_type, ht_key_value_pair remote_ident, ht_key_value_pair request_uri, ht_key_value_pair ssl_cipher) { HashTable *ht = Z_ARRVAL_P(track_vars_array); frankenphp_register_trusted_var(remote_addr.key, remote_addr.val, remote_addr.val_len, ht); frankenphp_register_trusted_var(remote_host.key, remote_host.val, remote_host.val_len, ht); frankenphp_register_trusted_var(remote_port.key, remote_port.val, remote_port.val_len, ht); frankenphp_register_trusted_var(document_root.key, document_root.val, document_root.val_len, ht); frankenphp_register_trusted_var(path_info.key, path_info.val, path_info.val_len, ht); frankenphp_register_trusted_var(php_self.key, php_self.val, php_self.val_len, ht); frankenphp_register_trusted_var(document_uri.key, document_uri.val, document_uri.val_len, ht); frankenphp_register_trusted_var(script_filename.key, script_filename.val, script_filename.val_len, ht); frankenphp_register_trusted_var(script_name.key, script_name.val, script_name.val_len, ht); frankenphp_register_trusted_var(https.key, https.val, https.val_len, ht); frankenphp_register_trusted_var(ssl_protocol.key, ssl_protocol.val, ssl_protocol.val_len, ht); frankenphp_register_trusted_var(ssl_cipher.key, ssl_cipher.val, ssl_cipher.val_len, ht); frankenphp_register_trusted_var(request_scheme.key, request_scheme.val, request_scheme.val_len, ht); frankenphp_register_trusted_var(server_name.key, server_name.val, server_name.val_len, ht); frankenphp_register_trusted_var(server_port.key, server_port.val, server_port.val_len, ht); frankenphp_register_trusted_var(content_length.key, content_length.val, content_length.val_len, ht); frankenphp_register_trusted_var(gateway_interface.key, gateway_interface.val, gateway_interface.val_len, ht); frankenphp_register_trusted_var(server_protocol.key, server_protocol.val, server_protocol.val_len, ht); frankenphp_register_trusted_var(server_software.key, server_software.val, server_software.val_len, ht); frankenphp_register_trusted_var(http_host.key, http_host.val, http_host.val_len, ht); frankenphp_register_trusted_var(auth_type.key, auth_type.val, auth_type.val_len, ht); frankenphp_register_trusted_var(remote_ident.key, remote_ident.val, remote_ident.val_len, ht); frankenphp_register_trusted_var(request_uri.key, request_uri.val, request_uri.val_len, ht); } /** Create an immutable zend_string that lasts for the whole process **/ zend_string *frankenphp_init_persistent_string(const char *string, size_t len) { /* persistent strings will be ignored by the GC at the end of a request */ zend_string *z_string = zend_string_init(string, len, 1); zend_string_hash_val(z_string); /* interned strings will not be ref counted by the GC */ GC_ADD_FLAGS(z_string, IS_STR_INTERNED); return z_string; } static void frankenphp_register_variable_from_request_info(zend_string *zKey, char *value, bool must_be_present, zval *track_vars_array) { if (value != NULL) { frankenphp_register_trusted_var(zKey, value, strlen(value), Z_ARRVAL_P(track_vars_array)); } else if (must_be_present) { frankenphp_register_trusted_var(zKey, NULL, 0, Z_ARRVAL_P(track_vars_array)); } } void frankenphp_register_variables_from_request_info( zval *track_vars_array, zend_string *content_type, zend_string *path_translated, zend_string *query_string, zend_string *auth_user, zend_string *request_method) { frankenphp_register_variable_from_request_info( content_type, (char *)SG(request_info).content_type, true, track_vars_array); frankenphp_register_variable_from_request_info( path_translated, (char *)SG(request_info).path_translated, false, track_vars_array); frankenphp_register_variable_from_request_info( query_string, SG(request_info).query_string, true, track_vars_array); frankenphp_register_variable_from_request_info( auth_user, (char *)SG(request_info).auth_user, false, track_vars_array); frankenphp_register_variable_from_request_info( request_method, (char *)SG(request_info).request_method, false, track_vars_array); } /* variables with user-defined keys must be registered safely * see: php_variables.c -> php_register_variable_ex (#1106) */ void frankenphp_register_variable_safe(char *key, char *val, size_t val_len, zval *track_vars_array) { if (key == NULL) { return; } if (val == NULL) { val = ""; } size_t new_val_len = val_len; if (!should_filter_var || sapi_module.input_filter(PARSE_SERVER, key, &val, new_val_len, &new_val_len)) { php_register_variable_safe(key, val, new_val_len, track_vars_array); } } static inline void register_server_variable_filtered(const char *key, char **val, size_t *val_len, zval *track_vars_array) { if (sapi_module.input_filter(PARSE_SERVER, key, val, *val_len, val_len)) { php_register_variable_safe(key, *val, *val_len, track_vars_array); } } static void frankenphp_register_variables(zval *track_vars_array) { /* https://www.php.net/manual/en/reserved.variables.server.php */ /* In CGI mode, we consider the environment to be a part of the server * variables. */ /* in non-worker mode we import the os environment regularly */ if (!is_worker_thread) { get_full_env(track_vars_array); // php_import_environment_variables(track_vars_array); go_register_variables(thread_index, track_vars_array); return; } /* In worker mode we cache the os environment */ if (os_environment == NULL) { os_environment = malloc(sizeof(zval)); array_init(os_environment); get_full_env(os_environment); // php_import_environment_variables(os_environment); } zend_hash_copy(Z_ARR_P(track_vars_array), Z_ARR_P(os_environment), (copy_ctor_func_t)zval_add_ref); go_register_variables(thread_index, track_vars_array); } static void frankenphp_log_message(const char *message, int syslog_type_int) { go_log((char *)message, syslog_type_int); } static char *frankenphp_getenv(const char *name, size_t name_len) { struct go_getenv_return result = go_getenv(thread_index, (char *)name); if (result.r0) { return result.r1->val; } return NULL; } sapi_module_struct frankenphp_sapi_module = { "frankenphp", /* name */ "FrankenPHP", /* pretty name */ frankenphp_startup, /* startup */ php_module_shutdown_wrapper, /* shutdown */ NULL, /* activate */ frankenphp_deactivate, /* deactivate */ frankenphp_ub_write, /* unbuffered write */ frankenphp_sapi_flush, /* flush */ NULL, /* get uid */ frankenphp_getenv, /* getenv */ php_error, /* error handler */ NULL, /* header handler */ frankenphp_send_headers, /* send headers handler */ NULL, /* send header handler */ frankenphp_read_post, /* read POST data */ frankenphp_read_cookies, /* read Cookies */ frankenphp_register_variables, /* register server variables */ frankenphp_log_message, /* Log message */ NULL, /* Get request time */ NULL, /* Child terminate */ STANDARD_SAPI_MODULE_PROPERTIES}; /* Sets thread name for profiling and debugging. * * Adapted from https://github.com/Pithikos/C-Thread-Pool * Copyright: Johan Hanssen Seferidis * License: MIT */ static void set_thread_name(char *thread_name) { #if defined(__linux__) /* Use prctl instead to prevent using _GNU_SOURCE flag and implicit * declaration */ prctl(PR_SET_NAME, thread_name); #elif defined(__APPLE__) && defined(__MACH__) pthread_setname_np(thread_name); #elif defined(__FreeBSD__) || defined(__OpenBSD__) pthread_set_name_np(pthread_self(), thread_name); #endif } static void *php_thread(void *arg) { thread_index = (uintptr_t)arg; char thread_name[16] = {0}; snprintf(thread_name, 16, "php-%" PRIxPTR, thread_index); set_thread_name(thread_name); #ifdef ZTS /* initial resource fetch */ (void)ts_resource(0); #ifdef PHP_WIN32 ZEND_TSRMLS_CACHE_UPDATE(); #endif #endif // loop until Go signals to stop char *scriptName = NULL; while ((scriptName = go_frankenphp_before_script_execution(thread_index))) { go_frankenphp_after_script_execution(thread_index, frankenphp_execute_script(scriptName)); } #ifdef ZTS ts_free_thread(); #endif go_frankenphp_on_thread_shutdown(thread_index); return NULL; } static void *php_main(void *arg) { /* * SIGPIPE must be masked in non-Go threads: * https://pkg.go.dev/os/signal#hdr-Go_programs_that_use_cgo_or_SWIG */ sigset_t set; sigemptyset(&set); sigaddset(&set, SIGPIPE); if (pthread_sigmask(SIG_BLOCK, &set, NULL) != 0) { perror("failed to block SIGPIPE"); exit(EXIT_FAILURE); } set_thread_name("php-main"); #ifdef ZTS #if (PHP_VERSION_ID >= 80300) php_tsrm_startup_ex((intptr_t)arg); #else php_tsrm_startup(); #endif /*tsrm_error_set(TSRM_ERROR_LEVEL_INFO, NULL);*/ #ifdef PHP_WIN32 ZEND_TSRMLS_CACHE_UPDATE(); #endif #endif sapi_startup(&frankenphp_sapi_module); #ifdef ZEND_MAX_EXECUTION_TIMERS /* overwrite php.ini with custom user settings */ char *php_ini_overrides = go_get_custom_php_ini(false); #else /* overwrite php.ini with custom user settings and disable * max_execution_timers */ char *php_ini_overrides = go_get_custom_php_ini(true); #endif if (php_ini_overrides != NULL) { frankenphp_sapi_module.ini_entries = php_ini_overrides; } frankenphp_sapi_module.startup(&frankenphp_sapi_module); /* check if a default filter is set in php.ini and only filter if * it is, this is deprecated and will be removed in PHP 9 */ char *default_filter; cfg_get_string("filter.default", &default_filter); should_filter_var = default_filter != NULL; go_frankenphp_main_thread_is_ready(); /* channel closed, shutdown gracefully */ frankenphp_sapi_module.shutdown(&frankenphp_sapi_module); sapi_shutdown(); #ifdef ZTS tsrm_shutdown(); #endif if (frankenphp_sapi_module.ini_entries) { free((char *)frankenphp_sapi_module.ini_entries); frankenphp_sapi_module.ini_entries = NULL; } go_frankenphp_shutdown_main_thread(); return NULL; } int frankenphp_new_main_thread(int num_threads) { pthread_t thread; if (pthread_create(&thread, NULL, &php_main, (void *)(intptr_t)num_threads) != 0) { return -1; } return pthread_detach(thread); } bool frankenphp_new_php_thread(uintptr_t thread_index) { pthread_t thread; if (pthread_create(&thread, NULL, &php_thread, (void *)thread_index) != 0) { return false; } pthread_detach(thread); return true; } int frankenphp_request_startup() { if (php_request_startup() == SUCCESS) { return SUCCESS; } php_request_shutdown((void *)0); return FAILURE; } int frankenphp_execute_script(char *file_name) { if (frankenphp_request_startup() == FAILURE) { return FAILURE; } int status = SUCCESS; zend_file_handle file_handle; zend_stream_init_filename(&file_handle, file_name); file_handle.primary_script = 1; zend_first_try { EG(exit_status) = 0; php_execute_script(&file_handle); status = EG(exit_status); } zend_catch { status = EG(exit_status); } zend_end_try(); // free the cached os environment before shutting down the script if (os_environment != NULL) { zval_ptr_dtor(os_environment); free(os_environment); os_environment = NULL; } zend_destroy_file_handle(&file_handle); frankenphp_free_request_context(); frankenphp_request_shutdown(); return status; } /* Use global variables to store CLI arguments to prevent useless allocations */ static char *cli_script; static int cli_argc; static char **cli_argv; static void *execute_script_cli(void *arg) { return (void *)(intptr_t)do_php_cli(cli_argc, cli_argv); } int frankenphp_execute_script_cli(char *script, int argc, char **argv, bool eval) { pthread_t thread; int err; void *exit_status; cli_script = script; cli_argc = argc; cli_argv = argv; /* * Start the script in a dedicated thread to prevent conflicts between Go and * PHP signal handlers */ err = pthread_create(&thread, NULL, execute_script_cli, (void *)eval); if (err != 0) { return err; } err = pthread_join(thread, &exit_status); if (err != 0) { return err; } return (intptr_t)exit_status; } int frankenphp_reset_opcache(void) { zend_function *opcache_reset = zend_hash_str_find_ptr(CG(function_table), ZEND_STRL("opcache_reset")); if (opcache_reset) { zend_call_known_function(opcache_reset, NULL, NULL, NULL, 0, NULL, NULL); } return 0; } int frankenphp_get_current_memory_limit() { return PG(memory_limit); } static zend_module_entry *modules = NULL; static int modules_len = 0; static int (*original_php_register_internal_extensions_func)(void) = NULL; PHPAPI int register_internal_extensions(void) { if (original_php_register_internal_extensions_func != NULL && original_php_register_internal_extensions_func() != SUCCESS) { return FAILURE; } for (int i = 0; i < modules_len; i++) { if (zend_register_internal_module(&modules[i]) == NULL) { return FAILURE; } } modules = NULL; modules_len = 0; return SUCCESS; } void register_extensions(zend_module_entry *m, int len) { modules = m; modules_len = len; original_php_register_internal_extensions_func = php_register_internal_extensions_func; php_register_internal_extensions_func = register_internal_extensions; }