summaryrefslogtreecommitdiffstats
path: root/testutil/section-value.c
blob: bb86b8d7fbc76576172c2cdc0b8ead15af964b30 (plain) (blame)
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
/* See LICENSE file for copyright and license details. */
#include "../libsyscalls.h"

#include <errno.h>
#include <stdio.h>
#include <stdlib.h>

#if defined(__clang__)
# pragma clang diagnostic ignored "-Wunsafe-buffer-usage" /* clang is just being silly */
#endif


int
main(int argc, char **argv)
{
	enum libsyscalls_datatype_section section;
	unsigned long long int value;
	size_t bits;
	char *end;
	enum libsyscalls_error err;

	if (argc != 4) {
	usage:
		fprintf(stderr, "usage error\n");
		return 1;
	}

	section = (enum libsyscalls_datatype_section)atoi(argv[1]);
	errno = 0;
	value = strtoull(argv[2], &end, 16);
	if (errno || *end)
		goto usage;
	bits = (size_t)atol(argv[3]);

	err = libsyscalls_section_value(value, bits, section, &value);
	if (err == LIBSYSCALLS_E_INVAL) {
		printf("inval\n");
		goto out;
	} else if (err) {
		fprintf(stderr, "section-value %s %s %s: ", argv[1], argv[2], argv[3]);
		libsyscalls_perror(NULL, err);
		return 1;
	}

	printf("%llX\n", value);

out:
	if (fflush(stdout) || fclose(stdout)) {
		perror(NULL);
		return 1;
	}
	return 0;
}