xref: /freebsd/sbin/nvmecontrol/nsid.c (revision 32e86a82f54826f14ea381affa6674db3aa3b5ae)
1a7bf63beSAlexander Motin /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3a7bf63beSAlexander Motin  *
4a7bf63beSAlexander Motin  * Copyright (C) 2019 Alexander Motin <mav@FreeBSD.org>
5a7bf63beSAlexander Motin  *
6a7bf63beSAlexander Motin  * Redistribution and use in source and binary forms, with or without
7a7bf63beSAlexander Motin  * modification, are permitted provided that the following conditions
8a7bf63beSAlexander Motin  * are met:
9a7bf63beSAlexander Motin  * 1. Redistributions of source code must retain the above copyright
10a7bf63beSAlexander Motin  *    notice, this list of conditions and the following disclaimer.
11a7bf63beSAlexander Motin  * 2. Redistributions in binary form must reproduce the above copyright
12a7bf63beSAlexander Motin  *    notice, this list of conditions and the following disclaimer in the
13a7bf63beSAlexander Motin  *    documentation and/or other materials provided with the distribution.
14a7bf63beSAlexander Motin  *
15a7bf63beSAlexander Motin  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16a7bf63beSAlexander Motin  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17a7bf63beSAlexander Motin  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18a7bf63beSAlexander Motin  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19a7bf63beSAlexander Motin  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20a7bf63beSAlexander Motin  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21a7bf63beSAlexander Motin  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22a7bf63beSAlexander Motin  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23a7bf63beSAlexander Motin  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24a7bf63beSAlexander Motin  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25a7bf63beSAlexander Motin  * SUCH DAMAGE.
26a7bf63beSAlexander Motin  */
27a7bf63beSAlexander Motin 
28a7bf63beSAlexander Motin #include <sys/param.h>
29a7bf63beSAlexander Motin 
30a7bf63beSAlexander Motin #include <stdio.h>
31a7bf63beSAlexander Motin #include <stdlib.h>
32a7bf63beSAlexander Motin #include <unistd.h>
33a7bf63beSAlexander Motin 
34a7bf63beSAlexander Motin #include "nvmecontrol.h"
35a7bf63beSAlexander Motin #include "comnd.h"
36a7bf63beSAlexander Motin 
37a7bf63beSAlexander Motin /* Tables for command line parsing */
38a7bf63beSAlexander Motin 
3948ec75f0SAlexander Motin static cmd_fn_t gnsid;
40a7bf63beSAlexander Motin 
41a7bf63beSAlexander Motin static struct nsid_options {
42a7bf63beSAlexander Motin 	const char	*dev;
43a7bf63beSAlexander Motin } nsid_opt = {
44a7bf63beSAlexander Motin 	.dev = NULL,
45a7bf63beSAlexander Motin };
46a7bf63beSAlexander Motin 
47a7bf63beSAlexander Motin static const struct args nsid_args[] = {
48a7bf63beSAlexander Motin 	{ arg_string, &nsid_opt.dev, "namespace-id" },
49a7bf63beSAlexander Motin 	{ arg_none, NULL, NULL },
50a7bf63beSAlexander Motin };
51a7bf63beSAlexander Motin 
52a7bf63beSAlexander Motin static struct cmd nsid_cmd = {
53a7bf63beSAlexander Motin 	.name = "nsid",
5448ec75f0SAlexander Motin 	.fn = gnsid,
55a7bf63beSAlexander Motin 	.descr = "Get controller and NSID for namespace",
56a7bf63beSAlexander Motin 	.ctx_size = sizeof(nsid_opt),
57a7bf63beSAlexander Motin 	.opts = NULL,
58a7bf63beSAlexander Motin 	.args = nsid_args,
59a7bf63beSAlexander Motin };
60a7bf63beSAlexander Motin 
61a7bf63beSAlexander Motin CMD_COMMAND(nsid_cmd);
62a7bf63beSAlexander Motin 
63a7bf63beSAlexander Motin static void
gnsid(const struct cmd * f,int argc,char * argv[])6448ec75f0SAlexander Motin gnsid(const struct cmd *f, int argc, char *argv[])
65a7bf63beSAlexander Motin {
66a7bf63beSAlexander Motin 	char		*path;
67a7bf63beSAlexander Motin 	int		fd;
68a7bf63beSAlexander Motin 	uint32_t	nsid;
69a7bf63beSAlexander Motin 
706995fb5eSDavid Bright 	if (arg_parse(argc, argv, f))
716995fb5eSDavid Bright 		return;
72a7bf63beSAlexander Motin 
731f15d49eSAlexander Motin 	open_dev(nsid_opt.dev, &fd, 0, 1);
74a7bf63beSAlexander Motin 	get_nsid(fd, &path, &nsid);
75a7bf63beSAlexander Motin 	close(fd);
76a7bf63beSAlexander Motin 	printf("%s\t%u\n", path, nsid);
77a7bf63beSAlexander Motin 	free(path);
78a7bf63beSAlexander Motin }
79