source: rtems-libbsd/freebsd/sbin/nvmecontrol/comnd.h @ e6acc15

5
Last change on this file since e6acc15 was e6acc15, checked in by Sebastian Huber <sebastian.huber@…>, on 09/20/19 at 05:57:01

NVMECONTROL(8): Port to RTEMS

Update #3821.

  • Property mode set to 100644
File size: 4.6 KB
Line 
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2019 Netflix, Inc
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $FreeBSD$
28 */
29
30#ifndef COMND_H
31#define COMND_H
32
33#include <sys/queue.h>
34#include <sys/linker_set.h>
35
36/*
37 * Regularized parsing of simple arguments built on top of getopt_long.
38 */
39
40typedef enum arg_type {
41        arg_none = 0,
42        arg_uint8,
43        arg_uint16,
44        arg_uint32,
45        arg_uint64,
46        arg_size,
47        arg_string,
48        arg_path,
49} arg_type;
50
51// XXX need to change to offsetof for opts and args.
52// we then need to allocate ctx and pass that into the cmd
53// stuff. this will be a little tricky and we may need to expand
54// arg_type stuff.
55
56struct opts {
57        const char      *long_arg;
58        int             short_arg;
59        arg_type        at;
60        void            *ptr;                   //  XXXX change to offset of
61        const char      *descr;
62};
63
64// XXX TDB: subcommand vs actual argument. maybe with subcmd?
65// XXX TBD: do we need parsing callback functions?
66struct args {
67        arg_type        at;
68        void            *ptr;                   //  XXXX change to offset of
69        const char      *descr;
70};
71
72typedef void (cmd_load_cb_t)(void *, void *);
73struct cmd;
74typedef void (cmd_fn_t)(const struct cmd *nf, int argc, char *argv[]);
75
76struct cmd  {
77        SLIST_ENTRY(cmd)        link;
78        const char              *name;
79        cmd_fn_t                *fn;
80        size_t                  ctx_size;
81        const struct opts       *opts;
82        const struct args       *args;
83        const char              *descr;
84        SLIST_HEAD(,cmd)        subcmd;
85        struct cmd              *parent;
86};
87
88void cmd_register(struct cmd *, struct cmd *);
89#ifndef __rtems__
90#define CMD_COMMAND(c)                                                  \
91    static void cmd_register_##c(void) __attribute__((constructor));    \
92    static void cmd_register_##c(void) { cmd_register(NULL, &c); }
93#define CMD_SUBCOMMAND(c,sc)                                            \
94    static void cmd_register_##c_##sc(void) __attribute__((constructor)); \
95    static void cmd_register_##c_##sc(void) { cmd_register(&c, &sc); }
96#else /* __rtems__ */
97#define CMD_COMMAND(c)                                                  \
98    void cmd_register_##c(void) { cmd_register(NULL, &c); }
99#define CMD_SUBCOMMAND(c,sc)                                            \
100    void cmd_register_##c##_##sc(void) { cmd_register(&c, &sc); }
101void cmd_register_admin_pass_cmd(void);
102void cmd_register_devlist_cmd(void);
103void cmd_register_firmware_cmd(void);
104void cmd_register_format_cmd(void);
105void cmd_register_identify_cmd(void);
106void cmd_register_io_pass_cmd(void);
107void cmd_register_logpage_cmd(void);
108void cmd_register_ns_cmd(void);
109void cmd_register_ns_cmd_active_cmd(void);
110void cmd_register_ns_cmd_allocated_cmd(void);
111void cmd_register_ns_cmd_attach_cmd(void);
112void cmd_register_ns_cmd_attached_cmd(void);
113void cmd_register_ns_cmd_controllers_cmd(void);
114void cmd_register_ns_cmd_create_cmd(void);
115void cmd_register_ns_cmd_delete_cmd(void);
116void cmd_register_ns_cmd_detach_cmd(void);
117void cmd_register_ns_cmd_identify_cmd(void);
118void cmd_register_nsid_cmd(void);
119void cmd_register_perftest_cmd(void);
120void cmd_register_power_cmd(void);
121void cmd_register_reset_cmd(void);
122void cmd_register_resv_cmd(void);
123void cmd_register_resv_cmd_acquire_cmd(void);
124void cmd_register_resv_cmd_register_cmd(void);
125void cmd_register_resv_cmd_release_cmd(void);
126void cmd_register_resv_cmd_report_cmd(void);
127void cmd_register_sanitize_cmd(void);
128void cmd_register_wdc_cmd(void);
129void cmd_register_wdc_cmd_cap_diag_cmd(void);
130#endif /* __rtems__ */
131
132int arg_parse(int argc, char * const *argv, const struct cmd *f);
133void arg_help(int argc, char * const *argv, const struct cmd *f);
134void cmd_init(void);
135void cmd_load_dir(const char *dir, cmd_load_cb_t *cb, void *argp);
136int cmd_dispatch(int argc, char *argv[], const struct cmd *);
137
138#endif /* COMND_H */
Note: See TracBrowser for help on using the repository browser.