Imported Upstream version 2.6.1
[platform/upstream/cryptsetup.git] / src / veritysetup_args.h
1 /*
2  * Command line arguments helpers
3  *
4  * Copyright (C) 2020-2023 Red Hat, Inc. All rights reserved.
5  * Copyright (C) 2020-2023 Ondrej Kozina
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef VERITYSETUP_ARGS_H
23 #define VERITYSETUP_ARGS_H
24
25 #include "utils_arg_names.h"
26 #include "utils_arg_macros.h"
27
28 #define CLOSE_ACTION    "close"
29 #define DUMP_ACTION     "dump"
30 #define FORMAT_ACTION   "format"
31 #define OPEN_ACTION     "open"
32 #define STATUS_ACTION   "status"
33 #define VERIFY_ACTION   "verify"
34
35 #define OPT_DEFERRED_ACTIONS                    { CLOSE_ACTION }
36 #define OPT_IGNORE_CORRUPTION_ACTIONS           { OPEN_ACTION }
37 #define OPT_IGNORE_ZERO_BLOCKS_ACTIONS          { OPEN_ACTION }
38 #define OPT_RESTART_ON_CORRUPTION_ACTIONS       { OPEN_ACTION }
39 #define OPT_PANIC_ON_CORRUPTION_ACTIONS         { OPEN_ACTION }
40 #define OPT_ROOT_HASH_FILE_ACTIONS              { FORMAT_ACTION, OPEN_ACTION, VERIFY_ACTION }
41 #define OPT_ROOT_HASH_SIGNATURE_ACTIONS         { OPEN_ACTION }
42 #define OPT_USE_TASKLETS_ACTIONS                { OPEN_ACTION }
43
44 enum {
45 OPT_UNUSED_ID = 0,
46 #define ARG(A, B, C, D, E, F, G, H) A ## _ID,
47 #include "veritysetup_arg_list.h"
48 #undef ARG
49 };
50
51 static struct tools_arg tool_core_args[] = { { NULL, false, CRYPT_ARG_BOOL }, // UNUSED
52 #define ARG(A, B, C, D, E, F, G, H) { A, false, F, G, H },
53 #include "veritysetup_arg_list.h"
54 #undef ARG
55 };
56
57 #endif