Blob


1 /* $OpenBSD: tls_conninfo.c,v 1.24 2023/11/13 10:51:49 tb Exp $ */
2 /*
3 * Copyright (c) 2015 Joel Sing <jsing@openbsd.org>
4 * Copyright (c) 2015 Bob Beck <beck@openbsd.org>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
19 #include "config.h"
21 #include <stdio.h>
22 #include <string.h>
24 #include <openssl/x509.h>
26 #include <tls.h>
27 #include "tls_internal.h"
29 int ASN1_time_tm_clamp_notafter(struct tm *tm);
31 int
32 tls_hex_string(const unsigned char *in, size_t inlen, char **out,
33 size_t *outlen)
34 {
35 static const char hex[] = "0123456789abcdef";
36 size_t i, len;
37 char *p;
39 if (outlen != NULL)
40 *outlen = 0;
42 if (inlen >= SIZE_MAX)
43 return (-1);
44 if ((*out = reallocarray(NULL, inlen + 1, 2)) == NULL)
45 return (-1);
47 p = *out;
48 len = 0;
49 for (i = 0; i < inlen; i++) {
50 p[len++] = hex[(in[i] >> 4) & 0x0f];
51 p[len++] = hex[in[i] & 0x0f];
52 }
53 p[len++] = 0;
55 if (outlen != NULL)
56 *outlen = len;
58 return (0);
59 }
61 static int
62 tls_get_peer_cert_hash(struct tls *ctx, char **hash)
63 {
64 *hash = NULL;
65 if (ctx->ssl_peer_cert == NULL)
66 return (0);
68 if (tls_cert_hash(ctx->ssl_peer_cert, hash) == -1) {
69 tls_set_errorx(ctx, "unable to compute peer certificate hash - out of memory");
70 *hash = NULL;
71 return -1;
72 }
73 return 0;
74 }
76 static int
77 tls_get_peer_cert_issuer(struct tls *ctx, char **issuer)
78 {
79 X509_NAME *name = NULL;
81 *issuer = NULL;
82 if (ctx->ssl_peer_cert == NULL)
83 return (-1);
84 if ((name = X509_get_issuer_name(ctx->ssl_peer_cert)) == NULL)
85 return (-1);
86 *issuer = X509_NAME_oneline(name, 0, 0);
87 if (*issuer == NULL)
88 return (-1);
89 return (0);
90 }
92 static int
93 tls_get_peer_cert_subject(struct tls *ctx, char **subject)
94 {
95 X509_NAME *name = NULL;
97 *subject = NULL;
98 if (ctx->ssl_peer_cert == NULL)
99 return (-1);
100 if ((name = X509_get_subject_name(ctx->ssl_peer_cert)) == NULL)
101 return (-1);
102 *subject = X509_NAME_oneline(name, 0, 0);
103 if (*subject == NULL)
104 return (-1);
105 return (0);
108 static int
109 tls_get_peer_cert_times(struct tls *ctx, time_t *notbefore,
110 time_t *notafter)
112 struct tm before_tm, after_tm;
113 ASN1_TIME *before, *after;
115 if (ctx->ssl_peer_cert == NULL)
116 return (-1);
118 if ((before = X509_get_notBefore(ctx->ssl_peer_cert)) == NULL)
119 goto err;
120 if ((after = X509_get_notAfter(ctx->ssl_peer_cert)) == NULL)
121 goto err;
122 if (!ASN1_TIME_to_tm(before, &before_tm))
123 goto err;
124 if (!ASN1_TIME_to_tm(after, &after_tm))
125 goto err;
126 if (!ASN1_time_tm_clamp_notafter(&after_tm))
127 goto err;
128 if ((*notbefore = timegm(&before_tm)) == -1)
129 goto err;
130 if ((*notafter = timegm(&after_tm)) == -1)
131 goto err;
133 return (0);
135 err:
136 return (-1);
139 static int
140 tls_get_peer_cert_info(struct tls *ctx)
142 if (ctx->ssl_peer_cert == NULL)
143 return (0);
145 if (tls_get_peer_cert_hash(ctx, &ctx->conninfo->hash) == -1)
146 goto err;
147 if (tls_get_peer_cert_subject(ctx, &ctx->conninfo->subject) == -1)
148 goto err;
149 if (tls_get_peer_cert_issuer(ctx, &ctx->conninfo->issuer) == -1)
150 goto err;
151 if (tls_get_peer_cert_times(ctx, &ctx->conninfo->notbefore,
152 &ctx->conninfo->notafter) == -1)
153 goto err;
155 return (0);
157 err:
158 return (-1);
161 static int
162 tls_conninfo_alpn_proto(struct tls *ctx)
164 const unsigned char *p;
165 unsigned int len;
167 free(ctx->conninfo->alpn);
168 ctx->conninfo->alpn = NULL;
170 SSL_get0_alpn_selected(ctx->ssl_conn, &p, &len);
171 if (len > 0) {
172 if ((ctx->conninfo->alpn = malloc(len + 1)) == NULL)
173 return (-1);
174 memcpy(ctx->conninfo->alpn, p, len);
175 ctx->conninfo->alpn[len] = '\0';
178 return (0);
181 static int
182 tls_conninfo_cert_pem(struct tls *ctx)
184 int i, rv = -1;
185 BIO *membio = NULL;
186 BUF_MEM *bptr = NULL;
188 if (ctx->ssl_peer_cert == NULL)
189 return 0;
190 if ((membio = BIO_new(BIO_s_mem()))== NULL)
191 goto err;
193 /*
194 * We have to write the peer cert out separately, because
195 * the certificate chain may or may not contain it.
196 */
197 if (!PEM_write_bio_X509(membio, ctx->ssl_peer_cert))
198 goto err;
199 for (i = 0; i < sk_X509_num(ctx->ssl_peer_chain); i++) {
200 X509 *chaincert = sk_X509_value(ctx->ssl_peer_chain, i);
201 if (chaincert != ctx->ssl_peer_cert &&
202 !PEM_write_bio_X509(membio, chaincert))
203 goto err;
206 BIO_get_mem_ptr(membio, &bptr);
207 free(ctx->conninfo->peer_cert);
208 ctx->conninfo->peer_cert_len = 0;
209 if ((ctx->conninfo->peer_cert = malloc(bptr->length)) == NULL)
210 goto err;
211 ctx->conninfo->peer_cert_len = bptr->length;
212 memcpy(ctx->conninfo->peer_cert, bptr->data,
213 ctx->conninfo->peer_cert_len);
215 /* BIO_free() will kill BUF_MEM - because we have not set BIO_NOCLOSE */
216 rv = 0;
217 err:
218 BIO_free(membio);
219 return rv;
222 static int
223 tls_conninfo_session(struct tls *ctx)
225 ctx->conninfo->session_resumed = SSL_session_reused(ctx->ssl_conn);
227 return 0;
230 int
231 tls_conninfo_populate(struct tls *ctx)
233 const char *tmp;
235 tls_conninfo_free(ctx->conninfo);
237 if ((ctx->conninfo = calloc(1, sizeof(struct tls_conninfo))) == NULL) {
238 tls_set_errorx(ctx, "out of memory");
239 goto err;
242 if (tls_conninfo_alpn_proto(ctx) == -1)
243 goto err;
245 if ((tmp = SSL_get_cipher(ctx->ssl_conn)) == NULL)
246 goto err;
247 if ((ctx->conninfo->cipher = strdup(tmp)) == NULL)
248 goto err;
249 ctx->conninfo->cipher_strength = SSL_get_cipher_bits(ctx->ssl_conn, NULL);
251 if (ctx->servername != NULL) {
252 if ((ctx->conninfo->servername =
253 strdup(ctx->servername)) == NULL)
254 goto err;
257 if ((tmp = SSL_get_version(ctx->ssl_conn)) == NULL)
258 goto err;
259 if ((ctx->conninfo->version = strdup(tmp)) == NULL)
260 goto err;
262 if (tls_get_peer_cert_info(ctx) == -1)
263 goto err;
265 if (tls_conninfo_cert_pem(ctx) == -1)
266 goto err;
268 if (tls_conninfo_session(ctx) == -1)
269 goto err;
271 return (0);
273 err:
274 tls_conninfo_free(ctx->conninfo);
275 ctx->conninfo = NULL;
277 return (-1);
280 void
281 tls_conninfo_free(struct tls_conninfo *conninfo)
283 if (conninfo == NULL)
284 return;
286 free(conninfo->alpn);
287 free(conninfo->cipher);
288 free(conninfo->servername);
289 free(conninfo->version);
291 free(conninfo->hash);
292 free(conninfo->issuer);
293 free(conninfo->subject);
295 free(conninfo->peer_cert);
297 free(conninfo);
300 const char *
301 tls_conn_alpn_selected(struct tls *ctx)
303 if (ctx->conninfo == NULL)
304 return (NULL);
305 return (ctx->conninfo->alpn);
308 const char *
309 tls_conn_cipher(struct tls *ctx)
311 if (ctx->conninfo == NULL)
312 return (NULL);
313 return (ctx->conninfo->cipher);
316 int
317 tls_conn_cipher_strength(struct tls *ctx)
319 if (ctx->conninfo == NULL)
320 return (0);
321 return (ctx->conninfo->cipher_strength);
324 const char *
325 tls_conn_servername(struct tls *ctx)
327 if (ctx->conninfo == NULL)
328 return (NULL);
329 return (ctx->conninfo->servername);
332 int
333 tls_conn_session_resumed(struct tls *ctx)
335 if (ctx->conninfo == NULL)
336 return (0);
337 return (ctx->conninfo->session_resumed);
340 const char *
341 tls_conn_version(struct tls *ctx)
343 if (ctx->conninfo == NULL)
344 return (NULL);
345 return (ctx->conninfo->version);