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

# User Rev Content
1 root 1.1 #include "EXTERN.h"
2     #include "perl.h"
3     #include "XSUB.h"
4    
5 root 1.12 // C99 required!
6     // this is not just for comments, but also for
7     // integer constant semantics,
8     // sscanf format modifiers and more.
9 root 1.1
10     enum {
11     // ASN_TAG
12     ASN_BOOLEAN = 0x01,
13 root 1.15 ASN_INTEGER = 0x02,
14 root 1.1 ASN_BIT_STRING = 0x03,
15     ASN_OCTET_STRING = 0x04,
16     ASN_NULL = 0x05,
17     ASN_OBJECT_IDENTIFIER = 0x06,
18 root 1.8 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 root 1.1 ASN_SEQUENCE = 0x10,
27 root 1.8 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 root 1.1
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 root 1.5 ASN_APPLICATION = 0x01,
54     ASN_CONTEXT = 0x02,
55     ASN_PRIVATE = 0x03,
56 root 1.1
57     ASN_CLASS_MASK = 0xc0,
58     ASN_CLASS_SHIFT = 6,
59    
60 root 1.2 // ASN_APPLICATION SNMP
61 root 1.3 SNMP_IPADDRESS = 0x00,
62     SNMP_COUNTER32 = 0x01,
63 root 1.21 SNMP_GAUGE32 = 0x02,
64 root 1.3 SNMP_UNSIGNED32 = 0x02,
65     SNMP_TIMETICKS = 0x03,
66     SNMP_OPAQUE = 0x04,
67     SNMP_COUNTER64 = 0x06,
68 root 1.1 };
69    
70 root 1.30 // tlow-level types this module can ecode the above (and more) into
71 root 1.1 enum {
72 root 1.5 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 root 1.6 BER_TYPE_IPADDRESS,
83 root 1.5 BER_TYPE_CROAK,
84     };
85    
86 root 1.30 // tuple array indices
87 root 1.5 enum {
88 root 1.16 BER_CLASS = 0,
89     BER_TAG = 1,
90     BER_FLAGS = 2,
91     BER_DATA = 3,
92 root 1.1 BER_ARRAYSIZE
93     };
94    
95     #define MAX_OID_STRLEN 4096
96    
97 root 1.5 typedef void profile_type;
98    
99     static profile_type *cur_profile, *default_profile;
100 root 1.3 static SV *buf_sv; // encoding buffer
101     static U8 *buf, *cur, *end; // buffer start, current, end
102    
103 root 1.9 #if PERL_VERSION < 18
104     # define utf8_to_uvchr_buf(s,e,l) utf8_to_uvchr (s, l)
105     #endif
106    
107 root 1.3 #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 root 1.1
118 root 1.5 /////////////////////////////////////////////////////////////////////////////
119    
120     static SV *sviv_cache[32];
121    
122 root 1.1 // for "small" integers, return a readonly sv, otherwise create a new one
123     static SV *newSVcacheint (int val)
124     {
125 root 1.5 if (expect_false (val < 0 || val >= sizeof (sviv_cache)))
126 root 1.1 return newSViv (val);
127    
128 root 1.5 if (expect_false (!sviv_cache [val]))
129 root 1.1 {
130 root 1.5 sviv_cache [val] = newSVuv (val);
131     SvREADONLY_on (sviv_cache [val]);
132 root 1.1 }
133    
134 root 1.5 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 root 1.6 return default_profile;
146 root 1.5
147     if (!SvROK (profile))
148 root 1.26 croak ("Convert::BER::XS::Profile expected");
149 root 1.5
150     profile = SvRV (profile);
151    
152     if (SvSTASH (profile) != profile_stash)
153 root 1.26 croak ("Convert::BER::XS::Profile expected");
154 root 1.5
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 root 1.10 static void
171 root 1.5 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 root 1.14 profile_new (void)
190 root 1.5 {
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 root 1.15 { ASN_UNIVERSAL, ASN_INTEGER , BER_TYPE_INT },
200 root 1.5 { 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 root 1.13 { ASN_UNIVERSAL, ASN_ENUMERATED , BER_TYPE_INT },
205 root 1.5 { 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 root 1.11 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 root 1.5
213     return sv_bless (newRV_noinc (sv), profile_stash);
214 root 1.1 }
215    
216     /////////////////////////////////////////////////////////////////////////////
217 root 1.3 // decoder
218 root 1.1
219     static void
220     error (const char *errmsg)
221     {
222     croak ("%s at offset 0x%04x", errmsg, cur - buf);
223     }
224    
225 root 1.3 static void
226     want (UV count)
227 root 1.1 {
228 root 1.3 if (expect_false ((uintptr_t)(end - cur) < count))
229     error ("unexpected end of message buffer");
230 root 1.1 }
231    
232 root 1.2 // get_* functions fetch something from the buffer
233     // decode_* functions use get_* fun ctions to decode ber values
234    
235 root 1.25 // 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 root 1.3 // get n octets
246 root 1.1 static U8 *
247 root 1.3 get_n (UV count)
248 root 1.1 {
249 root 1.3 want (count);
250 root 1.1 U8 *res = cur;
251     cur += count;
252     return res;
253     }
254    
255 root 1.3 // get ber-encoded integer (i.e. pack "w")
256 root 1.15 static UV
257 root 1.3 get_w (void)
258 root 1.1 {
259 root 1.15 UV res = 0;
260 root 1.20 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 root 1.1
265     for (;;)
266     {
267 root 1.23 if (expect_false (res >> UVSIZE * 8 - 7))
268 root 1.25 error ("BER variable length integer overflow");
269 root 1.23
270 root 1.1 res = (res << 7) | (c & 0x7f);
271    
272 root 1.29 if (expect_true (!(c & 0x80)))
273 root 1.1 return res;
274 root 1.20
275     c = get_u8 ();
276 root 1.1 }
277     }
278    
279 root 1.15 static UV
280 root 1.2 get_length (void)
281 root 1.1 {
282 root 1.15 UV res = get_u8 ();
283 root 1.1
284 root 1.29 if (expect_false (res & 0x80))
285 root 1.1 {
286 root 1.29 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 root 1.1
292 root 1.29 if (expect_false (cnt == 0))
293     error ("indefinite BER value lengths not supported");
294 root 1.1
295 root 1.29 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 root 1.18
298 root 1.29 want (cnt);
299 root 1.1
300 root 1.29 res = 0;
301     do
302     res = (res << 8) | *cur++;
303     while (--cnt);
304 root 1.1 }
305    
306     return res;
307     }
308    
309     static SV *
310 root 1.30 decode_int (UV len)
311 root 1.1 {
312 root 1.15 if (!len)
313 root 1.25 error ("invalid BER_TYPE_INT length zero (X.690 8.3.1)");
314 root 1.20
315     U8 *data = get_n (len);
316    
317     if (expect_false (len > 1))
318 root 1.1 {
319 root 1.20 U16 mask = (data [0] << 8) | data [1] & 0xff80;
320    
321     if (expect_false (mask == 0xff80 || mask == 0x0000))
322 root 1.25 error ("illegal padding in BER_TYPE_INT (X.690 8.3.2)");
323 root 1.1 }
324    
325 root 1.5 int negative = data [0] & 0x80;
326 root 1.1
327 root 1.5 UV val = negative ? -1 : 0; // copy signbit to all bits
328 root 1.1
329 root 1.23 if (len > UVSIZE + (!negative && !*data))
330 root 1.25 error ("BER_TYPE_INT overflow");
331 root 1.23
332 root 1.5 do
333     val = (val << 8) | *data++;
334     while (--len);
335 root 1.1
336 root 1.6 // the cast to IV relies on implementation-defined behaviour (two's complement cast)
337 root 1.5 // but that's ok, as perl relies on it as well.
338     return negative ? newSViv ((IV)val) : newSVuv (val);
339 root 1.1 }
340    
341     static SV *
342 root 1.30 decode_data (UV len)
343 root 1.1 {
344 root 1.15 return newSVpvn ((char *)get_n (len), len);
345 root 1.1 }
346    
347 root 1.15 // helper for decode_object_identifier
348 root 1.1 static char *
349 root 1.15 write_uv (char *buf, UV u)
350 root 1.1 {
351     // the one-digit case is absolutely predominant, so this pays off (hopefully)
352 root 1.5 if (expect_true (u < 10))
353 root 1.1 *buf++ = u + '0';
354     else
355     {
356 root 1.15 // this *could* be done much faster using branchless fixed-point arithmetics
357 root 1.1 char *beg = buf;
358    
359     do
360     {
361     *buf++ = u % 10 + '0';
362     u /= 10;
363     }
364     while (u);
365    
366     // reverse digits
367 root 1.11 char *ptr = buf;
368 root 1.13 while (--ptr > beg)
369 root 1.1 {
370     char c = *ptr;
371     *ptr = *beg;
372     *beg = c;
373 root 1.11 ++beg;
374 root 1.1 }
375     }
376    
377     return buf;
378     }
379    
380     static SV *
381 root 1.30 decode_oid (UV len, int relative)
382 root 1.1 {
383 root 1.5 if (len <= 0)
384 root 1.1 {
385 root 1.25 error ("BER_TYPE_OID length must not be zero");
386 root 1.1 return &PL_sv_undef;
387     }
388    
389 root 1.5 U8 *end = cur + len;
390 root 1.20 UV w = get_w ();
391 root 1.1
392 root 1.23 static char oid[MAX_OID_STRLEN]; // static, because too large for stack
393 root 1.1 char *app = oid;
394    
395 root 1.5 if (relative)
396     app = write_uv (app, w);
397 root 1.18 else
398     {
399 root 1.27 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 root 1.18 *app++ = '.';
408 root 1.27 app = write_uv (app, w2);
409 root 1.18 }
410 root 1.1
411 root 1.13 while (cur < end)
412 root 1.1 {
413 root 1.13 // 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 root 1.20 w = get_w ();
418 root 1.1 *app++ = '.';
419     app = write_uv (app, w);
420     }
421    
422     return newSVpvn (oid, app - oid);
423     }
424    
425 root 1.7 // TODO: this is unacceptably slow
426     static SV *
427 root 1.30 decode_ucs (UV len, int chrsize)
428 root 1.7 {
429     if (len & (chrsize - 1))
430     croak ("BER_TYPE_UCS has an invalid number of octets (%d)", len);
431    
432 root 1.30 SV *res = NEWSV (0, 0);
433    
434 root 1.7 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 root 1.1 static SV *
460 root 1.14 decode_ber (void)
461 root 1.1 {
462 root 1.2 int identifier = get_u8 ();
463 root 1.1
464     SV *res;
465    
466 root 1.5 int constructed = identifier & ASN_CONSTRUCTED;
467     int klass = (identifier & ASN_CLASS_MASK) >> ASN_CLASS_SHIFT;
468     int tag = identifier & ASN_TAG_MASK;
469 root 1.1
470     if (tag == ASN_TAG_BER)
471 root 1.3 tag = get_w ();
472 root 1.1
473     if (constructed)
474     {
475 root 1.15 UV len = get_length ();
476     UV seqend = (cur - buf) + len;
477 root 1.1 AV *av = (AV *)sv_2mortal ((SV *)newAV ());
478    
479     while (cur < buf + seqend)
480 root 1.2 av_push (av, decode_ber ());
481 root 1.1
482 root 1.30 if (expect_false (cur > buf + seqend))
483 root 1.25 croak ("CONSTRUCTED type %02x length overflow (0x%x 0x%x)\n", identifier, (int)(cur - buf), (int)seqend);
484 root 1.1
485     res = newRV_inc ((SV *)av);
486     }
487     else
488 root 1.30 {
489     UV len = get_length ();
490 root 1.13
491 root 1.30 switch (profile_lookup (cur_profile, klass, tag))
492     {
493     case BER_TYPE_NULL:
494     if (expect_false (len))
495 root 1.20 croak ("BER_TYPE_NULL value with non-zero length %d encountered (X.690 8.8.2)", len);
496 root 1.13
497     res = &PL_sv_undef;
498 root 1.30 break;
499 root 1.1
500 root 1.30 case BER_TYPE_BOOL:
501     if (expect_false (len != 1))
502 root 1.20 croak ("BER_TYPE_BOOLEAN value with invalid length %d encountered (X.690 8.2.1)", len);
503 root 1.5
504 root 1.13 res = newSVcacheint (!!get_u8 ());
505 root 1.30 break;
506 root 1.5
507 root 1.30 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 root 1.1
546 root 1.30 case BER_TYPE_REAL:
547     error ("BER_TYPE_REAL not implemented");
548 root 1.1
549 root 1.30 case BER_TYPE_CROAK:
550     croak ("class/tag %d/%d mapped to BER_TYPE_CROAK", klass, tag);
551 root 1.1
552 root 1.30 default:
553     croak ("unconfigured/unsupported class/tag %d/%d", klass, tag);
554     }
555     }
556 root 1.1
557     AV *av = newAV ();
558     av_fill (av, BER_ARRAYSIZE - 1);
559 root 1.16 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 root 1.1
564     return newRV_noinc ((SV *)av);
565     }
566    
567 root 1.3 /////////////////////////////////////////////////////////////////////////////
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 root 1.20 croak ("Convert::BER::XS: string size overflow");
578 root 1.3
579     return sum;
580     }
581    
582     static void
583     set_buf (SV *sv)
584     {
585     STRLEN len;
586     buf_sv = sv;
587 root 1.10 buf = (U8 *)SvPVbyte (buf_sv, len);
588 root 1.3 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 root 1.10 buf = (U8 *)my_sv_grow (buf_sv, pos, len);
612 root 1.3 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 root 1.15 put_w_nocheck (UV val)
626 root 1.3 {
627 root 1.15 #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 root 1.3 *cur = val & 0x7f; cur += 1;
639     }
640    
641     static void
642 root 1.15 put_w (UV val)
643 root 1.3 {
644     need (5); // we only handle up to 5 bytes
645    
646     put_w_nocheck (val);
647     }
648    
649     static U8 *
650 root 1.15 put_length_at (UV val, U8 *cur)
651 root 1.3 {
652 root 1.29 if (val <= 0x7fU)
653 root 1.3 *cur++ = val;
654     else
655     {
656     U8 *lenb = cur++;
657    
658 root 1.15 #if UVSIZE > 4
659 root 1.28 *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 root 1.15 #endif
664 root 1.28 *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 root 1.3 *cur = val ; cur += 1;
668    
669     *lenb = 0x80 + cur - lenb - 1;
670     }
671    
672     return cur;
673     }
674    
675     static void
676 root 1.15 put_length (UV val)
677 root 1.3 {
678 root 1.29 need (9 + val);
679 root 1.3 cur = put_length_at (val, cur);
680     }
681    
682     // return how many bytes the encoded length requires
683 root 1.15 static int length_length (UV val)
684 root 1.3 {
685 root 1.29 // use hashing with a DeBruin sequence, anyone?
686     return expect_true (val <= 0x7fU)
687 root 1.3 ? 1
688 root 1.15 : 2
689 root 1.29 + (val > 0x000000000000ffU)
690     + (val > 0x0000000000ffffU)
691     + (val > 0x00000000ffffffU)
692 root 1.15 #if UVSIZE > 4
693 root 1.29 + (val > 0x000000ffffffffU)
694     + (val > 0x0000ffffffffffU)
695     + (val > 0x00ffffffffffffU)
696 root 1.15 + (val > 0xffffffffffffffU)
697     #endif
698     ;
699 root 1.3 }
700    
701     static void
702 root 1.5 encode_data (const char *ptr, STRLEN len)
703 root 1.3 {
704     put_length (len);
705     memcpy (cur, ptr, len);
706     cur += len;
707     }
708    
709     static void
710 root 1.5 encode_uv (UV uv)
711     {
712     }
713    
714     static void
715     encode_int (SV *sv)
716 root 1.3 {
717 root 1.5 need (8 + 1 + 1); // 64 bit + length + extra 0
718    
719     if (expect_false (!SvIOK (sv)))
720     sv_2iv_flags (sv, 0);
721 root 1.3
722     U8 *lenb = cur++;
723    
724 root 1.5 if (SvIOK_notUV (sv))
725 root 1.3 {
726 root 1.5 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 root 1.3
746 root 1.5 return;
747     }
748 root 1.3 }
749    
750 root 1.5 UV uv = SvUV (sv);
751 root 1.3
752 root 1.5 // prepend an extra 0 if the high bit is 1
753     *cur = 0; cur += !!(uv & ((UV)1 << (UVSIZE * 8 - 1)));
754 root 1.3
755 root 1.5 #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 root 1.3 *cur = uv ; cur += 1;
765    
766     *lenb = cur - lenb - 1;
767     }
768    
769     // we don't know the length yet, so we optimistically
770 root 1.15 // assume the length will need one octet later. If that
771     // turns out to be wrong, we memmove as needed.
772 root 1.3 // mark the beginning
773     static STRLEN
774 root 1.14 len_fixup_mark (void)
775 root 1.3 {
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 root 1.5 encode_oid (SV *oid, int relative)
814 root 1.3 {
815 root 1.5 STRLEN len;
816     char *ptr = SvPV (oid, len); // utf8 vs. bytes does not matter
817 root 1.3
818     // we need at most as many octets as the string form
819 root 1.5 need (len + 1);
820 root 1.3 STRLEN mark = len_fixup_mark ();
821    
822     UV w1, w2;
823    
824 root 1.5 if (!relative)
825     {
826     ptr = read_uv (ptr, &w1);
827     ptr = read_uv (ptr, &w2);
828 root 1.3
829 root 1.5 put_w_nocheck (w1 * 40 + w2);
830     }
831 root 1.3
832     while (*ptr)
833     {
834     ptr = read_uv (ptr, &w1);
835     put_w_nocheck (w1);
836     }
837    
838     len_fixup (mark);
839     }
840    
841 root 1.5 // check whether an SV is a BER tuple and returns its AV *
842 root 1.4 static AV *
843     ber_tuple (SV *tuple)
844 root 1.3 {
845 root 1.4 SV *rv;
846    
847     if (expect_false (!SvROK (tuple) || SvTYPE ((rv = SvRV (tuple))) != SVt_PVAV))
848 root 1.3 croak ("BER tuple must be array-reference");
849    
850 root 1.4 if (expect_false (SvRMAGICAL (rv)))
851     croak ("BER tuple must not be tied");
852 root 1.3
853 root 1.4 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 root 1.3
856 root 1.4 return (AV *)rv;
857     }
858    
859     static void
860 root 1.7 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 root 1.10 UV uchr = utf8_to_uvchr_buf ((U8 *)ptr, (U8 *)ptr + len, &uclen);
872 root 1.7
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 root 1.4 encode_ber (SV *tuple)
888     {
889     AV *av = ber_tuple (tuple);
890 root 1.3
891     int klass = SvIV (AvARRAY (av)[BER_CLASS]);
892     int tag = SvIV (AvARRAY (av)[BER_TAG]);
893 root 1.16 int constructed = SvIV (AvARRAY (av)[BER_FLAGS]) & 1 ? ASN_CONSTRUCTED : 0;
894 root 1.3 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 root 1.25 croak ("BER CONSTRUCTED data must be array-reference");
915 root 1.3
916     AV *av = (AV *)SvRV (data);
917     int fill = AvFILL (av);
918    
919     if (expect_false (SvRMAGICAL (av)))
920 root 1.25 croak ("BER CONSTRUCTED data must not be tied");
921 root 1.3
922 root 1.11 int i;
923     for (i = 0; i <= fill; ++i)
924 root 1.3 encode_ber (AvARRAY (av)[i]);
925    
926     len_fixup (mark);
927     }
928     else
929 root 1.5 switch (profile_lookup (cur_profile, klass, tag))
930 root 1.3 {
931 root 1.5 case BER_TYPE_NULL:
932 root 1.3 put_length (0);
933     break;
934    
935 root 1.5 case BER_TYPE_BOOL:
936     put_length (1);
937 root 1.17 *cur++ = SvTRUE (data) ? 0xff : 0x00; // 0xff = DER/CER
938 root 1.3 break;
939    
940 root 1.5 case BER_TYPE_OID:
941     encode_oid (data, 0);
942 root 1.3 break;
943    
944 root 1.5 case BER_TYPE_RELOID:
945     encode_oid (data, 1);
946 root 1.3 break;
947    
948 root 1.5 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 root 1.6 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 root 1.5 case BER_TYPE_UCS2:
977 root 1.7 encode_ucs (data, 2);
978     break;
979    
980 root 1.5 case BER_TYPE_UCS4:
981 root 1.7 encode_ucs (data, 4);
982     break;
983    
984     case BER_TYPE_REAL:
985 root 1.25 croak ("BER_TYPE_REAL not implemented");
986    
987 root 1.5 case BER_TYPE_CROAK:
988 root 1.25 croak ("class/tag %d/%d mapped to BER_TYPE_CROAK", klass, tag);
989    
990 root 1.3 default:
991 root 1.5 croak ("unconfigured/unsupported class/tag %d/%d", klass, tag);
992 root 1.3 }
993    
994     }
995    
996     /////////////////////////////////////////////////////////////////////////////
997    
998 root 1.1 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 root 1.5 profile_stash = gv_stashpv ("Convert::BER::XS::Profile", 1);
1007    
1008 root 1.1 static const struct {
1009     const char *name;
1010     IV iv;
1011     } *civ, const_iv[] = {
1012 root 1.5 #define const_iv(name) { # name, name },
1013     const_iv (ASN_BOOLEAN)
1014 root 1.15 const_iv (ASN_INTEGER)
1015 root 1.5 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 root 1.16 const_iv (BER_FLAGS)
1054 root 1.5 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 root 1.6 const_iv (BER_TYPE_IPADDRESS)
1067 root 1.5 const_iv (BER_TYPE_CROAK)
1068    
1069     const_iv (SNMP_IPADDRESS)
1070     const_iv (SNMP_COUNTER32)
1071 root 1.21 const_iv (SNMP_GAUGE32)
1072 root 1.5 const_iv (SNMP_UNSIGNED32)
1073     const_iv (SNMP_TIMETICKS)
1074     const_iv (SNMP_OPAQUE)
1075     const_iv (SNMP_COUNTER64)
1076 root 1.1 };
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 root 1.22 void
1083 root 1.5 ber_decode (SV *ber, SV *profile = &PL_sv_undef)
1084 root 1.22 ALIAS:
1085     ber_decode_prefix = 1
1086     PPCODE:
1087 root 1.1 {
1088 root 1.5 cur_profile = SvPROFILE (profile);
1089 root 1.3 STRLEN len;
1090 root 1.10 buf = (U8 *)SvPVbyte (ber, len);
1091 root 1.1 cur = buf;
1092 root 1.3 end = buf + len;
1093 root 1.1
1094 root 1.22 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 root 1.25 error ("trailing garbage after BER value");
1103 root 1.1 }
1104    
1105     void
1106 root 1.16 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 root 1.1 PPCODE:
1108     {
1109     if (!SvOK (tuple))
1110     XSRETURN_NO;
1111    
1112     if (!SvROK (tuple) || SvTYPE (SvRV (tuple)) != SVt_PVAV)
1113 root 1.4 croak ("ber_is: tuple must be BER tuple (array-ref)");
1114 root 1.1
1115     AV *av = (AV *)SvRV (tuple);
1116    
1117     XPUSHs (
1118 root 1.16 (!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 root 1.4 ? &PL_sv_yes : &PL_sv_undef);
1123 root 1.1 }
1124    
1125     void
1126     ber_is_seq (SV *tuple)
1127     PPCODE:
1128     {
1129     if (!SvOK (tuple))
1130     XSRETURN_UNDEF;
1131    
1132 root 1.4 AV *av = ber_tuple (tuple);
1133 root 1.1
1134     XPUSHs (
1135 root 1.16 SvIV (AvARRAY (av)[BER_CLASS]) == ASN_UNIVERSAL
1136     && SvIV (AvARRAY (av)[BER_TAG ]) == ASN_SEQUENCE
1137     && SvIV (AvARRAY (av)[BER_FLAGS])
1138 root 1.1 ? AvARRAY (av)[BER_DATA] : &PL_sv_undef);
1139     }
1140    
1141     void
1142 root 1.15 ber_is_int (SV *tuple, SV *value = &PL_sv_undef)
1143 root 1.1 PPCODE:
1144     {
1145     if (!SvOK (tuple))
1146     XSRETURN_NO;
1147    
1148 root 1.4 AV *av = ber_tuple (tuple);
1149 root 1.1
1150 root 1.15 UV data = SvUV (AvARRAY (av)[BER_DATA]);
1151 root 1.1
1152     XPUSHs (
1153 root 1.16 SvIV (AvARRAY (av)[BER_CLASS]) == ASN_UNIVERSAL
1154     && SvIV (AvARRAY (av)[BER_TAG ]) == ASN_INTEGER
1155     && !SvIV (AvARRAY (av)[BER_FLAGS])
1156 root 1.15 && (!SvOK (value) || data == SvUV (value))
1157     ? sv_2mortal (data ? newSVsv (AvARRAY (av)[BER_DATA]) : newSVpv ("0 but true", 0))
1158 root 1.4 : &PL_sv_undef);
1159 root 1.1 }
1160    
1161     void
1162 root 1.4 ber_is_oid (SV *tuple, SV *oid = &PL_sv_undef)
1163 root 1.1 PPCODE:
1164     {
1165     if (!SvOK (tuple))
1166     XSRETURN_NO;
1167    
1168 root 1.4 AV *av = ber_tuple (tuple);
1169 root 1.1
1170     XPUSHs (
1171 root 1.16 SvIV (AvARRAY (av)[BER_CLASS]) == ASN_UNIVERSAL
1172     && SvIV (AvARRAY (av)[BER_TAG ]) == ASN_OBJECT_IDENTIFIER
1173     && !SvIV (AvARRAY (av)[BER_FLAGS])
1174 root 1.4 && (!SvOK (oid) || sv_eq (AvARRAY (av)[BER_DATA], oid))
1175     ? newSVsv (AvARRAY (av)[BER_DATA]) : &PL_sv_undef);
1176 root 1.1 }
1177    
1178 root 1.3 #############################################################################
1179    
1180     void
1181 root 1.5 ber_encode (SV *tuple, SV *profile = &PL_sv_undef)
1182 root 1.3 PPCODE:
1183     {
1184 root 1.5 cur_profile = SvPROFILE (profile);
1185 root 1.3 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 root 1.4 SV *
1196 root 1.15 ber_int (SV *sv)
1197 root 1.4 CODE:
1198     {
1199     AV *av = newAV ();
1200     av_fill (av, BER_ARRAYSIZE - 1);
1201 root 1.16 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 root 1.4 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 root 1.16 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 root 1.4 RETVAL = newRV_noinc ((SV *)av);
1221     }
1222     OUTPUT: RETVAL
1223    
1224 root 1.5 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 root 1.6 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