ssl_asn1.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593
  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. /* ====================================================================
  59. * Copyright 2005 Nokia. All rights reserved.
  60. *
  61. * The portions of the attached software ("Contribution") is developed by
  62. * Nokia Corporation and is licensed pursuant to the OpenSSL open source
  63. * license.
  64. *
  65. * The Contribution, originally written by Mika Kousa and Pasi Eronen of
  66. * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
  67. * support (see RFC 4279) to OpenSSL.
  68. *
  69. * No patent licenses or other rights except those expressly stated in
  70. * the OpenSSL open source license shall be deemed granted or received
  71. * expressly, by implication, estoppel, or otherwise.
  72. *
  73. * No assurances are provided by Nokia that the Contribution does not
  74. * infringe the patent or other intellectual property rights of any third
  75. * party or that the license provides you with all the necessary rights
  76. * to make use of the Contribution.
  77. *
  78. * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
  79. * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
  80. * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
  81. * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
  82. * OTHERWISE.
  83. */
  84. #include <stdio.h>
  85. #include <stdlib.h>
  86. #include "ssl_locl.h"
  87. #include <openssl/asn1_mac.h>
  88. #include <openssl/objects.h>
  89. #include <openssl/x509.h>
  90. typedef struct ssl_session_asn1_st
  91. {
  92. ASN1_INTEGER version;
  93. ASN1_INTEGER ssl_version;
  94. ASN1_OCTET_STRING cipher;
  95. ASN1_OCTET_STRING comp_id;
  96. ASN1_OCTET_STRING master_key;
  97. ASN1_OCTET_STRING session_id;
  98. ASN1_OCTET_STRING session_id_context;
  99. ASN1_OCTET_STRING key_arg;
  100. #ifndef OPENSSL_NO_KRB5
  101. ASN1_OCTET_STRING krb5_princ;
  102. #endif /* OPENSSL_NO_KRB5 */
  103. ASN1_INTEGER time;
  104. ASN1_INTEGER timeout;
  105. ASN1_INTEGER verify_result;
  106. #ifndef OPENSSL_NO_TLSEXT
  107. ASN1_OCTET_STRING tlsext_hostname;
  108. ASN1_INTEGER tlsext_tick_lifetime;
  109. ASN1_OCTET_STRING tlsext_tick;
  110. #endif /* OPENSSL_NO_TLSEXT */
  111. #ifndef OPENSSL_NO_PSK
  112. ASN1_OCTET_STRING psk_identity_hint;
  113. ASN1_OCTET_STRING psk_identity;
  114. #endif /* OPENSSL_NO_PSK */
  115. } SSL_SESSION_ASN1;
  116. int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp)
  117. {
  118. #define LSIZE2 (sizeof(long)*2)
  119. int v1=0,v2=0,v3=0,v4=0,v5=0,v7=0,v8=0;
  120. unsigned char buf[4],ibuf1[LSIZE2],ibuf2[LSIZE2];
  121. unsigned char ibuf3[LSIZE2],ibuf4[LSIZE2],ibuf5[LSIZE2];
  122. #ifndef OPENSSL_NO_TLSEXT
  123. int v6=0,v9=0,v10=0;
  124. unsigned char ibuf6[LSIZE2];
  125. #endif
  126. #ifndef OPENSSL_NO_COMP
  127. unsigned char cbuf;
  128. int v11=0;
  129. #endif
  130. long l;
  131. SSL_SESSION_ASN1 a;
  132. M_ASN1_I2D_vars(in);
  133. if ((in == NULL) || ((in->cipher == NULL) && (in->cipher_id == 0)))
  134. return(0);
  135. /* Note that I cheat in the following 2 assignments. I know
  136. * that if the ASN1_INTEGER passed to ASN1_INTEGER_set
  137. * is > sizeof(long)+1, the buffer will not be re-OPENSSL_malloc()ed.
  138. * This is a bit evil but makes things simple, no dynamic allocation
  139. * to clean up :-) */
  140. a.version.length=LSIZE2;
  141. a.version.type=V_ASN1_INTEGER;
  142. a.version.data=ibuf1;
  143. ASN1_INTEGER_set(&(a.version),SSL_SESSION_ASN1_VERSION);
  144. a.ssl_version.length=LSIZE2;
  145. a.ssl_version.type=V_ASN1_INTEGER;
  146. a.ssl_version.data=ibuf2;
  147. ASN1_INTEGER_set(&(a.ssl_version),in->ssl_version);
  148. a.cipher.type=V_ASN1_OCTET_STRING;
  149. a.cipher.data=buf;
  150. if (in->cipher == NULL)
  151. l=in->cipher_id;
  152. else
  153. l=in->cipher->id;
  154. if (in->ssl_version == SSL2_VERSION)
  155. {
  156. a.cipher.length=3;
  157. buf[0]=((unsigned char)(l>>16L))&0xff;
  158. buf[1]=((unsigned char)(l>> 8L))&0xff;
  159. buf[2]=((unsigned char)(l ))&0xff;
  160. }
  161. else
  162. {
  163. a.cipher.length=2;
  164. buf[0]=((unsigned char)(l>>8L))&0xff;
  165. buf[1]=((unsigned char)(l ))&0xff;
  166. }
  167. #ifndef OPENSSL_NO_COMP
  168. if (in->compress_meth)
  169. {
  170. cbuf = (unsigned char)in->compress_meth;
  171. a.comp_id.length = 1;
  172. a.comp_id.type = V_ASN1_OCTET_STRING;
  173. a.comp_id.data = &cbuf;
  174. }
  175. #endif
  176. a.master_key.length=in->master_key_length;
  177. a.master_key.type=V_ASN1_OCTET_STRING;
  178. a.master_key.data=in->master_key;
  179. a.session_id.length=in->session_id_length;
  180. a.session_id.type=V_ASN1_OCTET_STRING;
  181. a.session_id.data=in->session_id;
  182. a.session_id_context.length=in->sid_ctx_length;
  183. a.session_id_context.type=V_ASN1_OCTET_STRING;
  184. a.session_id_context.data=in->sid_ctx;
  185. a.key_arg.length=in->key_arg_length;
  186. a.key_arg.type=V_ASN1_OCTET_STRING;
  187. a.key_arg.data=in->key_arg;
  188. #ifndef OPENSSL_NO_KRB5
  189. if (in->krb5_client_princ_len)
  190. {
  191. a.krb5_princ.length=in->krb5_client_princ_len;
  192. a.krb5_princ.type=V_ASN1_OCTET_STRING;
  193. a.krb5_princ.data=in->krb5_client_princ;
  194. }
  195. #endif /* OPENSSL_NO_KRB5 */
  196. if (in->time != 0L)
  197. {
  198. a.time.length=LSIZE2;
  199. a.time.type=V_ASN1_INTEGER;
  200. a.time.data=ibuf3;
  201. ASN1_INTEGER_set(&(a.time),in->time);
  202. }
  203. if (in->timeout != 0L)
  204. {
  205. a.timeout.length=LSIZE2;
  206. a.timeout.type=V_ASN1_INTEGER;
  207. a.timeout.data=ibuf4;
  208. ASN1_INTEGER_set(&(a.timeout),in->timeout);
  209. }
  210. if (in->verify_result != X509_V_OK)
  211. {
  212. a.verify_result.length=LSIZE2;
  213. a.verify_result.type=V_ASN1_INTEGER;
  214. a.verify_result.data=ibuf5;
  215. ASN1_INTEGER_set(&a.verify_result,in->verify_result);
  216. }
  217. #ifndef OPENSSL_NO_TLSEXT
  218. if (in->tlsext_hostname)
  219. {
  220. a.tlsext_hostname.length=strlen(in->tlsext_hostname);
  221. a.tlsext_hostname.type=V_ASN1_OCTET_STRING;
  222. a.tlsext_hostname.data=(unsigned char *)in->tlsext_hostname;
  223. }
  224. if (in->tlsext_tick)
  225. {
  226. a.tlsext_tick.length= in->tlsext_ticklen;
  227. a.tlsext_tick.type=V_ASN1_OCTET_STRING;
  228. a.tlsext_tick.data=(unsigned char *)in->tlsext_tick;
  229. }
  230. if (in->tlsext_tick_lifetime_hint > 0)
  231. {
  232. a.tlsext_tick_lifetime.length=LSIZE2;
  233. a.tlsext_tick_lifetime.type=V_ASN1_INTEGER;
  234. a.tlsext_tick_lifetime.data=ibuf6;
  235. ASN1_INTEGER_set(&a.tlsext_tick_lifetime,in->tlsext_tick_lifetime_hint);
  236. }
  237. #endif /* OPENSSL_NO_TLSEXT */
  238. #ifndef OPENSSL_NO_PSK
  239. if (in->psk_identity_hint)
  240. {
  241. a.psk_identity_hint.length=strlen(in->psk_identity_hint);
  242. a.psk_identity_hint.type=V_ASN1_OCTET_STRING;
  243. a.psk_identity_hint.data=(unsigned char *)(in->psk_identity_hint);
  244. }
  245. if (in->psk_identity)
  246. {
  247. a.psk_identity.length=strlen(in->psk_identity);
  248. a.psk_identity.type=V_ASN1_OCTET_STRING;
  249. a.psk_identity.data=(unsigned char *)(in->psk_identity);
  250. }
  251. #endif /* OPENSSL_NO_PSK */
  252. M_ASN1_I2D_len(&(a.version), i2d_ASN1_INTEGER);
  253. M_ASN1_I2D_len(&(a.ssl_version), i2d_ASN1_INTEGER);
  254. M_ASN1_I2D_len(&(a.cipher), i2d_ASN1_OCTET_STRING);
  255. M_ASN1_I2D_len(&(a.session_id), i2d_ASN1_OCTET_STRING);
  256. M_ASN1_I2D_len(&(a.master_key), i2d_ASN1_OCTET_STRING);
  257. #ifndef OPENSSL_NO_KRB5
  258. if (in->krb5_client_princ_len)
  259. M_ASN1_I2D_len(&(a.krb5_princ), i2d_ASN1_OCTET_STRING);
  260. #endif /* OPENSSL_NO_KRB5 */
  261. if (in->key_arg_length > 0)
  262. M_ASN1_I2D_len_IMP_opt(&(a.key_arg),i2d_ASN1_OCTET_STRING);
  263. if (in->time != 0L)
  264. M_ASN1_I2D_len_EXP_opt(&(a.time),i2d_ASN1_INTEGER,1,v1);
  265. if (in->timeout != 0L)
  266. M_ASN1_I2D_len_EXP_opt(&(a.timeout),i2d_ASN1_INTEGER,2,v2);
  267. if (in->peer != NULL)
  268. M_ASN1_I2D_len_EXP_opt(in->peer,i2d_X509,3,v3);
  269. M_ASN1_I2D_len_EXP_opt(&a.session_id_context,i2d_ASN1_OCTET_STRING,4,v4);
  270. if (in->verify_result != X509_V_OK)
  271. M_ASN1_I2D_len_EXP_opt(&(a.verify_result),i2d_ASN1_INTEGER,5,v5);
  272. #ifndef OPENSSL_NO_TLSEXT
  273. if (in->tlsext_tick_lifetime_hint > 0)
  274. M_ASN1_I2D_len_EXP_opt(&a.tlsext_tick_lifetime, i2d_ASN1_INTEGER,9,v9);
  275. if (in->tlsext_tick)
  276. M_ASN1_I2D_len_EXP_opt(&(a.tlsext_tick), i2d_ASN1_OCTET_STRING,10,v10);
  277. if (in->tlsext_hostname)
  278. M_ASN1_I2D_len_EXP_opt(&(a.tlsext_hostname), i2d_ASN1_OCTET_STRING,6,v6);
  279. #ifndef OPENSSL_NO_COMP
  280. if (in->compress_meth)
  281. M_ASN1_I2D_len_EXP_opt(&(a.comp_id), i2d_ASN1_OCTET_STRING,11,v11);
  282. #endif
  283. #endif /* OPENSSL_NO_TLSEXT */
  284. #ifndef OPENSSL_NO_PSK
  285. if (in->psk_identity_hint)
  286. M_ASN1_I2D_len_EXP_opt(&(a.psk_identity_hint), i2d_ASN1_OCTET_STRING,7,v7);
  287. if (in->psk_identity)
  288. M_ASN1_I2D_len_EXP_opt(&(a.psk_identity), i2d_ASN1_OCTET_STRING,8,v8);
  289. #endif /* OPENSSL_NO_PSK */
  290. M_ASN1_I2D_seq_total();
  291. M_ASN1_I2D_put(&(a.version), i2d_ASN1_INTEGER);
  292. M_ASN1_I2D_put(&(a.ssl_version), i2d_ASN1_INTEGER);
  293. M_ASN1_I2D_put(&(a.cipher), i2d_ASN1_OCTET_STRING);
  294. M_ASN1_I2D_put(&(a.session_id), i2d_ASN1_OCTET_STRING);
  295. M_ASN1_I2D_put(&(a.master_key), i2d_ASN1_OCTET_STRING);
  296. #ifndef OPENSSL_NO_KRB5
  297. if (in->krb5_client_princ_len)
  298. M_ASN1_I2D_put(&(a.krb5_princ), i2d_ASN1_OCTET_STRING);
  299. #endif /* OPENSSL_NO_KRB5 */
  300. if (in->key_arg_length > 0)
  301. M_ASN1_I2D_put_IMP_opt(&(a.key_arg),i2d_ASN1_OCTET_STRING,0);
  302. if (in->time != 0L)
  303. M_ASN1_I2D_put_EXP_opt(&(a.time),i2d_ASN1_INTEGER,1,v1);
  304. if (in->timeout != 0L)
  305. M_ASN1_I2D_put_EXP_opt(&(a.timeout),i2d_ASN1_INTEGER,2,v2);
  306. if (in->peer != NULL)
  307. M_ASN1_I2D_put_EXP_opt(in->peer,i2d_X509,3,v3);
  308. M_ASN1_I2D_put_EXP_opt(&a.session_id_context,i2d_ASN1_OCTET_STRING,4,
  309. v4);
  310. if (in->verify_result != X509_V_OK)
  311. M_ASN1_I2D_put_EXP_opt(&a.verify_result,i2d_ASN1_INTEGER,5,v5);
  312. #ifndef OPENSSL_NO_TLSEXT
  313. if (in->tlsext_hostname)
  314. M_ASN1_I2D_put_EXP_opt(&(a.tlsext_hostname), i2d_ASN1_OCTET_STRING,6,v6);
  315. #endif /* OPENSSL_NO_TLSEXT */
  316. #ifndef OPENSSL_NO_PSK
  317. if (in->psk_identity_hint)
  318. M_ASN1_I2D_put_EXP_opt(&(a.psk_identity_hint), i2d_ASN1_OCTET_STRING,7,v7);
  319. if (in->psk_identity)
  320. M_ASN1_I2D_put_EXP_opt(&(a.psk_identity), i2d_ASN1_OCTET_STRING,8,v8);
  321. #endif /* OPENSSL_NO_PSK */
  322. #ifndef OPENSSL_NO_TLSEXT
  323. if (in->tlsext_tick_lifetime_hint > 0)
  324. M_ASN1_I2D_put_EXP_opt(&a.tlsext_tick_lifetime, i2d_ASN1_INTEGER,9,v9);
  325. if (in->tlsext_tick)
  326. M_ASN1_I2D_put_EXP_opt(&(a.tlsext_tick), i2d_ASN1_OCTET_STRING,10,v10);
  327. #endif /* OPENSSL_NO_TLSEXT */
  328. #ifndef OPENSSL_NO_COMP
  329. if (in->compress_meth)
  330. M_ASN1_I2D_put_EXP_opt(&(a.comp_id), i2d_ASN1_OCTET_STRING,11,v11);
  331. #endif
  332. M_ASN1_I2D_finish();
  333. }
  334. SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
  335. long length)
  336. {
  337. int version,ssl_version=0,i;
  338. long id;
  339. ASN1_INTEGER ai,*aip;
  340. ASN1_OCTET_STRING os,*osp;
  341. M_ASN1_D2I_vars(a,SSL_SESSION *,SSL_SESSION_new);
  342. aip= &ai;
  343. osp= &os;
  344. M_ASN1_D2I_Init();
  345. M_ASN1_D2I_start_sequence();
  346. ai.data=NULL; ai.length=0;
  347. M_ASN1_D2I_get_x(ASN1_INTEGER,aip,d2i_ASN1_INTEGER);
  348. version=(int)ASN1_INTEGER_get(aip);
  349. if (ai.data != NULL) { OPENSSL_free(ai.data); ai.data=NULL; ai.length=0; }
  350. /* we don't care about the version right now :-) */
  351. M_ASN1_D2I_get_x(ASN1_INTEGER,aip,d2i_ASN1_INTEGER);
  352. ssl_version=(int)ASN1_INTEGER_get(aip);
  353. ret->ssl_version=ssl_version;
  354. if (ai.data != NULL) { OPENSSL_free(ai.data); ai.data=NULL; ai.length=0; }
  355. os.data=NULL; os.length=0;
  356. M_ASN1_D2I_get_x(ASN1_OCTET_STRING,osp,d2i_ASN1_OCTET_STRING);
  357. if (ssl_version == SSL2_VERSION)
  358. {
  359. if (os.length != 3)
  360. {
  361. c.error=SSL_R_CIPHER_CODE_WRONG_LENGTH;
  362. goto err;
  363. }
  364. id=0x02000000L|
  365. ((unsigned long)os.data[0]<<16L)|
  366. ((unsigned long)os.data[1]<< 8L)|
  367. (unsigned long)os.data[2];
  368. }
  369. else if ((ssl_version>>8) >= SSL3_VERSION_MAJOR)
  370. {
  371. if (os.length != 2)
  372. {
  373. c.error=SSL_R_CIPHER_CODE_WRONG_LENGTH;
  374. goto err;
  375. }
  376. id=0x03000000L|
  377. ((unsigned long)os.data[0]<<8L)|
  378. (unsigned long)os.data[1];
  379. }
  380. else
  381. {
  382. c.error=SSL_R_UNKNOWN_SSL_VERSION;
  383. goto err;
  384. }
  385. ret->cipher=NULL;
  386. ret->cipher_id=id;
  387. M_ASN1_D2I_get_x(ASN1_OCTET_STRING,osp,d2i_ASN1_OCTET_STRING);
  388. if ((ssl_version>>8) >= SSL3_VERSION_MAJOR)
  389. i=SSL3_MAX_SSL_SESSION_ID_LENGTH;
  390. else /* if (ssl_version>>8 == SSL2_VERSION_MAJOR) */
  391. i=SSL2_MAX_SSL_SESSION_ID_LENGTH;
  392. if (os.length > i)
  393. os.length = i;
  394. if (os.length > (int)sizeof(ret->session_id)) /* can't happen */
  395. os.length = sizeof(ret->session_id);
  396. ret->session_id_length=os.length;
  397. OPENSSL_assert(os.length <= (int)sizeof(ret->session_id));
  398. memcpy(ret->session_id,os.data,os.length);
  399. M_ASN1_D2I_get_x(ASN1_OCTET_STRING,osp,d2i_ASN1_OCTET_STRING);
  400. if (os.length > SSL_MAX_MASTER_KEY_LENGTH)
  401. ret->master_key_length=SSL_MAX_MASTER_KEY_LENGTH;
  402. else
  403. ret->master_key_length=os.length;
  404. memcpy(ret->master_key,os.data,ret->master_key_length);
  405. os.length=0;
  406. #ifndef OPENSSL_NO_KRB5
  407. os.length=0;
  408. M_ASN1_D2I_get_opt(osp,d2i_ASN1_OCTET_STRING,V_ASN1_OCTET_STRING);
  409. if (os.data)
  410. {
  411. if (os.length > SSL_MAX_KRB5_PRINCIPAL_LENGTH)
  412. ret->krb5_client_princ_len=0;
  413. else
  414. ret->krb5_client_princ_len=os.length;
  415. memcpy(ret->krb5_client_princ,os.data,ret->krb5_client_princ_len);
  416. OPENSSL_free(os.data);
  417. os.data = NULL;
  418. os.length = 0;
  419. }
  420. else
  421. ret->krb5_client_princ_len=0;
  422. #endif /* OPENSSL_NO_KRB5 */
  423. M_ASN1_D2I_get_IMP_opt(osp,d2i_ASN1_OCTET_STRING,0,V_ASN1_OCTET_STRING);
  424. if (os.length > SSL_MAX_KEY_ARG_LENGTH)
  425. ret->key_arg_length=SSL_MAX_KEY_ARG_LENGTH;
  426. else
  427. ret->key_arg_length=os.length;
  428. memcpy(ret->key_arg,os.data,ret->key_arg_length);
  429. if (os.data != NULL) OPENSSL_free(os.data);
  430. ai.length=0;
  431. M_ASN1_D2I_get_EXP_opt(aip,d2i_ASN1_INTEGER,1);
  432. if (ai.data != NULL)
  433. {
  434. ret->time=ASN1_INTEGER_get(aip);
  435. OPENSSL_free(ai.data); ai.data=NULL; ai.length=0;
  436. }
  437. else
  438. ret->time=(unsigned long)time(NULL);
  439. ai.length=0;
  440. M_ASN1_D2I_get_EXP_opt(aip,d2i_ASN1_INTEGER,2);
  441. if (ai.data != NULL)
  442. {
  443. ret->timeout=ASN1_INTEGER_get(aip);
  444. OPENSSL_free(ai.data); ai.data=NULL; ai.length=0;
  445. }
  446. else
  447. ret->timeout=3;
  448. if (ret->peer != NULL)
  449. {
  450. X509_free(ret->peer);
  451. ret->peer=NULL;
  452. }
  453. M_ASN1_D2I_get_EXP_opt(ret->peer,d2i_X509,3);
  454. os.length=0;
  455. os.data=NULL;
  456. M_ASN1_D2I_get_EXP_opt(osp,d2i_ASN1_OCTET_STRING,4);
  457. if(os.data != NULL)
  458. {
  459. if (os.length > SSL_MAX_SID_CTX_LENGTH)
  460. {
  461. c.error=SSL_R_BAD_LENGTH;
  462. goto err;
  463. }
  464. else
  465. {
  466. ret->sid_ctx_length=os.length;
  467. memcpy(ret->sid_ctx,os.data,os.length);
  468. }
  469. OPENSSL_free(os.data); os.data=NULL; os.length=0;
  470. }
  471. else
  472. ret->sid_ctx_length=0;
  473. ai.length=0;
  474. M_ASN1_D2I_get_EXP_opt(aip,d2i_ASN1_INTEGER,5);
  475. if (ai.data != NULL)
  476. {
  477. ret->verify_result=ASN1_INTEGER_get(aip);
  478. OPENSSL_free(ai.data); ai.data=NULL; ai.length=0;
  479. }
  480. else
  481. ret->verify_result=X509_V_OK;
  482. #ifndef OPENSSL_NO_TLSEXT
  483. os.length=0;
  484. os.data=NULL;
  485. M_ASN1_D2I_get_EXP_opt(osp,d2i_ASN1_OCTET_STRING,6);
  486. if (os.data)
  487. {
  488. ret->tlsext_hostname = BUF_strndup((char *)os.data, os.length);
  489. OPENSSL_free(os.data);
  490. os.data = NULL;
  491. os.length = 0;
  492. }
  493. else
  494. ret->tlsext_hostname=NULL;
  495. #endif /* OPENSSL_NO_TLSEXT */
  496. #ifndef OPENSSL_NO_PSK
  497. os.length=0;
  498. os.data=NULL;
  499. M_ASN1_D2I_get_EXP_opt(osp,d2i_ASN1_OCTET_STRING,7);
  500. if (os.data)
  501. {
  502. ret->psk_identity_hint = BUF_strndup((char *)os.data, os.length);
  503. OPENSSL_free(os.data);
  504. os.data = NULL;
  505. os.length = 0;
  506. }
  507. else
  508. ret->psk_identity_hint=NULL;
  509. #endif /* OPENSSL_NO_PSK */
  510. #ifndef OPENSSL_NO_TLSEXT
  511. ai.length=0;
  512. M_ASN1_D2I_get_EXP_opt(aip,d2i_ASN1_INTEGER,9);
  513. if (ai.data != NULL)
  514. {
  515. ret->tlsext_tick_lifetime_hint=ASN1_INTEGER_get(aip);
  516. OPENSSL_free(ai.data); ai.data=NULL; ai.length=0;
  517. }
  518. else if (ret->tlsext_ticklen && ret->session_id_length)
  519. ret->tlsext_tick_lifetime_hint = -1;
  520. else
  521. ret->tlsext_tick_lifetime_hint=0;
  522. os.length=0;
  523. os.data=NULL;
  524. M_ASN1_D2I_get_EXP_opt(osp,d2i_ASN1_OCTET_STRING,10);
  525. if (os.data)
  526. {
  527. ret->tlsext_tick = os.data;
  528. ret->tlsext_ticklen = os.length;
  529. os.data = NULL;
  530. os.length = 0;
  531. }
  532. else
  533. ret->tlsext_tick=NULL;
  534. #endif /* OPENSSL_NO_TLSEXT */
  535. #ifndef OPENSSL_NO_COMP
  536. os.length=0;
  537. os.data=NULL;
  538. M_ASN1_D2I_get_EXP_opt(osp,d2i_ASN1_OCTET_STRING,11);
  539. if (os.data)
  540. {
  541. ret->compress_meth = os.data[0];
  542. OPENSSL_free(os.data);
  543. os.data = NULL;
  544. }
  545. #endif
  546. M_ASN1_D2I_Finish(a,SSL_SESSION_free,SSL_F_D2I_SSL_SESSION);
  547. }