1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* Decoder for ASN.1 BER/DER/CER encoded bytestream
4 * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
8 #include <linux/export.h>
9 #include <linux/kernel.h>
10 #include <linux/errno.h>
11 #include <linux/module.h>
12 #include <linux/asn1_decoder.h>
13 #include <linux/asn1_ber_bytecode.h>
15 static const unsigned char asn1_op_lengths
[ASN1_OP__NR
] = {
17 [ASN1_OP_MATCH
] = 1 + 1,
18 [ASN1_OP_MATCH_OR_SKIP
] = 1 + 1,
19 [ASN1_OP_MATCH_ACT
] = 1 + 1 + 1,
20 [ASN1_OP_MATCH_ACT_OR_SKIP
] = 1 + 1 + 1,
21 [ASN1_OP_MATCH_JUMP
] = 1 + 1 + 1,
22 [ASN1_OP_MATCH_JUMP_OR_SKIP
] = 1 + 1 + 1,
23 [ASN1_OP_MATCH_ANY
] = 1,
24 [ASN1_OP_MATCH_ANY_OR_SKIP
] = 1,
25 [ASN1_OP_MATCH_ANY_ACT
] = 1 + 1,
26 [ASN1_OP_MATCH_ANY_ACT_OR_SKIP
] = 1 + 1,
27 [ASN1_OP_COND_MATCH_OR_SKIP
] = 1 + 1,
28 [ASN1_OP_COND_MATCH_ACT_OR_SKIP
] = 1 + 1 + 1,
29 [ASN1_OP_COND_MATCH_JUMP_OR_SKIP
] = 1 + 1 + 1,
30 [ASN1_OP_COND_MATCH_ANY
] = 1,
31 [ASN1_OP_COND_MATCH_ANY_OR_SKIP
] = 1,
32 [ASN1_OP_COND_MATCH_ANY_ACT
] = 1 + 1,
33 [ASN1_OP_COND_MATCH_ANY_ACT_OR_SKIP
] = 1 + 1,
34 [ASN1_OP_COND_FAIL
] = 1,
35 [ASN1_OP_COMPLETE
] = 1,
36 [ASN1_OP_ACT
] = 1 + 1,
37 [ASN1_OP_MAYBE_ACT
] = 1 + 1,
39 [ASN1_OP_END_SEQ
] = 1,
40 [ASN1_OP_END_SEQ_OF
] = 1 + 1,
41 [ASN1_OP_END_SET
] = 1,
42 [ASN1_OP_END_SET_OF
] = 1 + 1,
43 [ASN1_OP_END_SEQ_ACT
] = 1 + 1,
44 [ASN1_OP_END_SEQ_OF_ACT
] = 1 + 1 + 1,
45 [ASN1_OP_END_SET_ACT
] = 1 + 1,
46 [ASN1_OP_END_SET_OF_ACT
] = 1 + 1 + 1,
50 * Find the length of an indefinite length object
51 * @data: The data buffer
52 * @datalen: The end of the innermost containing element in the buffer
53 * @_dp: The data parse cursor (updated before returning)
54 * @_len: Where to return the size of the element.
55 * @_errmsg: Where to return a pointer to an error message on error
57 static int asn1_find_indefinite_length(const unsigned char *data
, size_t datalen
,
58 size_t *_dp
, size_t *_len
,
61 unsigned char tag
, tmp
;
62 size_t dp
= *_dp
, len
, n
;
66 if (unlikely(datalen
- dp
< 2)) {
69 goto data_overrun_error
;
72 /* Extract a tag from the data */
74 if (tag
== ASN1_EOC
) {
75 /* It appears to be an EOC. */
78 if (--indef_level
<= 0) {
86 if (unlikely((tag
& 0x1f) == ASN1_LONG_TAG
)) {
88 if (unlikely(datalen
- dp
< 2))
89 goto data_overrun_error
;
94 /* Extract the length */
99 if (unlikely(len
== ASN1_INDEFINITE_LENGTH
)) {
100 /* Indefinite length */
101 if (unlikely((tag
& ASN1_CONS_BIT
) == ASN1_PRIM
<< 5))
102 goto indefinite_len_primitive
;
108 if (unlikely(n
> sizeof(len
) - 1))
109 goto length_too_long
;
110 if (unlikely(n
> datalen
- dp
))
111 goto data_overrun_error
;
118 if (len
> datalen
- dp
)
119 goto data_overrun_error
;
124 *_errmsg
= "Unsupported length";
126 indefinite_len_primitive
:
127 *_errmsg
= "Indefinite len primitive not permitted";
130 *_errmsg
= "Invalid length EOC";
133 *_errmsg
= "Data overrun error";
136 *_errmsg
= "Missing EOC in indefinite len cons";
143 * asn1_ber_decoder - Decoder BER/DER/CER ASN.1 according to pattern
144 * @decoder: The decoder definition (produced by asn1_compiler)
145 * @context: The caller's context (to be passed to the action functions)
146 * @data: The encoded data
147 * @datalen: The size of the encoded data
149 * Decode BER/DER/CER encoded ASN.1 data according to a bytecode pattern
150 * produced by asn1_compiler. Action functions are called on marked tags to
151 * allow the caller to retrieve significant data.
155 * To keep down the amount of stack used by this function, the following limits
158 * (1) This won't handle datalen > 65535 without increasing the size of the
159 * cons stack elements and length_too_long checking.
161 * (2) The stack of constructed types is 10 deep. If the depth of non-leaf
162 * constructed types exceeds this, the decode will fail.
164 * (3) The SET type (not the SET OF type) isn't really supported as tracking
165 * what members of the set have been seen is a pain.
167 int asn1_ber_decoder(const struct asn1_decoder
*decoder
,
169 const unsigned char *data
,
172 const unsigned char *machine
= decoder
->machine
;
173 const asn1_action_t
*actions
= decoder
->actions
;
174 size_t machlen
= decoder
->machlen
;
176 unsigned char tag
= 0, csp
= 0, jsp
= 0, optag
= 0, hdr
= 0;
178 size_t pc
= 0, dp
= 0, tdp
= 0, len
= 0;
181 unsigned char flags
= 0;
182 #define FLAG_INDEFINITE_LENGTH 0x01
183 #define FLAG_MATCHED 0x02
184 #define FLAG_LAST_MATCHED 0x04 /* Last tag matched */
185 #define FLAG_CONS 0x20 /* Corresponds to CONS bit in the opcode tag
186 * - ie. whether or not we are going to parse
190 #define NR_CONS_STACK 10
191 unsigned short cons_dp_stack
[NR_CONS_STACK
];
192 unsigned short cons_datalen_stack
[NR_CONS_STACK
];
193 unsigned char cons_hdrlen_stack
[NR_CONS_STACK
];
194 #define NR_JUMP_STACK 10
195 unsigned char jump_stack
[NR_JUMP_STACK
];
201 pr_debug("next_op: pc=\e[32m%zu\e[m/%zu dp=\e[33m%zu\e[m/%zu C=%d J=%d\n",
202 pc
, machlen
, dp
, datalen
, csp
, jsp
);
203 if (unlikely(pc
>= machlen
))
204 goto machine_overrun_error
;
206 if (unlikely(pc
+ asn1_op_lengths
[op
] > machlen
))
207 goto machine_overrun_error
;
209 /* If this command is meant to match a tag, then do that before
210 * evaluating the command.
212 if (op
<= ASN1_OP__MATCHES_TAG
) {
215 /* Skip conditional matches if possible */
216 if ((op
& ASN1_OP_MATCH__COND
&& flags
& FLAG_MATCHED
) ||
217 (op
& ASN1_OP_MATCH__SKIP
&& dp
== datalen
)) {
218 flags
&= ~FLAG_LAST_MATCHED
;
219 pc
+= asn1_op_lengths
[op
];
226 /* Extract a tag from the data */
227 if (unlikely(datalen
- dp
< 2))
228 goto data_overrun_error
;
230 if (unlikely((tag
& 0x1f) == ASN1_LONG_TAG
))
231 goto long_tag_not_supported
;
233 if (op
& ASN1_OP_MATCH__ANY
) {
234 pr_debug("- any %02x\n", tag
);
236 /* Extract the tag from the machine
237 * - Either CONS or PRIM are permitted in the data if
238 * CONS is not set in the op stream, otherwise CONS
241 optag
= machine
[pc
+ 1];
242 flags
|= optag
& FLAG_CONS
;
244 /* Determine whether the tag matched */
246 tmp
&= ~(optag
& ASN1_CONS_BIT
);
247 pr_debug("- match? %02x %02x %02x\n", tag
, optag
, tmp
);
249 /* All odd-numbered tags are MATCH_OR_SKIP. */
250 if (op
& ASN1_OP_MATCH__SKIP
) {
251 pc
+= asn1_op_lengths
[op
];
258 flags
|= FLAG_MATCHED
;
262 if (unlikely(len
== ASN1_INDEFINITE_LENGTH
)) {
263 /* Indefinite length */
264 if (unlikely(!(tag
& ASN1_CONS_BIT
)))
265 goto indefinite_len_primitive
;
266 flags
|= FLAG_INDEFINITE_LENGTH
;
267 if (unlikely(2 > datalen
- dp
))
268 goto data_overrun_error
;
272 goto length_too_long
;
273 if (unlikely(n
> datalen
- dp
))
274 goto data_overrun_error
;
276 for (len
= 0; n
> 0; n
--) {
280 if (unlikely(len
> datalen
- dp
))
281 goto data_overrun_error
;
284 if (unlikely(len
> datalen
- dp
))
285 goto data_overrun_error
;
288 if (flags
& FLAG_CONS
) {
289 /* For expected compound forms, we stack the positions
290 * of the start and end of the data.
292 if (unlikely(csp
>= NR_CONS_STACK
))
293 goto cons_stack_overflow
;
294 cons_dp_stack
[csp
] = dp
;
295 cons_hdrlen_stack
[csp
] = hdr
;
296 if (!(flags
& FLAG_INDEFINITE_LENGTH
)) {
297 cons_datalen_stack
[csp
] = datalen
;
300 cons_datalen_stack
[csp
] = 0;
305 pr_debug("- TAG: %02x %zu%s\n",
306 tag
, len
, flags
& FLAG_CONS
? " CONS" : "");
310 /* Decide how to handle the operation */
313 case ASN1_OP_MATCH_OR_SKIP
:
314 case ASN1_OP_MATCH_ACT
:
315 case ASN1_OP_MATCH_ACT_OR_SKIP
:
316 case ASN1_OP_MATCH_ANY
:
317 case ASN1_OP_MATCH_ANY_OR_SKIP
:
318 case ASN1_OP_MATCH_ANY_ACT
:
319 case ASN1_OP_MATCH_ANY_ACT_OR_SKIP
:
320 case ASN1_OP_COND_MATCH_OR_SKIP
:
321 case ASN1_OP_COND_MATCH_ACT_OR_SKIP
:
322 case ASN1_OP_COND_MATCH_ANY
:
323 case ASN1_OP_COND_MATCH_ANY_OR_SKIP
:
324 case ASN1_OP_COND_MATCH_ANY_ACT
:
325 case ASN1_OP_COND_MATCH_ANY_ACT_OR_SKIP
:
327 if (!(flags
& FLAG_CONS
)) {
328 if (flags
& FLAG_INDEFINITE_LENGTH
) {
331 ret
= asn1_find_indefinite_length(
332 data
, datalen
, &tmp
, &len
, &errmsg
);
336 pr_debug("- LEAF: %zu\n", len
);
339 if (op
& ASN1_OP_MATCH__ACT
) {
342 if (op
& ASN1_OP_MATCH__ANY
)
343 act
= machine
[pc
+ 1];
345 act
= machine
[pc
+ 2];
346 ret
= actions
[act
](context
, hdr
, tag
, data
+ dp
, len
);
351 if (!(flags
& FLAG_CONS
))
353 pc
+= asn1_op_lengths
[op
];
356 case ASN1_OP_MATCH_JUMP
:
357 case ASN1_OP_MATCH_JUMP_OR_SKIP
:
358 case ASN1_OP_COND_MATCH_JUMP_OR_SKIP
:
359 pr_debug("- MATCH_JUMP\n");
360 if (unlikely(jsp
== NR_JUMP_STACK
))
361 goto jump_stack_overflow
;
362 jump_stack
[jsp
++] = pc
+ asn1_op_lengths
[op
];
363 pc
= machine
[pc
+ 2];
366 case ASN1_OP_COND_FAIL
:
367 if (unlikely(!(flags
& FLAG_MATCHED
)))
369 pc
+= asn1_op_lengths
[op
];
372 case ASN1_OP_COMPLETE
:
373 if (unlikely(jsp
!= 0 || csp
!= 0)) {
374 pr_err("ASN.1 decoder error: Stacks not empty at completion (%u, %u)\n",
380 case ASN1_OP_END_SET
:
381 case ASN1_OP_END_SET_ACT
:
382 if (unlikely(!(flags
& FLAG_MATCHED
)))
386 case ASN1_OP_END_SEQ
:
387 case ASN1_OP_END_SET_OF
:
388 case ASN1_OP_END_SEQ_OF
:
389 case ASN1_OP_END_SEQ_ACT
:
390 case ASN1_OP_END_SET_OF_ACT
:
391 case ASN1_OP_END_SEQ_OF_ACT
:
392 if (unlikely(csp
<= 0))
393 goto cons_stack_underflow
;
395 tdp
= cons_dp_stack
[csp
];
396 hdr
= cons_hdrlen_stack
[csp
];
398 datalen
= cons_datalen_stack
[csp
];
399 pr_debug("- end cons t=%zu dp=%zu l=%zu/%zu\n",
400 tdp
, dp
, len
, datalen
);
402 /* Indefinite length - check for the EOC. */
404 if (unlikely(datalen
- dp
< 2))
405 goto data_overrun_error
;
406 if (data
[dp
++] != 0) {
407 if (op
& ASN1_OP_END__OF
) {
410 pc
= machine
[pc
+ 1];
411 pr_debug("- continue\n");
420 if (dp
< len
&& (op
& ASN1_OP_END__OF
)) {
423 pc
= machine
[pc
+ 1];
424 pr_debug("- continue\n");
428 goto cons_length_error
;
430 pr_debug("- cons len l=%zu d=%zu\n", len
, dp
- tdp
);
433 if (op
& ASN1_OP_END__ACT
) {
435 if (op
& ASN1_OP_END__OF
)
436 act
= machine
[pc
+ 2];
438 act
= machine
[pc
+ 1];
439 ret
= actions
[act
](context
, hdr
, 0, data
+ tdp
, len
);
443 pc
+= asn1_op_lengths
[op
];
446 case ASN1_OP_MAYBE_ACT
:
447 if (!(flags
& FLAG_LAST_MATCHED
)) {
448 pc
+= asn1_op_lengths
[op
];
454 ret
= actions
[machine
[pc
+ 1]](context
, hdr
, tag
, data
+ tdp
, len
);
457 pc
+= asn1_op_lengths
[op
];
461 if (unlikely(jsp
<= 0))
462 goto jump_stack_underflow
;
463 pc
= jump_stack
[--jsp
];
464 flags
|= FLAG_MATCHED
| FLAG_LAST_MATCHED
;
471 /* Shouldn't reach here */
472 pr_err("ASN.1 decoder error: Found reserved opcode (%u) pc=%zu\n",
477 errmsg
= "Data overrun error";
479 machine_overrun_error
:
480 errmsg
= "Machine overrun error";
482 jump_stack_underflow
:
483 errmsg
= "Jump stack underflow";
486 errmsg
= "Jump stack overflow";
488 cons_stack_underflow
:
489 errmsg
= "Cons stack underflow";
492 errmsg
= "Cons stack overflow";
495 errmsg
= "Cons length error";
498 errmsg
= "Missing EOC in indefinite len cons";
501 errmsg
= "Invalid length EOC";
504 errmsg
= "Unsupported length";
506 indefinite_len_primitive
:
507 errmsg
= "Indefinite len primitive not permitted";
510 errmsg
= "Unexpected tag";
512 long_tag_not_supported
:
513 errmsg
= "Long tag not supported";
515 pr_debug("\nASN1: %s [m=%zu d=%zu ot=%02x t=%02x l=%zu]\n",
516 errmsg
, pc
, dp
, optag
, tag
, len
);
519 EXPORT_SYMBOL_GPL(asn1_ber_decoder
);
521 MODULE_LICENSE("GPL");