-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-bench.c
464 lines (397 loc) · 14.6 KB
/
web-bench.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
/*
* Modified by ucsk 2020-03-05
* (C) Radim Kolar 1997-2004
* This is free software, see GNU Public License version 2 for details.
*
* WebBench:
* Simple website stress testing tool
* Create a child process to simulate the client, repeatedly send a get request
* to the target website within a certain time, and calculate the returned data.
*
* Return codes:
* 0 - success
* 1 - benchmark failed (server is not on-line)
* 2 - bad parameter
* 3 - internal error, fork failed
*
* */
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <signal.h>
#include "socket.c"
#define PROGRAM_VERSION "1.5"
#define METHOD_GET 0
#define METHOD_HEAD 1
#define METHOD_OPTIONS 2
#define METHOD_TRACE 3
int method = METHOD_GET; // Default request method
#define MAX_HOSTNAME_LEN 64
#define URL_THRESHOLD 1500
#define REQUEST_SIZE 2048
char host[MAX_HOSTNAME_LEN]; // Server IP address
char request[REQUEST_SIZE]; // HTTP request sent to the server
int http10 = 1; // http/0.9 - 0 | http/1.0 - 1 | http/1.1 - 2
char *proxy_host = NULL; // Proxy server IP
int proxy_port = 80; // Proxy server port
int clients = 1; // Concurrent number
int benchTime = 30; // Client runtime
int force = 0; // Whether to wait for a response from the server. (0 - Yes | 1 - No)
int force_reload = 0; // Whether to use caching. (0 - Yes | 1 - No)
volatile int timer_expired = 0; // Whether the stress test duration is saturated.
int my_pipe[2]; // Parent and child processes communicate using pipes.
int speed = 0; // Number of processes responded by the server.
int bytes = 0; // Number of bytes read by the process.
int failed = 0; // Number of processes not responding to the server.
// Function to generate a request HTTP message.
static void build_request(const char *URL);
// Timeout detection function: Use signals to control the end of the process.
static void alarm_handler(void) { timer_expired = 1; }
// Stress test function: Parent and child processes communicate through the pipeline,
// child process stress test, parent process records
static int bench(void);
// Child process stress test function.
static void bench_core(const char *host_t, int port, char *request_t);
// Tips for using functions: Note that the server-side URL should be given
// at the end of the command line.
static void usage(void)
{
fprintf(stderr,
"webbench [option]... URL\n"
" -f|--force Don't wait for reply from server.\n"
" -r|--reload Send reload request - Pragma: no-cache.\n"
" -t|--time <sec> Run benchmark for <sec> seconds. Default 30.\n"
" -p|--proxy <server:port> Use proxy server for request.\n"
" -c|--clients <n> Run <n> HTTP clients at once. Default one.\n"
" -9|--http09 Use HTTP/0.9 style requests.\n"
" -1|--http10 Use HTTP/1.0 protocol.\n"
" -2|--http11 Use HTTP/1.1 protocol.\n"
" --get Use GET request method.\n"
" --head Use HEAD request method.\n"
" --options Use OPTIONS request method.\n"
" --trace Use TRACE request method.\n"
" -?|-h|--help This information.\n"
" -V|--version Display program version.\n"
);
}
// Detailed classification of command line arguments.
const struct option long_options[15] =
{
{"help", no_argument, NULL, '?'},
{"version", no_argument, NULL, 'V'},
{"http09", no_argument, NULL, '9'},
{"http10", no_argument, NULL, '1'},
{"http11", no_argument, NULL, '2'},
{"force", no_argument, &force, 1},
{"reload", no_argument, &force_reload, 1},
{"get", no_argument, &method, METHOD_GET},
{"head", no_argument, &method, METHOD_HEAD},
{"options", no_argument, &method, METHOD_OPTIONS},
{"trace", no_argument, &method, METHOD_TRACE},
{"time", required_argument, NULL, 't'},
{"proxy", required_argument, NULL, 'p'},
{"clients", required_argument, NULL, 'c'},
{NULL,0,NULL,0}
};
int main(int argc, char *argv[])
{
// If the user does not enter any arguments.
if(argc == 1) {
usage();
exit(2);
}
// Parsing command line argument options.
const char *optstring = "912frp:c:t:Vh?";
int opt = 0;
for(; (opt = getopt_long(argc, argv, optstring, long_options, NULL)) != EOF;) {
switch(opt) {
case 0 : break;
case 'f': force = 1; break;
case 'r': force_reload = 1; break;
case '9': http10 = 0; break;
case '1': http10 = 1; break;
case '2': http10 = 2; break;
case 't': benchTime = (!atoi(optarg) ? 30 : atoi(optarg)); break;
case 'c': clients = (!atoi(optarg) ? 1 : atoi(optarg)); break;
case 'p': {
char *tmp_proxyport = strrchr(optarg, ':');
if(tmp_proxyport == NULL) {
break;
}
if(tmp_proxyport == optarg) {
fprintf(stderr, "Error in option --proxy %s: Missing hostname.\n", optarg);
exit(2);
}
if(strlen(tmp_proxyport) == 1) {
fprintf(stderr, "Error in option --proxy %s Port number is missing.\n", optarg);
exit(2);
}
proxy_port = atoi(tmp_proxyport + 1);
*tmp_proxyport = '\0'; // Separate IP address and port number.
proxy_host = optarg;
break;
}
case ':':
case '?':
case 'h': usage(); exit(2);
case 'V': printf(PROGRAM_VERSION"\n"); exit(0);
default: break;
}
}
// Determine if a URL is missing.
if(optind == argc) {
fprintf(stderr, "WebBench: Missing URL!\n");
usage();
exit(2);
}
// Copyright
fprintf(stderr, "WebBench - Simple Web Benchmark "PROGRAM_VERSION"\n"
"Copyright (c) Radim Kolar 1997-2004, GPL Open Source Software.\n"
"Modified by ucsk 2020-03-05.\n");
// Construct the HTTP request message body.
build_request(argv[optind]);
// Print information about this stress test.
printf("\nBenchmarking: ");
switch(method) {
case METHOD_GET:
default: printf("GET"); break;
case METHOD_HEAD: printf("HEAD"); break;
case METHOD_OPTIONS: printf("OPTIONS"); break;
case METHOD_TRACE: printf("TRACE"); break;
}
printf(" %s", argv[optind]);
switch(http10) {
case 0: printf(" (using HTTP/0.9)"); break;
case 2: printf(" (using HTTP/1.1)"); break;
default: break;
}
printf("\n%d client%s", clients, clients == 1 ? "" : "s");
printf(", running %d second%s", benchTime, benchTime == 1 ? "" : "s");
if(force) {
printf(", early socket close");
}
if(proxy_host != NULL) {
printf(", via proxy server %s:%d", proxy_host, proxy_port);
}
if(force_reload) {
printf(", forcing reload");
}
printf(".\n");
// Start stress test.
return bench();
}
static void build_request(const char *URL)
{
// Set the HTTP protocol version.
if(force_reload && proxy_host != NULL && http10 < 1) { http10 = 1; }
if(method == METHOD_HEAD && http10 < 1) { http10 = 1; }
if(method == METHOD_OPTIONS && http10 < 2) { http10 = 2; }
if(method == METHOD_TRACE && http10 < 2) { http10 = 2; }
// Fill request method.
bzero(request, REQUEST_SIZE);
switch(method) {
default:
case METHOD_GET: strcpy(request, "GET"); break;
case METHOD_HEAD: strcpy(request, "HEAD"); break;
case METHOD_OPTIONS: strcpy(request, "OPTIONS"); break;
case METHOD_TRACE: strcpy(request, "TRACE"); break;
}
strcat(request, " ");
// Check the legality of the URL(HTTP).
if(strstr(URL, "://") == NULL) {
fprintf(stderr, "\n%s: is not a valid URL.\n", URL);
exit(2);
}
// Preventing buffer overflows.
if(URL_THRESHOLD < strlen(URL)) {
fprintf(stderr, "URL is too long.\n");
exit(2);
}
if(proxy_host == NULL && strncasecmp("http://", URL, 7) != 0) {
fprintf(stderr, "\nOnly HTTP protocol is directly supported, set --proxy for others.\n");
exit(2);
}
// Get the domain name address subscript based on the URL delimiter("://").
int i = (int)(strstr(URL, "://") - URL) + 3;
// Delimiter at the end of the URL requires '/'.
if(strchr(URL + i, '/') == NULL) {
fprintf(stderr, "\nInvalid URL syntax - hostname don't ends with '/'.\n");
exit(2);
}
if(proxy_host == NULL) { // No proxy server used.
// Determine if the URL has a port number.
bzero(host, MAX_HOSTNAME_LEN);
if(index(URL + i, ':') != NULL && index(URL + i, ':') < index(URL + i, '/')) {
// Copy host address.
strncpy(host, URL + i, strchr(URL + i, ':') - URL - i);
// Copy host port.
char tmp_port[10]; bzero(tmp_port, 10);
strncpy(tmp_port, index(URL + i, ':') + 1, strchr(URL + i, '/') - index(URL + i, ':') - 1);
proxy_port = (!atoi(tmp_port) ? 80 : atoi(tmp_port));
} else {
strncpy(host, URL + i, strcspn(URL + i, "/"));
}
strcat(request+strlen(request), URL + i + strcspn(URL + i, "/"));
} else { // Use a proxy server.
strcat(request, URL);
}
if(http10 == 1) {
strcat(request, "HTTP/1.0\r\n");
} else if(http10 == 2) {
strcat(request, "HTTP/1.1\r\n");
}
if(0 < http10) {
strcat(request, "User-Agent: WebBench "PROGRAM_VERSION"\r\n");
if(proxy_host == NULL) {
strcat(request, "Host: ");
strcat(request, host);
strcat(request, "\r\n");
}
}
if(force_reload && proxy_host != NULL) {
strcat(request, "Pragma: no-cache\r\n");
}
if(1 < http10) {
strcat(request, "Connection: close\r\n");
}
if(0 < http10) {
strcat(request, "\r\n");
}
}
static int bench(void)
{
// The parent process only tests connectivity and does not stay connected.
int sock_fd = Socket(proxy_host == NULL ? host : proxy_host, proxy_port);
if(sock_fd < 0) {
fprintf(stderr, "\nConnect to server failed. Aborting benchmark.\n");
return 1;
}
close(sock_fd);
// create pipe
if(pipe(my_pipe)) {
perror("pipe failed.");
return 3;
}
// fork childes(Concurrency)
pid_t pid = 0;
int i = 0;
for(;i < clients; ++i) {
if((pid = fork()) <= 0) {
sleep(1);
break;
}
}
if(pid < 0) {
fprintf(stderr, "problems forking worker no. %d\n", sock_fd);
perror("fork failed.");
return 3;
}
// Distinguish between parent and child processes.
if(pid == 0) {
// Determine whether to use a proxy server and start testing.
bench_core(proxy_host == NULL ? host : proxy_host, proxy_port, request);
// Child process opens the pipe and writes data.
FILE *file_write = fdopen(my_pipe[1], "w");
if(file_write == NULL) {
perror("open pipe for writing failed.");
return 3;
}
fprintf(file_write, "%d %d %d\n", speed, failed, bytes);
fclose(file_write);
return 0;
} else {
// Parent process gets test data of child process.
FILE *file_read = fdopen(my_pipe[0], "r");
if(file_read == NULL) {
perror("open pipe for reading failed.");
return 3;
}
// No buffering, real-time write.
setvbuf(file_read, NULL, _IONBF, 0);
speed = 0;
failed = 0;
bytes = 0;
int child_speed, child_failed, child_bytes;
while(1) {
if(fscanf(file_read, "%d %d %d", &child_speed, &child_failed, &child_bytes) < 3) {
fprintf(stderr, "Some of our children died.\n");
break;
}
speed += child_speed;
failed += child_failed;
bytes += child_bytes;
// Read as many concurrency as possible.
if(--clients == 0) {
break;
}
}
fclose(file_read);
// Output after the parent process counts the results.
printf("\nSpeed = %d(pages/min), %d (bytes/sec).\nRequests: %d succeeded, %d failed.\n",
(int)((speed+failed)/(benchTime/60.0)), bytes/benchTime, speed, failed);
}
return 0;
}
static void bench_core(const char *host_t, const int port, char *request_t)
{
// setup alarm signal handler.
struct sigaction signal;
signal.sa_handler = (_sig_func_ptr) alarm_handler;
signal.sa_flags = 0;
// Set the signal processing method.
if(sigaction(SIGALRM, &signal, NULL)) {
exit(3);
}
// Signal back to the process if the time limit is reached.
alarm(benchTime);
const unsigned int write_len = strlen(request_t);
NEXT_TRY: while(1) {
// After reaching the time limit and calling alarm_handler.
if(timer_expired) {
failed = (failed ? failed-1 : 0);
return;
}
// establish connection.
int conn_fd = Socket(host_t, port);
if(conn_fd < 0) {
++failed;
continue;
}
// Writing data to the server failed.
if(write_len != write(conn_fd, request_t, write_len)) {
++failed;
close(conn_fd);
continue;
}
// HTTP/0.9 terminates write operation.
if(http10 == 0 && shutdown(conn_fd, 1)) {
++failed;
close(conn_fd);
continue;
}
// Need to read the data returned by the server.
if(force == 0) {
while(1) {
if(timer_expired) { break; }
char buf[URL_THRESHOLD];
int read_len = read(conn_fd, buf, URL_THRESHOLD);
if(read_len < 0) {
++failed;
close(conn_fd);
goto NEXT_TRY;
} else if(read_len == 0) {
break;
} else {
bytes += read_len;
}
}
}
// If closing the connection fails.
if(close(conn_fd)) {
++failed;
continue;
}
// Connection closed successfully.
++speed;
}
}