2008-11-06 02:39:08 +08:00
|
|
|
/*
|
2021-04-08 20:04:41 +08:00
|
|
|
* Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2000-12-09 03:09:35 +08:00
|
|
|
*
|
2018-12-06 20:17:34 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:51:34 +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
|
2000-12-09 03:09:35 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <openssl/asn1.h>
|
|
|
|
#include <openssl/objects.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/asn1t.h>
|
2001-02-05 17:07:50 +08:00
|
|
|
#include <string.h>
|
2019-09-28 06:45:40 +08:00
|
|
|
#include "asn1_local.h"
|
2000-12-09 03:09:35 +08:00
|
|
|
|
2015-09-15 22:54:19 +08:00
|
|
|
static int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
|
2021-05-22 00:25:05 +08:00
|
|
|
int embed, OSSL_LIB_CTX *libctx,
|
|
|
|
const char *propq);
|
2015-10-07 20:28:46 +08:00
|
|
|
static int asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
|
|
|
|
int embed);
|
2000-12-09 03:09:35 +08:00
|
|
|
static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
2021-05-22 00:25:05 +08:00
|
|
|
static int asn1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt,
|
|
|
|
OSSL_LIB_CTX *libctx, const char *propq);
|
2000-12-09 03:09:35 +08:00
|
|
|
static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
|
2006-02-16 04:20:20 +08:00
|
|
|
static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
2000-12-09 03:09:35 +08:00
|
|
|
|
|
|
|
ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it)
|
2004-04-25 20:46:39 +08:00
|
|
|
{
|
2000-12-09 03:09:35 +08:00
|
|
|
ASN1_VALUE *ret = NULL;
|
2004-04-25 20:46:39 +08:00
|
|
|
if (ASN1_item_ex_new(&ret, it) > 0)
|
|
|
|
return ret;
|
2000-12-09 03:09:35 +08:00
|
|
|
return NULL;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2000-12-09 03:09:35 +08:00
|
|
|
|
2021-05-22 00:25:05 +08:00
|
|
|
ASN1_VALUE *ASN1_item_new_ex(const ASN1_ITEM *it, OSSL_LIB_CTX *libctx,
|
|
|
|
const char *propq)
|
|
|
|
{
|
|
|
|
ASN1_VALUE *ret = NULL;
|
|
|
|
if (asn1_item_embed_new(&ret, it, 0, libctx, propq) > 0)
|
|
|
|
return ret;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
/* Allocate an ASN1 structure */
|
|
|
|
|
2021-05-26 00:16:18 +08:00
|
|
|
|
|
|
|
int ossl_asn1_item_ex_new_intern(ASN1_VALUE **pval, const ASN1_ITEM *it,
|
|
|
|
OSSL_LIB_CTX *libctx, const char *propq)
|
|
|
|
{
|
|
|
|
return asn1_item_embed_new(pval, it, 0, libctx, propq);
|
|
|
|
}
|
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
|
2015-09-15 22:54:19 +08:00
|
|
|
{
|
2021-05-22 00:25:05 +08:00
|
|
|
return asn1_item_embed_new(pval, it, 0, NULL, NULL);
|
2015-09-15 22:54:19 +08:00
|
|
|
}
|
|
|
|
|
2021-05-22 00:25:05 +08:00
|
|
|
int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed,
|
|
|
|
OSSL_LIB_CTX *libctx, const char *propq)
|
2004-04-25 20:46:39 +08:00
|
|
|
{
|
2000-12-09 03:09:35 +08:00
|
|
|
const ASN1_TEMPLATE *tt = NULL;
|
|
|
|
const ASN1_EXTERN_FUNCS *ef;
|
|
|
|
const ASN1_AUX *aux = it->funcs;
|
|
|
|
ASN1_aux_cb *asn1_cb;
|
|
|
|
ASN1_VALUE **pseqval;
|
|
|
|
int i;
|
2004-04-25 20:46:39 +08:00
|
|
|
if (aux && aux->asn1_cb)
|
|
|
|
asn1_cb = aux->asn1_cb;
|
|
|
|
else
|
|
|
|
asn1_cb = 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2004-04-25 20:46:39 +08:00
|
|
|
switch (it->itype) {
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
case ASN1_ITYPE_EXTERN:
|
|
|
|
ef = it->funcs;
|
2021-05-22 00:25:05 +08:00
|
|
|
if (ef != NULL) {
|
|
|
|
if (ef->asn1_ex_new_ex != NULL) {
|
|
|
|
if (!ef->asn1_ex_new_ex(pval, it, libctx, propq))
|
2022-09-29 19:57:34 +08:00
|
|
|
goto asn1err;
|
2021-05-22 00:25:05 +08:00
|
|
|
} else if (ef->asn1_ex_new != NULL) {
|
|
|
|
if (!ef->asn1_ex_new(pval, it))
|
2022-09-29 19:57:34 +08:00
|
|
|
goto asn1err;
|
2021-05-22 00:25:05 +08:00
|
|
|
}
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2000-12-09 03:09:35 +08:00
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
case ASN1_ITYPE_PRIMITIVE:
|
2004-04-25 20:46:39 +08:00
|
|
|
if (it->templates) {
|
2021-05-22 00:25:05 +08:00
|
|
|
if (!asn1_template_new(pval, it->templates, libctx, propq))
|
2022-09-29 19:57:34 +08:00
|
|
|
goto asn1err;
|
2015-10-07 20:28:46 +08:00
|
|
|
} else if (!asn1_primitive_new(pval, it, embed))
|
2022-09-29 19:57:34 +08:00
|
|
|
goto asn1err;
|
2000-12-09 03:09:35 +08:00
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
case ASN1_ITYPE_MSTRING:
|
2015-10-07 20:28:46 +08:00
|
|
|
if (!asn1_primitive_new(pval, it, embed))
|
2022-09-29 19:57:34 +08:00
|
|
|
goto asn1err;
|
2000-12-09 03:09:35 +08:00
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
case ASN1_ITYPE_CHOICE:
|
2004-04-25 20:46:39 +08:00
|
|
|
if (asn1_cb) {
|
2005-09-02 04:42:52 +08:00
|
|
|
i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
|
2004-04-25 20:46:39 +08:00
|
|
|
if (!i)
|
|
|
|
goto auxerr;
|
|
|
|
if (i == 2) {
|
2001-04-02 08:59:19 +08:00
|
|
|
return 1;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2001-04-02 08:59:19 +08:00
|
|
|
}
|
2015-10-07 05:53:48 +08:00
|
|
|
if (embed) {
|
|
|
|
memset(*pval, 0, it->size);
|
|
|
|
} else {
|
|
|
|
*pval = OPENSSL_zalloc(it->size);
|
2015-10-30 19:12:26 +08:00
|
|
|
if (*pval == NULL)
|
2022-09-29 19:57:34 +08:00
|
|
|
return 0;
|
2015-10-07 05:53:48 +08:00
|
|
|
}
|
2021-03-09 07:48:16 +08:00
|
|
|
ossl_asn1_set_choice_selector(pval, -1, it);
|
2005-09-02 04:42:52 +08:00
|
|
|
if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
|
2017-02-02 01:29:47 +08:00
|
|
|
goto auxerr2;
|
2000-12-09 03:09:35 +08:00
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2002-10-03 20:38:52 +08:00
|
|
|
case ASN1_ITYPE_NDEF_SEQUENCE:
|
2000-12-09 03:09:35 +08:00
|
|
|
case ASN1_ITYPE_SEQUENCE:
|
2004-04-25 20:46:39 +08:00
|
|
|
if (asn1_cb) {
|
2005-09-02 04:42:52 +08:00
|
|
|
i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
|
2004-04-25 20:46:39 +08:00
|
|
|
if (!i)
|
|
|
|
goto auxerr;
|
|
|
|
if (i == 2) {
|
2001-02-16 09:35:44 +08:00
|
|
|
return 1;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2001-02-16 09:35:44 +08:00
|
|
|
}
|
2015-09-15 22:54:19 +08:00
|
|
|
if (embed) {
|
|
|
|
memset(*pval, 0, it->size);
|
|
|
|
} else {
|
|
|
|
*pval = OPENSSL_zalloc(it->size);
|
2015-10-30 19:12:26 +08:00
|
|
|
if (*pval == NULL)
|
2022-09-29 19:57:34 +08:00
|
|
|
return 0;
|
2015-09-15 22:54:19 +08:00
|
|
|
}
|
2016-05-29 20:32:23 +08:00
|
|
|
/* 0 : init. lock */
|
2021-03-09 07:48:16 +08:00
|
|
|
if (ossl_asn1_do_lock(pval, 0, it) < 0) {
|
2017-10-25 00:32:22 +08:00
|
|
|
if (!embed) {
|
|
|
|
OPENSSL_free(*pval);
|
|
|
|
*pval = NULL;
|
|
|
|
}
|
2022-09-29 19:57:34 +08:00
|
|
|
goto asn1err;
|
2017-10-25 00:32:22 +08:00
|
|
|
}
|
2021-03-09 07:48:16 +08:00
|
|
|
ossl_asn1_enc_init(pval, it);
|
2004-04-25 20:46:39 +08:00
|
|
|
for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) {
|
2021-03-09 07:48:16 +08:00
|
|
|
pseqval = ossl_asn1_get_field_ptr(pval, tt);
|
2021-05-22 00:25:05 +08:00
|
|
|
if (!asn1_template_new(pseqval, tt, libctx, propq))
|
2022-09-29 19:57:34 +08:00
|
|
|
goto asn1err2;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2005-09-02 04:42:52 +08:00
|
|
|
if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
|
2017-02-02 01:29:47 +08:00
|
|
|
goto auxerr2;
|
2000-12-09 03:09:35 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
|
2022-09-29 19:57:34 +08:00
|
|
|
asn1err2:
|
2021-03-09 07:48:16 +08:00
|
|
|
ossl_asn1_item_embed_free(pval, it, embed);
|
2022-09-29 19:57:34 +08:00
|
|
|
asn1err:
|
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB);
|
2000-12-09 03:09:35 +08:00
|
|
|
return 0;
|
|
|
|
|
2017-02-02 01:29:47 +08:00
|
|
|
auxerr2:
|
2021-03-09 07:48:16 +08:00
|
|
|
ossl_asn1_item_embed_free(pval, it, embed);
|
2000-12-09 03:09:35 +08:00
|
|
|
auxerr:
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ASN1_R_AUX_ERROR);
|
2000-12-09 03:09:35 +08:00
|
|
|
return 0;
|
|
|
|
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2000-12-09 03:09:35 +08:00
|
|
|
|
|
|
|
static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it)
|
2004-04-25 20:46:39 +08:00
|
|
|
{
|
2000-12-09 03:09:35 +08:00
|
|
|
const ASN1_EXTERN_FUNCS *ef;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2004-04-25 20:46:39 +08:00
|
|
|
switch (it->itype) {
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
case ASN1_ITYPE_EXTERN:
|
|
|
|
ef = it->funcs;
|
2004-04-25 20:46:39 +08:00
|
|
|
if (ef && ef->asn1_ex_clear)
|
2000-12-09 03:09:35 +08:00
|
|
|
ef->asn1_ex_clear(pval, it);
|
|
|
|
else
|
|
|
|
*pval = NULL;
|
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
case ASN1_ITYPE_PRIMITIVE:
|
2004-04-25 20:46:39 +08:00
|
|
|
if (it->templates)
|
2000-12-09 03:09:35 +08:00
|
|
|
asn1_template_clear(pval, it->templates);
|
|
|
|
else
|
|
|
|
asn1_primitive_clear(pval, it);
|
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
case ASN1_ITYPE_MSTRING:
|
|
|
|
asn1_primitive_clear(pval, it);
|
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
case ASN1_ITYPE_CHOICE:
|
|
|
|
case ASN1_ITYPE_SEQUENCE:
|
2002-10-03 20:38:52 +08:00
|
|
|
case ASN1_ITYPE_NDEF_SEQUENCE:
|
2000-12-09 03:09:35 +08:00
|
|
|
*pval = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2000-12-09 03:09:35 +08:00
|
|
|
|
2021-05-22 00:25:05 +08:00
|
|
|
static int asn1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt,
|
|
|
|
OSSL_LIB_CTX *libctx, const char *propq)
|
2004-04-25 20:46:39 +08:00
|
|
|
{
|
2001-02-23 11:16:09 +08:00
|
|
|
const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item);
|
2015-09-15 22:54:19 +08:00
|
|
|
int embed = tt->flags & ASN1_TFLG_EMBED;
|
|
|
|
ASN1_VALUE *tval;
|
2001-01-25 02:39:54 +08:00
|
|
|
int ret;
|
2015-09-15 22:54:19 +08:00
|
|
|
if (embed) {
|
|
|
|
tval = (ASN1_VALUE *)pval;
|
|
|
|
pval = &tval;
|
|
|
|
}
|
2004-04-25 20:46:39 +08:00
|
|
|
if (tt->flags & ASN1_TFLG_OPTIONAL) {
|
2000-12-09 03:09:35 +08:00
|
|
|
asn1_template_clear(pval, tt);
|
|
|
|
return 1;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2000-12-09 03:09:35 +08:00
|
|
|
/* If ANY DEFINED BY nothing to do */
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2004-04-25 20:46:39 +08:00
|
|
|
if (tt->flags & ASN1_TFLG_ADB_MASK) {
|
2000-12-09 03:09:35 +08:00
|
|
|
*pval = NULL;
|
|
|
|
return 1;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2000-12-09 03:09:35 +08:00
|
|
|
/* If SET OF or SEQUENCE OF, its a STACK */
|
2004-04-25 20:46:39 +08:00
|
|
|
if (tt->flags & ASN1_TFLG_SK_MASK) {
|
2000-12-09 03:09:35 +08:00
|
|
|
STACK_OF(ASN1_VALUE) *skval;
|
|
|
|
skval = sk_ASN1_VALUE_new_null();
|
2004-04-25 20:46:39 +08:00
|
|
|
if (!skval) {
|
2022-09-29 19:57:34 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_CRYPTO_LIB);
|
2001-01-25 02:39:54 +08:00
|
|
|
ret = 0;
|
|
|
|
goto done;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2000-12-09 03:09:35 +08:00
|
|
|
*pval = (ASN1_VALUE *)skval;
|
2001-01-25 02:39:54 +08:00
|
|
|
ret = 1;
|
|
|
|
goto done;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2000-12-09 03:09:35 +08:00
|
|
|
/* Otherwise pass it back to the item routine */
|
2021-05-22 00:25:05 +08:00
|
|
|
ret = asn1_item_embed_new(pval, it, embed, libctx, propq);
|
2001-01-25 02:39:54 +08:00
|
|
|
done:
|
|
|
|
return ret;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2000-12-09 03:09:35 +08:00
|
|
|
|
2002-01-30 01:14:50 +08:00
|
|
|
static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
|
2004-04-25 20:46:39 +08:00
|
|
|
{
|
2000-12-09 03:09:35 +08:00
|
|
|
/* If ADB or STACK just NULL the field */
|
2004-04-25 20:46:39 +08:00
|
|
|
if (tt->flags & (ASN1_TFLG_ADB_MASK | ASN1_TFLG_SK_MASK))
|
2000-12-09 03:09:35 +08:00
|
|
|
*pval = NULL;
|
|
|
|
else
|
2001-02-23 11:16:09 +08:00
|
|
|
asn1_item_clear(pval, ASN1_ITEM_ptr(tt->item));
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2004-04-25 20:46:39 +08:00
|
|
|
/*
|
|
|
|
* NB: could probably combine most of the real XXX_new() behaviour and junk
|
|
|
|
* all the old functions.
|
2000-12-09 03:09:35 +08:00
|
|
|
*/
|
|
|
|
|
2015-10-07 20:28:46 +08:00
|
|
|
static int asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
|
|
|
|
int embed)
|
2004-04-25 20:46:39 +08:00
|
|
|
{
|
2000-12-09 03:09:35 +08:00
|
|
|
ASN1_TYPE *typ;
|
2009-09-02 21:54:50 +08:00
|
|
|
ASN1_STRING *str;
|
2000-12-09 03:09:35 +08:00
|
|
|
int utype;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2015-03-12 00:00:01 +08:00
|
|
|
if (!it)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (it->funcs) {
|
2005-07-26 20:25:06 +08:00
|
|
|
const ASN1_PRIMITIVE_FUNCS *pf = it->funcs;
|
2017-04-12 17:48:12 +08:00
|
|
|
if (embed) {
|
|
|
|
if (pf->prim_clear) {
|
|
|
|
pf->prim_clear(pval, it);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else if (pf->prim_new) {
|
2005-07-26 20:25:06 +08:00
|
|
|
return pf->prim_new(pval, it);
|
2017-04-12 17:48:12 +08:00
|
|
|
}
|
2005-07-26 20:25:06 +08:00
|
|
|
}
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2015-03-12 00:00:01 +08:00
|
|
|
if (it->itype == ASN1_ITYPE_MSTRING)
|
2004-04-25 20:46:39 +08:00
|
|
|
utype = -1;
|
|
|
|
else
|
|
|
|
utype = it->utype;
|
|
|
|
switch (utype) {
|
2000-12-09 03:09:35 +08:00
|
|
|
case V_ASN1_OBJECT:
|
|
|
|
*pval = (ASN1_VALUE *)OBJ_nid2obj(NID_undef);
|
|
|
|
return 1;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
case V_ASN1_BOOLEAN:
|
2006-03-16 01:45:43 +08:00
|
|
|
*(ASN1_BOOLEAN *)pval = it->size;
|
2000-12-09 03:09:35 +08:00
|
|
|
return 1;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
case V_ASN1_NULL:
|
|
|
|
*pval = (ASN1_VALUE *)1;
|
|
|
|
return 1;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
case V_ASN1_ANY:
|
2022-09-29 19:57:34 +08:00
|
|
|
if ((typ = OPENSSL_malloc(sizeof(*typ))) == NULL)
|
2004-04-25 20:46:39 +08:00
|
|
|
return 0;
|
2000-12-09 03:09:35 +08:00
|
|
|
typ->value.ptr = NULL;
|
|
|
|
typ->type = -1;
|
|
|
|
*pval = (ASN1_VALUE *)typ;
|
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
default:
|
2015-10-07 20:28:46 +08:00
|
|
|
if (embed) {
|
|
|
|
str = *(ASN1_STRING **)pval;
|
|
|
|
memset(str, 0, sizeof(*str));
|
2015-10-18 07:54:13 +08:00
|
|
|
str->type = utype;
|
2015-10-07 20:28:46 +08:00
|
|
|
str->flags = ASN1_STRING_FLAG_EMBED;
|
|
|
|
} else {
|
|
|
|
str = ASN1_STRING_type_new(utype);
|
|
|
|
*pval = (ASN1_VALUE *)str;
|
|
|
|
}
|
2009-09-02 21:54:50 +08:00
|
|
|
if (it->itype == ASN1_ITYPE_MSTRING && str)
|
|
|
|
str->flags |= ASN1_STRING_FLAG_MSTRING;
|
2000-12-09 03:09:35 +08:00
|
|
|
break;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
|
|
|
if (*pval)
|
|
|
|
return 1;
|
2000-12-09 03:09:35 +08:00
|
|
|
return 0;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
2000-12-09 03:09:35 +08:00
|
|
|
|
2006-02-16 04:20:20 +08:00
|
|
|
static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it)
|
2004-04-25 20:46:39 +08:00
|
|
|
{
|
2000-12-09 03:09:35 +08:00
|
|
|
int utype;
|
2005-07-26 20:25:06 +08:00
|
|
|
if (it && it->funcs) {
|
|
|
|
const ASN1_PRIMITIVE_FUNCS *pf = it->funcs;
|
2004-04-25 20:46:39 +08:00
|
|
|
if (pf->prim_clear)
|
2000-12-09 03:09:35 +08:00
|
|
|
pf->prim_clear(pval, it);
|
|
|
|
else
|
|
|
|
*pval = NULL;
|
|
|
|
return;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|
|
|
|
if (!it || (it->itype == ASN1_ITYPE_MSTRING))
|
|
|
|
utype = -1;
|
|
|
|
else
|
|
|
|
utype = it->utype;
|
|
|
|
if (utype == V_ASN1_BOOLEAN)
|
2000-12-09 03:09:35 +08:00
|
|
|
*(ASN1_BOOLEAN *)pval = it->size;
|
|
|
|
else
|
|
|
|
*pval = NULL;
|
2004-04-25 20:46:39 +08:00
|
|
|
}
|