ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-BER-XS/XS.xs
(Generate patch)

Comparing Convert-BER-XS/XS.xs (file contents):
Revision 1.2 by root, Fri Apr 19 16:49:02 2019 UTC vs.
Revision 1.12 by root, Sat Apr 20 12:35:03 2019 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines