Transform string_append_listele{,_n}() to proper expanding-string triplet interface
[exim.git] / src / src / tlscert-openssl.c
1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
4
5 /* Copyright (c) Jeremy Harris 2014 - 2016 */
6
7 /* This module provides TLS (aka SSL) support for Exim using the OpenSSL
8 library. It is #included into the tls.c file when that library is used.
9 */
10
11
12 /* Heading stuff */
13
14 #include <openssl/lhash.h>
15 #include <openssl/ssl.h>
16 #include <openssl/err.h>
17 #include <openssl/rand.h>
18 #include <openssl/x509v3.h>
19
20 #if OPENSSL_VERSION_NUMBER >= 0x10100000L
21 # define EXIM_HAVE_ASN1_MACROS
22 #endif
23
24
25 /*****************************************************
26 * Export/import a certificate, binary/printable
27 *****************************************************/
28 int
29 tls_export_cert(uschar * buf, size_t buflen, void * cert)
30 {
31 BIO * bp = BIO_new(BIO_s_mem());
32 int fail;
33
34 if ((fail = PEM_write_bio_X509(bp, (X509 *)cert) ? 0 : 1))
35 log_write(0, LOG_MAIN, "TLS error in certificate export: %s",
36 ERR_error_string(ERR_get_error(), NULL));
37 else
38 {
39 char * cp = CS buf;
40 int n;
41 buflen -= 2;
42 for(;;)
43 {
44 if ((n = BIO_gets(bp, cp, (int)buflen)) <= 0) break;
45 cp += n+1;
46 buflen -= n+1;
47 cp[-2] = '\\'; cp[-1] = 'n'; /* newline->"\n" */
48 } /* compat with string_printing() */
49 *cp = '\0';
50 }
51
52 BIO_free(bp);
53 return fail;
54 }
55
56 int
57 tls_import_cert(const uschar * buf, void ** cert)
58 {
59 void * reset_point = store_get(0);
60 const uschar * cp = string_unprinting(US buf);
61 BIO * bp;
62 X509 * x = *(X509 **)cert;
63 int fail = 0;
64
65 if (x) X509_free(x);
66
67 bp = BIO_new_mem_buf(US cp, -1);
68 if (!(x = PEM_read_bio_X509(bp, NULL, 0, NULL)))
69 {
70 log_write(0, LOG_MAIN, "TLS error in certificate import: %s",
71 ERR_error_string(ERR_get_error(), NULL));
72 fail = 1;
73 }
74 else
75 *cert = (void *)x;
76 BIO_free(bp);
77 store_reset(reset_point);
78 return fail;
79 }
80
81 void
82 tls_free_cert(void ** cert)
83 {
84 X509 * x = *(X509 **)cert;
85 if (x)
86 {
87 X509_free(x);
88 *cert = NULL;
89 }
90 }
91
92
93 /*****************************************************
94 * Certificate field extraction routines
95 *****************************************************/
96
97 /* First, some internal service functions */
98
99 static uschar *
100 badalloc(void)
101 {
102 expand_string_message = US"allocation failure";
103 return NULL;
104 }
105
106 static uschar *
107 bio_string_copy(BIO * bp, int len)
108 {
109 uschar * cp = US"";
110 len = len > 0 ? (int) BIO_get_mem_data(bp, &cp) : 0;
111 cp = string_copyn(cp, len);
112 BIO_free(bp);
113 return cp;
114 }
115
116 static uschar *
117 asn1_time_copy(const ASN1_TIME * asntime, uschar * mod)
118 {
119 uschar * s = NULL;
120 BIO * bp = BIO_new(BIO_s_mem());
121 int len;
122
123 if (!bp)
124 return badalloc();
125 len = ASN1_TIME_print(bp, asntime);
126 len = len > 0 ? (int) BIO_get_mem_data(bp, CSS &s) : 0;
127
128 if (mod && Ustrcmp(mod, "raw") == 0) /* native ASN */
129 s = string_copyn(s, len);
130 else
131 {
132 struct tm tm;
133 struct tm * tm_p = &tm;
134 BOOL mod_tz = TRUE;
135 uschar * tz = to_tz(US"GMT0"); /* need to call strptime with baseline TZ */
136
137 /* Parse OpenSSL ASN1_TIME_print output. A shame there seems to
138 be no other interface for the times.
139 */
140
141 /*XXX %Z might be glibc-specific? Solaris has it, at least*/
142 /*XXX should we switch to POSIX locale for this? */
143 tm.tm_isdst = 0;
144 if (!len || !strptime(CCS s, "%b %e %T %Y %Z", &tm))
145 expand_string_message = US"failed time conversion";
146
147 else
148 {
149 time_t t = mktime(&tm); /* make the tm self-consistent */
150
151 if (mod && Ustrcmp(mod, "int") == 0) /* seconds since epoch */
152 s = string_sprintf("%u", t);
153
154 else
155 {
156 if (!timestamps_utc) /* decoded string in local TZ */
157 { /* shift to local TZ */
158 restore_tz(tz);
159 mod_tz = FALSE;
160 tm_p = localtime(&t);
161 }
162 /* "utc" is default, and rfc5280 says cert times should be Zulu */
163
164 /* convert to string in our format */
165 len = 32;
166 s = store_get(len);
167 strftime(CS s, (size_t)len, "%b %e %T %Y %z", tm_p);
168 }
169 }
170
171 if (mod_tz)
172 restore_tz(tz);
173 }
174 BIO_free(bp);
175 return s;
176 }
177
178 static uschar *
179 x509_name_copy(X509_NAME * name)
180 {
181 BIO * bp = BIO_new(BIO_s_mem());
182 int len_good;
183
184 if (!bp) return badalloc();
185
186 len_good =
187 X509_NAME_print_ex(bp, name, 0, XN_FLAG_RFC2253) >= 0
188 ? 1 : 0;
189 return bio_string_copy(bp, len_good);
190 }
191
192 /**/
193 /* Now the extractors, called from expand.c
194 Arguments:
195 cert The certificate
196 mod Optional modifiers for the operator
197
198 Return:
199 Allocated string with extracted value
200 */
201
202 uschar *
203 tls_cert_issuer(void * cert, uschar * mod)
204 {
205 uschar * cp = x509_name_copy(X509_get_issuer_name((X509 *)cert));
206 return mod ? tls_field_from_dn(cp, mod) : cp;
207 }
208
209 uschar *
210 tls_cert_not_before(void * cert, uschar * mod)
211 {
212 return asn1_time_copy(X509_get_notBefore((X509 *)cert), mod);
213 }
214
215 uschar *
216 tls_cert_not_after(void * cert, uschar * mod)
217 {
218 return asn1_time_copy(X509_get_notAfter((X509 *)cert), mod);
219 }
220
221 uschar *
222 tls_cert_serial_number(void * cert, uschar * mod)
223 {
224 uschar txt[256];
225 BIO * bp = BIO_new(BIO_s_mem());
226 int len;
227
228 if (!bp) return badalloc();
229
230 len = i2a_ASN1_INTEGER(bp, X509_get_serialNumber((X509 *)cert));
231 if (len < sizeof(txt))
232 BIO_read(bp, txt, len);
233 else
234 len = 0;
235 BIO_free(bp);
236 return string_copynlc(txt, len); /* lowercase */
237 }
238
239 uschar *
240 tls_cert_signature(void * cert, uschar * mod)
241 {
242 uschar * cp = NULL;
243 BIO * bp = BIO_new(BIO_s_mem());
244
245 if (!bp) return badalloc();
246
247 if (X509_print_ex(bp, (X509 *)cert, 0,
248 X509_FLAG_NO_HEADER | X509_FLAG_NO_VERSION | X509_FLAG_NO_SERIAL |
249 X509_FLAG_NO_SIGNAME | X509_FLAG_NO_ISSUER | X509_FLAG_NO_VALIDITY |
250 X509_FLAG_NO_SUBJECT | X509_FLAG_NO_PUBKEY | X509_FLAG_NO_EXTENSIONS |
251 /* X509_FLAG_NO_SIGDUMP is the missing one */
252 X509_FLAG_NO_AUX) == 1)
253 {
254 long len = BIO_get_mem_data(bp, &cp);
255
256 /* Strip leading "Signature Algorithm" line */
257 while (*cp && *cp != '\n') { cp++; len--; }
258
259 cp = string_copyn(cp+1, len-1);
260 }
261 BIO_free(bp);
262 return cp;
263 }
264
265 uschar *
266 tls_cert_signature_algorithm(void * cert, uschar * mod)
267 {
268 uschar * cp = NULL;
269 BIO * bp = BIO_new(BIO_s_mem());
270
271 if (!bp) return badalloc();
272
273 if (X509_print_ex(bp, (X509 *)cert, 0,
274 X509_FLAG_NO_HEADER | X509_FLAG_NO_VERSION | X509_FLAG_NO_SERIAL |
275 /* X509_FLAG_NO_SIGNAME is the missing one */
276 X509_FLAG_NO_ISSUER | X509_FLAG_NO_VALIDITY |
277 X509_FLAG_NO_SUBJECT | X509_FLAG_NO_PUBKEY | X509_FLAG_NO_EXTENSIONS |
278 X509_FLAG_NO_SIGDUMP | X509_FLAG_NO_AUX) == 1)
279 {
280 long len = BIO_get_mem_data(bp, &cp);
281
282 /* Strip leading " Signature Algorithm: " and trailing newline */
283 while (*cp && *cp != ':') { cp++; len--; }
284 do { cp++; len--; } while (*cp && *cp == ' ');
285 if (cp[len-1] == '\n') len--;
286
287 cp = string_copyn(cp, len);
288 }
289 BIO_free(bp);
290 return cp;
291 }
292
293 uschar *
294 tls_cert_subject(void * cert, uschar * mod)
295 {
296 uschar * cp = x509_name_copy(X509_get_subject_name((X509 *)cert));
297 return mod ? tls_field_from_dn(cp, mod) : cp;
298 }
299
300 uschar *
301 tls_cert_version(void * cert, uschar * mod)
302 {
303 return string_sprintf("%d", X509_get_version((X509 *)cert));
304 }
305
306 uschar *
307 tls_cert_ext_by_oid(void * cert, uschar * oid, int idx)
308 {
309 int nid = OBJ_create(CS oid, "", "");
310 int nidx = X509_get_ext_by_NID((X509 *)cert, nid, idx);
311 X509_EXTENSION * ex = X509_get_ext((X509 *)cert, nidx);
312 ASN1_OCTET_STRING * adata = X509_EXTENSION_get_data(ex);
313 BIO * bp = BIO_new(BIO_s_mem());
314 long len;
315 uschar * cp1;
316 uschar * cp2;
317 uschar * cp3;
318
319 if (!bp) return badalloc();
320
321 #ifdef EXIM_HAVE_ASN1_MACROS
322 ASN1_STRING_print(bp, adata);
323 #else
324 M_ASN1_OCTET_STRING_print(bp, adata);
325 #endif
326
327 /* binary data, DER encoded */
328 /* just dump for now */
329 len = BIO_get_mem_data(bp, &cp1);
330 cp3 = cp2 = store_get(len*3+1);
331
332 while(len)
333 {
334 sprintf(CS cp2, "%.2x ", *cp1++);
335 cp2 += 3;
336 len--;
337 }
338 cp2[-1] = '\0';
339
340 return cp3;
341 }
342
343 uschar *
344 tls_cert_subject_altname(void * cert, uschar * mod)
345 {
346 uschar * list = NULL;
347 int lsize = 0, llen = 0;
348 STACK_OF(GENERAL_NAME) * san = (STACK_OF(GENERAL_NAME) *)
349 X509_get_ext_d2i((X509 *)cert, NID_subject_alt_name, NULL, NULL);
350 uschar osep = '\n';
351 uschar * tag = US"";
352 uschar * ele;
353 int match = -1;
354 int len;
355
356 if (!san) return NULL;
357
358 while (mod && *mod)
359 {
360 if (*mod == '>' && *++mod) osep = *mod++;
361 else if (Ustrncmp(mod,"dns",3)==0) { match = GEN_DNS; mod += 3; }
362 else if (Ustrncmp(mod,"uri",3)==0) { match = GEN_URI; mod += 3; }
363 else if (Ustrncmp(mod,"mail",4)==0) { match = GEN_EMAIL; mod += 4; }
364 else mod++;
365
366 if (*mod == ',') mod++;
367 }
368
369 while (sk_GENERAL_NAME_num(san) > 0)
370 {
371 GENERAL_NAME * namePart = sk_GENERAL_NAME_pop(san);
372 if (match != -1 && match != namePart->type)
373 continue;
374 switch (namePart->type)
375 {
376 case GEN_DNS:
377 tag = US"DNS";
378 ele = ASN1_STRING_data(namePart->d.dNSName);
379 len = ASN1_STRING_length(namePart->d.dNSName);
380 break;
381 case GEN_URI:
382 tag = US"URI";
383 ele = ASN1_STRING_data(namePart->d.uniformResourceIdentifier);
384 len = ASN1_STRING_length(namePart->d.uniformResourceIdentifier);
385 break;
386 case GEN_EMAIL:
387 tag = US"MAIL";
388 ele = ASN1_STRING_data(namePart->d.rfc822Name);
389 len = ASN1_STRING_length(namePart->d.rfc822Name);
390 break;
391 default:
392 continue; /* ignore unrecognised types */
393 }
394 if (ele[len]) /* not nul-terminated */
395 ele = string_copyn(ele, len);
396
397 if (Ustrlen(ele) == len) /* ignore any with embedded nul */
398 list = string_append_listele(list, &lsize, &llen, osep,
399 match == -1 ? string_sprintf("%s=%s", tag, ele) : ele);
400 }
401
402 sk_GENERAL_NAME_free(san);
403 return list;
404 }
405
406 uschar *
407 tls_cert_ocsp_uri(void * cert, uschar * mod)
408 {
409 STACK_OF(ACCESS_DESCRIPTION) * ads = (STACK_OF(ACCESS_DESCRIPTION) *)
410 X509_get_ext_d2i((X509 *)cert, NID_info_access, NULL, NULL);
411 int adsnum = sk_ACCESS_DESCRIPTION_num(ads);
412 int i;
413 uschar sep = '\n';
414 uschar * list = NULL;
415 int size = 0, len = 0;
416
417 if (mod)
418 if (*mod == '>' && *++mod) sep = *mod++;
419
420 for (i = 0; i < adsnum; i++)
421 {
422 ACCESS_DESCRIPTION * ad = sk_ACCESS_DESCRIPTION_value(ads, i);
423
424 if (ad && OBJ_obj2nid(ad->method) == NID_ad_OCSP)
425 list = string_append_listele_n(list, &size, &len, sep,
426 ASN1_STRING_data(ad->location->d.ia5),
427 ASN1_STRING_length(ad->location->d.ia5));
428 }
429 sk_ACCESS_DESCRIPTION_free(ads);
430 return list;
431 }
432
433 uschar *
434 tls_cert_crl_uri(void * cert, uschar * mod)
435 {
436 STACK_OF(DIST_POINT) * dps = (STACK_OF(DIST_POINT) *)
437 X509_get_ext_d2i((X509 *)cert, NID_crl_distribution_points,
438 NULL, NULL);
439 DIST_POINT * dp;
440 int dpsnum = sk_DIST_POINT_num(dps);
441 int i;
442 uschar sep = '\n';
443 uschar * list = NULL;
444 int size = 0, len = 0;
445
446 if (mod)
447 if (*mod == '>' && *++mod) sep = *mod++;
448
449 if (dps) for (i = 0; i < dpsnum; i++)
450 if ((dp = sk_DIST_POINT_value(dps, i)))
451 {
452 STACK_OF(GENERAL_NAME) * names = dp->distpoint->name.fullname;
453 GENERAL_NAME * np;
454 int nnum = sk_GENERAL_NAME_num(names);
455 int j;
456
457 for (j = 0; j < nnum; j++)
458 if ( (np = sk_GENERAL_NAME_value(names, j))
459 && np->type == GEN_URI
460 )
461 list = string_append_listele_n(list, &size, &len, sep,
462 ASN1_STRING_data(np->d.uniformResourceIdentifier),
463 ASN1_STRING_length(np->d.uniformResourceIdentifier));
464 }
465 sk_DIST_POINT_free(dps);
466 return list;
467 }
468
469
470
471 /*****************************************************
472 * Certificate operator routines
473 *****************************************************/
474 uschar *
475 tls_cert_der_b64(void * cert)
476 {
477 BIO * bp = BIO_new(BIO_s_mem());
478 uschar * cp = NULL;
479
480 if (!i2d_X509_bio(bp, (X509 *)cert))
481 log_write(0, LOG_MAIN, "TLS error in certificate export: %s",
482 ERR_error_string(ERR_get_error(), NULL));
483 else
484 {
485 long len = BIO_get_mem_data(bp, &cp);
486 cp = b64encode(cp, (int)len);
487 }
488
489 BIO_free(bp);
490 return cp;
491 }
492
493
494 static uschar *
495 fingerprint(X509 * cert, const EVP_MD * fdig)
496 {
497 int j;
498 unsigned int n;
499 uschar md[EVP_MAX_MD_SIZE];
500 uschar * cp;
501
502 if (!X509_digest(cert,fdig,md,&n))
503 {
504 expand_string_message = US"tls_cert_fprt: out of mem\n";
505 return NULL;
506 }
507 cp = store_get(n*2+1);
508 for (j = 0; j < (int)n; j++) sprintf(CS cp+2*j, "%02X", md[j]);
509 return(cp);
510 }
511
512 uschar *
513 tls_cert_fprt_md5(void * cert)
514 {
515 return fingerprint((X509 *)cert, EVP_md5());
516 }
517
518 uschar *
519 tls_cert_fprt_sha1(void * cert)
520 {
521 return fingerprint((X509 *)cert, EVP_sha1());
522 }
523
524 uschar *
525 tls_cert_fprt_sha256(void * cert)
526 {
527 return fingerprint((X509 *)cert, EVP_sha256());
528 }
529
530
531 /* vi: aw ai sw=2
532 */
533 /* End of tlscert-openssl.c */