asn1c (Lev Walkin) extended with features required by MAP/TCAP
Go to file
Lev Walkin fa40976f4a reflect contributors 2017-03-26 06:37:38 -07:00
asn1c reflect contributors 2017-03-26 06:37:38 -07:00
doc Fixed a mistype in man 2016-07-30 17:23:32 +03:00
examples Merge pull request #102 from daa/master 2017-03-26 04:07:09 -07:00
libasn1compiler Merge pull request #126 from brchiu/fix_some_leak_reported_by_valgrind 2017-03-26 05:55:00 -07:00
libasn1fix Add code coverage using lcov and gcov 2017-03-26 04:42:26 -07:00
libasn1parser Merge pull request #126 from brchiu/fix_some_leak_reported_by_valgrind 2017-03-26 05:55:00 -07:00
libasn1print do not use reserved identifiers 2016-03-14 02:57:34 -07:00
m4 Add code coverage using lcov and gcov 2017-03-26 04:42:26 -07:00
skeletons support for C++ 2017-03-26 05:49:10 -07:00
tests Merge pull request #96 from brchiu/fix_declaration_inside_parameter_list_warning 2017-03-26 04:01:01 -07:00
.clang-format clang-format config with my preferred style 2016-01-23 09:00:58 -08:00
.gitignore Add code coverage using lcov and gcov 2017-03-26 04:42:26 -07:00
.travis.yml Send code coverage reports to coveralls.io 2017-03-26 04:47:14 -07:00
AUTHORS new author 2017-03-26 05:09:10 -07:00
BUGS BIT STRING identifiers is not a problem 2005-02-28 15:35:27 +00:00
ChangeLog version bump 2017-03-26 03:48:47 -07:00
FAQ update: more documentation 2005-12-22 21:36:47 +00:00
INSTALL.md formatting 2016-08-02 04:07:51 -07:00
LICENSE copyright info 2017-03-26 03:16:05 -07:00
Makefile.am Exclude test files from the code coverage report 2017-03-26 04:42:26 -07:00
README.md INSTALL -> INSTALL.md 2016-08-02 04:03:03 -07:00
TODO PER encoding is mostly present 2006-09-19 06:12:11 +00:00
config.sub update automake and move doc -> docsrc 2010-11-09 03:26:07 -08:00
configure.ac get rid of pushes 2017-03-26 05:19:06 -07:00
depcomp update automake and move doc -> docsrc 2010-11-09 03:26:07 -08:00
stamp-h.in Initial revision 2004-06-03 03:38:44 +00:00

README.md

About

ASN.1 to C compiler takes the ASN.1 module files (example) and generates the C++ compatible C source code. That code can be used to serialize the native C structures into compact and unambiguous BER/XER/PER-based data files, and deserialize the files back.

Various ASN.1 based formats are widely used in the industry, such as to encode the X.509 certificates employed in the HTTPS handshake, to exchange control data between mobile phones and cellular networks, to car-to-car communication in intelligent transportation networks.

The ASN.1 standard is large and complex and no open source compiler supports it in its entirety. The asn1c is arguably the most evolved open source ASN.1 compiler.

Build and Install

If you haven't installed the asn1c yet, read the INSTALL.md file for a short installation guide.

Build Status

Documentation

For the list of asn1c command line options, see asn1c -h or man asn1c.

The comprehensive documentation on this compiler is in doc/asn1c-usage.pdf.

Please also read the FAQ file.

An excellent book on ASN.1 is written by Olivier Dubuisson: "ASN.1 Communication between heterogeneous systems", ISBN:0-12-6333361-0.

Quick start

(also check out doc/asn1c-quick.pdf)

After installing the compiler (see INSTALL.md), you may use the asn1c command to compile the ASN.1 specification:

asn1c <module.asn1>                         # Compile module

If several specifications contain interdependencies, all of them must be specified at the same time:

asn1c <module1.asn1> <module2.asn1> ...     # Compile interdependent modules

The asn1c source tarball contains the examples/ directory with several ASN.1 modules and a script to extract the ASN.1 modules from RFC documents. Refer to the examples/README file in that directory.

To compile the X.509 PKI module:

./asn1c/asn1c -P ./examples/rfc3280-*.asn1  # Compile-n-print

In this example, the -P option is to print the compiled text on the standard output. The default behavior is that asn1c compiler creates multiple .c and .h files for every ASN.1 type found inside the specified ASN.1 modules.

The compiler's -E and -EF options are used for testing the parser and the semantic fixer, respectively. These options will instruct the compiler to dump out the parsed (and fixed) ASN.1 specification as it was "understood" by the compiler. It might be useful for checking whether a particular syntactic construction is properly supported by the compiler.

asn1c -EF <module-to-test.asn1>             # Check semantic validity

Model of operation

The asn1c compiler works by processing the ASN.1 module specifications in several stages:

  1. During the first stage, the ASN.1 file is parsed. (Parsing produces an ASN.1 syntax tree for the subsequent levels)
  2. During the second stage, the syntax tree is "fixed". (Fixing is a process of checking the tree for semantic errors, accompanied by the tree transformation into the canonical form)
  3. During the third stage, the syntax tree is compiled into the target language.

There are several command-line options reserved for printing the results after each stage of operation:

<parser> => print                                       (-E)
<parser> => <fixer> => print                            (-E -F)
<parser> => <fixer> => <compiler> => print              (-P)
<parser> => <fixer> => <compiler> => save-compiled      [default]

-- Lev Walkin vlm@lionet.info