📄 mod_jk.c
字号:
/* * Copyright 1999-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *//*************************************************************************** * Description: Apache 2 plugin for Jakarta/Tomcat * * Author: Gal Shachor <shachor@il.ibm.com> * * Henri Gomez <hgomez@apache.org> * * Version: $Revision: 1.151 $ * ***************************************************************************//* * mod_jk: keeps all servlet/jakarta related ramblings together. */#include "ap_config.h"#include "apr_lib.h"#include "apr_date.h"#include "apr_file_info.h"#include "apr_file_io.h"#include "httpd.h"#include "http_config.h"#include "http_request.h"#include "http_core.h"#include "http_protocol.h"#include "http_main.h"#include "http_log.h"#include "util_script.h"#include "ap_mpm.h"#ifdef AS400#include "ap_charset.h"#include "util_charset.h" /* ap_hdrs_from_ascii */#endif/* moved to apr since http-2.0.19-dev */#if (MODULE_MAGIC_NUMBER_MAJOR < 20010523)#define apr_date_parse_http ap_parseHTTPdate#include "util_date.h"#endif/* deprecated with apr 0.9.3 *//* The latest Apache 2.0.47 for iSeries didn't export apr_filepath_name_get but apr_filename_of_pathname, even if includes seems right and the APR in use is 0.9.4*/#include "apr_version.h"#if (APR_MAJOR_VERSION == 0) && \ (APR_MINOR_VERSION <= 9) && \ (APR_PATCH_VERSION < 3) || defined(AS400)#define apr_filepath_name_get apr_filename_of_pathname#endif#include "apr_strings.h"#if APR_USE_SYSVSEM_SERIALIZE || APR_USE_FLOCK_SERIALIZE#include "unixd.h" /* for unixd_set_global_mutex_perms */#endif/* * Jakarta (jk_) include files */#ifdef NETWARE#define __sys_types_h__#define __sys_socket_h__#define __netdb_h__#define __netinet_in_h__#define __arpa_inet_h__#define __sys_timeval_h__#endif#include "jk_global.h"#include "jk_ajp13.h"#include "jk_logger.h"#include "jk_map.h"#include "jk_pool.h"#include "jk_service.h"#include "jk_uri_worker_map.h"#include "jk_util.h"#include "jk_worker.h"#include "jk_shm.h"#define JK_WORKER_ID ("jakarta.worker")#define JK_HANDLER ("jakarta-servlet")#define JK_DURATION ("jakarta.worker.duration")#define JK_MAGIC_TYPE ("application/x-jakarta-servlet")#define NULL_FOR_EMPTY(x) ((x && !strlen(x)) ? NULL : x)#define STRNULL_FOR_NULL(x) ((x) ? (x) : "(null)")/* * If you are not using SSL, comment out the following line. It will make * apache run faster. * * Personally, I (DM), think this may be a lie. */#define ADD_SSL_INFO/* module MODULE_VAR_EXPORT jk_module; */AP_MODULE_DECLARE_DATA module jk_module;typedef struct{ /* * Log stuff */ char *log_file; int log_level; jk_logger_t *log; apr_file_t *jklogfp; /* * Worker stuff */ jk_map_t *worker_properties; char *worker_file; char *mount_file; jk_map_t *uri_to_context; int mountcopy; char *secret_key; jk_map_t *automount; jk_uri_worker_map_t *uw_map; int was_initialized; /* * Automatic context path apache alias */ char *alias_dir; /* * Request Logging */ char *format_string; apr_array_header_t *format; /* * SSL Support */ int ssl_enable; char *https_indicator; char *certs_indicator; char *cipher_indicator; char *session_indicator; /* Servlet API 2.3 requirement */ char *key_size_indicator; /* Servlet API 2.3 requirement */ /* * Jk Options */ int options; /* * Environment variables support */ int envvars_in_use; apr_table_t *envvars; server_rec *s;} jk_server_conf_t;struct apache_private_data{ jk_pool_t p; int response_started; int read_body_started; request_rec *r;};typedef struct apache_private_data apache_private_data_t;static jk_logger_t *main_log = NULL;static jk_worker_env_t worker_env;static apr_global_mutex_t *jk_log_lock = NULL;static char *jk_shm_file = NULL;static size_t jk_shm_size = JK_SHM_DEF_SIZE;static int JK_METHOD ws_start_response(jk_ws_service_t *s, int status, const char *reason, const char *const *header_names, const char *const *header_values, unsigned num_of_headers);static int JK_METHOD ws_read(jk_ws_service_t *s, void *b, unsigned len, unsigned *actually_read);static void init_jk(apr_pool_t * pconf, jk_server_conf_t * conf, server_rec * s);static int JK_METHOD ws_write(jk_ws_service_t *s, const void *b, unsigned l);/* ========================================================================= *//* JK Service step callbacks *//* ========================================================================= */static int JK_METHOD ws_start_response(jk_ws_service_t *s, int status, const char *reason, const char *const *header_names, const char *const *header_values, unsigned num_of_headers){ unsigned h; apache_private_data_t *p = s->ws_private; request_rec *r = p->r; if (!reason) { reason = ""; } r->status = status; r->status_line = apr_psprintf(r->pool, "%d %s", status, reason); for (h = 0; h < num_of_headers; h++) { if (!strcasecmp(header_names[h], "Content-type")) { char *tmp = apr_pstrdup(r->pool, header_values[h]); ap_content_type_tolower(tmp); /* It should be done like this in Apache 2.0 */ /* This way, Apache 2.0 will be able to set the output filter */ /* and it make jk useable with deflate using */ /* AddOutputFilterByType DEFLATE text/html */ ap_set_content_type(r, tmp); } else if (!strcasecmp(header_names[h], "Location")) {#ifdef AS400 /* Fix escapes in Location Header URL */ ap_fixup_escapes((char *)header_values[h], strlen(header_values[h]), ap_hdrs_from_ascii);#endif apr_table_set(r->headers_out, header_names[h], header_values[h]); } else if (!strcasecmp(header_names[h], "Content-Length")) { apr_table_set(r->headers_out, header_names[h], header_values[h]); } else if (!strcasecmp(header_names[h], "Transfer-Encoding")) { apr_table_set(r->headers_out, header_names[h], header_values[h]); } else if (!strcasecmp(header_names[h], "Last-Modified")) { /* * If the script gave us a Last-Modified header, we can't just * pass it on blindly because of restrictions on future values. */ ap_update_mtime(r, apr_date_parse_http(header_values[h])); ap_set_last_modified(r); } else { apr_table_add(r->headers_out, header_names[h], header_values[h]); } } /* this NOP function was removed in apache 2.0 alpha14 */ /* ap_send_http_header(r); */ p->response_started = JK_TRUE; return JK_TRUE;}/* * Read a chunk of the request body into a buffer. Attempt to read len * bytes into the buffer. Write the number of bytes actually read into * actually_read. * * Think of this function as a method of the apache1.3-specific subclass of * the jk_ws_service class. Think of the *s param as a "this" or "self" * pointer. */static int JK_METHOD ws_read(jk_ws_service_t *s, void *b, unsigned len, unsigned *actually_read){ if (s && s->ws_private && b && actually_read) { apache_private_data_t *p = s->ws_private; if (!p->read_body_started) { if (ap_should_client_block(p->r)) { p->read_body_started = JK_TRUE; } } if (p->read_body_started) {#ifdef AS400 int long rv = OK; if (rv = ap_change_request_body_xlate(p->r, 65535, 65535)) { /* turn off request body translation */ ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_CRIT, 0, NULL, "mod_jk: Error on ap_change_request_body_xlate, rc=%d", rv); return JK_FALSE; }#else long rv;#endif if ((rv = ap_get_client_block(p->r, b, len)) < 0) { *actually_read = 0; } else { *actually_read = (unsigned)rv; } return JK_TRUE; } } return JK_FALSE;}static void JK_METHOD ws_flush(jk_ws_service_t *s){#ifndef AS400 if (s && s->ws_private) { apache_private_data_t *p = s->ws_private; ap_rflush(p->r); }#endif}/* * Write a chunk of response data back to the browser. If the headers * haven't yet been sent over, send over default header values (Status = * 200, basically). * * Write len bytes from buffer b. * * Think of this function as a method of the apache1.3-specific subclass of * the jk_ws_service class. Think of the *s param as a "this" or "self" * pointer. *//* Works with 4096, fails with 8192 */#ifndef CHUNK_SIZE#define CHUNK_SIZE 4096#endifstatic int JK_METHOD ws_write(jk_ws_service_t *s, const void *b, unsigned int l){#ifdef AS400 int rc;#endif if (s && s->ws_private && b) { apache_private_data_t *p = s->ws_private; if (l) { /* BUFF *bf = p->r->connection->client; */ int r = 0; int ll = l; const char *bb = (const char *)b; if (!p->response_started) { if (JK_IS_DEBUG_LEVEL(main_log)) jk_log(main_log, JK_LOG_DEBUG, "Write without start, starting with defaults"); if (!s->start_response(s, 200, NULL, NULL, NULL, 0)) { return JK_FALSE; } } if (p->r->header_only) {#ifndef AS400 ap_rflush(p->r);#endif return JK_TRUE; }#ifdef AS400 /* turn off response body translation */ rc = ap_change_response_body_xlate(p->r, 65535, 65535); if (rc) { ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_CRIT, 0, NULL, "mod_jk: Error on ap_change_response_body_xlate, rc=%d", rc); return JK_FALSE; }#endif while (ll > 0 && !p->r->connection->aborted) {#if 0 /* Apache 2 output filter does not write * directly to the wire. */ int toSend = (ll > CHUNK_SIZE) ? CHUNK_SIZE : ll; r = ap_rwrite(bb, toSend, p->r);#else r = ap_rwrite(bb, ll, p->r);#endif if (JK_IS_DEBUG_LEVEL(main_log)) jk_log(main_log, JK_LOG_DEBUG, "written %d out of %d", r, ll); if (r < 0) return JK_FALSE; ll -= r; bb += r; } } return JK_TRUE; } return JK_FALSE;}/* ========================================================================= *//* Utility functions *//* ========================================================================= */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -