選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pem_info.c 11 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. /* crypto/pem/pem_info.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 <openssl/pem.h>
  59. #include <stdio.h>
  60. #include <assert.h>
  61. #include <openssl/buf.h>
  62. #include <openssl/dsa.h>
  63. #include <openssl/err.h>
  64. #include <openssl/evp.h>
  65. #include <openssl/mem.h>
  66. #include <openssl/obj.h>
  67. #include <openssl/rsa.h>
  68. #include <openssl/x509.h>
  69. #ifndef OPENSSL_NO_FP_API
  70. STACK_OF(X509_INFO) *PEM_X509_INFO_read(FILE *fp, STACK_OF(X509_INFO) *sk, pem_password_cb *cb, void *u)
  71. {
  72. BIO *b;
  73. STACK_OF(X509_INFO) *ret;
  74. if ((b=BIO_new(BIO_s_file())) == NULL)
  75. {
  76. OPENSSL_PUT_ERROR(PEM, PEM_X509_INFO_read, ERR_R_BUF_LIB);
  77. return(0);
  78. }
  79. BIO_set_fp(b,fp,BIO_NOCLOSE);
  80. ret=PEM_X509_INFO_read_bio(b,sk,cb,u);
  81. BIO_free(b);
  82. return(ret);
  83. }
  84. #endif
  85. STACK_OF(X509_INFO) *PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk, pem_password_cb *cb, void *u)
  86. {
  87. X509_INFO *xi=NULL;
  88. char *name=NULL,*header=NULL;
  89. void *pp;
  90. unsigned char *data=NULL;
  91. const unsigned char *p;
  92. long len,error=0;
  93. int ok=0;
  94. STACK_OF(X509_INFO) *ret=NULL;
  95. unsigned int i,raw,ptype;
  96. d2i_of_void *d2i = 0;
  97. if (sk == NULL)
  98. {
  99. if ((ret=sk_X509_INFO_new_null()) == NULL)
  100. {
  101. OPENSSL_PUT_ERROR(PEM, PEM_X509_INFO_read_bio, ERR_R_MALLOC_FAILURE);
  102. goto err;
  103. }
  104. }
  105. else
  106. ret=sk;
  107. if ((xi=X509_INFO_new()) == NULL) goto err;
  108. for (;;)
  109. {
  110. raw=0;
  111. ptype = 0;
  112. i=PEM_read_bio(bp,&name,&header,&data,&len);
  113. if (i == 0)
  114. {
  115. error=ERR_GET_REASON(ERR_peek_last_error());
  116. if (error == PEM_R_NO_START_LINE)
  117. {
  118. ERR_clear_error();
  119. break;
  120. }
  121. goto err;
  122. }
  123. start:
  124. if ( (strcmp(name,PEM_STRING_X509) == 0) ||
  125. (strcmp(name,PEM_STRING_X509_OLD) == 0))
  126. {
  127. d2i=(D2I_OF(void))d2i_X509;
  128. if (xi->x509 != NULL)
  129. {
  130. if (!sk_X509_INFO_push(ret,xi)) goto err;
  131. if ((xi=X509_INFO_new()) == NULL) goto err;
  132. goto start;
  133. }
  134. pp=&(xi->x509);
  135. }
  136. else if ((strcmp(name,PEM_STRING_X509_TRUSTED) == 0))
  137. {
  138. d2i=(D2I_OF(void))d2i_X509_AUX;
  139. if (xi->x509 != NULL)
  140. {
  141. if (!sk_X509_INFO_push(ret,xi)) goto err;
  142. if ((xi=X509_INFO_new()) == NULL) goto err;
  143. goto start;
  144. }
  145. pp=&(xi->x509);
  146. }
  147. else if (strcmp(name,PEM_STRING_X509_CRL) == 0)
  148. {
  149. d2i=(D2I_OF(void))d2i_X509_CRL;
  150. if (xi->crl != NULL)
  151. {
  152. if (!sk_X509_INFO_push(ret,xi)) goto err;
  153. if ((xi=X509_INFO_new()) == NULL) goto err;
  154. goto start;
  155. }
  156. pp=&(xi->crl);
  157. }
  158. else
  159. if (strcmp(name,PEM_STRING_RSA) == 0)
  160. {
  161. d2i=(D2I_OF(void))d2i_RSAPrivateKey;
  162. if (xi->x_pkey != NULL)
  163. {
  164. if (!sk_X509_INFO_push(ret,xi)) goto err;
  165. if ((xi=X509_INFO_new()) == NULL) goto err;
  166. goto start;
  167. }
  168. xi->enc_data=NULL;
  169. xi->enc_len=0;
  170. xi->x_pkey=X509_PKEY_new();
  171. ptype=EVP_PKEY_RSA;
  172. pp=&xi->x_pkey->dec_pkey;
  173. if ((int)strlen(header) > 10) /* assume encrypted */
  174. raw=1;
  175. }
  176. else
  177. #ifndef OPENSSL_NO_DSA
  178. if (strcmp(name,PEM_STRING_DSA) == 0)
  179. {
  180. d2i=(D2I_OF(void))d2i_DSAPrivateKey;
  181. if (xi->x_pkey != NULL)
  182. {
  183. if (!sk_X509_INFO_push(ret,xi)) goto err;
  184. if ((xi=X509_INFO_new()) == NULL) goto err;
  185. goto start;
  186. }
  187. xi->enc_data=NULL;
  188. xi->enc_len=0;
  189. xi->x_pkey=X509_PKEY_new();
  190. ptype = EVP_PKEY_DSA;
  191. pp=&xi->x_pkey->dec_pkey;
  192. if ((int)strlen(header) > 10) /* assume encrypted */
  193. raw=1;
  194. }
  195. else
  196. #endif
  197. if (strcmp(name,PEM_STRING_ECPRIVATEKEY) == 0)
  198. {
  199. d2i=(D2I_OF(void))d2i_ECPrivateKey;
  200. if (xi->x_pkey != NULL)
  201. {
  202. if (!sk_X509_INFO_push(ret,xi)) goto err;
  203. if ((xi=X509_INFO_new()) == NULL) goto err;
  204. goto start;
  205. }
  206. xi->enc_data=NULL;
  207. xi->enc_len=0;
  208. xi->x_pkey=X509_PKEY_new();
  209. ptype = EVP_PKEY_EC;
  210. pp=&xi->x_pkey->dec_pkey;
  211. if ((int)strlen(header) > 10) /* assume encrypted */
  212. raw=1;
  213. }
  214. else
  215. {
  216. d2i=NULL;
  217. pp=NULL;
  218. }
  219. if (d2i != NULL)
  220. {
  221. if (!raw)
  222. {
  223. EVP_CIPHER_INFO cipher;
  224. if (!PEM_get_EVP_CIPHER_INFO(header,&cipher))
  225. goto err;
  226. if (!PEM_do_header(&cipher,data,&len,cb,u))
  227. goto err;
  228. p=data;
  229. if (ptype)
  230. {
  231. if (!d2i_PrivateKey(ptype, pp, &p, len))
  232. {
  233. OPENSSL_PUT_ERROR(PEM, PEM_X509_INFO_read_bio, ERR_R_ASN1_LIB);
  234. goto err;
  235. }
  236. }
  237. else if (d2i(pp,&p,len) == NULL)
  238. {
  239. OPENSSL_PUT_ERROR(PEM, PEM_X509_INFO_read_bio, ERR_R_ASN1_LIB);
  240. goto err;
  241. }
  242. }
  243. else
  244. { /* encrypted RSA data */
  245. if (!PEM_get_EVP_CIPHER_INFO(header,
  246. &xi->enc_cipher)) goto err;
  247. xi->enc_data=(char *)data;
  248. xi->enc_len=(int)len;
  249. data=NULL;
  250. }
  251. }
  252. else {
  253. /* unknown */
  254. }
  255. if (name != NULL) OPENSSL_free(name);
  256. if (header != NULL) OPENSSL_free(header);
  257. if (data != NULL) OPENSSL_free(data);
  258. name=NULL;
  259. header=NULL;
  260. data=NULL;
  261. }
  262. /* if the last one hasn't been pushed yet and there is anything
  263. * in it then add it to the stack ...
  264. */
  265. if ((xi->x509 != NULL) || (xi->crl != NULL) ||
  266. (xi->x_pkey != NULL) || (xi->enc_data != NULL))
  267. {
  268. if (!sk_X509_INFO_push(ret,xi)) goto err;
  269. xi=NULL;
  270. }
  271. ok=1;
  272. err:
  273. if (xi != NULL) X509_INFO_free(xi);
  274. if (!ok)
  275. {
  276. for (i=0; ((int)i)<sk_X509_INFO_num(ret); i++)
  277. {
  278. xi=sk_X509_INFO_value(ret,i);
  279. X509_INFO_free(xi);
  280. }
  281. if (ret != sk) sk_X509_INFO_free(ret);
  282. ret=NULL;
  283. }
  284. if (name != NULL) OPENSSL_free(name);
  285. if (header != NULL) OPENSSL_free(header);
  286. if (data != NULL) OPENSSL_free(data);
  287. return(ret);
  288. }
  289. /* A TJH addition */
  290. int PEM_X509_INFO_write_bio(BIO *bp, X509_INFO *xi, EVP_CIPHER *enc,
  291. unsigned char *kstr, int klen, pem_password_cb *cb, void *u)
  292. {
  293. EVP_CIPHER_CTX ctx;
  294. int i,ret=0;
  295. unsigned char *data=NULL;
  296. const char *objstr=NULL;
  297. char buf[PEM_BUFSIZE];
  298. unsigned char *iv=NULL;
  299. unsigned iv_len = 0;
  300. if (enc != NULL)
  301. {
  302. iv_len = EVP_CIPHER_iv_length(enc);
  303. objstr=OBJ_nid2sn(EVP_CIPHER_nid(enc));
  304. if (objstr == NULL)
  305. {
  306. OPENSSL_PUT_ERROR(PEM, PEM_X509_INFO_write_bio, PEM_R_UNSUPPORTED_CIPHER);
  307. goto err;
  308. }
  309. }
  310. /* now for the fun part ... if we have a private key then
  311. * we have to be able to handle a not-yet-decrypted key
  312. * being written out correctly ... if it is decrypted or
  313. * it is non-encrypted then we use the base code
  314. */
  315. if (xi->x_pkey!=NULL)
  316. {
  317. if ( (xi->enc_data!=NULL) && (xi->enc_len>0) )
  318. {
  319. if (enc == NULL)
  320. {
  321. OPENSSL_PUT_ERROR(PEM, PEM_X509_INFO_write_bio, PEM_R_CIPHER_IS_NULL);
  322. goto err;
  323. }
  324. /* copy from weirdo names into more normal things */
  325. iv=xi->enc_cipher.iv;
  326. data=(unsigned char *)xi->enc_data;
  327. i=xi->enc_len;
  328. /* we take the encryption data from the
  329. * internal stuff rather than what the
  330. * user has passed us ... as we have to
  331. * match exactly for some strange reason
  332. */
  333. objstr=OBJ_nid2sn(
  334. EVP_CIPHER_nid(xi->enc_cipher.cipher));
  335. if (objstr == NULL)
  336. {
  337. OPENSSL_PUT_ERROR(PEM, PEM_X509_INFO_write_bio, PEM_R_UNSUPPORTED_CIPHER);
  338. goto err;
  339. }
  340. /* create the right magic header stuff */
  341. assert(strlen(objstr)+23+2*iv_len+13 <= sizeof buf);
  342. buf[0]='\0';
  343. PEM_proc_type(buf,PEM_TYPE_ENCRYPTED);
  344. PEM_dek_info(buf,objstr,iv_len,(char *)iv);
  345. /* use the normal code to write things out */
  346. i=PEM_write_bio(bp,PEM_STRING_RSA,buf,data,i);
  347. if (i <= 0) goto err;
  348. }
  349. else
  350. {
  351. /* Add DSA/DH */
  352. /* normal optionally encrypted stuff */
  353. if (PEM_write_bio_RSAPrivateKey(bp,
  354. xi->x_pkey->dec_pkey->pkey.rsa,
  355. enc,kstr,klen,cb,u)<=0)
  356. goto err;
  357. }
  358. }
  359. /* if we have a certificate then write it out now */
  360. if ((xi->x509 != NULL) && (PEM_write_bio_X509(bp,xi->x509) <= 0))
  361. goto err;
  362. /* we are ignoring anything else that is loaded into the X509_INFO
  363. * structure for the moment ... as I don't need it so I'm not
  364. * coding it here and Eric can do it when this makes it into the
  365. * base library --tjh
  366. */
  367. ret=1;
  368. err:
  369. OPENSSL_cleanse((char *)&ctx,sizeof(ctx));
  370. OPENSSL_cleanse(buf,PEM_BUFSIZE);
  371. return(ret);
  372. }