Merge branch 'upstream' into tizen
[platform/upstream/cryptsetup.git] / src / integritysetup_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 INTEGRITYSETUP_ARGS_H
23 #define INTEGRITYSETUP_ARGS_H
24
25 #include "utils_arg_names.h"
26 #include "utils_arg_macros.h"
27
28 #define FORMAT_ACTION   "format"
29 #define OPEN_ACTION     "open"
30 #define CLOSE_ACTION    "close"
31 #define STATUS_ACTION   "status"
32 #define DUMP_ACTION     "dump"
33 #define RESIZE_ACTION   "resize"
34
35 #define OPT_ALLOW_DISCARDS_ACTIONS              { OPEN_ACTION }
36 #define OPT_DEFERRED_ACTIONS                    { CLOSE_ACTION }
37 #define OPT_INTEGRITY_RECALCULATE_ACTIONS       { OPEN_ACTION }
38 #define OPT_JOURNAL_SIZE_ACTIONS                { FORMAT_ACTION }
39 #define OPT_NO_WIPE_ACTIONS                     { FORMAT_ACTION }
40 #define OPT_INTERLEAVE_SECTORS_ACTIONS          { FORMAT_ACTION }
41 #define OPT_PROGRESS_JSON_ACTIONS               { FORMAT_ACTION, RESIZE_ACTION }
42 #define OPT_SECTOR_SIZE_ACTIONS                 { FORMAT_ACTION }
43 #define OPT_TAG_SIZE_ACTIONS                    { FORMAT_ACTION }
44 #define OPT_DEVICE_SIZE_ACTIONS                 { RESIZE_ACTION }
45 #define OPT_SIZE_ACTIONS                        { RESIZE_ACTION }
46 #define OPT_WIPE_ACTIONS                        { RESIZE_ACTION }
47
48 enum {
49 OPT_UNUSED_ID = 0,
50 #define ARG(A, B, C, D, E, F, G, H) A ## _ID,
51 #include "integritysetup_arg_list.h"
52 #undef ARG
53 };
54
55 static struct tools_arg tool_core_args[] = { { NULL, false, CRYPT_ARG_BOOL }, // UNUSED
56 #define ARG(A, B, C, D, E, F, G, H) { A, false, F, G, H },
57 #include "integritysetup_arg_list.h"
58 #undef ARG
59 };
60
61 #endif