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