File Coverage

XS.xs
Criterion Covered Total %
statement 434 477 90.9
branch 247 394 62.6
condition n/a
subroutine n/a
pod n/a
total 681 871 78.1


line stmt bran cond sub pod time code
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 2937           static SV *newSVcacheint (int val)
124             {
125 2937 50         if (expect_false (val < 0 || val >= sizeof (sviv_cache)))
    50          
    50          
126 0           return newSViv (val);
127              
128 2937 100         if (expect_false (!sviv_cache [val]))
129             {
130 51           sviv_cache [val] = newSVuv (val);
131 51           SvREADONLY_on (sviv_cache [val]);
132             }
133              
134 2937           return SvREFCNT_inc_NN (sviv_cache [val]);
135             }
136              
137             /////////////////////////////////////////////////////////////////////////////
138              
139             static HV *profile_stash;
140              
141             static profile_type *
142 1532           SvPROFILE (SV *profile)
143             {
144 1532 100         if (!SvOK (profile))
    50          
    50          
145 1132           return default_profile;
146              
147 400 50         if (!SvROK (profile))
148 0           croak ("Convert::BER::XS::Profile expected");
149              
150 400           profile = SvRV (profile);
151              
152 400 50         if (SvSTASH (profile) != profile_stash)
153 0           croak ("Convert::BER::XS::Profile expected");
154              
155 400           return (void *)profile;
156             }
157              
158             static int
159 1744           profile_lookup (profile_type *profile, int klass, int tag)
160             {
161 1744           SV *sv = (SV *)profile;
162 1744           U32 idx = (tag << 2) + klass;
163              
164 1744 50         if (expect_false (idx >= SvCUR (sv)))
165 0           return BER_TYPE_BYTES;
166              
167 1744           return SvPVX (sv)[idx];
168             }
169              
170             static void
171 608           profile_set (profile_type *profile, int klass, int tag, int type)
172             {
173 608           SV *sv = (SV *)profile;
174 608           U32 idx = (tag << 2) + klass;
175 608           STRLEN oldlen = SvCUR (sv);
176 608           STRLEN newlen = idx + 2;
177              
178 608 100         if (idx >= oldlen)
179             {
180 172           sv_grow (sv, newlen);
181 172           memset (SvPVX (sv) + oldlen, BER_TYPE_BYTES, newlen - oldlen);
182 172           SvCUR_set (sv, newlen);
183             }
184              
185 608           SvPVX (sv)[idx] = type;
186 608           }
187              
188             static SV *
189 26           profile_new (void)
190             {
191 26           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 286 100         for (celem = default_map + sizeof (default_map) / sizeof (default_map [0]); celem-- > default_map; )
211 260           profile_set ((profile_type *)sv, celem->klass, celem->tag, celem->type);
212              
213 26           return sv_bless (newRV_noinc (sv), profile_stash);
214             }
215              
216             /////////////////////////////////////////////////////////////////////////////
217             // decoder
218              
219             static void
220 619           error (const char *errmsg)
221             {
222 619           croak ("%s at offset 0x%04x", errmsg, cur - buf);
223             }
224              
225             static void
226 452           want (UV count)
227             {
228 452 100         if (expect_false ((uintptr_t)(end - cur) < count))
229 1           error ("unexpected end of message buffer");
230 451           }
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 10593           get_u8 (void)
238             {
239 10593 100         if (cur == end)
240 1           error ("unexpected end of message buffer");
241              
242 10592           return *cur++;
243             }
244              
245             // get n octets
246             static U8 *
247 367           get_n (UV count)
248             {
249 367           want (count);
250 366           U8 *res = cur;
251 366           cur += count;
252 366           return res;
253             }
254              
255             // get ber-encoded integer (i.e. pack "w")
256             static UV
257 1301           get_w (void)
258             {
259 1301           UV res = 0;
260 1301           U8 c = get_u8 ();
261              
262 1301 100         if (expect_false (c == 0x80))
263 1           error ("illegal BER padding (X.690 8.1.2.4.2, 8.19.2)");
264              
265             for (;;)
266             {
267 7435 100         if (expect_false (res >> UVSIZE * 8 - 7))
268 545           error ("BER variable length integer overflow");
269              
270 6890           res = (res << 7) | (c & 0x7f);
271              
272 6890 100         if (expect_true (!(c & 0x80)))
273 754           return res;
274              
275 6136           c = get_u8 ();
276 6135           }
277             }
278              
279             static UV
280 1548           get_length (void)
281             {
282 1548           UV res = get_u8 ();
283              
284 1548 100         if (expect_false (res & 0x80))
285             {
286 86           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 86 50         if (expect_false (cnt == 0))
293 0           error ("indefinite BER value lengths not supported");
294              
295 86 100         if (expect_false (cnt > UVSIZE))
296 1           error ("BER value length too long (must fit into UV) or BER reserved value in length (X.690 8.1.3.5)");
297              
298 85           want (cnt);
299              
300 85           res = 0;
301             do
302 151           res = (res << 8) | *cur++;
303 151 100         while (--cnt);
304             }
305              
306 1547           return res;
307             }
308              
309             static SV *
310 123           decode_int (UV len)
311             {
312 123 50         if (!len)
313 0           error ("invalid BER_TYPE_INT length zero (X.690 8.3.1)");
314              
315 123           U8 *data = get_n (len);
316              
317 123 100         if (expect_false (len > 1))
318             {
319 60           U16 mask = (data [0] << 8) | data [1] & 0xff80;
320              
321 60 100         if (expect_false (mask == 0xff80 || mask == 0x0000))
    100          
    100          
322 3           error ("illegal padding in BER_TYPE_INT (X.690 8.3.2)");
323             }
324              
325 120           int negative = data [0] & 0x80;
326              
327 120 100         UV val = negative ? -1 : 0; // copy signbit to all bits
328              
329 120 100         if (len > UVSIZE + (!negative && !*data))
    100          
    100          
330 5           error ("BER_TYPE_INT overflow");
331              
332             do
333 330           val = (val << 8) | *data++;
334 330 100         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 115 100         return negative ? newSViv ((IV)val) : newSVuv (val);
339             }
340              
341             static SV *
342 241           decode_data (UV len)
343             {
344 241           return newSVpvn ((char *)get_n (len), len);
345             }
346              
347             // helper for decode_object_identifier
348             static char *
349 1105           write_uv (char *buf, UV u)
350             {
351             // the one-digit case is absolutely predominant, so this pays off (hopefully)
352 1105 100         if (expect_true (u < 10))
353 714           *buf++ = u + '0';
354             else
355             {
356             // this *could* be done much faster using branchless fixed-point arithmetics
357 391           char *beg = buf;
358              
359             do
360             {
361 3075           *buf++ = u % 10 + '0';
362 3075           u /= 10;
363             }
364 3075 100         while (u);
365              
366             // reverse digits
367 391           char *ptr = buf;
368 1840 100         while (--ptr > beg)
369             {
370 1449           char c = *ptr;
371 1449           *ptr = *beg;
372 1449           *beg = c;
373 1449           ++beg;
374             }
375             }
376              
377 1105           return buf;
378             }
379              
380             static SV *
381 903           decode_oid (UV len, int relative)
382             {
383 903 100         if (len <= 0)
384             {
385 1           error ("BER_TYPE_OID length must not be zero");
386 0           return &PL_sv_undef;
387             }
388              
389 902           U8 *end = cur + len;
390 902           UV w = get_w ();
391              
392             static char oid[MAX_OID_STRLEN]; // static, because too large for stack
393 357           char *app = oid;
394              
395 357 100         if (relative)
396 3           app = write_uv (app, w);
397             else
398             {
399             UV w1, w2;
400              
401 354 100         if (w < 2 * 40)
402 74           (w1 = w / 40), (w2 = w % 40);
403             else
404 280           (w1 = 2), (w2 = w - 2 * 40);
405              
406 354           app = write_uv (app, w1);
407 354           *app++ = '.';
408 354           app = write_uv (app, w2);
409             }
410              
411 751 100         while (cur < end)
412             {
413             // we assume an oid component is never > 64 digits
414 396 50         if (oid + sizeof (oid) - app < 64)
415 0           croak ("BER_TYPE_OID to long to decode");
416              
417 396           w = get_w ();
418 394           *app++ = '.';
419 394           app = write_uv (app, w);
420             }
421              
422 355           return newSVpvn (oid, app - oid);
423             }
424              
425             // TODO: this is unacceptably slow
426             static SV *
427 17           decode_ucs (UV len, int chrsize)
428             {
429 17 100         if (len & (chrsize - 1))
430 5           croak ("BER_TYPE_UCS has an invalid number of octets (%d)", len);
431              
432 12           SV *res = NEWSV (0, 0);
433              
434 30 100         while (len)
435             {
436 18           U8 b1 = get_u8 ();
437 18           U8 b2 = get_u8 ();
438 18           U32 chr = (b1 << 8) | b2;
439              
440 18 100         if (chrsize == 4)
441             {
442 6           U8 b3 = get_u8 ();
443 6           U8 b4 = get_u8 ();
444 6           chr = (chr << 16) | (b3 << 8) | b4;
445             }
446              
447             U8 uchr [UTF8_MAXBYTES];
448 18           int uclen = uvuni_to_utf8 (uchr, chr) - uchr;
449              
450 18           sv_catpvn (res, (const char *)uchr, uclen);
451 18           len -= chrsize;
452             }
453              
454 12           SvUTF8_on (res);
455              
456 12           return res;
457             }
458              
459             static SV *
460 1548           decode_ber (void)
461             {
462 1548           int identifier = get_u8 ();
463              
464             SV *res;
465              
466 1548           int constructed = identifier & ASN_CONSTRUCTED;
467 1548           int klass = (identifier & ASN_CLASS_MASK) >> ASN_CLASS_SHIFT;
468 1548           int tag = identifier & ASN_TAG_MASK;
469              
470 1548 100         if (tag == ASN_TAG_BER)
471 3           tag = get_w ();
472              
473 1548 100         if (constructed)
474             {
475 229           UV len = get_length ();
476 229           UV seqend = (cur - buf) + len;
477 229           AV *av = (AV *)sv_2mortal ((SV *)newAV ());
478              
479 737 100         while (cur < buf + seqend)
480 516           av_push (av, decode_ber ());
481              
482 221 50         if (expect_false (cur > buf + seqend))
483 0           croak ("CONSTRUCTED type %02x length overflow (0x%x 0x%x)\n", identifier, (int)(cur - buf), (int)seqend);
484              
485 221           res = newRV_inc ((SV *)av);
486             }
487             else
488             {
489 1319           UV len = get_length ();
490              
491 1318           switch (profile_lookup (cur_profile, klass, tag))
492             {
493             case BER_TYPE_NULL:
494 16 100         if (expect_false (len))
495 1           croak ("BER_TYPE_NULL value with non-zero length %d encountered (X.690 8.8.2)", len);
496              
497 15           res = &PL_sv_undef;
498 15           break;
499              
500             case BER_TYPE_BOOL:
501 14 100         if (expect_false (len != 1))
502 2           croak ("BER_TYPE_BOOLEAN value with invalid length %d encountered (X.690 8.2.1)", len);
503              
504 12           res = newSVcacheint (!!get_u8 ());
505 12           break;
506              
507             case BER_TYPE_OID:
508 900           res = decode_oid (len, 0);
509 352           break;
510              
511             case BER_TYPE_RELOID:
512 3           res = decode_oid (len, 1);
513 3           break;
514              
515             case BER_TYPE_INT:
516 123           res = decode_int (len);
517 115           break;
518              
519             case BER_TYPE_UTF8:
520 12           res = decode_data (len);
521 12           SvUTF8_on (res);
522 12           break;
523              
524             case BER_TYPE_BYTES:
525 229           res = decode_data (len);
526 228           break;
527              
528             case BER_TYPE_IPADDRESS:
529             {
530 4 100         if (len != 4)
531 1           croak ("BER_TYPE_IPADDRESS type with invalid length %d encountered (RFC 2578 7.1.5)", len);
532              
533 3           U8 *data = get_n (4);
534 3           res = newSVpvf ("%d.%d.%d.%d", data [0], data [1], data [2], data [3]);
535             }
536 3           break;
537              
538             case BER_TYPE_UCS2:
539 8           res = decode_ucs (len, 2);
540 6           break;
541              
542             case BER_TYPE_UCS4:
543 9           res = decode_ucs (len, 4);
544 6           break;
545              
546             case BER_TYPE_REAL:
547 0           error ("BER_TYPE_REAL not implemented");
548              
549             case BER_TYPE_CROAK:
550 0           croak ("class/tag %d/%d mapped to BER_TYPE_CROAK", klass, tag);
551              
552             default:
553 0           croak ("unconfigured/unsupported class/tag %d/%d", klass, tag);
554             }
555             }
556              
557 973           AV *av = newAV ();
558 973           av_fill (av, BER_ARRAYSIZE - 1);
559 973           AvARRAY (av)[BER_CLASS] = newSVcacheint (klass);
560 973           AvARRAY (av)[BER_TAG ] = newSVcacheint (tag);
561 973           AvARRAY (av)[BER_FLAGS] = newSVcacheint (constructed ? 1 : 0);
562 973           AvARRAY (av)[BER_DATA ] = res;
563              
564 973           return newRV_noinc ((SV *)av);
565             }
566              
567             /////////////////////////////////////////////////////////////////////////////
568             // encoder
569              
570             /* adds two STRLENs together, slow, and with paranoia */
571             static STRLEN
572 330           strlen_sum (STRLEN l1, STRLEN l2)
573             {
574 330           size_t sum = l1 + l2;
575              
576 330 50         if (sum < (size_t)l2 || sum != (size_t)(STRLEN)sum)
577 0           croak ("Convert::BER::XS: string size overflow");
578              
579 330           return sum;
580             }
581              
582             static void
583 144           set_buf (SV *sv)
584             {
585             STRLEN len;
586 144           buf_sv = sv;
587 144 50         buf = (U8 *)SvPVbyte (buf_sv, len);
588 144           cur = buf;
589 144           end = buf + len;
590 144           }
591              
592             /* similar to SvGROW, but somewhat safer and guarantees exponential realloc strategy */
593             static char *
594 165           my_sv_grow (SV *sv, size_t len1, size_t len2)
595             {
596 165           len1 = strlen_sum (len1, len2);
597 165           len1 = strlen_sum (len1, len1 >> 1);
598              
599 165 100         if (len1 > 4096 - 24)
600 1           len1 = (len1 | 4095) - 24;
601              
602 165 50         return SvGROW (sv, len1);
    100          
603             }
604              
605             static void
606 1340           need (STRLEN len)
607             {
608 1340 100         if (expect_false ((uintptr_t)(end - cur) < len))
609             {
610 165           STRLEN pos = cur - buf;
611 165           buf = (U8 *)my_sv_grow (buf_sv, pos, len);
612 165           cur = buf + pos;
613 165           end = buf + SvLEN (buf_sv) - 1;
614             }
615 1340           }
616              
617             static void
618 640           put_u8 (int val)
619             {
620 640           need (1);
621 640           *cur++ = val;
622 640           }
623              
624             static void
625 470           put_w_nocheck (UV val)
626             {
627             #if UVSIZE > 4
628 470           *cur = (val >> 7 * 9) | 0x80; cur += val >= ((UV)1 << (7 * 9));
629 470           *cur = (val >> 7 * 8) | 0x80; cur += val >= ((UV)1 << (7 * 8));
630 470           *cur = (val >> 7 * 7) | 0x80; cur += val >= ((UV)1 << (7 * 7));
631 470           *cur = (val >> 7 * 6) | 0x80; cur += val >= ((UV)1 << (7 * 6));
632 470           *cur = (val >> 7 * 5) | 0x80; cur += val >= ((UV)1 << (7 * 5));
633             #endif
634 470           *cur = (val >> 7 * 4) | 0x80; cur += val >= ((UV)1 << (7 * 4));
635 470           *cur = (val >> 7 * 3) | 0x80; cur += val >= ((UV)1 << (7 * 3));
636 470           *cur = (val >> 7 * 2) | 0x80; cur += val >= ((UV)1 << (7 * 2));
637 470           *cur = (val >> 7 * 1) | 0x80; cur += val >= ((UV)1 << (7 * 1));
638 470           *cur = val & 0x7f; cur += 1;
639 470           }
640              
641             static void
642 0           put_w (UV val)
643             {
644 0           need (5); // we only handle up to 5 bytes
645              
646 0           put_w_nocheck (val);
647 0           }
648              
649             static U8 *
650 548           put_length_at (UV val, U8 *cur)
651             {
652 548 100         if (val <= 0x7fU)
653 471           *cur++ = val;
654             else
655             {
656 77           U8 *lenb = cur++;
657              
658             #if UVSIZE > 4
659 77           *cur = val >> 56; cur += val >= ((UV)1 << (8 * 7));
660 77           *cur = val >> 48; cur += val >= ((UV)1 << (8 * 6));
661 77           *cur = val >> 40; cur += val >= ((UV)1 << (8 * 5));
662 77           *cur = val >> 32; cur += val >= ((UV)1 << (8 * 4));
663             #endif
664 77           *cur = val >> 24; cur += val >= ((UV)1 << (8 * 3));
665 77           *cur = val >> 16; cur += val >= ((UV)1 << (8 * 2));
666 77           *cur = val >> 8; cur += val >= ((UV)1 << (8 * 1));
667 77           *cur = val ; cur += 1;
668              
669 77           *lenb = 0x80 + cur - lenb - 1;
670             }
671              
672 548           return cur;
673             }
674              
675             static void
676 246           put_length (UV val)
677             {
678 246           need (9 + val);
679 246           cur = put_length_at (val, cur);
680 246           }
681              
682             // return how many bytes the encoded length requires
683 302           static int length_length (UV val)
684             {
685             // use hashing with a DeBruin sequence, anyone?
686 302           return expect_true (val <= 0x7fU)
687             ? 1
688 362 100         : 2
689 60 100         + (val > 0x000000000000ffU)
690 60           + (val > 0x0000000000ffffU)
691 60           + (val > 0x00000000ffffffU)
692             #if UVSIZE > 4
693 60           + (val > 0x000000ffffffffU)
694 60           + (val > 0x0000ffffffffffU)
695 60           + (val > 0x00ffffffffffffU)
696 60           + (val > 0xffffffffffffffU)
697             #endif
698             ;
699             }
700              
701             static void
702 217           encode_data (const char *ptr, STRLEN len)
703             {
704 217           put_length (len);
705 217           memcpy (cur, ptr, len);
706 217           cur += len;
707 217           }
708              
709             static void
710 0           encode_uv (UV uv)
711             {
712 0           }
713              
714             static void
715 92           encode_int (SV *sv)
716             {
717 92           need (8 + 1 + 1); // 64 bit + length + extra 0
718              
719 92 50         if (expect_false (!SvIOK (sv)))
720 0           sv_2iv_flags (sv, 0);
721              
722 92           U8 *lenb = cur++;
723              
724 92 100         if (SvIOK_notUV (sv))
725             {
726 88           IV iv = SvIVX (sv);
727              
728 88 100         if (expect_false (iv < 0))
729             {
730             // get two's complement bit pattern - works even on hypothetical non-2c machines
731 8           UV uv = iv;
732              
733             #if UVSIZE > 4
734 8           *cur = uv >> 56; cur += !!(~uv & 0xff80000000000000U);
735 8           *cur = uv >> 48; cur += !!(~uv & 0xffff800000000000U);
736 8           *cur = uv >> 40; cur += !!(~uv & 0xffffff8000000000U);
737 8           *cur = uv >> 32; cur += !!(~uv & 0xffffffff80000000U);
738             #endif
739 8           *cur = uv >> 24; cur += !!(~uv & 0xffffffffff800000U);
740 8           *cur = uv >> 16; cur += !!(~uv & 0xffffffffffff8000U);
741 8           *cur = uv >> 8; cur += !!(~uv & 0xffffffffffffff80U);
742 8           *cur = uv ; cur += 1;
743              
744 8           *lenb = cur - lenb - 1;
745              
746 8           return;
747             }
748             }
749              
750 84 100         UV uv = SvUV (sv);
751              
752             // prepend an extra 0 if the high bit is 1
753 84           *cur = 0; cur += !!(uv & ((UV)1 << (UVSIZE * 8 - 1)));
754              
755             #if UVSIZE > 4
756 84           *cur = uv >> 56; cur += !!(uv & 0xff80000000000000U);
757 84           *cur = uv >> 48; cur += !!(uv & 0xffff800000000000U);
758 84           *cur = uv >> 40; cur += !!(uv & 0xffffff8000000000U);
759 84           *cur = uv >> 32; cur += !!(uv & 0xffffffff80000000U);
760             #endif
761 84           *cur = uv >> 24; cur += !!(uv & 0xffffffffff800000U);
762 84           *cur = uv >> 16; cur += !!(uv & 0xffffffffffff8000U);
763 84           *cur = uv >> 8; cur += !!(uv & 0xffffffffffffff80U);
764 84           *cur = uv ; cur += 1;
765              
766 84           *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 302           len_fixup_mark (void)
775             {
776 302           return cur++ - buf;
777             }
778              
779             // patch up the length
780             static void
781 302           len_fixup (STRLEN mark)
782             {
783 302           STRLEN reallen = (cur - buf) - mark - 1;
784 302           int lenlen = length_length (reallen);
785              
786 302 100         if (expect_false (lenlen > 1))
787             {
788             // bad luck, we have to shift the bytes to make room for the length
789 60           need (5);
790 60           memmove (buf + mark + lenlen, buf + mark + 1, reallen);
791 60           cur += lenlen - 1;
792             }
793            
794 302           put_length_at (reallen, buf + mark);
795 302           }
796              
797             static char *
798 556           read_uv (char *str, UV *uv)
799             {
800 556           UV r = 0;
801              
802 1424 100         while (*str >= '0')
803 868           r = r * 10 + *str++ - '0';
804              
805 556           *uv = r;
806              
807 556           str += !!*str; // advance over any non-zero byte
808              
809 556           return str;
810             }
811              
812             static void
813 88           encode_oid (SV *oid, int relative)
814             {
815             STRLEN len;
816 88 50         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 88           need (len + 1);
820 88           STRLEN mark = len_fixup_mark ();
821              
822             UV w1, w2;
823              
824 88 100         if (!relative)
825             {
826 86           ptr = read_uv (ptr, &w1);
827 86           ptr = read_uv (ptr, &w2);
828              
829 86           put_w_nocheck (w1 * 40 + w2);
830             }
831              
832 472 100         while (*ptr)
833             {
834 384           ptr = read_uv (ptr, &w1);
835 384           put_w_nocheck (w1);
836             }
837              
838 88           len_fixup (mark);
839 88           }
840              
841             // check whether an SV is a BER tuple and returns its AV *
842             static AV *
843 657           ber_tuple (SV *tuple)
844             {
845             SV *rv;
846              
847 657 50         if (expect_false (!SvROK (tuple) || SvTYPE ((rv = SvRV (tuple))) != SVt_PVAV))
    50          
    50          
848 0           croak ("BER tuple must be array-reference");
849              
850 657 50         if (expect_false (SvRMAGICAL (rv)))
851 0           croak ("BER tuple must not be tied");
852              
853 657 50         if (expect_false (AvFILL ((AV *)rv) != BER_ARRAYSIZE - 1))
    50          
854 0 0         croak ("BER tuple must contain exactly %d elements, not %d", BER_ARRAYSIZE, AvFILL ((AV *)rv) + 1);
855              
856 657           return (AV *)rv;
857             }
858              
859             static void
860 8           encode_ucs (SV *data, int chrsize)
861             {
862 8           STRLEN uchars = sv_len_utf8 (data);
863             STRLEN len;;
864 8 50         char *ptr = SvPVutf8 (data, len);
865              
866 8           put_length (uchars * chrsize);
867              
868 20 100         while (uchars--)
869             {
870             STRLEN uclen;
871 12 50         UV uchr = utf8_to_uvchr_buf ((U8 *)ptr, (U8 *)ptr + len, &uclen);
872              
873 12           ptr += uclen;
874 12           len -= uclen;
875              
876 12 100         if (chrsize == 4)
877             {
878 4           *cur++ = uchr >> 24;
879 4           *cur++ = uchr >> 16;
880             }
881              
882 12           *cur++ = uchr >> 8;
883 12           *cur++ = uchr;
884             }
885 8           }
886             static void
887 640           encode_ber (SV *tuple)
888             {
889 640           AV *av = ber_tuple (tuple);
890              
891 640 50         int klass = SvIV (AvARRAY (av)[BER_CLASS]);
892 640 50         int tag = SvIV (AvARRAY (av)[BER_TAG]);
893 640 50         int constructed = SvIV (AvARRAY (av)[BER_FLAGS]) & 1 ? ASN_CONSTRUCTED : 0;
    100          
894 640           SV *data = AvARRAY (av)[BER_DATA];
895              
896 640           int identifier = (klass << ASN_CLASS_SHIFT) | constructed;
897              
898 640 50         if (expect_false (tag >= ASN_TAG_BER))
899             {
900 0           put_u8 (identifier | ASN_TAG_BER);
901 0           put_w (tag);
902             }
903             else
904 640           put_u8 (identifier | tag);
905              
906 640 100         if (constructed)
907             {
908             // we optimistically assume that only one length byte is needed
909             // and adjust later
910 214           need (1);
911 214           STRLEN mark = len_fixup_mark ();
912              
913 214 50         if (expect_false (!SvROK (data) || SvTYPE (SvRV (data)) != SVt_PVAV))
    50          
    50          
914 0           croak ("BER CONSTRUCTED data must be array-reference");
915              
916 214           AV *av = (AV *)SvRV (data);
917 214 50         int fill = AvFILL (av);
918              
919 214 50         if (expect_false (SvRMAGICAL (av)))
920 0           croak ("BER CONSTRUCTED data must not be tied");
921              
922             int i;
923 710 100         for (i = 0; i <= fill; ++i)
924 496           encode_ber (AvARRAY (av)[i]);
925              
926 214           len_fixup (mark);
927             }
928             else
929 426           switch (profile_lookup (cur_profile, klass, tag))
930             {
931             case BER_TYPE_NULL:
932 13           put_length (0);
933 13           break;
934              
935             case BER_TYPE_BOOL:
936 8           put_length (1);
937 8 50         *cur++ = SvTRUE (data) ? 0xff : 0x00; // 0xff = DER/CER
    50          
    0          
    50          
    0          
    0          
    50          
    50          
    50          
    50          
    100          
    100          
    0          
    0          
    0          
    0          
    0          
    0          
    0          
938 8           break;
939              
940             case BER_TYPE_OID:
941 86           encode_oid (data, 0);
942 86           break;
943              
944             case BER_TYPE_RELOID:
945 2           encode_oid (data, 1);
946 2           break;
947              
948             case BER_TYPE_INT:
949 92           encode_int (data);
950 92           break;
951              
952             case BER_TYPE_BYTES:
953             {
954             STRLEN len;
955 204 50         const char *ptr = SvPVbyte (data, len);
956 204           encode_data (ptr, len);
957             }
958 204           break;
959              
960             case BER_TYPE_UTF8:
961             {
962             STRLEN len;
963 11 50         const char *ptr = SvPVutf8 (data, len);
964 11           encode_data (ptr, len);
965             }
966 11           break;
967              
968             case BER_TYPE_IPADDRESS:
969             {
970             U8 ip[4];
971 2 50         sscanf (SvPV_nolen (data), "%hhu.%hhu.%hhu.%hhu", ip + 0, ip + 1, ip + 2, ip + 3);
972 2           encode_data ((const char *)ip, sizeof (ip));
973             }
974 2           break;
975              
976             case BER_TYPE_UCS2:
977 4           encode_ucs (data, 2);
978 4           break;
979              
980             case BER_TYPE_UCS4:
981 4           encode_ucs (data, 4);
982 4           break;
983              
984             case BER_TYPE_REAL:
985 0           croak ("BER_TYPE_REAL not implemented");
986              
987             case BER_TYPE_CROAK:
988 0           croak ("class/tag %d/%d mapped to BER_TYPE_CROAK", klass, tag);
989              
990             default:
991 0           croak ("unconfigured/unsupported class/tag %d/%d", klass, tag);
992             }
993              
994 640           }
995              
996             /////////////////////////////////////////////////////////////////////////////
997              
998             MODULE = Convert::BER::XS PACKAGE = Convert::BER::XS
999              
1000             PROTOTYPES: ENABLE
1001              
1002             BOOT:
1003             {
1004 7           HV *stash = gv_stashpv ("Convert::BER::XS", 1);
1005              
1006 7           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 420 100         for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ > const_iv; civ--)
1079 413           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 1032           cur_profile = SvPROFILE (profile);
1089             STRLEN len;
1090 1032 50         buf = (U8 *)SvPVbyte (ber, len);
1091 1032           cur = buf;
1092 1032           end = buf + len;
1093              
1094 1032           SV *tuple = decode_ber ();
1095              
1096 465 50         EXTEND (SP, 2);
1097 465           PUSHs (sv_2mortal (tuple));
1098              
1099 465 100         if (ix)
1100 61           PUSHs (sv_2mortal (newSViv (cur - buf)));
1101 404 100         else if (cur != end)
1102 61           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 73 50         if (!SvOK (tuple))
    0          
    0          
1110 0           XSRETURN_NO;
1111              
1112 73 50         if (!SvROK (tuple) || SvTYPE (SvRV (tuple)) != SVt_PVAV)
    50          
1113 0           croak ("ber_is: tuple must be BER tuple (array-ref)");
1114              
1115 73           AV *av = (AV *)SvRV (tuple);
1116              
1117 73 50         XPUSHs (
    100          
    50          
    50          
    50          
    50          
    100          
    100          
    50          
    50          
    50          
    50          
    100          
    100          
    50          
    50          
    50          
    50          
    100          
    100          
    50          
    50          
    100          
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 3 50         if (!SvOK (tuple))
    0          
    0          
1130 0           XSRETURN_UNDEF;
1131              
1132 3           AV *av = ber_tuple (tuple);
1133              
1134 3 50         XPUSHs (
    50          
    100          
    0          
    50          
    50          
    0          
    50          
    100          
    0          
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 10 50         if (!SvOK (tuple))
    0          
    0          
1146 0           XSRETURN_NO;
1147              
1148 10           AV *av = ber_tuple (tuple);
1149              
1150 10 50         UV data = SvUV (AvARRAY (av)[BER_DATA]);
1151              
1152 10 50         XPUSHs (
    50          
    100          
    0          
    50          
    50          
    0          
    50          
    100          
    0          
    100          
    50          
    50          
    50          
    50          
    100          
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 4 50         if (!SvOK (tuple))
    0          
    0          
1166 0           XSRETURN_NO;
1167              
1168 4           AV *av = ber_tuple (tuple);
1169              
1170 4 50         XPUSHs (
    50          
    100          
    0          
    50          
    100          
    0          
    50          
    50          
    0          
    100          
    50          
    50          
    50          
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 144           cur_profile = SvPROFILE (profile);
1185 144           buf_sv = sv_2mortal (NEWSV (0, 256));
1186 144           SvPOK_only (buf_sv);
1187 144           set_buf (buf_sv);
1188              
1189 144           encode_ber (tuple);
1190              
1191 144           SvCUR_set (buf_sv, cur - buf);
1192 144 50         XPUSHs (buf_sv);
1193             }
1194              
1195             SV *
1196             ber_int (SV *sv)
1197             CODE:
1198             {
1199 2           AV *av = newAV ();
1200 2           av_fill (av, BER_ARRAYSIZE - 1);
1201 2           AvARRAY (av)[BER_CLASS] = newSVcacheint (ASN_UNIVERSAL);
1202 2           AvARRAY (av)[BER_TAG ] = newSVcacheint (ASN_INTEGER);
1203 2           AvARRAY (av)[BER_FLAGS] = newSVcacheint (0);
1204 2           AvARRAY (av)[BER_DATA ] = newSVsv (sv);
1205 2           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 0           AV *av = newAV ();
1215 0           av_fill (av, BER_ARRAYSIZE - 1);
1216 0           AvARRAY (av)[BER_CLASS] = newSVcacheint (ASN_UNIVERSAL);
1217 0           AvARRAY (av)[BER_TAG ] = newSVcacheint (ASN_SEQUENCE);
1218 0           AvARRAY (av)[BER_FLAGS] = newSVcacheint (1);
1219 0           AvARRAY (av)[BER_DATA ] = newSVsv (arrayref);
1220 0           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 26           RETVAL = profile_new ();
1230             OUTPUT: RETVAL
1231              
1232             void
1233             set (SV *profile, int klass, int tag, int type)
1234             CODE:
1235 348           profile_set (SvPROFILE (profile), klass, tag, type);
1236              
1237             IV
1238             get (SV *profile, int klass, int tag)
1239             CODE:
1240 0           RETVAL = profile_lookup (SvPROFILE (profile), klass, tag);
1241             OUTPUT: RETVAL
1242              
1243             void
1244             _set_default (SV *profile)
1245             CODE:
1246 8           default_profile = SvPROFILE (profile);
1247              
1248