-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathssl.c
286 lines (257 loc) · 8.24 KB
/
ssl.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
#include "tintin.h"
#include <sys/stat.h>
#include "protos/print.h"
#ifdef HAVE_GNUTLS
static gnutls_certificate_credentials_t ssl_cred=0;
static int ssl_check_cert(gnutls_session_t sslses, const char *host, struct session *oldses);
gnutls_session_t ssl_negotiate(int sock, const char *host, struct session *oldses)
{
gnutls_session_t sslses;
int ret;
if (!ssl_cred)
{
gnutls_global_init();
gnutls_certificate_allocate_credentials(&ssl_cred);
}
gnutls_init(&sslses, GNUTLS_CLIENT);
gnutls_set_default_priority(sslses);
gnutls_credentials_set(sslses, GNUTLS_CRD_CERTIFICATE, ssl_cred);
gnutls_transport_set_ptr(sslses, (gnutls_transport_ptr_t)(intptr_t)sock);
do
{
ret=gnutls_handshake(sslses);
} while (ret==GNUTLS_E_AGAIN || ret==GNUTLS_E_INTERRUPTED);
if (ret)
{
tintin_eprintf(oldses, "#SSL handshake failed: %s", gnutls_strerror(ret));
gnutls_deinit(sslses);
return 0;
}
if (!ssl_check_cert(sslses, host, oldses))
{
gnutls_deinit(sslses);
return 0;
}
return sslses;
}
static bool cert_file(const char *name, char *respath)
{
char fname[BUFFER_SIZE], *fn;
const char *home;
if (!*name || *name=='.') // no valid hostname starts with a dot
return false;
fn=fname;
while (1)
{
if (!*name)
break;
#ifdef WIN32
else if (*name==':')
{
name++;
*fn++='.';
}
#endif
else if (is7alnum(*name) || *name=='-' || *name=='.' || *name=='_')
*fn++=*name++;
else
return false;
}
if (*(fn-1)=='.') // no valid hostname ends with a dot, either
return false;
*fn=0;
if (!(home=getenv("HOME")))
home=".";
snprintf(respath, BUFFER_SIZE, "%s/%s/%s/%.253s.crt", home, CONFIG_DIR, CERT_DIR, fname);
return true;
}
static void load_cert(gnutls_x509_crt_t *cert, const char *name)
{
# define BIGBUFSIZE 65536
char buf[BIGBUFSIZE];
FILE *f;
gnutls_datum_t bptr;
if (!cert_file(name, buf))
return;
if (!(f=fopen(buf, "r")))
return;
bptr.size=fread(buf, 1, BIGBUFSIZE, f);
bptr.data=(unsigned char*)buf;
fclose(f);
gnutls_x509_crt_init(cert);
if (gnutls_x509_crt_import(*cert, &bptr, GNUTLS_X509_FMT_PEM))
{
gnutls_x509_crt_deinit(*cert);
*cert=0;
}
}
static void save_cert(gnutls_x509_crt_t cert, const char *name, bool new, struct session *oldses)
{
char fname[BUFFER_SIZE], buf[BIGBUFSIZE];
const char *home;
FILE *f;
size_t len;
len=BIGBUFSIZE;
if (gnutls_x509_crt_export(cert, GNUTLS_X509_FMT_PEM, buf, &len))
return;
if (!(home=getenv("HOME")))
home=".";
snprintf(fname, BUFFER_SIZE, "%s/%s", home, CONFIG_DIR);
if (mkdir(fname, 0777) && errno!=EEXIST)
{
tintin_eprintf(oldses, "#Cannot create config dir (%s): %s", fname, strerror(errno));
return;
}
snprintf(fname, BUFFER_SIZE, "%s/%s/%s", home, CONFIG_DIR, CERT_DIR);
if (mkdir(fname, 0755) && errno!=EEXIST)
{
tintin_eprintf(oldses, "#Cannot create certs dir (%s): %s", fname, strerror(errno));
return;
}
if (!cert_file(name, fname))
return;
if (new)
tintin_printf(oldses, "#It is the first time you connect to this server.");
tintin_printf(oldses, "#Saving server certificate to %s", fname);
if (!(f=fopen(fname, "w")))
{
tintin_eprintf(oldses, "#Save failed: %s", strerror(errno));
return;
}
if (fwrite(buf, 1, len, f)!=len)
{
tintin_eprintf(oldses, "#Save failed: %s", strerror(errno));
fclose(f);
unlink(fname);
return;
}
if (fclose(f))
{
tintin_eprintf(oldses, "#Save failed: %s", strerror(errno));
unlink(fname);
}
}
static bool diff_certs(gnutls_x509_crt_t c1, gnutls_x509_crt_t c2)
{
char buf1[BIGBUFSIZE], buf2[BIGBUFSIZE];
size_t len1, len2;
len1=len2=BIGBUFSIZE;
if (gnutls_x509_crt_export(c1, GNUTLS_X509_FMT_DER, buf1, &len1))
return true;
if (gnutls_x509_crt_export(c2, GNUTLS_X509_FMT_DER, buf2, &len2))
return true;
if (len1!=len2)
return true;
return memcmp(buf1, buf2, len1);
}
static int ssl_check_cert(gnutls_session_t sslses, const char *host, struct session *oldses)
{
char fname[BUFFER_SIZE], buf2[BUFFER_SIZE], *bptr;
time_t t;
gnutls_x509_crt_t cert, oldcert;
const gnutls_datum_t *cert_list;
unsigned int cert_list_size;
const char *err=0;
oldcert=0;
load_cert(&oldcert, host);
if (gnutls_certificate_type_get(sslses)!=GNUTLS_CRT_X509)
{
err="server doesn't use x509 -> no key retention.";
goto nocert;
}
if (!(cert_list = gnutls_certificate_get_peers(sslses, &cert_list_size)))
{
err="server has no x509 certificate -> no key retention.";
goto nocert;
}
gnutls_x509_crt_init(&cert);
if (gnutls_x509_crt_import(cert, &cert_list[0], GNUTLS_X509_FMT_DER)<0)
{
err="server's certificate is invalid.";
goto badcert;
}
t=time(0);
if (gnutls_x509_crt_get_activation_time(cert)>t)
{
ctime_r(&t, buf2);
if ((bptr=strchr(buf2, '\n')))
*bptr=0;
snprintf(fname, BUFFER_SIZE, "certificate activation time is in the future (%.128s).",
buf2);
err=fname;
}
if (gnutls_x509_crt_get_expiration_time(cert)<t)
{
ctime_r(&t, buf2);
if ((bptr=strchr(buf2, '\n')))
*bptr=0;
snprintf(fname, BUFFER_SIZE, "certificate has expired (on %.128s).",
buf2);
err=fname;
}
if (!oldcert)
save_cert(cert, host, 1, oldses);
else if (diff_certs(cert, oldcert))
{
t-=gnutls_x509_crt_get_expiration_time(oldcert);
if (err)
{
snprintf(buf2, BUFFER_SIZE, "certificate mismatch, and new %.128s",
err);
err=buf2;
}
else if (t<-7*24*3600)
err = "the server certificate is different from the saved one.";
else
{
tintin_printf(oldses, (t>0)?
"#SSL notice: server certificate has changed, but the old one was expired.":
"#SSL notice: server certificate has changed, but the old one was about to expire.");
/* Replace the old cert */
save_cert(cert, host, 0, oldses);
gnutls_x509_crt_deinit(oldcert);
oldcert=0;
}
}
else
{
/* All ok */
gnutls_x509_crt_deinit(oldcert);
oldcert=0;
}
badcert:
gnutls_x509_crt_deinit(cert);
nocert:
if (oldcert)
gnutls_x509_crt_deinit(oldcert);
if (!err)
return 1;
if (oldcert)
{
tintin_eprintf(oldses, "#SSL error: %s", err);
tintin_eprintf(oldses, "############################################################");
tintin_eprintf(oldses, "##################### SECURITY ALERT #######################");
tintin_eprintf(oldses, "############################################################");
tintin_eprintf(oldses, "# It's likely you're under a Man-in-the-Middle attack. #");
tintin_eprintf(oldses, "# Someone may be trying to intercept your connection. #");
tintin_eprintf(oldses, "# #");
tintin_eprintf(oldses, "# Another explanation is that the server's settings were #");
tintin_eprintf(oldses, "# changed in an unexpected way. You can choose to avoid #");
tintin_eprintf(oldses, "# connecting, investigate this or blindly trust that the #");
tintin_eprintf(oldses, "# server is kosher. To continue, please delete the file: #");
if (cert_file(host, fname))
tintin_eprintf(oldses, "# %-57s#", fname);
else
{} /* can't happen */
tintin_eprintf(oldses, "############################################################");
tintin_eprintf(oldses, "#Aborting connection!");
return 0;
}
else
{
tintin_printf(oldses, "#SSL warning: %s", err);
tintin_printf(oldses, "#You may be vulnerable to Man-in-the-Middle attacks.");
return 2;
}
}
#endif