blob: 35347bdb801565171164f0609abd9b815c116a9a [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001
vlm82620702004-08-23 09:24:40 +000020.9: 2004-Aug-23
vlmd3d0fbd2004-08-18 05:43:55 +00003
4 * Reworked subtype constraints handling, aiming at PER-applicability.
vlm7ce9add2004-08-19 13:35:01 +00005 * BOOLEAN and NULL are now implemented in terms of native int type.
6 * Compiler now links in only necessary skeleton files.
vlmf25d2812004-08-20 13:38:25 +00007 * -t option added to asn1c to ease manual BER/CER/DER decoding.
vlmdae7f9d2004-08-22 03:25:24 +00008 * Added support COMPONENTS OF construct.
9 * Numerous parser fixes and enhancements.
vlm758530a2004-08-22 13:47:59 +000010 * Better constraint failure reporting.
vlmd3d0fbd2004-08-18 05:43:55 +000011
vlm19aae982004-08-18 09:05:12 +0000120.8.19: 2004-Aug-18
13
14 * Fixed BER encoder (problem encoding large tag values)
15 (Severity: medium, Security impact: low)
16
vlm22736492004-08-13 12:39:17 +0000170.8.18: 2004-Aug-12
18
19 * Parser: fixed multiple IMPORTS problem (incorrect assertion).
20 * Parser: constraints extensibility parsing fix.
21
vlm6e73a042004-08-11 07:17:22 +0000220.8.17: 2004-Aug-11
vlm8ed2f6f2004-08-11 05:35:51 +000023
24 * Improved compiler output: duplicate #includes eliminated.
vlm6e73a042004-08-11 07:17:22 +000025 * Win32 portability fixes.
vlme167bf72004-08-11 08:11:50 +000026 * More compatibility with C++ or non-GCC compilers.
vlm8ed2f6f2004-08-11 05:35:51 +000027
vlm972a5382004-07-22 12:19:42 +0000280.8.16: 2004-Jul-22
29
30 * Fixed application-level problem in SET OF/SEQUENCE OF array cleanup.
31 (Severity: medium, Security impact: low)
vlm81057a82004-08-07 03:52:26 +000032 * Improved asn_GT2time() and added asn_time2{GT,UT}() functions.
vlm49b511a2004-08-07 05:01:45 +000033 * BIT STRING pretty-printing.
vlm972a5382004-07-22 12:19:42 +000034
vlm796c1da2004-07-21 03:55:44 +0000350.8.15: 2004-Jul-20
vlmf0769b42004-07-15 10:52:58 +000036
37 * Fixed parser: memory leak in free_struct code for SET OF/SEQUENCE OF.
38 (Severity: high, Security impact: medium)
vlmde1d8f72004-07-21 04:15:24 +000039 * Fixed parser: invalid memory reference in code constructing tags.
vlm796c1da2004-07-21 03:55:44 +000040 (Test case 48) (Severity: high, Security impact: medium)
41 When encoding data for certain ASN.1 specifications containing
42 explicit tags, the tag is always written incorrectly due to
43 incorrect memory reference. The encoding will almost always produce
44 unparseable data and might well reference unmapped region so program
45 would produce segmentation violation. Fortunately, memory is
46 read, not written, so remote exploits cannot execute arbitrary
47 code and triggering unmapped memory reference is highly unlikely
48 even it attacker knows the code (basically, the compiler should place
49 asn1_DEF_... right before the end of the mapped memory region, which
50 is extremely rare).
vlm7d278c42004-07-19 17:30:25 +000051 * Improved INTEGER type printing.
vlmf0769b42004-07-15 10:52:58 +000052
vlm79b08d52004-07-01 00:52:50 +0000530.8.14: 2004-Jun-30
54
55 * Fixed compiler: extensibility of CHOICE and SET type has not been
56 taken into account during table construction.
57 (Test case 47) (Severity: high, Security impact: low)
58
vlm65328a82004-06-28 21:22:20 +0000590.8.13: 2004-Jun-29
60
61 * Fixed compiler: the skip values for IMPLICIT tagging were broken
62 in some complex cases where one type is defined using another.
63 (Test case 46) (Severity: medium, Security impact: low).
64 * Added -fknown-extern-type command line parameter to asn1c.
65 * Removed -N command line flag and underlying functionality
66 to honor KISS principle.
67
vlmd315be52004-06-18 00:03:54 +0000680.8.12: 2004-Jun-17
vlme511d3e2004-06-14 13:53:32 +000069
vlmd315be52004-06-18 00:03:54 +000070 * RELATIVE-OID and OBJECT IDENTIFIER encoders/decoders are not bound
71 anymore to an integer type of specific size (unsigned long). The
72 size of an integer must be provided explicitly.
73 See {OBJECT_IDENTIFIER|RELATIVE_OID}_{get|set}_arcs().
vlme511d3e2004-06-14 13:53:32 +000074 * SEQUENCE BER decoder fixed again for complex CHOICE case
vlm23ea2c72004-06-14 13:54:21 +000075 (Test case 44) (Severity: medium, Security impact: low).
vlme511d3e2004-06-14 13:53:32 +000076
vlm97986e42004-06-05 08:47:18 +0000770.8.11: 2004-Jun-05
78
vlm387ab0c2004-07-21 04:28:32 +000079 * Enforced stricter conformance with C standards.
vlme511d3e2004-06-14 13:53:32 +000080 * SEQUENCE BER decoder is now equipped with the sorted map
vlm45191f52004-06-06 07:20:37 +000081 in case of complex CHOICE descendants. Test case 44 created.
vlm97986e42004-06-05 08:47:18 +000082
vlmfa67ddc2004-06-03 03:38:44 +0000830.8.10: 2004-Jun-02
84
85 * Added const qualifier where necessary.
86 * Changed position of outmost_tag fetcher within asn1_TYPE_descriptor_t
87 structure.
88
890.8.9: 2004-May-26
90
91 * Added *_{get|set}_arcs_*() functions for OBJECT IDENTIFIER
92 and RELATIVE-OID, together with test cases.
93
940.8.8: 2004-May-09
95
96 * Introduced subtype constraints support (incomplete!).
97 * Fixed compiler. If the last member of the SEQUENCE is OPTIONAL
98 and absent in the encoding, and the type is extensible (...) or
99 EXTENSIBILITY IMPLIED flag is set, then the structure could not
100 be correctly decoded. (Severity: high, Security impact: low).
101 * Compiler: fixed recursive ASN.1 types inclusion (Severity: low,
102 Security impact: none).
103 * Parser: IMPORTS/FROM fixes, now allowing multiple sections.
104 * Code compiled and checked on PowerPC (@MacOS X). No major portability
105 issues experienced.
106
1070.8.7: 2004-Apr-11 T-version-0-8-7
108
109 * Fixed SEQUENCE BER decoder: if the last member of the SEQUENCE is
110 OPTIONAL and absent in the encoding, RC_FAIL was returned instead
111 of RC_OK (Severity: high, Security impact: low).
112 * Added test case to check the above problem.
113 * Added test case to check -fnative-integers mode.
114
1150.8.6: 2004-Apr-03 T-version-0-8-6
116
117 * Fixed compiler output for embedded ASN.1 structures.
118
1190.8.5: 2004-Mar-28 T-version-0-8-5
120
121 * Fixed ber_tlv_length() computation problem (Severity: blocker,
122 Security impact: none).
123 Reported by <vss@high.net.ru>
124
1250.8.4: 2004-Mar-22
126
127 * Removed RC_ITAG enumeration element from BER decoder.
128 This return code did not have much practical value.
129
1300.8.3: 2004-Mar-14 T-version-0-8-3
131
132 * Fixed SET::BER decoder: restart after reaching a buffer boundary
133 weas broken (Severity: blocker, Security impact: low).
134 * Fixed OCTET STRING::BER decoder: restart after reaching a buffer
135 boundary was broken (Severity: blocker, Security impact: low).
136 Reported by <vss@high.net.ru>
137 * Added test cases to check decoders restartability.
138 * Slightly more general INTEGER2long decoder.
139 * Allowed nested /* C-type */ comments, as per X.680:2002.
140
1410.8.2: 2004-Mar-01 T-version-0-8-2
142
143 * Fixed SEQUENCE BER decoder: an OPTIONAL element was required, where
144 should not have been (Severity: major; Security impact: low).
145 * Fixed print_struct pointer inheritance.
146 * Added -fno-c99 and -funnamed-unions
147
1480.8.1: 2004-Feb-22
149
150 * -R switch to asn1c: Omit support code, compile only the tables.
151 * Introduced NativeInteger pseudotype.
152 * Corrected the informal print_struct()'s output format.
153
1540.8.0: 2004-Feb-03 T-version-0-8-0
155
156 * Some documentation is created (a .pdf and a short manual page).
157 * Last touches to the code.
158
1590.7.9: 2004-Feb-01 T-version-0-7-9
160
161 * Human readable printing support.
162 * Support for implicit (standard) constraints.
163
1640.7.8: 2004-Jan-31
165
166 * SET now rejects duplicate fields in the data stream.
167
1680.7.7: 2004-Jan-25
169
170 * Added types: GeneralizedTime and UTCTime.
171
1720.7.6: 2004-Jan-24 T-version-0-7-6
173
174 * DER encoding of a SET OF now involves dynamic sorting.
175
1760.7.5: 2004-Jan-24 T-version-0-7-5
177
178 * DER encoding of a SET with untagged CHOICE
179 now involves dynamic sorting.
180
1810.7.0: 2004-Jan-19 T-version-0-7-0
182
183 * A bunch of DER encoders is implemented.
184
1850.6.6: 2004-Jan-11
186
187 * Implemented CHOICE decoder.
188 * Implemented destructors support.
189
1900.6.5: 2004-Jan-03
191
192 * Implemented SET decoder.
193 * Implemented SET OF and SEQUENCE OF decoders.
194
1950.6.4: 2003-Dec-31
196
197 * Implemented BOOLEAN, NULL, ENUMERATED decoders.
198 * Implemented OCTET STRING decoder.
199 * Implemented BIT STRING decoder.
200
2010.6: 2003-Dec-30
202
203 * First decoding of a BER-encoded structure!
204
2050.5: 2003-Dec-28
206
207 * Framework and most of the compiler backbone coding done.
208
2090.1: 2003-Nov-28
210
211 * Programming started.