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