1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/*
Authors:
Pavel Březina <pbrezina@redhat.com>
Copyright (C) 2015 Red Hat
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _SSS_TOOLS_H_
#define _SSS_TOOLS_H_
#include <talloc.h>
#include <popt.h>
#include "confdb/confdb.h"
struct sss_tool_ctx {
struct confdb_ctx *confdb;
bool print_help;
char *default_domain;
struct sss_domain_info *domains;
};
struct sss_cmdline {
const char *exec; /* argv[0] */
const char *command; /* command name */
int argc; /* rest of arguments */
const char **argv;
};
typedef errno_t
(*sss_route_fn)(struct sss_cmdline *cmdline,
struct sss_tool_ctx *tool_ctx,
void *pvt);
#define SSS_TOOL_COMMAND_FLAGS(cmd, msg, err, fn, flags) \
{cmd, _(msg), err, fn, flags}
#define SSS_TOOL_COMMAND(cmd, msg, err, fn) \
{cmd, _(msg), err, fn, 0}
#define SSS_TOOL_COMMAND_NOMSG(cmd, err, fn) {cmd, NULL, err, fn, 0}
#define SSS_TOOL_DELIMITER(message) {"", _(message), 0, NULL, 0}
#define SSS_TOOL_LAST {NULL, NULL, 0, NULL, 0}
#define SSS_TOOL_FLAG_SKIP_CMD_INIT 0x01
#define SSS_TOOL_FLAG_SKIP_ROOT_CHECK 0x02
struct sss_route_cmd {
const char *command;
const char *description;
errno_t handles_init_err;
sss_route_fn fn;
int flags;
};
typedef errno_t (*sss_popt_fn)(poptContext pc, char option, void *pvt);
enum sss_tool_opt {
SSS_TOOL_OPT_REQUIRED,
SSS_TOOL_OPT_OPTIONAL
};
errno_t sss_tool_popt_ex(struct sss_cmdline *cmdline,
struct poptOption *options,
enum sss_tool_opt require_option,
sss_popt_fn popt_fn,
void *popt_fn_pvt,
const char *fopt_name,
const char *fopt_help,
enum sss_tool_opt fopt_require,
const char **_fopt,
bool *_opt_set);
errno_t sss_tool_popt(struct sss_cmdline *cmdline,
struct poptOption *options,
enum sss_tool_opt require_option,
sss_popt_fn popt_fn,
void *popt_fn_pvt);
int sss_tool_main(int argc, const char **argv,
struct sss_route_cmd *commands,
void *pvt);
errno_t sss_tool_parse_name(TALLOC_CTX *mem_ctx,
struct sss_tool_ctx *tool_ctx,
const char *input,
const char **_username,
struct sss_domain_info **_domain);
errno_t sss_tool_connect_to_confdb(TALLOC_CTX *ctx, struct confdb_ctx **cdb_ctx);
#endif /* SRC_TOOLS_COMMON_SSS_TOOLS_H_ */
|