2016-01-31 13:12:23 +03:00
/*
Unix SMB / CIFS implementation .
2003-08-13 05:53:07 +04:00
simple ASN1 code
Copyright ( C ) Andrew Tridgell 2001
2016-01-31 13:12:23 +03:00
2003-08-13 05:53:07 +04:00
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
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2003-08-13 05:53:07 +04:00
( at your option ) any later version .
2016-01-31 13:12:23 +03:00
2003-08-13 05:53:07 +04:00
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 .
2016-01-31 13:12:23 +03:00
2003-08-13 05:53:07 +04:00
You should have received a copy of the GNU General Public License
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-08-13 05:53:07 +04:00
*/
# ifndef _ASN_1_H
# define _ASN_1_H
2016-01-06 00:00:58 +03:00
# include "replace.h"
# include <talloc.h>
# include "lib/util/data_blob.h"
2015-12-27 13:18:47 +03:00
struct nesting ;
2016-01-03 23:26:50 +03:00
struct asn1_data ;
2008-10-22 16:03:43 +04:00
typedef struct asn1_data ASN1_DATA ;
2003-08-13 05:53:07 +04:00
# define ASN1_APPLICATION(x) ((x)+0x60)
2004-08-12 08:55:59 +04:00
# define ASN1_APPLICATION_SIMPLE(x) ((x)+0x40)
2003-08-13 05:53:07 +04:00
# define ASN1_SEQUENCE(x) ((x)+0x30)
# define ASN1_CONTEXT(x) ((x)+0xa0)
2004-08-12 08:55:59 +04:00
# define ASN1_CONTEXT_SIMPLE(x) ((x)+0x80)
2003-08-13 05:53:07 +04:00
# define ASN1_GENERAL_STRING 0x1b
# define ASN1_OCTET_STRING 0x4
# define ASN1_OID 0x6
# define ASN1_BOOLEAN 0x1
# define ASN1_INTEGER 0x2
2009-08-10 07:18:58 +04:00
# define ASN1_BIT_STRING 0x3
2003-08-13 05:53:07 +04:00
# define ASN1_ENUMERATED 0xa
# define ASN1_SET 0x31
# define ASN1_MAX_OIDS 20
2020-04-03 02:18:03 +03:00
/*
* The maximum permitted depth for an ASN .1 parse tree , the limit is chosen
* to align with the value for windows . Note that this value will trigger
* ASAN stack overflow errors .
*/
# define ASN1_MAX_TREE_DEPTH 512
struct asn1_data * asn1_init ( TALLOC_CTX * mem_ctx , unsigned max_depth ) ;
2008-10-23 20:03:20 +04:00
void asn1_free ( struct asn1_data * data ) ;
2016-01-02 19:58:21 +03:00
bool asn1_has_error ( const struct asn1_data * data ) ;
2016-01-04 23:50:49 +03:00
void asn1_set_error ( struct asn1_data * data ) ;
2016-01-04 12:23:20 +03:00
bool asn1_has_nesting ( const struct asn1_data * data ) ;
2016-01-04 12:25:41 +03:00
off_t asn1_current_ofs ( const struct asn1_data * data ) ;
2008-10-23 20:03:20 +04:00
bool asn1_write ( struct asn1_data * data , const void * p , int len ) ;
bool asn1_write_uint8 ( struct asn1_data * data , uint8_t v ) ;
bool asn1_push_tag ( struct asn1_data * data , uint8_t tag ) ;
bool asn1_pop_tag ( struct asn1_data * data ) ;
bool asn1_write_implicit_Integer ( struct asn1_data * data , int i ) ;
bool asn1_write_Integer ( struct asn1_data * data , int i ) ;
2009-08-13 10:12:01 +04:00
bool asn1_write_BitString ( struct asn1_data * data , const void * p , size_t length , uint8_t padding ) ;
2009-10-05 05:46:20 +04:00
bool ber_write_OID_String ( TALLOC_CTX * mem_ctx , DATA_BLOB * blob , const char * OID ) ;
bool ber_write_partial_OID_String ( TALLOC_CTX * mem_ctx , DATA_BLOB * blob , const char * partial_oid ) ;
2008-10-23 20:03:20 +04:00
bool asn1_write_OID ( struct asn1_data * data , const char * OID ) ;
bool asn1_write_OctetString ( struct asn1_data * data , const void * p , size_t length ) ;
bool asn1_write_LDAPString ( struct asn1_data * data , const char * s ) ;
bool asn1_write_DATA_BLOB_LDAPString ( struct asn1_data * data , const DATA_BLOB * s ) ;
bool asn1_write_GeneralString ( struct asn1_data * data , const char * s ) ;
bool asn1_write_ContextSimple ( struct asn1_data * data , uint8_t num , DATA_BLOB * blob ) ;
bool asn1_write_BOOLEAN ( struct asn1_data * data , bool v ) ;
bool asn1_read_BOOLEAN ( struct asn1_data * data , bool * v ) ;
bool asn1_check_BOOLEAN ( struct asn1_data * data , bool v ) ;
2009-06-10 05:44:47 +04:00
bool asn1_write_BOOLEAN_context ( struct asn1_data * data , bool v , int context ) ;
bool asn1_read_BOOLEAN_context ( struct asn1_data * data , bool * v , int context ) ;
2008-10-23 20:03:20 +04:00
bool asn1_load ( struct asn1_data * data , DATA_BLOB blob ) ;
bool asn1_peek ( struct asn1_data * data , void * p , int len ) ;
bool asn1_read ( struct asn1_data * data , void * p , int len ) ;
bool asn1_read_uint8 ( struct asn1_data * data , uint8_t * v ) ;
bool asn1_peek_uint8 ( struct asn1_data * data , uint8_t * v ) ;
bool asn1_peek_tag ( struct asn1_data * data , uint8_t tag ) ;
bool asn1_start_tag ( struct asn1_data * data , uint8_t tag ) ;
bool asn1_end_tag ( struct asn1_data * data ) ;
int asn1_tag_remaining ( struct asn1_data * data ) ;
2010-12-15 19:02:49 +03:00
bool ber_read_OID_String ( TALLOC_CTX * mem_ctx , DATA_BLOB blob , char * * OID ) ;
bool ber_read_partial_OID_String ( TALLOC_CTX * mem_ctx , DATA_BLOB blob , char * * partial_oid ) ;
bool asn1_read_OID ( struct asn1_data * data , TALLOC_CTX * mem_ctx , char * * OID ) ;
2008-10-23 20:03:20 +04:00
bool asn1_check_OID ( struct asn1_data * data , const char * OID ) ;
bool asn1_read_LDAPString ( struct asn1_data * data , TALLOC_CTX * mem_ctx , char * * s ) ;
bool asn1_read_GeneralString ( struct asn1_data * data , TALLOC_CTX * mem_ctx , char * * s ) ;
bool asn1_read_OctetString ( struct asn1_data * data , TALLOC_CTX * mem_ctx , DATA_BLOB * blob ) ;
2015-12-30 02:07:35 +03:00
bool asn1_read_ContextSimple ( struct asn1_data * data , TALLOC_CTX * mem_ctx , uint8_t num , DATA_BLOB * blob ) ;
2008-10-23 20:03:20 +04:00
bool asn1_read_implicit_Integer ( struct asn1_data * data , int * i ) ;
bool asn1_read_Integer ( struct asn1_data * data , int * i ) ;
2009-08-13 10:12:01 +04:00
bool asn1_read_BitString ( struct asn1_data * data , TALLOC_CTX * mem_ctx , DATA_BLOB * blob , uint8_t * padding ) ;
2008-10-23 20:03:20 +04:00
bool asn1_read_enumerated ( struct asn1_data * data , int * v ) ;
bool asn1_write_enumerated ( struct asn1_data * data , uint8_t v ) ;
2009-06-19 19:39:13 +04:00
bool asn1_blob ( const struct asn1_data * asn1 , DATA_BLOB * blob ) ;
2016-01-04 23:53:23 +03:00
bool asn1_extract_blob ( struct asn1_data * asn1 , TALLOC_CTX * mem_ctx ,
DATA_BLOB * pblob ) ;
2009-06-19 20:20:20 +04:00
void asn1_load_nocopy ( struct asn1_data * data , uint8_t * buf , size_t len ) ;
2015-12-21 12:41:39 +03:00
int asn1_peek_full_tag ( DATA_BLOB blob , uint8_t tag , size_t * packet_size ) ;
2020-04-08 01:46:44 +03:00
size_t asn1_get_length ( const struct asn1_data * asn1 ) ;
2006-03-25 21:47:47 +03:00
2003-08-13 05:53:07 +04:00
# endif /* _ASN_1_H */