sess_id.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  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. X509 *peer = NULL;
  88. int ret=1,i,num,badops=0;
  89. BIO *out=NULL;
  90. int informat,outformat;
  91. char *infile=NULL,*outfile=NULL,*context=NULL;
  92. int cert=0,noout=0,text=0;
  93. const char **pp;
  94. apps_startup();
  95. if (bio_err == NULL)
  96. if ((bio_err=BIO_new(BIO_s_file())) != NULL)
  97. BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
  98. informat=FORMAT_PEM;
  99. outformat=FORMAT_PEM;
  100. argc--;
  101. argv++;
  102. num=0;
  103. while (argc >= 1)
  104. {
  105. if (strcmp(*argv,"-inform") == 0)
  106. {
  107. if (--argc < 1) goto bad;
  108. informat=str2fmt(*(++argv));
  109. }
  110. else if (strcmp(*argv,"-outform") == 0)
  111. {
  112. if (--argc < 1) goto bad;
  113. outformat=str2fmt(*(++argv));
  114. }
  115. else if (strcmp(*argv,"-in") == 0)
  116. {
  117. if (--argc < 1) goto bad;
  118. infile= *(++argv);
  119. }
  120. else if (strcmp(*argv,"-out") == 0)
  121. {
  122. if (--argc < 1) goto bad;
  123. outfile= *(++argv);
  124. }
  125. else if (strcmp(*argv,"-text") == 0)
  126. text= ++num;
  127. else if (strcmp(*argv,"-cert") == 0)
  128. cert= ++num;
  129. else if (strcmp(*argv,"-noout") == 0)
  130. noout= ++num;
  131. else if (strcmp(*argv,"-context") == 0)
  132. {
  133. if(--argc < 1) goto bad;
  134. context=*++argv;
  135. }
  136. else
  137. {
  138. BIO_printf(bio_err,"unknown option %s\n",*argv);
  139. badops=1;
  140. break;
  141. }
  142. argc--;
  143. argv++;
  144. }
  145. if (badops)
  146. {
  147. bad:
  148. for (pp=sess_id_usage; (*pp != NULL); pp++)
  149. BIO_printf(bio_err,"%s",*pp);
  150. goto end;
  151. }
  152. ERR_load_crypto_strings();
  153. x=load_sess_id(infile,informat);
  154. if (x == NULL) { goto end; }
  155. peer = SSL_SESSION_get0_peer(x);
  156. if(context)
  157. {
  158. size_t ctx_len = strlen(context);
  159. if(ctx_len > SSL_MAX_SID_CTX_LENGTH)
  160. {
  161. BIO_printf(bio_err,"Context too long\n");
  162. goto end;
  163. }
  164. SSL_SESSION_set1_id_context(x, (unsigned char *)context, ctx_len);
  165. }
  166. #ifdef undef
  167. /* just testing for memory leaks :-) */
  168. {
  169. SSL_SESSION *s;
  170. char buf[1024*10],*p;
  171. int i;
  172. s=SSL_SESSION_new();
  173. p= &buf;
  174. i=i2d_SSL_SESSION(x,&p);
  175. p= &buf;
  176. d2i_SSL_SESSION(&s,&p,(long)i);
  177. p= &buf;
  178. d2i_SSL_SESSION(&s,&p,(long)i);
  179. p= &buf;
  180. d2i_SSL_SESSION(&s,&p,(long)i);
  181. SSL_SESSION_free(s);
  182. }
  183. #endif
  184. if (!noout || text)
  185. {
  186. out=BIO_new(BIO_s_file());
  187. if (out == NULL)
  188. {
  189. ERR_print_errors(bio_err);
  190. goto end;
  191. }
  192. if (outfile == NULL)
  193. {
  194. BIO_set_fp(out,stdout,BIO_NOCLOSE);
  195. #ifdef OPENSSL_SYS_VMS
  196. {
  197. BIO *tmpbio = BIO_new(BIO_f_linebuffer());
  198. out = BIO_push(tmpbio, out);
  199. }
  200. #endif
  201. }
  202. else
  203. {
  204. if (BIO_write_filename(out,outfile) <= 0)
  205. {
  206. perror(outfile);
  207. goto end;
  208. }
  209. }
  210. }
  211. if (text)
  212. {
  213. SSL_SESSION_print(out,x);
  214. if (cert)
  215. {
  216. if (peer == NULL)
  217. BIO_puts(out,"No certificate present\n");
  218. else
  219. X509_print(out,peer);
  220. }
  221. }
  222. if (!noout && !cert)
  223. {
  224. if (outformat == FORMAT_ASN1)
  225. i=i2d_SSL_SESSION_bio(out,x);
  226. else if (outformat == FORMAT_PEM)
  227. i=PEM_write_bio_SSL_SESSION(out,x);
  228. else {
  229. BIO_printf(bio_err,"bad output format specified for outfile\n");
  230. goto end;
  231. }
  232. if (!i) {
  233. BIO_printf(bio_err,"unable to write SSL_SESSION\n");
  234. goto end;
  235. }
  236. }
  237. else if (!noout && (peer != NULL)) /* just print the certificate */
  238. {
  239. if (outformat == FORMAT_ASN1)
  240. i=(int)i2d_X509_bio(out,peer);
  241. else if (outformat == FORMAT_PEM)
  242. i=PEM_write_bio_X509(out,peer);
  243. else {
  244. BIO_printf(bio_err,"bad output format specified for outfile\n");
  245. goto end;
  246. }
  247. if (!i) {
  248. BIO_printf(bio_err,"unable to write X509\n");
  249. goto end;
  250. }
  251. }
  252. ret=0;
  253. end:
  254. if (out != NULL) BIO_free_all(out);
  255. if (x != NULL) SSL_SESSION_free(x);
  256. apps_shutdown();
  257. OPENSSL_EXIT(ret);
  258. }
  259. static SSL_SESSION *load_sess_id(char *infile, int format)
  260. {
  261. SSL_SESSION *x=NULL;
  262. BIO *in=NULL;
  263. in=BIO_new(BIO_s_file());
  264. if (in == NULL)
  265. {
  266. ERR_print_errors(bio_err);
  267. goto end;
  268. }
  269. if (infile == NULL)
  270. BIO_set_fp(in,stdin,BIO_NOCLOSE);
  271. else
  272. {
  273. if (BIO_read_filename(in,infile) <= 0)
  274. {
  275. perror(infile);
  276. goto end;
  277. }
  278. }
  279. if (format == FORMAT_ASN1)
  280. x=d2i_SSL_SESSION_bio(in,NULL);
  281. else if (format == FORMAT_PEM)
  282. x=PEM_read_bio_SSL_SESSION(in,NULL,NULL,NULL);
  283. else {
  284. BIO_printf(bio_err,"bad input format specified for input crl\n");
  285. goto end;
  286. }
  287. if (x == NULL)
  288. {
  289. BIO_printf(bio_err,"unable to load SSL_SESSION\n");
  290. ERR_print_errors(bio_err);
  291. goto end;
  292. }
  293. end:
  294. if (in != NULL) BIO_free(in);
  295. return(x);
  296. }