ssl_asn1.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. /* ssl/ssl_asn1.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 <openssl/asn1_mac.h>
  61. #include <openssl/objects.h>
  62. #include <openssl/x509.h>
  63. #include "ssl_locl.h"
  64. #include "cryptlib.h"
  65. typedef struct ssl_session_asn1_st
  66. {
  67. ASN1_INTEGER version;
  68. ASN1_INTEGER ssl_version;
  69. ASN1_OCTET_STRING cipher;
  70. ASN1_OCTET_STRING master_key;
  71. ASN1_OCTET_STRING session_id;
  72. ASN1_OCTET_STRING session_id_context;
  73. ASN1_OCTET_STRING key_arg;
  74. ASN1_INTEGER time;
  75. ASN1_INTEGER timeout;
  76. ASN1_INTEGER verify_result;
  77. } SSL_SESSION_ASN1;
  78. int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp)
  79. {
  80. #define LSIZE2 (sizeof(long)*2)
  81. int v1=0,v2=0,v3=0,v4=0,v5=0;
  82. unsigned char buf[4],ibuf1[LSIZE2],ibuf2[LSIZE2];
  83. unsigned char ibuf3[LSIZE2],ibuf4[LSIZE2],ibuf5[LSIZE2];
  84. long l;
  85. SSL_SESSION_ASN1 a;
  86. M_ASN1_I2D_vars(in);
  87. if ((in == NULL) || ((in->cipher == NULL) && (in->cipher_id == 0)))
  88. return(0);
  89. /* Note that I cheat in the following 2 assignments. I know
  90. * that if the ASN1_INTEGER passed to ASN1_INTEGER_set
  91. * is > sizeof(long)+1, the buffer will not be re-OPENSSL_malloc()ed.
  92. * This is a bit evil but makes things simple, no dynamic allocation
  93. * to clean up :-) */
  94. a.version.length=LSIZE2;
  95. a.version.type=V_ASN1_INTEGER;
  96. a.version.data=ibuf1;
  97. ASN1_INTEGER_set(&(a.version),SSL_SESSION_ASN1_VERSION);
  98. a.ssl_version.length=LSIZE2;
  99. a.ssl_version.type=V_ASN1_INTEGER;
  100. a.ssl_version.data=ibuf2;
  101. ASN1_INTEGER_set(&(a.ssl_version),in->ssl_version);
  102. a.cipher.type=V_ASN1_OCTET_STRING;
  103. a.cipher.data=buf;
  104. if (in->cipher == NULL)
  105. l=in->cipher_id;
  106. else
  107. l=in->cipher->id;
  108. if (in->ssl_version == SSL2_VERSION)
  109. {
  110. a.cipher.length=3;
  111. buf[0]=((unsigned char)(l>>16L))&0xff;
  112. buf[1]=((unsigned char)(l>> 8L))&0xff;
  113. buf[2]=((unsigned char)(l ))&0xff;
  114. }
  115. else
  116. {
  117. a.cipher.length=2;
  118. buf[0]=((unsigned char)(l>>8L))&0xff;
  119. buf[1]=((unsigned char)(l ))&0xff;
  120. }
  121. a.master_key.length=in->master_key_length;
  122. a.master_key.type=V_ASN1_OCTET_STRING;
  123. a.master_key.data=in->master_key;
  124. a.session_id.length=in->session_id_length;
  125. a.session_id.type=V_ASN1_OCTET_STRING;
  126. a.session_id.data=in->session_id;
  127. a.session_id_context.length=in->sid_ctx_length;
  128. a.session_id_context.type=V_ASN1_OCTET_STRING;
  129. a.session_id_context.data=in->sid_ctx;
  130. a.key_arg.length=in->key_arg_length;
  131. a.key_arg.type=V_ASN1_OCTET_STRING;
  132. a.key_arg.data=in->key_arg;
  133. if (in->time != 0L)
  134. {
  135. a.time.length=LSIZE2;
  136. a.time.type=V_ASN1_INTEGER;
  137. a.time.data=ibuf3;
  138. ASN1_INTEGER_set(&(a.time),in->time);
  139. }
  140. if (in->timeout != 0L)
  141. {
  142. a.timeout.length=LSIZE2;
  143. a.timeout.type=V_ASN1_INTEGER;
  144. a.timeout.data=ibuf4;
  145. ASN1_INTEGER_set(&(a.timeout),in->timeout);
  146. }
  147. if (in->verify_result != X509_V_OK)
  148. {
  149. a.verify_result.length=LSIZE2;
  150. a.verify_result.type=V_ASN1_INTEGER;
  151. a.verify_result.data=ibuf5;
  152. ASN1_INTEGER_set(&a.verify_result,in->verify_result);
  153. }
  154. M_ASN1_I2D_len(&(a.version), i2d_ASN1_INTEGER);
  155. M_ASN1_I2D_len(&(a.ssl_version), i2d_ASN1_INTEGER);
  156. M_ASN1_I2D_len(&(a.cipher), i2d_ASN1_OCTET_STRING);
  157. M_ASN1_I2D_len(&(a.session_id), i2d_ASN1_OCTET_STRING);
  158. M_ASN1_I2D_len(&(a.master_key), i2d_ASN1_OCTET_STRING);
  159. if (in->key_arg_length > 0)
  160. M_ASN1_I2D_len_IMP_opt(&(a.key_arg),i2d_ASN1_OCTET_STRING);
  161. if (in->time != 0L)
  162. M_ASN1_I2D_len_EXP_opt(&(a.time),i2d_ASN1_INTEGER,1,v1);
  163. if (in->timeout != 0L)
  164. M_ASN1_I2D_len_EXP_opt(&(a.timeout),i2d_ASN1_INTEGER,2,v2);
  165. if (in->peer != NULL)
  166. M_ASN1_I2D_len_EXP_opt(in->peer,i2d_X509,3,v3);
  167. M_ASN1_I2D_len_EXP_opt(&a.session_id_context,i2d_ASN1_OCTET_STRING,4,v4);
  168. if (in->verify_result != X509_V_OK)
  169. M_ASN1_I2D_len_EXP_opt(&(a.verify_result),i2d_ASN1_INTEGER,5,v5);
  170. M_ASN1_I2D_seq_total();
  171. M_ASN1_I2D_put(&(a.version), i2d_ASN1_INTEGER);
  172. M_ASN1_I2D_put(&(a.ssl_version), i2d_ASN1_INTEGER);
  173. M_ASN1_I2D_put(&(a.cipher), i2d_ASN1_OCTET_STRING);
  174. M_ASN1_I2D_put(&(a.session_id), i2d_ASN1_OCTET_STRING);
  175. M_ASN1_I2D_put(&(a.master_key), i2d_ASN1_OCTET_STRING);
  176. if (in->key_arg_length > 0)
  177. M_ASN1_I2D_put_IMP_opt(&(a.key_arg),i2d_ASN1_OCTET_STRING,0);
  178. if (in->time != 0L)
  179. M_ASN1_I2D_put_EXP_opt(&(a.time),i2d_ASN1_INTEGER,1,v1);
  180. if (in->timeout != 0L)
  181. M_ASN1_I2D_put_EXP_opt(&(a.timeout),i2d_ASN1_INTEGER,2,v2);
  182. if (in->peer != NULL)
  183. M_ASN1_I2D_put_EXP_opt(in->peer,i2d_X509,3,v3);
  184. M_ASN1_I2D_put_EXP_opt(&a.session_id_context,i2d_ASN1_OCTET_STRING,4,
  185. v4);
  186. if (in->verify_result != X509_V_OK)
  187. M_ASN1_I2D_put_EXP_opt(&a.verify_result,i2d_ASN1_INTEGER,5,v5);
  188. M_ASN1_I2D_finish();
  189. }
  190. SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, unsigned char **pp,
  191. long length)
  192. {
  193. int version,ssl_version=0,i;
  194. long id;
  195. ASN1_INTEGER ai,*aip;
  196. ASN1_OCTET_STRING os,*osp;
  197. M_ASN1_D2I_vars(a,SSL_SESSION *,SSL_SESSION_new);
  198. aip= &ai;
  199. osp= &os;
  200. M_ASN1_D2I_Init();
  201. M_ASN1_D2I_start_sequence();
  202. ai.data=NULL; ai.length=0;
  203. M_ASN1_D2I_get(aip,d2i_ASN1_INTEGER);
  204. version=(int)ASN1_INTEGER_get(aip);
  205. if (ai.data != NULL) { OPENSSL_free(ai.data); ai.data=NULL; ai.length=0; }
  206. /* we don't care about the version right now :-) */
  207. M_ASN1_D2I_get(aip,d2i_ASN1_INTEGER);
  208. ssl_version=(int)ASN1_INTEGER_get(aip);
  209. ret->ssl_version=ssl_version;
  210. if (ai.data != NULL) { OPENSSL_free(ai.data); ai.data=NULL; ai.length=0; }
  211. os.data=NULL; os.length=0;
  212. M_ASN1_D2I_get(osp,d2i_ASN1_OCTET_STRING);
  213. if (ssl_version == SSL2_VERSION)
  214. {
  215. if (os.length != 3)
  216. {
  217. c.error=SSL_R_CIPHER_CODE_WRONG_LENGTH;
  218. goto err;
  219. }
  220. id=0x02000000L|
  221. ((unsigned long)os.data[0]<<16L)|
  222. ((unsigned long)os.data[1]<< 8L)|
  223. (unsigned long)os.data[2];
  224. }
  225. else if ((ssl_version>>8) == 3)
  226. {
  227. if (os.length != 2)
  228. {
  229. c.error=SSL_R_CIPHER_CODE_WRONG_LENGTH;
  230. goto err;
  231. }
  232. id=0x03000000L|
  233. ((unsigned long)os.data[0]<<8L)|
  234. (unsigned long)os.data[1];
  235. }
  236. else
  237. {
  238. SSLerr(SSL_F_D2I_SSL_SESSION,SSL_R_UNKNOWN_SSL_VERSION);
  239. return(NULL);
  240. }
  241. ret->cipher=NULL;
  242. ret->cipher_id=id;
  243. M_ASN1_D2I_get(osp,d2i_ASN1_OCTET_STRING);
  244. if ((ssl_version>>8) == SSL3_VERSION)
  245. i=SSL3_MAX_SSL_SESSION_ID_LENGTH;
  246. else /* if (ssl_version == SSL2_VERSION) */
  247. i=SSL2_MAX_SSL_SESSION_ID_LENGTH;
  248. if (os.length > i)
  249. os.length = i;
  250. if (os.length > sizeof ret->session_id) /* can't happen */
  251. os.length = sizeof ret->session_id;
  252. ret->session_id_length=os.length;
  253. memcpy(ret->session_id,os.data,os.length);
  254. M_ASN1_D2I_get(osp,d2i_ASN1_OCTET_STRING);
  255. if (ret->master_key_length > SSL_MAX_MASTER_KEY_LENGTH)
  256. ret->master_key_length=SSL_MAX_MASTER_KEY_LENGTH;
  257. else
  258. ret->master_key_length=os.length;
  259. memcpy(ret->master_key,os.data,ret->master_key_length);
  260. os.length=0;
  261. M_ASN1_D2I_get_IMP_opt(osp,d2i_ASN1_OCTET_STRING,0,V_ASN1_OCTET_STRING);
  262. if (os.length > SSL_MAX_KEY_ARG_LENGTH)
  263. ret->key_arg_length=SSL_MAX_KEY_ARG_LENGTH;
  264. else
  265. ret->key_arg_length=os.length;
  266. memcpy(ret->key_arg,os.data,ret->key_arg_length);
  267. if (os.data != NULL) OPENSSL_free(os.data);
  268. ai.length=0;
  269. M_ASN1_D2I_get_EXP_opt(aip,d2i_ASN1_INTEGER,1);
  270. if (ai.data != NULL)
  271. {
  272. ret->time=ASN1_INTEGER_get(aip);
  273. OPENSSL_free(ai.data); ai.data=NULL; ai.length=0;
  274. }
  275. else
  276. ret->time=time(NULL);
  277. ai.length=0;
  278. M_ASN1_D2I_get_EXP_opt(aip,d2i_ASN1_INTEGER,2);
  279. if (ai.data != NULL)
  280. {
  281. ret->timeout=ASN1_INTEGER_get(aip);
  282. OPENSSL_free(ai.data); ai.data=NULL; ai.length=0;
  283. }
  284. else
  285. ret->timeout=3;
  286. if (ret->peer != NULL)
  287. {
  288. X509_free(ret->peer);
  289. ret->peer=NULL;
  290. }
  291. M_ASN1_D2I_get_EXP_opt(ret->peer,d2i_X509,3);
  292. os.length=0;
  293. os.data=NULL;
  294. M_ASN1_D2I_get_EXP_opt(osp,d2i_ASN1_OCTET_STRING,4);
  295. if(os.data != NULL)
  296. {
  297. if (os.length > SSL_MAX_SID_CTX_LENGTH)
  298. SSLerr(SSL_F_D2I_SSL_SESSION,SSL_R_BAD_LENGTH);
  299. ret->sid_ctx_length=os.length;
  300. memcpy(ret->sid_ctx,os.data,os.length);
  301. OPENSSL_free(os.data); os.data=NULL; os.length=0;
  302. }
  303. else
  304. ret->sid_ctx_length=0;
  305. ai.length=0;
  306. M_ASN1_D2I_get_EXP_opt(aip,d2i_ASN1_INTEGER,5);
  307. if (ai.data != NULL)
  308. {
  309. ret->verify_result=ASN1_INTEGER_get(aip);
  310. OPENSSL_free(ai.data); ai.data=NULL; ai.length=0;
  311. }
  312. else
  313. ret->verify_result=X509_V_OK;
  314. M_ASN1_D2I_Finish(a,SSL_SESSION_free,SSL_F_D2I_SSL_SESSION);
  315. }