VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/crypto/pkcs7-sign.cpp@ 84235

最後變更 在這個檔案從84235是 84235,由 vboxsync 提交於 5 年 前

IPRT,openssl: Adding RTCrPkcs7SimpleSignSignedData as a feeble start at PKCS#7/CMS signing. [build fix] bugref:9699

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 7.6 KB
 
1/* $Id: pkcs7-sign.cpp 84235 2020-05-10 01:04:47Z vboxsync $ */
2/** @file
3 * IPRT - Crypto - PKCS \#7, Signing
4 */
5
6/*
7 * Copyright (C) 2006-2020 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.alldomusa.eu.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include "internal/iprt.h"
32#include <iprt/crypto/pkcs7.h>
33
34#include <iprt/err.h>
35#include <iprt/string.h>
36#include <iprt/crypto/digest.h>
37#include <iprt/crypto/key.h>
38#include <iprt/crypto/pkix.h>
39#include <iprt/crypto/store.h>
40#include <iprt/crypto/x509.h>
41
42#ifdef IPRT_WITH_OPENSSL
43# include "internal/iprt-openssl.h"
44# include <openssl/pkcs7.h>
45# include <openssl/cms.h>
46# include <openssl/x509.h>
47# include <openssl/err.h>
48#endif
49
50
51/*********************************************************************************************************************************
52* Structures and Typedefs *
53*********************************************************************************************************************************/
54/**
55 * PKCS\#7 / CMS signing operation instance.
56 */
57typedef struct RTCRPKCS7SIGNINGJOBINT
58{
59 /** Magic value (RTCRPKCS7SIGNINGJOBINT). */
60 uint32_t u32Magic;
61 /** Reference counter. */
62 uint32_t volatile cRefs;
63 /** RTCRPKCS7SIGN_F_XXX. */
64 uint64_t fFlags;
65 /** Set if finalized. */
66 bool fFinallized;
67
68 //....
69} RTCRPKCS7SIGNINGJOBINT;
70
71/** Magic value for RTCRPKCS7SIGNINGJOBINT (Jonathan Lethem). */
72#define RTCRPKCS7SIGNINGJOBINT_MAGIC UINT32_C(0x19640219)
73
74/** Handle to PKCS\#7/CMS signing operation. */
75typedef struct RTCRPKCS7SIGNINGJOBINT *RTCRPKCS7SIGNINGJOB;
76/** Pointer to a PKCS\#7/CMS signing operation handle. */
77typedef RTCRPKCS7SIGNINGJOB *PRTCRPKCS7SIGNINGJOB;
78
79//// CMS_sign
80//RTDECL(int) RTCrPkcs7Sign(PRTCRPKCS7SIGNINGJOB *phJob, uint64_t fFlags, PCRTCRX509CERTIFICATE pSigner, RTCRKEY hPrivateKey,
81// RTCRSTORE hAdditionalCerts,
82//
83
84
85
86RTDECL(int) RTCrPkcs7SimpleSignSignedData(uint32_t fFlags, PCRTCRX509CERTIFICATE pSigner, RTCRKEY hPrivateKey,
87 void const *pvData, size_t cbData, RTCRSTORE hAdditionalCerts,
88 void *pvResult, size_t *pcbResult, PRTERRINFO pErrInfo)
89{
90 size_t const cbResultBuf = *pcbResult;
91 *pcbResult = 0;
92 AssertReturn(!(fFlags & ~RTCRPKCS7SIGN_SD_F_VALID_MASK), VERR_INVALID_FLAGS);
93#if defined(IPRT_WITH_OPENSSL)
94 AssertReturn((int)cbData >= 0 && (unsigned)cbData == cbData, VERR_TOO_MUCH_DATA);
95
96 /*
97 * Convert the private key.
98 */
99 EVP_PKEY *pEvpPrivateKey = NULL;
100 int rc = rtCrKeyToOpenSslKey(hPrivateKey, false /*fNeedPublic*/, (void **)&pEvpPrivateKey, pErrInfo);
101 if (RT_SUCCESS(rc))
102 {
103 /*
104 * Convert the signing certificate.
105 */
106 X509 *pOsslSigner = NULL;
107 rc = rtCrOpenSslConvertX509Cert((void **)&pOsslSigner, pSigner, pErrInfo);
108 if (RT_SUCCESS(rc))
109 {
110 /*
111 * Convert any additional certificates.
112 */
113 STACK_OF(X509) *pOsslAdditionalCerts = NULL;
114 if (hAdditionalCerts != NIL_RTCRSTORE)
115 rc = RTCrStoreConvertToOpenSslCertStack(hAdditionalCerts, 0 /*fFlags*/, (void **)&pOsslAdditionalCerts, pErrInfo);
116 if (RT_SUCCESS(rc))
117 {
118 /*
119 * Create a BIO for the data buffer.
120 */
121 BIO *pOsslData = BIO_new_mem_buf((void *)pvData, (int)cbData);
122 if (pOsslData)
123 {
124 /*
125 * Do the signing.
126 */
127 unsigned int fOsslSign = CMS_BINARY;
128 if (fFlags & RTCRPKCS7SIGN_SD_F_DEATCHED)
129 fOsslSign |= CMS_DETACHED;
130 if (fFlags & RTCRPKCS7SIGN_SD_F_NO_SMIME_CAP)
131 fOsslSign |= CMS_NOSMIMECAP;
132 CMS_ContentInfo *pCms = CMS_sign(pOsslSigner, pEvpPrivateKey, pOsslAdditionalCerts, pOsslData, fOsslSign);
133 if (pCms)
134 {
135 /*
136 * Get the output and copy it into the result buffer.
137 */
138 BIO *pOsslResult = BIO_new(BIO_s_mem());
139 if (pOsslResult)
140 {
141 rc = i2d_CMS_bio(pOsslResult, pCms);
142 if (rc > 0)
143 {
144 BUF_MEM *pBuf = NULL;
145 rc = (int)BIO_get_mem_ptr(pOsslResult, &pBuf);
146 if (rc > 0)
147 {
148 AssertPtr(pBuf);
149 size_t const cbResult = pBuf->length;
150 if ( cbResultBuf >= cbResult
151 && pvResult != NULL)
152 {
153 memcpy(pvResult, pBuf->data, cbResult);
154 rc = VINF_SUCCESS;
155 }
156 else
157 rc = VERR_BUFFER_OVERFLOW;
158 *pcbResult = cbResult;
159 }
160 else
161 rc = RTErrInfoSet(pErrInfo, VERR_GENERAL_FAILURE, "BIO_get_mem_ptr");
162 }
163 else
164 rc = RTErrInfoSet(pErrInfo, VERR_GENERAL_FAILURE, "i2d_CMS_bio");
165 BIO_free(pOsslResult);
166 }
167 else
168 rc = RTErrInfoSet(pErrInfo, VERR_NO_MEMORY, "BIO_new/BIO_s_mem");
169 CMS_ContentInfo_free(pCms);
170 }
171 else
172 rc = RTErrInfoSet(pErrInfo, VERR_GENERAL_FAILURE, "CMS_sign");
173 BIO_free(pOsslData);
174 }
175 }
176 rtCrOpenSslFreeConvertedX509Cert(pOsslSigner);
177 }
178 EVP_PKEY_free(pEvpPrivateKey);
179 }
180 return rc;
181#else
182 RT_NOREF(fFlags, pSigner, hPrivateKey, pvData, cbData, hAdditionalCerts, pvResult, pErrInfo, cbResultBuf);
183 *pcbResult = 0;
184 return VERR_NOT_IMPLEMENTED;
185#endif
186}
187
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette