flood_farm.c (224 lines of code) (raw):

/* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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. * * Originally developed by Aaron Bannert and Justin Erenkrantz, eBuilt. */ #include <apr_errno.h> #include <apr_thread_proc.h> #include <apr_strings.h> #if APR_HAVE_STRINGS_H #include <strings.h> /* strncasecmp */ #endif #if APR_HAVE_STRING_H #include <string.h> /* strncasecmp */ #endif #if APR_HAVE_STDLIB_H #include <stdlib.h> /* strtol */ #endif #include "config.h" #include "flood_farmer.h" #include "flood_farm.h" extern apr_file_t *local_stdout; extern apr_file_t *local_stderr; struct farm_t { const char *name; int n_farmers; #if APR_HAS_THREADS apr_thread_t **farmers; /* pointer to array of threads */ #else apr_proc_t **farmers; /* pointer to array of processes */ #endif }; typedef struct farm_t farm_t; struct farmer_worker_info_t { const char *farmer_name; config_t *config; }; typedef struct farmer_worker_info_t farmer_worker_info_t; #if APR_HAS_THREADS /** * Worker function that is assigned to a thread. Each worker is * called a farmer in our system. */ static void * APR_THREAD_FUNC farmer_worker(apr_thread_t *thd, void *data) { apr_status_t stat; apr_pool_t *pool; farmer_worker_info_t *info; info = (farmer_worker_info_t *)data; pool = apr_thread_pool_get(thd); /* should we create a subpool here? */ #ifdef FARM_DEBUG apr_file_printf(local_stdout, "Starting farmer_worker thread '%s'.\n", info->farmer_name); #endif if ((stat = run_farmer(info->config, info->farmer_name, pool)) != APR_SUCCESS) { char buf[256]; apr_strerror(stat, (char*) &buf, 256); apr_file_printf(local_stderr, "Error running farmer '%s': %s.\n", info->farmer_name, (char*) &buf); /* just die for now, later try to return status */ } #if 0 /* this gets uncommented after apr_thread_exit() fixes are commited */ apr_thread_exit(thd, APR_SUCCESS); #endif return NULL; } #else static void *farmer_worker(void *data) { apr_status_t stat; apr_pool_t *pool; farmer_worker_info_t *info; info = (farmer_worker_info_t *)data; apr_pool_create(&pool, NULL); /* should we create a subpool here? */ #ifdef FARM_DEBUG apr_file_printf(local_stdout, "Starting farmer_worker child '%s'.\n", info->farmer_name); #endif if ((stat = run_farmer(info->config, info->farmer_name, pool)) != APR_SUCCESS) { char buf[256]; apr_strerror(stat, (char*) &buf, 256); apr_file_printf(local_stderr, "Error running farmer '%s': %s.\n", info->farmer_name, (char*) &buf); /* just die for now, later try to return status */ } return NULL; } #endif apr_status_t run_farm(config_t *config, const char *farm_name, apr_pool_t *pool) { #if APR_HAS_THREADS apr_status_t child_stat; #endif apr_status_t stat; int usefarmer_count, i, j; long farmer_start_count = 1; apr_time_t farmer_start_delay; char *xml_farm, **usefarmer_names; struct apr_xml_elem *e, *root_elem, *farm_elem; struct apr_xml_attr *use_elem; farm_t *farm; farmer_worker_info_t *infovec; farmer_start_delay = 0; xml_farm = apr_pstrdup(pool, XML_FARM); /* get the root config node */ if ((stat = retrieve_root_xml_elem(&root_elem, config)) != APR_SUCCESS) { return stat; } /* get farmer node from config */ if ((stat = retrieve_xml_elem_with_childmatch( &farm_elem, root_elem, xml_farm, XML_FARM_NAME, farm_name)) != APR_SUCCESS) return stat; /* count the number of "usefarmer" children */ usefarmer_count = 0; for (e = farm_elem->first_child; e; e = e->next) { if (strncasecmp(e->name, XML_FARM_USEFARMER, FLOOD_STRLEN_MAX) == 0) { int found_count = 0; for (use_elem = e->attr; use_elem; use_elem = use_elem->next) { if (use_elem->name && strncasecmp(use_elem->name, XML_FARM_USEFARMER_COUNT, FLOOD_STRLEN_MAX) == 0) { found_count = 1; usefarmer_count += strtol(use_elem->value, NULL, 10); } } if (!found_count) { usefarmer_count++; } } } if (!usefarmer_count) usefarmer_count = 1; /* create each of the children and put their names in an array */ usefarmer_names = apr_palloc(pool, sizeof(char*) * (usefarmer_count + 1)); /* set the sentinel (no need for pcalloc()) */ usefarmer_names[usefarmer_count] = NULL; i = 0; for (e = farm_elem->first_child; e; e = e->next) { int handled_usefarmers = 0; if (strncasecmp(e->name, XML_FARM_USEFARMER, FLOOD_STRLEN_MAX) == 0) { for (use_elem = e->attr; use_elem; use_elem = use_elem->next) { if (use_elem->name && strncasecmp(use_elem->name, XML_FARM_USEFARMER_COUNT, FLOOD_STRLEN_MAX) == 0) { for (j = strtol(use_elem->value, NULL, 10); j > 0; j--) { usefarmer_names[i++] = apr_pstrdup(pool, e->first_cdata.first->text); } handled_usefarmers = 1; } else if (use_elem->name && strncasecmp(use_elem->name, XML_FARM_USEFARMER_DELAY, FLOOD_STRLEN_MAX) == 0) { char *endptr; farmer_start_delay = strtoll(use_elem->value, &endptr, 10); if (*endptr != '\0') { apr_file_printf(local_stderr, "Attribute %s has invalid value %s.\n", XML_FARM_USEFARMER_DELAY, use_elem->value); return APR_EGENERAL; } farmer_start_delay *= APR_USEC_PER_SEC; } else if (use_elem->name && strncasecmp(use_elem->name, XML_FARM_USEFARMER_START, FLOOD_STRLEN_MAX) == 0) { char *endptr; farmer_start_count = strtol(use_elem->value, &endptr, 10); if (*endptr != '\0') { apr_file_printf(local_stderr, "Attribute %s has invalid value %s.\n", XML_FARM_USEFARMER_START, use_elem->value); return APR_EGENERAL; } } } if (!handled_usefarmers) usefarmer_names[i++] = apr_pstrdup(pool, e->first_cdata.first->text); } } /* create the farm object */ farm = apr_pcalloc(pool, sizeof(farm_t)); farm->name = apr_pstrdup(pool, farm_name); farm->n_farmers = usefarmer_count; #if APR_HAS_THREADS farm->farmers = apr_pcalloc(pool, sizeof(apr_thread_t*) * (usefarmer_count + 1)); apr_thread_mutex_create(&config->mutex, APR_THREAD_MUTEX_DEFAULT, pool); #else farm->farmers = apr_pcalloc(pool, sizeof(apr_proc_t*) * (usefarmer_count + 1)); for (i = 0; i < usefarmer_count + 1; i++) farm->farmers[i] = apr_pcalloc(pool, sizeof(apr_proc_t*)); #endif infovec = apr_pcalloc(pool, sizeof(farmer_worker_info_t) * usefarmer_count); /* for each of my farmers, start them */ for (i = 0; i < usefarmer_count; i++) { infovec[i].farmer_name = usefarmer_names[i]; infovec[i].config = config; #if APR_HAS_THREADS if ((stat = apr_thread_create(&farm->farmers[i], NULL, farmer_worker, (void*) &infovec[i], pool)) != APR_SUCCESS) { /* error, perhaps shutdown other threads then exit? */ return stat; } #else if (apr_proc_fork(farm->farmers[i], pool) == APR_INCHILD) { farmer_worker(&infovec[i]); exit(0); } #endif if (farmer_start_delay && (i+1) % farmer_start_count == 0) apr_sleep(farmer_start_delay); } for (i = 0; i < usefarmer_count; i++) { #if APR_HAS_THREADS stat = apr_thread_join(&child_stat, farm->farmers[i]); if (stat != APR_SUCCESS && stat != APR_INCOMPLETE) { #else if ((stat = apr_proc_wait(farm->farmers[i], NULL, NULL, APR_WAIT)) != APR_CHILD_DONE) { #endif apr_file_printf(local_stderr, "Error joining farmer thread '%d' ('%s').\n", i, usefarmer_names[i]); return stat; } else { #ifdef FARM_DEBUG apr_file_printf(local_stdout, "Farmer '%d' ('%s') completed successfully.\n", i, usefarmer_names[i]); #endif } } return APR_SUCCESS; }