]> granicus.if.org Git - apache/blob - support/ab.c
* Add siege-like behaviour to ApacheBench; output the results, as they have
[apache] / support / ab.c
1 /* Copyright 1996-2005 The Apache Software Foundation or its licensors, as
2  * applicable.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /*
18    ** This program is based on ZeusBench V1.0 written by Adam Twiss
19    ** which is Copyright (c) 1996 by Zeus Technology Ltd. http://www.zeustech.net/
20    **
21    ** This software is provided "as is" and any express or implied waranties,
22    ** including but not limited to, the implied warranties of merchantability and
23    ** fitness for a particular purpose are disclaimed.  In no event shall
24    ** Zeus Technology Ltd. be liable for any direct, indirect, incidental, special,
25    ** exemplary, or consequential damaged (including, but not limited to,
26    ** procurement of substitute good or services; loss of use, data, or profits;
27    ** or business interruption) however caused and on theory of liability.  Whether
28    ** in contract, strict liability or tort (including negligence or otherwise)
29    ** arising in any way out of the use of this software, even if advised of the
30    ** possibility of such damage.
31    **
32  */
33
34 /*
35    ** HISTORY:
36    **    - Originally written by Adam Twiss <adam@zeus.co.uk>, March 1996
37    **      with input from Mike Belshe <mbelshe@netscape.com> and
38    **      Michael Campanella <campanella@stevms.enet.dec.com>
39    **    - Enhanced by Dean Gaudet <dgaudet@apache.org>, November 1997
40    **    - Cleaned up by Ralf S. Engelschall <rse@apache.org>, March 1998
41    **    - POST and verbosity by Kurt Sussman <kls@merlot.com>, August 1998
42    **    - HTML table output added by David N. Welton <davidw@prosa.it>, January 1999
43    **    - Added Cookie, Arbitrary header and auth support. <dirkx@webweaving.org>, April 1999
44    ** Version 1.3d
45    **    - Increased version number - as some of the socket/error handling has
46    **      fundamentally changed - and will give fundamentally different results
47    **      in situations where a server is dropping requests. Therefore you can
48    **      no longer compare results of AB as easily. Hence the inc of the version.
49    **      They should be closer to the truth though. Sander & <dirkx@covalent.net>, End 2000.
50    **    - Fixed proxy functionality, added median/mean statistics, added gnuplot
51    **      output option, added _experimental/rudimentary_ SSL support. Added
52    **      confidence guestimators and warnings. Sander & <dirkx@covalent.net>, End 2000
53    **    - Fixed serious int overflow issues which would cause realistic (longer
54    **      than a few minutes) run's to have wrong (but believable) results. Added
55    **      trapping of connection errors which influenced measurements.
56    **      Contributed by Sander Temme, Early 2001
57    ** Version 1.3e
58    **    - Changed timeout behavour during write to work whilst the sockets
59    **      are filling up and apr_write() does writes a few - but not all.
60    **      This will potentially change results. <dirkx@webweaving.org>, April 2001
61    ** Version 2.0.36-dev
62    **    Improvements to concurrent processing:
63    **      - Enabled non-blocking connect()s.
64    **      - Prevent blocking calls to apr_socket_recv() (thereby allowing AB to
65    **        manage its entire set of socket descriptors).
66    **      - Any error returned from apr_socket_recv() that is not EAGAIN or EOF
67    **        is now treated as fatal.
68    **      Contributed by Aaron Bannert, April 24, 2002
69    **
70    ** Version 2.0.36-2
71    **     Internalized the version string - this string is part
72    **     of the Agent: header and the result output.
73    **
74    ** Version 2.0.37-dev
75    **     Adopted SSL code by Madhu Mathihalli <madhusudan_mathihalli@hp.com>
76    **     [PATCH] ab with SSL support  Posted Wed, 15 Aug 2001 20:55:06 GMT
77    **     Introduces four 'if (int == value)' tests per non-ssl request.
78    **
79    ** Version 2.0.40-dev
80    **     Switched to the new abstract pollset API, allowing ab to
81    **     take advantage of future apr_pollset_t scalability improvements.
82    **     Contributed by Brian Pane, August 31, 2002
83    **
84    ** Version 2.3
85    **     SIGINT now triggers output_results().
86    **     Conributed by colm, March 30, 2006
87    **/
88
89 /* Note: this version string should start with \d+[\d\.]* and be a valid
90  * string for an HTTP Agent: header when prefixed with 'ApacheBench/'.
91  * It should reflect the version of AB - and not that of the apache server
92  * it happens to accompany. And it should be updated or changed whenever
93  * the results are no longer fundamentally comparable to the results of
94  * a previous version of ab. Either due to a change in the logic of
95  * ab - or to due to a change in the distribution it is compiled with
96  * (such as an APR change in for example blocking).
97  */
98 #define AP_AB_BASEREVISION "2.3"
99
100 /*
101  * BUGS:
102  *
103  * - uses strcpy/etc.
104  * - has various other poor buffer attacks related to the lazy parsing of
105  *   response headers from the server
106  * - doesn't implement much of HTTP/1.x, only accepts certain forms of
107  *   responses
108  * - (performance problem) heavy use of strstr shows up top in profile
109  *   only an issue for loopback usage
110  */
111
112 /*  -------------------------------------------------------------------- */
113
114 #if 'A' != 0x41
115 /* Hmmm... This source code isn't being compiled in ASCII.
116  * In order for data that flows over the network to make
117  * sense, we need to translate to/from ASCII.
118  */
119 #define NOT_ASCII
120 #endif
121
122 /* affects include files on Solaris */
123 #define BSD_COMP
124
125 #include "apr.h"
126 #include "apr_signal.h"
127 #include "apr_strings.h"
128 #include "apr_network_io.h"
129 #include "apr_file_io.h"
130 #include "apr_time.h"
131 #include "apr_getopt.h"
132 #include "apr_general.h"
133 #include "apr_lib.h"
134 #include "apr_portable.h"
135 #include "ap_release.h"
136 #include "apr_poll.h"
137
138 #define APR_WANT_STRFUNC
139 #include "apr_want.h"
140
141 #include "apr_base64.h"
142 #ifdef NOT_ASCII
143 #include "apr_xlate.h"
144 #endif
145 #if APR_HAVE_STDIO_H
146 #include <stdio.h>
147 #endif
148 #if APR_HAVE_STDLIB_H
149 #include <stdlib.h>
150 #endif
151 #if APR_HAVE_UNISTD_H
152 #include <unistd.h> /* for getpid() */
153 #endif
154
155 #if !defined(WIN32) && !defined(NETWARE)
156 #include "ap_config_auto.h"
157 #endif
158
159 #if defined(HAVE_SSLC)
160
161 /* Libraries for RSA SSL-C */
162 #include <rsa.h>
163 #include <x509.h>
164 #include <pem.h>
165 #include <err.h>
166 #include <ssl.h>
167 #include <r_rand.h>
168 #include <sslc.h>
169 #define USE_SSL
170 #define RSAREF
171 #define SK_NUM(x) sk_num(x)
172 #define SK_VALUE(x,y) sk_value(x,y)
173 typedef STACK X509_STACK_TYPE;
174
175 #elif defined(HAVE_OPENSSL)
176
177 /* Libraries on most systems.. */
178 #include <openssl/rsa.h>
179 #include <openssl/crypto.h>
180 #include <openssl/x509.h>
181 #include <openssl/pem.h>
182 #include <openssl/err.h>
183 #include <openssl/ssl.h>
184 #include <openssl/rand.h>
185 #define USE_SSL
186 #define SK_NUM(x) sk_X509_num(x)
187 #define SK_VALUE(x,y) sk_X509_value(x,y)
188 typedef STACK_OF(X509) X509_STACK_TYPE;
189
190 #endif
191
192 #include <math.h>
193 #if APR_HAVE_CTYPE_H
194 #include <ctype.h>
195 #endif
196
197 /* ------------------- DEFINITIONS -------------------------- */
198
199 #ifndef LLONG_MAX
200 #define AB_MAX APR_INT64_C(0x7fffffffffffffff)
201 #else
202 #define AB_MAX LLONG_MAX
203 #endif
204
205 /* maximum number of requests on a time limited test */
206 #define MAX_REQUESTS 50000
207
208 /* good old state hostname */
209 #define STATE_UNCONNECTED 0
210 #define STATE_CONNECTING  1     /* TCP connect initiated, but we don't
211                                  * know if it worked yet
212                                  */
213 #define STATE_CONNECTED   2     /* we know TCP connect completed */
214 #define STATE_READ        3
215
216 #define CBUFFSIZE (2048)
217
218 struct connection {
219     apr_pool_t *ctx;
220     apr_socket_t *aprsock;
221     int state;
222     apr_size_t read;            /* amount of bytes read */
223     apr_size_t bread;           /* amount of body read */
224     apr_size_t rwrite, rwrote;  /* keep pointers in what we write - across
225                                  * EAGAINs */
226     apr_size_t length;          /* Content-Length value used for keep-alive */
227     char cbuff[CBUFFSIZE];      /* a buffer to store server response header */
228     int cbx;                    /* offset in cbuffer */
229     int keepalive;              /* non-zero if a keep-alive request */
230     int gotheader;              /* non-zero if we have the entire header in
231                                  * cbuff */
232     apr_time_t start,           /* Start of connection */
233                connect,         /* Connected, start writing */
234                endwrite,        /* Request written */
235                beginread,       /* First byte of input */
236                done;            /* Connection closed */
237
238     int socknum;
239 #ifdef USE_SSL
240     SSL *ssl;
241 #endif
242 };
243
244 struct data {
245     int read;              /* number of bytes read */
246     apr_time_t starttime;  /* start time of connection in seconds since
247                             * Jan. 1, 1970 */
248     apr_interval_time_t waittime;   /* Between writing request and reading
249                                      * response */
250     apr_interval_time_t ctime;      /* time in ms to connect */
251     apr_interval_time_t time;       /* time in ms for connection */
252 };
253
254 #define ap_min(a,b) ((a)<(b))?(a):(b)
255 #define ap_max(a,b) ((a)>(b))?(a):(b)
256 #define MAX_CONCURRENCY 20000
257
258 /* --------------------- GLOBALS ---------------------------- */
259
260 int verbosity = 0;      /* no verbosity by default */
261 int posting = 0;        /* GET by default */
262 int requests = 1;       /* Number of requests to make */
263 int heartbeatres = 100; /* How often do we say we're alive */
264 int concurrency = 1;    /* Number of multiple requests to make */
265 int percentile = 1;     /* Show percentile served */
266 int confidence = 1;     /* Show confidence estimator and warnings */
267 int tlimit = 0;         /* time limit in secs */
268 int keepalive = 0;      /* try and do keepalive connections */
269 int windowsize = 0;     /* we use the OS default window size */
270 char servername[1024];  /* name that server reports */
271 char *hostname;         /* host name from URL */
272 char *host_field;       /* value of "Host:" header field */
273 char *path;             /* path name */
274 char postfile[1024];    /* name of file containing post data */
275 char *postdata;         /* *buffer containing data from postfile */
276 apr_size_t postlen = 0; /* length of data to be POSTed */
277 char content_type[1024];/* content type to put in POST header */
278 char *cookie,           /* optional cookie line */
279      *auth,             /* optional (basic/uuencoded) auhentication */
280      *hdrs;             /* optional arbitrary headers */
281 apr_port_t port;        /* port number */
282 char proxyhost[1024];   /* proxy host name */
283 int proxyport = 0;      /* proxy port */
284 char *connecthost;
285 apr_port_t connectport;
286 char *gnuplot;          /* GNUplot file */
287 char *csvperc;          /* CSV Percentile file */
288 char url[1024];
289 char * fullurl, * colonhost;
290 int isproxy = 0;
291 apr_interval_time_t aprtimeout = apr_time_from_sec(30); /* timeout value */
292  /*
293   * XXX - this is now a per read/write transact type of value
294   */
295
296 int use_html = 0;       /* use html in the report */
297 const char *tablestring;
298 const char *trstring;
299 const char *tdstring;
300
301 apr_size_t doclen = 0;      /* the length the document should be */
302 long started = 0;           /* number of requests started, so no excess */
303 long totalread = 0;         /* total number of bytes read */
304 long totalbread = 0;        /* totoal amount of entity body read */
305 long totalposted = 0;       /* total number of bytes posted, inc. headers */
306 long done = 0;              /* number of requests we have done */
307 long doneka = 0;            /* number of keep alive connections done */
308 long good = 0, bad = 0;     /* number of good and bad requests */
309 long epipe = 0;             /* number of broken pipe writes */
310
311 #ifdef USE_SSL
312 int is_ssl;
313 SSL_CTX *ssl_ctx;
314 char *ssl_cipher = NULL;
315 char *ssl_info = NULL;
316 BIO *bio_out,*bio_err;
317 #endif
318
319 /* store error cases */
320 int err_length = 0, err_conn = 0, err_except = 0;
321 int err_response = 0;
322
323 apr_time_t start, endtime;
324
325 /* global request (and its length) */
326 char _request[2048];
327 char *request = _request;
328 apr_size_t reqlen;
329
330 /* one global throw-away buffer to read stuff into */
331 char buffer[8192];
332
333 /* interesting percentiles */
334 int percs[] = {50, 66, 75, 80, 90, 95, 98, 99, 100};
335
336 struct connection *con;     /* connection array */
337 struct data *stats;         /* date for each request */
338 apr_pool_t *cntxt;
339
340 apr_pollset_t *readbits;
341
342 apr_sockaddr_t *destsa;
343
344 #ifdef NOT_ASCII
345 apr_xlate_t *from_ascii, *to_ascii;
346 #endif
347
348 static void write_request(struct connection * c);
349 static void close_connection(struct connection * c);
350
351 /* --------------------------------------------------------- */
352
353 /* simple little function to write an error string and exit */
354
355 static void err(char *s)
356 {
357     fprintf(stderr, "%s\n", s);
358     if (done)
359         printf("Total of %ld requests completed\n" , done);
360     exit(1);
361 }
362
363 /* simple little function to write an APR error string and exit */
364
365 static void apr_err(char *s, apr_status_t rv)
366 {
367     char buf[120];
368
369     fprintf(stderr,
370         "%s: %s (%d)\n",
371         s, apr_strerror(rv, buf, sizeof buf), rv);
372     if (done)
373         printf("Total of %ld requests completed\n" , done);
374     exit(rv);
375 }
376
377 /* --------------------------------------------------------- */
378 /* write out request to a connection - assumes we can write
379  * (small) request out in one go into our new socket buffer
380  *
381  */
382 #ifdef USE_SSL
383 static long ssl_print_cb(BIO *bio,int cmd,const char *argp,int argi,long argl,long ret)
384 {
385     BIO *out;
386
387     out=(BIO *)BIO_get_callback_arg(bio);
388     if (out == NULL) return(ret);
389
390     if (cmd == (BIO_CB_READ|BIO_CB_RETURN)) {
391         BIO_printf(out,"read from %p [%p] (%d bytes => %ld (0x%lX))\n",
392                    bio, argp, argi, ret, ret);
393         BIO_dump(out,(char *)argp,(int)ret);
394         return(ret);
395     }
396     else if (cmd == (BIO_CB_WRITE|BIO_CB_RETURN)) {
397         BIO_printf(out,"write to %p [%p] (%d bytes => %ld (0x%lX))\n",
398                    bio, argp, argi, ret, ret);
399         BIO_dump(out,(char *)argp,(int)ret);
400     }
401     return ret;
402 }
403
404 static void ssl_state_cb(const SSL *s, int w, int r)
405 {
406     if (w & SSL_CB_ALERT) {
407         BIO_printf(bio_err, "SSL/TLS Alert [%s] %s:%s\n",
408                    (w & SSL_CB_READ ? "read" : "write"),
409                    SSL_alert_type_string_long(r),
410                    SSL_alert_desc_string_long(r));
411     } else if (w & SSL_CB_LOOP) {
412         BIO_printf(bio_err, "SSL/TLS State [%s] %s\n",
413                    (SSL_in_connect_init((SSL*)s) ? "connect" : "-"),
414                    SSL_state_string_long(s));
415     } else if (w & (SSL_CB_HANDSHAKE_START|SSL_CB_HANDSHAKE_DONE)) {
416         BIO_printf(bio_err, "SSL/TLS Handshake [%s] %s\n",
417                    (w & SSL_CB_HANDSHAKE_START ? "Start" : "Done"),
418                    SSL_state_string_long(s));
419     }
420 }
421
422 #ifndef RAND_MAX
423 #include <limits.h>
424 #define RAND_MAX INT_MAX
425 #endif
426
427 static int ssl_rand_choosenum(int l, int h)
428 {
429     int i;
430     char buf[50];
431
432     srand((unsigned int)time(NULL));
433     apr_snprintf(buf, sizeof(buf), "%.0f",
434                  (((double)(rand()%RAND_MAX)/RAND_MAX)*(h-l)));
435     i = atoi(buf)+1;
436     if (i < l) i = l;
437     if (i > h) i = h;
438     return i;
439 }
440
441 static void ssl_rand_seed(void)
442 {
443     int nDone = 0;
444     int n, l;
445     time_t t;
446     pid_t pid;
447     unsigned char stackdata[256];
448
449     /*
450      * seed in the current time (usually just 4 bytes)
451      */
452     t = time(NULL);
453     l = sizeof(time_t);
454     RAND_seed((unsigned char *)&t, l);
455     nDone += l;
456
457     /*
458      * seed in the current process id (usually just 4 bytes)
459      */
460     pid = getpid();
461     l = sizeof(pid_t);
462     RAND_seed((unsigned char *)&pid, l);
463     nDone += l;
464
465     /*
466      * seed in some current state of the run-time stack (128 bytes)
467      */
468     n = ssl_rand_choosenum(0, sizeof(stackdata)-128-1);
469     RAND_seed(stackdata+n, 128);
470     nDone += 128;
471 }
472
473 static int ssl_print_connection_info(BIO *bio, SSL *ssl)
474 {
475     SSL_CIPHER *c;
476     int alg_bits,bits;
477
478     c = SSL_get_current_cipher(ssl);
479     BIO_printf(bio,"Cipher Suite Protocol   :%s\n", SSL_CIPHER_get_version(c));
480     BIO_printf(bio,"Cipher Suite Name       :%s\n",SSL_CIPHER_get_name(c));
481
482     bits = SSL_CIPHER_get_bits(c,&alg_bits);
483     BIO_printf(bio,"Cipher Suite Cipher Bits:%d (%d)\n",bits,alg_bits);
484
485     return(1);
486 }
487
488 static void ssl_print_cert_info(BIO *bio, X509 *cert)
489 {
490     X509_NAME *dn;
491     char buf[1024];
492
493     BIO_printf(bio, "Certificate version: %ld\n", X509_get_version(cert)+1);
494     BIO_printf(bio,"Valid from: ");
495     ASN1_UTCTIME_print(bio, X509_get_notBefore(cert));
496     BIO_printf(bio,"\n");
497
498     BIO_printf(bio,"Valid to  : ");
499     ASN1_UTCTIME_print(bio, X509_get_notAfter(cert));
500     BIO_printf(bio,"\n");
501
502     BIO_printf(bio,"Public key is %d bits\n",
503                EVP_PKEY_bits(X509_get_pubkey(cert)));
504
505     dn = X509_get_issuer_name(cert);
506     X509_NAME_oneline(dn, buf, sizeof(buf));
507     BIO_printf(bio,"The issuer name is %s\n", buf);
508
509     dn=X509_get_subject_name(cert);
510     X509_NAME_oneline(dn, buf, sizeof(buf));
511     BIO_printf(bio,"The subject name is %s\n", buf);
512
513     /* dump the extension list too */
514     BIO_printf(bio, "Extension Count: %d\n", X509_get_ext_count(cert));
515 }
516
517 static void ssl_print_info(struct connection *c)
518 {
519     X509_STACK_TYPE *sk;
520     X509 *cert;
521     int count;
522
523     BIO_printf(bio_err, "\n");
524     sk = SSL_get_peer_cert_chain(c->ssl);
525     if ((count = SK_NUM(sk)) > 0) {
526         int i;
527         for (i=1; i<count; i++) {
528             cert = (X509 *)SK_VALUE(sk, i);
529             ssl_print_cert_info(bio_out, cert);
530             X509_free(cert);
531     }
532     }
533     cert = SSL_get_peer_certificate(c->ssl);
534     if (cert == NULL) {
535         BIO_printf(bio_out, "Anon DH\n");
536     } else {
537         BIO_printf(bio_out, "Peer certificate\n");
538         ssl_print_cert_info(bio_out, cert);
539         X509_free(cert);
540     }
541     ssl_print_connection_info(bio_err,c->ssl);
542     SSL_SESSION_print(bio_err, SSL_get_session(c->ssl));
543     }
544
545 static void ssl_proceed_handshake(struct connection *c)
546 {
547     int do_next = 1;
548
549     while (do_next) {
550         int ret, ecode;
551         apr_pollfd_t new_pollfd;
552
553         ret = SSL_do_handshake(c->ssl);
554         ecode = SSL_get_error(c->ssl, ret);
555
556         switch (ecode) {
557         case SSL_ERROR_NONE:
558             if (verbosity >= 2)
559                 ssl_print_info(c);
560             if (ssl_info == NULL) {
561                 SSL_CIPHER *ci;
562                 X509 *cert;
563                 int sk_bits, pk_bits, swork;
564
565                 ci = SSL_get_current_cipher(c->ssl);
566                 sk_bits = SSL_CIPHER_get_bits(ci, &swork);
567                 cert = SSL_get_peer_certificate(c->ssl);
568                 if (cert)
569                     pk_bits = EVP_PKEY_bits(X509_get_pubkey(cert));
570                 else
571                     pk_bits = 0;  /* Anon DH */
572
573                 ssl_info = malloc(128);
574                 apr_snprintf(ssl_info, 128, "%s,%s,%d,%d",
575                              SSL_CIPHER_get_version(ci),
576                              SSL_CIPHER_get_name(ci),
577                              pk_bits, sk_bits);
578             }
579             write_request(c);
580             do_next = 0;
581             break;
582         case SSL_ERROR_WANT_READ:
583             new_pollfd.desc_type = APR_POLL_SOCKET;
584             new_pollfd.reqevents = APR_POLLIN;
585             new_pollfd.desc.s = c->aprsock;
586             new_pollfd.client_data = c;
587             apr_pollset_add(readbits, &new_pollfd);
588             do_next = 0;
589             break;
590         case SSL_ERROR_WANT_WRITE:
591             /* Try again */
592             do_next = 1;
593             break;
594         case SSL_ERROR_WANT_CONNECT:
595         case SSL_ERROR_SSL:
596         case SSL_ERROR_SYSCALL:
597             /* Unexpected result */
598             BIO_printf(bio_err, "SSL handshake failed (%d).\n", ecode);
599             ERR_print_errors(bio_err);
600             close_connection(c);
601             do_next = 0;
602             break;
603         }
604     }
605 }
606
607 #endif /* USE_SSL */
608
609 static void write_request(struct connection * c)
610 {
611     do {
612         apr_time_t tnow = apr_time_now();
613         apr_size_t l = c->rwrite;
614         apr_status_t e = APR_SUCCESS; /* prevent gcc warning */
615
616         /*
617          * First time round ?
618          */
619         if (c->rwrite == 0) {
620             apr_socket_timeout_set(c->aprsock, 0);
621             c->connect = tnow;
622             c->rwrite = reqlen;
623             c->rwrote = 0;
624             if (posting)
625                 c->rwrite += postlen;
626         }
627         else if (tnow > c->connect + aprtimeout) {
628             printf("Send request timed out!\n");
629             close_connection(c);
630             return;
631         }
632
633 #ifdef USE_SSL
634         if (c->ssl) {
635             apr_size_t e_ssl;
636             e_ssl = SSL_write(c->ssl,request + c->rwrote, l);
637             if (e_ssl != l) {
638                 BIO_printf(bio_err, "SSL write failed - closing connection\n");
639                 ERR_print_errors(bio_err);
640                 close_connection (c);
641                 return;
642             }
643             l = e_ssl;
644             e = APR_SUCCESS;
645         }
646         else
647 #endif
648             e = apr_socket_send(c->aprsock, request + c->rwrote, &l);
649
650         /*
651          * Bail early on the most common case
652          */
653         if (l == c->rwrite)
654             break;
655
656         if (e != APR_SUCCESS) {
657             /*
658              * Let's hope this traps EWOULDBLOCK too !
659              */
660             if (!APR_STATUS_IS_EAGAIN(e)) {
661                 epipe++;
662                 printf("Send request failed!\n");
663                 close_connection(c);
664             }
665             return;
666         }
667         c->rwrote += l;
668         c->rwrite -= l;
669     } while (1);
670
671     totalposted += c->rwrite;
672     c->state = STATE_READ;
673     c->endwrite = apr_time_now();
674     {
675         apr_pollfd_t new_pollfd;
676         new_pollfd.desc_type = APR_POLL_SOCKET;
677         new_pollfd.reqevents = APR_POLLIN;
678         new_pollfd.desc.s = c->aprsock;
679         new_pollfd.client_data = c;
680         apr_pollset_add(readbits, &new_pollfd);
681     }
682 }
683
684 /* --------------------------------------------------------- */
685
686 /* calculate and output results */
687
688 static int compradre(struct data * a, struct data * b)
689 {
690     if ((a->ctime) < (b->ctime))
691         return -1;
692     if ((a->ctime) > (b->ctime))
693         return +1;
694     return 0;
695 }
696
697 static int comprando(struct data * a, struct data * b)
698 {
699     if ((a->time) < (b->time))
700         return -1;
701     if ((a->time) > (b->time))
702         return +1;
703     return 0;
704 }
705
706 static int compri(struct data * a, struct data * b)
707 {
708     apr_interval_time_t p = a->time - a->ctime;
709     apr_interval_time_t q = b->time - b->ctime;
710     if (p < q)
711         return -1;
712     if (p > q)
713         return +1;
714     return 0;
715 }
716
717 static int compwait(struct data * a, struct data * b)
718 {
719     if ((a->waittime) < (b->waittime))
720         return -1;
721     if ((a->waittime) > (b->waittime))
722         return 1;
723     return 0;
724 }
725
726 static void output_results(int sig)
727 {
728     apr_interval_time_t timetakenusec;
729     float timetaken;
730
731     endtime = apr_time_now();
732     timetakenusec = endtime - start;
733     timetaken = ((float)apr_time_sec(timetakenusec)) +
734         ((float)apr_time_usec(timetakenusec)) / 1000000.0F;
735
736     printf("\n\n");
737     printf("Server Software:        %s\n", servername);
738     printf("Server Hostname:        %s\n", hostname);
739     printf("Server Port:            %hd\n", port);
740 #ifdef USE_SSL
741     if (is_ssl && ssl_info) {
742         printf("SSL/TLS Protocol:       %s\n", ssl_info);
743     }
744 #endif
745     printf("\n");
746     printf("Document Path:          %s\n", path);
747     printf("Document Length:        %" APR_SIZE_T_FMT " bytes\n", doclen);
748     printf("\n");
749     printf("Concurrency Level:      %d\n", concurrency);
750     printf("Time taken for tests:   %ld.%03ld seconds\n",
751            (long) apr_time_sec(timetakenusec),
752            (long) apr_time_usec(timetakenusec));
753     printf("Complete requests:      %ld\n", done);
754     printf("Failed requests:        %ld\n", bad);
755     if (bad)
756         printf("   (Connect: %d, Length: %d, Exceptions: %d)\n",
757             err_conn, err_length, err_except);
758     printf("Write errors:           %ld\n", epipe);
759     if (err_response)
760         printf("Non-2xx responses:      %d\n", err_response);
761     if (keepalive)
762         printf("Keep-Alive requests:    %ld\n", doneka);
763     printf("Total transferred:      %ld bytes\n", totalread);
764     if (posting > 0)
765         printf("Total POSTed:           %ld\n", totalposted);
766     printf("HTML transferred:       %ld bytes\n", totalbread);
767
768     /* avoid divide by zero */
769     if (timetaken) {
770         printf("Requests per second:    %.2f [#/sec] (mean)\n",
771                (float) (done / timetaken));
772         printf("Time per request:       %.3f [ms] (mean)\n",
773                (float) (1000 * concurrency * timetaken / done));
774         printf("Time per request:       %.3f [ms] (mean, across all concurrent requests)\n",
775            (float) (1000 * timetaken / done));
776         printf("Transfer rate:          %.2f [Kbytes/sec] received\n",
777            (float) (totalread / 1024 / timetaken));
778         if (posting > 0) {
779             printf("                        %.2f kb/s sent\n",
780                (float) (totalposted / timetaken / 1024));
781             printf("                        %.2f kb/s total\n",
782                (float) ((totalread + totalposted) / timetaken / 1024));
783         }
784     }
785
786     if (requests) {
787         /* work out connection times */
788         long i;
789         apr_time_t totalcon = 0, total = 0, totald = 0, totalwait = 0;
790         apr_time_t meancon, meantot, meand, meanwait;
791         apr_interval_time_t mincon = AB_MAX, mintot = AB_MAX, mind = AB_MAX,
792                             minwait = AB_MAX;
793         apr_interval_time_t maxcon = 0, maxtot = 0, maxd = 0, maxwait = 0;
794         apr_interval_time_t mediancon = 0, mediantot = 0, mediand = 0, medianwait = 0;
795         double sdtot = 0, sdcon = 0, sdd = 0, sdwait = 0;
796
797         for (i = 0; i < requests; i++) {
798             struct data s = stats[i];
799             mincon = ap_min(mincon, s.ctime);
800             mintot = ap_min(mintot, s.time);
801             mind = ap_min(mind, s.time - s.ctime);
802             minwait = ap_min(minwait, s.waittime);
803
804             maxcon = ap_max(maxcon, s.ctime);
805             maxtot = ap_max(maxtot, s.time);
806             maxd = ap_max(maxd, s.time - s.ctime);
807             maxwait = ap_max(maxwait, s.waittime);
808
809             totalcon += s.ctime;
810             total += s.time;
811             totald += s.time - s.ctime;
812             totalwait += s.waittime;
813         }
814         meancon = totalcon / requests;
815         meantot = total / requests;
816         meand = totald / requests;
817         meanwait = totalwait / requests;
818
819         /* calculating the sample variance: the sum of the squared deviations, divided by n-1 */
820         for (i = 0; i < requests; i++) {
821             struct data s = stats[i];
822             double a;
823             a = ((double)s.time - meantot);
824             sdtot += a * a;
825             a = ((double)s.ctime - meancon);
826             sdcon += a * a;
827             a = ((double)s.time - (double)s.ctime - meand);
828             sdd += a * a;
829             a = ((double)s.waittime - meanwait);
830             sdwait += a * a;
831         }
832
833         sdtot = (requests > 1) ? sqrt(sdtot / (requests - 1)) : 0;
834         sdcon = (requests > 1) ? sqrt(sdcon / (requests - 1)) : 0;
835         sdd = (requests > 1) ? sqrt(sdd / (requests - 1)) : 0;
836         sdwait = (requests > 1) ? sqrt(sdwait / (requests - 1)) : 0;
837
838         if (gnuplot) {
839             FILE *out = fopen(gnuplot, "w");
840             long i;
841             apr_time_t sttime;
842             char tmstring[1024];/* XXXX */
843             if (!out) {
844                 perror("Cannot open gnuplot output file");
845                 exit(1);
846             }
847             fprintf(out, "starttime\tseconds\tctime\tdtime\tttime\twait\n");
848             for (i = 0; i < requests; i++) {
849                 apr_time_t diff = stats[i].time - stats[i].ctime;
850
851                 sttime = stats[i].starttime;
852                 (void) apr_ctime(tmstring, sttime);
853                 fprintf(out, "%s\t%" APR_TIME_T_FMT "\t%" APR_TIME_T_FMT "\t%" APR_TIME_T_FMT "\t%" APR_TIME_T_FMT "\t%" APR_TIME_T_FMT "\n",
854                 tmstring,
855                 sttime,
856                 stats[i].ctime,
857                 diff,
858                 stats[i].time,
859                 stats[i].waittime);
860             }
861             fclose(out);
862         }
863         /*
864          * XXX: what is better; this hideous cast of the compradre function; or
865          * the four warnings during compile ? dirkx just does not know and
866          * hates both/
867          */
868         qsort(stats, requests, sizeof(struct data),
869               (int (*) (const void *, const void *)) compradre);
870         if ((requests > 1) && (requests % 2))
871             mediancon = (stats[requests / 2].ctime + stats[requests / 2 + 1].ctime) / 2;
872         else
873             mediancon = stats[requests / 2].ctime;
874
875         qsort(stats, requests, sizeof(struct data),
876               (int (*) (const void *, const void *)) compri);
877         if ((requests > 1) && (requests % 2))
878             mediand = (stats[requests / 2].time + stats[requests / 2 + 1].time \
879             -stats[requests / 2].ctime - stats[requests / 2 + 1].ctime) / 2;
880         else
881             mediand = stats[requests / 2].time - stats[requests / 2].ctime;
882
883         qsort(stats, requests, sizeof(struct data),
884               (int (*) (const void *, const void *)) compwait);
885         if ((requests > 1) && (requests % 2))
886             medianwait = (stats[requests / 2].waittime + stats[requests / 2 + 1].waittime) / 2;
887         else
888             medianwait = stats[requests / 2].waittime;
889
890         qsort(stats, requests, sizeof(struct data),
891               (int (*) (const void *, const void *)) comprando);
892         if ((requests > 1) && (requests % 2))
893             mediantot = (stats[requests / 2].time + stats[requests / 2 + 1].time) / 2;
894         else
895             mediantot = stats[requests / 2].time;
896
897         printf("\nConnection Times (ms)\n");
898
899         if (confidence) {
900 #define CONF_FMT_STRING "%5" APR_TIME_T_FMT " %4d %5.1f %6" APR_TIME_T_FMT " %7" APR_TIME_T_FMT "\n"
901             printf("              min  mean[+/-sd] median   max\n");
902             printf("Connect:    " CONF_FMT_STRING,
903                        mincon, (int) (meancon + 0.5), sdcon, mediancon, maxcon);
904             printf("Processing: " CONF_FMT_STRING,
905                mind, (int) (meand + 0.5), sdd, mediand, maxd);
906             printf("Waiting:    " CONF_FMT_STRING,
907                    minwait, (int) (meanwait + 0.5), sdwait, medianwait, maxwait);
908             printf("Total:      " CONF_FMT_STRING,
909                mintot, (int) (meantot + 0.5), sdtot, mediantot, maxtot);
910 #undef CONF_FMT_STRING
911
912 #define     SANE(what,mean,median,sd) \
913               { \
914                 double d = (double)mean - median; \
915                 if (d < 0) d = -d; \
916                 if (d > 2 * sd ) \
917                     printf("ERROR: The median and mean for " what " are more than twice the standard\n" \
918                            "       deviation apart. These results are NOT reliable.\n"); \
919                 else if (d > sd ) \
920                     printf("WARNING: The median and mean for " what " are not within a normal deviation\n" \
921                            "        These results are probably not that reliable.\n"); \
922             }
923             SANE("the initial connection time", meancon, mediancon, sdcon);
924             SANE("the processing time", meand, mediand, sdd);
925             SANE("the waiting time", meanwait, medianwait, sdwait);
926             SANE("the total time", meantot, mediantot, sdtot);
927         }
928         else {
929             printf("              min   avg   max\n");
930 #define CONF_FMT_STRING "%5" APR_TIME_T_FMT " %5" APR_TIME_T_FMT "%5" APR_TIME_T_FMT "\n"
931             printf("Connect:    " CONF_FMT_STRING,
932                 mincon, meancon, maxcon);
933             printf("Processing: " CONF_FMT_STRING,
934                 mintot - mincon, meantot - meancon,  maxtot - maxcon);
935             printf("Total:      " CONF_FMT_STRING,
936                 mintot, meantot, maxtot);
937 #undef CONF_FMT_STRING
938         }
939
940
941         /* Sorted on total connect times */
942         if (percentile && (requests > 1)) {
943             printf("\nPercentage of the requests served within a certain time (ms)\n");
944             for (i = 0; i < sizeof(percs) / sizeof(int); i++) {
945                 if (percs[i] <= 0)
946                     printf(" 0%%  <0> (never)\n");
947                 else if (percs[i] >= 100)
948                     printf(" 100%%  %5" APR_TIME_T_FMT " (longest request)\n",
949                            stats[requests - 1].time);
950                 else
951                     printf("  %d%%  %5" APR_TIME_T_FMT "\n", percs[i],
952                            stats[(int) (requests * percs[i] / 100)].time);
953             }
954         }
955         if (csvperc) {
956             FILE *out = fopen(csvperc, "w");
957             int i;
958             if (!out) {
959                 perror("Cannot open CSV output file");
960                 exit(1);
961             }
962             fprintf(out, "" "Percentage served" "," "Time in ms" "\n");
963             for (i = 0; i < 100; i++) {
964                 apr_time_t t;
965                 if (i == 0)
966                     t = stats[0].time;
967                 else if (i == 100)
968                     t = stats[requests - 1].time;
969                 else
970                     t = stats[(int) (0.5 + requests * i / 100.0)].time;
971                 fprintf(out, "%d,%e\n", i, (double)t);
972             }
973             fclose(out);
974         }
975
976     }
977
978     if (sig) {
979         exit(1);
980     }
981 }
982
983 /* --------------------------------------------------------- */
984
985 /* calculate and output results in HTML  */
986
987 static void output_html_results(void)
988 {
989     long timetaken;
990
991     endtime = apr_time_now();
992     timetaken = (long)((endtime - start) / 1000);
993
994     printf("\n\n<table %s>\n", tablestring);
995     printf("<tr %s><th colspan=2 %s>Server Software:</th>"
996        "<td colspan=2 %s>%s</td></tr>\n",
997        trstring, tdstring, tdstring, servername);
998     printf("<tr %s><th colspan=2 %s>Server Hostname:</th>"
999        "<td colspan=2 %s>%s</td></tr>\n",
1000        trstring, tdstring, tdstring, hostname);
1001     printf("<tr %s><th colspan=2 %s>Server Port:</th>"
1002        "<td colspan=2 %s>%hd</td></tr>\n",
1003        trstring, tdstring, tdstring, port);
1004     printf("<tr %s><th colspan=2 %s>Document Path:</th>"
1005        "<td colspan=2 %s>%s</td></tr>\n",
1006        trstring, tdstring, tdstring, path);
1007     printf("<tr %s><th colspan=2 %s>Document Length:</th>"
1008        "<td colspan=2 %s>%" APR_SIZE_T_FMT " bytes</td></tr>\n",
1009        trstring, tdstring, tdstring, doclen);
1010     printf("<tr %s><th colspan=2 %s>Concurrency Level:</th>"
1011        "<td colspan=2 %s>%d</td></tr>\n",
1012        trstring, tdstring, tdstring, concurrency);
1013     printf("<tr %s><th colspan=2 %s>Time taken for tests:</th>"
1014        "<td colspan=2 %s>%" APR_INT64_T_FMT ".%03ld seconds</td></tr>\n",
1015        trstring, tdstring, tdstring, apr_time_sec(timetaken),
1016            (long)apr_time_usec(timetaken));
1017     printf("<tr %s><th colspan=2 %s>Complete requests:</th>"
1018        "<td colspan=2 %s>%ld</td></tr>\n",
1019        trstring, tdstring, tdstring, done);
1020     printf("<tr %s><th colspan=2 %s>Failed requests:</th>"
1021        "<td colspan=2 %s>%ld</td></tr>\n",
1022        trstring, tdstring, tdstring, bad);
1023     if (bad)
1024         printf("<tr %s><td colspan=4 %s >   (Connect: %d, Length: %d, Exceptions: %d)</td></tr>\n",
1025            trstring, tdstring, err_conn, err_length, err_except);
1026     if (err_response)
1027         printf("<tr %s><th colspan=2 %s>Non-2xx responses:</th>"
1028            "<td colspan=2 %s>%d</td></tr>\n",
1029            trstring, tdstring, tdstring, err_response);
1030     if (keepalive)
1031         printf("<tr %s><th colspan=2 %s>Keep-Alive requests:</th>"
1032            "<td colspan=2 %s>%ld</td></tr>\n",
1033            trstring, tdstring, tdstring, doneka);
1034     printf("<tr %s><th colspan=2 %s>Total transferred:</th>"
1035        "<td colspan=2 %s>%ld bytes</td></tr>\n",
1036        trstring, tdstring, tdstring, totalread);
1037     if (posting > 0)
1038         printf("<tr %s><th colspan=2 %s>Total POSTed:</th>"
1039            "<td colspan=2 %s>%ld</td></tr>\n",
1040            trstring, tdstring, tdstring, totalposted);
1041     printf("<tr %s><th colspan=2 %s>HTML transferred:</th>"
1042        "<td colspan=2 %s>%ld bytes</td></tr>\n",
1043        trstring, tdstring, tdstring, totalbread);
1044
1045     /* avoid divide by zero */
1046     if (timetaken) {
1047         printf("<tr %s><th colspan=2 %s>Requests per second:</th>"
1048            "<td colspan=2 %s>%.2f</td></tr>\n",
1049            trstring, tdstring, tdstring, 1000 * (float) (done) / timetaken);
1050         printf("<tr %s><th colspan=2 %s>Transfer rate:</th>"
1051            "<td colspan=2 %s>%.2f kb/s received</td></tr>\n",
1052            trstring, tdstring, tdstring, (float) (totalread) / timetaken);
1053         if (posting > 0) {
1054             printf("<tr %s><td colspan=2 %s>&nbsp;</td>"
1055                "<td colspan=2 %s>%.2f kb/s sent</td></tr>\n",
1056                trstring, tdstring, tdstring,
1057                (float) (totalposted) / timetaken);
1058             printf("<tr %s><td colspan=2 %s>&nbsp;</td>"
1059                "<td colspan=2 %s>%.2f kb/s total</td></tr>\n",
1060                trstring, tdstring, tdstring,
1061                (float) (totalread + totalposted) / timetaken);
1062         }
1063     }
1064     {
1065         /* work out connection times */
1066         long i;
1067         apr_interval_time_t totalcon = 0, total = 0;
1068         apr_interval_time_t mincon = AB_MAX, mintot = AB_MAX;
1069         apr_interval_time_t maxcon = 0, maxtot = 0;
1070
1071         for (i = 0; i < requests; i++) {
1072             struct data s = stats[i];
1073             mincon = ap_min(mincon, s.ctime);
1074             mintot = ap_min(mintot, s.time);
1075             maxcon = ap_max(maxcon, s.ctime);
1076             maxtot = ap_max(maxtot, s.time);
1077             totalcon += s.ctime;
1078             total += s.time;
1079         }
1080
1081         if (requests > 0) { /* avoid division by zero (if 0 requests) */
1082             printf("<tr %s><th %s colspan=4>Connnection Times (ms)</th></tr>\n",
1083                trstring, tdstring);
1084             printf("<tr %s><th %s>&nbsp;</th> <th %s>min</th>   <th %s>avg</th>   <th %s>max</th></tr>\n",
1085                trstring, tdstring, tdstring, tdstring, tdstring);
1086             printf("<tr %s><th %s>Connect:</th>"
1087                "<td %s>%5" APR_TIME_T_FMT "</td>"
1088                "<td %s>%5" APR_TIME_T_FMT "</td>"
1089                "<td %s>%5" APR_TIME_T_FMT "</td></tr>\n",
1090                trstring, tdstring, tdstring, mincon, tdstring, totalcon / requests, tdstring, maxcon);
1091             printf("<tr %s><th %s>Processing:</th>"
1092                "<td %s>%5" APR_TIME_T_FMT "</td>"
1093                "<td %s>%5" APR_TIME_T_FMT "</td>"
1094                "<td %s>%5" APR_TIME_T_FMT "</td></tr>\n",
1095                trstring, tdstring, tdstring, mintot - mincon, tdstring,
1096                (total / requests) - (totalcon / requests), tdstring, maxtot - maxcon);
1097             printf("<tr %s><th %s>Total:</th>"
1098                "<td %s>%5" APR_TIME_T_FMT "</td>"
1099                "<td %s>%5" APR_TIME_T_FMT "</td>"
1100                "<td %s>%5" APR_TIME_T_FMT "</td></tr>\n",
1101                trstring, tdstring, tdstring, mintot, tdstring, total / requests, tdstring, maxtot);
1102         }
1103         printf("</table>\n");
1104     }
1105 }
1106
1107 /* --------------------------------------------------------- */
1108
1109 /* start asnchronous non-blocking connection */
1110
1111 static void start_connect(struct connection * c)
1112 {
1113     apr_status_t rv;
1114
1115     if (!(started < requests))
1116     return;
1117
1118     c->read = 0;
1119     c->bread = 0;
1120     c->keepalive = 0;
1121     c->cbx = 0;
1122     c->gotheader = 0;
1123     c->rwrite = 0;
1124     if (c->ctx)
1125         apr_pool_destroy(c->ctx);
1126     apr_pool_create(&c->ctx, cntxt);
1127
1128     if ((rv = apr_socket_create(&c->aprsock, destsa->family,
1129                 SOCK_STREAM, 0, c->ctx)) != APR_SUCCESS) {
1130     apr_err("socket", rv);
1131     }
1132     if ((rv = apr_socket_opt_set(c->aprsock, APR_SO_NONBLOCK, 1))
1133          != APR_SUCCESS) {
1134         apr_err("socket nonblock", rv);
1135     }
1136
1137     if (windowsize != 0) {
1138         rv = apr_socket_opt_set(c->aprsock, APR_SO_SNDBUF, 
1139                                 windowsize);
1140         if (rv != APR_SUCCESS && rv != APR_ENOTIMPL) {
1141             apr_err("socket send buffer", rv);
1142         }
1143         rv = apr_socket_opt_set(c->aprsock, APR_SO_RCVBUF, 
1144                                 windowsize);
1145         if (rv != APR_SUCCESS && rv != APR_ENOTIMPL) {
1146             apr_err("socket receive buffer", rv);
1147         }
1148     }
1149
1150     c->start = apr_time_now();
1151 #ifdef USE_SSL
1152     if (is_ssl) {
1153         BIO *bio;
1154         apr_os_sock_t fd;
1155
1156         if ((c->ssl = SSL_new(ssl_ctx)) == NULL) {
1157             BIO_printf(bio_err, "SSL_new failed.\n");
1158             ERR_print_errors(bio_err);
1159             exit(1);
1160         }
1161         ssl_rand_seed();
1162         apr_os_sock_get(&fd, c->aprsock);
1163         bio = BIO_new_socket(fd, BIO_NOCLOSE);
1164         SSL_set_bio(c->ssl, bio, bio);
1165         SSL_set_connect_state(c->ssl);
1166         if (verbosity >= 4) {
1167             BIO_set_callback(bio, ssl_print_cb);
1168             BIO_set_callback_arg(bio, bio_err);
1169         }
1170     } else {
1171         c->ssl = NULL;
1172     }
1173 #endif
1174     if ((rv = apr_socket_connect(c->aprsock, destsa)) != APR_SUCCESS) {
1175         if (APR_STATUS_IS_EINPROGRESS(rv)) {
1176             apr_pollfd_t new_pollfd;
1177             c->state = STATE_CONNECTING;
1178             c->rwrite = 0;
1179             new_pollfd.desc_type = APR_POLL_SOCKET;
1180             new_pollfd.reqevents = APR_POLLOUT;
1181             new_pollfd.desc.s = c->aprsock;
1182             new_pollfd.client_data = c;
1183             apr_pollset_add(readbits, &new_pollfd);
1184             return;
1185         }
1186         else {
1187             apr_pollfd_t remove_pollfd;
1188             remove_pollfd.desc_type = APR_POLL_SOCKET;
1189             remove_pollfd.desc.s = c->aprsock;
1190             apr_pollset_remove(readbits, &remove_pollfd);
1191             apr_socket_close(c->aprsock);
1192             err_conn++;
1193             if (bad++ > 10) {
1194                 fprintf(stderr,
1195                    "\nTest aborted after 10 failures\n\n");
1196                 apr_err("apr_socket_connect()", rv);
1197             }
1198             c->state = STATE_UNCONNECTED;
1199             start_connect(c);
1200             return;
1201         }
1202     }
1203
1204     /* connected first time */
1205     c->state = STATE_CONNECTED;
1206     started++;
1207 #ifdef USE_SSL
1208     if (c->ssl) {
1209         ssl_proceed_handshake(c);
1210     } else
1211 #endif
1212     {
1213         write_request(c);
1214     }
1215 }
1216
1217 /* --------------------------------------------------------- */
1218
1219 /* close down connection and save stats */
1220
1221 static void close_connection(struct connection * c)
1222 {
1223     if (c->read == 0 && c->keepalive) {
1224         /*
1225          * server has legitimately shut down an idle keep alive request
1226          */
1227         if (good)
1228             good--;     /* connection never happened */
1229     }
1230     else {
1231         if (good == 1) {
1232             /* first time here */
1233             doclen = c->bread;
1234         }
1235         else if (c->bread != doclen) {
1236             bad++;
1237             err_length++;
1238         }
1239         /* save out time */
1240         if (done < requests) {
1241             struct data s;
1242             if ((done) && heartbeatres && !(done % heartbeatres)) {
1243                 fprintf(stderr, "Completed %ld requests\n", done);
1244                 fflush(stderr);
1245             }
1246             c->done = apr_time_now();
1247             s.read = c->read;
1248             s.starttime = c->start;
1249             s.ctime = ap_max(0, (c->connect - c->start) / 1000);
1250             s.time = ap_max(0, (c->done - c->start) / 1000);
1251             s.waittime = ap_max(0, (c->beginread - c->endwrite) / 1000);
1252             stats[done++] = s;
1253         }
1254     }
1255
1256     {
1257         apr_pollfd_t remove_pollfd;
1258         remove_pollfd.desc_type = APR_POLL_SOCKET;
1259         remove_pollfd.desc.s = c->aprsock;
1260         apr_pollset_remove(readbits, &remove_pollfd);
1261 #ifdef USE_SSL
1262         if (c->ssl) {
1263             SSL_shutdown(c->ssl);
1264             SSL_free(c->ssl);
1265             c->ssl = NULL;
1266         }
1267 #endif
1268         apr_socket_close(c->aprsock);
1269     }
1270     c->state = STATE_UNCONNECTED;
1271
1272     /* connect again */
1273     start_connect(c);
1274     return;
1275 }
1276
1277 /* --------------------------------------------------------- */
1278
1279 /* read data from connection */
1280
1281 static void read_connection(struct connection * c)
1282 {
1283     apr_size_t r;
1284     apr_status_t status;
1285     char *part;
1286     char respcode[4];       /* 3 digits and null */
1287
1288     r = sizeof(buffer);
1289 #ifdef USE_SSL
1290     if (c->ssl) {
1291         status = SSL_read(c->ssl, buffer, r);
1292         if (status <= 0) {
1293             int scode = SSL_get_error(c->ssl, status);
1294
1295             if (scode == SSL_ERROR_ZERO_RETURN) {
1296                 /* connection closed cleanly: */
1297                 good++;
1298                 close_connection(c);
1299             }
1300             else if (scode != SSL_ERROR_WANT_WRITE
1301                      && scode != SSL_ERROR_WANT_READ) {
1302                 /* some fatal error: */
1303                 c->read = 0;
1304                 BIO_printf(bio_err, "SSL read failed - closing connection\n");
1305                 ERR_print_errors(bio_err);
1306                 close_connection(c);
1307             }
1308             return;
1309         }
1310         r = status;
1311     }
1312     else
1313 #endif
1314     {
1315         status = apr_socket_recv(c->aprsock, buffer, &r);
1316         if (APR_STATUS_IS_EAGAIN(status))
1317             return;
1318         else if (r == 0 && APR_STATUS_IS_EOF(status)) {
1319             good++;
1320             close_connection(c);
1321             return;
1322         }
1323         /* catch legitimate fatal apr_socket_recv errors */
1324         else if (status != APR_SUCCESS) {
1325             err_except++; /* XXX: is this the right error counter? */
1326             /* XXX: Should errors here be fatal, or should we allow a
1327              * certain number of them before completely failing? -aaron */
1328             apr_err("apr_socket_recv", status);
1329         }
1330     }
1331
1332     totalread += r;
1333     if (c->read == 0) {
1334         c->beginread = apr_time_now();
1335     }
1336     c->read += r;
1337
1338
1339     if (!c->gotheader) {
1340         char *s;
1341         int l = 4;
1342         apr_size_t space = CBUFFSIZE - c->cbx - 1; /* -1 allows for \0 term */
1343         int tocopy = (space < r) ? space : r;
1344 #ifdef NOT_ASCII
1345         apr_size_t inbytes_left = space, outbytes_left = space;
1346
1347         status = apr_xlate_conv_buffer(from_ascii, buffer, &inbytes_left,
1348                            c->cbuff + c->cbx, &outbytes_left);
1349         if (status || inbytes_left || outbytes_left) {
1350             fprintf(stderr, "only simple translation is supported (%d/%u/%u)\n",
1351                 status, inbytes_left, outbytes_left);
1352             exit(1);
1353         }
1354 #else
1355         memcpy(c->cbuff + c->cbx, buffer, space);
1356 #endif              /* NOT_ASCII */
1357         c->cbx += tocopy;
1358         space -= tocopy;
1359         c->cbuff[c->cbx] = 0;   /* terminate for benefit of strstr */
1360         if (verbosity >= 2) {
1361             printf("LOG: header received:\n%s\n", c->cbuff);
1362         }
1363         s = strstr(c->cbuff, "\r\n\r\n");
1364         /*
1365          * this next line is so that we talk to NCSA 1.5 which blatantly
1366          * breaks the http specifaction
1367          */
1368         if (!s) {
1369             s = strstr(c->cbuff, "\n\n");
1370             l = 2;
1371         }
1372
1373         if (!s) {
1374             /* read rest next time */
1375             if (space) {
1376                 return;
1377             }
1378             else {
1379             /* header is in invalid or too big - close connection */
1380                 apr_pollfd_t remove_pollfd;
1381                 remove_pollfd.desc_type = APR_POLL_SOCKET;
1382                 remove_pollfd.desc.s = c->aprsock;
1383                 apr_pollset_remove(readbits, &remove_pollfd);
1384                 apr_socket_close(c->aprsock);
1385                 err_response++;
1386                 if (bad++ > 10) {
1387                     err("\nTest aborted after 10 failures\n\n");
1388                 }
1389                 start_connect(c);
1390             }
1391         }
1392         else {
1393             /* have full header */
1394             if (!good) {
1395                 /*
1396                  * this is first time, extract some interesting info
1397                  */
1398                 char *p, *q;
1399                 p = strstr(c->cbuff, "Server:");
1400                 q = servername;
1401                 if (p) {
1402                     p += 8;
1403                     while (*p > 32)
1404                     *q++ = *p++;
1405                 }
1406                 *q = 0;
1407             }
1408             /*
1409              * XXX: this parsing isn't even remotely HTTP compliant... but in
1410              * the interest of speed it doesn't totally have to be, it just
1411              * needs to be extended to handle whatever servers folks want to
1412              * test against. -djg
1413              */
1414
1415             /* check response code */
1416             part = strstr(c->cbuff, "HTTP");    /* really HTTP/1.x_ */
1417             if (part && strlen(part) > strlen("HTTP/1.x_")) {
1418                 strncpy(respcode, (part + strlen("HTTP/1.x_")), 3);
1419                 respcode[3] = '\0';
1420             }
1421             else {
1422                 strcpy(respcode, "500");
1423             }
1424
1425             if (respcode[0] != '2') {
1426                 err_response++;
1427                 if (verbosity >= 2)
1428                     printf("WARNING: Response code not 2xx (%s)\n", respcode);
1429             }
1430             else if (verbosity >= 3) {
1431                 printf("LOG: Response code = %s\n", respcode);
1432             }
1433             c->gotheader = 1;
1434             *s = 0;     /* terminate at end of header */
1435             if (keepalive &&
1436             (strstr(c->cbuff, "Keep-Alive")
1437              || strstr(c->cbuff, "keep-alive"))) {  /* for benefit of MSIIS */
1438                 char *cl;
1439                 cl = strstr(c->cbuff, "Content-Length:");
1440                 /* handle NCSA, which sends Content-length: */
1441                 if (!cl)
1442                     cl = strstr(c->cbuff, "Content-length:");
1443                 if (cl) {
1444                     c->keepalive = 1;
1445                     c->length = atoi(cl + 16);
1446                 }
1447             }
1448             c->bread += c->cbx - (s + l - c->cbuff) + r - tocopy;
1449             totalbread += c->bread;
1450         }
1451     }
1452     else {
1453         /* outside header, everything we have read is entity body */
1454         c->bread += r;
1455         totalbread += r;
1456     }
1457
1458     if (c->keepalive && (c->bread >= c->length)) {
1459         /* finished a keep-alive connection */
1460         good++;
1461         /* save out time */
1462         if (good == 1) {
1463             /* first time here */
1464             doclen = c->bread;
1465         }
1466         else if (c->bread != doclen) {
1467             bad++;
1468             err_length++;
1469         }
1470         if (done < requests) {
1471             struct data s;
1472             doneka++;
1473             if (done && heartbeatres && !(done % heartbeatres)) {
1474                 fprintf(stderr, "Completed %ld requests\n", done);
1475                 fflush(stderr);
1476             }
1477             c->done = apr_time_now();
1478             s.read = c->read;
1479             s.starttime = c->start;
1480             s.ctime = ap_max(0, (c->connect - c->start) / 1000);
1481             s.waittime = ap_max(0, (c->beginread - c->endwrite) / 1000);
1482             s.time = ap_max(0, (c->done - c->start) / 1000);
1483             stats[done++] = s;
1484         }
1485         c->keepalive = 0;
1486         c->length = 0;
1487         c->gotheader = 0;
1488         c->cbx = 0;
1489         c->read = c->bread = 0;
1490         c->start = c->connect = apr_time_now(); /* zero connect time with keep-alive */
1491         write_request(c);
1492     }
1493 }
1494
1495 /* --------------------------------------------------------- */
1496
1497 /* run the tests */
1498
1499 static void test(void)
1500 {
1501     apr_time_t now;
1502     apr_int16_t rv;
1503     long i;
1504     apr_status_t status;
1505     int snprintf_res = 0;
1506 #ifdef NOT_ASCII
1507     apr_size_t inbytes_left, outbytes_left;
1508 #endif
1509
1510     if (isproxy) {
1511         connecthost = apr_pstrdup(cntxt, proxyhost);
1512         connectport = proxyport;
1513     }
1514     else {
1515         connecthost = apr_pstrdup(cntxt, hostname);
1516         connectport = port;
1517     }
1518
1519     if (!use_html) {
1520         printf("Benchmarking %s ", hostname);
1521     if (isproxy)
1522         printf("[through %s:%d] ", proxyhost, proxyport);
1523     printf("(be patient)%s",
1524            (heartbeatres ? "\n" : "..."));
1525     fflush(stdout);
1526     }
1527
1528     now = apr_time_now();
1529
1530     con = calloc(concurrency, sizeof(struct connection));
1531
1532     stats = calloc(requests, sizeof(struct data));
1533
1534     if ((status = apr_pollset_create(&readbits, concurrency, cntxt, 0)) != APR_SUCCESS) {
1535         apr_err("apr_pollset_create failed", status);
1536     }
1537
1538     /* setup request */
1539     if (posting <= 0) {
1540         snprintf_res = apr_snprintf(request, sizeof(_request),
1541             "%s %s HTTP/1.0\r\n"
1542             "User-Agent: ApacheBench/%s\r\n"
1543             "%s" "%s" "%s"
1544             "Host: %s%s\r\n"
1545             "Accept: */*\r\n"
1546             "%s" "\r\n",
1547             (posting == 0) ? "GET" : "HEAD",
1548             (isproxy) ? fullurl : path,
1549             AP_AB_BASEREVISION,
1550             keepalive ? "Connection: Keep-Alive\r\n" : "",
1551             cookie, auth, host_field, colonhost, hdrs);
1552     }
1553     else {
1554         snprintf_res = apr_snprintf(request,  sizeof(_request),
1555             "POST %s HTTP/1.0\r\n"
1556             "User-Agent: ApacheBench/%s\r\n"
1557             "%s" "%s" "%s"
1558             "Host: %s%s\r\n"
1559             "Accept: */*\r\n"
1560             "Content-length: %" APR_SIZE_T_FMT "\r\n"
1561             "Content-type: %s\r\n"
1562             "%s"
1563             "\r\n",
1564             (isproxy) ? fullurl : path,
1565             AP_AB_BASEREVISION,
1566             keepalive ? "Connection: Keep-Alive\r\n" : "",
1567             cookie, auth,
1568             host_field, colonhost, postlen,
1569             (content_type[0]) ? content_type : "text/plain", hdrs);
1570     }
1571     if (snprintf_res >= sizeof(_request)) {
1572         err("Request too long\n");
1573     }
1574
1575     if (verbosity >= 2)
1576         printf("INFO: POST header == \n---\n%s\n---\n", request);
1577
1578     reqlen = strlen(request);
1579
1580     /*
1581      * Combine headers and (optional) post file into one contineous buffer
1582      */
1583     if (posting == 1) {
1584         char *buff = malloc(postlen + reqlen + 1);
1585         if (!buff) {
1586             fprintf(stderr, "error creating request buffer: out of memory\n");
1587             return;
1588         }
1589         strcpy(buff, request);
1590         memcpy(buff + reqlen, postdata, postlen);
1591         request = buff;
1592     }
1593
1594 #ifdef NOT_ASCII
1595     inbytes_left = outbytes_left = reqlen;
1596     status = apr_xlate_conv_buffer(to_ascii, request, &inbytes_left,
1597                    request, &outbytes_left);
1598     if (status || inbytes_left || outbytes_left) {
1599         fprintf(stderr, "only simple translation is supported (%d/%u/%u)\n",
1600            status, inbytes_left, outbytes_left);
1601         exit(1);
1602     }
1603 #endif              /* NOT_ASCII */
1604
1605     /* This only needs to be done once */
1606     if ((rv = apr_sockaddr_info_get(&destsa, connecthost, APR_UNSPEC, connectport, 0, cntxt))
1607        != APR_SUCCESS) {
1608         char buf[120];
1609         apr_snprintf(buf, sizeof(buf),
1610                  "apr_sockaddr_info_get() for %s", connecthost);
1611         apr_err(buf, rv);
1612     }
1613
1614     /* ok - lets start */
1615     start = apr_time_now();
1616
1617 #ifdef SIGINT 
1618     /* Output the results if the user terminates the run early. */
1619     apr_signal(SIGINT, output_results);
1620 #endif
1621
1622     /* initialise lots of requests */
1623     for (i = 0; i < concurrency; i++) {
1624         con[i].socknum = i;
1625         start_connect(&con[i]);
1626     }
1627
1628     while (done < requests) {
1629         apr_int32_t n;
1630         apr_int32_t timed;
1631             const apr_pollfd_t *pollresults;
1632
1633         /* check for time limit expiry */
1634         now = apr_time_now();
1635         timed = (apr_int32_t)apr_time_sec(now - start);
1636         if (tlimit && timed >= tlimit) {
1637             requests = done;    /* so stats are correct */
1638             break;      /* no need to do another round */
1639         }
1640
1641         n = concurrency;
1642         status = apr_pollset_poll(readbits, aprtimeout, &n, &pollresults);
1643         if (status != APR_SUCCESS)
1644             apr_err("apr_poll", status);
1645
1646         if (!n) {
1647             err("\nServer timed out\n\n");
1648         }
1649
1650         for (i = 0; i < n; i++) {
1651             const apr_pollfd_t *next_fd = &(pollresults[i]);
1652             struct connection *c;
1653
1654                 c = next_fd->client_data;
1655
1656             /*
1657              * If the connection isn't connected how can we check it?
1658              */
1659             if (c->state == STATE_UNCONNECTED)
1660                 continue;
1661
1662             rv = next_fd->rtnevents;
1663
1664 #ifdef USE_SSL
1665             if (c->state == STATE_CONNECTED && c->ssl && SSL_in_init(c->ssl)) {
1666                 ssl_proceed_handshake(c);
1667                 continue;
1668             }
1669 #endif
1670
1671             /*
1672              * Notes: APR_POLLHUP is set after FIN is received on some
1673              * systems, so treat that like APR_POLLIN so that we try to read
1674              * again.
1675              *
1676              * Some systems return APR_POLLERR with APR_POLLHUP.  We need to
1677              * call read_connection() for APR_POLLHUP, so check for
1678              * APR_POLLHUP first so that a closed connection isn't treated
1679              * like an I/O error.  If it is, we never figure out that the
1680              * connection is done and we loop here endlessly calling
1681              * apr_poll().
1682              */
1683             if ((rv & APR_POLLIN) || (rv & APR_POLLPRI) || (rv & APR_POLLHUP))
1684                 read_connection(c);
1685             if ((rv & APR_POLLERR) || (rv & APR_POLLNVAL)) {
1686                 bad++;
1687                 err_except++;
1688                 start_connect(c);
1689                 continue;
1690             }
1691             if (rv & APR_POLLOUT) {
1692                 if (c->state == STATE_CONNECTING) {
1693                     apr_pollfd_t remove_pollfd;
1694                     rv = apr_socket_connect(c->aprsock, destsa);
1695                     remove_pollfd.desc_type = APR_POLL_SOCKET;
1696                     remove_pollfd.desc.s = c->aprsock;
1697                     apr_pollset_remove(readbits, &remove_pollfd);
1698                     if (rv != APR_SUCCESS) {
1699                         apr_socket_close(c->aprsock);
1700                         err_conn++;
1701                         if (bad++ > 10) {
1702                             fprintf(stderr,
1703                                     "\nTest aborted after 10 failures\n\n");
1704                             apr_err("apr_socket_connect()", rv);
1705                         }
1706                         c->state = STATE_UNCONNECTED;
1707                         start_connect(c);
1708                         continue;
1709                     }
1710                     else {
1711                         c->state = STATE_CONNECTED;
1712                         started++;
1713 #ifdef USE_SSL
1714                         if (c->ssl)
1715                             ssl_proceed_handshake(c);
1716                         else
1717 #endif
1718                         write_request(c);
1719                     }
1720                 }
1721                 else {
1722                     write_request(c);
1723                 }
1724             }
1725
1726             /*
1727              * When using a select based poll every time we check the bits
1728              * are reset. In 1.3's ab we copied the FD_SET's each time
1729              * through, but here we're going to check the state and if the
1730              * connection is in STATE_READ or STATE_CONNECTING we'll add the
1731              * socket back in as APR_POLLIN.
1732              */
1733                 if (c->state == STATE_READ) {
1734                     apr_pollfd_t new_pollfd;
1735                     new_pollfd.desc_type = APR_POLL_SOCKET;
1736                     new_pollfd.reqevents = APR_POLLIN;
1737                     new_pollfd.desc.s = c->aprsock;
1738                     new_pollfd.client_data = c;
1739                     apr_pollset_add(readbits, &new_pollfd);
1740                 }
1741         }
1742     }
1743
1744     if (heartbeatres)
1745         fprintf(stderr, "Finished %ld requests\n", done);
1746     else
1747         printf("..done\n");
1748
1749     if (use_html)
1750         output_html_results();
1751     else
1752         output_results(0);
1753 }
1754
1755 /* ------------------------------------------------------- */
1756
1757 /* display copyright information */
1758 static void copyright(void)
1759 {
1760     if (!use_html) {
1761         printf("This is ApacheBench, Version %s\n", AP_AB_BASEREVISION " <$Revision$>");
1762         printf("Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n");
1763         printf("Copyright 1997-2005 The Apache Software Foundation, http://www.apache.org/\n");
1764         printf("\n");
1765     }
1766     else {
1767         printf("<p>\n");
1768         printf(" This is ApacheBench, Version %s <i>&lt;%s&gt;</i><br>\n", AP_AB_BASEREVISION, "$Revision$");
1769         printf(" Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br>\n");
1770         printf(" Copyright 1997-2005 The Apache Software Foundation, http://www.apache.org/<br>\n");
1771         printf("</p>\n<p>\n");
1772     }
1773 }
1774
1775 /* display usage information */
1776 static void usage(const char *progname)
1777 {
1778     fprintf(stderr, "Usage: %s [options] [http"
1779 #ifdef USE_SSL
1780         "[s]"
1781 #endif
1782         "://]hostname[:port]/path\n", progname);
1783     fprintf(stderr, "Options are:\n");
1784     fprintf(stderr, "    -n requests     Number of requests to perform\n");
1785     fprintf(stderr, "    -c concurrency  Number of multiple requests to make\n");
1786     fprintf(stderr, "    -t timelimit    Seconds to max. wait for responses\n");
1787     fprintf(stderr, "    -b windowsize   Size of TCP send/receive buffer, in bytes\n");
1788     fprintf(stderr, "    -p postfile     File containing data to POST\n");
1789     fprintf(stderr, "    -T content-type Content-type header for POSTing\n");
1790     fprintf(stderr, "    -v verbosity    How much troubleshooting info to print\n");
1791     fprintf(stderr, "    -w              Print out results in HTML tables\n");
1792     fprintf(stderr, "    -i              Use HEAD instead of GET\n");
1793     fprintf(stderr, "    -x attributes   String to insert as table attributes\n");
1794     fprintf(stderr, "    -y attributes   String to insert as tr attributes\n");
1795     fprintf(stderr, "    -z attributes   String to insert as td or th attributes\n");
1796     fprintf(stderr, "    -C attribute    Add cookie, eg. 'Apache=1234. (repeatable)\n");
1797     fprintf(stderr, "    -H attribute    Add Arbitrary header line, eg. 'Accept-Encoding: gzip'\n");
1798     fprintf(stderr, "                    Inserted after all normal header lines. (repeatable)\n");
1799     fprintf(stderr, "    -A attribute    Add Basic WWW Authentication, the attributes\n");
1800     fprintf(stderr, "                    are a colon separated username and password.\n");
1801     fprintf(stderr, "    -P attribute    Add Basic Proxy Authentication, the attributes\n");
1802     fprintf(stderr, "                    are a colon separated username and password.\n");
1803     fprintf(stderr, "    -X proxy:port   Proxyserver and port number to use\n");
1804     fprintf(stderr, "    -V              Print version number and exit\n");
1805     fprintf(stderr, "    -k              Use HTTP KeepAlive feature\n");
1806     fprintf(stderr, "    -d              Do not show percentiles served table.\n");
1807     fprintf(stderr, "    -S              Do not show confidence estimators and warnings.\n");
1808     fprintf(stderr, "    -g filename     Output collected data to gnuplot format file.\n");
1809     fprintf(stderr, "    -e filename     Output CSV file with percentages served\n");
1810     fprintf(stderr, "    -h              Display usage information (this message)\n");
1811 #ifdef USE_SSL
1812     fprintf(stderr, "    -Z ciphersuite  Specify SSL/TLS cipher suite (See openssl ciphers)\n");
1813     fprintf(stderr, "    -f protocol     Specify SSL/TLS protocol (SSL2, SSL3, TLS1, or ALL)\n");
1814 #endif
1815     exit(EINVAL);
1816 }
1817
1818 /* ------------------------------------------------------- */
1819
1820 /* split URL into parts */
1821
1822 static int parse_url(char *url)
1823 {
1824     char *cp;
1825     char *h;
1826     char *scope_id;
1827     apr_status_t rv;
1828
1829     /* Save a copy for the proxy */
1830     fullurl = apr_pstrdup(cntxt, url);
1831
1832     if (strlen(url) > 7 && strncmp(url, "http://", 7) == 0) {
1833         url += 7;
1834 #ifdef USE_SSL
1835         is_ssl = 0;
1836 #endif
1837     }
1838     else
1839 #ifdef USE_SSL
1840     if (strlen(url) > 8 && strncmp(url, "https://", 8) == 0) {
1841         url += 8;
1842         is_ssl = 1;
1843     }
1844 #else
1845     if (strlen(url) > 8 && strncmp(url, "https://", 8) == 0) {
1846         fprintf(stderr, "SSL not compiled in; no https support\n");
1847         exit(1);
1848     }
1849 #endif
1850
1851     if ((cp = strchr(url, '/')) == NULL)
1852         return 1;
1853     h = apr_palloc(cntxt, cp - url + 1);
1854     memcpy(h, url, cp - url);
1855     h[cp - url] = '\0';
1856     rv = apr_parse_addr_port(&hostname, &scope_id, &port, h, cntxt);
1857     if (rv != APR_SUCCESS || !hostname || scope_id) {
1858         return 1;
1859     }
1860     path = apr_pstrdup(cntxt, cp);
1861     *cp = '\0';
1862     if (*url == '[') {      /* IPv6 numeric address string */
1863         host_field = apr_psprintf(cntxt, "[%s]", hostname);
1864     }
1865     else {
1866         host_field = hostname;
1867     }
1868
1869     if (port == 0) {        /* no port specified */
1870 #ifdef USE_SSL
1871         if (is_ssl)
1872             port = 443;
1873         else
1874 #endif
1875         port = 80;
1876     }
1877
1878     if ((
1879 #ifdef USE_SSL
1880          is_ssl && (port != 443)) || (!is_ssl &&
1881 #endif
1882          (port != 80)))
1883     {
1884         colonhost = apr_psprintf(cntxt,":%d",port);
1885     } else
1886         colonhost = "";
1887     return 0;
1888 }
1889
1890 /* ------------------------------------------------------- */
1891
1892 /* read data to POST from file, save contents and length */
1893
1894 static int open_postfile(const char *pfile)
1895 {
1896     apr_file_t *postfd;
1897     apr_finfo_t finfo;
1898     apr_status_t rv;
1899     char errmsg[120];
1900
1901     rv = apr_file_open(&postfd, pfile, APR_READ, APR_OS_DEFAULT, cntxt);
1902     if (rv != APR_SUCCESS) {
1903         fprintf(stderr, "ab: Could not open POST data file (%s): %s\n", pfile,
1904                 apr_strerror(rv, errmsg, sizeof errmsg));
1905         return rv;
1906     }
1907
1908     apr_file_info_get(&finfo, APR_FINFO_NORM, postfd);
1909     postlen = (apr_size_t)finfo.size;
1910     postdata = malloc(postlen);
1911     if (!postdata) {
1912         fprintf(stderr, "ab: Could not allocate POST data buffer\n");
1913         return APR_ENOMEM;
1914     }
1915     rv = apr_file_read_full(postfd, postdata, postlen, NULL);
1916     if (rv != APR_SUCCESS) {
1917         fprintf(stderr, "ab: Could not read POST data file: %s\n",
1918                 apr_strerror(rv, errmsg, sizeof errmsg));
1919         return rv;
1920     }
1921     apr_file_close(postfd);
1922     return 0;
1923 }
1924
1925 /* ------------------------------------------------------- */
1926
1927 /* sort out command-line args and call test */
1928 int main(int argc, const char * const argv[])
1929 {
1930     int r, l;
1931     char tmp[1024];
1932     apr_status_t status;
1933     apr_getopt_t *opt;
1934     const char *optarg;
1935     char c;
1936 #ifdef USE_SSL
1937     SSL_METHOD *meth = SSLv23_client_method();
1938 #endif
1939
1940     /* table defaults  */
1941     tablestring = "";
1942     trstring = "";
1943     tdstring = "bgcolor=white";
1944     cookie = "";
1945     auth = "";
1946     proxyhost[0] = '\0';
1947     hdrs = "";
1948
1949     apr_app_initialize(&argc, &argv, NULL);
1950     atexit(apr_terminate);
1951     apr_pool_create(&cntxt, NULL);
1952
1953 #ifdef NOT_ASCII
1954     status = apr_xlate_open(&to_ascii, "ISO-8859-1", APR_DEFAULT_CHARSET, cntxt);
1955     if (status) {
1956         fprintf(stderr, "apr_xlate_open(to ASCII)->%d\n", status);
1957         exit(1);
1958     }
1959     status = apr_xlate_open(&from_ascii, APR_DEFAULT_CHARSET, "ISO-8859-1", cntxt);
1960     if (status) {
1961         fprintf(stderr, "apr_xlate_open(from ASCII)->%d\n", status);
1962         exit(1);
1963     }
1964     status = apr_base64init_ebcdic(to_ascii, from_ascii);
1965     if (status) {
1966         fprintf(stderr, "apr_base64init_ebcdic()->%d\n", status);
1967         exit(1);
1968     }
1969 #endif
1970
1971     apr_getopt_init(&opt, cntxt, argc, argv);
1972     while ((status = apr_getopt(opt, "n:c:t:b:T:p:v:kVhwix:y:z:C:H:P:A:g:X:de:Sq"
1973 #ifdef USE_SSL
1974             "Z:f:"
1975 #endif
1976             ,&c, &optarg)) == APR_SUCCESS) {
1977         switch (c) {
1978             case 'n':
1979                 requests = atoi(optarg);
1980                 if (!requests) {
1981                     err("Invalid number of requests\n");
1982                 }
1983                 break;
1984             case 'k':
1985                 keepalive = 1;
1986                 break;
1987             case 'q':
1988                 heartbeatres = 0;
1989                 break;
1990             case 'c':
1991                 concurrency = atoi(optarg);
1992                 break;
1993             case 'b':
1994                 windowsize = atoi(optarg);
1995                 break;
1996             case 'i':
1997                 if (posting == 1)
1998                 err("Cannot mix POST and HEAD\n");
1999                 posting = -1;
2000                 break;
2001             case 'g':
2002                 gnuplot = strdup(optarg);
2003                 break;
2004             case 'd':
2005                 percentile = 0;
2006                 break;
2007             case 'e':
2008                 csvperc = strdup(optarg);
2009                 break;
2010             case 'S':
2011                 confidence = 0;
2012                 break;
2013             case 'p':
2014                 if (posting != 0)
2015                     err("Cannot mix POST and HEAD\n");
2016                 if (0 == (r = open_postfile(optarg))) {
2017                     posting = 1;
2018                 }
2019                 else if (postdata) {
2020                     exit(r);
2021                 }
2022                 break;
2023             case 'v':
2024                 verbosity = atoi(optarg);
2025                 break;
2026             case 't':
2027                 tlimit = atoi(optarg);
2028                 requests = MAX_REQUESTS;    /* need to size data array on
2029                                              * something */
2030                 break;
2031             case 'T':
2032                 strcpy(content_type, optarg);
2033                 break;
2034             case 'C':
2035                 cookie = apr_pstrcat(cntxt, "Cookie: ", optarg, "\r\n", NULL);
2036                 break;
2037             case 'A':
2038                 /*
2039                  * assume username passwd already to be in colon separated form.
2040                  * Ready to be uu-encoded.
2041                  */
2042                 while (apr_isspace(*optarg))
2043                     optarg++;
2044                 if (apr_base64_encode_len(strlen(optarg)) > sizeof(tmp)) {
2045                     err("Authentication credentials too long\n");
2046                 }
2047                 l = apr_base64_encode(tmp, optarg, strlen(optarg));
2048                 tmp[l] = '\0';
2049
2050                 auth = apr_pstrcat(cntxt, auth, "Authorization: Basic ", tmp,
2051                                        "\r\n", NULL);
2052                 break;
2053             case 'P':
2054                 /*
2055                  * assume username passwd already to be in colon separated form.
2056                  */
2057                 while (apr_isspace(*optarg))
2058                 optarg++;
2059                 if (apr_base64_encode_len(strlen(optarg)) > sizeof(tmp)) {
2060                     err("Proxy credentials too long\n");
2061                 }
2062                 l = apr_base64_encode(tmp, optarg, strlen(optarg));
2063                 tmp[l] = '\0';
2064
2065                 auth = apr_pstrcat(cntxt, auth, "Proxy-Authorization: Basic ",
2066                                        tmp, "\r\n", NULL);
2067                 break;
2068             case 'H':
2069                 hdrs = apr_pstrcat(cntxt, hdrs, optarg, "\r\n", NULL);
2070                 break;
2071             case 'w':
2072                 use_html = 1;
2073                 break;
2074                 /*
2075                  * if any of the following three are used, turn on html output
2076                  * automatically
2077                  */
2078             case 'x':
2079                 use_html = 1;
2080                 tablestring = optarg;
2081                 break;
2082             case 'X':
2083                 {
2084                     char *p;
2085                     /*
2086                      * assume proxy-name[:port]
2087                      */
2088                     if ((p = strchr(optarg, ':'))) {
2089                         *p = '\0';
2090                         p++;
2091                         proxyport = atoi(p);
2092                     }
2093                     strcpy(proxyhost, optarg);
2094                     isproxy = 1;
2095                 }
2096                 break;
2097             case 'y':
2098                 use_html = 1;
2099                 trstring = optarg;
2100                 break;
2101             case 'z':
2102                 use_html = 1;
2103                 tdstring = optarg;
2104                 break;
2105             case 'h':
2106                 usage(argv[0]);
2107                 break;
2108             case 'V':
2109                 copyright();
2110                 return 0;
2111 #ifdef USE_SSL
2112             case 'Z':
2113                 ssl_cipher = strdup(optarg);
2114                 break;
2115             case 'f':
2116                 if (strncasecmp(optarg, "ALL", 3) == 0) {
2117                     meth = SSLv23_client_method();
2118                 } else if (strncasecmp(optarg, "SSL2", 4) == 0) {
2119                     meth = SSLv2_client_method();
2120                 } else if (strncasecmp(optarg, "SSL3", 4) == 0) {
2121                     meth = SSLv3_client_method();
2122                 } else if (strncasecmp(optarg, "TLS1", 4) == 0) {
2123                     meth = TLSv1_client_method();
2124                 }
2125                 break;
2126 #endif
2127         }
2128     }
2129
2130     if (opt->ind != argc - 1) {
2131         fprintf(stderr, "%s: wrong number of arguments\n", argv[0]);
2132         usage(argv[0]);
2133     }
2134
2135     if (parse_url(apr_pstrdup(cntxt, opt->argv[opt->ind++]))) {
2136         fprintf(stderr, "%s: invalid URL\n", argv[0]);
2137         usage(argv[0]);
2138     }
2139
2140     if ((concurrency < 0) || (concurrency > MAX_CONCURRENCY)) {
2141         fprintf(stderr, "%s: Invalid Concurrency [Range 0..%d]\n",
2142                 argv[0], MAX_CONCURRENCY);
2143         usage(argv[0]);
2144     }
2145
2146     if (concurrency > requests) {
2147         fprintf(stderr, "%s: Cannot use concurrency level greater than "
2148                 "total number of requests\n", argv[0]);
2149         usage(argv[0]);
2150     }
2151
2152     if ((heartbeatres) && (requests > 150)) {
2153         heartbeatres = requests / 10;   /* Print line every 10% of requests */
2154         if (heartbeatres < 100)
2155             heartbeatres = 100; /* but never more often than once every 100
2156                                  * connections. */
2157     }
2158     else
2159         heartbeatres = 0;
2160
2161 #ifdef USE_SSL
2162 #ifdef RSAREF
2163     R_malloc_init();
2164 #else
2165     CRYPTO_malloc_init();
2166 #endif
2167     SSL_load_error_strings();
2168     SSL_library_init();
2169     bio_out=BIO_new_fp(stdout,BIO_NOCLOSE);
2170     bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
2171
2172     if (!(ssl_ctx = SSL_CTX_new(meth))) {
2173         BIO_printf(bio_err, "Could not initialize SSL Context.\n");
2174         ERR_print_errors(bio_err);
2175         exit(1);
2176     }
2177     SSL_CTX_set_options(ssl_ctx, SSL_OP_ALL);
2178     if (ssl_cipher != NULL) {
2179         if (!SSL_CTX_set_cipher_list(ssl_ctx, ssl_cipher)) {
2180             fprintf(stderr, "error setting cipher list [%s]\n", ssl_cipher);
2181         ERR_print_errors_fp(stderr);
2182         exit(1);
2183     }
2184     }
2185     if (verbosity >= 3) {
2186         SSL_CTX_set_info_callback(ssl_ctx, ssl_state_cb);
2187     }
2188 #endif
2189 #ifdef SIGPIPE
2190     apr_signal(SIGPIPE, SIG_IGN);       /* Ignore writes to connections that
2191                                          * have been closed at the other end. */
2192 #endif
2193     copyright();
2194     test();
2195     apr_pool_destroy(cntxt);
2196
2197     return 0;
2198 }