5 * messaging: Benchmark for scheduler and IPC mechanisms
7 * Based on hackbench by Rusty Russell <rusty@rustcorp.com.au>
8 * Ported to perf by Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
13 #include "../util/util.h"
14 #include <subcmd/parse-options.h>
15 #include "../builtin.h"
18 /* Test groups of 20 processes spraying to 20 receivers */
25 #include <sys/types.h>
26 #include <sys/socket.h>
32 #include <linux/time64.h>
36 static bool use_pipes
= false;
37 static unsigned int nr_loops
= 100;
38 static bool thread_mode
= false;
39 static unsigned int num_groups
= 10;
41 struct sender_context
{
48 struct receiver_context
{
49 unsigned int num_packets
;
55 static void fdpair(int fds
[2])
61 if (socketpair(AF_UNIX
, SOCK_STREAM
, 0, fds
) == 0)
65 err(EXIT_FAILURE
, use_pipes
? "pipe()" : "socketpair()");
68 /* Block until we're ready to go */
69 static void ready(int ready_out
, int wakefd
)
72 struct pollfd pollfd
= { .fd
= wakefd
, .events
= POLLIN
};
74 /* Tell them we're ready. */
75 if (write(ready_out
, &dummy
, 1) != 1)
76 err(EXIT_FAILURE
, "CLIENT: ready write");
78 /* Wait for "GO" signal */
79 if (poll(&pollfd
, 1, -1) != 1)
80 err(EXIT_FAILURE
, "poll");
83 /* Sender sprays nr_loops messages down each file descriptor */
84 static void *sender(struct sender_context
*ctx
)
89 ready(ctx
->ready_out
, ctx
->wakefd
);
91 /* Now pump to every receiver. */
92 for (i
= 0; i
< nr_loops
; i
++) {
93 for (j
= 0; j
< ctx
->num_fds
; j
++) {
97 ret
= write(ctx
->out_fds
[j
], data
+ done
,
100 err(EXIT_FAILURE
, "SENDER: write");
111 /* One receiver per fd */
112 static void *receiver(struct receiver_context
* ctx
)
117 close(ctx
->in_fds
[1]);
119 /* Wait for start... */
120 ready(ctx
->ready_out
, ctx
->wakefd
);
122 /* Receive them all */
123 for (i
= 0; i
< ctx
->num_packets
; i
++) {
128 ret
= read(ctx
->in_fds
[0], data
+ done
, DATASIZE
- done
);
130 err(EXIT_FAILURE
, "SERVER: read");
139 static pthread_t
create_worker(void *ctx
, void *(*func
)(void *))
147 /* Fork the receiver. */
150 err(EXIT_FAILURE
, "fork()");
163 if (pthread_attr_init(&attr
) != 0)
164 err(EXIT_FAILURE
, "pthread_attr_init:");
167 if (pthread_attr_setstacksize(&attr
, PTHREAD_STACK_MIN
) != 0)
168 err(EXIT_FAILURE
, "pthread_attr_setstacksize");
171 ret
= pthread_create(&childid
, &attr
, func
, ctx
);
173 err(EXIT_FAILURE
, "pthread_create failed");
178 static void reap_worker(pthread_t id
)
186 if (!WIFEXITED(proc_status
))
189 pthread_join(id
, &thread_status
);
193 /* One group of senders and receivers */
194 static unsigned int group(pthread_t
*pth
,
195 unsigned int num_fds
,
200 struct sender_context
*snd_ctx
= malloc(sizeof(struct sender_context
)
201 + num_fds
* sizeof(int));
204 err(EXIT_FAILURE
, "malloc()");
206 for (i
= 0; i
< num_fds
; i
++) {
208 struct receiver_context
*ctx
= malloc(sizeof(*ctx
));
211 err(EXIT_FAILURE
, "malloc()");
214 /* Create the pipe between client and server */
217 ctx
->num_packets
= num_fds
* nr_loops
;
218 ctx
->in_fds
[0] = fds
[0];
219 ctx
->in_fds
[1] = fds
[1];
220 ctx
->ready_out
= ready_out
;
221 ctx
->wakefd
= wakefd
;
223 pth
[i
] = create_worker(ctx
, (void *)receiver
);
225 snd_ctx
->out_fds
[i
] = fds
[1];
230 /* Now we have all the fds, fork the senders */
231 for (i
= 0; i
< num_fds
; i
++) {
232 snd_ctx
->ready_out
= ready_out
;
233 snd_ctx
->wakefd
= wakefd
;
234 snd_ctx
->num_fds
= num_fds
;
236 pth
[num_fds
+i
] = create_worker(snd_ctx
, (void *)sender
);
239 /* Close the fds we have left */
241 for (i
= 0; i
< num_fds
; i
++)
242 close(snd_ctx
->out_fds
[i
]);
244 /* Return number of children to reap */
248 static const struct option options
[] = {
249 OPT_BOOLEAN('p', "pipe", &use_pipes
,
250 "Use pipe() instead of socketpair()"),
251 OPT_BOOLEAN('t', "thread", &thread_mode
,
252 "Be multi thread instead of multi process"),
253 OPT_UINTEGER('g', "group", &num_groups
, "Specify number of groups"),
254 OPT_UINTEGER('l', "nr_loops", &nr_loops
, "Specify the number of loops to run (default: 100)"),
258 static const char * const bench_sched_message_usage
[] = {
259 "perf bench sched messaging <options>",
263 int bench_sched_messaging(int argc
, const char **argv
,
264 const char *prefix __maybe_unused
)
266 unsigned int i
, total_children
;
267 struct timeval start
, stop
, diff
;
268 unsigned int num_fds
= 20;
269 int readyfds
[2], wakefds
[2];
273 argc
= parse_options(argc
, argv
, options
,
274 bench_sched_message_usage
, 0);
276 pth_tab
= malloc(num_fds
* 2 * num_groups
* sizeof(pthread_t
));
278 err(EXIT_FAILURE
, "main:malloc()");
284 for (i
= 0; i
< num_groups
; i
++)
285 total_children
+= group(pth_tab
+total_children
, num_fds
,
286 readyfds
[1], wakefds
[0]);
288 /* Wait for everyone to be ready */
289 for (i
= 0; i
< total_children
; i
++)
290 if (read(readyfds
[0], &dummy
, 1) != 1)
291 err(EXIT_FAILURE
, "Reading for readyfds");
293 gettimeofday(&start
, NULL
);
296 if (write(wakefds
[1], &dummy
, 1) != 1)
297 err(EXIT_FAILURE
, "Writing to start them");
300 for (i
= 0; i
< total_children
; i
++)
301 reap_worker(pth_tab
[i
]);
303 gettimeofday(&stop
, NULL
);
305 timersub(&stop
, &start
, &diff
);
307 switch (bench_format
) {
308 case BENCH_FORMAT_DEFAULT
:
309 printf("# %d sender and receiver %s per group\n",
310 num_fds
, thread_mode
? "threads" : "processes");
311 printf("# %d groups == %d %s run\n\n",
312 num_groups
, num_groups
* 2 * num_fds
,
313 thread_mode
? "threads" : "processes");
314 printf(" %14s: %lu.%03lu [sec]\n", "Total time",
316 (unsigned long) (diff
.tv_usec
/ USEC_PER_MSEC
));
318 case BENCH_FORMAT_SIMPLE
:
319 printf("%lu.%03lu\n", diff
.tv_sec
,
320 (unsigned long) (diff
.tv_usec
/ USEC_PER_MSEC
));
323 /* reaching here is something disaster */
324 fprintf(stderr
, "Unknown format:%d\n", bench_format
);