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
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/*
* OpenVPN -- An application to securely tunnel IP networks
* over a single UDP port, with support for SSL/TLS-based
* session authentication and key exchange,
* packet encryption, packet authentication, and
* packet compression.
*
* Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>
* Copyright (C) 2014-2015 David Sommerseth <davids@redhat.com>
* Copyright (C) 2016 David Sommerseth <davids@openvpn.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* 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 (see the file COPYING included with this
* distribution); if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef CONSOLE_H
#define CONSOLE_H
#include "basic.h"
/**
* Configuration setup for declaring what kind of information to ask a user for
*/
struct _query_user {
char *prompt; /**< Prompt to present to the user */
size_t prompt_len; /**< Lenght of the prompt string */
char *response; /**< The user's response */
size_t response_len; /**< Lenght the of the user reposone */
bool echo; /**< True: The user should see what is being typed, otherwise mask it */
};
#define QUERY_USER_NUMSLOTS 10
extern struct _query_user query_user[]; /**< Global variable, declared in console.c */
/**
* Wipes all data put into all of the query_user structs
*
*/
void query_user_clear ();
/**
* Adds an item to ask the user for
*
* @param prompt Prompt to display to the user
* @param prompt_len Length of the prompt string
* @param resp String containing the user response
* @param resp_len Lenght of the response string
* @param echo Should the user input be echoed to the user? If False, input will be masked
*
*/
void query_user_add (char *prompt, size_t prompt_len,
char *resp, size_t resp_len,
bool echo);
/**
* Executes a configured setup, using the built-in method for querying the user.
* This method uses the console/TTY directly.
*
* @param setup Pointer to the setup defining what to ask the user
*
* @return True if executing all the defined steps completed successfully
*/
bool query_user_exec_builtin ();
#if defined(ENABLE_SYSTEMD)
/**
* Executes a configured setup, using the compiled method for querying the user
*
* @param setup Pointer to the setup defining what to ask the user
*
* @return True if executing all the defined steps completed successfully
*/
bool query_user_exec ();
#else /* ENABLE_SYSTEMD not defined*/
/**
* Wrapper function enabling query_user_exec() if no alternative methods have
* been enabled
*
*/
static bool query_user_exec ()
{
return query_user_exec_builtin();
}
#endif /* defined(ENABLE_SYSTEMD) */
/**
* A plain "make Gert happy" wrapper. Same arguments as @query_user_add
*
* FIXME/TODO: Remove this when refactoring the complete user query process
* to be called at start-up initialization of OpenVPN.
*
*/
static inline bool query_user_SINGLE (char *prompt, size_t prompt_len,
char *resp, size_t resp_len,
bool echo)
{
query_user_clear();
query_user_add(prompt, prompt_len, resp, resp_len, echo);
return query_user_exec();
}
#endif
|