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
119
120
121
122
123
|
/*
* OpenVPN -- An application to securely tunnel IP networks
* over a single TCP/UDP port, with support for SSL/TLS-based
* session authentication and key exchange,
* packet encryption, packet authentication, and
* packet compression.
*
* Copyright (C) 2002-2017 OpenVPN Technologies, Inc. <sales@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
*/
/*
* OpenVPN plugin module to do PAM authentication using a split
* privilege model.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include <ctype.h>
#include <stdbool.h>
#include <stdlib.h>
#include <sys/types.h>
#include <stdint.h>
#include "utils.h"
char *
searchandreplace(const char *tosearch, const char *searchfor, const char *replacewith)
{
if (!tosearch || !searchfor || !replacewith)
{
return NULL;
}
size_t tosearchlen = strlen(tosearch);
size_t replacewithlen = strlen(replacewith);
size_t templen = tosearchlen * replacewithlen;
if (tosearchlen == 0 || strlen(searchfor) == 0 || replacewithlen == 0)
{
return NULL;
}
bool is_potential_integer_overflow = (templen == SIZE_MAX) || (templen / tosearchlen != replacewithlen);
if (is_potential_integer_overflow)
{
return NULL;
}
/* state: all parameters are valid */
const char *searching = tosearch;
char *scratch;
char temp[templen+1];
temp[0] = 0;
scratch = strstr(searching,searchfor);
if (!scratch)
{
return strdup(tosearch);
}
while (scratch) {
strncat(temp,searching,scratch-searching);
strcat(temp,replacewith);
searching = scratch+strlen(searchfor);
scratch = strstr(searching,searchfor);
}
return strdup(temp);
}
const char *
get_env(const char *name, const char *envp[])
{
if (envp)
{
int i;
const int namelen = strlen(name);
for (i = 0; envp[i]; ++i)
{
if (!strncmp(envp[i], name, namelen))
{
const char *cp = envp[i] + namelen;
if (*cp == '=')
{
return cp + 1;
}
}
}
}
return NULL;
}
int
string_array_len(const char *array[])
{
int i = 0;
if (array)
{
while (array[i])
++i;
}
return i;
}
|