ab.c revision 5bfaaf573bacb45c1cf290ce85ecc676587e8a64
/* 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
*
*
* 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.
*/
/*
** This program is based on ZeusBench V1.0 written by Adam Twiss
** which is Copyright (c) 1996 by Zeus Technology Ltd. http://www.zeustech.net/
**
** This software is provided "as is" and any express or implied waranties,
** including but not limited to, the implied warranties of merchantability and
** fitness for a particular purpose are disclaimed. In no event shall
** Zeus Technology Ltd. be liable for any direct, indirect, incidental, special,
** exemplary, or consequential damaged (including, but not limited to,
** procurement of substitute good or services; loss of use, data, or profits;
** or business interruption) however caused and on 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.
**
*/
/*
** HISTORY:
** - Originally written by Adam Twiss <adam@zeus.co.uk>, March 1996
** with input from Mike Belshe <mbelshe@netscape.com> and
** Michael Campanella <campanella@stevms.enet.dec.com>
** - Enhanced by Dean Gaudet <dgaudet@apache.org>, November 1997
** - Cleaned up by Ralf S. Engelschall <rse@apache.org>, March 1998
** - POST and verbosity by Kurt Sussman <kls@merlot.com>, August 1998
** - HTML table output added by David N. Welton <davidw@prosa.it>, January 1999
** - Added Cookie, Arbitrary header and auth support. <dirkx@webweaving.org>, April 1999
** Version 1.3d
** fundamentally changed - and will give fundamentally different results
** in situations where a server is dropping requests. Therefore you can
** no longer compare results of AB as easily. Hence the inc of the version.
** They should be closer to the truth though. Sander & <dirkx@covalent.net>, End 2000.
** output option, added _experimental/rudimentary_ SSL support. Added
** confidence guestimators and warnings. Sander & <dirkx@covalent.net>, End 2000
** - Fixed serious int overflow issues which would cause realistic (longer
** than a few minutes) run's to have wrong (but believable) results. Added
** trapping of connection errors which influenced measurements.
** Contributed by Sander Temme, Early 2001
** Version 1.3e
** - Changed timeout behavour during write to work whilst the sockets
** are filling up and apr_write() does writes a few - but not all.
** This will potentially change results. <dirkx@webweaving.org>, April 2001
** Version 2.0.36-dev
** Improvements to concurrent processing:
** - Enabled non-blocking connect()s.
** - Prevent blocking calls to apr_socket_recv() (thereby allowing AB to
** manage its entire set of socket descriptors).
** - Any error returned from apr_socket_recv() that is not EAGAIN or EOF
** is now treated as fatal.
** Contributed by Aaron Bannert, April 24, 2002
**
** Version 2.0.36-2
** Internalized the version string - this string is part
** of the Agent: header and the result output.
**
** Version 2.0.37-dev
** Adopted SSL code by Madhu Mathihalli <madhusudan_mathihalli@hp.com>
** [PATCH] ab with SSL support Posted Wed, 15 Aug 2001 20:55:06 GMT
** Introduces four 'if (int == value)' tests per non-ssl request.
**
** Version 2.0.40-dev
** Switched to the new abstract pollset API, allowing ab to
** take advantage of future apr_pollset_t scalability improvements.
** Contributed by Brian Pane, August 31, 2002
**
** Version 2.3
** SIGINT now triggers output_results().
** Contributed by colm, March 30, 2006
**/
/* Note: this version string should start with \d+[\d\.]* and be a valid
* string for an HTTP Agent: header when prefixed with 'ApacheBench/'.
* It should reflect the version of AB - and not that of the apache server
* it happens to accompany. And it should be updated or changed whenever
* the results are no longer fundamentally comparable to the results of
* a previous version of ab. Either due to a change in the logic of
* ab - or to due to a change in the distribution it is compiled with
* (such as an APR change in for example blocking).
*/
#define AP_AB_BASEREVISION "2.3"
/*
* BUGS:
*
* - has various other poor buffer attacks related to the lazy parsing of
* response headers from the server
* - doesn't implement much of HTTP/1.x, only accepts certain forms of
* responses
* - (performance problem) heavy use of strstr shows up top in profile
* only an issue for loopback usage
*/
/* -------------------------------------------------------------------- */
#if 'A' != 0x41
/* Hmmm... This source code isn't being compiled in ASCII.
* In order for data that flows over the network to make
*/
#define NOT_ASCII
#endif
/* affects include files on Solaris */
#define BSD_COMP
#include "apr.h"
#include "apr_signal.h"
#include "apr_strings.h"
#include "apr_network_io.h"
#include "apr_file_io.h"
#include "apr_time.h"
#include "apr_getopt.h"
#include "apr_general.h"
#include "apr_lib.h"
#include "apr_portable.h"
#include "ap_release.h"
#include "apr_poll.h"
#define APR_WANT_STRFUNC
#include "apr_want.h"
#include "apr_base64.h"
#ifdef NOT_ASCII
#include "apr_xlate.h"
#endif
#if APR_HAVE_STDIO_H
#include <stdio.h>
#endif
#include <stdlib.h>
#endif
#include <unistd.h> /* for getpid() */
#endif
#include "ap_config_auto.h"
#endif
#if defined(HAVE_OPENSSL)
#define USE_SSL
#define SK_NUM(x) sk_X509_num(x)
#define SK_VALUE(x,y) sk_X509_value(x,y)
#endif
#if defined(USE_SSL)
#if (OPENSSL_VERSION_NUMBER >= 0x00909000)
#define AB_SSL_METHOD_CONST const
#else
#define AB_SSL_METHOD_CONST
#endif
#if (OPENSSL_VERSION_NUMBER >= 0x0090707f)
#define AB_SSL_CIPHER_CONST const
#else
#define AB_SSL_CIPHER_CONST
#endif
#endif
#include <math.h>
#if APR_HAVE_CTYPE_H
#include <ctype.h>
#endif
#include <limits.h>
#endif
/* ------------------- DEFINITIONS -------------------------- */
#ifndef LLONG_MAX
#else
#endif
/* maximum number of requests on a time limited test */
/* connection state
* don't add enums or rearrange or otherwise change values without
* visiting set_conn_state()
*/
typedef enum {
STATE_UNCONNECTED = 0,
STATE_CONNECTING, /* TCP connect initiated, but we don't
* know if it worked yet
*/
STATE_CONNECTED, /* we know TCP connect completed */
#define CBUFFSIZE (2048)
struct connection {
int state;
* EAGAINs */
int cbx; /* offset in cbuffer */
int keepalive; /* non-zero if a keep-alive request */
int gotheader; /* non-zero if we have the entire header in
* cbuff */
connect, /* Connected, start writing */
endwrite, /* Request written */
beginread, /* First byte of input */
done; /* Connection closed */
int socknum;
#ifdef USE_SSL
#endif
};
struct data {
};
#define ap_min(a,b) (((a)<(b))?(a):(b))
#define ap_max(a,b) (((a)>(b))?(a):(b))
#define ap_double_ms(a) ((double)(a)/1000.0)
#define MAX_CONCURRENCY 20000
/* --------------------- GLOBALS ---------------------------- */
int verbosity = 0; /* no verbosity by default */
int recverrok = 0; /* ok to proceed after socket receive errors */
int send_body = 0; /* non-zero if sending body with request */
int tlimit = 0; /* time limit in secs */
int keepalive = 0; /* try and do keepalive connections */
int windowsize = 0; /* we use the OS default window size */
char *hostname; /* host name from URL */
const char *host_field; /* value of "Host:" header field */
const char *path; /* path name */
char *postdata; /* *buffer containing data from postfile */
const char *cookie, /* optional cookie line */
*hdrs; /* optional arbitrary headers */
int proxyport = 0; /* proxy port */
const char *connecthost;
const char *myhost;
const char *gnuplot; /* GNUplot file */
const char *csvperc; /* CSV Percentile file */
char url[1024];
const char *fullurl;
const char *colonhost;
int isproxy = 0;
/* overrides for ab-generated common headers */
int opt_host = 0; /* was an optional "Host:" header specified? */
int opt_useragent = 0; /* was an optional "User-Agent:" header specified? */
int opt_accept = 0; /* was an optional "Accept:" header specified? */
/*
*/
int use_html = 0; /* use html in the report */
const char *tablestring;
const char *trstring;
const char *tdstring;
int started = 0; /* number of requests started, so no excess */
int done = 0; /* number of requests we have done */
int doneka = 0; /* number of keep alive connections done */
int epipe = 0; /* number of broken pipe writes */
int err_length = 0; /* requests failed due to response length */
int err_conn = 0; /* requests failed due to connection drop */
int err_recv = 0; /* requests failed due to broken read */
int err_except = 0; /* requests failed due to exception */
int err_response = 0; /* requests with invalid or non-200 response */
#ifdef USE_SSL
int is_ssl;
char *ssl_cipher = NULL;
#endif
/* global request (and its length) */
char _request[2048];
/* one global throw-away buffer to read stuff into */
char buffer[8192];
/* interesting percentiles */
#ifdef NOT_ASCII
#endif
static void write_request(struct connection * c);
static void close_connection(struct connection * c);
/* --------------------------------------------------------- */
/* simple little function to write an error string and exit */
static void err(const char *s)
{
if (done)
exit(1);
}
/* simple little function to write an APR error string and exit */
{
char buf[120];
"%s: %s (%d)\n",
if (done)
}
{
if (rv != APR_SUCCESS) {
}
}
if (new_reqevents != 0) {
if (rv != APR_SUCCESS) {
}
}
}
}
{
apr_int16_t events_by_state[] = {
0, /* for STATE_UNCONNECTED */
APR_POLLOUT, /* for STATE_CONNECTING */
APR_POLLIN, /* for STATE_CONNECTED; we don't poll in this state,
* so prepare for polling in the following state --
* STATE_READ
*/
APR_POLLIN /* for STATE_READ */
};
}
/* --------------------------------------------------------- */
/* write out request to a connection - assumes we can write
* (small) request out in one go into our new socket buffer
*
*/
#ifdef USE_SSL
{
return(ret);
}
}
return ret;
}
static void ssl_state_cb(const SSL *s, int w, int r)
{
if (w & SSL_CB_ALERT) {
} else if (w & SSL_CB_LOOP) {
} else if (w & (SSL_CB_HANDSHAKE_START|SSL_CB_HANDSHAKE_DONE)) {
}
}
#ifndef RAND_MAX
#endif
static int ssl_rand_choosenum(int l, int h)
{
int i;
char buf[50];
if (i < l) i = l;
if (i > h) i = h;
return i;
}
static void ssl_rand_seed(void)
{
int n, l;
time_t t;
unsigned char stackdata[256];
/*
* seed in the current time (usually just 4 bytes)
*/
l = sizeof(time_t);
RAND_seed((unsigned char *)&t, l);
/*
* seed in the current process id (usually just 4 bytes)
*/
l = sizeof(pid_t);
/*
* seed in some current state of the run-time stack (128 bytes)
*/
}
{
c = SSL_get_current_cipher(ssl);
return(1);
}
{
char buf[1024];
EVP_PKEY_bits(pk));
/* dump the extension list too */
}
static void ssl_print_info(struct connection *c)
{
int count;
int i;
for (i=1; i<count; i++) {
}
}
} else {
}
}
static void ssl_proceed_handshake(struct connection *c)
{
int do_next = 1;
while (do_next) {
switch (ecode) {
case SSL_ERROR_NONE:
if (verbosity >= 2)
ssl_print_info(c);
if (cert)
else
pk_bits = 0; /* Anon DH */
}
write_request(c);
do_next = 0;
break;
case SSL_ERROR_WANT_READ:
do_next = 0;
break;
case SSL_ERROR_WANT_WRITE:
/* Try again */
do_next = 1;
break;
case SSL_ERROR_WANT_CONNECT:
case SSL_ERROR_SSL:
case SSL_ERROR_SYSCALL:
/* Unexpected result */
close_connection(c);
do_next = 0;
break;
}
}
}
#endif /* USE_SSL */
static void write_request(struct connection * c)
{
return;
}
do {
apr_size_t l = c->rwrite;
/*
* First time round ?
*/
if (c->rwrite == 0) {
apr_socket_timeout_set(c->aprsock, 0);
c->rwrote = 0;
if (send_body)
}
printf("Send request timed out!\n");
close_connection(c);
return;
}
#ifdef USE_SSL
if (c->ssl) {
if (e_ssl != l) {
close_connection (c);
return;
}
l = e_ssl;
e = APR_SUCCESS;
}
else
#endif
if (e != APR_SUCCESS && !APR_STATUS_IS_EAGAIN(e)) {
epipe++;
printf("Send request failed!\n");
close_connection(c);
return;
}
totalposted += l;
c->rwrote += l;
c->rwrite -= l;
} while (c->rwrite);
started++;
set_conn_state(c, STATE_READ);
}
/* --------------------------------------------------------- */
/* calculate and output results */
{
return -1;
return +1;
return 0;
}
{
return -1;
return +1;
return 0;
}
{
if (p < q)
return -1;
if (p > q)
return +1;
return 0;
}
{
return -1;
return 1;
return 0;
}
static void output_results(int sig)
{
double timetaken;
if (sig) {
}
printf("\n\n");
#ifdef USE_SSL
}
#endif
printf("\n");
printf("\n");
if (bad)
printf(" (Connect: %d, Receive: %d, Length: %d, Exceptions: %d)\n",
if (err_response)
if (keepalive)
if (send_body)
/* avoid divide by zero */
printf("Requests per second: %.2f [#/sec] (mean)\n",
printf("Time per request: %.3f [ms] (mean)\n",
printf("Time per request: %.3f [ms] (mean, across all concurrent requests)\n",
if (send_body) {
printf(" %.2f kb/s sent\n",
printf(" %.2f kb/s total\n",
}
}
if (done > 0) {
/* work out connection times */
int i;
for (i = 0; i < done; i++) {
}
/* calculating the sample variance: the sum of the squared deviations, divided by n-1 */
for (i = 0; i < done; i++) {
double a;
sdtot += a * a;
sdcon += a * a;
sdd += a * a;
sdwait += a * a;
}
/*
* XXX: what is better; this hideous cast of the compradre function; or
* the four warnings during compile ? dirkx just does not know and
* hates both/
*/
(int (*) (const void *, const void *)) compradre);
else
(int (*) (const void *, const void *)) compri);
else
(int (*) (const void *, const void *)) compwait);
else
(int (*) (const void *, const void *)) comprando);
else
printf("\nConnection Times (ms)\n");
/*
* Reduce stats from apr time to milliseconds
*/
if (confidence) {
#define CONF_FMT_STRING "%5" APR_TIME_T_FMT " %4" APR_TIME_T_FMT " %5.1f %6" APR_TIME_T_FMT " %7" APR_TIME_T_FMT "\n"
printf(" min mean[+/-sd] median max\n");
{ \
if (d < 0) d = -d; \
if (d > 2 * sd ) \
" deviation apart. These results are NOT reliable.\n"); \
else if (d > sd ) \
" These results are probably not that reliable.\n"); \
}
}
else {
printf(" min avg max\n");
}
/* Sorted on total connect times */
printf("\nPercentage of the requests served within a certain time (ms)\n");
for (i = 0; i < sizeof(percs) / sizeof(int); i++) {
if (percs[i] <= 0)
printf(" 0%% <0> (never)\n");
else if (percs[i] >= 100)
else
}
}
if (csvperc) {
if (!out) {
perror("Cannot open CSV output file");
exit(1);
}
for (i = 0; i < 100; i++) {
double t;
if (i == 0)
else if (i == 100)
else
}
}
if (gnuplot) {
char tmstring[APR_CTIME_LEN];
if (!out) {
perror("Cannot open gnuplot output file");
exit(1);
}
for (i = 0; i < done; i++) {
}
}
}
if (sig) {
exit(1);
}
}
/* --------------------------------------------------------- */
/* calculate and output results in HTML */
static void output_html_results(void)
{
printf("<tr %s><th colspan=2 %s>Server Software:</th>"
"<td colspan=2 %s>%s</td></tr>\n",
printf("<tr %s><th colspan=2 %s>Server Hostname:</th>"
"<td colspan=2 %s>%s</td></tr>\n",
printf("<tr %s><th colspan=2 %s>Server Port:</th>"
"<td colspan=2 %s>%hu</td></tr>\n",
printf("<tr %s><th colspan=2 %s>Document Path:</th>"
"<td colspan=2 %s>%s</td></tr>\n",
printf("<tr %s><th colspan=2 %s>Document Length:</th>"
printf("<tr %s><th colspan=2 %s>Concurrency Level:</th>"
"<td colspan=2 %s>%d</td></tr>\n",
printf("<tr %s><th colspan=2 %s>Time taken for tests:</th>"
"<td colspan=2 %s>%.3f seconds</td></tr>\n",
printf("<tr %s><th colspan=2 %s>Complete requests:</th>"
"<td colspan=2 %s>%d</td></tr>\n",
printf("<tr %s><th colspan=2 %s>Failed requests:</th>"
"<td colspan=2 %s>%d</td></tr>\n",
if (bad)
printf("<tr %s><td colspan=4 %s > (Connect: %d, Length: %d, Exceptions: %d)</td></tr>\n",
if (err_response)
printf("<tr %s><th colspan=2 %s>Non-2xx responses:</th>"
"<td colspan=2 %s>%d</td></tr>\n",
if (keepalive)
printf("<tr %s><th colspan=2 %s>Keep-Alive requests:</th>"
"<td colspan=2 %s>%d</td></tr>\n",
printf("<tr %s><th colspan=2 %s>Total transferred:</th>"
if (send_body)
printf("<tr %s><th colspan=2 %s>Total body sent:</th>"
printf("<tr %s><th colspan=2 %s>HTML transferred:</th>"
/* avoid divide by zero */
if (timetaken) {
printf("<tr %s><th colspan=2 %s>Requests per second:</th>"
"<td colspan=2 %s>%.2f</td></tr>\n",
printf("<tr %s><th colspan=2 %s>Transfer rate:</th>"
"<td colspan=2 %s>%.2f kb/s received</td></tr>\n",
if (send_body) {
printf("<tr %s><td colspan=2 %s> </td>"
"<td colspan=2 %s>%.2f kb/s sent</td></tr>\n",
(double) totalposted / timetaken);
printf("<tr %s><td colspan=2 %s> </td>"
"<td colspan=2 %s>%.2f kb/s total</td></tr>\n",
}
}
{
/* work out connection times */
int i;
for (i = 0; i < done; i++) {
}
/*
* Reduce stats from apr time to milliseconds
*/
if (done > 0) { /* avoid division by zero (if 0 done) */
printf("<tr %s><th %s colspan=4>Connnection Times (ms)</th></tr>\n",
printf("<tr %s><th %s> </th> <th %s>min</th> <th %s>avg</th> <th %s>max</th></tr>\n",
printf("<tr %s><th %s>Connect:</th>"
printf("<tr %s><th %s>Processing:</th>"
printf("<tr %s><th %s>Total:</th>"
}
printf("</table>\n");
}
}
/* --------------------------------------------------------- */
/* start asnchronous non-blocking connection */
static void start_connect(struct connection * c)
{
return;
c->read = 0;
c->bread = 0;
c->keepalive = 0;
c->cbx = 0;
c->gotheader = 0;
c->rwrite = 0;
if (c->ctx)
apr_pool_clear(c->ctx);
else
}
}
c->pollfd.client_data = c;
!= APR_SUCCESS) {
}
if (windowsize != 0) {
}
}
}
#ifdef USE_SSL
if (is_ssl) {
exit(1);
}
SSL_set_connect_state(c->ssl);
if (verbosity >= 4) {
}
} else {
}
#endif
if (APR_STATUS_IS_EINPROGRESS(rv)) {
c->rwrite = 0;
return;
}
else {
apr_socket_close(c->aprsock);
err_conn++;
if (bad++ > 10) {
"\nTest aborted after 10 failures\n\n");
}
start_connect(c);
return;
}
}
/* connected first time */
#ifdef USE_SSL
if (c->ssl) {
} else
#endif
{
write_request(c);
}
}
/* --------------------------------------------------------- */
/* close down connection and save stats */
static void close_connection(struct connection * c)
{
/*
* server has legitimately shut down an idle keep alive request
*/
if (good)
good--; /* connection never happened */
}
else {
if (good == 1) {
/* first time here */
}
bad++;
err_length++;
}
/* save out time */
}
}
}
#ifdef USE_SSL
if (c->ssl) {
SSL_shutdown(c->ssl);
}
#endif
apr_socket_close(c->aprsock);
/* connect again */
start_connect(c);
return;
}
/* --------------------------------------------------------- */
/* read data from connection */
static void read_connection(struct connection * c)
{
apr_size_t r;
char *part;
r = sizeof(buffer);
#ifdef USE_SSL
if (c->ssl) {
if (status <= 0) {
if (scode == SSL_ERROR_ZERO_RETURN) {
/* connection closed cleanly: */
good++;
close_connection(c);
}
else if (scode != SSL_ERROR_WANT_WRITE
&& scode != SSL_ERROR_WANT_READ) {
/* some fatal error: */
c->read = 0;
close_connection(c);
}
return;
}
r = status;
}
else
#endif
{
if (APR_STATUS_IS_EAGAIN(status))
return;
else if (r == 0 && APR_STATUS_IS_EOF(status)) {
good++;
close_connection(c);
return;
}
/* catch legitimate fatal apr_socket_recv errors */
else if (status != APR_SUCCESS) {
err_recv++;
if (recverrok) {
bad++;
close_connection(c);
if (verbosity >= 1) {
char buf[120];
}
return;
} else {
}
}
}
totalread += r;
if (c->read == 0) {
c->beginread = apr_time_now();
}
c->read += r;
if (!c->gotheader) {
char *s;
int l = 4;
#ifdef NOT_ASCII
exit(1);
}
#else
#endif /* NOT_ASCII */
if (verbosity >= 2) {
}
/*
* this next line is so that we talk to NCSA 1.5 which blatantly
* breaks the http specifaction
*/
if (!s) {
l = 2;
}
if (!s) {
/* read rest next time */
if (space) {
return;
}
else {
/* header is in invalid or too big - close connection */
apr_socket_close(c->aprsock);
err_response++;
if (bad++ > 10) {
err("\nTest aborted after 10 failures\n\n");
}
start_connect(c);
}
}
else {
/* have full header */
if (!good) {
/*
* this is first time, extract some interesting info
*/
char *p, *q;
q = servername;
if (p) {
p += 8;
while (*p > 32)
*q++ = *p++;
}
*q = 0;
}
/*
* XXX: this parsing isn't even remotely HTTP compliant... but in
* the interest of speed it doesn't totally have to be, it just
* needs to be extended to handle whatever servers folks want to
* test against. -djg
*/
/* check response code */
}
else {
}
if (respcode[0] != '2') {
err_response++;
if (verbosity >= 2)
}
else if (verbosity >= 3) {
}
c->gotheader = 1;
*s = 0; /* terminate at end of header */
if (keepalive &&
char *cl;
/* handle NCSA, which sends Content-length: */
if (!cl)
if (cl) {
c->keepalive = 1;
/* response to HEAD doesn't have entity body */
}
/* The response may not have a Content-Length header */
if (!cl) {
c->keepalive = 1;
c->length = 0;
}
}
totalbread += c->bread;
}
}
else {
/* outside header, everything we have read is entity body */
c->bread += r;
totalbread += r;
}
/* finished a keep-alive connection */
good++;
/* save out time */
if (good == 1) {
/* first time here */
}
bad++;
err_length++;
}
doneka++;
c->done = apr_time_now();
}
}
c->keepalive = 0;
c->length = 0;
c->gotheader = 0;
c->cbx = 0;
/* zero connect time with keep-alive */
write_request(c);
}
}
/* --------------------------------------------------------- */
/* run the tests */
static void test(void)
{
int i;
int snprintf_res = 0;
#ifdef NOT_ASCII
#endif
if (isproxy) {
}
else {
connectport = port;
}
if (!use_html) {
if (isproxy)
printf("(be patient)%s",
}
/*
* XXX: a way to calculate the stats without requiring O(requests) memory
* XXX: would be nice.
*/
err("Cannot allocate memory for result statistics");
}
APR_POLLSET_NOCOPY)) != APR_SUCCESS) {
}
/* add default headers if necessary */
if (!opt_host) {
/* Host: header not overridden, add default value to hdrs */
}
else {
/* Header overridden, no need to add, as it is already in hdrs */
}
if (!opt_useragent) {
/* User-Agent: header not overridden, add default value to hdrs */
}
else {
/* Header overridden, no need to add, as it is already in hdrs */
}
if (!opt_accept) {
/* Accept: header not overridden, add default value to hdrs */
}
else {
/* Header overridden, no need to add, as it is already in hdrs */
}
/* setup request */
if (!send_body) {
"%s %s HTTP/1.0\r\n"
"%s" "%s" "%s"
"%s" "\r\n",
}
else {
"%s %s HTTP/1.0\r\n"
"%s" "%s" "%s"
"Content-type: %s\r\n"
"%s"
"\r\n",
}
if (snprintf_res >= sizeof(_request)) {
err("Request too long\n");
}
if (verbosity >= 2)
printf("INFO: %s header == \n---\n%s\n---\n",
/*
* Combine headers and (optional) post file into one continuous buffer
*/
if (send_body) {
if (!buff) {
return;
}
}
#ifdef NOT_ASCII
request, &outbytes_left);
exit(1);
}
#endif /* NOT_ASCII */
/* This only needs to be done once */
char buf[120];
"apr_sockaddr_info_get() for %s", myhost);
}
/* This too */
!= APR_SUCCESS) {
char buf[120];
"apr_sockaddr_info_get() for %s", connecthost);
}
/* ok - lets start */
#ifdef SIGINT
/* Output the results if the user terminates the run early. */
#endif
/* initialise lots of requests */
for (i = 0; i < concurrency; i++) {
start_connect(&con[i]);
}
do {
apr_int32_t n;
n = concurrency;
do {
} while (APR_STATUS_IS_EINTR(status));
if (status != APR_SUCCESS)
struct connection *c;
c = pollfd->client_data;
/*
* If the connection isn't connected how can we check it?
*/
if (c->state == STATE_UNCONNECTED)
continue;
#ifdef USE_SSL
continue;
}
#endif
/*
* Notes: APR_POLLHUP is set after FIN is received on some
* systems, so treat that like APR_POLLIN so that we try to read
* again.
*
* Some systems return APR_POLLERR with APR_POLLHUP. We need to
* call read_connection() for APR_POLLHUP, so check for
* APR_POLLHUP first so that a closed connection isn't treated
* like an I/O error. If it is, we never figure out that the
* connection is done and we loop here endlessly calling
* apr_poll().
*/
read_connection(c);
bad++;
err_except++;
/* avoid apr_poll/EINPROGRESS loop on HP-UX, let recv discover ECONNREFUSED */
if (c->state == STATE_CONNECTING) {
read_connection(c);
}
else {
start_connect(c);
}
continue;
}
if (rtnev & APR_POLLOUT) {
if (c->state == STATE_CONNECTING) {
if (rv != APR_SUCCESS) {
apr_socket_close(c->aprsock);
err_conn++;
if (bad++ > 10) {
"\nTest aborted after 10 failures\n\n");
}
start_connect(c);
continue;
}
else {
#ifdef USE_SSL
if (c->ssl)
else
#endif
write_request(c);
}
}
else {
write_request(c);
}
}
}
if (heartbeatres)
else
printf("..done\n");
if (use_html)
else
output_results(0);
}
/* ------------------------------------------------------- */
/* display copyright information */
static void copyright(void)
{
if (!use_html) {
printf("Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n");
printf("Licensed to The Apache Software Foundation, http://www.apache.org/\n");
printf("\n");
}
else {
printf("<p>\n");
printf(" This is ApacheBench, Version %s <i><%s></i><br>\n", AP_AB_BASEREVISION, "$Revision$");
printf(" Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br>\n");
printf(" Licensed to The Apache Software Foundation, http://www.apache.org/<br>\n");
printf("</p>\n<p>\n");
}
}
/* display usage information */
{
#ifdef USE_SSL
"[s]"
#endif
"://]hostname[:port]/path\n", progname);
/* 80 column ruler: ********************************************************************************
*/
#ifdef USE_SSL
#ifndef OPENSSL_NO_SSL2
#else
#endif
#endif
}
/* ------------------------------------------------------- */
/* split URL into parts */
{
char *cp;
char *h;
char *scope_id;
/* Save a copy for the proxy */
url += 7;
#ifdef USE_SSL
is_ssl = 0;
#endif
}
else
#ifdef USE_SSL
url += 8;
is_ssl = 1;
}
#else
exit(1);
}
#endif
return 1;
return 1;
}
*cp = '\0';
}
else {
}
if (port == 0) { /* no port specified */
#ifdef USE_SSL
if (is_ssl)
port = 443;
else
#endif
port = 80;
}
if ((
#ifdef USE_SSL
#endif
(port != 80)))
{
} else
colonhost = "";
return 0;
}
/* ------------------------------------------------------- */
{
char errmsg[120];
if (rv != APR_SUCCESS) {
return rv;
}
if (rv != APR_SUCCESS) {
return rv;
}
if (!postdata) {
return APR_ENOMEM;
}
if (rv != APR_SUCCESS) {
return rv;
}
return APR_SUCCESS;
}
/* ------------------------------------------------------- */
/* sort out command-line args and call test */
{
int l;
char tmp[1024];
const char *opt_arg;
char c;
#ifdef USE_SSL
#endif
/* table defaults */
tablestring = "";
trstring = "";
tdstring = "bgcolor=white";
cookie = "";
auth = "";
proxyhost[0] = '\0';
hdrs = "";
#ifdef NOT_ASCII
if (status) {
exit(1);
}
if (status) {
exit(1);
}
if (status) {
exit(1);
}
#endif
#ifdef USE_SSL
"Z:f:"
#endif
,&c, &opt_arg)) == APR_SUCCESS) {
switch (c) {
case 'n':
if (requests <= 0) {
err("Invalid number of requests\n");
}
break;
case 'k':
keepalive = 1;
break;
case 'q':
heartbeatres = 0;
break;
case 'c':
break;
case 'b':
break;
case 'i':
err("Cannot mix HEAD with other methods\n");
break;
case 'g':
break;
case 'd':
percentile = 0;
break;
case 'e':
break;
case 'S':
confidence = 0;
break;
case 'p':
err("Cannot mix POST with other methods\n");
exit(1);
}
send_body = 1;
break;
case 'u':
err("Cannot mix PUT with other methods\n");
exit(1);
}
send_body = 1;
break;
case 'r':
recverrok = 1;
break;
case 'v':
break;
case 't':
* something */
break;
case 'T':
break;
case 'C':
break;
case 'A':
/*
* assume username passwd already to be in colon separated form.
* Ready to be uu-encoded.
*/
while (apr_isspace(*opt_arg))
opt_arg++;
err("Authentication credentials too long\n");
}
tmp[l] = '\0';
"\r\n", NULL);
break;
case 'P':
/*
* assume username passwd already to be in colon separated form.
*/
while (apr_isspace(*opt_arg))
opt_arg++;
err("Proxy credentials too long\n");
}
tmp[l] = '\0';
break;
case 'H':
/*
* allow override of some of the common headers that ab adds
*/
opt_host = 1;
opt_accept = 1;
opt_useragent = 1;
}
break;
case 'w':
use_html = 1;
break;
/*
* if any of the following three are used, turn on html output
* automatically
*/
case 'x':
use_html = 1;
break;
case 'X':
{
char *p;
/*
* assume proxy-name[:port]
*/
*p = '\0';
p++;
}
isproxy = 1;
}
break;
case 'y':
use_html = 1;
break;
case 'z':
use_html = 1;
break;
case 'h':
break;
case 'V':
copyright();
return 0;
case 'B':
break;
#ifdef USE_SSL
case 'Z':
break;
case 'f':
meth = SSLv23_client_method();
#ifndef OPENSSL_NO_SSL2
meth = SSLv2_client_method();
#endif
meth = SSLv3_client_method();
meth = TLSv1_client_method();
}
break;
#endif
}
}
}
}
}
argv[0], MAX_CONCURRENCY);
}
if (concurrency > requests) {
"total number of requests\n", argv[0]);
}
if (heartbeatres < 100)
* connections. */
}
else
heartbeatres = 0;
#ifdef USE_SSL
#ifdef RSAREF
#else
#endif
exit(1);
}
if (ssl_cipher != NULL) {
exit(1);
}
}
if (verbosity >= 3) {
}
#endif
#ifdef SIGPIPE
* have been closed at the other end. */
#endif
copyright();
test();
return 0;
}