sl@0
|
1 |
/* crypto/asn1/x_x509.c */
|
sl@0
|
2 |
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
*
|
sl@0
|
5 |
* This package is an SSL implementation written
|
sl@0
|
6 |
* by Eric Young (eay@cryptsoft.com).
|
sl@0
|
7 |
* The implementation was written so as to conform with Netscapes SSL.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is free for commercial and non-commercial use as long as
|
sl@0
|
10 |
* the following conditions are aheared to. The following conditions
|
sl@0
|
11 |
* apply to all code found in this distribution, be it the RC4, RSA,
|
sl@0
|
12 |
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
sl@0
|
13 |
* included with this distribution is covered by the same copyright terms
|
sl@0
|
14 |
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
sl@0
|
15 |
*
|
sl@0
|
16 |
* Copyright remains Eric Young's, and as such any Copyright notices in
|
sl@0
|
17 |
* the code are not to be removed.
|
sl@0
|
18 |
* If this package is used in a product, Eric Young should be given attribution
|
sl@0
|
19 |
* as the author of the parts of the library used.
|
sl@0
|
20 |
* This can be in the form of a textual message at program startup or
|
sl@0
|
21 |
* in documentation (online or textual) provided with the package.
|
sl@0
|
22 |
*
|
sl@0
|
23 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
24 |
* modification, are permitted provided that the following conditions
|
sl@0
|
25 |
* are met:
|
sl@0
|
26 |
* 1. Redistributions of source code must retain the copyright
|
sl@0
|
27 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
28 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
29 |
* notice, this list of conditions and the following disclaimer in the
|
sl@0
|
30 |
* documentation and/or other materials provided with the distribution.
|
sl@0
|
31 |
* 3. All advertising materials mentioning features or use of this software
|
sl@0
|
32 |
* must display the following acknowledgement:
|
sl@0
|
33 |
* "This product includes cryptographic software written by
|
sl@0
|
34 |
* Eric Young (eay@cryptsoft.com)"
|
sl@0
|
35 |
* The word 'cryptographic' can be left out if the rouines from the library
|
sl@0
|
36 |
* being used are not cryptographic related :-).
|
sl@0
|
37 |
* 4. If you include any Windows specific code (or a derivative thereof) from
|
sl@0
|
38 |
* the apps directory (application code) you must include an acknowledgement:
|
sl@0
|
39 |
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
sl@0
|
40 |
*
|
sl@0
|
41 |
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
sl@0
|
42 |
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
43 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
sl@0
|
44 |
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
sl@0
|
45 |
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
sl@0
|
46 |
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
sl@0
|
47 |
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
48 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
sl@0
|
49 |
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
sl@0
|
50 |
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
sl@0
|
51 |
* SUCH DAMAGE.
|
sl@0
|
52 |
*
|
sl@0
|
53 |
* The licence and distribution terms for any publically available version or
|
sl@0
|
54 |
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
sl@0
|
55 |
* copied and put under another distribution licence
|
sl@0
|
56 |
* [including the GNU Public Licence.]
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
/*
|
sl@0
|
59 |
© Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
|
sl@0
|
62 |
#include <stdio.h>
|
sl@0
|
63 |
#include "cryptlib.h"
|
sl@0
|
64 |
#include <openssl/evp.h>
|
sl@0
|
65 |
#include <openssl/asn1t.h>
|
sl@0
|
66 |
#include <openssl/x509.h>
|
sl@0
|
67 |
#include <openssl/x509v3.h>
|
sl@0
|
68 |
|
sl@0
|
69 |
#include "pcy_int.h"
|
sl@0
|
70 |
#if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
|
sl@0
|
71 |
#include "libcrypto_wsd_macros.h"
|
sl@0
|
72 |
#include "libcrypto_wsd.h"
|
sl@0
|
73 |
#endif
|
sl@0
|
74 |
|
sl@0
|
75 |
|
sl@0
|
76 |
|
sl@0
|
77 |
ASN1_SEQUENCE(X509_CINF) = {
|
sl@0
|
78 |
ASN1_EXP_OPT(X509_CINF, version, ASN1_INTEGER, 0),
|
sl@0
|
79 |
ASN1_SIMPLE(X509_CINF, serialNumber, ASN1_INTEGER),
|
sl@0
|
80 |
ASN1_SIMPLE(X509_CINF, signature, X509_ALGOR),
|
sl@0
|
81 |
ASN1_SIMPLE(X509_CINF, issuer, X509_NAME),
|
sl@0
|
82 |
ASN1_SIMPLE(X509_CINF, validity, X509_VAL),
|
sl@0
|
83 |
ASN1_SIMPLE(X509_CINF, subject, X509_NAME),
|
sl@0
|
84 |
ASN1_SIMPLE(X509_CINF, key, X509_PUBKEY),
|
sl@0
|
85 |
ASN1_IMP_OPT(X509_CINF, issuerUID, ASN1_BIT_STRING, 1),
|
sl@0
|
86 |
ASN1_IMP_OPT(X509_CINF, subjectUID, ASN1_BIT_STRING, 2),
|
sl@0
|
87 |
ASN1_EXP_SEQUENCE_OF_OPT(X509_CINF, extensions, X509_EXTENSION, 3)
|
sl@0
|
88 |
} ASN1_SEQUENCE_END(X509_CINF)
|
sl@0
|
89 |
|
sl@0
|
90 |
IMPLEMENT_ASN1_FUNCTIONS(X509_CINF)
|
sl@0
|
91 |
/* X509 top level structure needs a bit of customisation */
|
sl@0
|
92 |
|
sl@0
|
93 |
//extern void policy_cache_free(X509_POLICY_CACHE *cache);
|
sl@0
|
94 |
|
sl@0
|
95 |
static int x509_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
X509 *ret = (X509 *)*pval;
|
sl@0
|
98 |
|
sl@0
|
99 |
switch(operation) {
|
sl@0
|
100 |
|
sl@0
|
101 |
case ASN1_OP_NEW_POST:
|
sl@0
|
102 |
ret->valid=0;
|
sl@0
|
103 |
ret->name = NULL;
|
sl@0
|
104 |
ret->ex_flags = 0;
|
sl@0
|
105 |
ret->ex_pathlen = -1;
|
sl@0
|
106 |
ret->skid = NULL;
|
sl@0
|
107 |
ret->akid = NULL;
|
sl@0
|
108 |
ret->aux = NULL;
|
sl@0
|
109 |
CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509, ret, &ret->ex_data);
|
sl@0
|
110 |
break;
|
sl@0
|
111 |
|
sl@0
|
112 |
case ASN1_OP_D2I_POST:
|
sl@0
|
113 |
if (ret->name != NULL) OPENSSL_free(ret->name);
|
sl@0
|
114 |
ret->name=X509_NAME_oneline(ret->cert_info->subject,NULL,0);
|
sl@0
|
115 |
break;
|
sl@0
|
116 |
|
sl@0
|
117 |
case ASN1_OP_FREE_POST:
|
sl@0
|
118 |
CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509, ret, &ret->ex_data);
|
sl@0
|
119 |
X509_CERT_AUX_free(ret->aux);
|
sl@0
|
120 |
ASN1_OCTET_STRING_free(ret->skid);
|
sl@0
|
121 |
AUTHORITY_KEYID_free(ret->akid);
|
sl@0
|
122 |
policy_cache_free(ret->policy_cache);
|
sl@0
|
123 |
|
sl@0
|
124 |
if (ret->name != NULL) OPENSSL_free(ret->name);
|
sl@0
|
125 |
break;
|
sl@0
|
126 |
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
return 1;
|
sl@0
|
130 |
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
ASN1_SEQUENCE_ref(X509, x509_cb, CRYPTO_LOCK_X509) = {
|
sl@0
|
134 |
ASN1_SIMPLE(X509, cert_info, X509_CINF),
|
sl@0
|
135 |
ASN1_SIMPLE(X509, sig_alg, X509_ALGOR),
|
sl@0
|
136 |
ASN1_SIMPLE(X509, signature, ASN1_BIT_STRING)
|
sl@0
|
137 |
} ASN1_SEQUENCE_END_ref(X509, X509)
|
sl@0
|
138 |
|
sl@0
|
139 |
IMPLEMENT_ASN1_FUNCTIONS(X509)
|
sl@0
|
140 |
IMPLEMENT_ASN1_DUP_FUNCTION(X509)
|
sl@0
|
141 |
|
sl@0
|
142 |
#ifndef EMULATOR
|
sl@0
|
143 |
static ASN1_METHOD meth=
|
sl@0
|
144 |
{
|
sl@0
|
145 |
(I2D_OF(void)) i2d_X509,
|
sl@0
|
146 |
(D2I_OF(void)) d2i_X509,
|
sl@0
|
147 |
(void *(*)(void))X509_new,
|
sl@0
|
148 |
(void (*)(void *)) X509_free
|
sl@0
|
149 |
};
|
sl@0
|
150 |
#else
|
sl@0
|
151 |
GET_STATIC_VAR_FROM_TLS(meth,x_x509,ASN1_METHOD)
|
sl@0
|
152 |
#define meth (*GET_WSD_VAR_NAME(meth,x_x509, s)())
|
sl@0
|
153 |
const ASN1_METHOD temp_s_meth=
|
sl@0
|
154 |
{
|
sl@0
|
155 |
(I2D_OF(void)) i2d_X509,
|
sl@0
|
156 |
(D2I_OF(void)) d2i_X509,
|
sl@0
|
157 |
(void *(*)(void))X509_new,
|
sl@0
|
158 |
(void (*)(void *)) X509_free
|
sl@0
|
159 |
};
|
sl@0
|
160 |
#endif
|
sl@0
|
161 |
EXPORT_C ASN1_METHOD *X509_asn1_meth(void)
|
sl@0
|
162 |
{
|
sl@0
|
163 |
return(&meth);
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
EXPORT_C int X509_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
|
sl@0
|
167 |
CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
|
sl@0
|
168 |
{
|
sl@0
|
169 |
return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_X509, argl, argp,
|
sl@0
|
170 |
new_func, dup_func, free_func);
|
sl@0
|
171 |
}
|
sl@0
|
172 |
|
sl@0
|
173 |
EXPORT_C int X509_set_ex_data(X509 *r, int idx, void *arg)
|
sl@0
|
174 |
{
|
sl@0
|
175 |
return(CRYPTO_set_ex_data(&r->ex_data,idx,arg));
|
sl@0
|
176 |
}
|
sl@0
|
177 |
|
sl@0
|
178 |
EXPORT_C void *X509_get_ex_data(X509 *r, int idx)
|
sl@0
|
179 |
{
|
sl@0
|
180 |
return(CRYPTO_get_ex_data(&r->ex_data,idx));
|
sl@0
|
181 |
}
|
sl@0
|
182 |
|
sl@0
|
183 |
/* X509_AUX ASN1 routines. X509_AUX is the name given to
|
sl@0
|
184 |
* a certificate with extra info tagged on the end. Since these
|
sl@0
|
185 |
* functions set how a certificate is trusted they should only
|
sl@0
|
186 |
* be used when the certificate comes from a reliable source
|
sl@0
|
187 |
* such as local storage.
|
sl@0
|
188 |
*
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
|
sl@0
|
191 |
EXPORT_C X509 *d2i_X509_AUX(X509 **a, const unsigned char **pp, long length)
|
sl@0
|
192 |
{
|
sl@0
|
193 |
const unsigned char *q;
|
sl@0
|
194 |
X509 *ret;
|
sl@0
|
195 |
/* Save start position */
|
sl@0
|
196 |
q = *pp;
|
sl@0
|
197 |
ret = d2i_X509(a, pp, length);
|
sl@0
|
198 |
/* If certificate unreadable then forget it */
|
sl@0
|
199 |
if(!ret) return NULL;
|
sl@0
|
200 |
/* update length */
|
sl@0
|
201 |
length -= *pp - q;
|
sl@0
|
202 |
if(!length) return ret;
|
sl@0
|
203 |
if(!d2i_X509_CERT_AUX(&ret->aux, pp, length)) goto err;
|
sl@0
|
204 |
return ret;
|
sl@0
|
205 |
err:
|
sl@0
|
206 |
X509_free(ret);
|
sl@0
|
207 |
return NULL;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
|
sl@0
|
210 |
EXPORT_C int i2d_X509_AUX(X509 *a, unsigned char **pp)
|
sl@0
|
211 |
{
|
sl@0
|
212 |
int length;
|
sl@0
|
213 |
length = i2d_X509(a, pp);
|
sl@0
|
214 |
if(a) length += i2d_X509_CERT_AUX(a->aux, pp);
|
sl@0
|
215 |
return length;
|
sl@0
|
216 |
}
|