OpenVPN
misc.h
Go to the documentation of this file.
1/*
2 * OpenVPN -- An application to securely tunnel IP networks
3 * over a single TCP/UDP port, with support for SSL/TLS-based
4 * session authentication and key exchange,
5 * packet encryption, packet authentication, and
6 * packet compression.
7 *
8 * Copyright (C) 2002-2026 OpenVPN Inc <sales@openvpn.net>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, see <https://www.gnu.org/licenses/>.
21 */
22
23#ifndef MISC_H
24#define MISC_H
25
26#include "argv.h"
27#include "basic.h"
28#include "common.h"
29#include "env_set.h"
30#include "integer.h"
31#include "buffer.h"
32#include "platform.h"
33
34/* forward declarations */
35struct plugin_list;
36
37
38/* Set standard file descriptors to /dev/null */
39void set_std_files_to_null(bool stdin_only);
40
41/* Make arrays of strings */
42
43const char **make_arg_array(const char *first, const char *parms, struct gc_arena *gc);
44
45const char **make_extended_arg_array(char **p, bool is_inline, struct gc_arena *gc);
46
47/*
48 * Get and store a username/password
49 */
50
51/* tag for blank username/password */
52static const char blank_up[] = "[[BLANK]]";
53
55{
56 bool defined;
57 /* For auth-token username and token can be set individually, so we
58 * use this second bool to track if the token (password) is defined */
60 bool nocache;
61 bool protected;
62
63/* max length of username/password */
64#ifdef ENABLE_PKCS11
65#define USER_PASS_LEN 4096
66#else
67#define USER_PASS_LEN 128
68#endif
69 /* Note that username and password are expected to be null-terminated */
72};
73
74#ifdef ENABLE_MANAGEMENT
75/*
76 * Challenge response info on client as pushed by server.
77 */
79{
80#define CR_ECHO (1 << 0) /* echo response when typed by user */
81#define CR_RESPONSE (1 << 1) /* response needed */
82 unsigned int flags;
83
84 const char *user;
85 const char *state_id;
86 const char *challenge_text;
87};
88
89/*
90 * Challenge response info on client as pushed by server.
91 */
93{
94#define SC_ECHO (1 << 0) /* echo response when typed by user */
95#define SC_CONCAT (1 << 1) /* concatenate password and response and do not base64 encode */
96 unsigned int flags;
97
98 const char *challenge_text;
99};
100
101#else /* ifdef ENABLE_MANAGEMENT */
103{
104};
106{
107};
108#endif /* ifdef ENABLE_MANAGEMENT */
109
110/*
111 * Flags for get_user_pass and management_query_user_pass
112 */
113#define GET_USER_PASS_MANAGEMENT (1 << 0)
114/* GET_USER_PASS_SENSITIVE (1<<1) not used anymore */
115#define GET_USER_PASS_PASSWORD_ONLY (1 << 2)
116#define GET_USER_PASS_NEED_OK (1 << 3)
117#define GET_USER_PASS_NOFATAL (1 << 4)
118#define GET_USER_PASS_NEED_STR (1 << 5)
119#define GET_USER_PASS_PREVIOUS_CREDS_FAILED (1 << 6)
120
121#define GET_USER_PASS_DYNAMIC_CHALLENGE (1 << 7)
122#define GET_USER_PASS_STATIC_CHALLENGE (1 << 8)
123#define GET_USER_PASS_STATIC_CHALLENGE_ECHO (1 << 9)
126#define GET_USER_PASS_INLINE_CREDS (1 << 10)
128#define GET_USER_PASS_STATIC_CHALLENGE_CONCAT (1 << 11)
130#define GET_USER_PASS_USERNAME_ONLY (1 << 12)
131
142bool get_user_pass_cr(struct user_pass *up, const char *auth_file, const char *prefix,
143 const unsigned int flags, const char *auth_challenge);
144
154static inline bool
155get_user_pass(struct user_pass *up, const char *auth_file, const char *prefix,
156 const unsigned int flags)
157{
158 return get_user_pass_cr(up, auth_file, prefix, flags, NULL);
159}
160
161void purge_user_pass(struct user_pass *up, const bool force);
162
172void set_auth_token(struct user_pass *tk, const char *token);
173
183void set_auth_token_user(struct user_pass *tk, const char *username);
184
185/*
186 * Process string received by untrusted peer before
187 * printing to console or log file.
188 * Assumes that string has been null terminated.
189 */
190const char *safe_print(const char *str, struct gc_arena *gc);
191
192const char *sanitize_control_message(const char *str, struct gc_arena *gc);
193
194/*
195 * /sbin/ip path, may be overridden
196 */
197#ifdef ENABLE_IPROUTE
198extern const char *iproute_path;
199#endif
200
201/* helper to parse peer_info received from multi client, validate
202 * (this is untrusted data) and put into environment */
203bool validate_peer_info_line(char *line);
204
205void output_peer_info_env(struct env_set *es, const char *peer_info);
206
210struct buffer prepend_dir(const char *dir, const char *path, struct gc_arena *gc);
211
215void protect_user_pass(struct user_pass *up);
216
220void unprotect_user_pass(struct user_pass *up);
221
222
223#define _STRINGIFY(S) #S
224/* *INDENT-OFF* - uncrustify need to ignore this macro */
225#define MAC_FMT _STRINGIFY(%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx)
226/* *INDENT-ON* */
227#define MAC_PRINT_ARG(_mac) _mac[0], _mac[1], _mac[2], _mac[3], _mac[4], _mac[5]
228#define MAC_SCAN_ARG(_mac) &_mac[0], &_mac[1], &_mac[2], &_mac[3], &_mac[4], &_mac[5]
229
230#endif /* ifndef MISC_H */
#define USER_PASS_LEN
Definition misc.h:67
void unprotect_user_pass(struct user_pass *up)
Decrypt username and password buffers in user_pass.
Definition misc.c:813
bool get_user_pass_cr(struct user_pass *up, const char *auth_file, const char *prefix, const unsigned int flags, const char *auth_challenge)
Retrieves the user credentials from various sources depending on the flags.
Definition misc.c:201
const char ** make_arg_array(const char *first, const char *parms, struct gc_arena *gc)
Definition misc.c:554
void purge_user_pass(struct user_pass *up, const bool force)
Definition misc.c:475
bool validate_peer_info_line(char *line)
Definition misc.c:723
void set_auth_token_user(struct user_pass *tk, const char *username)
Sets the auth-token username by base64 decoding the passed username.
Definition misc.c:521
void set_std_files_to_null(bool stdin_only)
Definition misc.c:55
void output_peer_info_env(struct env_set *es, const char *peer_info)
Definition misc.c:760
struct buffer prepend_dir(const char *dir, const char *path, struct gc_arena *gc)
Prepend a directory to a path.
Definition misc.c:782
const char * sanitize_control_message(const char *str, struct gc_arena *gc)
Definition misc.c:661
void protect_user_pass(struct user_pass *up)
Encrypt username and password buffers in user_pass.
Definition misc.c:793
const char ** make_extended_arg_array(char **p, bool is_inline, struct gc_arena *gc)
Definition misc.c:631
const char * safe_print(const char *str, struct gc_arena *gc)
Definition misc.c:548
static const char blank_up[]
Definition misc.h:52
static bool get_user_pass(struct user_pass *up, const char *auth_file, const char *prefix, const unsigned int flags)
Retrieves the user credentials from various sources depending on the flags.
Definition misc.h:155
void set_auth_token(struct user_pass *tk, const char *token)
Sets the auth-token to token.
Definition misc.c:501
static char * auth_challenge
Definition ssl.c:283
const char * user
Definition misc.h:84
const char * state_id
Definition misc.h:85
const char * challenge_text
Definition misc.h:86
unsigned int flags
Definition misc.h:82
Wrapper structure for dynamically allocated memory.
Definition buffer.h:60
int len
Length in bytes of the actual content within the allocated memory.
Definition buffer.h:65
Garbage collection arena used to keep track of dynamically allocated memory.
Definition buffer.h:116
unsigned int flags
Definition misc.h:96
const char * challenge_text
Definition misc.h:98
bool token_defined
Definition misc.h:59
bool defined
Definition misc.h:56
char password[USER_PASS_LEN]
Definition misc.h:71
bool nocache
Definition misc.h:60
char username[USER_PASS_LEN]
Definition misc.h:70
struct env_set * es
struct gc_arena gc
Definition test_ssl.c:131