]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/sess_id.c
argv was set but unused
[thirdparty/openssl.git] / apps / sess_id.c
CommitLineData
58964a49 1/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
0f113f3e 7 *
d02b48c6
RE
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
0f113f3e 14 *
d02b48c6
RE
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
0f113f3e 21 *
d02b48c6
RE
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
0f113f3e 36 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 39 *
d02b48c6
RE
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
0f113f3e 51 *
d02b48c6
RE
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57
58#include <stdio.h>
59#include <stdlib.h>
60#include <string.h>
61#include "apps.h"
ec577822
BM
62#include <openssl/bio.h>
63#include <openssl/err.h>
64#include <openssl/x509.h>
65#include <openssl/pem.h>
66#include <openssl/ssl.h>
d02b48c6 67
7e1b7485
RS
68typedef enum OPTION_choice {
69 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
70 OPT_INFORM, OPT_OUTFORM, OPT_IN, OPT_OUT,
71 OPT_TEXT, OPT_CERT, OPT_NOOUT, OPT_CONTEXT
72} OPTION_CHOICE;
73
74OPTIONS sess_id_options[] = {
75 {"help", OPT_HELP, '-', "Display this summary"},
76 {"inform", OPT_INFORM, 'F', "Input format - default PEM (DER or PEM)"},
1446f72b 77 {"outform", OPT_OUTFORM, 'f',
7e1b7485
RS
78 "Output format - default PEM (PEM, DER or NSS)"},
79 {"in", OPT_IN, 's', "Input file - default stdin"},
80 {"out", OPT_OUT, 's', "Output file - default stdout"},
81 {"text", OPT_TEXT, '-', "Print ssl session id details"},
82 {"cert", OPT_CERT, '-', "Output certificate "},
83 {"noout", OPT_NOOUT, '-', "Don't output the encoded session info"},
84 {"context", OPT_CONTEXT, 's', "Set the session ID context"},
85 {NULL}
d02b48c6
RE
86};
87
d02b48c6 88static SSL_SESSION *load_sess_id(char *file, int format);
667ac4ec 89
7e1b7485 90int sess_id_main(int argc, char **argv)
0f113f3e
MC
91{
92 SSL_SESSION *x = NULL;
93 X509 *peer = NULL;
0f113f3e 94 BIO *out = NULL;
7e1b7485
RS
95 char *infile = NULL, *outfile = NULL, *context = NULL, *prog;
96 int informat = FORMAT_PEM, outformat = FORMAT_PEM;
97 int cert = 0, noout = 0, text = 0, ret = 1, i, num = 0;
98 OPTION_CHOICE o;
99
100 prog = opt_init(argc, argv, sess_id_options);
101 while ((o = opt_next()) != OPT_EOF) {
102 switch (o) {
103 case OPT_EOF:
104 case OPT_ERR:
105 opthelp:
106 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
107 goto end;
108 case OPT_HELP:
109 opt_help(sess_id_options);
110 ret = 0;
111 goto end;
112 case OPT_INFORM:
113 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat))
114 goto opthelp;
115 break;
116 case OPT_OUTFORM:
1446f72b
MC
117 if (!opt_format(opt_arg(), OPT_FMT_PEMDER | OPT_FMT_NSS,
118 &outformat))
7e1b7485
RS
119 goto opthelp;
120 break;
121 case OPT_IN:
122 infile = opt_arg();
123 break;
124 case OPT_OUT:
125 outfile = opt_arg();
126 break;
127 case OPT_TEXT:
0f113f3e 128 text = ++num;
7e1b7485
RS
129 break;
130 case OPT_CERT:
0f113f3e 131 cert = ++num;
7e1b7485
RS
132 break;
133 case OPT_NOOUT:
0f113f3e 134 noout = ++num;
7e1b7485
RS
135 break;
136 case OPT_CONTEXT:
137 context = opt_arg();
0f113f3e
MC
138 break;
139 }
0f113f3e 140 }
7e1b7485 141 argc = opt_num_rest();
03358517
KR
142 if (argc != 0)
143 goto opthelp;
d02b48c6 144
0f113f3e
MC
145 x = load_sess_id(infile, informat);
146 if (x == NULL) {
147 goto end;
148 }
149 peer = SSL_SESSION_get0_peer(x);
b4cadc6e 150
0f113f3e
MC
151 if (context) {
152 size_t ctx_len = strlen(context);
153 if (ctx_len > SSL_MAX_SID_CTX_LENGTH) {
154 BIO_printf(bio_err, "Context too long\n");
155 goto end;
156 }
7e1b7485
RS
157 if (!SSL_SESSION_set1_id_context(x, (unsigned char *)context,
158 ctx_len)) {
ac59d705
MC
159 BIO_printf(bio_err, "Error setting id context\n");
160 goto end;
161 }
0f113f3e 162 }
d02b48c6 163
0f113f3e 164 if (!noout || text) {
bdd58d98 165 out = bio_open_default(outfile, 'w', outformat);
7e1b7485 166 if (out == NULL)
0f113f3e 167 goto end;
0f113f3e 168 }
d02b48c6 169
0f113f3e
MC
170 if (text) {
171 SSL_SESSION_print(out, x);
d02b48c6 172
0f113f3e
MC
173 if (cert) {
174 if (peer == NULL)
175 BIO_puts(out, "No certificate present\n");
176 else
177 X509_print(out, peer);
178 }
179 }
d02b48c6 180
0f113f3e
MC
181 if (!noout && !cert) {
182 if (outformat == FORMAT_ASN1)
183 i = i2d_SSL_SESSION_bio(out, x);
184 else if (outformat == FORMAT_PEM)
185 i = PEM_write_bio_SSL_SESSION(out, x);
186 else if (outformat == FORMAT_NSS)
187 i = SSL_SESSION_print_keylog(out, x);
188 else {
189 BIO_printf(bio_err, "bad output format specified for outfile\n");
190 goto end;
191 }
192 if (!i) {
193 BIO_printf(bio_err, "unable to write SSL_SESSION\n");
194 goto end;
195 }
196 } else if (!noout && (peer != NULL)) { /* just print the certificate */
197 if (outformat == FORMAT_ASN1)
198 i = (int)i2d_X509_bio(out, peer);
199 else if (outformat == FORMAT_PEM)
200 i = PEM_write_bio_X509(out, peer);
201 else {
202 BIO_printf(bio_err, "bad output format specified for outfile\n");
203 goto end;
204 }
205 if (!i) {
206 BIO_printf(bio_err, "unable to write X509\n");
207 goto end;
208 }
209 }
210 ret = 0;
211 end:
ca3a82c3 212 BIO_free_all(out);
25aaa98a 213 SSL_SESSION_free(x);
7e1b7485 214 return (ret);
0f113f3e 215}
d02b48c6 216
6b691a5c 217static SSL_SESSION *load_sess_id(char *infile, int format)
0f113f3e
MC
218{
219 SSL_SESSION *x = NULL;
220 BIO *in = NULL;
d02b48c6 221
bdd58d98 222 in = bio_open_default(infile, 'r', format);
7e1b7485 223 if (in == NULL)
0f113f3e 224 goto end;
0f113f3e
MC
225 if (format == FORMAT_ASN1)
226 x = d2i_SSL_SESSION_bio(in, NULL);
7e1b7485 227 else
0f113f3e 228 x = PEM_read_bio_SSL_SESSION(in, NULL, NULL, NULL);
0f113f3e
MC
229 if (x == NULL) {
230 BIO_printf(bio_err, "unable to load SSL_SESSION\n");
231 ERR_print_errors(bio_err);
232 goto end;
233 }
d02b48c6 234
0f113f3e 235 end:
ca3a82c3 236 BIO_free(in);
0f113f3e
MC
237 return (x);
238}