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