-
Notifications
You must be signed in to change notification settings - Fork 4
/
oncp.c
1324 lines (1160 loc) · 37.6 KB
/
oncp.c
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
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
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* OpenConnect (SSL + DTLS) VPN client
*
* Copyright © 2008-2015 Intel Corporation.
*
* Author: David Woodhouse <[email protected]>
*
* 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.
*/
/*
* Grateful thanks to Tiebing Zhang, who did much of the hard work
* of analysing and decoding the protocol.
*/
#include <config.h>
#include <unistd.h>
#include <fcntl.h>
#include <time.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <stdarg.h>
#include <sys/types.h>
#include "openconnect-internal.h"
static int parse_cookie(struct openconnect_info *vpninfo)
{
char *p = vpninfo->cookie;
/* We currenly expect the "cookie" to be contain multiple cookies:
* DSSignInUrl=/; DSID=xxx; DSFirstAccess=xxx; DSLastAccess=xxx
* Process those into vpninfo->cookies unless we already had them
* (in which case they'll may be newer. */
while (p && *p) {
char *semicolon = strchr(p, ';');
char *equals;
if (semicolon)
*semicolon = 0;
equals = strchr(p, '=');
if (!equals) {
vpn_progress(vpninfo, PRG_ERR, _("Invalid cookie '%s'\n"), p);
return -EINVAL;
}
*equals = 0;
http_add_cookie(vpninfo, p, equals+1, 0);
*equals = '=';
p = semicolon;
if (p) {
*p = ';';
p++;
while (*p && isspace((int)(unsigned char)*p))
p++;
}
}
return 0;
}
static void buf_append_be16(struct oc_text_buf *buf, uint16_t val)
{
unsigned char b[2];
store_be16(b, val);
buf_append_bytes(buf, b, 2);
}
static void buf_append_le16(struct oc_text_buf *buf, uint16_t val)
{
unsigned char b[2];
store_le16(b, val);
buf_append_bytes(buf, b, 2);
}
static void buf_append_tlv(struct oc_text_buf *buf, uint16_t val, uint32_t len, void *data)
{
unsigned char b[6];
store_be16(b, val);
store_be32(b + 2, len);
buf_append_bytes(buf, b, 6);
if (len)
buf_append_bytes(buf, data, len);
}
static void buf_append_tlv_be32(struct oc_text_buf *buf, uint16_t val, uint32_t data)
{
unsigned char d[4];
store_be32(d, data);
buf_append_tlv(buf, val, 4, d);
}
static const char authpkt_head[] = { 0x00, 0x04, 0x00, 0x00, 0x00 };
static const char authpkt_tail[] = { 0xbb, 0x01, 0x00, 0x00, 0x00, 0x00 };
#define GRP_ATTR(g, a) (((g) << 16) | (a))
/* We behave like CSTP — create a linked list in vpninfo->cstp_options
* with the strings containing the information we got from the server,
* and oc_ip_info contains const copies of those pointers. */
static const char *add_option(struct openconnect_info *vpninfo, const char *opt,
const char *val, int val_len)
{
struct oc_vpn_option *new = malloc(sizeof(*new));
if (!new)
return NULL;
new->option = strdup(opt);
if (!new->option) {
free(new);
return NULL;
}
if (val_len >= 0)
new->value = strndup(val, val_len);
else
new->value = strdup(val);
if (!new->value) {
free(new->option);
free(new);
return NULL;
}
new->next = vpninfo->cstp_options;
vpninfo->cstp_options = new;
return new->value;
}
static int process_attr(struct openconnect_info *vpninfo, int group, int attr,
unsigned char *data, int attrlen)
{
char buf[80];
int i;
switch(GRP_ATTR(group, attr)) {
case GRP_ATTR(6, 2):
if (attrlen != 4) {
badlen:
vpn_progress(vpninfo, PRG_ERR,
_("Unexpected length %d for TLV %d/%d\n"),
attrlen, group, attr);
return -EINVAL;
}
vpninfo->ip_info.mtu = load_be32(data);
vpn_progress(vpninfo, PRG_DEBUG,
_("Received MTU %d from server\n"),
vpninfo->ip_info.mtu);
break;
case GRP_ATTR(2, 1):
if (attrlen != 4)
goto badlen;
snprintf(buf, sizeof(buf), "%d.%d.%d.%d", data[0], data[1], data[2], data[3]);
vpn_progress(vpninfo, PRG_DEBUG, _("Received DNS server %s\n"), buf);
for (i = 0; i < 3; i++) {
if (!vpninfo->ip_info.dns[i]) {
vpninfo->ip_info.dns[i] = add_option(vpninfo, "DNS", buf, -1);
break;
}
}
break;
case GRP_ATTR(2, 2):
vpn_progress(vpninfo, PRG_DEBUG, _("Received DNS search domain %.*s\n"),
attrlen, (char *)data);
vpninfo->ip_info.domain = add_option(vpninfo, "search", (char *)data, attrlen);
if (vpninfo->ip_info.domain) {
char *p = (char *)vpninfo->ip_info.domain;
while ((p = strchr(p, ',')))
*p = ' ';
}
break;
case GRP_ATTR(1, 1):
if (attrlen != 4)
goto badlen;
snprintf(buf, sizeof(buf), "%d.%d.%d.%d", data[0], data[1], data[2], data[3]);
vpn_progress(vpninfo, PRG_DEBUG, _("Received internal IP address %s\n"), buf);
vpninfo->ip_info.addr = add_option(vpninfo, "ipaddr", buf, -1);
break;
case GRP_ATTR(1, 2):
if (attrlen != 4)
goto badlen;
snprintf(buf, sizeof(buf), "%d.%d.%d.%d", data[0], data[1], data[2], data[3]);
vpn_progress(vpninfo, PRG_DEBUG, _("Received netmask %s\n"), buf);
vpninfo->ip_info.netmask = add_option(vpninfo, "netmask", buf, -1);
break;
case GRP_ATTR(1, 3):
if (attrlen != 4)
goto badlen;
snprintf(buf, sizeof(buf), "%d.%d.%d.%d", data[0], data[1], data[2], data[3]);
vpn_progress(vpninfo, PRG_DEBUG, _("Received internal gateway address %s\n"), buf);
/* Hm, what are we supposed to do with this? It's a tunnel;
having a gateway is meaningless. */
add_option(vpninfo, "ipaddr", buf, -1);
break;
case GRP_ATTR(3, 3): {
struct oc_split_include *inc;
if (attrlen != 8)
goto badlen;
snprintf(buf, sizeof(buf), "%d.%d.%d.%d/%d.%d.%d.%d",
data[0], data[1], data[2], data[3],
data[4], data[5], data[6], data[7]);
vpn_progress(vpninfo, PRG_DEBUG, _("Received split include route %s\n"), buf);
if (!data[4] && !data[5] && !data[6] && !data[7])
break;
inc = malloc(sizeof(*inc));
if (inc) {
inc->route = add_option(vpninfo, "split-include", buf, -1);
if (inc->route) {
inc->next = vpninfo->ip_info.split_includes;
vpninfo->ip_info.split_includes = inc;
} else
free(inc);
}
break;
}
case GRP_ATTR(3, 4): {
struct oc_split_include *exc;
if (attrlen != 8)
goto badlen;
snprintf(buf, sizeof(buf), "%d.%d.%d.%d/%d.%d.%d.%d",
data[0], data[1], data[2], data[3],
data[4], data[5], data[6], data[7]);
vpn_progress(vpninfo, PRG_DEBUG, _("Received split exclude route %s\n"), buf);
if (!data[4] && !data[5] && !data[6] && !data[7])
break;
exc = malloc(sizeof(*exc));
if (exc) {
exc->route = add_option(vpninfo, "split-exclude", buf, -1);
if (exc->route) {
exc->next = vpninfo->ip_info.split_excludes;
vpninfo->ip_info.split_excludes = exc;
} else
free(exc);
}
break;
}
case GRP_ATTR(4, 1):
if (attrlen != 4)
goto badlen;
snprintf(buf, sizeof(buf), "%d.%d.%d.%d", data[0], data[1], data[2], data[3]);
vpn_progress(vpninfo, PRG_DEBUG, _("Received WINS server %s\n"), buf);
for (i = 0; i < 3; i++) {
if (!vpninfo->ip_info.nbns[i]) {
vpninfo->ip_info.nbns[i] = add_option(vpninfo, "WINS", buf, -1);
break;
}
}
break;
case GRP_ATTR(8, 1): {
const char *enctype;
if (attrlen != 1)
goto badlen;
if (data[0] == ENC_AES_128_CBC) {
enctype = "AES-128";
vpninfo->enc_key_len = 16;
} else if (data[0] == ENC_AES_256_CBC) {
enctype = "AES-256";
vpninfo->enc_key_len = 32;
} else
enctype = "unknown";
vpn_progress(vpninfo, PRG_DEBUG, _("ESP encryption: 0x%02x (%s)\n"),
data[0], enctype);
vpninfo->esp_enc = data[0];
break;
}
case GRP_ATTR(8, 2): {
const char *mactype;
if (attrlen != 1)
goto badlen;
if (data[0] == HMAC_MD5) {
mactype = "MD5";
vpninfo->hmac_key_len = 16;
} else if (data[0] == HMAC_SHA1) {
mactype = "SHA1";
vpninfo->hmac_key_len = 20;
} else
mactype = "unknown";
vpn_progress(vpninfo, PRG_DEBUG, _("ESP HMAC: 0x%02x (%s)\n"),
data[0], mactype);
vpninfo->esp_hmac = data[0];
break;
}
case GRP_ATTR(8, 3):
if (attrlen != 1)
goto badlen;
vpninfo->esp_compr = data[0];
vpninfo->dtls_compr = data[0] ? COMPR_LZO : 0;
vpn_progress(vpninfo, PRG_DEBUG, _("ESP compression: %d\n"), data[0]);
break;
case GRP_ATTR(8, 4):
if (attrlen != 2)
goto badlen;
i = load_be16(data);
udp_sockaddr(vpninfo, i);
vpn_progress(vpninfo, PRG_DEBUG, _("ESP port: %d\n"), i);
break;
case GRP_ATTR(8, 5):
if (attrlen != 4)
goto badlen;
vpninfo->esp_lifetime_bytes = load_be32(data);
vpn_progress(vpninfo, PRG_DEBUG, _("ESP key lifetime: %u bytes\n"),
vpninfo->esp_lifetime_bytes);
break;
case GRP_ATTR(8, 6):
if (attrlen != 4)
goto badlen;
vpninfo->esp_lifetime_seconds = load_be32(data);
vpn_progress(vpninfo, PRG_DEBUG, _("ESP key lifetime: %u seconds\n"),
vpninfo->esp_lifetime_seconds);
break;
case GRP_ATTR(8, 9):
if (attrlen != 4)
goto badlen;
vpninfo->esp_ssl_fallback = load_be32(data);
vpn_progress(vpninfo, PRG_DEBUG, _("ESP to SSL fallback: %u seconds\n"),
vpninfo->esp_ssl_fallback);
break;
case GRP_ATTR(8, 10):
if (attrlen != 4)
goto badlen;
vpninfo->esp_replay_protect = load_be32(data);
vpn_progress(vpninfo, PRG_DEBUG, _("ESP replay protection: %d\n"),
load_be32(data));
break;
case GRP_ATTR(7, 1):
if (attrlen != 4)
goto badlen;
memcpy(&vpninfo->esp_out.spi, data, 4);
vpn_progress(vpninfo, PRG_DEBUG, _("ESP SPI (outbound): %x\n"),
load_be32(data));
break;
case GRP_ATTR(7, 2):
if (attrlen != 0x40)
goto badlen;
/* data contains enc_key and hmac_key concatenated */
memcpy(vpninfo->esp_out.enc_key, data, 0x40);
vpn_progress(vpninfo, PRG_DEBUG, _("%d bytes of ESP secrets\n"),
attrlen);
break;
default:
buf[0] = 0;
for (i=0; i < 16 && i < attrlen; i++)
sprintf(buf + strlen(buf), " %02x", data[i]);
if (attrlen > 16)
sprintf(buf + strlen(buf), "...");
vpn_progress(vpninfo, PRG_DEBUG,
_("Unknown TLV group %d attr %d len %d:%s\n"),
group, attr, attrlen, buf);
}
return 0;
}
static void put_len16(struct oc_text_buf *buf, int where)
{
int len = buf->pos - where;
store_be16(buf->data + where - 2, len);
}
static void put_len32(struct oc_text_buf *buf, int where)
{
int len = buf->pos - where;
store_be32(buf->data + where - 4, len);
}
/* We don't know what these are so just hope they never change */
static const unsigned char kmp_head[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
static const unsigned char kmp_tail[] = { 0x01, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00 };
static const unsigned char kmp_tail_out[] = { 0x01, 0x00, 0x00, 0x00, 0x01,
0x00, 0x00, 0x00, 0x00, 0x00 };
static const unsigned char data_hdr[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x2c, 0x01, 0x00, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00 };
#ifdef HAVE_ESP
static const unsigned char esp_kmp_hdr[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2e,
0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, /* KMP header */
0x00, 0x56, /* KMP length */
0x00, 0x07, 0x00, 0x00, 0x00, 0x50, /* TLV group 7 */
0x00, 0x01, 0x00, 0x00, 0x00, 0x04, /* Attr 1 (SPI) */
};
/* Followed by 4 bytes of SPI */
static const unsigned char esp_kmp_part2[] = {
0x00, 0x02, 0x00, 0x00, 0x00, 0x40, /* Attr 2 (secrets) */
};
/* And now 0x40 bytes of random secret for encryption and HMAC key */
#endif
static const struct pkt esp_enable_pkt = {
.next = NULL,
{ .oncp = { .rec = { 0x21, 0x00 },
.kmp = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2f,
0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x0d } }
},
.data = {
0x00, 0x06, 0x00, 0x00, 0x00, 0x07, /* Group 6, len 7 */
0x00, 0x01, 0x00, 0x00, 0x00, 0x01, /* Attr 1, len 1 */
0x01
},
.len = 13
};
static int queue_esp_control(struct openconnect_info *vpninfo, int enable)
{
struct pkt *new = malloc(sizeof(*new) + 13);
if (!new)
return -ENOMEM;
memcpy(new, &esp_enable_pkt, sizeof(*new) + 13);
new->data[12] = enable;
queue_packet(&vpninfo->oncp_control_queue, new);
return 0;
}
static int check_kmp_header(struct openconnect_info *vpninfo, unsigned char *bytes, int pktlen)
{
if (pktlen < 20 || memcmp(bytes, kmp_head, sizeof(kmp_head)) ||
memcmp(bytes + 8, kmp_tail, sizeof(kmp_tail))) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to parse KMP header\n"));
return -EINVAL;
}
return load_be16(bytes + 6);
}
static int parse_conf_pkt(struct openconnect_info *vpninfo, unsigned char *bytes, int pktlen, int kmp)
{
int kmplen, kmpend, grouplen, groupend, group, attr, attrlen;
int ofs = 0;
int split_enc_hmac_keys = 0;
kmplen = load_be16(bytes + ofs + 18);
kmpend = ofs + kmplen;
if (kmpend > pktlen) {
eparse:
vpn_progress(vpninfo, PRG_ERR,
_("Failed to parse KMP message\n"));
dump_buf_hex(vpninfo, PRG_ERR, '<', bytes, pktlen);
return -EINVAL;
}
vpn_progress(vpninfo, PRG_DEBUG,
_("Got KMP message %d of size %d\n"),
kmp, kmplen);
ofs += 0x14;
while (ofs < kmpend) {
if (ofs + 6 > kmpend)
goto eparse;
group = load_be16(bytes + ofs);
grouplen = load_be32(bytes + ofs + 2);
ofs += 6;
groupend = ofs + grouplen;
if (groupend > pktlen)
goto eparse;
if (kmp == 302 && group != 7 && group != 8) {
vpn_progress(vpninfo, PRG_ERR,
_("Received non-ESP TLVs (group %d) in ESP negotiation KMP\n"),
group);
return -EINVAL;
}
while (ofs < groupend) {
if (ofs + 6 > groupend)
goto eparse;
attr = load_be16(bytes + ofs);
attrlen = load_be32(bytes + ofs + 2);
ofs += 6;
if (attrlen + ofs > groupend)
goto eparse;
if (process_attr(vpninfo, group, attr, bytes + ofs, attrlen))
goto eparse;
if (GRP_ATTR(group, attr)==GRP_ATTR(7, 2))
split_enc_hmac_keys = 1;
ofs += attrlen;
}
}
/* The encryption and HMAC keys are sent concatenated together in a block of 0x40 bytes;
we can't split them apart until we know how long the encryption key is. */
if (split_enc_hmac_keys)
memcpy(vpninfo->esp_out.hmac_key, vpninfo->esp_out.enc_key + vpninfo->enc_key_len, vpninfo->hmac_key_len);
return 0;
}
int oncp_connect(struct openconnect_info *vpninfo)
{
int ret, len, kmp, kmplen, group, check_len;
struct oc_text_buf *reqbuf;
unsigned char bytes[65536];
/* XXX: We should do what cstp_connect() does to check that configuration
hasn't changed on a reconnect. */
if (!vpninfo->cookies) {
ret = parse_cookie(vpninfo);
if (ret)
return ret;
}
ret = openconnect_open_https(vpninfo);
if (ret)
return ret;
reqbuf = buf_alloc();
buf_append(reqbuf, "POST /dana/js?prot=1&svc=4 HTTP/1.1\r\n");
/* The TLS socket actually remains open for use by the oNCP
tunnel, but the "Connection: close" header is nevertheless
required here. It appears to signal to the server to stop
treating this as an HTTP connection and to start treating
it as an oNCP connection.
*/
buf_append(reqbuf, "Connection: close\r\n");
oncp_common_headers(vpninfo, reqbuf);
buf_append(reqbuf, "Content-Length: 256\r\n");
buf_append(reqbuf, "\r\n");
if (buf_error(reqbuf)) {
vpn_progress(vpninfo, PRG_ERR,
_("Error creating oNCP negotiation request\n"));
ret = buf_error(reqbuf);
goto out;
}
ret = vpninfo->ssl_write(vpninfo, reqbuf->data, reqbuf->pos);
if (ret < 0)
goto out;
ret = process_http_response(vpninfo, 1, NULL, reqbuf);
if (ret < 0)
goto out;
if (ret != 200) {
vpn_progress(vpninfo, PRG_ERR,
_("Unexpected %d result from server\n"),
ret);
ret = -EINVAL;
goto out;
}
/* This is probably some kind of vestigial authentication packet, although
* it's mostly obsolete now that the authentication is really done over
* HTTP. We only send the hostname. */
buf_truncate(reqbuf);
buf_append_le16(reqbuf, sizeof(authpkt_head) + 2 +
strlen(vpninfo->localname) + sizeof(authpkt_tail));
buf_append_bytes(reqbuf, authpkt_head, sizeof(authpkt_head));
buf_append_le16(reqbuf, strlen(vpninfo->localname));
buf_append(reqbuf, "%s", vpninfo->localname);
buf_append_bytes(reqbuf, authpkt_tail, sizeof(authpkt_tail));
if (buf_error(reqbuf)) {
vpn_progress(vpninfo, PRG_ERR,
_("Error creating oNCP negotiation request\n"));
ret = buf_error(reqbuf);
goto out;
}
dump_buf_hex(vpninfo, PRG_DEBUG, '>', (void *)reqbuf->data, reqbuf->pos);
ret = vpninfo->ssl_write(vpninfo, reqbuf->data, reqbuf->pos);
if (ret != reqbuf->pos) {
if (ret >= 0) {
vpn_progress(vpninfo, PRG_ERR,
_("Short write in oNCP negotiation\n"));
ret = -EIO;
}
goto out;
}
/* Now we expect a three-byte response with what's presumably an
error code */
ret = vpninfo->ssl_read(vpninfo, (void *)bytes, 3);
check_len = load_le16(bytes);
if (ret < 0)
goto out;
vpn_progress(vpninfo, PRG_TRACE,
_("Read %d bytes of SSL record\n"), ret);
dump_buf_hex(vpninfo, PRG_TRACE, '<', (void *)bytes, ret);
if (ret != 3 || check_len < 1) {
vpn_progress(vpninfo, PRG_ERR,
_("Unexpected response of size %d after hostname packet\n"),
ret);
ret = -EINVAL;
goto out;
}
if (bytes[2]) {
vpn_progress(vpninfo, PRG_ERR,
_("Server response to hostname packet is error 0x%02x\n"),
bytes[2]);
ret = -EINVAL;
goto out;
}
/* And then a KMP message 301 with the IP configuration.
* Sometimes this arrives as a separate SSL record (with its own
* 2-byte length prefix), and sometimes concatenated with the
* previous 3-byte response).
*/
if (check_len == 1) {
len = vpninfo->ssl_read(vpninfo, (void *)bytes, sizeof(bytes));
check_len = load_le16(bytes);
} else {
len = vpninfo->ssl_read(vpninfo, (void *)(bytes+2), sizeof(bytes)-2) + 2;
check_len--;
}
if (len < 0) {
ret = len;
goto out;
}
vpn_progress(vpninfo, PRG_TRACE,
_("Read %d bytes of SSL record\n"), len);
if (len < 0x16 || check_len + 2 != len) {
vpn_progress(vpninfo, PRG_ERR,
_("Invalid packet waiting for KMP 301\n"));
dump_buf_hex(vpninfo, PRG_ERR, '<', bytes, len);
ret = -EINVAL;
goto out;
}
ret = check_kmp_header(vpninfo, bytes + 2, len);
if (ret < 0)
goto out;
/* We expect KMP message 301 here */
if (ret != 301) {
vpn_progress(vpninfo, PRG_ERR,
_("Expected KMP message 301 from server but got %d\n"),
ret);
ret = -EINVAL;
goto out;
}
kmplen = load_be16(bytes + 20);
if (kmplen + 2 >= sizeof(bytes)) {
vpn_progress(vpninfo, PRG_ERR,
_("KMP message 301 from server too large (%d bytes)\n"),
kmplen);
ret = -EINVAL;
goto out;
}
vpn_progress(vpninfo, PRG_TRACE,
_("Got KMP message 301 of length %d\n"), kmplen);
while (kmplen + 22 > len) {
char l[2];
int thislen;
if (vpninfo->ssl_read(vpninfo, (void *)l, 2) != 2) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to read continuation record length\n"));
ret = -EINVAL;
goto out;
}
if (load_le16(l) + len > kmplen + 22) {
vpn_progress(vpninfo, PRG_ERR,
_("Record of additional %d bytes too large; would make %d\n"),
load_le16(l), len + load_le16(l));
ret = -EINVAL;
goto out;
}
thislen = vpninfo->ssl_read(vpninfo, (void *)(bytes + len), load_le16(l));
if (thislen != load_le16(l)) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to read continuation record of length %d\n"),
load_le16(l));
ret = -EINVAL;
goto out;
}
vpn_progress(vpninfo, PRG_TRACE,
_("Read additional %d bytes of KMP 301 message\n"),
thislen);
len += thislen;
}
ret = parse_conf_pkt(vpninfo, bytes + 2, len - 2, ret);
if (ret)
goto out;
buf_truncate(reqbuf);
buf_append_le16(reqbuf, 0); /* Length. We'll fix it later. */
buf_append_bytes(reqbuf, kmp_head, sizeof(kmp_head));
buf_append_be16(reqbuf, 303); /* KMP message 303 */
buf_append_bytes(reqbuf, kmp_tail_out, sizeof(kmp_tail_out));
buf_append_be16(reqbuf, 0); /* KMP message length */
kmp = reqbuf->pos;
buf_append_tlv(reqbuf, 6, 0, NULL); /* TLV group 6 */
group = reqbuf->pos;
buf_append_tlv_be32(reqbuf, 2, vpninfo->ip_info.mtu);
if (buf_error(reqbuf)) {
vpn_progress(vpninfo, PRG_ERR,
_("Error creating oNCP negotiation request\n"));
ret = buf_error(reqbuf);
goto out;
}
put_len32(reqbuf, group);
put_len16(reqbuf, kmp);
#ifdef HAVE_ESP
if (!openconnect_setup_esp_keys(vpninfo, 1)) {
struct esp *esp = &vpninfo->esp_in[vpninfo->current_esp_in];
/* Since we'll want to do this in the oncp_mainloop too, where it's easier
* *not* to have an oc_text_buf and build it up manually, and since it's
* all fixed size and fairly simple anyway, just hard-code the packet */
buf_append_bytes(reqbuf, esp_kmp_hdr, sizeof(esp_kmp_hdr));
buf_append_bytes(reqbuf, &esp->spi, sizeof(esp->spi));
buf_append_bytes(reqbuf, esp_kmp_part2, sizeof(esp_kmp_part2));
buf_append_bytes(reqbuf, &esp->enc_key, vpninfo->enc_key_len);
buf_append_bytes(reqbuf, &esp->hmac_key, 0x40 - vpninfo->enc_key_len);
if (buf_error(reqbuf)) {
vpn_progress(vpninfo, PRG_ERR,
_("Error negotiating ESP keys\n"));
ret = buf_error(reqbuf);
goto out;
}
}
#endif
/* Length at the start of the packet is little-endian */
store_le16(reqbuf->data, reqbuf->pos - 2);
vpn_progress(vpninfo, PRG_DEBUG, _("oNCP negotiation request outgoing:\n"));
dump_buf_hex(vpninfo, PRG_DEBUG, '>', (void *)reqbuf->data, reqbuf->pos);
ret = vpninfo->ssl_write(vpninfo, reqbuf->data, reqbuf->pos);
if (ret == reqbuf->pos)
ret = 0;
else if (ret >= 0) {
vpn_progress(vpninfo, PRG_ERR,
_("Short write in oNCP negotiation\n"));
ret = -EIO;
}
out:
if (ret)
openconnect_close_https(vpninfo, 0);
else {
monitor_fd_new(vpninfo, ssl);
monitor_read_fd(vpninfo, ssl);
monitor_except_fd(vpninfo, ssl);
}
buf_free(reqbuf);
vpninfo->oncp_rec_size = 0;
free(vpninfo->cstp_pkt);
vpninfo->cstp_pkt = NULL;
return ret;
}
static int oncp_receive_espkeys(struct openconnect_info *vpninfo, int len)
{
#ifdef HAVE_ESP
int ret;
ret = parse_conf_pkt(vpninfo, vpninfo->cstp_pkt->oncp.kmp, len + 20, 301);
if (!ret && !openconnect_setup_esp_keys(vpninfo, 1)) {
struct esp *esp = &vpninfo->esp_in[vpninfo->current_esp_in];
unsigned char *p = vpninfo->cstp_pkt->oncp.kmp;
memcpy(p, esp_kmp_hdr, sizeof(esp_kmp_hdr));
p += sizeof(esp_kmp_hdr);
memcpy(p, &esp->spi, sizeof(esp->spi));
p += sizeof(esp->spi);
memcpy(p, esp_kmp_part2, sizeof(esp_kmp_part2));
p += sizeof(esp_kmp_part2);
memcpy(p, esp->enc_key, vpninfo->enc_key_len);
memcpy(p+vpninfo->enc_key_len, esp->hmac_key, 0x40 - vpninfo->enc_key_len);
p += 0x40;
vpninfo->cstp_pkt->len = p - vpninfo->cstp_pkt->data;
store_le16(vpninfo->cstp_pkt->oncp.rec,
(p - vpninfo->cstp_pkt->oncp.kmp));
queue_packet(&vpninfo->oncp_control_queue, vpninfo->cstp_pkt);
vpninfo->cstp_pkt = NULL;
print_esp_keys(vpninfo, _("new incoming"), esp);
print_esp_keys(vpninfo, _("new outgoing"), &vpninfo->esp_out);
}
return ret;
#else
vpn_progress(vpninfo, PRG_DEBUG,
_("Ignoring ESP keys since ESP support not available in this build\n"));
return 0;
#endif
}
static int oncp_record_read(struct openconnect_info *vpninfo, void *buf, int len)
{
int ret;
if (!vpninfo->oncp_rec_size) {
unsigned char lenbuf[2];
ret = ssl_nonblock_read(vpninfo, lenbuf, 2);
if (ret <= 0)
return ret;
if (ret == 1) {
/* Surely at least *this* never happens? The two length bytes
* of the oNCP record being split across multiple SSL records */
vpn_progress(vpninfo, PRG_ERR,
_("Read only 1 byte of oNCP length field\n"));
return -EIO;
}
vpninfo->oncp_rec_size = load_le16(lenbuf);
if (!vpninfo->oncp_rec_size) {
ret = ssl_nonblock_read(vpninfo, lenbuf, 1);
if (ret == 1) {
if (lenbuf[0] == 1) {
vpn_progress(vpninfo, PRG_ERR,
_("Server terminated connection (session expired)\n"));
vpninfo->quit_reason = "VPN session expired";
} else {
vpn_progress(vpninfo, PRG_ERR,
_("Server terminated connection (reason: %d)\n"),
lenbuf[0]);
vpninfo->quit_reason = "Server terminated connection";
}
} else {
vpn_progress(vpninfo, PRG_ERR,
_("Server sent zero-length oNCP record\n"));
vpninfo->quit_reason = "Zero-length oNCP record";
}
return -EIO;
}
}
if (len > vpninfo->oncp_rec_size)
len = vpninfo->oncp_rec_size;
ret = ssl_nonblock_read(vpninfo, buf, len);
if (ret > 0)
vpninfo->oncp_rec_size -= ret;
return ret;
}
int oncp_mainloop(struct openconnect_info *vpninfo, int *timeout, int readable)
{
int ret;
int work_done = 0;
if (vpninfo->ssl_fd == -1)
goto do_reconnect;
/* FIXME: The poll() handling here is fairly simplistic. Actually,
if the SSL connection stalls it could return a WANT_WRITE error
on _either_ of the SSL_read() or SSL_write() calls. In that case,
we should probably remove POLLIN from the events we're looking for,
and add POLLOUT. As it is, though, it'll just chew CPU time in that
fairly unlikely situation, until the write backlog clears. */
while (readable) {
int len, kmp, kmplen, iplen;
/* Some servers send us packets that are larger than
negitiated MTU. We reserve some estra space to
handle that */
int receive_mtu = MAX(16384, vpninfo->ip_info.mtu);
len = receive_mtu + vpninfo->pkt_trailer;
if (!vpninfo->cstp_pkt) {
vpninfo->cstp_pkt = malloc(sizeof(struct pkt) + len);
if (!vpninfo->cstp_pkt) {
vpn_progress(vpninfo, PRG_ERR, _("Allocation failed\n"));
break;
}
vpninfo->cstp_pkt->len = 0;
}
/*
* This protocol is horrid. There are encapsulations within
* encapsulations within encapsulations. Some of them entirely
* gratuitous.
*
* First there's the SSL records which are a natural part of
* using TLS as a transport. They appear to make no use of the
* packetisation which these provide.
*
* Then within the TLS data stream there are "records" preceded
* by a 16-bit little-endian length. It's not clear what these
* records represent; they appear to be entirely gratuitous and
* just need to be discarded. A record boundary sometimes falls
* right in the middle of a data packet; there's no apparent
* logic to it.
*
* Then there are the KMP packets themselves, each of which has
* a length field of its own. There can be multiple KMP packets
* in each of the above-mention "records", and as noted there
* even be *partial* KMP packets in each record.
*
* Finally, a KMP data packet may actually contain multiple IP
* packets, which need to be split apart by using the length
* field in the IP header. This is Legacy IP only, never IPv6
* for the Network Connect protocol.
*/
/* Until we pass it up the stack, we use cstp_pkt->len to show
* the amount of data received *including* the KMP header. */
len = oncp_record_read(vpninfo,
vpninfo->cstp_pkt->oncp.kmp + vpninfo->cstp_pkt->len,
receive_mtu + 20 - vpninfo->cstp_pkt->len);
if (!len)
break;
else if (len < 0) {
if (vpninfo->quit_reason)
return len;
goto do_reconnect;
}
vpninfo->cstp_pkt->len += len;
vpninfo->ssl_times.last_rx = time(NULL);
if (vpninfo->cstp_pkt->len < 20)
continue;
next_kmp:
/* Now we have a KMP header. It might already have been there */
kmp = load_be16(vpninfo->cstp_pkt->oncp.kmp + 6);
kmplen = load_be16(vpninfo->cstp_pkt->oncp.kmp + 18);
if (len == vpninfo->cstp_pkt->len)
vpn_progress(vpninfo, PRG_DEBUG, _("Incoming KMP message %d of size %d (got %d)\n"),
kmp, kmplen, vpninfo->cstp_pkt->len - 20);
else
vpn_progress(vpninfo, PRG_DEBUG, _("Continuing to process KMP message %d now size %d (got %d)\n"),
kmp, kmplen, vpninfo->cstp_pkt->len - 20);
switch (kmp) {
case 300:
next_ip:
/* Need at least 6 bytes of payload to check the IP packet length */
if (vpninfo->cstp_pkt->len < 26)
continue;
switch(vpninfo->cstp_pkt->data[0] >> 4) {
case 4:
iplen = load_be16(vpninfo->cstp_pkt->data + 2);
break;
case 6:
iplen = load_be16(vpninfo->cstp_pkt->data + 4) + 40;
break;
default:
badiplen:
vpn_progress(vpninfo, PRG_ERR,
_("Unrecognised data packet\n"));
goto unknown_pkt;
}
if (!iplen || iplen > receive_mtu || iplen > kmplen)
goto badiplen;
if (iplen > vpninfo->cstp_pkt->len - 20)
continue;