x_x509.c 6.6 KB
Newer Older
1
/* crypto/asn1/x_x509.c */
2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
 * All rights reserved.
 *
 * This package is an SSL implementation written
 * by Eric Young (eay@cryptsoft.com).
 * The implementation was written so as to conform with Netscapes SSL.
 * 
 * This library is free for commercial and non-commercial use as long as
 * the following conditions are aheared to.  The following conditions
 * apply to all code found in this distribution, be it the RC4, RSA,
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
 * included with this distribution is covered by the same copyright terms
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
 * 
 * Copyright remains Eric Young's, and as such any Copyright notices in
 * the code are not to be removed.
 * If this package is used in a product, Eric Young should be given attribution
 * as the author of the parts of the library used.
 * This can be in the form of a textual message at program startup or
 * in documentation (online or textual) provided with the package.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *    "This product includes cryptographic software written by
 *     Eric Young (eay@cryptsoft.com)"
 *    The word 'cryptographic' can be left out if the rouines from the library
 *    being used are not cryptographic related :-).
 * 4. If you include any Windows specific code (or a derivative thereof) from 
 *    the apps directory (application code) you must include an acknowledgement:
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
 * 
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * 
 * The licence and distribution terms for any publically available version or
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
 * copied and put under another distribution licence
 * [including the GNU Public Licence.]
 */

#include <stdio.h>
#include "cryptlib.h"
61 62
#include <openssl/evp.h>
#include <openssl/asn1_mac.h>
63
#include <openssl/x509.h>
64

D
Dr. Stephen Henson 已提交
65
static int x509_meth_num = 0;
D
 
Dr. Stephen Henson 已提交
66
static STACK_OF(CRYPTO_EX_DATA_FUNCS) *x509_meth = NULL;
D
Dr. Stephen Henson 已提交
67

68 69 70 71 72 73
static ASN1_METHOD meth={
	(int (*)())  i2d_X509,
	(char *(*)())d2i_X509,
	(char *(*)())X509_new,
	(void (*)()) X509_free};

U
Ulf Möller 已提交
74
ASN1_METHOD *X509_asn1_meth(void)
75 76 77 78
	{
	return(&meth);
	}

U
Ulf Möller 已提交
79
int i2d_X509(X509 *a, unsigned char **pp)
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
	{
	M_ASN1_I2D_vars(a);

	M_ASN1_I2D_len(a->cert_info,	i2d_X509_CINF);
	M_ASN1_I2D_len(a->sig_alg,	i2d_X509_ALGOR);
	M_ASN1_I2D_len(a->signature,	i2d_ASN1_BIT_STRING);

	M_ASN1_I2D_seq_total();

	M_ASN1_I2D_put(a->cert_info,	i2d_X509_CINF);
	M_ASN1_I2D_put(a->sig_alg,	i2d_X509_ALGOR);
	M_ASN1_I2D_put(a->signature,	i2d_ASN1_BIT_STRING);

	M_ASN1_I2D_finish();
	}

U
Ulf Möller 已提交
96
X509 *d2i_X509(X509 **a, unsigned char **pp, long length)
97 98 99 100 101 102 103 104
	{
	M_ASN1_D2I_vars(a,X509 *,X509_new);

	M_ASN1_D2I_Init();
	M_ASN1_D2I_start_sequence();
	M_ASN1_D2I_get(ret->cert_info,d2i_X509_CINF);
	M_ASN1_D2I_get(ret->sig_alg,d2i_X509_ALGOR);
	M_ASN1_D2I_get(ret->signature,d2i_ASN1_BIT_STRING);
105
	if (ret->name != NULL) OPENSSL_free(ret->name);
B
Ben Laurie 已提交
106
	ret->name=X509_NAME_oneline(ret->cert_info->subject,NULL,0);
107 108 109 110

	M_ASN1_D2I_Finish(a,X509_free,ASN1_F_D2I_X509);
	}

U
Ulf Möller 已提交
111
X509 *X509_new(void)
112 113
	{
	X509 *ret=NULL;
114
	ASN1_CTX c;
115 116 117 118

	M_ASN1_New_Malloc(ret,X509);
	ret->references=1;
	ret->valid=0;
119
	ret->ex_flags = 0;
120
	ret->name=NULL;
121
	ret->aux=NULL;
122 123
	M_ASN1_New(ret->cert_info,X509_CINF_new);
	M_ASN1_New(ret->sig_alg,X509_ALGOR_new);
124
	M_ASN1_New(ret->signature,M_ASN1_BIT_STRING_new);
D
 
Dr. Stephen Henson 已提交
125
	CRYPTO_new_ex_data(x509_meth, ret, &ret->ex_data);
126 127 128 129
	return(ret);
	M_ASN1_New_Error(ASN1_F_X509_NEW);
	}

U
Ulf Möller 已提交
130
void X509_free(X509 *a)
131 132 133 134 135 136
	{
	int i;

	if (a == NULL) return;

	i=CRYPTO_add(&a->references,-1,CRYPTO_LOCK_X509);
137 138 139
#ifdef REF_PRINT
	REF_PRINT("X509",a);
#endif
140 141 142 143 144 145 146 147 148
	if (i > 0) return;
#ifdef REF_CHECK
	if (i < 0)
		{
		fprintf(stderr,"X509_free, bad reference count\n");
		abort();
		}
#endif

D
 
Dr. Stephen Henson 已提交
149
	CRYPTO_free_ex_data(x509_meth,a,&a->ex_data);
150 151
	X509_CINF_free(a->cert_info);
	X509_ALGOR_free(a->sig_alg);
152
	M_ASN1_BIT_STRING_free(a->signature);
153
	X509_CERT_AUX_free(a->aux);
154

155 156
	if (a->name != NULL) OPENSSL_free(a->name);
	OPENSSL_free(a);
157 158
	}

D
 
Dr. Stephen Henson 已提交
159 160
int X509_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
	     CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
D
Dr. Stephen Henson 已提交
161 162 163 164 165 166
        {
	x509_meth_num++;
	return(CRYPTO_get_ex_new_index(x509_meth_num-1,
		&x509_meth,argl,argp,new_func,dup_func,free_func));
        }

D
 
Dr. Stephen Henson 已提交
167
int X509_set_ex_data(X509 *r, int idx, void *arg)
D
Dr. Stephen Henson 已提交
168 169 170 171
	{
	return(CRYPTO_set_ex_data(&r->ex_data,idx,arg));
	}

D
 
Dr. Stephen Henson 已提交
172
void *X509_get_ex_data(X509 *r, int idx)
D
Dr. Stephen Henson 已提交
173 174 175 176
	{
	return(CRYPTO_get_ex_data(&r->ex_data,idx));
	}

177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
/* X509_AUX ASN1 routines. X509_AUX is the name given to
 * a certificate with extra info tagged on the end. Since these
 * functions set how a certificate is trusted they should only
 * be used when the certificate comes from a reliable source
 * such as local storage.
 *
 */

X509 *d2i_X509_AUX(X509 **a, unsigned char **pp, long length)
{
	unsigned char *q;
	X509 *ret;
	/* Save start position */
	q = *pp;
	ret = d2i_X509(a, pp, length);
	/* If certificate unreadable then forget it */
	if(!ret) return NULL;
	/* update length */
	length -= *pp - q;
	if(!length) return ret;
	if(!d2i_X509_CERT_AUX(&ret->aux, pp, length)) goto err;
	return ret;
	err:
	X509_free(ret);
	return NULL;
}

int i2d_X509_AUX(X509 *a, unsigned char **pp)
{
	int length;
	length = i2d_X509(a, pp);
	if(a) length += i2d_X509_CERT_AUX(a->aux, pp);
	return length;
}