Skip to content

Latest commit

 

History

History
1976 lines (1698 loc) · 55 KB

auth.c

File metadata and controls

1976 lines (1698 loc) · 55 KB
 
1
2
3
/*
* OpenConnect (SSL + DTLS) VPN client
*
Jan 26, 2015
Jan 26, 2015
4
* Copyright © 2008-2015 Intel Corporation.
Mar 23, 2013
Mar 23, 2013
5
* Copyright © 2013 John Morrissey <jwm@horde.net>
6
7
8
9
10
11
12
13
14
15
16
17
18
*
* Author: David Woodhouse <dwmw2@infradead.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1, 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
* Lesser General Public License for more details.
*/
Jul 1, 2014
Jul 1, 2014
19
20
#include <config.h>
Jun 30, 2021
Jun 30, 2021
21
22
#include "openconnect-internal.h"
23
24
#include <unistd.h>
#include <fcntl.h>
Jan 26, 2015
Jan 26, 2015
25
26
27
#include <sys/stat.h>
#include <sys/types.h>
#ifndef _WIN32
Oct 1, 2015
Oct 1, 2015
28
#include <sys/wait.h>
Jan 26, 2015
Jan 26, 2015
29
#include <pwd.h>
Dec 5, 2015
Dec 5, 2015
30
#include <grp.h>
Jan 26, 2015
Jan 26, 2015
31
#endif
Jun 30, 2021
Jun 30, 2021
33
34
35
36
37
#include <stdio.h>
#include <time.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
Aug 10, 2021
Aug 10, 2021
39
40
41
42
43
44
enum {
CERT1_REQUESTED = (1<<0),
CERT1_AUTHENTICATED = (1<<1),
CERT2_REQUESTED = (1<<2),
};
Apr 12, 2022
Apr 12, 2022
45
struct cert_request {
Aug 10, 2021
Aug 10, 2021
46
47
48
49
unsigned int state:16;
unsigned int hashes:16;
};
Oct 28, 2012
Oct 28, 2012
50
static int xmlpost_append_form_opts(struct openconnect_info *vpninfo,
Jul 24, 2014
Jul 24, 2014
51
struct oc_auth_form *form, struct oc_text_buf *body);
Jan 30, 2015
Jan 30, 2015
52
53
54
static int cstp_can_gen_tokencode(struct openconnect_info *vpninfo,
struct oc_auth_form *form,
struct oc_form_opt *opt);
Oct 15, 2012
Oct 15, 2012
55
Aug 10, 2021
Aug 10, 2021
56
57
58
59
60
61
62
/* multiple certificate-based authentication */
static void parse_multicert_request(struct openconnect_info *vpninfo,
xmlNodePtr node, struct cert_request *cert_rq);
static int prepare_multicert_response(struct openconnect_info *vpninfo,
struct cert_request cert_rq, const char *challenge,
struct oc_text_buf *body);
Oct 9, 2014
Oct 9, 2014
63
64
65
66
67
68
69
int openconnect_set_option_value(struct oc_form_opt *opt, const char *value)
{
if (opt->type == OC_FORM_OPT_SELECT) {
struct oc_form_opt_select *sopt = (void *)opt;
int i;
for (i=0; i<sopt->nr_choices; i++) {
Dec 19, 2014
Dec 19, 2014
70
if (!strcmp(value, sopt->choices[i]->name)) {
Oct 9, 2014
Oct 9, 2014
71
opt->_value = sopt->choices[i]->name;
Oct 9, 2014
Oct 9, 2014
72
73
74
75
76
77
return 0;
}
}
return -EINVAL;
}
Oct 9, 2014
Oct 9, 2014
78
79
opt->_value = strdup(value);
if (!opt->_value)
Oct 9, 2014
Oct 9, 2014
80
81
82
83
84
return -ENOMEM;
return 0;
}
Jan 15, 2014
Jan 15, 2014
85
86
87
88
89
90
91
92
93
94
95
static int prop_equals(xmlNode *xml_node, const char *name, const char *value)
{
char *tmp = (char *)xmlGetProp(xml_node, (unsigned char *)name);
int ret = 0;
if (tmp && !strcasecmp(tmp, value))
ret = 1;
free(tmp);
return ret;
}
Apr 22, 2009
Apr 22, 2009
96
static int parse_auth_choice(struct openconnect_info *vpninfo, struct oc_auth_form *form,
Apr 21, 2009
Apr 21, 2009
97
xmlNode *xml_node)
Apr 22, 2009
Apr 22, 2009
99
struct oc_form_opt_select *opt;
Jan 15, 2014
Jan 15, 2014
100
xmlNode *opt_node;
Jan 15, 2014
Jan 15, 2014
101
int max_choices = 0, selection = 0;
Apr 21, 2009
Apr 21, 2009
102
Apr 1, 2020
Apr 1, 2020
103
104
105
106
107
for (opt_node = xml_node->children; opt_node; opt_node = opt_node->next)
max_choices++;
/* Return early when there is a <select/> tag with no children */
if (max_choices == 0) {
Jun 29, 2021
Jun 29, 2021
108
return 0;
Apr 1, 2020
Apr 1, 2020
109
110
}
Apr 21, 2009
Apr 21, 2009
111
112
113
114
opt = calloc(1, sizeof(*opt));
if (!opt)
return -ENOMEM;
Apr 22, 2009
Apr 22, 2009
115
opt->form.type = OC_FORM_OPT_SELECT;
Apr 21, 2009
Apr 21, 2009
116
117
opt->form.name = (char *)xmlGetProp(xml_node, (unsigned char *)"name");
opt->form.label = (char *)xmlGetProp(xml_node, (unsigned char *)"label");
Apr 21, 2009
Apr 21, 2009
119
if (!opt->form.name) {
Sep 22, 2011
Sep 22, 2011
120
vpn_progress(vpninfo, PRG_ERR, _("Form choice has no name\n"));
Jan 15, 2014
Jan 15, 2014
121
free_opt((struct oc_form_opt *)opt);
122
123
124
return -EINVAL;
}
Jan 15, 2014
Jan 15, 2014
125
126
127
128
129
130
131
opt->choices = calloc(1, max_choices * sizeof(struct oc_choice *));
if (!opt->choices) {
free_opt((struct oc_form_opt *)opt);
return -ENOMEM;
}
132
for (xml_node = xml_node->children; xml_node; xml_node = xml_node->next) {
Apr 21, 2009
Apr 21, 2009
133
char *form_id;
Apr 22, 2009
Apr 22, 2009
134
struct oc_choice *choice;
Apr 21, 2009
Apr 21, 2009
135
136
137
138
139
140
141
142
if (xml_node->type != XML_ELEMENT_NODE)
continue;
if (strcmp((char *)xml_node->name, "option"))
continue;
form_id = (char *)xmlGetProp(xml_node, (unsigned char *)"value");
Feb 17, 2013
Feb 17, 2013
143
144
if (!form_id)
form_id = (char *)xmlNodeGetContent(xml_node);
145
146
147
if (!form_id)
continue;
Jan 15, 2014
Jan 15, 2014
148
149
150
choice = calloc(1, sizeof(*choice));
if (!choice) {
free_opt((struct oc_form_opt *)opt);
Apr 21, 2009
Apr 21, 2009
151
return -ENOMEM;
Jan 15, 2014
Jan 15, 2014
152
}
Apr 21, 2009
Apr 21, 2009
153
154
155
156
157
158
choice->name = form_id;
choice->label = (char *)xmlNodeGetContent(xml_node);
choice->auth_type = (char *)xmlGetProp(xml_node, (unsigned char *)"auth-type");
choice->override_name = (char *)xmlGetProp(xml_node, (unsigned char *)"override-name");
choice->override_label = (char *)xmlGetProp(xml_node, (unsigned char *)"override-label");
Jan 15, 2014
Jan 15, 2014
159
Jan 15, 2014
Jan 15, 2014
160
161
162
163
164
165
166
choice->second_auth = prop_equals(xml_node, "second-auth", "1");
choice->secondary_username = (char *)xmlGetProp(xml_node,
(unsigned char *)"secondary_username");
choice->secondary_username_editable = prop_equals(xml_node,
"secondary_username_editable", "true");
choice->noaaa = prop_equals(xml_node, "noaaa", "1");
Jan 15, 2014
Jan 15, 2014
167
168
169
if (prop_equals(xml_node, "selected", "true"))
selection = opt->nr_choices;
Jan 15, 2014
Jan 15, 2014
170
opt->choices[opt->nr_choices++] = choice;
Apr 21, 2009
Apr 21, 2009
172
Dec 31, 2013
Dec 31, 2013
173
174
if (!strcmp(opt->form.name, "group_list")) {
form->authgroup_opt = opt;
Jan 15, 2014
Jan 15, 2014
175
form->authgroup_selection = selection;
Dec 31, 2013
Dec 31, 2013
176
177
}
Apr 21, 2009
Apr 21, 2009
178
179
180
181
/* We link the choice _first_ so it's at the top of what we present
to the user */
opt->form.next = form->opts;
form->opts = &opt->form;
182
183
184
return 0;
}
Apr 22, 2009
Apr 22, 2009
185
static int parse_form(struct openconnect_info *vpninfo, struct oc_auth_form *form,
Oct 28, 2012
Oct 28, 2012
186
xmlNode *xml_node)
Apr 21, 2009
Apr 21, 2009
188
char *input_type, *input_name, *input_label;
189
190
for (xml_node = xml_node->children; xml_node; xml_node = xml_node->next) {
Apr 22, 2009
Apr 22, 2009
191
struct oc_form_opt *opt, **p;
192
193
194
195
196
if (xml_node->type != XML_ELEMENT_NODE)
continue;
if (!strcmp((char *)xml_node->name, "select")) {
Apr 21, 2009
Apr 21, 2009
197
if (parse_auth_choice(vpninfo, form, xml_node))
198
199
200
201
return -EINVAL;
continue;
}
if (strcmp((char *)xml_node->name, "input")) {
Jun 13, 2014
Jun 13, 2014
202
vpn_progress(vpninfo, PRG_DEBUG,
Sep 22, 2011
Sep 22, 2011
203
_("name %s not input\n"), xml_node->name);
204
205
206
207
208
continue;
}
input_type = (char *)xmlGetProp(xml_node, (unsigned char *)"type");
if (!input_type) {
Sep 22, 2011
Sep 22, 2011
209
210
vpn_progress(vpninfo, PRG_INFO,
_("No input type in form\n"));
211
212
213
continue;
}
Jan 1, 2010
Jan 1, 2010
214
215
if (!strcmp(input_type, "submit") || !strcmp(input_type, "reset")) {
free(input_type);
Apr 22, 2009
Apr 22, 2009
216
continue;
Jan 1, 2010
Jan 1, 2010
217
}
Apr 22, 2009
Apr 22, 2009
218
219
220
input_name = (char *)xmlGetProp(xml_node, (unsigned char *)"name");
if (!input_name) {
Sep 22, 2011
Sep 22, 2011
221
222
vpn_progress(vpninfo, PRG_INFO,
_("No input name in form\n"));
Jan 1, 2010
Jan 1, 2010
223
free(input_type);
224
225
226
continue;
}
input_label = (char *)xmlGetProp(xml_node, (unsigned char *)"label");
Sep 15, 2022
Sep 15, 2022
227
228
if (!input_label && asprintf(&input_label, "%s:", input_name) == -1)
goto nomem;
Apr 21, 2009
Apr 21, 2009
230
opt = calloc(1, sizeof(*opt));
Jan 1, 2010
Jan 1, 2010
231
if (!opt) {
Sep 15, 2022
Sep 15, 2022
232
nomem:
Jan 1, 2010
Jan 1, 2010
233
234
235
free(input_type);
free(input_name);
free(input_label);
Apr 21, 2009
Apr 21, 2009
236
return -ENOMEM;
Jan 1, 2010
Jan 1, 2010
237
}
Apr 21, 2009
Apr 21, 2009
238
Oct 15, 2012
Oct 15, 2012
239
240
opt->name = input_name;
opt->label = input_label;
Jan 15, 2014
Jan 15, 2014
241
opt->flags = prop_equals(xml_node, "second-auth", "1") ? OC_FORM_OPT_SECOND_AUTH : 0;
Oct 15, 2012
Oct 15, 2012
242
Apr 22, 2009
Apr 22, 2009
243
if (!strcmp(input_type, "hidden")) {
Apr 22, 2009
Apr 22, 2009
244
opt->type = OC_FORM_OPT_HIDDEN;
Oct 9, 2014
Oct 9, 2014
245
opt->_value = (char *)xmlGetProp(xml_node, (unsigned char *)"value");
Mar 23, 2013
Mar 23, 2013
246
} else if (!strcmp(input_type, "text")) {
Apr 22, 2009
Apr 22, 2009
247
opt->type = OC_FORM_OPT_TEXT;
Feb 23, 2022
Feb 23, 2022
248
} else if (!strcmp(input_type, "sso")) {
Feb 23, 2022
Feb 23, 2022
249
opt->type = OC_FORM_OPT_SSO_TOKEN;
Mar 23, 2013
Mar 23, 2013
250
} else if (!strcmp(input_type, "password")) {
Jan 30, 2015
Jan 30, 2015
251
if (!cstp_can_gen_tokencode(vpninfo, form, opt))
Mar 23, 2013
Mar 23, 2013
252
opt->type = OC_FORM_OPT_TOKEN;
Jan 30, 2015
Jan 30, 2015
253
else
Oct 15, 2012
Oct 15, 2012
254
255
opt->type = OC_FORM_OPT_PASSWORD;
} else {
Jun 27, 2011
Jun 27, 2011
256
vpn_progress(vpninfo, PRG_INFO,
Sep 22, 2011
Sep 22, 2011
257
258
_("Unknown input type %s in form\n"),
input_type);
Jan 1, 2010
Jan 1, 2010
259
260
261
free(input_type);
free(input_name);
free(input_label);
Apr 21, 2009
Apr 21, 2009
262
263
free(opt);
continue;
Apr 21, 2009
Apr 21, 2009
265
Jan 1, 2010
Jan 1, 2010
266
free(input_type);
Apr 21, 2009
Apr 21, 2009
267
268
269
270
271
272
p = &form->opts;
while (*p)
p = &(*p)->next;
*p = opt;
273
274
}
Apr 21, 2009
Apr 21, 2009
275
276
277
return 0;
}
Jan 1, 2010
Jan 1, 2010
278
static char *xmlnode_msg(xmlNode *xml_node)
May 8, 2009
May 8, 2009
279
{
Jan 1, 2010
Jan 1, 2010
280
char *fmt = (char *)xmlNodeGetContent(xml_node);
Sep 15, 2011
Sep 15, 2011
281
282
char *result, *params[2], *pct;
int len;
Jan 1, 2010
Jan 1, 2010
283
int nr_params = 0;
May 8, 2009
May 8, 2009
284
Jan 1, 2010
Jan 1, 2010
285
286
if (!fmt || !fmt[0]) {
free(fmt);
May 8, 2009
May 8, 2009
287
return NULL;
Jan 1, 2010
Jan 1, 2010
288
}
May 8, 2009
May 8, 2009
289
Sep 15, 2011
Sep 15, 2011
290
len = strlen(fmt) + 1;
Mar 10, 2013
Mar 10, 2013
291
Sep 15, 2011
Sep 15, 2011
292
293
294
295
296
297
298
299
300
301
302
params[0] = (char *)xmlGetProp(xml_node, (unsigned char *)"param1");
if (params[0])
len += strlen(params[0]);
params[1] = (char *)xmlGetProp(xml_node, (unsigned char *)"param2");
if (params[1])
len += strlen(params[1]);
result = malloc(len);
if (!result) {
result = fmt;
goto out;
May 8, 2009
May 8, 2009
303
304
}
Sep 15, 2011
Sep 15, 2011
305
strcpy(result, fmt);
Mar 10, 2013
Mar 10, 2013
306
free(fmt);
May 8, 2009
May 8, 2009
307
Sep 15, 2011
Sep 15, 2011
308
309
310
for (pct = strchr(result, '%'); pct;
(pct = strchr(pct, '%'))) {
int paramlen;
Jan 1, 2010
Jan 1, 2010
311
Sep 15, 2011
Sep 15, 2011
312
313
314
315
316
317
318
/* We only cope with '%s' */
if (pct[1] != 's')
goto out;
if (params[nr_params]) {
paramlen = strlen(params[nr_params]);
/* Move rest of fmt string up... */
Jul 14, 2014
Jul 14, 2014
319
memmove(pct + paramlen, pct + 2, strlen(pct + 2) + 1);
Sep 15, 2011
Sep 15, 2011
320
321
322
323
324
325
326
327
328
329
330
331
/* ... and put the string parameter in where the '%s' was */
memcpy(pct, params[nr_params], paramlen);
pct += paramlen;
} else
pct++;
if (++nr_params == 2)
break;
}
out:
free(params[0]);
free(params[1]);
Jan 1, 2010
Jan 1, 2010
332
return result;
May 8, 2009
May 8, 2009
333
334
}
Oct 28, 2012
Oct 28, 2012
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
static int xmlnode_get_text(xmlNode *xml_node, const char *name, char **var)
{
char *str;
if (name && !xmlnode_is_named(xml_node, name))
return -EINVAL;
str = xmlnode_msg(xml_node);
if (!str)
return -ENOENT;
free(*var);
*var = str;
return 0;
}
Oct 28, 2012
Oct 28, 2012
351
352
353
354
355
/*
* Legacy server response looks like:
*
* <auth id="<!-- "main" for initial attempt, "success" means we have a cookie -->">
* <title><!-- title to display to user --></title>
Feb 19, 2014
Feb 19, 2014
356
357
* <csd
* token="<!-- save to vpninfo->csd_token -->"
Oct 28, 2012
Oct 28, 2012
358
* ticket="<!-- save to vpninfo->csd_ticket -->" />
Feb 19, 2014
Feb 19, 2014
359
360
361
362
* <csd
* stuburl="<!-- save to vpninfo->csd_stuburl if --os=win -->"
* starturl="<!-- save to vpninfo->csd_starturl if --os=win -->"
* waiturl="<!-- save to vpninfo->csd_starturl if --os=win -->"
Oct 28, 2012
Oct 28, 2012
363
* <csdMac
Feb 19, 2014
Feb 19, 2014
364
365
366
* stuburl="<!-- save to vpninfo->csd_stuburl if --os=mac-intel -->"
* starturl="<!-- save to vpninfo->csd_starturl if --os=mac-intel -->"
* waiturl="<!-- save to vpninfo->csd_waiturl if --os=mac-intel -->" />
Oct 28, 2012
Oct 28, 2012
367
* <csdLinux
Feb 19, 2014
Feb 19, 2014
368
369
370
* stuburl="<!-- same as above, for Linux -->"
* starturl="<!-- same as above, for Linux -->"
* waiturl="<!-- same as above, for Linux -->" />
Oct 28, 2012
Oct 28, 2012
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
* <banner><!-- display this to the user --></banner>
* <message>Please enter your username and password.</message>
* <form method="post" action="/+webvpn+/index.html">
* <input type="text" name="username" label="Username:" />
* <input type="password" name="password" label="Password:" />
* <input type="hidden" name="<!-- save these -->" value="<!-- ... -->" />
* <input type="submit" name="Login" value="Login" />
* <input type="reset" name="Clear" value="Clear" />
* </form>
* </auth>
*
* New server response looks like:
*
* <config-auth>
* <version><!-- whatever --></version>
* <session-token><!-- if present, save to vpninfo->cookie --></session-token>
* <opaque>
* <!-- this could contain anything; copy to vpninfo->opaque_srvdata -->
* <tunnel-group>foobar</tunnel-group>
* <config-hash>1234567</config-hash>
* </opaque>
* <auth id="<!-- see above -->
* <!-- all of our old familiar fields -->
* </auth>
* <host-scan>
* <host-scan-ticket><!-- save to vpninfo->csd_ticket --></host-scan-ticket>
* <host-scan-token><!-- save to vpninfo->csd_token --></host-scan-token>
* <host-scan-base-uri><!-- save to vpninfo->csd_starturl --></host-scan-base-uri>
* <host-scan-wait-uri><!-- save to vpninfo->csd_waiturl --></host-scan-wait-uri>
* </host-scan>
* </config-auth>
*
* Notes:
*
* 1) The new host-scan-*-uri nodes do not map directly to the old CSD fields.
*
* 2) The new <form> tag tends to omit the method/action properties.
*/
Dec 8, 2020
Dec 8, 2020
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
/* Translate platform names (derived from AnyConnect) into the relevant
* CSD tag names
*/
static inline const char *csd_tag_name(struct openconnect_info *vpninfo)
{
if (!strcmp(vpninfo->platname, "mac-intel"))
return "csdMac";
else if (!strcmp(vpninfo->platname, "win"))
return "csd";
else
/* linux, linux-64, android, apple-ios */
return "csdLinux";
}
/* Ignore stubs on mobile platforms */
static inline int csd_use_stub(struct openconnect_info *vpninfo)
{
if (!strcmp(vpninfo->platname, "android") || !strcmp(vpninfo->platname, "apple-ios"))
return 0;
else
return 1;
}
Oct 28, 2012
Oct 28, 2012
433
434
435
436
437
438
439
440
441
static int parse_auth_node(struct openconnect_info *vpninfo, xmlNode *xml_node,
struct oc_auth_form *form)
{
int ret = 0;
for (xml_node = xml_node->children; xml_node; xml_node = xml_node->next) {
if (xml_node->type != XML_ELEMENT_NODE)
continue;
Oct 28, 2012
Oct 28, 2012
442
443
444
xmlnode_get_text(xml_node, "banner", &form->banner);
xmlnode_get_text(xml_node, "message", &form->message);
xmlnode_get_text(xml_node, "error", &form->error);
Feb 23, 2022
Feb 23, 2022
445
446
447
448
xmlnode_get_text(xml_node, "sso-v2-login", &vpninfo->sso_login);
xmlnode_get_text(xml_node, "sso-v2-login-final", &vpninfo->sso_login_final);
xmlnode_get_text(xml_node, "sso-v2-token-cookie-name", &vpninfo->sso_token_cookie);
xmlnode_get_text(xml_node, "sso-v2-error-cookie-name", &vpninfo->sso_error_cookie);
Apr 11, 2022
Apr 11, 2022
449
xmlnode_get_text(xml_node, "sso-v2-browser-mode", &vpninfo->sso_browser_mode);
Oct 28, 2012
Oct 28, 2012
450
451
452
if (xmlnode_is_named(xml_node, "form")) {
Oct 28, 2012
Oct 28, 2012
453
454
455
456
/* defaults for new XML POST */
form->method = strdup("POST");
form->action = strdup("/");
Oct 28, 2012
Oct 28, 2012
457
458
459
xmlnode_get_prop(xml_node, "method", &form->method);
xmlnode_get_prop(xml_node, "action", &form->action);
Oct 28, 2012
Oct 28, 2012
460
461
462
463
464
465
466
467
468
469
470
471
if (!form->method || !form->action ||
strcasecmp(form->method, "POST") || !form->action[0]) {
vpn_progress(vpninfo, PRG_ERR,
_("Cannot handle form method='%s', action='%s'\n"),
form->method, form->action);
ret = -EINVAL;
goto out;
}
ret = parse_form(vpninfo, form, xml_node);
if (ret < 0)
goto out;
Oct 28, 2012
Oct 28, 2012
472
473
474
} else if (!vpninfo->csd_scriptname && xmlnode_is_named(xml_node, "csd")) {
xmlnode_get_prop(xml_node, "token", &vpninfo->csd_token);
xmlnode_get_prop(xml_node, "ticket", &vpninfo->csd_ticket);
Oct 8, 2018
Oct 8, 2018
475
476
477
478
479
480
} else if (xmlnode_is_named(xml_node, "authentication-complete")) {
/* Ick. Since struct oc_auth_form is public there's no
* simple way to add a flag to it. So let's abuse the
* auth_id string instead. */
free(form->auth_id);
form->auth_id = strdup("openconnect_authentication_complete");
Feb 19, 2014
Feb 19, 2014
481
482
483
484
485
}
/* For Windows, vpninfo->csd_xmltag will be "csd" and there are *two* <csd>
nodes; one with token/ticket and one with the URLs. Process them both
the same and rely on the fact that xmlnode_get_prop() will not *clear*
the variable if no such property is found. */
Dec 8, 2020
Dec 8, 2020
486
if (!vpninfo->csd_scriptname && xmlnode_is_named(xml_node, csd_tag_name(vpninfo))) {
Jan 15, 2014
Jan 15, 2014
487
/* ignore the CSD trojan binary on mobile platforms */
Dec 8, 2020
Dec 8, 2020
488
if (csd_use_stub(vpninfo))
Jan 15, 2014
Jan 15, 2014
489
xmlnode_get_prop(xml_node, "stuburl", &vpninfo->csd_stuburl);
Oct 28, 2012
Oct 28, 2012
490
491
xmlnode_get_prop(xml_node, "starturl", &vpninfo->csd_starturl);
xmlnode_get_prop(xml_node, "waiturl", &vpninfo->csd_waiturl);
Oct 28, 2012
Oct 28, 2012
492
493
494
495
496
497
498
499
vpninfo->csd_preurl = strdup(vpninfo->urlpath);
}
}
out:
return ret;
}
Oct 28, 2012
Oct 28, 2012
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
static int parse_host_scan_node(struct openconnect_info *vpninfo, xmlNode *xml_node)
{
/* ignore this whole section if the CSD trojan has already run */
if (vpninfo->csd_scriptname)
return 0;
for (xml_node = xml_node->children; xml_node; xml_node = xml_node->next) {
if (xml_node->type != XML_ELEMENT_NODE)
continue;
xmlnode_get_text(xml_node, "host-scan-ticket", &vpninfo->csd_ticket);
xmlnode_get_text(xml_node, "host-scan-token", &vpninfo->csd_token);
xmlnode_get_text(xml_node, "host-scan-base-uri", &vpninfo->csd_starturl);
xmlnode_get_text(xml_node, "host-scan-wait-uri", &vpninfo->csd_waiturl);
}
return 0;
}
Jun 17, 2014
Jun 17, 2014
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
static void parse_profile_node(struct openconnect_info *vpninfo, xmlNode *xml_node)
{
/* ignore this whole section if we already have a URL */
if (vpninfo->profile_url && vpninfo->profile_sha1)
return;
/* Find <vpn rev="1.0"> child... */
xml_node = xml_node->children;
while (1) {
if (!xml_node)
return;
if (xml_node->type == XML_ELEMENT_NODE &&
xmlnode_is_named(xml_node, "vpn") &&
!xmlnode_match_prop(xml_node, "rev", "1.0"))
break;
xml_node = xml_node->next;
}
/* Find <file type="profile" service-type="user"> */
xml_node = xml_node->children;
while (1) {
if (!xml_node)
return;
if (xml_node->type == XML_ELEMENT_NODE &&
xmlnode_is_named(xml_node, "file") &&
!xmlnode_match_prop(xml_node, "type", "profile") &&
!xmlnode_match_prop(xml_node, "service-type", "user"))
break;
xml_node = xml_node->next;
}
for (xml_node = xml_node->children; xml_node; xml_node = xml_node->next) {
if (xml_node->type != XML_ELEMENT_NODE)
continue;
xmlnode_get_text(xml_node, "uri", &vpninfo->profile_url);
/* FIXME: Check for <hash type="sha1"> */
xmlnode_get_text(xml_node, "hash", &vpninfo->profile_sha1);
}
}
static void parse_config_node(struct openconnect_info *vpninfo, xmlNode *xml_node)
{
for (xml_node = xml_node->children; xml_node; xml_node = xml_node->next) {
if (xml_node->type != XML_ELEMENT_NODE)
continue;
if (xmlnode_is_named(xml_node, "vpn-profile-manifest"))
parse_profile_node(vpninfo, xml_node);
}
}
Apr 21, 2009
Apr 21, 2009
574
575
/* Return value:
* < 0, on error
Oct 28, 2012
Oct 28, 2012
576
* = 0, on success; *form is populated
Apr 21, 2009
Apr 21, 2009
577
*/
Aug 10, 2021
Aug 10, 2021
578
579
580
static int parse_xml_response(struct openconnect_info *vpninfo,
char *response,struct oc_auth_form **formp,
struct cert_request *cert_rq)
Apr 21, 2009
Apr 21, 2009
581
{
Apr 22, 2009
Apr 22, 2009
582
struct oc_auth_form *form;
Apr 21, 2009
Apr 21, 2009
583
584
xmlDocPtr xml_doc;
xmlNode *xml_node;
Aug 10, 2021
Aug 10, 2021
585
int old_cert_rq_state = 0;
May 31, 2013
May 31, 2013
586
int ret;
Oct 28, 2012
Oct 28, 2012
587
588
589
590
591
if (*formp) {
free_auth_form(*formp);
*formp = NULL;
}
Aug 10, 2021
Aug 10, 2021
592
593
594
595
if (cert_rq) {
old_cert_rq_state = cert_rq->state;
*cert_rq = (struct cert_request) { 0 };
}
Apr 21, 2009
Apr 21, 2009
596
Mar 4, 2013
Mar 4, 2013
597
if (!response) {
Jun 13, 2014
Jun 13, 2014
598
vpn_progress(vpninfo, PRG_DEBUG,
Mar 4, 2013
Mar 4, 2013
599
600
601
602
_("Empty response from server\n"));
return -EINVAL;
}
Apr 21, 2009
Apr 21, 2009
603
604
605
form = calloc(1, sizeof(*form));
if (!form)
return -ENOMEM;
Jul 11, 2022
Jul 11, 2022
606
xml_doc = xmlReadMemory(response, strlen(response), NULL, NULL,
May 30, 2013
May 30, 2013
607
XML_PARSE_NOERROR|XML_PARSE_RECOVER);
Apr 21, 2009
Apr 21, 2009
608
if (!xml_doc) {
Sep 22, 2011
Sep 22, 2011
609
610
vpn_progress(vpninfo, PRG_ERR,
_("Failed to parse server response\n"));
Jun 13, 2014
Jun 13, 2014
611
vpn_progress(vpninfo, PRG_DEBUG,
Sep 22, 2011
Sep 22, 2011
612
_("Response was:%s\n"), response);
Apr 21, 2009
Apr 21, 2009
613
614
615
free(form);
return -EINVAL;
}
Apr 21, 2009
Apr 21, 2009
617
xml_node = xmlDocGetRootElement(xml_doc);
Oct 28, 2012
Oct 28, 2012
618
while (xml_node) {
May 31, 2013
May 31, 2013
619
ret = 0;
Oct 28, 2012
Oct 28, 2012
620
621
622
623
624
625
626
627
628
if (xml_node->type != XML_ELEMENT_NODE) {
xml_node = xml_node->next;
continue;
}
if (xmlnode_is_named(xml_node, "config-auth")) {
/* if we do have a config-auth node, it is the root element */
xml_node = xml_node->children;
continue;
May 31, 2013
May 31, 2013
629
630
} else if (xmlnode_is_named(xml_node, "client-cert-request")) {
if (cert_rq)
Aug 10, 2021
Aug 10, 2021
631
cert_rq->state |= CERT1_REQUESTED;
May 31, 2013
May 31, 2013
632
633
else {
vpn_progress(vpninfo, PRG_ERR,
May 31, 2013
May 31, 2013
634
_("Received <client-cert-request> when not expected.\n"));
May 31, 2013
May 31, 2013
635
636
ret = -EINVAL;
}
Aug 10, 2021
Aug 10, 2021
637
638
639
640
641
642
643
644
645
646
647
648
} else if (xmlnode_is_named(xml_node, "multiple-client-cert-request")) {
if (cert_rq) {
cert_rq->state |= CERT1_REQUESTED|CERT2_REQUESTED;
parse_multicert_request(vpninfo, xml_node, cert_rq);
} else {
vpn_progress(vpninfo, PRG_ERR,
_("Received <multiple-client-cert-request> when not expected.\n"));
ret = -EINVAL;
}
} else if (xmlnode_is_named(xml_node, "cert-authenticated")) {
/**
* cert-authenticated indicates that the certificate for the
Aug 10, 2021
Aug 10, 2021
649
* TLS session is valid.
Aug 10, 2021
Aug 10, 2021
650
651
652
*/
if (cert_rq)
cert_rq->state |= CERT1_AUTHENTICATED;
Oct 28, 2012
Oct 28, 2012
653
654
655
656
657
658
659
660
661
662
663
} else if (xmlnode_is_named(xml_node, "auth")) {
xmlnode_get_prop(xml_node, "id", &form->auth_id);
ret = parse_auth_node(vpninfo, xml_node, form);
} else if (xmlnode_is_named(xml_node, "opaque")) {
if (vpninfo->opaque_srvdata)
xmlFreeNode(vpninfo->opaque_srvdata);
vpninfo->opaque_srvdata = xmlCopyNode(xml_node, 1);
if (!vpninfo->opaque_srvdata)
ret = -ENOMEM;
} else if (xmlnode_is_named(xml_node, "host-scan")) {
ret = parse_host_scan_node(vpninfo, xml_node);
Jun 17, 2014
Jun 17, 2014
664
665
} else if (xmlnode_is_named(xml_node, "config")) {
parse_config_node(vpninfo, xml_node);
Apr 22, 2022
Apr 22, 2022
666
667
668
} else if (xmlnode_is_named(xml_node, "session-token")) {
http_add_cookie(vpninfo, "webvpn",
(const char *)xmlNodeGetContent(xml_node), 1);
Oct 28, 2012
Oct 28, 2012
669
670
671
672
673
674
675
676
677
} else {
xmlnode_get_text(xml_node, "error", &form->error);
}
if (ret)
goto out;
xml_node = xml_node->next;
}
Apr 28, 2022
Apr 28, 2022
678
if ((old_cert_rq_state & CERT2_REQUESTED) && form->error) {
Aug 10, 2021
Aug 10, 2021
679
680
681
682
683
684
685
vpn_progress(vpninfo, PRG_ERR,
_("Server reported certificate error: %s.\n"), form->error);
ret = -EINVAL;
goto out;
}
if (!form->auth_id && (!cert_rq || !cert_rq->state)) {
Sep 22, 2011
Sep 22, 2011
686
vpn_progress(vpninfo, PRG_ERR,
Oct 28, 2012
Oct 28, 2012
687
_("XML response has no \"auth\" node\n"));
May 31, 2013
May 31, 2013
688
ret = -EINVAL;
Apr 21, 2009
Apr 21, 2009
689
690
goto out;
}
Oct 28, 2012
Oct 28, 2012
691
Oct 28, 2012
Oct 28, 2012
692
693
694
*formp = form;
xmlFreeDoc(xml_doc);
return 0;
Apr 21, 2009
Apr 21, 2009
695
Oct 28, 2012
Oct 28, 2012
696
697
698
out:
xmlFreeDoc(xml_doc);
free_auth_form(form);
Oct 28, 2012
Oct 28, 2012
699
return ret;
Oct 28, 2012
Oct 28, 2012
700
701
702
703
}
/* Return value:
* < 0, on error
Jan 15, 2014
Jan 15, 2014
704
705
706
* = OC_FORM_RESULT_OK (0), when form parsed and POST required
* = OC_FORM_RESULT_CANCELLED, when response was cancelled by user
* = OC_FORM_RESULT_LOGGEDIN, when form indicates that login was already successful
Oct 28, 2012
Oct 28, 2012
707
*/
Jan 26, 2015
Jan 26, 2015
708
709
710
static int handle_auth_form(struct openconnect_info *vpninfo, struct oc_auth_form *form,
struct oc_text_buf *request_body, const char **method,
const char **request_body_type)
Oct 28, 2012
Oct 28, 2012
711
712
{
int ret;
Jan 15, 2014
Jan 15, 2014
713
struct oc_vpn_option *opt, *next;
Oct 28, 2012
Oct 28, 2012
714
715
if (!strcmp(form->auth_id, "success"))
Jan 15, 2014
Jan 15, 2014
716
return OC_FORM_RESULT_LOGGEDIN;
Oct 28, 2012
Oct 28, 2012
717
Apr 21, 2009
Apr 21, 2009
718
if (vpninfo->nopasswd) {
Sep 22, 2011
Sep 22, 2011
719
720
vpn_progress(vpninfo, PRG_ERR,
_("Asked for password but '--no-passwd' set\n"));
Oct 28, 2012
Oct 28, 2012
721
return -EPERM;
Apr 21, 2009
Apr 21, 2009
722
723
}
Jul 20, 2009
Jul 20, 2009
724
if (vpninfo->csd_token && vpninfo->csd_ticket && vpninfo->csd_starturl && vpninfo->csd_waiturl) {
Aug 4, 2009
Aug 4, 2009
725
726
727
728
729
730
731
732
733
/* AB: remove all cookies */
for (opt = vpninfo->cookies; opt; opt = next) {
next = opt->next;
free(opt->option);
free(opt->value);
free(opt);
}
vpninfo->cookies = NULL;
Jan 15, 2014
Jan 15, 2014
734
return OC_FORM_RESULT_OK;
Jul 20, 2009
Jul 20, 2009
735
}
May 8, 2009
May 8, 2009
736
if (!form->opts) {
May 8, 2009
May 8, 2009
737
if (form->message)
Jun 27, 2011
Jun 27, 2011
738
vpn_progress(vpninfo, PRG_INFO, "%s\n", form->message);
May 31, 2021
May 31, 2021
739
740
741
742
743
744
745
746
if (form->error) {
if (!strcmp(form->error, "Certificate Validation Failure")) {
/* XX: Cisco servers send this ambiguous error string when the CLIENT certificate
* is absent or incorrect. We rewrite it to make this clearer, while preserving
* the original error as a substring.
*/
free(form->error);
if (!(form->error = strdup(_("Client certificate missing or incorrect (Certificate Validation Failure)"))))
Jun 29, 2021
Jun 29, 2021
747
return -ENOMEM;
May 31, 2021
May 31, 2021
748
749
750
} else
vpn_progress(vpninfo, PRG_ERR, "%s\n", form->error);
}
Oct 8, 2018
Oct 8, 2018
751
752
if (!strcmp(form->auth_id, "openconnect_authentication_complete"))
goto justpost;
Oct 28, 2012
Oct 28, 2012
753
return -EPERM;
May 8, 2009
May 8, 2009
754
755
}
Jan 15, 2014
Jan 15, 2014
756
ret = process_auth_form(vpninfo, form);
Apr 22, 2009
Apr 22, 2009
757
if (ret)
Oct 28, 2012
Oct 28, 2012
758
return ret;
Apr 22, 2009
Apr 22, 2009
759
Oct 15, 2012
Oct 15, 2012
760
761
/* tokencode generation is deferred until after username prompts and CSD */
ret = do_gen_tokencode(vpninfo, form);
Aug 14, 2014
Aug 14, 2014
762
763
764
if (ret) {
vpn_progress(vpninfo, PRG_ERR, _("Failed to generate OTP tokencode; disabling token\n"));
vpninfo->token_bypassed = 1;
Oct 28, 2012
Oct 28, 2012
765
return ret;
Aug 14, 2014
Aug 14, 2014
766
}
Oct 8, 2018
Oct 8, 2018
767
justpost:
May 31, 2013
May 31, 2013
768
ret = vpninfo->xmlpost ?
Jul 24, 2014
Jul 24, 2014
769
770
xmlpost_append_form_opts(vpninfo, form, request_body) :
append_form_opts(vpninfo, form, request_body);
Jul 20, 2009
Jul 20, 2009
771
772
if (!ret) {
*method = "POST";
May 28, 2019
May 28, 2019
773
*request_body_type = vpninfo->xmlpost ? "application/xml; charset=utf-8" : "application/x-www-form-urlencoded";
Jul 20, 2009
Jul 20, 2009
774
}
Oct 28, 2012
Oct 28, 2012
775
776
777
return ret;
}
Oct 28, 2012
Oct 28, 2012
778
779
780
781
782
783
784
785
786
/*
* Old submission format is just an HTTP query string:
*
* password=12345678&username=joe
*
* New XML format is more complicated:
*
* <config-auth client="vpn" type="<!-- init or auth-reply -->">
* <version who="vpn"><!-- currently just the OpenConnect version --></version>
Jan 15, 2014
Jan 15, 2014
787
* <device-id><!-- linux, linux-64, win, ... --></device-id>
Oct 28, 2012
Oct 28, 2012
788
789
790
791
792
793
794
795
796
797
798
799
* <opaque is-for="<!-- some name -->">
* <!-- just copy this verbatim from whatever the gateway sent us -->
* </opaque>
*
* For init only, add:
* <group-access>https://<!-- insert hostname here --></group-access>
*
* For auth-reply only, add:
* <auth>
* <username><!-- same treatment as the old form options --></username>
* <password><!-- ditto -->
* </auth>
Feb 17, 2013
Feb 17, 2013
800
* <group-select><!-- name of selected authgroup --></group-select>
Oct 28, 2012
Oct 28, 2012
801
802
803
804
805
806
807
808
809
* <host-scan-token><!-- vpninfo->csd_ticket --></host-scan-token>
*/
#define XCAST(x) ((const xmlChar *)(x))
static xmlDocPtr xmlpost_new_query(struct openconnect_info *vpninfo, const char *type,
xmlNodePtr *rootp)
{
xmlDocPtr doc;
Feb 23, 2022
Feb 23, 2022
810
xmlNodePtr root, node, capabilities;
Oct 28, 2012
Oct 28, 2012
811
812
813
814
815
doc = xmlNewDoc(XCAST("1.0"));
if (!doc)
return NULL;
Oct 9, 2019
Oct 9, 2019
816
root = xmlNewNode(NULL, XCAST("config-auth"));
Oct 28, 2012
Oct 28, 2012
817
818
if (!root)
goto bad;
Oct 9, 2019
Oct 9, 2019
819
820
xmlDocSetRootElement(doc, root);
Oct 28, 2012
Oct 28, 2012
821
822
823
824
if (!xmlNewProp(root, XCAST("client"), XCAST("vpn")))
goto bad;
if (!xmlNewProp(root, XCAST("type"), XCAST(type)))
goto bad;
Feb 23, 2022
Feb 23, 2022
825
826
if (!xmlNewProp(root, XCAST("aggregate-auth-version"), XCAST("2")))
goto bad;
Oct 28, 2012
Oct 28, 2012
827
Oct 15, 2018
Oct 15, 2018
828
829
node = xmlNewTextChild(root, NULL, XCAST("version"),
XCAST(vpninfo->version_string ? : openconnect_version_str));
Oct 28, 2012
Oct 28, 2012
830
831
832
833
834
if (!node)
goto bad;
if (!xmlNewProp(node, XCAST("who"), XCAST("vpn")))
goto bad;
Jan 15, 2014
Jan 15, 2014
835
836
node = xmlNewTextChild(root, NULL, XCAST("device-id"), XCAST(vpninfo->platname));
if (!node)
Oct 28, 2012
Oct 28, 2012
837
goto bad;
Jan 15, 2014
Jan 15, 2014
838
839
840
841
842
843
if (vpninfo->mobile_platform_version) {
if (!xmlNewProp(node, XCAST("platform-version"), XCAST(vpninfo->mobile_platform_version)) ||
!xmlNewProp(node, XCAST("device-type"), XCAST(vpninfo->mobile_device_type)) ||
!xmlNewProp(node, XCAST("unique-id"), XCAST(vpninfo->mobile_device_uniqueid)))
goto bad;
}
Oct 28, 2012
Oct 28, 2012
844
Feb 23, 2022
Feb 23, 2022
845
846
847
848
849
850
851
capabilities = xmlNewNode(NULL, XCAST("capabilities"));
if (!capabilities)
goto bad;
capabilities = xmlAddChild(root, capabilities);
if (!capabilities)
goto bad;
Apr 13, 2023
Apr 13, 2023
852
853
854
855
if (!vpninfo->no_external_auth) {
node = xmlNewTextChild(capabilities, NULL, XCAST("auth-method"), XCAST("single-sign-on-v2"));
if (!node)
goto bad;
Feb 23, 2022
Feb 23, 2022
856
Apr 11, 2022
Apr 11, 2022
857
#ifdef HAVE_HPKE_SUPPORT
Apr 13, 2023
Apr 13, 2023
858
859
860
node = xmlNewTextChild(capabilities, NULL, XCAST("auth-method"), XCAST("single-sign-on-external-browser"));
if (!node)
goto bad;
Apr 11, 2022
Apr 11, 2022
861
#endif
Apr 13, 2023
Apr 13, 2023
862
}
Apr 11, 2022
Apr 11, 2022
863
Apr 20, 2022
Apr 20, 2022
864
865
866
867
868
869
if (vpninfo->certinfo[1].cert) {
node = xmlNewTextChild(capabilities, NULL, XCAST("auth-method"), XCAST("multiple-cert"));
if (!node)
goto bad;
}
Oct 9, 2019
Oct 9, 2019
870
*rootp = root;
Oct 28, 2012
Oct 28, 2012
871
872
873
874
875
876
877
return doc;
bad:
xmlFreeDoc(doc);
return NULL;
}
Jul 24, 2014
Jul 24, 2014
878
static int xmlpost_complete(xmlDocPtr doc, struct oc_text_buf *body)
Oct 28, 2012
Oct 28, 2012
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
{
xmlChar *mem = NULL;
int len, ret = 0;
if (!body) {
xmlFree(doc);
return 0;
}
xmlDocDumpMemoryEnc(doc, &mem, &len, "UTF-8");
if (!mem) {
xmlFreeDoc(doc);
return -ENOMEM;
}
Jul 24, 2014
Jul 24, 2014
894
buf_append_bytes(body, mem, len);
Oct 28, 2012
Oct 28, 2012
895
896
897
898
899
900
901
xmlFreeDoc(doc);
xmlFree(mem);
return ret;
}
Jan 26, 2015
Jan 26, 2015
902
903
static int xmlpost_initial_req(struct openconnect_info *vpninfo,
struct oc_text_buf *request_body, int cert_fail)
Oct 28, 2012
Oct 28, 2012
904
905
906
{
xmlNodePtr root, node;
xmlDocPtr doc = xmlpost_new_query(vpninfo, "init", &root);
Mar 29, 2021
Mar 29, 2021
907
char *url;
Oct 28, 2012
Oct 28, 2012
908
909
910
911
if (!doc)
return -ENOMEM;
Mar 29, 2021
Mar 29, 2021
912
913
url = internal_get_url(vpninfo);
if (!url)
Oct 28, 2012
Oct 28, 2012
914
goto bad;
Oct 8, 2019
Oct 8, 2019
915
Mar 29, 2021
Mar 29, 2021
916
node = xmlNewTextChild(root, NULL, XCAST("group-access"), XCAST(url));
Oct 28, 2012
Oct 28, 2012
917
918
if (!node)
goto bad;
Aug 10, 2021
Aug 10, 2021
919
May 31, 2013
May 31, 2013
920
921
922
923
924
if (cert_fail) {
node = xmlNewTextChild(root, NULL, XCAST("client-cert-fail"), NULL);
if (!node)
goto bad;
}
Dec 30, 2013
Dec 30, 2013
925
926
927
928
929
if (vpninfo->authgroup) {
node = xmlNewTextChild(root, NULL, XCAST("group-select"), XCAST(vpninfo->authgroup));
if (!node)
goto bad;
}
Mar 29, 2021
Mar 29, 2021
930
free(url);
Jul 24, 2014
Jul 24, 2014
931
return xmlpost_complete(doc, request_body);
Oct 28, 2012
Oct 28, 2012
932
933
bad:
Jul 24, 2014
Jul 24, 2014
934
xmlpost_complete(doc, NULL);
Oct 28, 2012
Oct 28, 2012
935
936
937
938
return -ENOMEM;
}
static int xmlpost_append_form_opts(struct openconnect_info *vpninfo,
Jul 24, 2014
Jul 24, 2014
939
struct oc_auth_form *form, struct oc_text_buf *body)
Oct 28, 2012
Oct 28, 2012
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
{
xmlNodePtr root, node;
xmlDocPtr doc = xmlpost_new_query(vpninfo, "auth-reply", &root);
struct oc_form_opt *opt;
if (!doc)
return -ENOMEM;
if (vpninfo->opaque_srvdata) {
node = xmlCopyNode(vpninfo->opaque_srvdata, 1);
if (!node)
goto bad;
if (!xmlAddChild(root, node))
goto bad;
}
node = xmlNewChild(root, NULL, XCAST("auth"), NULL);
if (!node)
goto bad;
for (opt = form->opts; opt; opt = opt->next) {
Feb 17, 2013
Feb 17, 2013
961
962
/* group_list: create a new <group-select> node under <config-auth> */
if (!strcmp(opt->name, "group_list")) {
Oct 9, 2014
Oct 9, 2014
963
if (!xmlNewTextChild(root, NULL, XCAST("group-select"), XCAST(opt->_value)))
Feb 17, 2013
Feb 17, 2013
964
965
966
967
goto bad;
continue;
}
Feb 17, 2013
Feb 17, 2013
968
969
970
971
/* answer,whichpin,new_password: rename to "password" */
if (!strcmp(opt->name, "answer") ||
!strcmp(opt->name, "whichpin") ||
!strcmp(opt->name, "new_password")) {
Oct 9, 2014
Oct 9, 2014
972
if (!xmlNewTextChild(node, NULL, XCAST("password"), XCAST(opt->_value)))
Feb 17, 2013
Feb 17, 2013
973
974
975
976
977
978
979
980
981
982
goto bad;
continue;
}
/* verify_pin,verify_password: ignore */
if (!strcmp(opt->name, "verify_pin") ||
!strcmp(opt->name, "verify_password")) {
continue;
}
Feb 17, 2013
Feb 17, 2013
983
/* everything else: create <foo>user_input</foo> under <auth> */
Oct 9, 2014
Oct 9, 2014
984
if (!xmlNewTextChild(node, NULL, XCAST(opt->name), XCAST(opt->_value)))
Oct 28, 2012
Oct 28, 2012
985
986
987
988
989
990
991
goto bad;
}
if (vpninfo->csd_token &&
!xmlNewTextChild(root, NULL, XCAST("host-scan-token"), XCAST(vpninfo->csd_token)))
goto bad;
Jul 24, 2014
Jul 24, 2014
992
return xmlpost_complete(doc, body);
Oct 28, 2012
Oct 28, 2012
993
994
bad:
Jul 24, 2014
Jul 24, 2014
995
xmlpost_complete(doc, NULL);
Oct 28, 2012
Oct 28, 2012
996
997
998
return -ENOMEM;
}
Mar 23, 2013
Mar 23, 2013
999
1000
/* Return value:
* < 0, if unable to generate a tokencode