"Fossies" - the Fresh Open Source Software Archive 
Member "cryptsetup-2.4.3/src/veritysetup_args.h" (13 Jan 2022, 1898 Bytes) of package /linux/misc/cryptsetup-2.4.3.tar.xz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "veritysetup_args.h" see the
Fossies "Dox" file reference documentation.
1 /*
2 * Command line arguments helpers
3 *
4 * Copyright (C) 2020-2021 Red Hat, Inc. All rights reserved.
5 * Copyright (C) 2020-2021 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
43 enum {
44 OPT_UNUSED_ID = 0,
45 #define ARG(A, B, C, D, E, F, G, H) A ## _ID,
46 #include "veritysetup_arg_list.h"
47 #undef ARG
48 };
49
50 static struct tools_arg tool_core_args[] = { { NULL, false, CRYPT_ARG_BOOL }, // UNUSED
51 #define ARG(A, B, C, D, E, F, G, H) { A, false, F, G, H },
52 #include "veritysetup_arg_list.h"
53 #undef ARG
54 };
55
56 #endif