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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
|
/*
* socket.c -- socket library functions
*
* Copyright 1998 - 2004 by Eric S. Raymond.
* Copyright 2004 - 2023 by Matthias Andree.
* Contributions by Alexander Bluhm, Earl Chew, John Beck.
* For license terms, see the file COPYING in this directory.
*/
#include "config.h"
#include "fetchmail.h"
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <ctype.h> /* isspace() */
#ifdef HAVE_MEMORY_H
#include <memory.h>
#endif /* HAVE_MEMORY_H */
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <netinet/in.h>
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#include <netdb.h>
#if defined(STDC_HEADERS)
#include <stdlib.h>
#endif
#if defined(HAVE_UNISTD_H)
#include <unistd.h>
#endif
#if defined(HAVE_STDARG_H)
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
#endif
#include "socket.h"
#include "getaddrinfo.h"
#include "i18n.h"
#include "sdump.h"
#include "uid_db.h"
/* Defines to allow BeOS and Cygwin to play nice... */
#ifdef __BEOS__
static char peeked;
#define fm_close(a) closesocket(a)
#define fm_write(a,b,c) send(a,b,c,0)
#define fm_peek(a,b,c) recv(a,b,c,0)
#define fm_read(a,b,c) recv(a,b,c,0)
#else
#define fm_close(a) close(a)
#define fm_write(a,b,c) write(a,b,c)
#define fm_peek(a,b,c) recv(a,b,c, MSG_PEEK)
#ifdef __CYGWIN__
#define fm_read(a,b,c) cygwin_read(a,b,c)
static ssize_t cygwin_read(int sock, void *buf, size_t count);
#else /* ! __CYGWIN__ */
#define fm_read(a,b,c) read(a,b,c)
#endif /* __CYGWIN__ */
#endif
/* We need to define h_errno only if it is not already */
#ifndef h_errno
# if !HAVE_DECL_H_ERRNO
extern int h_errno;
# endif
#endif /* ndef h_errno */
#ifdef HAVE_SOCKETPAIR
static void free_plugindata(char **argvec)
{
if (argvec) {
xfree(*argvec);
xfree(argvec);
}
}
/** parse plugin and interpolate %h and %p with single-quoted host and service.
* Returns a malloc()ed pointer to a NULL-terminated vector of pointers, of
* which the first is also malloc()ed and the 2nd and later ones (if present)
* are pointers into the same memory region - these serve as input for the
* argument vector of execvp() in handle_plugin. */
static char **parse_plugin(const char *plugin, const char *host, const char *service)
{
char **argvec;
const char *c, *p;
char *cp, *plugin_copy;
unsigned int plugin_copy_len;
unsigned int plugin_offset = 0, plugin_copy_offset = 0;
unsigned int i, vecsiz = 2 * sizeof(char*), host_count = 0, service_count = 0;
unsigned int plugin_len = strlen(plugin);
unsigned int host_len = strlen(host);
unsigned int service_len = strlen(service);
for (c = p = plugin; *c; c++)
{ if (isspace((unsigned char)*c) && !isspace((unsigned char)*p))
vecsiz += sizeof(char*);
if (*p == '%' && *c == 'h')
host_count++;
if (*p == '%' && *c == 'p')
service_count++;
p = c;
}
/* we need to discount 2 bytes for each placeholder */
plugin_copy_len = plugin_len + (host_len - 2) * host_count + (service_len - 2) * service_count;
plugin_copy = (char *)xmalloc(plugin_copy_len + 1);
while (plugin_offset < plugin_len && plugin_copy_offset < plugin_copy_len)
{ if ((plugin[plugin_offset] == '%') && (plugin[plugin_offset + 1] == 'h'))
{ strcpy(plugin_copy + plugin_copy_offset, host);
plugin_offset += 2;
plugin_copy_offset += host_len;
}
else if ((plugin[plugin_offset] == '%') && (plugin[plugin_offset + 1] == 'p'))
{ strcpy(plugin_copy + plugin_copy_offset, service);
plugin_offset += 2;
plugin_copy_offset += service_len;
}
else
{ plugin_copy[plugin_copy_offset] = plugin[plugin_offset];
plugin_offset++;
plugin_copy_offset++;
}
}
plugin_copy[plugin_copy_offset] = 0;
/* XXX FIXME - is this perhaps a bit too simplistic to chop down the argument strings without any respect to quoting?
* better write a generic function that tracks arguments instead... */
argvec = (char **)malloc(vecsiz);
if (!argvec)
{
free(plugin_copy);
report(stderr, GT_("fetchmail: malloc failed\n"));
return NULL;
}
memset(argvec, 0, vecsiz);
argvec[0] = plugin_copy; /* make sure we can free() it in every case */
for (p = cp = plugin_copy, i = 0; *cp; cp++)
{ if ((!isspace((unsigned char)*cp)) && (cp == p ? 1 : isspace((unsigned char)*p))) {
argvec[i] = cp;
i++;
}
p = cp;
}
for (cp = plugin_copy; *cp; cp++)
{ if (isspace((unsigned char)*cp))
*cp = 0;
}
return argvec;
}
static int handle_plugin(const char *host,
const char *service, const char *plugin)
/* get a socket mediated through a given external command */
{
int fds[2];
char **argvec;
/*
* The author of this code, Felix von Leitner <felix@convergence.de>, says:
* he chose socketpair() instead of pipe() because socketpair creates
* bidirectional sockets while allegedly some pipe() implementations don't.
*/
argvec = parse_plugin(plugin,host,service);
if (!argvec || !*argvec[0]) {
free_plugindata(argvec);
report(stderr, GT_("fetchmail: plugin for host %s service %s is empty, cannot run!\n"), host, service);
return -1;
}
if (socketpair(AF_UNIX,SOCK_STREAM,0,fds))
{
report(stderr, GT_("fetchmail: socketpair failed\n"));
free_plugindata(argvec);
return -1;
}
switch (fork()) {
case -1:
/* error */
free_plugindata(argvec);
report(stderr, GT_("fetchmail: fork failed\n"));
return -1;
case 0: /* child */
/* fds[1] is the parent's end; close it for proper EOF
** detection */
(void) close(fds[1]);
if ( (dup2(fds[0],0) == -1) || (dup2(fds[0],1) == -1) ) {
report(stderr, GT_("dup2 failed\n"));
_exit(EXIT_FAILURE);
}
/* fds[0] is now connected to 0 and 1; close it */
(void) close(fds[0]);
if (outlevel >= O_VERBOSE)
report(stderr, GT_("running %s (host %s service %s)\n"), plugin, host, service);
execvp(*argvec, argvec);
report(stderr, GT_("execvp(%s) failed\n"), *argvec);
_exit(EXIT_FAILURE);
break;
default: /* parent */
free_plugindata(argvec);
break;
}
/* fds[0] is the child's end; close it for proper EOF detection */
(void) close(fds[0]);
return fds[1];
}
#endif /* HAVE_SOCKETPAIR */
/** Set socket to SO_KEEPALIVE. \return 0 for success. */
static int SockKeepalive(int sock) {
int keepalive = 1;
return setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, &keepalive, sizeof keepalive);
}
int UnixOpen(const char *path)
{
int sock = -1;
struct sockaddr_un ad;
memset(&ad, 0, sizeof(ad));
ad.sun_family = AF_UNIX;
strlcpy(ad.sun_path, path, sizeof(ad.sun_path));
sock = socket( AF_UNIX, SOCK_STREAM, 0 );
if (sock < 0)
{
h_errno = 0;
return -1;
}
/* Socket opened saved. Useful if connect timeout
* because it can be closed.
*/
mailserver_socket_temp = sock;
if (connect(sock, (struct sockaddr *) &ad, sizeof(ad)) < 0)
{
int olderr = errno;
fm_close(sock); /* don't use SockClose, no traffic yet */
h_errno = 0;
errno = olderr;
sock = -1;
}
/* No connect timeout, then no need to set mailserver_socket_temp */
mailserver_socket_temp = -1;
return sock;
}
int SockOpen(const char *host, const char *service,
const char *plugin, struct addrinfo **ai_in)
{
struct addrinfo *ai, req;
int i, acterr = 0;
int ord;
char errbuf[8192] = "";
#ifdef HAVE_SOCKETPAIR
if (plugin)
return handle_plugin(host,service,plugin);
#endif /* HAVE_SOCKETPAIR */
memset(&req, 0, sizeof(struct addrinfo));
req.ai_socktype = SOCK_STREAM;
#ifdef AI_ADDRCONFIG
req.ai_flags = AI_ADDRCONFIG;
#endif
i = fm_getaddrinfo(host, service, &req, ai_in);
if (i) {
report(stderr, GT_("getaddrinfo(\"%s\",\"%s\") error: %s\n"),
host, service, gai_strerror(i));
if (i == EAI_SERVICE)
report(stderr, GT_("Try adding the --service option (see also FAQ item R12).\n"));
return -1;
}
/* NOTE a Linux bug here - getaddrinfo will happily return 127.0.0.1
* twice if no IPv6 is configured */
i = -1;
for (ord = 0, ai = *ai_in; ai; ord++, ai = ai->ai_next) {
char buf[256]; /* hostname */
char pb[256]; /* service name */
int gnie; /* getnameinfo result code */
gnie = getnameinfo(ai->ai_addr, ai->ai_addrlen, buf, sizeof(buf), NULL, 0, NI_NUMERICHOST);
if (gnie)
snprintf(buf, sizeof(buf), GT_("unknown (%s)"), gai_strerror(gnie));
gnie = getnameinfo(ai->ai_addr, ai->ai_addrlen, NULL, 0, pb, sizeof(pb), NI_NUMERICSERV);
if (gnie)
snprintf(pb, sizeof(pb), GT_("unknown (%s)"), gai_strerror(gnie));
if (outlevel >= O_VERBOSE)
report_build(stdout, GT_("Trying to connect to %s/%s..."), buf, pb);
i = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
if (i < 0) {
int e = errno;
/* mask EAFNOSUPPORT errors, they confuse users for
* multihomed hosts */
if (errno != EAFNOSUPPORT)
acterr = errno;
if (outlevel >= O_VERBOSE)
report_complete(stdout, GT_("cannot create socket: %s\n"), strerror(e));
snprintf(errbuf+strlen(errbuf), sizeof(errbuf)-strlen(errbuf),\
GT_("name %d: cannot create socket family %d type %d: %s\n"), ord, ai->ai_family, ai->ai_socktype, strerror(e));
continue;
}
SockKeepalive(i);
/* Save socket descriptor.
* Used to close the socket after connect timeout. */
mailserver_socket_temp = i;
if (connect(i, (struct sockaddr *) ai->ai_addr, ai->ai_addrlen) < 0) {
int e = errno;
/* additionally, suppress IPv4 network unreach errors */
if (e != EAFNOSUPPORT)
acterr = errno;
if (outlevel >= O_VERBOSE) {
report_complete(stdout, GT_("connection failed.\n"));
report(stderr, GT_("connection to %s:%s [%s/%s] failed: %s.\n"), host, service, buf, pb, strerror(e));
}
snprintf(errbuf+strlen(errbuf), sizeof(errbuf)-strlen(errbuf), GT_("name %d: connection to %s:%s [%s/%s] failed: %s.\n"), ord, host, service, buf, pb, strerror(e));
fm_close(i);
i = -1;
continue;
} else {
if (outlevel >= O_VERBOSE)
report_complete(stdout, GT_("connected.\n"));
}
/* No connect timeout, then no need to set mailserver_socket_temp */
mailserver_socket_temp = -1;
break;
}
fm_freeaddrinfo(*ai_in);
*ai_in = NULL;
if (i == -1) {
report(stderr, GT_("Connection errors for this poll:\n%s"), errbuf);
errno = acterr;
}
return i;
}
#if defined(HAVE_STDARG_H)
int SockPrintf(int sock, const char* format, ...)
{
#else
int SockPrintf(sock,format,va_alist)
int sock;
char *format;
va_dcl {
#endif
va_list ap;
char buf[8192];
#if defined(HAVE_STDARG_H)
va_start(ap, format) ;
#else
va_start(ap);
#endif
vsnprintf(buf, sizeof(buf), format, ap);
va_end(ap);
return SockWrite(sock, buf, strlen(buf));
}
#ifdef SSL_ENABLE
#if 0
/* this is not to be enabled in stable releases to avoid
* compatibility issues */
/* OPENSSL_NO_SSL_INTERN:
transitional feature for OpenSSL 1.0.1 up to and excluding 1.1.0
to make sure we do not access internal structures! */
#define OPENSSL_NO_SSL_INTERN 1
#define OPENSSL_NO_DEPRECATED 23
#endif
#include "tls-aux.h"
#include <openssl/err.h>
#include <openssl/pem.h>
#include <openssl/x509v3.h>
#include <openssl/rand.h>
#ifdef LIBRESSL_VERSION_NUMBER
# ifdef __OpenBSD__
# pragma message "WARNING - Linking against LibreSSL, which is not a supported configuration."
# else
# error "FAILED - LibreSSL cannot be used legally, for lack of GPL clause 2b exception, see COPYING."
# endif
#endif
#ifdef USING_WOLFSSL
# if LIBWOLFSSL_VERSION_HEX < 0x05006002L
# error "FAILED - wolfSSL MUST be at least version 5.6.2. You have " LIBWOLFSSL_VERSION_STRING "."
# endif
# if LIBWOLFSSL_VERSION_HEX < 0x05006006L
# pragma message "WARNING - wolfSSL SHOULD be at least version 5.6.6. You have " LIBWOLFSSL_VERSION_STRING "."
# endif
#else /* !USING_WOLFSSL */
#define fm_MIN_OPENSSL_VER 0x1000215fL /* 1.0.2u */
# if OPENSSL_VERSION_NUMBER < 0x1010115fL
# pragma message "WARNING - OpenSSL 1.m.nx SHOULD be at least release version 1.1.1u, using " OPENSSL_VERSION_TEXT "."
# endif /* 0xMNN00PPSL */
/* do not warn about OpenSSL 3.2.0, the 3.2.1 fix is of low priority */
# if OPENSSL_VERSION_NUMBER >= 0x30100000L && OPENSSL_VERSION_NUMBER < 0x30200000L
# if OPENSSL_VERSION_NUMBER < 0x30100040L
# pragma message "WARNING - OpenSSL 3.1.n SHOULD be at least release version 3.1.4, using " OPENSSL_VERSION_TEXT "."
# endif
# endif /* 0xMNN00PPSL */
# if OPENSSL_VERSION_NUMBER >= 0x30000000L && OPENSSL_VERSION_NUMBER < 0x30100000L
# if OPENSSL_VERSION_NUMBER < 0x30000090L
# pragma message "WARNING - OpenSSL 3.0.n SHOULD be at least release version 3.0.9, using " OPENSSL_VERSION_TEXT "."
# endif
# endif /* 0xMNN00PPSL */
# if OPENSSL_VERSION_NUMBER < 0x30000000L
# pragma message "WARNING - OpenSSL before 3.0.0 is end-of-life and unsupported, using " OPENSSL_VERSION_TEXT "."
# endif
# if OPENSSL_VERSION_NUMBER < fm_MIN_OPENSSL_VER
# error Your OpenSSL version MUST be at least 1.0.2u release. Older OpenSSL versions are unsupported.
# else /* OpenSSL too old */
/*
#define __fm_ossl_ver(x) #x
#define _fm_ossl_ver(x) __fm_ossl_ver(x)
#pragma message "Building with OpenSSL headers version " _fm_ossl_ver(OPENSSL_VERSION_NUMBER) ", " OPENSSL_VERSION_TEXT
*/
# endif /* OpenSSL too old */
#endif /* USING_WOLFSSL */
static void report_SSL_errors(FILE *stream)
{
unsigned long err;
while (0ul != (err = ERR_get_error())) {
char *errstr = ERR_error_string(err, NULL);
report(stream, GT_("OpenSSL reported: %s\n"), errstr);
}
}
/* override ERR_print_errors_fp to our own implementation */
#undef ERR_print_errors_fp
#define ERR_print_errors_fp(stream) report_SSL_errors((stream))
static SSL_CTX *_ctx[FD_SETSIZE];
static SSL *_ssl_context[FD_SETSIZE];
static SSL *SSLGetContext( int );
#endif /* SSL_ENABLE */
int SockWrite(int sock, const char *buf, int len)
{
int n, wrlen = 0;
#ifdef SSL_ENABLE
SSL *ssl;
#endif
while (len)
{
#ifdef SSL_ENABLE
if( NULL != ( ssl = SSLGetContext( sock ) ) )
n = SSL_write(ssl, buf, len);
else
#endif /* SSL_ENABLE */
n = fm_write(sock, buf, len);
if (n <= 0)
return -1;
len -= n;
wrlen += n;
buf += n;
}
return wrlen;
}
int SockRead(int sock, char *buf, int len)
{
char *newline, *bp = buf;
int n;
#ifdef SSL_ENABLE
SSL *ssl;
#endif
if (--len < 1)
return(-1);
#ifdef __BEOS__
if (peeked != 0){
(*bp) = peeked;
bp++;
len--;
peeked = 0;
}
#endif
do {
/*
* The reason for these gymnastics is that we want two things:
* (1) to read \n-terminated lines,
* (2) to return the true length of data read, even if the
* data coming in has embedded NULS.
*/
#ifdef SSL_ENABLE
if( NULL != ( ssl = SSLGetContext( sock ) ) ) {
int e;
/* Hack alert! */
/* XXX FIXME: once we deprecate OpenSSL before 1.1.1, we can
* use SSL_peek_ex() and SSL_read_ex() and simplify this code
* quite a bit */
/* OK... SSL_peek works a little different from MSG_PEEK
Problem is that SSL_peek can return 0 if there
is no data currently available. If, on the other
hand, we lose the socket, we also get a zero, but
the SSL_read then SEGFAULTS! To deal with this,
we'll check the error code any time we get a return
of zero from SSL_peek. If we have an error, we bail.
If we don't, we read one character in SSL_read and
loop. This should continue to work even if they
later change the behavior of SSL_peek
to "fix" this problem... :-( */
if ((n = SSL_peek(ssl, bp, len)) <= 0) {
/* SSL_peek says no data... Does he mean no data
or did the connection blow up? If we got an error
then bail! */
e = SSL_get_error(ssl, n);
if (SSL_ERROR_NONE != e
#ifdef USING_WOLFSSL
/* wolfSSL 5.0.0 may return SSL_ERROR_WANT_READ when
* receiving HANDSHAKE instead of app data on SSL_peek
* https://github.com/wolfSSL/wolfssl/issues/4593 */
&& SSL_ERROR_WANT_READ != e
#endif
)
{
ERR_print_errors_fp(stderr);
return -1;
}
/* We didn't get an error so read at least one
character at this point and loop */
n = 1;
/* Make sure newline start out NULL!
* We don't have a string to pass through
* the strchr at this point yet */
newline = NULL;
} else if ((newline = (char *)memchr(bp, '\n', n)) != NULL)
n = newline - bp + 1;
/* Matthias Andree: SSL_read can return 0, in that case
* we must call SSL_get_error to figure if there was
* an error or just a "no data" condition */
if ((n = SSL_read(ssl, bp, n)) <= 0) {
e = SSL_get_error(ssl, n);
if (SSL_ERROR_NONE != e) {
ERR_print_errors_fp(stderr);
return -1;
}
}
/* Check for case where our single character turned out to
* be a newline... (It wasn't going to get caught by
* the strchr above if it came from the hack... ). */
if( NULL == newline && 1 == n && '\n' == *bp ) {
/* Got our newline - this will break
out of the loop now */
newline = bp;
}
}
else
#endif /* SSL_ENABLE */
{
#ifdef __BEOS__
if ((n = fm_read(sock, bp, 1)) <= 0)
#else
if ((n = fm_peek(sock, bp, len)) <= 0)
#endif
return (-1);
if ((newline = (char *)memchr(bp, '\n', n)) != NULL)
n = newline - bp + 1;
#ifndef __BEOS__
if ((n = fm_read(sock, bp, n)) == -1)
return(-1);
#endif /* __BEOS__ */
}
bp += n;
len -= n;
} while
(!newline && len);
*bp = '\0';
return bp - buf;
}
int SockPeek(int sock)
/* peek at the next socket character without actually reading it */
{
int n;
char ch;
#ifdef SSL_ENABLE
SSL *ssl;
#endif
#ifdef SSL_ENABLE
if( NULL != ( ssl = SSLGetContext( sock ) ) ) {
n = SSL_peek(ssl, &ch, 1);
if (n <= 0) {
/* SSL_peek says 0... Does that mean no data
or did the connection blow up? If we got an error
then bail! */
int e = SSL_get_error(ssl, n);
if (SSL_ERROR_NONE != e) {
ERR_print_errors_fp(stderr);
return -1;
}
/* Haven't seen this case actually occur, but...
if the problem in SockRead can occur, this should
be possible... Just not sure what to do here.
This should be a safe "punt" the "peek" but don't
"punt" the "session"... */
return 0; /* Give him a '\0' character */
}
}
else
#endif /* SSL_ENABLE */
n = fm_peek(sock, &ch, 1);
if (n == -1)
return -1;
#ifdef __BEOS__
peeked = ch;
#endif
return(ch);
}
#ifdef SSL_ENABLE
static char *_ssl_server_cname = NULL;
static int _check_fp;
static char *_check_digest;
static char *_server_label;
static int _depth0ck;
static int _firstrun;
static int _prev_err;
static int _verify_ok;
SSL *SSLGetContext( int sock )
{
if( sock < 0 || (unsigned)sock > FD_SETSIZE )
return NULL;
if( _ctx[sock] == NULL )
return NULL;
return _ssl_context[sock];
}
/* ok_return is 1 if this stage of certificate verification
passed, or 0 if it failed. This callback lets us display informative
errors, and perform additional validation (e.g. CN matches) */
static int SSL_verify_callback(int ok_return, X509_STORE_CTX *ctx, const int strict)
{
#define SSLverbose (((outlevel) >= O_DEBUG) || ((outlevel) >= O_VERBOSE && (depth) == 0))
char buf[257];
X509 *x509_cert;
int err, depth, i;
unsigned char digest[EVP_MAX_MD_SIZE];
char text[EVP_MAX_MD_SIZE * 3 + 1], *tp, *te;
const EVP_MD *digest_tp;
unsigned int dsz, esz;
X509_NAME *subj, *issuer;
char *tt;
x509_cert = X509_STORE_CTX_get_current_cert(ctx);
err = X509_STORE_CTX_get_error(ctx);
depth = X509_STORE_CTX_get_error_depth(ctx);
subj = X509_get_subject_name(x509_cert);
issuer = X509_get_issuer_name(x509_cert);
if (outlevel >= O_DEBUG) {
if (SSLverbose)
report(stdout, GT_("SSL verify callback depth %d: verify_ok == %d, err = %d, %s\n"),
depth, ok_return, err, X509_verify_cert_error_string(err));
}
if (outlevel >= O_VERBOSE) {
if (depth == 0 && SSLverbose)
report(stdout, GT_("Server certificate:\n"));
else {
if (_firstrun) {
_firstrun = 0;
if (SSLverbose)
report(stdout, GT_("Certificate chain, from root to peer, starting at depth %d:\n"), depth);
} else {
if (SSLverbose)
report(stdout, GT_("Certificate at depth %d:\n"), depth);
}
}
if (SSLverbose) {
if ((i = X509_NAME_get_text_by_NID(issuer, NID_organizationName, buf, sizeof(buf))) != -1) {
report(stdout, GT_("Issuer Organization: %s\n"), (tt = sdump(buf, i)));
xfree(tt);
if ((size_t)i >= sizeof(buf) - 1)
report(stdout, GT_("Warning: Issuer Organization Name too long (possibly truncated).\n"));
} else
report(stdout, GT_("Unknown Organization\n"));
if ((i = X509_NAME_get_text_by_NID(issuer, NID_commonName, buf, sizeof(buf))) != -1) {
report(stdout, GT_("Issuer CommonName: %s\n"), (tt = sdump(buf, i)));
xfree(tt);
if ((size_t)i >= sizeof(buf) - 1)
report(stdout, GT_("Warning: Issuer CommonName too long (possibly truncated).\n"));
} else
report(stdout, GT_("Unknown Issuer CommonName\n"));
}
}
if ((i = X509_NAME_get_text_by_NID(subj, NID_commonName, buf, sizeof(buf))) != -1) {
if (SSLverbose) {
report(stdout, GT_("Subject CommonName: %s\n"), (tt = sdump(buf, i)));
xfree(tt);
}
if ((size_t)i >= sizeof(buf) - 1) {
/* Possible truncation. In this case, this is a DNS name, so this
* is really bad. We do not tolerate this even in the non-strict case. */
report(stderr, GT_("Bad certificate: Subject CommonName too long!\n"));
return (0);
}
if ((size_t)i > strlen(buf)) {
/* Name contains embedded NUL characters, so we complain. This is likely
* a certificate spoofing attack. */
report(stderr, GT_("Bad certificate: Subject CommonName contains NUL, aborting!\n"));
return 0;
}
}
if (depth == 0) { /* peer certificate */
if (!_depth0ck) {
_depth0ck = 1;
}
if ((i = X509_NAME_get_text_by_NID(subj, NID_commonName, buf, sizeof(buf))) != -1) {
if (_ssl_server_cname != NULL) {
char *p1 = buf;
char *p2 = _ssl_server_cname;
int matched = 0;
STACK_OF(GENERAL_NAME) *gens;
/* RFC 2595 section 2.4: find a matching name
* first find a match among alternative names */
gens = (STACK_OF(GENERAL_NAME) *)X509_get_ext_d2i(x509_cert, NID_subject_alt_name, NULL, NULL);
if (gens) {
int j, r;
for (j = 0, r = sk_GENERAL_NAME_num(gens); j < r; ++j) {
const GENERAL_NAME *gn = sk_GENERAL_NAME_value(gens, j);
if (gn->type == GEN_DNS) {
char *pp1 = (char *)gn->d.ia5->data;
char *pp2 = _ssl_server_cname;
if (outlevel >= O_VERBOSE) {
report(stdout, GT_("Subject Alternative Name: %s\n"), (tt = sdump(pp1, (size_t)gn->d.ia5->length)));
xfree(tt);
}
/* Name contains embedded NUL characters, so we complain. This
* is likely a certificate spoofing attack. */
if ((size_t)gn->d.ia5->length != strlen(pp1)) {
report(stderr, GT_("Bad certificate: Subject Alternative Name contains NUL, aborting!\n"));
sk_GENERAL_NAME_free(gens);
return 0;
}
if (name_match(pp1, pp2)) {
matched = 1;
}
}
}
GENERAL_NAMES_free(gens);
}
if (name_match(p1, p2)) {
matched = 1;
}
if (!matched) {
if (strict || SSLverbose) {
report(stderr,
GT_("Server CommonName mismatch: %s != %s\n"),
(tt = sdump(buf, i)), _ssl_server_cname );
xfree(tt);
}
ok_return = 0;
}
} else if (ok_return) {
report(stderr, GT_("Server name not set, could not verify certificate!\n"));
if (strict) return (0);
}
} else {
if (outlevel >= O_VERBOSE)
report(stdout, GT_("Unknown Server CommonName\n"));
if (ok_return && strict) {
report(stderr, GT_("Server name not specified in certificate!\n"));
return (0);
}
}
/* Print the finger print. Note that on errors, we might print it more than once
* normally; we kluge around that by using a global variable. */
if (_check_fp == 1) {
unsigned dp;
_check_fp = -1;
digest_tp = EVP_md5();
if (digest_tp == NULL) {
report(stderr, GT_("EVP_md5() failed!\n"));
return (0);
}
if (!X509_digest(x509_cert, digest_tp, digest, &dsz)) {
report(stderr, GT_("Out of memory!\n"));
return (0);
}
tp = text;
te = text + sizeof(text);
for (dp = 0; dp < dsz; dp++) {
esz = snprintf(tp, te - tp, dp > 0 ? ":%02X" : "%02X", digest[dp]);
if (esz >= (size_t)(te - tp)) {
report(stderr, GT_("Digest text buffer too small!\n"));
return (0);
}
tp += esz;
}
if (outlevel > O_NORMAL)
report(stdout, GT_("%s key fingerprint: %s\n"), _server_label, text);
if (_check_digest != NULL) {
if (strcasecmp(text, _check_digest) == 0) {
if (outlevel > O_NORMAL)
report(stdout, GT_("%s fingerprints match.\n"), _server_label);
} else {
report(stderr, GT_("%s fingerprints do not match!\n"), _server_label);
return (0);
}
} /* if (_check_digest != NULL) */
} /* if (_check_fp) */
} /* if (depth == 0 && !_depth0ck) */
if (err != X509_V_OK && err != _prev_err && !(_check_fp != 0 && _check_digest && !strict)) {
char *tmp;
int did_rep_err = 0;
_prev_err = err;
report(stderr, GT_("Server certificate verification error: %s\n"), X509_verify_cert_error_string(err));
/* We gave the error code, but maybe we can add some more details for debugging */
switch (err) {
/* actually we do not want to lump these together, but
* since OpenSSL flipped the meaning of these error
* codes in the past, and they do hardly make a
* practical difference because servers need not provide
* the root signing certificate, we don't bother telling
* users the difference:
*/
case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY:
case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
X509_NAME_oneline(issuer, buf, sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
report(stderr, GT_("Broken certification chain at: %s\n"), (tmp = sdump(buf, strlen(buf))));
xfree(tmp);
report(stderr, GT_( "This could mean that the server did not provide the intermediate CA's certificate(s), "
"which is nothing fetchmail could do anything about. For details, "
"please see the README.SSL-SERVER document that ships with fetchmail.\n"));
did_rep_err = 1;
/* FALLTHROUGH */
case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN:
if (!did_rep_err) {
X509_NAME_oneline(issuer, buf, sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
report(stderr, GT_("Missing trust anchor certificate: %s\n"), (tmp = sdump(buf, strlen(buf))));
xfree(tmp);
}
report(stderr, GT_( "This could mean that the root CA's signing certificate is not in the "
"trusted CA certificate location, or that c_rehash needs to be run "
"on the certificate directory. For details, please "
"see the documentation of --sslcertpath and --sslcertfile in the manual page. "
"See README.SSL for details.\n"));
break;
default:
break;
}
}
/*
* If not in strict checking mode (--sslcertck), override this
* and pretend that verification had succeeded.
*/
_verify_ok &= ok_return;
if (!strict)
ok_return = 1;
return ok_return;
}
static int SSL_nock_verify_callback( int ok_return, X509_STORE_CTX *ctx )
{
return SSL_verify_callback(ok_return, ctx, 0);
}
static int SSL_ck_verify_callback( int ok_return, X509_STORE_CTX *ctx )
{
return SSL_verify_callback(ok_return, ctx, 1);
}
/* get commonName from certificate set in file.
* commonName is stored in buffer namebuffer, limited with namebufferlen
*/
static const char *SSLCertGetCN(const char *mycert,
char *namebuffer, size_t namebufferlen)
{
const char *ret = NULL;
BIO *certBio = NULL;
X509 *x509_cert = NULL;
X509_NAME *certname = NULL;
if (namebuffer && namebufferlen > 0) {
namebuffer[0] = 0x00;
certBio = BIO_new_file(mycert,"r");
if (certBio) {
x509_cert = PEM_read_bio_X509(certBio,NULL,NULL,NULL);
BIO_free(certBio);
}
if (x509_cert) {
certname = X509_get_subject_name(x509_cert);
if (certname &&
X509_NAME_get_text_by_NID(certname, NID_commonName,
namebuffer, namebufferlen) > 0)
ret = namebuffer;
X509_free(x509_cert);
}
}
return ret;
}
#if !defined(OSSL110_API)
/* ===== implementation for OpenSSL 1.0.X ===== */
static int OSSL10X_proto_version_logic(int sock, const char **myproto, int *avoid_ssl_versions)
{
if (!*myproto) {
*myproto = "auto";
}
if (!strcasecmp("ssl3", *myproto)) {
#if (HAVE_DECL_SSLV3_CLIENT_METHOD > 0) && (0 == OPENSSL_NO_SSL3 + 0)
_ctx[sock] = SSL_CTX_new(SSLv3_client_method());
*avoid_ssl_versions &= ~SSL_OP_NO_SSLv3;
#else
report(stderr, GT_("Your OpenSSL version does not support SSLv3.\n"));
return -1;
#endif
} else if (!strcasecmp("ssl3+", *myproto)) {
*avoid_ssl_versions &= ~SSL_OP_NO_SSLv3;
*myproto = NULL;
} else if (!strcasecmp("tls1", *myproto)) {
_ctx[sock] = SSL_CTX_new(TLSv1_client_method());
} else if (!strcasecmp("tls1+", *myproto)) {
*myproto = NULL;
#if defined(TLS1_1_VERSION)
} else if (!strcasecmp("tls1.1", *myproto)) {
_ctx[sock] = SSL_CTX_new(TLSv1_1_client_method());
} else if (!strcasecmp("tls1.1+", *myproto)) {
*myproto = NULL;
*avoid_ssl_versions |= SSL_OP_NO_TLSv1;
#else
} else if(!strcasecmp("tls1.1",*myproto) || !strcasecmp("tls1.1+", *myproto)) {
report(stderr, GT_("Your OpenSSL version does not support TLS v1.1.\n"));
return -1;
#endif
#if defined(TLS1_2_VERSION)
} else if (!strcasecmp("tls1.2", *myproto)) {
_ctx[sock] = SSL_CTX_new(TLSv1_2_client_method());
} else if (!strcasecmp("tls1.2+", *myproto)) {
*myproto = NULL;
*avoid_ssl_versions |= SSL_OP_NO_TLSv1 | SSL_OP_NO_TLSv1_1;
#else
} else if(!strcasecmp("tls1.2",*myproto) || !strcasecmp("tls1.2+", *myproto)) {
report(stderr, GT_("Your OpenSSL version does not support TLS v1.2.\n"));
return -1;
#endif
#if defined(TLS1_3_VERSION)
} else if (!strcasecmp("tls1.3", *myproto)) {
_ctx[sock] = SSL_CTX_new(TLSv1_3_client_method());
} else if (!strcasecmp("tls1.3+", *myproto)) {
*myproto = NULL;
*avoid_ssl_versions |= SSL_OP_NO_TLSv1 | SSL_OP_NO_TLSv1_1 | SSL_OP_NO_TLSv1_2;
#else
} else if(!strcasecmp("tls1.3",*myproto) || !strcasecmp("tls1.3+", *myproto)) {
report(stderr, GT_("Your OpenSSL version does not support TLS v1.3.\n"));
return -1;
#endif
} else if (!strcasecmp("ssl23", *myproto)
|| 0 == strcasecmp("auto", *myproto))
{
*myproto = NULL;
} else {
report(stderr,
GT_("Invalid SSL protocol '%s' specified, using default autoselect (auto).\n"),
*myproto);
*myproto = NULL;
}
return 0;
}
#define OSSL_proto_version_logic(a,b,c) OSSL10X_proto_version_logic((a),(b),(c))
#else
/* ===== implementation for OpenSSL 1.1.0 ===== */
static int OSSL110_proto_version_logic(int sock, const char **myproto,
int *avoid_ssl_versions)
{
/* NOTE - this code MUST NOT set myproto to NULL, else the
* SSL_...set_..._proto_version() call becomes ineffective. */
_ctx[sock] = SSL_CTX_new(TLS_client_method());
SSL_CTX_set_min_proto_version(_ctx[sock], TLS1_VERSION);
if (!*myproto) {
*myproto = "auto";
}
if (!strcasecmp("ssl3", *myproto)) {
#if (0 == OPENSSL_NO_SSL3 + 0)
SSL_CTX_set_min_proto_version(_ctx[sock], SSL3_VERSION);
SSL_CTX_set_max_proto_version(_ctx[sock], SSL3_VERSION);
*avoid_ssl_versions &= ~SSL_OP_NO_SSLv3;
#else
report(stderr, GT_("Your OpenSSL version does not support SSLv3.\n"));
return -1;
#endif
} else if (!strcasecmp("ssl3+", *myproto)) {
SSL_CTX_set_min_proto_version(_ctx[sock], SSL3_VERSION);
*avoid_ssl_versions &= ~SSL_OP_NO_SSLv3;
} else if (!strcasecmp("tls1", *myproto)) {
SSL_CTX_set_max_proto_version(_ctx[sock], TLS1_VERSION);
} else if (!strcasecmp("tls1+", *myproto)) {
/* do nothing, min_proto_version is already at TLS1_VERSION */
#if defined(TLS1_1_VERSION)
} else if (!strcasecmp("tls1.1", *myproto)) {
SSL_CTX_set_min_proto_version(_ctx[sock], TLS1_1_VERSION);
SSL_CTX_set_max_proto_version(_ctx[sock], TLS1_1_VERSION);
} else if (!strcasecmp("tls1.1+", *myproto)) {
SSL_CTX_set_min_proto_version(_ctx[sock], TLS1_1_VERSION);
#else
} else if(!strcasecmp("tls1.1",*myproto) || !strcasecmp("tls1.1+", *myproto)) {
report(stderr, GT_("Your OpenSSL version does not support TLS v1.1.\n"));
return -1;
#endif
#if defined(TLS1_2_VERSION)
} else if (!strcasecmp("tls1.2", *myproto)) {
SSL_CTX_set_min_proto_version(_ctx[sock], TLS1_2_VERSION);
SSL_CTX_set_max_proto_version(_ctx[sock], TLS1_2_VERSION);
} else if (!strcasecmp("tls1.2+", *myproto)) {
SSL_CTX_set_min_proto_version(_ctx[sock], TLS1_2_VERSION);
#else
} else if(!strcasecmp("tls1.2",*myproto) || !strcasecmp("tls1.2+", *myproto)) {
report(stderr, GT_("Your OpenSSL version does not support TLS v1.2.\n"));
return -1;
#endif
#if defined(TLS1_3_VERSION)
} else if (!strcasecmp("tls1.3", *myproto)) {
SSL_CTX_set_min_proto_version(_ctx[sock], TLS1_3_VERSION);
SSL_CTX_set_max_proto_version(_ctx[sock], TLS1_3_VERSION);
} else if (!strcasecmp("tls1.3+", *myproto)) {
SSL_CTX_set_min_proto_version(_ctx[sock], TLS1_3_VERSION);
#else
} else if(!strcasecmp("tls1.3",*myproto) || !strcasecmp("tls1.3+", *myproto)) {
report(stderr, GT_("Your OpenSSL version does not support TLS v1.3.\n"));
return -1;
#endif
} else if (!strcasecmp("ssl23", *myproto)
|| 0 == strcasecmp("auto", *myproto))
{
/* do nothing */
} else {
/* This should not happen. */
report(stderr,
GT_("Invalid SSL protocol '%s' specified, using default autoselect (auto).\n"),
*myproto);
}
return 0;
}
#define OSSL_proto_version_logic(a,b,c) OSSL110_proto_version_logic((a),(b),(c))
#endif
/* performs initial SSL handshake over the connected socket
* uses SSL *ssl global variable, which is currently defined
* in this file
*/
int SSLOpen(int sock, char *mycert, char *mykey, const char *myproto, int certck,
char *cacertfile, char *certpath,
char *fingerprint, char *servercname, char *label, char **remotename)
{
struct stat randstat;
int i;
int avoid_ssl_versions = SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3;
long sslopts = SSL_OP_ALL;
int ssle_connect = 0;
long ver;
#ifndef OSSL110_API
SSL_load_error_strings();
SSL_library_init();
OpenSSL_add_all_algorithms(); /* see Debian Bug#576430 and manpage */
#endif
ver = OpenSSL_version_num(); /* version switch through tls-aux.h */
#ifdef USING_WOLFSSL
{ char *tmp;
if (NULL != (tmp = getenv("FETCHMAIL_WOLFSSL_DEBUG"))) {
if (*tmp) wolfSSL_Debugging_ON();
}
}
{
int wver = wolfSSL_lib_version_hex();
if (wver < LIBWOLFSSL_VERSION_HEX) {
report(stderr, GT_("Loaded wolfSSL library %#lx older than headers %#lx, refusing to work.\n"), (long)wver, (long)(LIBWOLFSSL_VERSION_HEX));
}
}
#endif
if (ver < OPENSSL_VERSION_NUMBER) {
report(stderr, GT_("Loaded OpenSSL library %#lx older than headers %#lx, refusing to work.\n"), (long)ver, (long)(OPENSSL_VERSION_NUMBER));
return -1;
}
if (ver > OPENSSL_VERSION_NUMBER && outlevel >= O_VERBOSE) {
report(stdout, GT_("Loaded OpenSSL library %#lx newer than headers %#lx, trying to continue.\n"), (long)ver, (long)(OPENSSL_VERSION_NUMBER));
}
if (stat("/dev/random", &randstat) &&
stat("/dev/urandom", &randstat)) {
/* Neither /dev/random nor /dev/urandom are present, so add
entropy to the SSL PRNG a hard way. */
for (i = 0; i < 10000 && ! RAND_status (); ++i) {
char buf[4];
struct timeval tv;
gettimeofday (&tv, 0);
buf[0] = tv.tv_usec & 0xF;
buf[2] = (tv.tv_usec & 0xF0) >> 4;
buf[3] = (tv.tv_usec & 0xF00) >> 8;
buf[1] = (tv.tv_usec & 0xF000) >> 12;
RAND_add (buf, sizeof buf, 0.1);
}
}
if( sock < 0 || (unsigned)sock > FD_SETSIZE ) {
report(stderr, GT_("File descriptor out of range for SSL") );
return( -1 );
}
/* Make sure a connection referring to an older context is not left */
_ssl_context[sock] = NULL;
{
int rc = OSSL_proto_version_logic(sock, &myproto, &avoid_ssl_versions);
if (rc) return rc;
}
/* do not combine into an else { } as myproto may be nulled above! */
if (!myproto) {
/* SSLv23 is a misnomer and will in fact use the best
available protocol, subject to SSL_OP_NO* constraints. */
_ctx[sock] = SSL_CTX_new(SSLv23_client_method());
}
if(_ctx[sock] == NULL) {
unsigned long ec = ERR_peek_last_error();
ERR_print_errors_fp(stderr);
#ifdef SSL_R_NULL_SSL_METHOD_PASSED /* wolfSSL does not define this error */
if (ERR_GET_REASON(ec) == SSL_R_NULL_SSL_METHOD_PASSED) {
report(stderr, GT_("Note that some distributions disable older protocol versions in weird non-standard ways. Try a newer protocol version.\n"));
}
#endif
return(-1);
}
{
char *tmp = getenv("FETCHMAIL_DISABLE_CBC_IV_COUNTERMEASURE");
if (tmp == NULL || *tmp == '\0' || strspn(tmp, " \t") == strlen(tmp))
sslopts &= ~ SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS;
}
(void)SSL_CTX_set_options(_ctx[sock], sslopts | avoid_ssl_versions);
(void)SSL_CTX_set_mode(_ctx[sock], SSL_MODE_AUTO_RETRY);
if (certck) {
SSL_CTX_set_verify(_ctx[sock], SSL_VERIFY_PEER, SSL_ck_verify_callback);
} else {
/* In this case, we do not fail if verification fails. However,
* we provide the callback for output and possible fingerprint
* checks. */
SSL_CTX_set_verify(_ctx[sock], SSL_VERIFY_PEER, SSL_nock_verify_callback);
}
/* Check which trusted X.509 CA certificate store(s) to load */
{
char *tmp;
int want_default_cacerts = 0;
int r = 1;
const char *l1 = 0, *l2 = 0;
/* Load user locations if any is given */
if (certpath || cacertfile) {
l1 = cacertfile;
l2 = certpath;
r = SSL_CTX_load_verify_locations(_ctx[sock],
cacertfile, certpath);
if (1 != r) goto no_verify_load;
} else {
want_default_cacerts = 1;
}
tmp = getenv("FETCHMAIL_INCLUDE_DEFAULT_X509_CA_CERTS");
if (want_default_cacerts || (tmp && tmp[0])) {
#ifdef USING_WOLFSSL
/* wolfSSL 5.0.0 does not implement
* SSL_CTX_set_default_verify_paths(). Use something
* else: */
const char *tmp = WOLFSSL_TRUST_FILE;
l1 = tmp; l2=NULL;
if (*tmp)
r = SSL_CTX_load_verify_locations(_ctx[sock],
tmp, NULL);
#else
r = SSL_CTX_set_default_verify_paths(_ctx[sock]);
if (1 != r) goto no_verify_load;
#endif
}
if (1 != r) {
no_verify_load:
report(stderr, GT_("Cannot load verify locations (file=\"%s\", dir=\"%s\"), error %d:\n"),
l1?l1:"(null)", l2?l2:"(null)", r);
ERR_print_errors_fp(stderr);
return -1;
}
}
_ssl_context[sock] = SSL_new(_ctx[sock]);
if(_ssl_context[sock] == NULL) {
ERR_print_errors_fp(stderr);
SSL_CTX_free(_ctx[sock]);
_ctx[sock] = NULL;
return(-1);
}
/* This static is for the verify callback */
_ssl_server_cname = servercname;
_server_label = label;
_check_fp = 1;
_check_digest = fingerprint;
_depth0ck = 0;
_firstrun = 1;
_verify_ok = 1;
_prev_err = -1;
/*
* Support SNI, some servers (googlemail) appear to require it.
*/
{
long r;
r = SSL_set_tlsext_host_name(_ssl_context[sock], servercname);
if (0 == r) {
/* handle error */
report(stderr, GT_("Warning: SSL_set_tlsext_host_name(%p, \"%s\") failed (code %#lx), trying to continue.\n"), (void *)_ssl_context[sock], servercname, r);
ERR_print_errors_fp(stderr);
}
}
#ifdef USING_WOLFSSL
{
/* workaround for WolfSSL 5.0.0 compatibility issue,
* which leaves errors in the X509 ctx passed to the
* SSL_verify_callback() in a preverify_ok==1 case,
* where OpenSSL will not return an error.
* https://github.com/wolfSSL/wolfssl/issues/4592 */
int r = wolfSSL_check_domain_name(_ssl_context[sock], servercname);
if (WOLFSSL_SUCCESS != r) {
report(stderr, GT_("fetchmail: sock %d: wolfSSL_check_domain_name(%#p, \"%s\") returned %d, trying to continue\n"),
sock, _ssl_context[sock], servercname, r);
}
}
#else
/* set host name for verification, only available since OpenSSL 1.0.2
* */
/* XXX FIXME: do we need to change the function's signature and pass the akalist to
* permit the other hostnames through SSL? */
/* https://wiki.openssl.org/index.php/Hostname_validation */
{
int r;
X509_VERIFY_PARAM *param = SSL_get0_param(_ssl_context[sock]);
X509_VERIFY_PARAM_set_hostflags(param, X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS);
if (0 == (r = X509_VERIFY_PARAM_set1_host(param, servercname, strlen(servercname)))) {
report(stderr, GT_("Warning: X509_VERIFY_PARAM_set1_host(%p, \"%s\") failed (code %#x), trying to continue.\n"),
(void *)_ssl_context[sock], servercname, r);
ERR_print_errors_fp(stderr);
}
/* OpenSSL 1.x.y: 0xMNNFFPPSL: major minor fix patch status
* OpenSSL 3.0.z: 0xMNN00PPSL: synthesized */
/* 0xMNNFFPPsL 0xMNNFFPPsL */
#if (OPENSSL_VERSION_NUMBER & 0xfffff000L) == 0x10002000L
#pragma message "enabling OpenSSL 1.0.2 X509_V_FLAG_TRUSTED_FIRST flag setter"
/* OpenSSL 1.0.2 and 1.0.2 only:
* work around Let's Encrypt Cross-Signing Certificate Expiry,
* https://www.openssl.org/blog/blog/2021/09/13/LetsEncryptRootCertExpire/
* Workaround #2 */
X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_TRUSTED_FIRST);
#endif
/* param is a pointer to internal OpenSSL data, must not be freed,
* and just goes out of scope */
}
#endif
if( mycert || mykey ) {
/* Ok... He has a certificate file defined, so lets declare it. If
* he does NOT have a separate certificate and private key file then
* assume that it's a combined key and certificate file.
*/
char buffer[256];
if( !mykey )
mykey = mycert;
if( !mycert )
mycert = mykey;
if ((!*remotename || !**remotename) && SSLCertGetCN(mycert, buffer, sizeof(buffer))) {
free(*remotename);
*remotename = xstrdup(buffer);
}
SSL_use_certificate_file(_ssl_context[sock], mycert, SSL_FILETYPE_PEM);
SSL_use_PrivateKey_file(_ssl_context[sock], mykey, SSL_FILETYPE_PEM);
}
if (SSL_set_fd(_ssl_context[sock], sock) == 0
|| (ssle_connect = SSL_connect(_ssl_context[sock])) < 1) {
int e = errno;
unsigned long ssle_err_from_get_error = SSL_get_error(_ssl_context[sock], ssle_connect);
unsigned long ssle_err_from_queue = ERR_peek_error();
ERR_print_errors_fp(stderr);
if (SSL_ERROR_SYSCALL == ssle_err_from_get_error && 0 == ssle_err_from_queue) {
if (0 == ssle_connect) {
/* FIXME: the next line was hacked in 6.4.0-rc1 so the translation strings don't change.
* The %s could be merged to the inside of GT_(). */
report(stderr, "%s: %s", servercname, GT_("Server shut down connection prematurely during SSL_connect().\n"));
} else if (ssle_connect < 0) {
report(stderr, "%s: ", servercname);
report(stderr, GT_("System error during SSL_connect(): %s\n"), e ? strerror(e) : GT_("handshake failed at protocol or connection level."));
}
}
SSL_free( _ssl_context[sock] );
_ssl_context[sock] = NULL;
SSL_CTX_free(_ctx[sock]);
_ctx[sock] = NULL;
return(-1);
}
if (outlevel >= O_VERBOSE) {
SSL_CIPHER const *sc;
int bitsmax, bitsused;
const char *vers;
vers = SSL_get_version(_ssl_context[sock]);
sc = SSL_get_current_cipher(_ssl_context[sock]);
if (!sc) {
report (stderr, GT_("Cannot obtain current SSL/TLS cipher - no session established?\n"));
} else {
bitsused = SSL_CIPHER_get_bits(sc, &bitsmax);
report(stdout, GT_("SSL/TLS: using protocol %s, cipher %s, %d/%d secret/processed bits\n"),
vers, SSL_CIPHER_get_name(sc), bitsused, bitsmax);
}
}
/* Paranoia: was the callback not called as we expected? */
if (!_depth0ck) {
report(stderr, GT_("Certificate/fingerprint verification was somehow skipped!\n"));
if (fingerprint != NULL || certck) {
if( NULL != SSLGetContext( sock ) ) {
/* Clean up the SSL stack */
SSL_shutdown( _ssl_context[sock] );
SSL_free( _ssl_context[sock] );
_ssl_context[sock] = NULL;
SSL_CTX_free(_ctx[sock]);
_ctx[sock] = NULL;
}
return(-1);
}
}
if (!certck && !fingerprint &&
(SSL_get_verify_result(_ssl_context[sock]) != X509_V_OK || !_verify_ok)) {
report(stderr, GT_("Warning: the connection is insecure, continuing anyways. (Better use --sslcertck!)\n"));
}
return(0);
}
#endif
int SockClose(int sock)
/* close a socket gracefully */
{
#ifdef SSL_ENABLE
if( NULL != SSLGetContext( sock ) ) {
/* Clean up the SSL stack */
SSL_shutdown( _ssl_context[sock] );
SSL_free( _ssl_context[sock] );
_ssl_context[sock] = NULL;
SSL_CTX_free(_ctx[sock]);
_ctx[sock] = NULL;
}
#endif
/* if there's an error closing at this point, not much we can do */
return(fm_close(sock)); /* this is guarded */
}
#ifdef __CYGWIN__
/*
* Workaround Microsoft Winsock recv/WSARecv(..., MSG_PEEK) bug.
* See http://sources.redhat.com/ml/cygwin/2001-08/msg00628.html
* for more details.
*/
static ssize_t cygwin_read(int sock, void *buf, size_t count)
{
char *bp = (char *)buf;
size_t n = 0;
if ((n = read(sock, bp, count)) == (size_t)-1)
return(-1);
if (n != count) {
size_t n2 = 0;
if (outlevel >= O_VERBOSE)
report(stdout, GT_("Cygwin socket read retry\n"));
n2 = read(sock, bp + n, count - n);
if (n2 == (size_t)-1 || n + n2 != count) {
report(stderr, GT_("Cygwin socket read retry failed!\n"));
return(-1);
}
}
return count;
}
#endif /* __CYGWIN__ */
|