ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-BER-XS/XS.xs
Revision: 1.30
Committed: Tue Apr 23 20:03:08 2019 UTC (5 years ago) by root
Branch: MAIN
CVS Tags: rel-1_11
Changes since 1.29: +65 -76 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #include "EXTERN.h"
2 #include "perl.h"
3 #include "XSUB.h"
4
5 // C99 required!
6 // this is not just for comments, but also for
7 // integer constant semantics,
8 // sscanf format modifiers and more.
9
10 enum {
11 // ASN_TAG
12 ASN_BOOLEAN = 0x01,
13 ASN_INTEGER = 0x02,
14 ASN_BIT_STRING = 0x03,
15 ASN_OCTET_STRING = 0x04,
16 ASN_NULL = 0x05,
17 ASN_OBJECT_IDENTIFIER = 0x06,
18 ASN_OID = 0x06,
19 ASN_OBJECT_DESCRIPTOR = 0x07,
20 ASN_EXTERNAL = 0x08,
21 ASN_REAL = 0x09,
22 ASN_ENUMERATED = 0x0a,
23 ASN_EMBEDDED_PDV = 0x0b,
24 ASN_UTF8_STRING = 0x0c,
25 ASN_RELATIVE_OID = 0x0d,
26 ASN_SEQUENCE = 0x10,
27 ASN_SET = 0x11,
28 ASN_NUMERIC_STRING = 0x12,
29 ASN_PRINTABLE_STRING = 0x13,
30 ASN_TELETEX_STRING = 0x14,
31 ASN_T61_STRING = 0x14,
32 ASN_VIDEOTEX_STRING = 0x15,
33 ASN_IA5_STRING = 0x16,
34 ASN_ASCII_STRING = 0x16,
35 ASN_UTC_TIME = 0x17,
36 ASN_GENERALIZED_TIME = 0x18,
37 ASN_GRAPHIC_STRING = 0x19,
38 ASN_VISIBLE_STRING = 0x1a,
39 ASN_ISO646_STRING = 0x1a,
40 ASN_GENERAL_STRING = 0x1b,
41 ASN_UNIVERSAL_STRING = 0x1c,
42 ASN_CHARACTER_STRING = 0x1d,
43 ASN_BMP_STRING = 0x1e,
44
45 ASN_TAG_BER = 0x1f,
46 ASN_TAG_MASK = 0x1f,
47
48 // primitive/constructed
49 ASN_CONSTRUCTED = 0x20,
50
51 // ASN_CLASS
52 ASN_UNIVERSAL = 0x00,
53 ASN_APPLICATION = 0x01,
54 ASN_CONTEXT = 0x02,
55 ASN_PRIVATE = 0x03,
56
57 ASN_CLASS_MASK = 0xc0,
58 ASN_CLASS_SHIFT = 6,
59
60 // ASN_APPLICATION SNMP
61 SNMP_IPADDRESS = 0x00,
62 SNMP_COUNTER32 = 0x01,
63 SNMP_GAUGE32 = 0x02,
64 SNMP_UNSIGNED32 = 0x02,
65 SNMP_TIMETICKS = 0x03,
66 SNMP_OPAQUE = 0x04,
67 SNMP_COUNTER64 = 0x06,
68 };
69
70 // tlow-level types this module can ecode the above (and more) into
71 enum {
72 BER_TYPE_BYTES,
73 BER_TYPE_UTF8,
74 BER_TYPE_UCS2,
75 BER_TYPE_UCS4,
76 BER_TYPE_INT,
77 BER_TYPE_OID,
78 BER_TYPE_RELOID,
79 BER_TYPE_NULL,
80 BER_TYPE_BOOL,
81 BER_TYPE_REAL,
82 BER_TYPE_IPADDRESS,
83 BER_TYPE_CROAK,
84 };
85
86 // tuple array indices
87 enum {
88 BER_CLASS = 0,
89 BER_TAG = 1,
90 BER_FLAGS = 2,
91 BER_DATA = 3,
92 BER_ARRAYSIZE
93 };
94
95 #define MAX_OID_STRLEN 4096
96
97 typedef void profile_type;
98
99 static profile_type *cur_profile, *default_profile;
100 static SV *buf_sv; // encoding buffer
101 static U8 *buf, *cur, *end; // buffer start, current, end
102
103 #if PERL_VERSION < 18
104 # define utf8_to_uvchr_buf(s,e,l) utf8_to_uvchr (s, l)
105 #endif
106
107 #if __GNUC__ >= 3
108 # define expect(expr,value) __builtin_expect ((expr), (value))
109 # define INLINE static inline
110 #else
111 # define expect(expr,value) (expr)
112 # define INLINE static
113 #endif
114
115 #define expect_false(expr) expect ((expr) != 0, 0)
116 #define expect_true(expr) expect ((expr) != 0, 1)
117
118 /////////////////////////////////////////////////////////////////////////////
119
120 static SV *sviv_cache[32];
121
122 // for "small" integers, return a readonly sv, otherwise create a new one
123 static SV *newSVcacheint (int val)
124 {
125 if (expect_false (val < 0 || val >= sizeof (sviv_cache)))
126 return newSViv (val);
127
128 if (expect_false (!sviv_cache [val]))
129 {
130 sviv_cache [val] = newSVuv (val);
131 SvREADONLY_on (sviv_cache [val]);
132 }
133
134 return SvREFCNT_inc_NN (sviv_cache [val]);
135 }
136
137 /////////////////////////////////////////////////////////////////////////////
138
139 static HV *profile_stash;
140
141 static profile_type *
142 SvPROFILE (SV *profile)
143 {
144 if (!SvOK (profile))
145 return default_profile;
146
147 if (!SvROK (profile))
148 croak ("Convert::BER::XS::Profile expected");
149
150 profile = SvRV (profile);
151
152 if (SvSTASH (profile) != profile_stash)
153 croak ("Convert::BER::XS::Profile expected");
154
155 return (void *)profile;
156 }
157
158 static int
159 profile_lookup (profile_type *profile, int klass, int tag)
160 {
161 SV *sv = (SV *)profile;
162 U32 idx = (tag << 2) + klass;
163
164 if (expect_false (idx >= SvCUR (sv)))
165 return BER_TYPE_BYTES;
166
167 return SvPVX (sv)[idx];
168 }
169
170 static void
171 profile_set (profile_type *profile, int klass, int tag, int type)
172 {
173 SV *sv = (SV *)profile;
174 U32 idx = (tag << 2) + klass;
175 STRLEN oldlen = SvCUR (sv);
176 STRLEN newlen = idx + 2;
177
178 if (idx >= oldlen)
179 {
180 sv_grow (sv, newlen);
181 memset (SvPVX (sv) + oldlen, BER_TYPE_BYTES, newlen - oldlen);
182 SvCUR_set (sv, newlen);
183 }
184
185 SvPVX (sv)[idx] = type;
186 }
187
188 static SV *
189 profile_new (void)
190 {
191 SV *sv = newSVpvn ("", 0);
192
193 static const struct {
194 int klass;
195 int tag;
196 int type;
197 } *celem, default_map[] = {
198 { ASN_UNIVERSAL, ASN_BOOLEAN , BER_TYPE_BOOL },
199 { ASN_UNIVERSAL, ASN_INTEGER , BER_TYPE_INT },
200 { ASN_UNIVERSAL, ASN_NULL , BER_TYPE_NULL },
201 { ASN_UNIVERSAL, ASN_OBJECT_IDENTIFIER, BER_TYPE_OID },
202 { ASN_UNIVERSAL, ASN_RELATIVE_OID , BER_TYPE_RELOID },
203 { ASN_UNIVERSAL, ASN_REAL , BER_TYPE_REAL },
204 { ASN_UNIVERSAL, ASN_ENUMERATED , BER_TYPE_INT },
205 { ASN_UNIVERSAL, ASN_UTF8_STRING , BER_TYPE_UTF8 },
206 { ASN_UNIVERSAL, ASN_BMP_STRING , BER_TYPE_UCS2 },
207 { ASN_UNIVERSAL, ASN_UNIVERSAL_STRING , BER_TYPE_UCS4 },
208 };
209
210 for (celem = default_map + sizeof (default_map) / sizeof (default_map [0]); celem-- > default_map; )
211 profile_set ((profile_type *)sv, celem->klass, celem->tag, celem->type);
212
213 return sv_bless (newRV_noinc (sv), profile_stash);
214 }
215
216 /////////////////////////////////////////////////////////////////////////////
217 // decoder
218
219 static void
220 error (const char *errmsg)
221 {
222 croak ("%s at offset 0x%04x", errmsg, cur - buf);
223 }
224
225 static void
226 want (UV count)
227 {
228 if (expect_false ((uintptr_t)(end - cur) < count))
229 error ("unexpected end of message buffer");
230 }
231
232 // get_* functions fetch something from the buffer
233 // decode_* functions use get_* fun ctions to decode ber values
234
235 // get single octet
236 static U8
237 get_u8 (void)
238 {
239 if (cur == end)
240 error ("unexpected end of message buffer");
241
242 return *cur++;
243 }
244
245 // get n octets
246 static U8 *
247 get_n (UV count)
248 {
249 want (count);
250 U8 *res = cur;
251 cur += count;
252 return res;
253 }
254
255 // get ber-encoded integer (i.e. pack "w")
256 static UV
257 get_w (void)
258 {
259 UV res = 0;
260 U8 c = get_u8 ();
261
262 if (expect_false (c == 0x80))
263 error ("illegal BER padding (X.690 8.1.2.4.2, 8.19.2)");
264
265 for (;;)
266 {
267 if (expect_false (res >> UVSIZE * 8 - 7))
268 error ("BER variable length integer overflow");
269
270 res = (res << 7) | (c & 0x7f);
271
272 if (expect_true (!(c & 0x80)))
273 return res;
274
275 c = get_u8 ();
276 }
277 }
278
279 static UV
280 get_length (void)
281 {
282 UV res = get_u8 ();
283
284 if (expect_false (res & 0x80))
285 {
286 U8 cnt = res & 0x7f;
287
288 // this genewrates quite ugly code, but the overhead
289 // of copying the bytes for these lengths is probably so high
290 // that a slightly inefficient get_length won't matter.
291
292 if (expect_false (cnt == 0))
293 error ("indefinite BER value lengths not supported");
294
295 if (expect_false (cnt > UVSIZE))
296 error ("BER value length too long (must fit into UV) or BER reserved value in length (X.690 8.1.3.5)");
297
298 want (cnt);
299
300 res = 0;
301 do
302 res = (res << 8) | *cur++;
303 while (--cnt);
304 }
305
306 return res;
307 }
308
309 static SV *
310 decode_int (UV len)
311 {
312 if (!len)
313 error ("invalid BER_TYPE_INT length zero (X.690 8.3.1)");
314
315 U8 *data = get_n (len);
316
317 if (expect_false (len > 1))
318 {
319 U16 mask = (data [0] << 8) | data [1] & 0xff80;
320
321 if (expect_false (mask == 0xff80 || mask == 0x0000))
322 error ("illegal padding in BER_TYPE_INT (X.690 8.3.2)");
323 }
324
325 int negative = data [0] & 0x80;
326
327 UV val = negative ? -1 : 0; // copy signbit to all bits
328
329 if (len > UVSIZE + (!negative && !*data))
330 error ("BER_TYPE_INT overflow");
331
332 do
333 val = (val << 8) | *data++;
334 while (--len);
335
336 // the cast to IV relies on implementation-defined behaviour (two's complement cast)
337 // but that's ok, as perl relies on it as well.
338 return negative ? newSViv ((IV)val) : newSVuv (val);
339 }
340
341 static SV *
342 decode_data (UV len)
343 {
344 return newSVpvn ((char *)get_n (len), len);
345 }
346
347 // helper for decode_object_identifier
348 static char *
349 write_uv (char *buf, UV u)
350 {
351 // the one-digit case is absolutely predominant, so this pays off (hopefully)
352 if (expect_true (u < 10))
353 *buf++ = u + '0';
354 else
355 {
356 // this *could* be done much faster using branchless fixed-point arithmetics
357 char *beg = buf;
358
359 do
360 {
361 *buf++ = u % 10 + '0';
362 u /= 10;
363 }
364 while (u);
365
366 // reverse digits
367 char *ptr = buf;
368 while (--ptr > beg)
369 {
370 char c = *ptr;
371 *ptr = *beg;
372 *beg = c;
373 ++beg;
374 }
375 }
376
377 return buf;
378 }
379
380 static SV *
381 decode_oid (UV len, int relative)
382 {
383 if (len <= 0)
384 {
385 error ("BER_TYPE_OID length must not be zero");
386 return &PL_sv_undef;
387 }
388
389 U8 *end = cur + len;
390 UV w = get_w ();
391
392 static char oid[MAX_OID_STRLEN]; // static, because too large for stack
393 char *app = oid;
394
395 if (relative)
396 app = write_uv (app, w);
397 else
398 {
399 UV w1, w2;
400
401 if (w < 2 * 40)
402 (w1 = w / 40), (w2 = w % 40);
403 else
404 (w1 = 2), (w2 = w - 2 * 40);
405
406 app = write_uv (app, w1);
407 *app++ = '.';
408 app = write_uv (app, w2);
409 }
410
411 while (cur < end)
412 {
413 // we assume an oid component is never > 64 digits
414 if (oid + sizeof (oid) - app < 64)
415 croak ("BER_TYPE_OID to long to decode");
416
417 w = get_w ();
418 *app++ = '.';
419 app = write_uv (app, w);
420 }
421
422 return newSVpvn (oid, app - oid);
423 }
424
425 // TODO: this is unacceptably slow
426 static SV *
427 decode_ucs (UV len, int chrsize)
428 {
429 if (len & (chrsize - 1))
430 croak ("BER_TYPE_UCS has an invalid number of octets (%d)", len);
431
432 SV *res = NEWSV (0, 0);
433
434 while (len)
435 {
436 U8 b1 = get_u8 ();
437 U8 b2 = get_u8 ();
438 U32 chr = (b1 << 8) | b2;
439
440 if (chrsize == 4)
441 {
442 U8 b3 = get_u8 ();
443 U8 b4 = get_u8 ();
444 chr = (chr << 16) | (b3 << 8) | b4;
445 }
446
447 U8 uchr [UTF8_MAXBYTES];
448 int uclen = uvuni_to_utf8 (uchr, chr) - uchr;
449
450 sv_catpvn (res, (const char *)uchr, uclen);
451 len -= chrsize;
452 }
453
454 SvUTF8_on (res);
455
456 return res;
457 }
458
459 static SV *
460 decode_ber (void)
461 {
462 int identifier = get_u8 ();
463
464 SV *res;
465
466 int constructed = identifier & ASN_CONSTRUCTED;
467 int klass = (identifier & ASN_CLASS_MASK) >> ASN_CLASS_SHIFT;
468 int tag = identifier & ASN_TAG_MASK;
469
470 if (tag == ASN_TAG_BER)
471 tag = get_w ();
472
473 if (constructed)
474 {
475 UV len = get_length ();
476 UV seqend = (cur - buf) + len;
477 AV *av = (AV *)sv_2mortal ((SV *)newAV ());
478
479 while (cur < buf + seqend)
480 av_push (av, decode_ber ());
481
482 if (expect_false (cur > buf + seqend))
483 croak ("CONSTRUCTED type %02x length overflow (0x%x 0x%x)\n", identifier, (int)(cur - buf), (int)seqend);
484
485 res = newRV_inc ((SV *)av);
486 }
487 else
488 {
489 UV len = get_length ();
490
491 switch (profile_lookup (cur_profile, klass, tag))
492 {
493 case BER_TYPE_NULL:
494 if (expect_false (len))
495 croak ("BER_TYPE_NULL value with non-zero length %d encountered (X.690 8.8.2)", len);
496
497 res = &PL_sv_undef;
498 break;
499
500 case BER_TYPE_BOOL:
501 if (expect_false (len != 1))
502 croak ("BER_TYPE_BOOLEAN value with invalid length %d encountered (X.690 8.2.1)", len);
503
504 res = newSVcacheint (!!get_u8 ());
505 break;
506
507 case BER_TYPE_OID:
508 res = decode_oid (len, 0);
509 break;
510
511 case BER_TYPE_RELOID:
512 res = decode_oid (len, 1);
513 break;
514
515 case BER_TYPE_INT:
516 res = decode_int (len);
517 break;
518
519 case BER_TYPE_UTF8:
520 res = decode_data (len);
521 SvUTF8_on (res);
522 break;
523
524 case BER_TYPE_BYTES:
525 res = decode_data (len);
526 break;
527
528 case BER_TYPE_IPADDRESS:
529 {
530 if (len != 4)
531 croak ("BER_TYPE_IPADDRESS type with invalid length %d encountered (RFC 2578 7.1.5)", len);
532
533 U8 *data = get_n (4);
534 res = newSVpvf ("%d.%d.%d.%d", data [0], data [1], data [2], data [3]);
535 }
536 break;
537
538 case BER_TYPE_UCS2:
539 res = decode_ucs (len, 2);
540 break;
541
542 case BER_TYPE_UCS4:
543 res = decode_ucs (len, 4);
544 break;
545
546 case BER_TYPE_REAL:
547 error ("BER_TYPE_REAL not implemented");
548
549 case BER_TYPE_CROAK:
550 croak ("class/tag %d/%d mapped to BER_TYPE_CROAK", klass, tag);
551
552 default:
553 croak ("unconfigured/unsupported class/tag %d/%d", klass, tag);
554 }
555 }
556
557 AV *av = newAV ();
558 av_fill (av, BER_ARRAYSIZE - 1);
559 AvARRAY (av)[BER_CLASS] = newSVcacheint (klass);
560 AvARRAY (av)[BER_TAG ] = newSVcacheint (tag);
561 AvARRAY (av)[BER_FLAGS] = newSVcacheint (constructed ? 1 : 0);
562 AvARRAY (av)[BER_DATA ] = res;
563
564 return newRV_noinc ((SV *)av);
565 }
566
567 /////////////////////////////////////////////////////////////////////////////
568 // encoder
569
570 /* adds two STRLENs together, slow, and with paranoia */
571 static STRLEN
572 strlen_sum (STRLEN l1, STRLEN l2)
573 {
574 size_t sum = l1 + l2;
575
576 if (sum < (size_t)l2 || sum != (size_t)(STRLEN)sum)
577 croak ("Convert::BER::XS: string size overflow");
578
579 return sum;
580 }
581
582 static void
583 set_buf (SV *sv)
584 {
585 STRLEN len;
586 buf_sv = sv;
587 buf = (U8 *)SvPVbyte (buf_sv, len);
588 cur = buf;
589 end = buf + len;
590 }
591
592 /* similar to SvGROW, but somewhat safer and guarantees exponential realloc strategy */
593 static char *
594 my_sv_grow (SV *sv, size_t len1, size_t len2)
595 {
596 len1 = strlen_sum (len1, len2);
597 len1 = strlen_sum (len1, len1 >> 1);
598
599 if (len1 > 4096 - 24)
600 len1 = (len1 | 4095) - 24;
601
602 return SvGROW (sv, len1);
603 }
604
605 static void
606 need (STRLEN len)
607 {
608 if (expect_false ((uintptr_t)(end - cur) < len))
609 {
610 STRLEN pos = cur - buf;
611 buf = (U8 *)my_sv_grow (buf_sv, pos, len);
612 cur = buf + pos;
613 end = buf + SvLEN (buf_sv) - 1;
614 }
615 }
616
617 static void
618 put_u8 (int val)
619 {
620 need (1);
621 *cur++ = val;
622 }
623
624 static void
625 put_w_nocheck (UV val)
626 {
627 #if UVSIZE > 4
628 *cur = (val >> 7 * 9) | 0x80; cur += val >= ((UV)1 << (7 * 9));
629 *cur = (val >> 7 * 8) | 0x80; cur += val >= ((UV)1 << (7 * 8));
630 *cur = (val >> 7 * 7) | 0x80; cur += val >= ((UV)1 << (7 * 7));
631 *cur = (val >> 7 * 6) | 0x80; cur += val >= ((UV)1 << (7 * 6));
632 *cur = (val >> 7 * 5) | 0x80; cur += val >= ((UV)1 << (7 * 5));
633 #endif
634 *cur = (val >> 7 * 4) | 0x80; cur += val >= ((UV)1 << (7 * 4));
635 *cur = (val >> 7 * 3) | 0x80; cur += val >= ((UV)1 << (7 * 3));
636 *cur = (val >> 7 * 2) | 0x80; cur += val >= ((UV)1 << (7 * 2));
637 *cur = (val >> 7 * 1) | 0x80; cur += val >= ((UV)1 << (7 * 1));
638 *cur = val & 0x7f; cur += 1;
639 }
640
641 static void
642 put_w (UV val)
643 {
644 need (5); // we only handle up to 5 bytes
645
646 put_w_nocheck (val);
647 }
648
649 static U8 *
650 put_length_at (UV val, U8 *cur)
651 {
652 if (val <= 0x7fU)
653 *cur++ = val;
654 else
655 {
656 U8 *lenb = cur++;
657
658 #if UVSIZE > 4
659 *cur = val >> 56; cur += val >= ((UV)1 << (8 * 7));
660 *cur = val >> 48; cur += val >= ((UV)1 << (8 * 6));
661 *cur = val >> 40; cur += val >= ((UV)1 << (8 * 5));
662 *cur = val >> 32; cur += val >= ((UV)1 << (8 * 4));
663 #endif
664 *cur = val >> 24; cur += val >= ((UV)1 << (8 * 3));
665 *cur = val >> 16; cur += val >= ((UV)1 << (8 * 2));
666 *cur = val >> 8; cur += val >= ((UV)1 << (8 * 1));
667 *cur = val ; cur += 1;
668
669 *lenb = 0x80 + cur - lenb - 1;
670 }
671
672 return cur;
673 }
674
675 static void
676 put_length (UV val)
677 {
678 need (9 + val);
679 cur = put_length_at (val, cur);
680 }
681
682 // return how many bytes the encoded length requires
683 static int length_length (UV val)
684 {
685 // use hashing with a DeBruin sequence, anyone?
686 return expect_true (val <= 0x7fU)
687 ? 1
688 : 2
689 + (val > 0x000000000000ffU)
690 + (val > 0x0000000000ffffU)
691 + (val > 0x00000000ffffffU)
692 #if UVSIZE > 4
693 + (val > 0x000000ffffffffU)
694 + (val > 0x0000ffffffffffU)
695 + (val > 0x00ffffffffffffU)
696 + (val > 0xffffffffffffffU)
697 #endif
698 ;
699 }
700
701 static void
702 encode_data (const char *ptr, STRLEN len)
703 {
704 put_length (len);
705 memcpy (cur, ptr, len);
706 cur += len;
707 }
708
709 static void
710 encode_uv (UV uv)
711 {
712 }
713
714 static void
715 encode_int (SV *sv)
716 {
717 need (8 + 1 + 1); // 64 bit + length + extra 0
718
719 if (expect_false (!SvIOK (sv)))
720 sv_2iv_flags (sv, 0);
721
722 U8 *lenb = cur++;
723
724 if (SvIOK_notUV (sv))
725 {
726 IV iv = SvIVX (sv);
727
728 if (expect_false (iv < 0))
729 {
730 // get two's complement bit pattern - works even on hypothetical non-2c machines
731 UV uv = iv;
732
733 #if UVSIZE > 4
734 *cur = uv >> 56; cur += !!(~uv & 0xff80000000000000U);
735 *cur = uv >> 48; cur += !!(~uv & 0xffff800000000000U);
736 *cur = uv >> 40; cur += !!(~uv & 0xffffff8000000000U);
737 *cur = uv >> 32; cur += !!(~uv & 0xffffffff80000000U);
738 #endif
739 *cur = uv >> 24; cur += !!(~uv & 0xffffffffff800000U);
740 *cur = uv >> 16; cur += !!(~uv & 0xffffffffffff8000U);
741 *cur = uv >> 8; cur += !!(~uv & 0xffffffffffffff80U);
742 *cur = uv ; cur += 1;
743
744 *lenb = cur - lenb - 1;
745
746 return;
747 }
748 }
749
750 UV uv = SvUV (sv);
751
752 // prepend an extra 0 if the high bit is 1
753 *cur = 0; cur += !!(uv & ((UV)1 << (UVSIZE * 8 - 1)));
754
755 #if UVSIZE > 4
756 *cur = uv >> 56; cur += !!(uv & 0xff80000000000000U);
757 *cur = uv >> 48; cur += !!(uv & 0xffff800000000000U);
758 *cur = uv >> 40; cur += !!(uv & 0xffffff8000000000U);
759 *cur = uv >> 32; cur += !!(uv & 0xffffffff80000000U);
760 #endif
761 *cur = uv >> 24; cur += !!(uv & 0xffffffffff800000U);
762 *cur = uv >> 16; cur += !!(uv & 0xffffffffffff8000U);
763 *cur = uv >> 8; cur += !!(uv & 0xffffffffffffff80U);
764 *cur = uv ; cur += 1;
765
766 *lenb = cur - lenb - 1;
767 }
768
769 // we don't know the length yet, so we optimistically
770 // assume the length will need one octet later. If that
771 // turns out to be wrong, we memmove as needed.
772 // mark the beginning
773 static STRLEN
774 len_fixup_mark (void)
775 {
776 return cur++ - buf;
777 }
778
779 // patch up the length
780 static void
781 len_fixup (STRLEN mark)
782 {
783 STRLEN reallen = (cur - buf) - mark - 1;
784 int lenlen = length_length (reallen);
785
786 if (expect_false (lenlen > 1))
787 {
788 // bad luck, we have to shift the bytes to make room for the length
789 need (5);
790 memmove (buf + mark + lenlen, buf + mark + 1, reallen);
791 cur += lenlen - 1;
792 }
793
794 put_length_at (reallen, buf + mark);
795 }
796
797 static char *
798 read_uv (char *str, UV *uv)
799 {
800 UV r = 0;
801
802 while (*str >= '0')
803 r = r * 10 + *str++ - '0';
804
805 *uv = r;
806
807 str += !!*str; // advance over any non-zero byte
808
809 return str;
810 }
811
812 static void
813 encode_oid (SV *oid, int relative)
814 {
815 STRLEN len;
816 char *ptr = SvPV (oid, len); // utf8 vs. bytes does not matter
817
818 // we need at most as many octets as the string form
819 need (len + 1);
820 STRLEN mark = len_fixup_mark ();
821
822 UV w1, w2;
823
824 if (!relative)
825 {
826 ptr = read_uv (ptr, &w1);
827 ptr = read_uv (ptr, &w2);
828
829 put_w_nocheck (w1 * 40 + w2);
830 }
831
832 while (*ptr)
833 {
834 ptr = read_uv (ptr, &w1);
835 put_w_nocheck (w1);
836 }
837
838 len_fixup (mark);
839 }
840
841 // check whether an SV is a BER tuple and returns its AV *
842 static AV *
843 ber_tuple (SV *tuple)
844 {
845 SV *rv;
846
847 if (expect_false (!SvROK (tuple) || SvTYPE ((rv = SvRV (tuple))) != SVt_PVAV))
848 croak ("BER tuple must be array-reference");
849
850 if (expect_false (SvRMAGICAL (rv)))
851 croak ("BER tuple must not be tied");
852
853 if (expect_false (AvFILL ((AV *)rv) != BER_ARRAYSIZE - 1))
854 croak ("BER tuple must contain exactly %d elements, not %d", BER_ARRAYSIZE, AvFILL ((AV *)rv) + 1);
855
856 return (AV *)rv;
857 }
858
859 static void
860 encode_ucs (SV *data, int chrsize)
861 {
862 STRLEN uchars = sv_len_utf8 (data);
863 STRLEN len;;
864 char *ptr = SvPVutf8 (data, len);
865
866 put_length (uchars * chrsize);
867
868 while (uchars--)
869 {
870 STRLEN uclen;
871 UV uchr = utf8_to_uvchr_buf ((U8 *)ptr, (U8 *)ptr + len, &uclen);
872
873 ptr += uclen;
874 len -= uclen;
875
876 if (chrsize == 4)
877 {
878 *cur++ = uchr >> 24;
879 *cur++ = uchr >> 16;
880 }
881
882 *cur++ = uchr >> 8;
883 *cur++ = uchr;
884 }
885 }
886 static void
887 encode_ber (SV *tuple)
888 {
889 AV *av = ber_tuple (tuple);
890
891 int klass = SvIV (AvARRAY (av)[BER_CLASS]);
892 int tag = SvIV (AvARRAY (av)[BER_TAG]);
893 int constructed = SvIV (AvARRAY (av)[BER_FLAGS]) & 1 ? ASN_CONSTRUCTED : 0;
894 SV *data = AvARRAY (av)[BER_DATA];
895
896 int identifier = (klass << ASN_CLASS_SHIFT) | constructed;
897
898 if (expect_false (tag >= ASN_TAG_BER))
899 {
900 put_u8 (identifier | ASN_TAG_BER);
901 put_w (tag);
902 }
903 else
904 put_u8 (identifier | tag);
905
906 if (constructed)
907 {
908 // we optimistically assume that only one length byte is needed
909 // and adjust later
910 need (1);
911 STRLEN mark = len_fixup_mark ();
912
913 if (expect_false (!SvROK (data) || SvTYPE (SvRV (data)) != SVt_PVAV))
914 croak ("BER CONSTRUCTED data must be array-reference");
915
916 AV *av = (AV *)SvRV (data);
917 int fill = AvFILL (av);
918
919 if (expect_false (SvRMAGICAL (av)))
920 croak ("BER CONSTRUCTED data must not be tied");
921
922 int i;
923 for (i = 0; i <= fill; ++i)
924 encode_ber (AvARRAY (av)[i]);
925
926 len_fixup (mark);
927 }
928 else
929 switch (profile_lookup (cur_profile, klass, tag))
930 {
931 case BER_TYPE_NULL:
932 put_length (0);
933 break;
934
935 case BER_TYPE_BOOL:
936 put_length (1);
937 *cur++ = SvTRUE (data) ? 0xff : 0x00; // 0xff = DER/CER
938 break;
939
940 case BER_TYPE_OID:
941 encode_oid (data, 0);
942 break;
943
944 case BER_TYPE_RELOID:
945 encode_oid (data, 1);
946 break;
947
948 case BER_TYPE_INT:
949 encode_int (data);
950 break;
951
952 case BER_TYPE_BYTES:
953 {
954 STRLEN len;
955 const char *ptr = SvPVbyte (data, len);
956 encode_data (ptr, len);
957 }
958 break;
959
960 case BER_TYPE_UTF8:
961 {
962 STRLEN len;
963 const char *ptr = SvPVutf8 (data, len);
964 encode_data (ptr, len);
965 }
966 break;
967
968 case BER_TYPE_IPADDRESS:
969 {
970 U8 ip[4];
971 sscanf (SvPV_nolen (data), "%hhu.%hhu.%hhu.%hhu", ip + 0, ip + 1, ip + 2, ip + 3);
972 encode_data ((const char *)ip, sizeof (ip));
973 }
974 break;
975
976 case BER_TYPE_UCS2:
977 encode_ucs (data, 2);
978 break;
979
980 case BER_TYPE_UCS4:
981 encode_ucs (data, 4);
982 break;
983
984 case BER_TYPE_REAL:
985 croak ("BER_TYPE_REAL not implemented");
986
987 case BER_TYPE_CROAK:
988 croak ("class/tag %d/%d mapped to BER_TYPE_CROAK", klass, tag);
989
990 default:
991 croak ("unconfigured/unsupported class/tag %d/%d", klass, tag);
992 }
993
994 }
995
996 /////////////////////////////////////////////////////////////////////////////
997
998 MODULE = Convert::BER::XS PACKAGE = Convert::BER::XS
999
1000 PROTOTYPES: ENABLE
1001
1002 BOOT:
1003 {
1004 HV *stash = gv_stashpv ("Convert::BER::XS", 1);
1005
1006 profile_stash = gv_stashpv ("Convert::BER::XS::Profile", 1);
1007
1008 static const struct {
1009 const char *name;
1010 IV iv;
1011 } *civ, const_iv[] = {
1012 #define const_iv(name) { # name, name },
1013 const_iv (ASN_BOOLEAN)
1014 const_iv (ASN_INTEGER)
1015 const_iv (ASN_BIT_STRING)
1016 const_iv (ASN_OCTET_STRING)
1017 const_iv (ASN_NULL)
1018 const_iv (ASN_OBJECT_IDENTIFIER)
1019 const_iv (ASN_OBJECT_DESCRIPTOR)
1020 const_iv (ASN_OID)
1021 const_iv (ASN_EXTERNAL)
1022 const_iv (ASN_REAL)
1023 const_iv (ASN_SEQUENCE)
1024 const_iv (ASN_ENUMERATED)
1025 const_iv (ASN_EMBEDDED_PDV)
1026 const_iv (ASN_UTF8_STRING)
1027 const_iv (ASN_RELATIVE_OID)
1028 const_iv (ASN_SET)
1029 const_iv (ASN_NUMERIC_STRING)
1030 const_iv (ASN_PRINTABLE_STRING)
1031 const_iv (ASN_TELETEX_STRING)
1032 const_iv (ASN_T61_STRING)
1033 const_iv (ASN_VIDEOTEX_STRING)
1034 const_iv (ASN_IA5_STRING)
1035 const_iv (ASN_ASCII_STRING)
1036 const_iv (ASN_UTC_TIME)
1037 const_iv (ASN_GENERALIZED_TIME)
1038 const_iv (ASN_GRAPHIC_STRING)
1039 const_iv (ASN_VISIBLE_STRING)
1040 const_iv (ASN_ISO646_STRING)
1041 const_iv (ASN_GENERAL_STRING)
1042 const_iv (ASN_UNIVERSAL_STRING)
1043 const_iv (ASN_CHARACTER_STRING)
1044 const_iv (ASN_BMP_STRING)
1045
1046 const_iv (ASN_UNIVERSAL)
1047 const_iv (ASN_APPLICATION)
1048 const_iv (ASN_CONTEXT)
1049 const_iv (ASN_PRIVATE)
1050
1051 const_iv (BER_CLASS)
1052 const_iv (BER_TAG)
1053 const_iv (BER_FLAGS)
1054 const_iv (BER_DATA)
1055
1056 const_iv (BER_TYPE_BYTES)
1057 const_iv (BER_TYPE_UTF8)
1058 const_iv (BER_TYPE_UCS2)
1059 const_iv (BER_TYPE_UCS4)
1060 const_iv (BER_TYPE_INT)
1061 const_iv (BER_TYPE_OID)
1062 const_iv (BER_TYPE_RELOID)
1063 const_iv (BER_TYPE_NULL)
1064 const_iv (BER_TYPE_BOOL)
1065 const_iv (BER_TYPE_REAL)
1066 const_iv (BER_TYPE_IPADDRESS)
1067 const_iv (BER_TYPE_CROAK)
1068
1069 const_iv (SNMP_IPADDRESS)
1070 const_iv (SNMP_COUNTER32)
1071 const_iv (SNMP_GAUGE32)
1072 const_iv (SNMP_UNSIGNED32)
1073 const_iv (SNMP_TIMETICKS)
1074 const_iv (SNMP_OPAQUE)
1075 const_iv (SNMP_COUNTER64)
1076 };
1077
1078 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ > const_iv; civ--)
1079 newCONSTSUB (stash, (char *)civ[-1].name, newSViv (civ[-1].iv));
1080 }
1081
1082 void
1083 ber_decode (SV *ber, SV *profile = &PL_sv_undef)
1084 ALIAS:
1085 ber_decode_prefix = 1
1086 PPCODE:
1087 {
1088 cur_profile = SvPROFILE (profile);
1089 STRLEN len;
1090 buf = (U8 *)SvPVbyte (ber, len);
1091 cur = buf;
1092 end = buf + len;
1093
1094 SV *tuple = decode_ber ();
1095
1096 EXTEND (SP, 2);
1097 PUSHs (sv_2mortal (tuple));
1098
1099 if (ix)
1100 PUSHs (sv_2mortal (newSViv (cur - buf)));
1101 else if (cur != end)
1102 error ("trailing garbage after BER value");
1103 }
1104
1105 void
1106 ber_is (SV *tuple, SV *klass = &PL_sv_undef, SV *tag = &PL_sv_undef, SV *flags = &PL_sv_undef, SV *data = &PL_sv_undef)
1107 PPCODE:
1108 {
1109 if (!SvOK (tuple))
1110 XSRETURN_NO;
1111
1112 if (!SvROK (tuple) || SvTYPE (SvRV (tuple)) != SVt_PVAV)
1113 croak ("ber_is: tuple must be BER tuple (array-ref)");
1114
1115 AV *av = (AV *)SvRV (tuple);
1116
1117 XPUSHs (
1118 (!SvOK (klass) || SvIV (AvARRAY (av)[BER_CLASS]) == SvIV (klass))
1119 && (!SvOK (tag) || SvIV (AvARRAY (av)[BER_TAG ]) == SvIV (tag))
1120 && (!SvOK (flags) || !SvIV (AvARRAY (av)[BER_FLAGS]) == !SvIV (flags))
1121 && (!SvOK (data) || sv_eq (AvARRAY (av)[BER_DATA ], data))
1122 ? &PL_sv_yes : &PL_sv_undef);
1123 }
1124
1125 void
1126 ber_is_seq (SV *tuple)
1127 PPCODE:
1128 {
1129 if (!SvOK (tuple))
1130 XSRETURN_UNDEF;
1131
1132 AV *av = ber_tuple (tuple);
1133
1134 XPUSHs (
1135 SvIV (AvARRAY (av)[BER_CLASS]) == ASN_UNIVERSAL
1136 && SvIV (AvARRAY (av)[BER_TAG ]) == ASN_SEQUENCE
1137 && SvIV (AvARRAY (av)[BER_FLAGS])
1138 ? AvARRAY (av)[BER_DATA] : &PL_sv_undef);
1139 }
1140
1141 void
1142 ber_is_int (SV *tuple, SV *value = &PL_sv_undef)
1143 PPCODE:
1144 {
1145 if (!SvOK (tuple))
1146 XSRETURN_NO;
1147
1148 AV *av = ber_tuple (tuple);
1149
1150 UV data = SvUV (AvARRAY (av)[BER_DATA]);
1151
1152 XPUSHs (
1153 SvIV (AvARRAY (av)[BER_CLASS]) == ASN_UNIVERSAL
1154 && SvIV (AvARRAY (av)[BER_TAG ]) == ASN_INTEGER
1155 && !SvIV (AvARRAY (av)[BER_FLAGS])
1156 && (!SvOK (value) || data == SvUV (value))
1157 ? sv_2mortal (data ? newSVsv (AvARRAY (av)[BER_DATA]) : newSVpv ("0 but true", 0))
1158 : &PL_sv_undef);
1159 }
1160
1161 void
1162 ber_is_oid (SV *tuple, SV *oid = &PL_sv_undef)
1163 PPCODE:
1164 {
1165 if (!SvOK (tuple))
1166 XSRETURN_NO;
1167
1168 AV *av = ber_tuple (tuple);
1169
1170 XPUSHs (
1171 SvIV (AvARRAY (av)[BER_CLASS]) == ASN_UNIVERSAL
1172 && SvIV (AvARRAY (av)[BER_TAG ]) == ASN_OBJECT_IDENTIFIER
1173 && !SvIV (AvARRAY (av)[BER_FLAGS])
1174 && (!SvOK (oid) || sv_eq (AvARRAY (av)[BER_DATA], oid))
1175 ? newSVsv (AvARRAY (av)[BER_DATA]) : &PL_sv_undef);
1176 }
1177
1178 #############################################################################
1179
1180 void
1181 ber_encode (SV *tuple, SV *profile = &PL_sv_undef)
1182 PPCODE:
1183 {
1184 cur_profile = SvPROFILE (profile);
1185 buf_sv = sv_2mortal (NEWSV (0, 256));
1186 SvPOK_only (buf_sv);
1187 set_buf (buf_sv);
1188
1189 encode_ber (tuple);
1190
1191 SvCUR_set (buf_sv, cur - buf);
1192 XPUSHs (buf_sv);
1193 }
1194
1195 SV *
1196 ber_int (SV *sv)
1197 CODE:
1198 {
1199 AV *av = newAV ();
1200 av_fill (av, BER_ARRAYSIZE - 1);
1201 AvARRAY (av)[BER_CLASS] = newSVcacheint (ASN_UNIVERSAL);
1202 AvARRAY (av)[BER_TAG ] = newSVcacheint (ASN_INTEGER);
1203 AvARRAY (av)[BER_FLAGS] = newSVcacheint (0);
1204 AvARRAY (av)[BER_DATA ] = newSVsv (sv);
1205 RETVAL = newRV_noinc ((SV *)av);
1206 }
1207 OUTPUT: RETVAL
1208
1209 # TODO: not arrayref, but elements?
1210 SV *
1211 ber_seq (SV *arrayref)
1212 CODE:
1213 {
1214 AV *av = newAV ();
1215 av_fill (av, BER_ARRAYSIZE - 1);
1216 AvARRAY (av)[BER_CLASS] = newSVcacheint (ASN_UNIVERSAL);
1217 AvARRAY (av)[BER_TAG ] = newSVcacheint (ASN_SEQUENCE);
1218 AvARRAY (av)[BER_FLAGS] = newSVcacheint (1);
1219 AvARRAY (av)[BER_DATA ] = newSVsv (arrayref);
1220 RETVAL = newRV_noinc ((SV *)av);
1221 }
1222 OUTPUT: RETVAL
1223
1224 MODULE = Convert::BER::XS PACKAGE = Convert::BER::XS::Profile
1225
1226 SV *
1227 new (SV *klass)
1228 CODE:
1229 RETVAL = profile_new ();
1230 OUTPUT: RETVAL
1231
1232 void
1233 set (SV *profile, int klass, int tag, int type)
1234 CODE:
1235 profile_set (SvPROFILE (profile), klass, tag, type);
1236
1237 IV
1238 get (SV *profile, int klass, int tag)
1239 CODE:
1240 RETVAL = profile_lookup (SvPROFILE (profile), klass, tag);
1241 OUTPUT: RETVAL
1242
1243 void
1244 _set_default (SV *profile)
1245 CODE:
1246 default_profile = SvPROFILE (profile);
1247
1248