mirror of
https://github.com/apache/httpd.git
synced 2025-09-01 02:02:06 +03:00
for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper) and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE. All _VAR_ flavors changes to _DATA to be absolutely clear. Thank you Greg, for the most obvious suggestion. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86609 13f79535-47bb-0310-9956-ffa450edef68
434 lines
14 KiB
C
434 lines
14 KiB
C
/* ====================================================================
|
|
* The Apache Software License, Version 1.1
|
|
*
|
|
* Copyright (c) 2000 The Apache Software Foundation. All rights
|
|
* reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
*
|
|
* 3. The end-user documentation included with the redistribution,
|
|
* if any, must include the following acknowledgment:
|
|
* "This product includes software developed by the
|
|
* Apache Software Foundation (http://www.apache.org/)."
|
|
* Alternately, this acknowledgment may appear in the software itself,
|
|
* if and wherever such third-party acknowledgments normally appear.
|
|
*
|
|
* 4. The names "Apache" and "Apache Software Foundation" must
|
|
* not be used to endorse or promote products derived from this
|
|
* software without prior written permission. For written
|
|
* permission, please contact apache@apache.org.
|
|
*
|
|
* 5. Products derived from this software may not be called "Apache",
|
|
* nor may "Apache" appear in their name, without prior written
|
|
* permission of the Apache Software Foundation.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
|
|
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
* ====================================================================
|
|
*
|
|
* This software consists of voluntary contributions made by many
|
|
* individuals on behalf of the Apache Software Foundation. For more
|
|
* information on the Apache Software Foundation, please see
|
|
* <http://www.apache.org/>.
|
|
*
|
|
* Portions of this software are based upon public domain software
|
|
* originally written at the National Center for Supercomputing Applications,
|
|
* University of Illinois, Urbana-Champaign.
|
|
*/
|
|
|
|
#include "apr_strings.h"
|
|
#include "apr_portable.h"
|
|
#include "ap_config.h"
|
|
#include "httpd.h"
|
|
#include "http_log.h"
|
|
#include "http_main.h"
|
|
#include "http_core.h"
|
|
#include "http_config.h"
|
|
#include "unixd.h"
|
|
#include "http_conf_globals.h"
|
|
#include "mpm_status.h"
|
|
#include "mpm.h"
|
|
#include "scoreboard.h"
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
|
|
scoreboard *ap_scoreboard_image = NULL;
|
|
new_scoreboard *ap_new_scoreboard_image = NULL;
|
|
static int maintain_connection_status = 1;
|
|
/*****************************************************************
|
|
*
|
|
* Dealing with the scoreboard... a lot of these variables are global
|
|
* only to avoid getting clobbered by the longjmp() that happens when
|
|
* a hard timeout expires...
|
|
*
|
|
* We begin with routines which deal with the file itself...
|
|
*/
|
|
|
|
#if APR_HAS_SHARED_MEMORY
|
|
#include "apr_shmem.h"
|
|
|
|
static apr_shmem_t *scoreboard_shm = NULL;
|
|
|
|
apr_status_t ap_cleanup_shared_mem(void *d)
|
|
{
|
|
apr_shm_free(scoreboard_shm, ap_scoreboard_image);
|
|
ap_scoreboard_image = NULL;
|
|
apr_shm_destroy(scoreboard_shm);
|
|
|
|
return APR_SUCCESS;
|
|
}
|
|
|
|
static void setup_shared_mem(apr_pool_t *p)
|
|
{
|
|
char buf[512];
|
|
const char *fname;
|
|
|
|
fname = ap_server_root_relative(p, ap_scoreboard_fname);
|
|
if (apr_shm_init(&scoreboard_shm, SCOREBOARD_SIZE + NEW_SCOREBOARD_SIZE + 40, fname, p) != APR_SUCCESS) {
|
|
apr_snprintf(buf, sizeof(buf), "%s: could not open(create) scoreboard",
|
|
ap_server_argv0);
|
|
perror(buf);
|
|
exit(APEXIT_INIT);
|
|
}
|
|
ap_scoreboard_image = apr_shm_malloc(scoreboard_shm, SCOREBOARD_SIZE);
|
|
ap_new_scoreboard_image = apr_shm_malloc(scoreboard_shm, NEW_SCOREBOARD_SIZE);
|
|
if (ap_scoreboard_image == NULL || ap_new_scoreboard_image == NULL) {
|
|
apr_snprintf(buf, sizeof(buf), "%s: cannot allocate scoreboard",
|
|
ap_server_argv0);
|
|
perror(buf);
|
|
apr_shm_destroy(scoreboard_shm);
|
|
exit(APEXIT_INIT);
|
|
}
|
|
apr_register_cleanup(p, NULL, ap_cleanup_shared_mem, apr_null_cleanup);
|
|
ap_scoreboard_image->global.running_generation = 0;
|
|
}
|
|
|
|
void reopen_scoreboard(apr_pool_t *p)
|
|
{
|
|
}
|
|
#endif /* APR_SHARED_MEM */
|
|
|
|
/* Called by parent process */
|
|
void reinit_scoreboard(apr_pool_t *p)
|
|
{
|
|
int running_gen = 0;
|
|
if (ap_scoreboard_image)
|
|
running_gen = ap_scoreboard_image->global.running_generation;
|
|
if (ap_scoreboard_image == NULL) {
|
|
setup_shared_mem(p);
|
|
}
|
|
memset(ap_scoreboard_image, 0, SCOREBOARD_SIZE);
|
|
ap_scoreboard_image->global.running_generation = running_gen;
|
|
}
|
|
|
|
/* Routines called to deal with the scoreboard image
|
|
* --- note that we do *not* need write locks, since update_child_status
|
|
* only updates a *single* record in place, and only one process writes to
|
|
* a given scoreboard slot at a time (either the child process owning that
|
|
* slot, or the parent, noting that the child has died).
|
|
*
|
|
* As a final note --- setting the score entry to getpid() is always safe,
|
|
* since when the parent is writing an entry, it's only noting SERVER_DEAD
|
|
* anyway.
|
|
*/
|
|
|
|
apr_inline void ap_sync_scoreboard_image(void)
|
|
{
|
|
}
|
|
|
|
AP_DECLARE(int) ap_exists_scoreboard_image(void)
|
|
{
|
|
return (ap_scoreboard_image ? 1 : 0);
|
|
}
|
|
|
|
static apr_inline void put_scoreboard_info(int child_num, int thread_num,
|
|
thread_score *new_score_rec)
|
|
{
|
|
/* XXX - needs to be fixed to account for threads */
|
|
#ifdef SCOREBOARD_FILE
|
|
lseek(scoreboard_fd, (long) child_num * sizeof(thread_score), 0);
|
|
force_write(scoreboard_fd, new_score_rec, sizeof(thread_score));
|
|
#endif
|
|
}
|
|
|
|
void update_scoreboard_global(void)
|
|
{
|
|
#ifdef SCOREBOARD_FILE
|
|
lseek(scoreboard_fd,
|
|
(char *) &ap_scoreboard_image->global -(char *) ap_scoreboard_image, 0);
|
|
force_write(scoreboard_fd, &ap_scoreboard_image->global,
|
|
sizeof ap_scoreboard_image->global);
|
|
#endif
|
|
}
|
|
|
|
void increment_counts(int child_num, int thread_num, request_rec *r)
|
|
{
|
|
long int bs = 0;
|
|
thread_score *ss;
|
|
|
|
ss = &ap_scoreboard_image->servers[child_num][thread_num];
|
|
|
|
if (r->sent_bodyct)
|
|
ap_bgetopt(r->connection->client, BO_BYTECT, &bs);
|
|
|
|
#ifdef HAVE_TIMES
|
|
times(&ss->times);
|
|
#endif
|
|
ss->access_count++;
|
|
ss->my_access_count++;
|
|
ss->conn_count++;
|
|
ss->bytes_served += (unsigned long) bs;
|
|
ss->my_bytes_served += (unsigned long) bs;
|
|
ss->conn_bytes += (unsigned long) bs;
|
|
|
|
put_scoreboard_info(child_num, thread_num, ss);
|
|
|
|
}
|
|
|
|
AP_DECLARE(int) find_child_by_pid(apr_proc_t *pid)
|
|
{
|
|
int i;
|
|
int max_daemons_limit = ap_get_max_daemons();
|
|
|
|
for (i = 0; i < max_daemons_limit; ++i)
|
|
if (ap_scoreboard_image->parent[i].pid == pid->pid)
|
|
return i;
|
|
|
|
return -1;
|
|
}
|
|
|
|
int ap_update_child_status(int child_num, int thread_num, int status, request_rec *r)
|
|
{
|
|
int old_status;
|
|
thread_score *ss;
|
|
parent_score *ps;
|
|
|
|
if (child_num < 0)
|
|
return -1;
|
|
|
|
ss = &ap_scoreboard_image->servers[child_num][thread_num];
|
|
old_status = ss->status;
|
|
ss->status = status;
|
|
|
|
ps = &ap_scoreboard_image->parent[child_num];
|
|
|
|
if ((status == SERVER_READY || status == SERVER_ACCEPTING)
|
|
&& old_status == SERVER_STARTING) {
|
|
ss->tid = pthread_self();
|
|
ps->worker_threads = ap_threads_per_child;
|
|
}
|
|
|
|
if (ap_extended_status) {
|
|
if (status == SERVER_READY || status == SERVER_DEAD) {
|
|
/*
|
|
* Reset individual counters
|
|
*/
|
|
if (status == SERVER_DEAD) {
|
|
ss->my_access_count = 0L;
|
|
ss->my_bytes_served = 0L;
|
|
}
|
|
ss->conn_count = (unsigned short) 0;
|
|
ss->conn_bytes = (unsigned long) 0;
|
|
}
|
|
if (r) {
|
|
conn_rec *c = r->connection;
|
|
apr_cpystrn(ss->client, ap_get_remote_host(c, r->per_dir_config,
|
|
REMOTE_NOLOOKUP), sizeof(ss->client));
|
|
if (r->the_request == NULL) {
|
|
apr_cpystrn(ss->request, "NULL", sizeof(ss->request));
|
|
} else if (r->parsed_uri.password == NULL) {
|
|
apr_cpystrn(ss->request, r->the_request, sizeof(ss->request));
|
|
} else {
|
|
/* Don't reveal the password in the server-status view */
|
|
apr_cpystrn(ss->request, apr_pstrcat(r->pool, r->method, " ",
|
|
ap_unparse_uri_components(r->pool, &r->parsed_uri, UNP_OMITPASSWORD),
|
|
r->assbackwards ? NULL : " ", r->protocol, NULL),
|
|
sizeof(ss->request));
|
|
}
|
|
ss->vhostrec = r->server;
|
|
}
|
|
}
|
|
|
|
put_scoreboard_info(child_num, thread_num, ss);
|
|
return old_status;
|
|
}
|
|
|
|
void ap_time_process_request(int child_num, int thread_num, int status)
|
|
{
|
|
thread_score *ss;
|
|
|
|
if (child_num < 0)
|
|
return;
|
|
|
|
ss = &ap_scoreboard_image->servers[child_num][thread_num];
|
|
|
|
if (status == START_PREQUEST) {
|
|
ss->start_time = apr_now();
|
|
}
|
|
else if (status == STOP_PREQUEST) {
|
|
ss->stop_time = apr_now();
|
|
}
|
|
put_scoreboard_info(child_num, thread_num, ss);
|
|
}
|
|
|
|
/* Useful to erase the status of children that might be from previous
|
|
* generations */
|
|
void ap_mpmt_pthread_force_reset_connection_status(long conn_id)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < STATUSES_PER_CONNECTION; i++) { ap_new_scoreboard_image->table[conn_id][i].key[0] = '\0';
|
|
} }
|
|
|
|
void ap_reset_connection_status(long conn_id)
|
|
{
|
|
if (maintain_connection_status) {
|
|
ap_mpmt_pthread_force_reset_connection_status(conn_id);
|
|
}
|
|
}
|
|
|
|
/* Don't mess with the string you get back from this function */
|
|
const char *ap_get_connection_status(long conn_id, const char *key)
|
|
{
|
|
int i = 0;
|
|
status_table_entry *ss;
|
|
|
|
if (!maintain_connection_status) return "";
|
|
while (i < STATUSES_PER_CONNECTION) { ss = &(ap_new_scoreboard_image->table[conn_id][i]);
|
|
if (ss->key[0] == '\0') { break;
|
|
}
|
|
if (0 == strcmp(ss->key, key)) {
|
|
return ss->value;
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
apr_array_header_t *ap_get_connections(apr_pool_t *p)
|
|
{
|
|
int i;
|
|
apr_array_header_t *connection_list;
|
|
long *array_slot;
|
|
int max_daemons_limit = ap_get_max_daemons();
|
|
|
|
connection_list = apr_make_array(p, 0, sizeof(long));
|
|
/* We assume that there is a connection iff it has an entry in the status
|
|
* table. Connections without any status sound problematic to me, so this
|
|
* is probably for the best. - manoj */
|
|
for (i = 0; i < max_daemons_limit*HARD_THREAD_LIMIT; i++) {
|
|
if (ap_new_scoreboard_image->table[i][0].key[0] != '\0') {
|
|
array_slot = apr_push_array(connection_list);
|
|
*array_slot = i;
|
|
}
|
|
}
|
|
return connection_list;
|
|
}
|
|
|
|
apr_array_header_t *ap_get_connection_keys(apr_pool_t *p, long conn_id)
|
|
{
|
|
int i = 0;
|
|
status_table_entry *ss;
|
|
apr_array_header_t *key_list;
|
|
char **array_slot;
|
|
|
|
key_list = apr_make_array(p, 0, KEY_LENGTH * sizeof(char));
|
|
while (i < STATUSES_PER_CONNECTION) {
|
|
ss = &(ap_new_scoreboard_image->table[conn_id][i]);
|
|
if (ss->key[0] == '\0') {
|
|
break;
|
|
}
|
|
array_slot = apr_push_array(key_list);
|
|
*array_slot = apr_pstrdup(p, ss->key);
|
|
i++;
|
|
}
|
|
return key_list;
|
|
}
|
|
|
|
/* Note: no effort is made here to prevent multiple threads from messing with
|
|
* a single connection at the same time. ap_update_connection_status should
|
|
* only be called by the thread that owns the connection */
|
|
|
|
void ap_update_connection_status(long conn_id, const char *key,
|
|
const char *value)
|
|
{
|
|
int i = 0;
|
|
status_table_entry *ss;
|
|
|
|
if (!maintain_connection_status) return;
|
|
while (i < STATUSES_PER_CONNECTION) {
|
|
ss = &(ap_new_scoreboard_image->table[conn_id][i]);
|
|
if (ss->key[0] == '\0') { break;
|
|
} if (0 == strcmp(ss->key, key)) {
|
|
apr_cpystrn(ss->value, value, VALUE_LENGTH);
|
|
return;
|
|
}
|
|
i++;
|
|
}
|
|
/* Not found. Add an entry for this value */
|
|
if (i >= STATUSES_PER_CONNECTION) {
|
|
/* No room. Oh well, not much anyone can do about it. */
|
|
return;
|
|
}
|
|
apr_cpystrn(ss->key, key, KEY_LENGTH);
|
|
apr_cpystrn(ss->value, value, VALUE_LENGTH);
|
|
return;
|
|
}
|
|
|
|
apr_array_header_t *ap_get_status_table(apr_pool_t *p)
|
|
{
|
|
int i, j;
|
|
apr_array_header_t *server_status;
|
|
ap_status_table_row_t *array_slot;
|
|
int max_daemons_limit = ap_get_max_daemons();
|
|
status_table_entry *ss;
|
|
|
|
server_status = apr_make_array(p, 0, sizeof(ap_status_table_row_t));
|
|
|
|
/* Go ahead and return what's in the connection status table even if we
|
|
* aren't maintaining it. We can at least look at what children from
|
|
* previous generations are up to. */
|
|
|
|
for (i = 0; i < max_daemons_limit*HARD_THREAD_LIMIT; i++) {
|
|
if (ap_new_scoreboard_image->table[i][0].key[0] == '\0')
|
|
continue;
|
|
array_slot = apr_push_array(server_status);
|
|
array_slot->data = apr_make_table(p, 0);
|
|
array_slot->conn_id = i;
|
|
|
|
for (j = 0; j < STATUSES_PER_CONNECTION; j++) {
|
|
ss = &(ap_new_scoreboard_image->table[i][j]);
|
|
if (ss->key[0] != '\0') {
|
|
apr_table_add(array_slot->data, ss->key, ss->value);
|
|
}
|
|
else {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return server_status;
|
|
}
|
|
|
|
|