sess_id.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  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.
  7. *
  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).
  14. *
  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.
  21. *
  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 :-).
  36. * 4. If you include any Windows specific code (or a derivative thereof) from
  37. * the apps directory (application code) you must include an acknowledgement:
  38. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  39. *
  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.
  51. *
  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. #include <stdio.h>
  58. #include <stdlib.h>
  59. #include <string.h>
  60. #include "apps.h"
  61. #include <openssl/bio.h>
  62. #include <openssl/err.h>
  63. #include <openssl/x509.h>
  64. #include <openssl/pem.h>
  65. #include <openssl/ssl.h>
  66. typedef enum OPTION_choice {
  67. OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
  68. OPT_INFORM, OPT_OUTFORM, OPT_IN, OPT_OUT,
  69. OPT_TEXT, OPT_CERT, OPT_NOOUT, OPT_CONTEXT
  70. } OPTION_CHOICE;
  71. OPTIONS sess_id_options[] = {
  72. {"help", OPT_HELP, '-', "Display this summary"},
  73. {"inform", OPT_INFORM, 'F', "Input format - default PEM (DER or PEM)"},
  74. {"outform", OPT_OUTFORM, 'f',
  75. "Output format - default PEM (PEM, DER or NSS)"},
  76. {"in", OPT_IN, 's', "Input file - default stdin"},
  77. {"out", OPT_OUT, 's', "Output file - default stdout"},
  78. {"text", OPT_TEXT, '-', "Print ssl session id details"},
  79. {"cert", OPT_CERT, '-', "Output certificate "},
  80. {"noout", OPT_NOOUT, '-', "Don't output the encoded session info"},
  81. {"context", OPT_CONTEXT, 's', "Set the session ID context"},
  82. {NULL}
  83. };
  84. static SSL_SESSION *load_sess_id(char *file, int format);
  85. int sess_id_main(int argc, char **argv)
  86. {
  87. SSL_SESSION *x = NULL;
  88. X509 *peer = NULL;
  89. BIO *out = NULL;
  90. char *infile = NULL, *outfile = NULL, *context = NULL, *prog;
  91. int informat = FORMAT_PEM, outformat = FORMAT_PEM;
  92. int cert = 0, noout = 0, text = 0, ret = 1, i, num = 0;
  93. OPTION_CHOICE o;
  94. prog = opt_init(argc, argv, sess_id_options);
  95. while ((o = opt_next()) != OPT_EOF) {
  96. switch (o) {
  97. case OPT_EOF:
  98. case OPT_ERR:
  99. opthelp:
  100. BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
  101. goto end;
  102. case OPT_HELP:
  103. opt_help(sess_id_options);
  104. ret = 0;
  105. goto end;
  106. case OPT_INFORM:
  107. if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat))
  108. goto opthelp;
  109. break;
  110. case OPT_OUTFORM:
  111. if (!opt_format(opt_arg(), OPT_FMT_PEMDER | OPT_FMT_NSS,
  112. &outformat))
  113. goto opthelp;
  114. break;
  115. case OPT_IN:
  116. infile = opt_arg();
  117. break;
  118. case OPT_OUT:
  119. outfile = opt_arg();
  120. break;
  121. case OPT_TEXT:
  122. text = ++num;
  123. break;
  124. case OPT_CERT:
  125. cert = ++num;
  126. break;
  127. case OPT_NOOUT:
  128. noout = ++num;
  129. break;
  130. case OPT_CONTEXT:
  131. context = opt_arg();
  132. break;
  133. }
  134. }
  135. argc = opt_num_rest();
  136. argv = opt_rest();
  137. x = load_sess_id(infile, informat);
  138. if (x == NULL) {
  139. goto end;
  140. }
  141. peer = SSL_SESSION_get0_peer(x);
  142. if (context) {
  143. size_t ctx_len = strlen(context);
  144. if (ctx_len > SSL_MAX_SID_CTX_LENGTH) {
  145. BIO_printf(bio_err, "Context too long\n");
  146. goto end;
  147. }
  148. if (!SSL_SESSION_set1_id_context(x, (unsigned char *)context,
  149. ctx_len)) {
  150. BIO_printf(bio_err, "Error setting id context\n");
  151. goto end;
  152. }
  153. }
  154. if (!noout || text) {
  155. out = bio_open_default(outfile, 'w', outformat);
  156. if (out == NULL)
  157. goto end;
  158. }
  159. if (text) {
  160. SSL_SESSION_print(out, x);
  161. if (cert) {
  162. if (peer == NULL)
  163. BIO_puts(out, "No certificate present\n");
  164. else
  165. X509_print(out, peer);
  166. }
  167. }
  168. if (!noout && !cert) {
  169. if (outformat == FORMAT_ASN1)
  170. i = i2d_SSL_SESSION_bio(out, x);
  171. else if (outformat == FORMAT_PEM)
  172. i = PEM_write_bio_SSL_SESSION(out, x);
  173. else if (outformat == FORMAT_NSS)
  174. i = SSL_SESSION_print_keylog(out, x);
  175. else {
  176. BIO_printf(bio_err, "bad output format specified for outfile\n");
  177. goto end;
  178. }
  179. if (!i) {
  180. BIO_printf(bio_err, "unable to write SSL_SESSION\n");
  181. goto end;
  182. }
  183. } else if (!noout && (peer != NULL)) { /* just print the certificate */
  184. if (outformat == FORMAT_ASN1)
  185. i = (int)i2d_X509_bio(out, peer);
  186. else if (outformat == FORMAT_PEM)
  187. i = PEM_write_bio_X509(out, peer);
  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 X509\n");
  194. goto end;
  195. }
  196. }
  197. ret = 0;
  198. end:
  199. BIO_free_all(out);
  200. SSL_SESSION_free(x);
  201. return (ret);
  202. }
  203. static SSL_SESSION *load_sess_id(char *infile, int format)
  204. {
  205. SSL_SESSION *x = NULL;
  206. BIO *in = NULL;
  207. in = bio_open_default(infile, 'r', format);
  208. if (in == NULL)
  209. goto end;
  210. if (format == FORMAT_ASN1)
  211. x = d2i_SSL_SESSION_bio(in, NULL);
  212. else
  213. x = PEM_read_bio_SSL_SESSION(in, NULL, NULL, NULL);
  214. if (x == NULL) {
  215. BIO_printf(bio_err, "unable to load SSL_SESSION\n");
  216. ERR_print_errors(bio_err);
  217. goto end;
  218. }
  219. end:
  220. BIO_free(in);
  221. return (x);
  222. }