-
Notifications
You must be signed in to change notification settings - Fork 1
/
forkbench.c
118 lines (112 loc) · 2.54 KB
/
forkbench.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
#include "socket.h"
#include "byte.h"
#include "dns.h"
#include "buffer.h"
#include "scan.h"
#include "ip6.h"
#include "str.h"
#include "fmt.h"
#include "ip4.h"
#include <sys/types.h>
#include <sys/mman.h>
#include <unistd.h>
#include <signal.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <stdlib.h>
#include <sys/wait.h>
int main(int argc,char* argv[]) {
unsigned long count=1000;
struct timeval a,b;
unsigned long d;
for (;;) {
int i;
int c=getopt(argc,argv,"hc:");
if (c==-1) break;
switch (c) {
case 'c':
i=scan_ulong(optarg,&count);
if (i==0 || optarg[i]) {
buffer_puts(buffer_2,"forkbench: warning: could not parse count: ");
buffer_puts(buffer_2,optarg+i+1);
buffer_putsflush(buffer_2,"\n");
}
break;
case 'h':
buffer_putsflush(buffer_2,
"usage: forkbench [-h] [-c count]\n"
"\n"
"\t-h\tprint this help\n"
"\t-c n\tfork off n children (default: 1000)\n");
return 0;
}
}
#ifdef RLIMIT_NPROC
{
struct rlimit rl;
rl.rlim_cur=count+2; rl.rlim_max=count+2;
setrlimit(RLIMIT_NPROC,&rl);
}
#endif
{
unsigned long i,j;
int pfd[2];
char buf[100];
struct entry {
pid_t p;
unsigned long t;
} *x=malloc(count*sizeof(struct entry));
if (!x) {
buffer_puts(buffer_2,"out of memory!\n");
exit(1);
}
if (pipe(pfd)==-1) {
buffer_puts(buffer_2,"pipe failed: ");
buffer_puterror(buffer_2);
buffer_putnlflush(buffer_2);
}
for (i=0; i<count; ++i) {
gettimeofday(&a,0);
switch (x[i].p=fork()) {
case -1:
buffer_flush(buffer_1);
buffer_puts(buffer_2,"fork failed: ");
buffer_puterror(buffer_2);
buffer_putnlflush(buffer_2);
for (j=0; j<i; ++j) kill(x[j].p,SIGTERM);
_exit(1);
case 0: /* child */
{
write(pfd[1],".",1);
close(pfd[1]);
sleep(5*60);
_exit(0);
}
}
if (read(pfd[0],buf,1)!=1) {
buffer_flush(buffer_1);
buffer_putsflush(buffer_2,"child did not write into pipe?!\n");
for (j=0; j<i; ++j) kill(x[j].p,SIGTERM);
_exit(1);
}
gettimeofday(&b,0);
d=(b.tv_sec-a.tv_sec)*1000000;
d=d+b.tv_usec-a.tv_usec;
x[i].t=d;
}
for (j=0; j<i; ++j) {
gettimeofday(&a,0);
kill(x[j].p,SIGTERM);
waitpid(x[j].p,0,0);
gettimeofday(&b,0);
d=(b.tv_sec-a.tv_sec)*1000000;
d=d+b.tv_usec-a.tv_usec;
buffer_putulong(buffer_1,x[j].t);
buffer_putspace(buffer_1);
buffer_putulong(buffer_1,d);
buffer_puts(buffer_1,"\n");
}
buffer_flush(buffer_1);
}
return 0;
}