Linux Audio

Check our new training course

Loading...
v4.17
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 *
  4 * sched-messaging.c
  5 *
  6 * messaging: Benchmark for scheduler and IPC mechanisms
  7 *
  8 * Based on hackbench by Rusty Russell <rusty@rustcorp.com.au>
  9 * Ported to perf by Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
 10 *
 11 */
 12
 13#include "../perf.h"
 14#include "../util/util.h"
 15#include <subcmd/parse-options.h>
 16#include "../builtin.h"
 17#include "bench.h"
 18
 19/* Test groups of 20 processes spraying to 20 receivers */
 20#include <pthread.h>
 21#include <stdio.h>
 22#include <stdlib.h>
 23#include <string.h>
 24#include <errno.h>
 25#include <unistd.h>
 26#include <sys/types.h>
 27#include <sys/socket.h>
 28#include <sys/wait.h>
 29#include <sys/time.h>
 30#include <poll.h>
 31#include <limits.h>
 32#include <err.h>
 33#include <linux/time64.h>
 34
 35#define DATASIZE 100
 36
 37static bool use_pipes = false;
 38static unsigned int nr_loops = 100;
 39static bool thread_mode = false;
 40static unsigned int num_groups = 10;
 41
 42struct sender_context {
 43	unsigned int num_fds;
 44	int ready_out;
 45	int wakefd;
 46	int out_fds[0];
 47};
 48
 49struct receiver_context {
 50	unsigned int num_packets;
 51	int in_fds[2];
 52	int ready_out;
 53	int wakefd;
 54};
 55
 56static void fdpair(int fds[2])
 57{
 58	if (use_pipes) {
 59		if (pipe(fds) == 0)
 60			return;
 61	} else {
 62		if (socketpair(AF_UNIX, SOCK_STREAM, 0, fds) == 0)
 63			return;
 64	}
 65
 66	err(EXIT_FAILURE, use_pipes ? "pipe()" : "socketpair()");
 67}
 68
 69/* Block until we're ready to go */
 70static void ready(int ready_out, int wakefd)
 71{
 72	char dummy;
 73	struct pollfd pollfd = { .fd = wakefd, .events = POLLIN };
 74
 75	/* Tell them we're ready. */
 76	if (write(ready_out, &dummy, 1) != 1)
 77		err(EXIT_FAILURE, "CLIENT: ready write");
 78
 79	/* Wait for "GO" signal */
 80	if (poll(&pollfd, 1, -1) != 1)
 81		err(EXIT_FAILURE, "poll");
 82}
 83
 84/* Sender sprays nr_loops messages down each file descriptor */
 85static void *sender(struct sender_context *ctx)
 86{
 87	char data[DATASIZE];
 88	unsigned int i, j;
 89
 90	ready(ctx->ready_out, ctx->wakefd);
 
 91
 92	/* Now pump to every receiver. */
 93	for (i = 0; i < nr_loops; i++) {
 94		for (j = 0; j < ctx->num_fds; j++) {
 95			int ret, done = 0;
 96
 97again:
 98			ret = write(ctx->out_fds[j], data + done,
 99				    sizeof(data)-done);
100			if (ret < 0)
101				err(EXIT_FAILURE, "SENDER: write");
102			done += ret;
103			if (done < DATASIZE)
104				goto again;
105		}
106	}
107
108	return NULL;
109}
110
111
112/* One receiver per fd */
113static void *receiver(struct receiver_context* ctx)
114{
115	unsigned int i;
116
117	if (!thread_mode)
118		close(ctx->in_fds[1]);
119
120	/* Wait for start... */
121	ready(ctx->ready_out, ctx->wakefd);
122
123	/* Receive them all */
124	for (i = 0; i < ctx->num_packets; i++) {
125		char data[DATASIZE];
126		int ret, done = 0;
127
128again:
129		ret = read(ctx->in_fds[0], data + done, DATASIZE - done);
130		if (ret < 0)
131			err(EXIT_FAILURE, "SERVER: read");
132		done += ret;
133		if (done < DATASIZE)
134			goto again;
135	}
136
137	return NULL;
138}
139
140static pthread_t create_worker(void *ctx, void *(*func)(void *))
141{
142	pthread_attr_t attr;
143	pthread_t childid;
144	int ret;
145
146	if (!thread_mode) {
147		/* process mode */
148		/* Fork the receiver. */
149		switch (fork()) {
150		case -1:
151			err(EXIT_FAILURE, "fork()");
152			break;
153		case 0:
154			(*func) (ctx);
155			exit(0);
156			break;
157		default:
158			break;
159		}
160
161		return (pthread_t)0;
162	}
163
164	if (pthread_attr_init(&attr) != 0)
165		err(EXIT_FAILURE, "pthread_attr_init:");
166
167#ifndef __ia64__
168	if (pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN) != 0)
169		err(EXIT_FAILURE, "pthread_attr_setstacksize");
170#endif
171
172	ret = pthread_create(&childid, &attr, func, ctx);
173	if (ret != 0)
174		err(EXIT_FAILURE, "pthread_create failed");
175
176	return childid;
177}
178
179static void reap_worker(pthread_t id)
180{
181	int proc_status;
182	void *thread_status;
183
184	if (!thread_mode) {
185		/* process mode */
186		wait(&proc_status);
187		if (!WIFEXITED(proc_status))
188			exit(1);
189	} else {
190		pthread_join(id, &thread_status);
191	}
192}
193
194/* One group of senders and receivers */
195static unsigned int group(pthread_t *pth,
196		unsigned int num_fds,
197		int ready_out,
198		int wakefd)
199{
200	unsigned int i;
201	struct sender_context *snd_ctx = malloc(sizeof(struct sender_context)
202			+ num_fds * sizeof(int));
203
204	if (!snd_ctx)
205		err(EXIT_FAILURE, "malloc()");
206
207	for (i = 0; i < num_fds; i++) {
208		int fds[2];
209		struct receiver_context *ctx = malloc(sizeof(*ctx));
210
211		if (!ctx)
212			err(EXIT_FAILURE, "malloc()");
213
214
215		/* Create the pipe between client and server */
216		fdpair(fds);
217
218		ctx->num_packets = num_fds * nr_loops;
219		ctx->in_fds[0] = fds[0];
220		ctx->in_fds[1] = fds[1];
221		ctx->ready_out = ready_out;
222		ctx->wakefd = wakefd;
223
224		pth[i] = create_worker(ctx, (void *)receiver);
225
226		snd_ctx->out_fds[i] = fds[1];
227		if (!thread_mode)
228			close(fds[0]);
229	}
230
231	/* Now we have all the fds, fork the senders */
232	for (i = 0; i < num_fds; i++) {
233		snd_ctx->ready_out = ready_out;
234		snd_ctx->wakefd = wakefd;
235		snd_ctx->num_fds = num_fds;
236
237		pth[num_fds+i] = create_worker(snd_ctx, (void *)sender);
238	}
239
240	/* Close the fds we have left */
241	if (!thread_mode)
242		for (i = 0; i < num_fds; i++)
243			close(snd_ctx->out_fds[i]);
244
245	/* Return number of children to reap */
246	return num_fds * 2;
247}
248
249static const struct option options[] = {
250	OPT_BOOLEAN('p', "pipe", &use_pipes,
251		    "Use pipe() instead of socketpair()"),
252	OPT_BOOLEAN('t', "thread", &thread_mode,
253		    "Be multi thread instead of multi process"),
254	OPT_UINTEGER('g', "group", &num_groups, "Specify number of groups"),
255	OPT_UINTEGER('l', "nr_loops", &nr_loops, "Specify the number of loops to run (default: 100)"),
256	OPT_END()
257};
258
259static const char * const bench_sched_message_usage[] = {
260	"perf bench sched messaging <options>",
261	NULL
262};
263
264int bench_sched_messaging(int argc, const char **argv)
265{
266	unsigned int i, total_children;
267	struct timeval start, stop, diff;
268	unsigned int num_fds = 20;
269	int readyfds[2], wakefds[2];
270	char dummy;
271	pthread_t *pth_tab;
272
273	argc = parse_options(argc, argv, options,
274			     bench_sched_message_usage, 0);
275
276	pth_tab = malloc(num_fds * 2 * num_groups * sizeof(pthread_t));
277	if (!pth_tab)
278		err(EXIT_FAILURE, "main:malloc()");
279
280	fdpair(readyfds);
281	fdpair(wakefds);
282
283	total_children = 0;
284	for (i = 0; i < num_groups; i++)
285		total_children += group(pth_tab+total_children, num_fds,
286					readyfds[1], wakefds[0]);
287
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");
292
293	gettimeofday(&start, NULL);
294
295	/* Kick them off */
296	if (write(wakefds[1], &dummy, 1) != 1)
297		err(EXIT_FAILURE, "Writing to start them");
298
299	/* Reap them all */
300	for (i = 0; i < total_children; i++)
301		reap_worker(pth_tab[i]);
302
303	gettimeofday(&stop, NULL);
304
305	timersub(&stop, &start, &diff);
306
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",
315		       diff.tv_sec,
316		       (unsigned long) (diff.tv_usec / USEC_PER_MSEC));
317		break;
318	case BENCH_FORMAT_SIMPLE:
319		printf("%lu.%03lu\n", diff.tv_sec,
320		       (unsigned long) (diff.tv_usec / USEC_PER_MSEC));
321		break;
322	default:
323		/* reaching here is something disaster */
324		fprintf(stderr, "Unknown format:%d\n", bench_format);
325		exit(1);
326		break;
327	}
328
329	free(pth_tab);
330
331	return 0;
332}
v5.9
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 *
  4 * sched-messaging.c
  5 *
  6 * messaging: Benchmark for scheduler and IPC mechanisms
  7 *
  8 * Based on hackbench by Rusty Russell <rusty@rustcorp.com.au>
  9 * Ported to perf by Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
 10 *
 11 */
 12
 
 
 13#include <subcmd/parse-options.h>
 
 14#include "bench.h"
 15
 16/* Test groups of 20 processes spraying to 20 receivers */
 17#include <pthread.h>
 18#include <stdio.h>
 19#include <stdlib.h>
 20#include <string.h>
 21#include <errno.h>
 22#include <unistd.h>
 23#include <sys/types.h>
 24#include <sys/socket.h>
 25#include <sys/wait.h>
 26#include <sys/time.h>
 27#include <poll.h>
 28#include <limits.h>
 29#include <err.h>
 30#include <linux/time64.h>
 31
 32#define DATASIZE 100
 33
 34static bool use_pipes = false;
 35static unsigned int nr_loops = 100;
 36static bool thread_mode = false;
 37static unsigned int num_groups = 10;
 38
 39struct sender_context {
 40	unsigned int num_fds;
 41	int ready_out;
 42	int wakefd;
 43	int out_fds[];
 44};
 45
 46struct receiver_context {
 47	unsigned int num_packets;
 48	int in_fds[2];
 49	int ready_out;
 50	int wakefd;
 51};
 52
 53static void fdpair(int fds[2])
 54{
 55	if (use_pipes) {
 56		if (pipe(fds) == 0)
 57			return;
 58	} else {
 59		if (socketpair(AF_UNIX, SOCK_STREAM, 0, fds) == 0)
 60			return;
 61	}
 62
 63	err(EXIT_FAILURE, use_pipes ? "pipe()" : "socketpair()");
 64}
 65
 66/* Block until we're ready to go */
 67static void ready(int ready_out, int wakefd)
 68{
 
 69	struct pollfd pollfd = { .fd = wakefd, .events = POLLIN };
 70
 71	/* Tell them we're ready. */
 72	if (write(ready_out, "R", 1) != 1)
 73		err(EXIT_FAILURE, "CLIENT: ready write");
 74
 75	/* Wait for "GO" signal */
 76	if (poll(&pollfd, 1, -1) != 1)
 77		err(EXIT_FAILURE, "poll");
 78}
 79
 80/* Sender sprays nr_loops messages down each file descriptor */
 81static void *sender(struct sender_context *ctx)
 82{
 83	char data[DATASIZE];
 84	unsigned int i, j;
 85
 86	ready(ctx->ready_out, ctx->wakefd);
 87	memset(data, 'S', sizeof(data));
 88
 89	/* Now pump to every receiver. */
 90	for (i = 0; i < nr_loops; i++) {
 91		for (j = 0; j < ctx->num_fds; j++) {
 92			int ret, done = 0;
 93
 94again:
 95			ret = write(ctx->out_fds[j], data + done,
 96				    sizeof(data)-done);
 97			if (ret < 0)
 98				err(EXIT_FAILURE, "SENDER: write");
 99			done += ret;
100			if (done < DATASIZE)
101				goto again;
102		}
103	}
104
105	return NULL;
106}
107
108
109/* One receiver per fd */
110static void *receiver(struct receiver_context* ctx)
111{
112	unsigned int i;
113
114	if (!thread_mode)
115		close(ctx->in_fds[1]);
116
117	/* Wait for start... */
118	ready(ctx->ready_out, ctx->wakefd);
119
120	/* Receive them all */
121	for (i = 0; i < ctx->num_packets; i++) {
122		char data[DATASIZE];
123		int ret, done = 0;
124
125again:
126		ret = read(ctx->in_fds[0], data + done, DATASIZE - done);
127		if (ret < 0)
128			err(EXIT_FAILURE, "SERVER: read");
129		done += ret;
130		if (done < DATASIZE)
131			goto again;
132	}
133
134	return NULL;
135}
136
137static pthread_t create_worker(void *ctx, void *(*func)(void *))
138{
139	pthread_attr_t attr;
140	pthread_t childid;
141	int ret;
142
143	if (!thread_mode) {
144		/* process mode */
145		/* Fork the receiver. */
146		switch (fork()) {
147		case -1:
148			err(EXIT_FAILURE, "fork()");
149			break;
150		case 0:
151			(*func) (ctx);
152			exit(0);
153			break;
154		default:
155			break;
156		}
157
158		return (pthread_t)0;
159	}
160
161	if (pthread_attr_init(&attr) != 0)
162		err(EXIT_FAILURE, "pthread_attr_init:");
163
164#ifndef __ia64__
165	if (pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN) != 0)
166		err(EXIT_FAILURE, "pthread_attr_setstacksize");
167#endif
168
169	ret = pthread_create(&childid, &attr, func, ctx);
170	if (ret != 0)
171		err(EXIT_FAILURE, "pthread_create failed");
172
173	return childid;
174}
175
176static void reap_worker(pthread_t id)
177{
178	int proc_status;
179	void *thread_status;
180
181	if (!thread_mode) {
182		/* process mode */
183		wait(&proc_status);
184		if (!WIFEXITED(proc_status))
185			exit(1);
186	} else {
187		pthread_join(id, &thread_status);
188	}
189}
190
191/* One group of senders and receivers */
192static unsigned int group(pthread_t *pth,
193		unsigned int num_fds,
194		int ready_out,
195		int wakefd)
196{
197	unsigned int i;
198	struct sender_context *snd_ctx = malloc(sizeof(struct sender_context)
199			+ num_fds * sizeof(int));
200
201	if (!snd_ctx)
202		err(EXIT_FAILURE, "malloc()");
203
204	for (i = 0; i < num_fds; i++) {
205		int fds[2];
206		struct receiver_context *ctx = malloc(sizeof(*ctx));
207
208		if (!ctx)
209			err(EXIT_FAILURE, "malloc()");
210
211
212		/* Create the pipe between client and server */
213		fdpair(fds);
214
215		ctx->num_packets = num_fds * nr_loops;
216		ctx->in_fds[0] = fds[0];
217		ctx->in_fds[1] = fds[1];
218		ctx->ready_out = ready_out;
219		ctx->wakefd = wakefd;
220
221		pth[i] = create_worker(ctx, (void *)receiver);
222
223		snd_ctx->out_fds[i] = fds[1];
224		if (!thread_mode)
225			close(fds[0]);
226	}
227
228	/* Now we have all the fds, fork the senders */
229	for (i = 0; i < num_fds; i++) {
230		snd_ctx->ready_out = ready_out;
231		snd_ctx->wakefd = wakefd;
232		snd_ctx->num_fds = num_fds;
233
234		pth[num_fds+i] = create_worker(snd_ctx, (void *)sender);
235	}
236
237	/* Close the fds we have left */
238	if (!thread_mode)
239		for (i = 0; i < num_fds; i++)
240			close(snd_ctx->out_fds[i]);
241
242	/* Return number of children to reap */
243	return num_fds * 2;
244}
245
246static const struct option options[] = {
247	OPT_BOOLEAN('p', "pipe", &use_pipes,
248		    "Use pipe() instead of socketpair()"),
249	OPT_BOOLEAN('t', "thread", &thread_mode,
250		    "Be multi thread instead of multi process"),
251	OPT_UINTEGER('g', "group", &num_groups, "Specify number of groups"),
252	OPT_UINTEGER('l', "nr_loops", &nr_loops, "Specify the number of loops to run (default: 100)"),
253	OPT_END()
254};
255
256static const char * const bench_sched_message_usage[] = {
257	"perf bench sched messaging <options>",
258	NULL
259};
260
261int bench_sched_messaging(int argc, const char **argv)
262{
263	unsigned int i, total_children;
264	struct timeval start, stop, diff;
265	unsigned int num_fds = 20;
266	int readyfds[2], wakefds[2];
267	char dummy;
268	pthread_t *pth_tab;
269
270	argc = parse_options(argc, argv, options,
271			     bench_sched_message_usage, 0);
272
273	pth_tab = malloc(num_fds * 2 * num_groups * sizeof(pthread_t));
274	if (!pth_tab)
275		err(EXIT_FAILURE, "main:malloc()");
276
277	fdpair(readyfds);
278	fdpair(wakefds);
279
280	total_children = 0;
281	for (i = 0; i < num_groups; i++)
282		total_children += group(pth_tab+total_children, num_fds,
283					readyfds[1], wakefds[0]);
284
285	/* Wait for everyone to be ready */
286	for (i = 0; i < total_children; i++)
287		if (read(readyfds[0], &dummy, 1) != 1)
288			err(EXIT_FAILURE, "Reading for readyfds");
289
290	gettimeofday(&start, NULL);
291
292	/* Kick them off */
293	if (write(wakefds[1], &dummy, 1) != 1)
294		err(EXIT_FAILURE, "Writing to start them");
295
296	/* Reap them all */
297	for (i = 0; i < total_children; i++)
298		reap_worker(pth_tab[i]);
299
300	gettimeofday(&stop, NULL);
301
302	timersub(&stop, &start, &diff);
303
304	switch (bench_format) {
305	case BENCH_FORMAT_DEFAULT:
306		printf("# %d sender and receiver %s per group\n",
307		       num_fds, thread_mode ? "threads" : "processes");
308		printf("# %d groups == %d %s run\n\n",
309		       num_groups, num_groups * 2 * num_fds,
310		       thread_mode ? "threads" : "processes");
311		printf(" %14s: %lu.%03lu [sec]\n", "Total time",
312		       diff.tv_sec,
313		       (unsigned long) (diff.tv_usec / USEC_PER_MSEC));
314		break;
315	case BENCH_FORMAT_SIMPLE:
316		printf("%lu.%03lu\n", diff.tv_sec,
317		       (unsigned long) (diff.tv_usec / USEC_PER_MSEC));
318		break;
319	default:
320		/* reaching here is something disaster */
321		fprintf(stderr, "Unknown format:%d\n", bench_format);
322		exit(1);
323		break;
324	}
325
326	free(pth_tab);
327
328	return 0;
329}