File: multiread.c

package info (click to toggle)
libkdumpfile 0.5.4-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,800 kB
  • sloc: ansic: 34,639; sh: 3,853; python: 1,490; makefile: 755
file content (271 lines) | stat: -rw-r--r-- 5,833 bytes parent folder | download | duplicates (3)
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
/* Multi-threaded data read.
   Copyright (C) 2016 Petr Tesarik <ptesarik@suse.com>

   This file is free software; you can redistribute it and/or modify
   it under the terms of either

     * the GNU Lesser General Public License as published by the Free
       Software Foundation; either version 3 of the License, or (at
       your option) any later version

   or

     * the GNU General Public License as published by the Free
       Software Foundation; either version 2 of the License, or (at
       your option) any later version

   or both in parallel, as here.

   libkdumpfile is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.

   You should have received copies of the GNU General Public License and
   the GNU Lesser General Public License along with this program.  If
   not, see <http://www.gnu.org/licenses/>.
*/

#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <string.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <pthread.h>
#include <libkdumpfile/kdumpfile.h>

#include "testutil.h"

#define DEFITER		1000
#define DEFTHREADS	1

static unsigned long base_pfn, npages;
static unsigned long niter = DEFITER;

static void *
run_reads(void *arg)
{
	kdump_ctx_t *ctx = arg;
	kdump_num_t page_shift;
	unsigned long pfn;
	char buf[1];
	size_t sz;
	unsigned i;
	kdump_status res;

	res = kdump_get_number_attr(ctx, KDUMP_ATTR_PAGE_SHIFT, &page_shift);
	if (res != KDUMP_OK)
		return (void*) kdump_get_err(ctx);

	sz = sizeof buf;
	for (i = 0; i < niter; ++i) {
		pfn = base_pfn + lrand48() % npages;
		res = kdump_read(ctx, KDUMP_MACHPHYSADDR, pfn << page_shift,
				 &buf, &sz);
		if (res != KDUMP_OK) {
			fprintf(stderr, "Read failed at 0x%llx\n",
				(unsigned long long) pfn << page_shift);
			return (void*) kdump_get_err(ctx);
		}
	}

	return NULL;
}

static int
run_threads(kdump_ctx_t *ctx, unsigned long nthreads, unsigned long cache_size)
{
	struct {
		pthread_t id;
		kdump_ctx_t *ctx;
	} tinfo[nthreads];
	pthread_attr_t attr;
	kdump_attr_t val;
	kdump_status res;
	unsigned i;
	int rc;

	if (cache_size) {
		val.type = KDUMP_NUMBER;
		val.val.number = cache_size;
		res = kdump_set_attr(ctx, "cache.size", &val);
		if (res != KDUMP_OK) {
			fprintf(stderr, "Cannot set cache size: %s\n",
				kdump_get_err(ctx));
			return TEST_ERR;
		}
	}

	res = pthread_attr_init(&attr);
	if (res) {
		fprintf(stderr, "pthread_attr_init: %s\n", strerror(res));
		return TEST_ERR;
	}

	for (i = 0; i < nthreads; ++i) {
		tinfo[i].ctx = kdump_clone(ctx, 0);
		if (!tinfo[i].ctx) {
			fprintf(stderr, "Cannot allocate clone: %s\n",
				strerror(res));
			return TEST_ERR;
		}

		res = pthread_create(&tinfo[i].id, &attr, run_reads,
				     tinfo[i].ctx);
		if (res) {
			fprintf(stderr, "pthread_create: %s\n", strerror(res));
			return TEST_ERR;
		}
	}

	rc = TEST_OK;
	for (i = 0; i < nthreads; ++i) {
		void *retval;
		res = pthread_join(tinfo[i].id, &retval);
		if (res) {
			fprintf(stderr, "pthread_join: %s\n", strerror(res));
			return TEST_ERR;
		}
		if (retval) {
			fprintf(stderr, "Thread %u failed: %s\n",
				i, (const char*) retval);
			rc = TEST_FAIL;
		}
		kdump_free(tinfo[i].ctx);
	}

	return rc;
}

static int
run_threads_fd(int fd, unsigned long nthreads, unsigned long cache_size)
{
	kdump_ctx_t *ctx;
	kdump_status res;
	int rc;

	ctx = kdump_new();
	if (!ctx) {
		perror("Cannot initialize dump context");
		return TEST_ERR;
	}

	res = kdump_open_fd(ctx, fd);
	if (res != KDUMP_OK) {
		fprintf(stderr, "Cannot open dump: %s\n", kdump_get_err(ctx));
		rc = TEST_ERR;
	} else
		rc = run_threads(ctx, nthreads, cache_size);

	kdump_free(ctx);
	return rc;
}

static void
usage(const char *name)
{
	fprintf(stderr,
		"Usage: %s [<options>] <dump> <base-pfn> <num-pages>\n"
		"\n"
		"Options:\n"
		"  -i iterations   Number of reads per thread (default: %u)\n"
		"  -n num-threads  Number of threads (default: %u)\n"
		"  -s cache-size   Cache size\n"
		"  -t timeout      Maximum execution time in seconds\n",
		name, DEFITER, DEFTHREADS);
}

int
main(int argc, char **argv)
{
	struct timespec ts;
	unsigned long nthreads, cache_size, timeout;
	char *p;
	int opt;
	int fd;
	int rc;

	nthreads = DEFTHREADS;
	cache_size = 0;
	timeout = 0;
	while ((opt = getopt(argc, argv, "hi:n:s:t:")) != -1) {
		switch (opt) {
		case 'i':
			niter = strtoul(optarg, &p, 0);
			if (*p) {
				fprintf(stderr, "Invalid number: %s\n", optarg);
				return TEST_ERR;
			}
			break;

		case 'n':
			nthreads = strtoul(optarg, &p, 0);
			if (*p) {
				fprintf(stderr, "Invalid number: %s\n", optarg);
				return TEST_ERR;
			}
			break;

		case 's':
			cache_size = strtoul(optarg, &p, 0);
			if (*p) {
				fprintf(stderr, "Invalid number: %s\n", optarg);
				return TEST_ERR;
			}
			break;

		case 't':
			timeout = strtoul(optarg, &p, 0);
			if (*p) {
				fprintf(stderr, "Invalid number: %s\n", optarg);
				return TEST_ERR;
			}
			break;


		case 'h':
		default:
			usage(argv[0]);
			return (opt == 'h') ? TEST_OK : TEST_ERR;
		}
	}

	if (argc - optind != 3) {
		usage(argv[0]);
		return TEST_ERR;
	}

	base_pfn = strtoul(argv[optind+1], &p, 0);
	if (*p) {
		fprintf(stderr, "Invalid number: %s\n", argv[optind+1]);
		return TEST_ERR;
	}
	npages = strtoul(argv[optind+2], &p, 0);
	if (*p) {
		fprintf(stderr, "Invalid number: %s\n", argv[optind+2]);
		return TEST_ERR;
	}

	fd = open(argv[optind], O_RDONLY);
	if (fd < 0) {
		perror("open dump");
		return TEST_ERR;
	}

	clock_gettime(CLOCK_REALTIME, &ts);
	srand48(ts.tv_nsec);

	if (timeout)
		alarm(timeout);

	rc = run_threads_fd(fd, nthreads, cache_size);

	if (close(fd) < 0) {
		perror("close dump");
		rc = TEST_ERR;
	}

	return rc;
}