nvml-sys 0.0.6

A low-level FFI wrapper around the Persistent Memory Development Kit, PMDK (formerly NVML) and its libraries, including libpmem, libpmemobj and others. Currently tracks master after version 1.3.1.
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
/*
 * Copyright 2016, FUJITSU TECHNOLOGY SOLUTIONS GMBH
 * Copyright 2016-2017, Intel Corporation
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *     * Redistributions of source code must retain the above copyright
 *       notice, this list of conditions and the following disclaimer.
 *
 *     * Redistributions in binary form must reproduce the above copyright
 *       notice, this list of conditions and the following disclaimer in
 *       the documentation and/or other materials provided with the
 *       distribution.
 *
 *     * Neither the name of the copyright holder nor the names of its
 *       contributors may be used to endorse or promote products derived
 *       from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

/*
 * ===========================================================================
 *
 *       Filename:  arttree_structures.c
 *
 *    Description:  Examine pmem structures; structures and unions taken from
 *                  the preprocessor output of a libpmemobj compatible program.
 *
 *         Author:  Andreas Bluemle, Dieter Kasper
 *                  Andreas.Bluemle.external@ts.fujitsu.com
 *                  dieter.kasper@ts.fujitsu.com
 *
 *   Organization:  FUJITSU TECHNOLOGY SOLUTIONS GMBH
 *
 * ===========================================================================
 */

#ifdef __FreeBSD__
#define _WITH_GETLINE
#endif
#include <stdio.h>
#include <fcntl.h>
#include <libgen.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <getopt.h>
#include <stdint.h>
#include <stdbool.h>
#include <assert.h>
#include "arttree_structures.h"

#include <stdarg.h>

#define APPNAME "examine_arttree"
#define SRCVERSION "0.1"

size_t art_node_sizes[art_node_types] = {
	sizeof(art_node4),
	sizeof(art_node16),
	sizeof(art_node48),
	sizeof(art_node256),
	sizeof(art_leaf),
	sizeof(art_node_u),
	sizeof(art_node),
	sizeof(art_tree_root),
	sizeof(var_string),
};

char *art_node_names[art_node_types] = {
	"art_node4",
	"art_node16",
	"art_node48",
	"art_node256",
	"art_leaf",
	"art_node_u",
	"art_node",
	"art_tree_root",
	"var_string"
};

/*
 * long_options -- command line arguments
 */
static const struct option long_options[] = {
	{"help",	no_argument,	NULL,	'h'},
	{NULL,		0,		NULL,	 0 },
};

/*
 * command -- struct for commands definition
 */
struct command {
	const char *name;
	const char *brief;
	int (*func)(char *, struct pmem_context *, int, char *[]);
	void (*help)(char *);
};

/*
 * number of arttree_structures commands
 */
#define COMMANDS_NUMBER (sizeof(commands) / sizeof(commands[0]))

static void print_help(char *appname);
static void print_usage(char *appname);
static void print_version(char *appname);
static int quit_func(char *appname, struct pmem_context *ctx,
		int argc, char *argv[]);
static void quit_help(char *appname);
static int set_root_func(char *appname, struct pmem_context *ctx,
		int argc, char *argv[]);
static void set_root_help(char *appname);
static int help_func(char *appname, struct pmem_context *ctx,
		int argc, char *argv[]);
static void help_help(char *appname);
static struct command *get_command(char *cmd_str);
static int ctx_init(struct pmem_context *ctx, char *filename);

static int arttree_structures_func(char *appname, struct pmem_context *ctx,
	int ac, char *av[]);
static void arttree_structures_help(char *appname);

static int arttree_info_func(char *appname, struct pmem_context *ctx,
	int ac, char *av[]);
static void arttree_info_help(char *appname);

extern int arttree_examine_func();
extern void arttree_examine_help();

extern int arttree_search_func();
extern void arttree_search_help();

void outv_err(const char *fmt, ...);
void outv_err_vargs(const char *fmt, va_list ap);

static struct command commands[] = {
	{
		.name = "art_structures",
		.brief = "print information about ART structures",
		.func = arttree_structures_func,
		.help = arttree_structures_help,
	},
	{
		.name = "info",
		.brief = "print information and statistics"
		    "about a art tree pool",
		.func = arttree_info_func,
		.help = arttree_info_help,
	},
	{
		.name = "examine",
		.brief = "examine data structures from an ART tree",
		.func = arttree_examine_func,
		.help = arttree_examine_help,
	},
	{
		.name = "search",
		.brief = "search for a key in the ART tree",
		.func = arttree_search_func,
		.help = arttree_search_help,
	},
	{
		.name = "set_root",
		.brief = "define offset of root of art tree",
		.func = set_root_func,
		.help = set_root_help,
	},
	{
		.name = "help",
		.brief = "print help text about a command",
		.func = help_func,
		.help = help_help,
	},
	{
		.name = "quit",
		.brief = "quit arttree structure examiner",
		.func = quit_func,
		.help = quit_help,
	},
};

static struct pmem_context ctx;

/*
 * outv_err -- print error message
 */
void
outv_err(const char *fmt, ...)
{
	va_list ap;
	va_start(ap, fmt);
	outv_err_vargs(fmt, ap);
	va_end(ap);
}

/*
 * outv_err_vargs -- print error message
 */
void
outv_err_vargs(const char *fmt, va_list ap)
{
	fprintf(stderr, "error: ");
	vfprintf(stderr, fmt, ap);
	if (!strchr(fmt, '\n'))
		fprintf(stderr, "\n");
}

/*
 * print_usage -- prints usage message
 */
static void
print_usage(char *appname)
{
	printf("usage: %s [--help] <pmem file> <command> [<args>]\n", appname);
}

/*
 * print_version -- prints version message
 */
static void
print_version(char *appname)
{
	printf("%s %s\n", appname, SRCVERSION);
}

/*
 * print_help -- prints help message
 */
static void
print_help(char *appname)
{
	print_usage(appname);
	print_version(appname);
	printf("\n");
	printf("Options:\n");
	printf("  -h, --help           display this help and exit\n");
	printf("\n");
	printf("The available commands are:\n");
	int i;
	for (i = 0; i < COMMANDS_NUMBER; i++)
		printf("%s\t- %s\n", commands[i].name, commands[i].brief);
	printf("\n");
}

/*
 * set_root_help -- prints help message for set root command
 */
static void
set_root_help(char *appname)
{
	printf("Usage: set_root <offset>\n");
	printf("    define the offset of the art tree root\n");
}

/*
 * set_root_func -- set_root define the offset of the art tree root
 */
static int
set_root_func(char *appname, struct pmem_context *ctx, int argc, char *argv[])
{
	int retval = 0;
	uint64_t root_offset;

	if (argc == 2) {
		root_offset = strtol(argv[1], NULL, 0);
		ctx->art_tree_root_offset = root_offset;
	} else {
		set_root_help(appname);
		retval = 1;
	}
	return retval;
}

/*
 * quit_help -- prints help message for quit command
 */
static void
quit_help(char *appname)
{
	printf("Usage: quit\n");
	printf("    terminate arttree structure examiner\n");
}

/*
 * quit_func -- quit arttree structure examiner
 */
static int
quit_func(char *appname, struct pmem_context *ctx, int argc, char *argv[])
{
	printf("\n");
	exit(0);
	return 0;
}

/*
 * help_help -- prints help message for help command
 */
static void
help_help(char *appname)
{
	printf("Usage: %s help <command>\n", appname);
}

/*
 * help_func -- prints help message for specified command
 */
static int
help_func(char *appname, struct pmem_context *ctx, int argc, char *argv[])
{
	if (argc > 1) {
		char *cmd_str = argv[1];
		struct command *cmdp = get_command(cmd_str);

		if (cmdp && cmdp->help) {
			cmdp->help(appname);
			return 0;
		} else {
			outv_err("No help text for '%s' command\n", cmd_str);
			return -1;
		}
	} else {
		print_help(appname);
		return -1;
	}
}

static const char *arttree_structures_help_str =
"Show information about known ART tree structures\n"
;

static void
arttree_structures_help(char *appname)
{
	printf("%s %s\n", appname, arttree_structures_help_str);
}

static int
arttree_structures_func(char *appname, struct pmem_context *ctx,
	int ac, char *av[])
{
	(void) appname;
	(void) ac;
	(void) av;

	printf(
	    "typedef struct pmemoid {\n"
	    " uint64_t pool_uuid_lo;\n"
	    " uint64_t off;\n"
	    "} PMEMoid;\n");
	printf("sizeof(PMEMoid) = %ld\n\n\n", sizeof(PMEMoid));

	printf(
	    "struct _art_node_u; typedef struct _art_node_u art_node_u;\n"
	    "struct _art_node_u { \n"
	    "    uint8_t art_node_type; \n"
	    "    uint8_t art_node_tag; \n"
	    "};\n");
	printf("sizeof(art_node_u) = %ld\n\n\n", sizeof(art_node_u));

	printf(
	    "struct _art_node; typedef struct _art_node art_node;\n"
	    "struct _art_node {\n"
	    "    uint8_t type;\n"
	    "    uint8_t num_children;\n"
	    "    uint32_t partial_len;\n"
	    "    unsigned char partial[10];\n"
	    "};\n");
	printf("sizeof(art_node) = %ld\n\n\n", sizeof(art_node));

	printf(
	    "typedef uint8_t _toid_art_node_toid_type_num[8];\n");
	printf("sizeof(_toid_art_node_toid_type_num[8]) = %ld\n\n\n",
	    sizeof(_toid_art_node_toid_type_num[8]));

	printf(
	    "union _toid_art_node_u_toid {\n"
	    "    PMEMoid oid;\n"
	    "    art_node_u *_type;\n"
	    "    _toid_art_node_u_toid_type_num *_type_num;\n"
	    "};\n");
	printf("sizeof(union _toid_art_node_u_toid) = %ld\n\n\n",
	    sizeof(union _toid_art_node_u_toid));

	printf(
	    "typedef uint8_t _toid_art_node_toid_type_num[8];\n");
	printf("sizeof(_toid_art_node_toid_type_num[8]) = %ld\n\n\n",
	    sizeof(_toid_art_node_toid_type_num[8]));

	printf(
	    "union _toid_art_node_toid {\n"
	    "    PMEMoid oid; \n"
	    "    art_node *_type; \n"
	    "    _toid_art_node_toid_type_num *_type_num;\n"
	    "};\n");
	printf("sizeof(union _toid_art_node_toid) = %ld\n\n\n",
	    sizeof(union _toid_art_node_toid));

	printf(
	    "struct _art_node4; typedef struct _art_node4 art_node4;\n"
	    "struct _art_node4 {\n"
	    "    art_node n;\n"
	    "    unsigned char keys[4];\n"
	    "    union _toid_art_node_u_toid children[4];\n"
	    "};\n");
	printf("sizeof(art_node4) = %ld\n\n\n", sizeof(art_node4));

	printf(
	    "struct _art_node16; typedef struct _art_node16 art_node16;\n"
	    "struct _art_node16 {\n"
	    "    art_node n;\n"
	    "    unsigned char keys[16];\n"
	    "    union _toid_art_node_u_toid children[16];\n"
	    "};\n");
	printf("sizeof(art_node16) = %ld\n\n\n", sizeof(art_node16));

	printf(
	    "struct _art_node48; typedef struct _art_node48 art_node48;\n"
	    "struct _art_node48 {\n"
	    "    art_node n;\n"
	    "    unsigned char keys[256];\n"
	    "    union _toid_art_node_u_toid children[48];\n"
	    "};\n");
	printf("sizeof(art_node48) = %ld\n\n\n", sizeof(art_node48));

	printf(
	    "struct _art_node256; typedef struct _art_node256 art_node256;\n"
	    "struct _art_node256 {\n"
	    "    art_ndoe n;\n"
	    "    union _toid_art_node_u_toid children[256];\n"
	    "};\n");
	printf("sizeof(art_node256) = %ld\n\n\n", sizeof(art_node256));

	printf(
	    "struct _art_leaf; typedef struct _art_leaf art_leaf;\n"
	    "struct _art_leaf {\n"
	    "    union _toid_var_string_toid value;\n"
	    "    union _toid_var_string_toid key;\n"
	    "};\n");
	printf("sizeof(art_leaf) = %ld\n\n\n", sizeof(art_leaf));

	return 0;
}

static const char *arttree_info_help_str =
"Show information about known ART tree structures\n"
;

static void
arttree_info_help(char *appname)
{
	printf("%s %s\n", appname, arttree_info_help_str);
}

static int
arttree_info_func(char *appname, struct pmem_context *ctx, int ac, char *av[])
{
	printf("%s: %s not yet implemented\n", appname, __FUNCTION__);

	return 0;
}

/*
 * get_command -- returns command for specified command name
 */
static struct command *
get_command(char *cmd_str)
{
	int i;

	if (cmd_str == NULL) {
		return NULL;
	}

	for (i = 0; i < COMMANDS_NUMBER; i++) {
		if (strcmp(cmd_str, commands[i].name) == 0)
			return &commands[i];
	}

	return NULL;
}

static int
ctx_init(struct pmem_context *ctx, char *filename)
{
	int errors = 0;

	if (filename == NULL)
		errors++;
	if (ctx == NULL)
		errors++;

	if (!errors) {
		ctx->filename = strdup(filename);
		assert(ctx->filename != NULL);
		ctx->fd = -1;
		ctx->art_tree_root_offset = 0;

		if (access(ctx->filename, F_OK) == 0) {
			ctx->fd = open(ctx->filename, O_RDONLY);
		} else {
			errors++;
		}

		/* get system pagesize */
		ctx->sys_pagesize = sysconf(_SC_PAGESIZE);
	}

	return errors;
}

int
main(int ac, char *av[])
{
	int opt;
	int option_index;
	int ret = 0;
	size_t len;
	ssize_t read;
	char *cmd_str;
	char *args[20];
	int nargs;
	char *line;
	struct command *cmdp = NULL;

	while ((opt = getopt_long(ac, av, "h",
			    long_options, &option_index)) != -1) {
		switch (opt) {
		case 'h':
			print_help(APPNAME);
			return 0;
		default:
			print_usage(APPNAME);
			return -1;
		}
	}

	if (optind >= ac) {
		fprintf(stderr, "ERROR: missing arguments\n");
		print_usage(APPNAME);
		return -1;
	}

	ctx_init(&ctx, av[optind]);

	if (optind + 1 < ac) {
		/* execute command as given on command line */
		cmd_str = av[optind + 1];
		cmdp = get_command(cmd_str);
		if (cmdp != NULL) {
			ret = cmdp->func(APPNAME, &ctx, ac - 2, av + 2);
		}
	} else {
		/* interactive mode: read commands and execute them */
		line = NULL;
		printf("\n> ");
		while ((read = getline(&line, &len, stdin)) != -1) {
			if (line[read - 1] == '\n') {
				line[read - 1] = '\0';
			}
			args[0] = strtok(line, " ");
			cmdp = get_command(args[0]);
			if (cmdp == NULL) {
				printf("[%s]: command not supported\n",
				    args[0] ? args[0] : "NULL");
				printf("\n> ");
				continue;
			}
			nargs = 1;
			while (1) {
				args[nargs] = strtok(NULL, " ");
				if (args[nargs] == NULL) {
					break;
				}
				nargs++;
			}
			ret = cmdp->func(APPNAME, &ctx, nargs, args);
			printf("\n> ");
		}
		if (line != NULL) {
			free(line);
		}
	}

	return ret;
}