| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-11-26 22:18:57 +08:00
										 |  |  |  * Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											1999-03-29 07:17:34 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:49:51 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:52:22 +08:00
										 |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											1999-03-29 07:17:34 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-14 22:56:48 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/pkcs12.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:40 +08:00
										 |  |  | #include "p12_local.h"
 | 
					
						
							| 
									
										
										
										
											1999-03-29 07:17:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Pack an object into an OCTET STRING and turn into a safebag */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | PKCS12_SAFEBAG *PKCS12_item_pack_safebag(void *obj, const ASN1_ITEM *it, | 
					
						
							|  |  |  |                                          int nid1, int nid2) | 
					
						
							| 
									
										
										
										
											1999-03-29 07:17:34 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     PKCS12_BAGS *bag; | 
					
						
							|  |  |  |     PKCS12_SAFEBAG *safebag; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((bag = PKCS12_BAGS_new()) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PKCS12, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     bag->type = OBJ_nid2obj(nid1); | 
					
						
							|  |  |  |     if (!ASN1_item_pack(obj, it, &bag->value.octet)) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PKCS12, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2015-10-08 20:38:57 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if ((safebag = PKCS12_SAFEBAG_new()) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PKCS12, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2015-10-08 20:38:57 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     safebag->value.bag = bag; | 
					
						
							|  |  |  |     safebag->type = OBJ_nid2obj(nid2); | 
					
						
							|  |  |  |     return safebag; | 
					
						
							| 
									
										
										
										
											2015-10-08 20:38:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     PKCS12_BAGS_free(bag); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											1999-03-29 07:17:34 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Turn a stack of SAFEBAGS into a PKCS#7 data Contentinfo */ | 
					
						
							| 
									
										
										
										
											2000-12-31 09:13:04 +08:00
										 |  |  | PKCS7 *PKCS12_pack_p7data(STACK_OF(PKCS12_SAFEBAG) *sk) | 
					
						
							| 
									
										
										
										
											1999-03-29 07:17:34 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     PKCS7 *p7; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((p7 = PKCS7_new()) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PKCS12, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     p7->type = OBJ_nid2obj(NID_pkcs7_data); | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if ((p7->d.data = ASN1_OCTET_STRING_new()) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PKCS12, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2015-10-08 20:38:57 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ASN1_item_pack(sk, ASN1_ITEM_rptr(PKCS12_SAFEBAGS), &p7->d.data)) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PKCS12, PKCS12_R_CANT_PACK_STRUCTURE); | 
					
						
							| 
									
										
										
										
											2015-10-08 20:38:57 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return p7; | 
					
						
							| 
									
										
										
										
											2015-10-08 20:38:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     PKCS7_free(p7); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											1999-03-29 07:17:34 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-31 09:13:04 +08:00
										 |  |  | /* Unpack SAFEBAGS from PKCS#7 data ContentInfo */ | 
					
						
							|  |  |  | STACK_OF(PKCS12_SAFEBAG) *PKCS12_unpack_p7data(PKCS7 *p7) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (!PKCS7_type_is_data(p7)) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PKCS12, PKCS12_R_CONTENT_TYPE_NOT_DATA); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return ASN1_item_unpack(p7->d.data, ASN1_ITEM_rptr(PKCS12_SAFEBAGS)); | 
					
						
							| 
									
										
										
										
											2000-12-31 09:13:04 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-29 07:17:34 +08:00
										 |  |  | /* Turn a stack of SAFEBAGS into a PKCS#7 encrypted data ContentInfo */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-31 09:13:04 +08:00
										 |  |  | PKCS7 *PKCS12_pack_p7encdata(int pbe_nid, const char *pass, int passlen, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                              unsigned char *salt, int saltlen, int iter, | 
					
						
							|  |  |  |                              STACK_OF(PKCS12_SAFEBAG) *bags) | 
					
						
							| 
									
										
										
										
											1999-03-29 07:17:34 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     PKCS7 *p7; | 
					
						
							|  |  |  |     X509_ALGOR *pbe; | 
					
						
							|  |  |  |     const EVP_CIPHER *pbe_ciph; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((p7 = PKCS7_new()) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PKCS12, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!PKCS7_set_type(p7, NID_pkcs7_encrypted)) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PKCS12, PKCS12_R_ERROR_SETTING_ENCRYPTED_DATA_TYPE); | 
					
						
							| 
									
										
										
										
											2015-10-08 20:38:57 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pbe_ciph = EVP_get_cipherbynid(pbe_nid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (pbe_ciph) | 
					
						
							|  |  |  |         pbe = PKCS5_pbe2_set(pbe_ciph, iter, salt, saltlen); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         pbe = PKCS5_pbe_set(pbe_nid, iter, salt, saltlen); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-17 03:28:57 +08:00
										 |  |  |     if (pbe == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PKCS12, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2015-10-08 20:38:57 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     X509_ALGOR_free(p7->d.encrypted->enc_data->algorithm); | 
					
						
							|  |  |  |     p7->d.encrypted->enc_data->algorithm = pbe; | 
					
						
							| 
									
										
										
										
											2015-03-14 12:16:42 +08:00
										 |  |  |     ASN1_OCTET_STRING_free(p7->d.encrypted->enc_data->enc_data); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (!(p7->d.encrypted->enc_data->enc_data = | 
					
						
							|  |  |  |           PKCS12_item_i2d_encrypt(pbe, ASN1_ITEM_rptr(PKCS12_SAFEBAGS), pass, | 
					
						
							|  |  |  |                                   passlen, bags, 1))) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PKCS12, PKCS12_R_ENCRYPT_ERROR); | 
					
						
							| 
									
										
										
										
											2015-10-08 20:38:57 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return p7; | 
					
						
							| 
									
										
										
										
											2015-10-08 20:38:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     PKCS7_free(p7); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											1999-03-29 07:17:34 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | STACK_OF(PKCS12_SAFEBAG) *PKCS12_unpack_p7encdata(PKCS7 *p7, const char *pass, | 
					
						
							|  |  |  |                                                   int passlen) | 
					
						
							| 
									
										
										
										
											2000-12-31 09:13:04 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (!PKCS7_type_is_encrypted(p7)) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     return PKCS12_item_decrypt_d2i(p7->d.encrypted->enc_data->algorithm, | 
					
						
							|  |  |  |                                    ASN1_ITEM_rptr(PKCS12_SAFEBAGS), | 
					
						
							|  |  |  |                                    pass, passlen, | 
					
						
							|  |  |  |                                    p7->d.encrypted->enc_data->enc_data, 1); | 
					
						
							| 
									
										
										
										
											2000-12-31 09:13:04 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-13 19:07:42 +08:00
										 |  |  | PKCS8_PRIV_KEY_INFO *PKCS12_decrypt_skey(const PKCS12_SAFEBAG *bag, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                          const char *pass, int passlen) | 
					
						
							| 
									
										
										
										
											2000-12-31 09:13:04 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return PKCS8_decrypt(bag->value.shkeybag, pass, passlen); | 
					
						
							| 
									
										
										
										
											2000-12-31 09:13:04 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | int PKCS12_pack_authsafes(PKCS12 *p12, STACK_OF(PKCS7) *safes) | 
					
						
							| 
									
										
										
										
											2000-12-31 09:13:04 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (ASN1_item_pack(safes, ASN1_ITEM_rptr(PKCS12_AUTHSAFES), | 
					
						
							|  |  |  |                        &p12->authsafes->d.data)) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2000-12-31 09:13:04 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-13 19:07:42 +08:00
										 |  |  | STACK_OF(PKCS7) *PKCS12_unpack_authsafes(const PKCS12 *p12) | 
					
						
							| 
									
										
										
										
											2000-12-31 09:13:04 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (!PKCS7_type_is_data(p12->authsafes)) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PKCS12, PKCS12_R_CONTENT_TYPE_NOT_DATA); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return ASN1_item_unpack(p12->authsafes->d.data, | 
					
						
							|  |  |  |                             ASN1_ITEM_rptr(PKCS12_AUTHSAFES)); | 
					
						
							| 
									
										
										
										
											2000-12-31 09:13:04 +08:00
										 |  |  | } |