3856491ecab9ae5c667ae81efb68988a73cea5b7
[openssl.git] / ssl / ssl_txt.c
1 /*
2  * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3  * Copyright 2005 Nokia. All rights reserved.
4  *
5  * Licensed under the OpenSSL license (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 #include <stdio.h>
12 #include <openssl/buffer.h>
13 #include "ssl_locl.h"
14
15 #ifndef OPENSSL_NO_STDIO
16 int SSL_SESSION_print_fp(FILE *fp, const SSL_SESSION *x)
17 {
18     BIO *b;
19     int ret;
20
21     if ((b = BIO_new(BIO_s_file())) == NULL) {
22         SSLerr(SSL_F_SSL_SESSION_PRINT_FP, ERR_R_BUF_LIB);
23         return 0;
24     }
25     BIO_set_fp(b, fp, BIO_NOCLOSE);
26     ret = SSL_SESSION_print(b, x);
27     BIO_free(b);
28     return ret;
29 }
30 #endif
31
32 int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x)
33 {
34     size_t i;
35     const char *s;
36     int istls13 = (x->ssl_version == TLS1_3_VERSION);
37
38     if (x == NULL)
39         goto err;
40     if (BIO_puts(bp, "SSL-Session:\n") <= 0)
41         goto err;
42     s = ssl_protocol_to_string(x->ssl_version);
43     if (BIO_printf(bp, "    Protocol  : %s\n", s) <= 0)
44         goto err;
45
46     if (x->cipher == NULL) {
47         if (((x->cipher_id) & 0xff000000) == 0x02000000) {
48             if (BIO_printf(bp, "    Cipher    : %06lX\n",
49                            x->cipher_id & 0xffffff) <= 0)
50                 goto err;
51         } else {
52             if (BIO_printf(bp, "    Cipher    : %04lX\n",
53                            x->cipher_id & 0xffff) <= 0)
54                 goto err;
55         }
56     } else {
57         if (BIO_printf(bp, "    Cipher    : %s\n",
58                        ((x->cipher->name == NULL) ? "unknown"
59                                                   : x->cipher->name)) <= 0)
60             goto err;
61     }
62     if (BIO_puts(bp, "    Session-ID: ") <= 0)
63         goto err;
64     for (i = 0; i < x->session_id_length; i++) {
65         if (BIO_printf(bp, "%02X", x->session_id[i]) <= 0)
66             goto err;
67     }
68     if (BIO_puts(bp, "\n    Session-ID-ctx: ") <= 0)
69         goto err;
70     for (i = 0; i < x->sid_ctx_length; i++) {
71         if (BIO_printf(bp, "%02X", x->sid_ctx[i]) <= 0)
72             goto err;
73     }
74     if (istls13) {
75         if (BIO_puts(bp, "\n    Resumption PSK: ") <= 0)
76             goto err;
77     } else if (BIO_puts(bp, "\n    Master-Key: ") <= 0)
78         goto err;
79     for (i = 0; i < x->master_key_length; i++) {
80         if (BIO_printf(bp, "%02X", x->master_key[i]) <= 0)
81             goto err;
82     }
83 #ifndef OPENSSL_NO_PSK
84     if (BIO_puts(bp, "\n    PSK identity: ") <= 0)
85         goto err;
86     if (BIO_printf(bp, "%s", x->psk_identity ? x->psk_identity : "None") <= 0)
87         goto err;
88     if (BIO_puts(bp, "\n    PSK identity hint: ") <= 0)
89         goto err;
90     if (BIO_printf
91         (bp, "%s", x->psk_identity_hint ? x->psk_identity_hint : "None") <= 0)
92         goto err;
93 #endif
94 #ifndef OPENSSL_NO_SRP
95     if (BIO_puts(bp, "\n    SRP username: ") <= 0)
96         goto err;
97     if (BIO_printf(bp, "%s", x->srp_username ? x->srp_username : "None") <= 0)
98         goto err;
99 #endif
100     if (x->ext.tick_lifetime_hint) {
101         if (BIO_printf(bp,
102                        "\n    TLS session ticket lifetime hint: %ld (seconds)",
103                        x->ext.tick_lifetime_hint) <= 0)
104             goto err;
105     }
106     if (x->ext.tick) {
107         if (BIO_puts(bp, "\n    TLS session ticket:\n") <= 0)
108             goto err;
109         /* TODO(size_t): Convert this call */
110         if (BIO_dump_indent
111             (bp, (const char *)x->ext.tick, (int)x->ext.ticklen, 4)
112             <= 0)
113             goto err;
114     }
115 #ifndef OPENSSL_NO_COMP
116     if (x->compress_meth != 0) {
117         SSL_COMP *comp = NULL;
118
119         if (!ssl_cipher_get_evp(x, NULL, NULL, NULL, NULL, &comp, 0))
120             goto err;
121         if (comp == NULL) {
122             if (BIO_printf(bp, "\n    Compression: %d", x->compress_meth) <= 0)
123                 goto err;
124         } else {
125             if (BIO_printf(bp, "\n    Compression: %d (%s)", comp->id,
126                            comp->name) <= 0)
127                 goto err;
128         }
129     }
130 #endif
131     if (x->time != 0L) {
132         if (BIO_printf(bp, "\n    Start Time: %ld", x->time) <= 0)
133             goto err;
134     }
135     if (x->timeout != 0L) {
136         if (BIO_printf(bp, "\n    Timeout   : %ld (sec)", x->timeout) <= 0)
137             goto err;
138     }
139     if (BIO_puts(bp, "\n") <= 0)
140         goto err;
141
142     if (BIO_puts(bp, "    Verify return code: ") <= 0)
143         goto err;
144     if (BIO_printf(bp, "%ld (%s)\n", x->verify_result,
145                    X509_verify_cert_error_string(x->verify_result)) <= 0)
146         goto err;
147
148     if (BIO_printf(bp, "    Extended master secret: %s\n",
149                    x->flags & SSL_SESS_FLAG_EXTMS ? "yes" : "no") <= 0)
150         goto err;
151
152     if (istls13) {
153         if (BIO_printf(bp, "    Max Early Data: %u\n",
154                        x->ext.max_early_data) <= 0)
155             goto err;
156     }
157
158     return 1;
159  err:
160     return 0;
161 }
162
163 /*
164  * print session id and master key in NSS keylog format (RSA
165  * Session-ID:<session id> Master-Key:<master key>)
166  */
167 int SSL_SESSION_print_keylog(BIO *bp, const SSL_SESSION *x)
168 {
169     size_t i;
170
171     if (x == NULL)
172         goto err;
173     if (x->session_id_length == 0 || x->master_key_length == 0)
174         goto err;
175
176     /*
177      * the RSA prefix is required by the format's definition although there's
178      * nothing RSA-specific in the output, therefore, we don't have to check if
179      * the cipher suite is based on RSA
180      */
181     if (BIO_puts(bp, "RSA ") <= 0)
182         goto err;
183
184     if (BIO_puts(bp, "Session-ID:") <= 0)
185         goto err;
186     for (i = 0; i < x->session_id_length; i++) {
187         if (BIO_printf(bp, "%02X", x->session_id[i]) <= 0)
188             goto err;
189     }
190     if (BIO_puts(bp, " Master-Key:") <= 0)
191         goto err;
192     for (i = 0; i < x->master_key_length; i++) {
193         if (BIO_printf(bp, "%02X", x->master_key[i]) <= 0)
194             goto err;
195     }
196     if (BIO_puts(bp, "\n") <= 0)
197         goto err;
198
199     return 1;
200  err:
201     return 0;
202 }