2012-02-14 00:11:30 +01:00
|
|
|
/*
|
|
|
|
* ASN.1 buffer writing functionality
|
|
|
|
*
|
2014-02-01 22:50:26 +01:00
|
|
|
* Copyright (C) 2006-2014, Brainspark B.V.
|
2012-02-14 00:11:30 +01:00
|
|
|
*
|
2015-01-22 15:28:16 +01:00
|
|
|
* This file is part of mbed TLS (http://www.polarssl.org)
|
2012-02-14 00:11:30 +01:00
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2014-04-29 12:39:06 +02:00
|
|
|
#if !defined(POLARSSL_CONFIG_FILE)
|
2012-02-14 00:11:30 +01:00
|
|
|
#include "polarssl/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
|
|
|
#include POLARSSL_CONFIG_FILE
|
|
|
|
#endif
|
2012-02-14 00:11:30 +01:00
|
|
|
|
|
|
|
#if defined(POLARSSL_ASN1_WRITE_C)
|
|
|
|
|
|
|
|
#include "polarssl/asn1write.h"
|
|
|
|
|
2014-02-01 22:50:26 +01:00
|
|
|
#if defined(POLARSSL_PLATFORM_C)
|
|
|
|
#include "polarssl/platform.h"
|
2013-09-09 11:26:00 +02:00
|
|
|
#else
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define polarssl_malloc malloc
|
|
|
|
#define polarssl_free free
|
|
|
|
#endif
|
|
|
|
|
2012-02-14 00:11:30 +01:00
|
|
|
int asn1_write_len( unsigned char **p, unsigned char *start, size_t len )
|
|
|
|
{
|
|
|
|
if( len < 0x80 )
|
|
|
|
{
|
|
|
|
if( *p - start < 1 )
|
|
|
|
return( POLARSSL_ERR_ASN1_BUF_TOO_SMALL );
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
*--(*p) = (unsigned char) len;
|
2012-02-14 00:11:30 +01:00
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( len <= 0xFF )
|
|
|
|
{
|
|
|
|
if( *p - start < 2 )
|
|
|
|
return( POLARSSL_ERR_ASN1_BUF_TOO_SMALL );
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
*--(*p) = (unsigned char) len;
|
2012-02-14 00:11:30 +01:00
|
|
|
*--(*p) = 0x81;
|
|
|
|
return( 2 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( *p - start < 3 )
|
|
|
|
return( POLARSSL_ERR_ASN1_BUF_TOO_SMALL );
|
|
|
|
|
|
|
|
// We assume we never have lengths larger than 65535 bytes
|
|
|
|
//
|
|
|
|
*--(*p) = len % 256;
|
|
|
|
*--(*p) = ( len / 256 ) % 256;
|
|
|
|
*--(*p) = 0x82;
|
|
|
|
|
|
|
|
return( 3 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int asn1_write_tag( unsigned char **p, unsigned char *start, unsigned char tag )
|
|
|
|
{
|
|
|
|
if( *p - start < 1 )
|
|
|
|
return( POLARSSL_ERR_ASN1_BUF_TOO_SMALL );
|
|
|
|
|
|
|
|
*--(*p) = tag;
|
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
2013-08-26 17:56:37 +02:00
|
|
|
int asn1_write_raw_buffer( unsigned char **p, unsigned char *start,
|
|
|
|
const unsigned char *buf, size_t size )
|
|
|
|
{
|
|
|
|
size_t len = 0;
|
|
|
|
|
|
|
|
if( *p - start < (int) size )
|
|
|
|
return( POLARSSL_ERR_ASN1_BUF_TOO_SMALL );
|
|
|
|
|
|
|
|
len = size;
|
|
|
|
(*p) -= len;
|
|
|
|
memcpy( *p, buf, len );
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
return( (int) len );
|
2013-08-26 17:56:37 +02:00
|
|
|
}
|
|
|
|
|
2013-04-18 22:46:23 +02:00
|
|
|
#if defined(POLARSSL_BIGNUM_C)
|
2012-02-14 00:11:30 +01:00
|
|
|
int asn1_write_mpi( unsigned char **p, unsigned char *start, mpi *X )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
size_t len = 0;
|
|
|
|
|
|
|
|
// Write the MPI
|
|
|
|
//
|
|
|
|
len = mpi_size( X );
|
|
|
|
|
|
|
|
if( *p - start < (int) len )
|
|
|
|
return( POLARSSL_ERR_ASN1_BUF_TOO_SMALL );
|
|
|
|
|
|
|
|
(*p) -= len;
|
2014-04-17 12:42:41 +02:00
|
|
|
MPI_CHK( mpi_write_binary( X, *p, len ) );
|
2012-02-14 00:11:30 +01:00
|
|
|
|
|
|
|
// DER format assumes 2s complement for numbers, so the leftmost bit
|
|
|
|
// should be 0 for positive numbers and 1 for negative numbers.
|
|
|
|
//
|
2014-06-17 16:39:18 +02:00
|
|
|
if( X->s ==1 && **p & 0x80 )
|
2012-02-14 00:11:30 +01:00
|
|
|
{
|
|
|
|
if( *p - start < 1 )
|
|
|
|
return( POLARSSL_ERR_ASN1_BUF_TOO_SMALL );
|
|
|
|
|
|
|
|
*--(*p) = 0x00;
|
|
|
|
len += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_len( p, start, len ) );
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_tag( p, start, ASN1_INTEGER ) );
|
|
|
|
|
2014-04-17 12:42:41 +02:00
|
|
|
ret = (int) len;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
2012-02-14 00:11:30 +01:00
|
|
|
}
|
2013-04-18 22:46:23 +02:00
|
|
|
#endif /* POLARSSL_BIGNUM_C */
|
|
|
|
|
2012-02-14 00:11:30 +01:00
|
|
|
int asn1_write_null( unsigned char **p, unsigned char *start )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
size_t len = 0;
|
|
|
|
|
|
|
|
// Write NULL
|
|
|
|
//
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_len( p, start, 0) );
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_tag( p, start, ASN1_NULL ) );
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
return( (int) len );
|
2012-02-14 00:11:30 +01:00
|
|
|
}
|
|
|
|
|
2013-09-09 12:02:36 +02:00
|
|
|
int asn1_write_oid( unsigned char **p, unsigned char *start,
|
|
|
|
const char *oid, size_t oid_len )
|
2012-02-14 00:11:30 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
size_t len = 0;
|
|
|
|
|
2013-08-26 17:56:37 +02:00
|
|
|
ASN1_CHK_ADD( len, asn1_write_raw_buffer( p, start,
|
2013-09-09 12:02:36 +02:00
|
|
|
(const unsigned char *) oid, oid_len ) );
|
2012-02-14 00:11:30 +01:00
|
|
|
ASN1_CHK_ADD( len , asn1_write_len( p, start, len ) );
|
|
|
|
ASN1_CHK_ADD( len , asn1_write_tag( p, start, ASN1_OID ) );
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
return( (int) len );
|
2012-02-14 00:11:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int asn1_write_algorithm_identifier( unsigned char **p, unsigned char *start,
|
2013-09-12 02:17:54 +02:00
|
|
|
const char *oid, size_t oid_len,
|
|
|
|
size_t par_len )
|
2012-02-14 00:11:30 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
size_t len = 0;
|
|
|
|
|
2013-09-12 02:17:54 +02:00
|
|
|
if( par_len == 0 )
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_null( p, start ) );
|
|
|
|
else
|
|
|
|
len += par_len;
|
2012-02-14 00:11:30 +01:00
|
|
|
|
2013-09-09 12:02:36 +02:00
|
|
|
ASN1_CHK_ADD( len, asn1_write_oid( p, start, oid, oid_len ) );
|
2012-02-14 00:11:30 +01:00
|
|
|
|
2013-09-09 12:02:36 +02:00
|
|
|
ASN1_CHK_ADD( len, asn1_write_len( p, start, len ) );
|
2012-02-14 00:11:30 +01:00
|
|
|
ASN1_CHK_ADD( len, asn1_write_tag( p, start,
|
|
|
|
ASN1_CONSTRUCTED | ASN1_SEQUENCE ) );
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
return( (int) len );
|
2012-02-14 00:11:30 +01:00
|
|
|
}
|
|
|
|
|
2013-09-06 16:34:38 +02:00
|
|
|
int asn1_write_bool( unsigned char **p, unsigned char *start, int boolean )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
size_t len = 0;
|
|
|
|
|
|
|
|
if( *p - start < 1 )
|
|
|
|
return( POLARSSL_ERR_ASN1_BUF_TOO_SMALL );
|
|
|
|
|
|
|
|
*--(*p) = (boolean) ? 1 : 0;
|
|
|
|
len++;
|
|
|
|
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_len( p, start, len ) );
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_tag( p, start, ASN1_BOOLEAN ) );
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
return( (int) len );
|
2013-09-06 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
2012-02-14 00:11:30 +01:00
|
|
|
int asn1_write_int( unsigned char **p, unsigned char *start, int val )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
size_t len = 0;
|
|
|
|
|
|
|
|
// TODO negative values and values larger than 128
|
|
|
|
// DER format assumes 2s complement for numbers, so the leftmost bit
|
|
|
|
// should be 0 for positive numbers and 1 for negative numbers.
|
|
|
|
//
|
|
|
|
if( *p - start < 1 )
|
|
|
|
return( POLARSSL_ERR_ASN1_BUF_TOO_SMALL );
|
|
|
|
|
|
|
|
len += 1;
|
|
|
|
*--(*p) = val;
|
|
|
|
|
2014-06-17 16:39:18 +02:00
|
|
|
if( val > 0 && **p & 0x80 )
|
2012-02-14 00:11:30 +01:00
|
|
|
{
|
|
|
|
if( *p - start < 1 )
|
|
|
|
return( POLARSSL_ERR_ASN1_BUF_TOO_SMALL );
|
|
|
|
|
|
|
|
*--(*p) = 0x00;
|
|
|
|
len += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_len( p, start, len ) );
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_tag( p, start, ASN1_INTEGER ) );
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
return( (int) len );
|
2012-02-14 00:11:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int asn1_write_printable_string( unsigned char **p, unsigned char *start,
|
2013-09-09 12:02:36 +02:00
|
|
|
const char *text, size_t text_len )
|
2012-02-14 00:11:30 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
size_t len = 0;
|
|
|
|
|
2013-08-26 17:56:37 +02:00
|
|
|
ASN1_CHK_ADD( len, asn1_write_raw_buffer( p, start,
|
2013-09-09 12:02:36 +02:00
|
|
|
(const unsigned char *) text, text_len ) );
|
2012-02-14 00:11:30 +01:00
|
|
|
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_len( p, start, len ) );
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_tag( p, start, ASN1_PRINTABLE_STRING ) );
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
return( (int) len );
|
2012-02-14 00:11:30 +01:00
|
|
|
}
|
2013-08-25 14:46:39 +02:00
|
|
|
|
2012-02-16 11:26:57 +01:00
|
|
|
int asn1_write_ia5_string( unsigned char **p, unsigned char *start,
|
2013-09-09 12:02:36 +02:00
|
|
|
const char *text, size_t text_len )
|
2012-02-16 11:26:57 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
size_t len = 0;
|
|
|
|
|
2013-08-26 17:56:37 +02:00
|
|
|
ASN1_CHK_ADD( len, asn1_write_raw_buffer( p, start,
|
2013-09-09 12:02:36 +02:00
|
|
|
(const unsigned char *) text, text_len ) );
|
2012-02-16 11:26:57 +01:00
|
|
|
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_len( p, start, len ) );
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_tag( p, start, ASN1_IA5_STRING ) );
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
return( (int) len );
|
2012-02-16 11:26:57 +01:00
|
|
|
}
|
2013-08-25 14:46:39 +02:00
|
|
|
|
|
|
|
int asn1_write_bitstring( unsigned char **p, unsigned char *start,
|
|
|
|
const unsigned char *buf, size_t bits )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
size_t len = 0, size;
|
|
|
|
|
|
|
|
size = ( bits / 8 ) + ( ( bits % 8 ) ? 1 : 0 );
|
|
|
|
|
|
|
|
// Calculate byte length
|
|
|
|
//
|
|
|
|
if( *p - start < (int) size + 1 )
|
|
|
|
return( POLARSSL_ERR_ASN1_BUF_TOO_SMALL );
|
|
|
|
|
|
|
|
len = size + 1;
|
|
|
|
(*p) -= size;
|
|
|
|
memcpy( *p, buf, size );
|
|
|
|
|
|
|
|
// Write unused bits
|
|
|
|
//
|
2013-10-11 18:58:55 +02:00
|
|
|
*--(*p) = (unsigned char) (size * 8 - bits);
|
2013-08-25 14:46:39 +02:00
|
|
|
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_len( p, start, len ) );
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_tag( p, start, ASN1_BIT_STRING ) );
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
return( (int) len );
|
2013-08-25 14:46:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int asn1_write_octet_string( unsigned char **p, unsigned char *start,
|
|
|
|
const unsigned char *buf, size_t size )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
size_t len = 0;
|
|
|
|
|
2013-08-26 17:56:37 +02:00
|
|
|
ASN1_CHK_ADD( len, asn1_write_raw_buffer( p, start, buf, size ) );
|
2013-08-25 14:46:39 +02:00
|
|
|
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_len( p, start, len ) );
|
|
|
|
ASN1_CHK_ADD( len, asn1_write_tag( p, start, ASN1_OCTET_STRING ) );
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
return( (int) len );
|
2013-08-25 14:46:39 +02:00
|
|
|
}
|
2013-09-09 11:26:00 +02:00
|
|
|
|
|
|
|
asn1_named_data *asn1_store_named_data( asn1_named_data **head,
|
|
|
|
const char *oid, size_t oid_len,
|
|
|
|
const unsigned char *val,
|
|
|
|
size_t val_len )
|
|
|
|
{
|
|
|
|
asn1_named_data *cur;
|
|
|
|
|
|
|
|
if( ( cur = asn1_find_named_data( *head, oid, oid_len ) ) == NULL )
|
|
|
|
{
|
|
|
|
// Add new entry if not present yet based on OID
|
|
|
|
//
|
|
|
|
if( ( cur = polarssl_malloc( sizeof(asn1_named_data) ) ) == NULL )
|
|
|
|
return( NULL );
|
|
|
|
|
|
|
|
memset( cur, 0, sizeof(asn1_named_data) );
|
|
|
|
|
|
|
|
cur->oid.len = oid_len;
|
|
|
|
cur->oid.p = polarssl_malloc( oid_len );
|
|
|
|
if( cur->oid.p == NULL )
|
|
|
|
{
|
|
|
|
polarssl_free( cur );
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
|
2014-11-12 22:27:42 +01:00
|
|
|
memcpy( cur->oid.p, oid, oid_len );
|
|
|
|
|
2013-09-09 11:26:00 +02:00
|
|
|
cur->val.len = val_len;
|
|
|
|
cur->val.p = polarssl_malloc( val_len );
|
|
|
|
if( cur->val.p == NULL )
|
|
|
|
{
|
|
|
|
polarssl_free( cur->oid.p );
|
|
|
|
polarssl_free( cur );
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
cur->next = *head;
|
|
|
|
*head = cur;
|
|
|
|
}
|
|
|
|
else if( cur->val.len < val_len )
|
|
|
|
{
|
|
|
|
// Enlarge existing value buffer if needed
|
|
|
|
//
|
|
|
|
polarssl_free( cur->val.p );
|
|
|
|
cur->val.p = NULL;
|
|
|
|
|
|
|
|
cur->val.len = val_len;
|
|
|
|
cur->val.p = polarssl_malloc( val_len );
|
|
|
|
if( cur->val.p == NULL )
|
|
|
|
{
|
|
|
|
polarssl_free( cur->oid.p );
|
|
|
|
polarssl_free( cur );
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( val != NULL )
|
|
|
|
memcpy( cur->val.p, val, val_len );
|
|
|
|
|
|
|
|
return( cur );
|
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* POLARSSL_ASN1_WRITE_C */
|