sess_id.c 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. /* apps/sess_id.c */
  2. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young (eay@cryptsoft.com).
  7. * The implementation was written so as to conform with Netscapes SSL.
  8. *
  9. * This library is free for commercial and non-commercial use as long as
  10. * the following conditions are aheared to. The following conditions
  11. * apply to all code found in this distribution, be it the RC4, RSA,
  12. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  13. * included with this distribution is covered by the same copyright terms
  14. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  15. *
  16. * Copyright remains Eric Young's, and as such any Copyright notices in
  17. * the code are not to be removed.
  18. * If this package is used in a product, Eric Young should be given attribution
  19. * as the author of the parts of the library used.
  20. * This can be in the form of a textual message at program startup or
  21. * in documentation (online or textual) provided with the package.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in the
  30. * documentation and/or other materials provided with the distribution.
  31. * 3. All advertising materials mentioning features or use of this software
  32. * must display the following acknowledgement:
  33. * "This product includes cryptographic software written by
  34. * Eric Young (eay@cryptsoft.com)"
  35. * The word 'cryptographic' can be left out if the rouines from the library
  36. * being used are not cryptographic related :-).
  37. * 4. If you include any Windows specific code (or a derivative thereof) from
  38. * the apps directory (application code) you must include an acknowledgement:
  39. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  40. *
  41. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. * SUCH DAMAGE.
  52. *
  53. * The licence and distribution terms for any publically available version or
  54. * derivative of this code cannot be changed. i.e. this code cannot simply be
  55. * copied and put under another distribution licence
  56. * [including the GNU Public Licence.]
  57. */
  58. #include <stdio.h>
  59. #include <stdlib.h>
  60. #include <string.h>
  61. #include "apps.h"
  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>
  67. #undef PROG
  68. #define PROG sess_id_main
  69. static const char *sess_id_usage[] = {
  70. "usage: sess_id args\n",
  71. "\n",
  72. " -inform arg - input format - default PEM (DER or PEM)\n",
  73. " -outform arg - output format - default PEM\n",
  74. " -in arg - input file - default stdin\n",
  75. " -out arg - output file - default stdout\n",
  76. " -text - print ssl session id details\n",
  77. " -cert - output certificate \n",
  78. " -noout - no CRL output\n",
  79. " -context arg - set the session ID context\n",
  80. NULL
  81. };
  82. static SSL_SESSION *load_sess_id(char *file, int format);
  83. int MAIN(int, char **);
  84. int MAIN(int argc, char **argv)
  85. {
  86. SSL_SESSION *x = NULL;
  87. int ret = 1, i, num, badops = 0;
  88. BIO *out = NULL;
  89. int informat, outformat;
  90. char *infile = NULL, *outfile = NULL, *context = NULL;
  91. int cert = 0, noout = 0, text = 0;
  92. const char **pp;
  93. apps_startup();
  94. if (bio_err == NULL)
  95. if ((bio_err = BIO_new(BIO_s_file())) != NULL)
  96. BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
  97. informat = FORMAT_PEM;
  98. outformat = FORMAT_PEM;
  99. argc--;
  100. argv++;
  101. num = 0;
  102. while (argc >= 1) {
  103. if (strcmp(*argv, "-inform") == 0) {
  104. if (--argc < 1)
  105. goto bad;
  106. informat = str2fmt(*(++argv));
  107. } else if (strcmp(*argv, "-outform") == 0) {
  108. if (--argc < 1)
  109. goto bad;
  110. outformat = str2fmt(*(++argv));
  111. } else if (strcmp(*argv, "-in") == 0) {
  112. if (--argc < 1)
  113. goto bad;
  114. infile = *(++argv);
  115. } else if (strcmp(*argv, "-out") == 0) {
  116. if (--argc < 1)
  117. goto bad;
  118. outfile = *(++argv);
  119. } else if (strcmp(*argv, "-text") == 0)
  120. text = ++num;
  121. else if (strcmp(*argv, "-cert") == 0)
  122. cert = ++num;
  123. else if (strcmp(*argv, "-noout") == 0)
  124. noout = ++num;
  125. else if (strcmp(*argv, "-context") == 0) {
  126. if (--argc < 1)
  127. goto bad;
  128. context = *++argv;
  129. } else {
  130. BIO_printf(bio_err, "unknown option %s\n", *argv);
  131. badops = 1;
  132. break;
  133. }
  134. argc--;
  135. argv++;
  136. }
  137. if (badops) {
  138. bad:
  139. for (pp = sess_id_usage; (*pp != NULL); pp++)
  140. BIO_printf(bio_err, "%s", *pp);
  141. goto end;
  142. }
  143. ERR_load_crypto_strings();
  144. x = load_sess_id(infile, informat);
  145. if (x == NULL) {
  146. goto end;
  147. }
  148. if (context) {
  149. x->sid_ctx_length = strlen(context);
  150. if (x->sid_ctx_length > SSL_MAX_SID_CTX_LENGTH) {
  151. BIO_printf(bio_err, "Context too long\n");
  152. goto end;
  153. }
  154. memcpy(x->sid_ctx, context, x->sid_ctx_length);
  155. }
  156. #ifdef undef
  157. /* just testing for memory leaks :-) */
  158. {
  159. SSL_SESSION *s;
  160. char buf[1024 * 10], *p;
  161. int i;
  162. s = SSL_SESSION_new();
  163. p = &buf;
  164. i = i2d_SSL_SESSION(x, &p);
  165. p = &buf;
  166. d2i_SSL_SESSION(&s, &p, (long)i);
  167. p = &buf;
  168. d2i_SSL_SESSION(&s, &p, (long)i);
  169. p = &buf;
  170. d2i_SSL_SESSION(&s, &p, (long)i);
  171. SSL_SESSION_free(s);
  172. }
  173. #endif
  174. if (!noout || text) {
  175. out = BIO_new(BIO_s_file());
  176. if (out == NULL) {
  177. ERR_print_errors(bio_err);
  178. goto end;
  179. }
  180. if (outfile == NULL) {
  181. BIO_set_fp(out, stdout, BIO_NOCLOSE);
  182. #ifdef OPENSSL_SYS_VMS
  183. {
  184. BIO *tmpbio = BIO_new(BIO_f_linebuffer());
  185. out = BIO_push(tmpbio, out);
  186. }
  187. #endif
  188. } else {
  189. if (BIO_write_filename(out, outfile) <= 0) {
  190. perror(outfile);
  191. goto end;
  192. }
  193. }
  194. }
  195. if (text) {
  196. SSL_SESSION_print(out, x);
  197. if (cert) {
  198. if (x->peer == NULL)
  199. BIO_puts(out, "No certificate present\n");
  200. else
  201. X509_print(out, x->peer);
  202. }
  203. }
  204. if (!noout && !cert) {
  205. if (outformat == FORMAT_ASN1)
  206. i = i2d_SSL_SESSION_bio(out, x);
  207. else if (outformat == FORMAT_PEM)
  208. i = PEM_write_bio_SSL_SESSION(out, x);
  209. else {
  210. BIO_printf(bio_err, "bad output format specified for outfile\n");
  211. goto end;
  212. }
  213. if (!i) {
  214. BIO_printf(bio_err, "unable to write SSL_SESSION\n");
  215. goto end;
  216. }
  217. } else if (!noout && (x->peer != NULL)) { /* just print the certificate */
  218. if (outformat == FORMAT_ASN1)
  219. i = (int)i2d_X509_bio(out, x->peer);
  220. else if (outformat == FORMAT_PEM)
  221. i = PEM_write_bio_X509(out, x->peer);
  222. else {
  223. BIO_printf(bio_err, "bad output format specified for outfile\n");
  224. goto end;
  225. }
  226. if (!i) {
  227. BIO_printf(bio_err, "unable to write X509\n");
  228. goto end;
  229. }
  230. }
  231. ret = 0;
  232. end:
  233. if (out != NULL)
  234. BIO_free_all(out);
  235. if (x != NULL)
  236. SSL_SESSION_free(x);
  237. apps_shutdown();
  238. OPENSSL_EXIT(ret);
  239. }
  240. static SSL_SESSION *load_sess_id(char *infile, int format)
  241. {
  242. SSL_SESSION *x = NULL;
  243. BIO *in = NULL;
  244. in = BIO_new(BIO_s_file());
  245. if (in == NULL) {
  246. ERR_print_errors(bio_err);
  247. goto end;
  248. }
  249. if (infile == NULL)
  250. BIO_set_fp(in, stdin, BIO_NOCLOSE);
  251. else {
  252. if (BIO_read_filename(in, infile) <= 0) {
  253. perror(infile);
  254. goto end;
  255. }
  256. }
  257. if (format == FORMAT_ASN1)
  258. x = d2i_SSL_SESSION_bio(in, NULL);
  259. else if (format == FORMAT_PEM)
  260. x = PEM_read_bio_SSL_SESSION(in, NULL, NULL, NULL);
  261. else {
  262. BIO_printf(bio_err, "bad input format specified for input crl\n");
  263. goto end;
  264. }
  265. if (x == NULL) {
  266. BIO_printf(bio_err, "unable to load SSL_SESSION\n");
  267. ERR_print_errors(bio_err);
  268. goto end;
  269. }
  270. end:
  271. if (in != NULL)
  272. BIO_free(in);
  273. return (x);
  274. }