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

Comparing CBOR-XS/XS.xs (file contents):
Revision 1.33 by root, Sat Nov 30 15:23:59 2013 UTC vs.
Revision 1.38 by root, Sun Dec 1 14:30:52 2013 UTC

23#endif 23#endif
24#ifndef SvREFCNT_dec_NN 24#ifndef SvREFCNT_dec_NN
25# define SvREFCNT_dec_NN(sv) SvREFCNT_dec (sv) 25# define SvREFCNT_dec_NN(sv) SvREFCNT_dec (sv)
26#endif 26#endif
27 27
28// known major and minor types
29enum cbor_type
30{
31 MAJOR_SHIFT = 5,
32 MINOR_MASK = 0x1f,
33
34 MAJOR_POS_INT = 0 << MAJOR_SHIFT,
35 MAJOR_NEG_INT = 1 << MAJOR_SHIFT,
36 MAJOR_BYTES = 2 << MAJOR_SHIFT,
37 MAJOR_TEXT = 3 << MAJOR_SHIFT,
38 MAJOR_ARRAY = 4 << MAJOR_SHIFT,
39 MAJOR_MAP = 5 << MAJOR_SHIFT,
40 MAJOR_TAG = 6 << MAJOR_SHIFT,
41 MAJOR_MISC = 7 << MAJOR_SHIFT,
42
43 // INT/STRING/ARRAY/MAP subtypes
44 LENGTH_EXT1 = 24,
45 LENGTH_EXT2 = 25,
46 LENGTH_EXT4 = 26,
47 LENGTH_EXT8 = 27,
48
49 // SIMPLE types (effectively MISC subtypes)
50 SIMPLE_FALSE = 20,
51 SIMPLE_TRUE = 21,
52 SIMPLE_NULL = 22,
53 SIMPLE_UNDEF = 23,
54
55 // MISC subtype (unused)
56 MISC_EXT1 = 24,
57 MISC_FLOAT16 = 25,
58 MISC_FLOAT32 = 26,
59 MISC_FLOAT64 = 27,
60
61 // BYTES/TEXT/ARRAY/MAP
62 MINOR_INDEF = 31,
63};
64
28// known tags 65// known tags
29enum cbor_tag 66enum cbor_tag
30{ 67{
31 // extensions 68 // extensions
32 CBOR_TAG_STRINGREF = 25, // http://cbor.schmorp.de/stringref 69 CBOR_TAG_STRINGREF = 25, // http://cbor.schmorp.de/stringref
33 CBOR_TAG_PERL_OBJECT = 26, // http://cbor.schmorp.de/perl-object 70 CBOR_TAG_PERL_OBJECT = 26, // http://cbor.schmorp.de/perl-object
34 CBOR_TAG_GENERIC_OBJECT = 27, // http://cbor.schmorp.de/generic-object 71 CBOR_TAG_GENERIC_OBJECT = 27, // http://cbor.schmorp.de/generic-object
35 CBOR_TAG_VALUE_SHAREABLE = 28, // http://cbor.schmorp.de/value-sharing 72 CBOR_TAG_VALUE_SHAREABLE = 28, // http://cbor.schmorp.de/value-sharing
36 CBOR_TAG_VALUE_SHAREDREF = 29, // http://cbor.schmorp.de/value-sharing 73 CBOR_TAG_VALUE_SHAREDREF = 29, // http://cbor.schmorp.de/value-sharing
37 CBOR_TAG_STRINGREF_NAMESPACE = 256, // http://cbor.schmorp.de/stringref 74 CBOR_TAG_STRINGREF_NAMESPACE = 256, // http://cbor.schmorp.de/stringref
38 CBOR_TAG_INDIRECTION = 22098, // http://cbor.schmorp.de/indirection 75 CBOR_TAG_INDIRECTION = 22098, // http://cbor.schmorp.de/indirection
39 76
40 // rfc7049 77 // rfc7049
41 CBOR_TAG_DATETIME = 0, // rfc4287, utf-8 78 CBOR_TAG_DATETIME = 0, // rfc4287, utf-8
42 CBOR_TAG_TIMESTAMP = 1, // unix timestamp, any 79 CBOR_TAG_TIMESTAMP = 1, // unix timestamp, any
43 CBOR_TAG_POS_BIGNUM = 2, // byte string 80 CBOR_TAG_POS_BIGNUM = 2, // byte string
44 CBOR_TAG_NEG_BIGNUM = 3, // byte string 81 CBOR_TAG_NEG_BIGNUM = 3, // byte string
45 CBOR_TAG_DECIMAL = 4, // decimal fraction, array 82 CBOR_TAG_DECIMAL = 4, // decimal fraction, array
46 CBOR_TAG_BIGFLOAT = 5, // array 83 CBOR_TAG_BIGFLOAT = 5, // array
47 84
48 CBOR_TAG_CONV_B64U = 21, // base64url, any 85 CBOR_TAG_CONV_B64U = 21, // base64url, any
49 CBOR_TAG_CONV_B64 = 22, // base64, any 86 CBOR_TAG_CONV_B64 = 22, // base64, any
50 CBOR_TAG_CONV_HEX = 23, // base16, any 87 CBOR_TAG_CONV_HEX = 23, // base16, any
51 CBOR_TAG_CBOR = 24, // embedded cbor, byte string 88 CBOR_TAG_CBOR = 24, // embedded cbor, byte string
52 89
53 CBOR_TAG_URI = 32, // URI rfc3986, utf-8 90 CBOR_TAG_URI = 32, // URI rfc3986, utf-8
54 CBOR_TAG_B64U = 33, // base64url rfc4648, utf-8 91 CBOR_TAG_B64U = 33, // base64url rfc4648, utf-8
55 CBOR_TAG_B64 = 34, // base6 rfc46484, utf-8 92 CBOR_TAG_B64 = 34, // base6 rfc46484, utf-8
56 CBOR_TAG_REGEX = 35, // regex pcre/ecma262, utf-8 93 CBOR_TAG_REGEX = 35, // regex pcre/ecma262, utf-8
57 CBOR_TAG_MIME = 36, // mime message rfc2045, utf-8 94 CBOR_TAG_MIME = 36, // mime message rfc2045, utf-8
58 95
59 CBOR_TAG_MAGIC = 55799 // self-describe cbor 96 CBOR_TAG_MAGIC = 55799, // self-describe cbor
60}; 97};
61 98
62#define F_SHRINK 0x00000001UL 99#define F_SHRINK 0x00000001UL
63#define F_ALLOW_UNKNOWN 0x00000002UL 100#define F_ALLOW_UNKNOWN 0x00000002UL
64#define F_ALLOW_SHARING 0x00000004UL 101#define F_ALLOW_SHARING 0x00000004UL
102#define F_ALLOW_CYCLES 0x00000008UL
65#define F_PACK_STRINGS 0x00000008UL 103#define F_PACK_STRINGS 0x00000010UL
104#define F_VALIDATE_UTF8 0x00000020UL
66 105
67#define INIT_SIZE 32 // initial scalar size to be allocated 106#define INIT_SIZE 32 // initial scalar size to be allocated
68 107
69#define SB do { 108#define SB do {
70#define SE } while (0) 109#define SE } while (0)
189static void 228static void
190encode_uint (enc_t *enc, int major, UV len) 229encode_uint (enc_t *enc, int major, UV len)
191{ 230{
192 need (enc, 9); 231 need (enc, 9);
193 232
194 if (ecb_expect_true (len < 24)) 233 if (ecb_expect_true (len < LENGTH_EXT1))
195 *enc->cur++ = major | len; 234 *enc->cur++ = major | len;
196 else if (ecb_expect_true (len <= 0xff)) 235 else if (ecb_expect_true (len <= 0xffU))
197 { 236 {
198 *enc->cur++ = major | 24; 237 *enc->cur++ = major | LENGTH_EXT1;
199 *enc->cur++ = len; 238 *enc->cur++ = len;
200 } 239 }
201 else if (len <= 0xffff) 240 else if (len <= 0xffffU)
202 { 241 {
203 *enc->cur++ = major | 25; 242 *enc->cur++ = major | LENGTH_EXT2;
204 *enc->cur++ = len >> 8; 243 *enc->cur++ = len >> 8;
205 *enc->cur++ = len; 244 *enc->cur++ = len;
206 } 245 }
207 else if (len <= 0xffffffff) 246 else if (len <= 0xffffffffU)
208 { 247 {
209 *enc->cur++ = major | 26; 248 *enc->cur++ = major | LENGTH_EXT4;
210 *enc->cur++ = len >> 24; 249 *enc->cur++ = len >> 24;
211 *enc->cur++ = len >> 16; 250 *enc->cur++ = len >> 16;
212 *enc->cur++ = len >> 8; 251 *enc->cur++ = len >> 8;
213 *enc->cur++ = len; 252 *enc->cur++ = len;
214 } 253 }
215 else 254 else
216 { 255 {
217 *enc->cur++ = major | 27; 256 *enc->cur++ = major | LENGTH_EXT8;
218 *enc->cur++ = len >> 56; 257 *enc->cur++ = len >> 56;
219 *enc->cur++ = len >> 48; 258 *enc->cur++ = len >> 48;
220 *enc->cur++ = len >> 40; 259 *enc->cur++ = len >> 40;
221 *enc->cur++ = len >> 32; 260 *enc->cur++ = len >> 32;
222 *enc->cur++ = len >> 24; 261 *enc->cur++ = len >> 24;
227} 266}
228 267
229ecb_inline void 268ecb_inline void
230encode_tag (enc_t *enc, UV tag) 269encode_tag (enc_t *enc, UV tag)
231{ 270{
232 encode_uint (enc, 0xc0, tag); 271 encode_uint (enc, MAJOR_TAG, tag);
233} 272}
234 273
235ecb_inline void 274ecb_inline void
236encode_str (enc_t *enc, int utf8, char *str, STRLEN len) 275encode_str (enc_t *enc, int utf8, char *str, STRLEN len)
237{ 276{
238 encode_uint (enc, utf8 ? 0x60 : 0x40, len); 277 encode_uint (enc, utf8 ? MAJOR_TEXT : MAJOR_BYTES, len);
239 need (enc, len); 278 need (enc, len);
240 memcpy (enc->cur, str, len); 279 memcpy (enc->cur, str, len);
241 enc->cur += len; 280 enc->cur += len;
242} 281}
243 282
250 289
251 if (SvOK (*svp)) 290 if (SvOK (*svp))
252 { 291 {
253 // already registered, use stringref 292 // already registered, use stringref
254 encode_tag (enc, CBOR_TAG_STRINGREF); 293 encode_tag (enc, CBOR_TAG_STRINGREF);
255 encode_uint (enc, 0x00, SvUV (*svp)); 294 encode_uint (enc, MAJOR_POS_INT, SvUV (*svp));
256 return; 295 return;
257 } 296 }
258 else if (len >= minimum_string_length (enc->stringref_idx)) 297 else if (len >= minimum_string_length (enc->stringref_idx))
259 { 298 {
260 // register only 299 // register only
276 if (enc->depth >= enc->cbor.max_depth) 315 if (enc->depth >= enc->cbor.max_depth)
277 croak (ERR_NESTING_EXCEEDED); 316 croak (ERR_NESTING_EXCEEDED);
278 317
279 ++enc->depth; 318 ++enc->depth;
280 319
281 encode_uint (enc, 0x80, len + 1); 320 encode_uint (enc, MAJOR_ARRAY, len + 1);
282 321
283 for (i = 0; i <= len; ++i) 322 for (i = 0; i <= len; ++i)
284 { 323 {
285 SV **svp = av_fetch (av, i, 0); 324 SV **svp = av_fetch (av, i, 0);
286 encode_sv (enc, svp ? *svp : &PL_sv_undef); 325 encode_sv (enc, svp ? *svp : &PL_sv_undef);
301 340
302 int pairs = hv_iterinit (hv); 341 int pairs = hv_iterinit (hv);
303 int mg = SvMAGICAL (hv); 342 int mg = SvMAGICAL (hv);
304 343
305 if (mg) 344 if (mg)
306 encode_ch (enc, 0xa0 | 31); 345 encode_ch (enc, MAJOR_MAP | MINOR_INDEF);
307 else 346 else
308 encode_uint (enc, 0xa0, pairs); 347 encode_uint (enc, MAJOR_MAP, pairs);
309 348
310 while ((he = hv_iternext (hv))) 349 while ((he = hv_iternext (hv)))
311 { 350 {
312 if (HeKLEN (he) == HEf_SVKEY) 351 if (HeKLEN (he) == HEf_SVKEY)
313 encode_sv (enc, HeSVKEY (he)); 352 encode_sv (enc, HeSVKEY (he));
316 355
317 encode_sv (enc, ecb_expect_false (mg) ? hv_iterval (hv, he) : HeVAL (he)); 356 encode_sv (enc, ecb_expect_false (mg) ? hv_iterval (hv, he) : HeVAL (he));
318 } 357 }
319 358
320 if (mg) 359 if (mg)
321 encode_ch (enc, 0xe0 | 31); 360 encode_ch (enc, MAJOR_MISC | MINOR_INDEF);
322 361
323 --enc->depth; 362 --enc->depth;
324} 363}
325 364
326// encode objects, arrays and special \0=false and \1=true values. 365// encode objects, arrays and special \0=false and \1=true values.
342 HV *tagged_stash = !CBOR_SLOW || cbor_tagged_stash 381 HV *tagged_stash = !CBOR_SLOW || cbor_tagged_stash
343 ? cbor_tagged_stash 382 ? cbor_tagged_stash
344 : gv_stashpv ("CBOR::XS::Tagged" , 1); 383 : gv_stashpv ("CBOR::XS::Tagged" , 1);
345 384
346 HV *stash = SvSTASH (sv); 385 HV *stash = SvSTASH (sv);
347 GV *method;
348 386
349 if (stash == boolean_stash) 387 if (stash == boolean_stash)
350 encode_ch (enc, SvIV (sv) ? 0xe0 | 21 : 0xe0 | 20); 388 {
389 encode_ch (enc, SvIV (sv) ? MAJOR_MISC | SIMPLE_TRUE : MAJOR_MISC | SIMPLE_FALSE);
390 return;
391 }
351 else if (stash == error_stash) 392 else if (stash == error_stash)
352 encode_ch (enc, 0xe0 | 23); 393 {
394 encode_ch (enc, MAJOR_MISC | SIMPLE_UNDEF);
395 return;
396 }
353 else if (stash == tagged_stash) 397 else if (stash == tagged_stash)
354 { 398 {
355 if (svt != SVt_PVAV) 399 if (svt != SVt_PVAV)
356 croak ("encountered CBOR::XS::Tagged object that isn't an array"); 400 croak ("encountered CBOR::XS::Tagged object that isn't an array");
357 401
358 encode_uint (enc, 0xc0, SvUV (*av_fetch ((AV *)sv, 0, 1))); 402 encode_uint (enc, MAJOR_TAG, SvUV (*av_fetch ((AV *)sv, 0, 1)));
359 encode_sv (enc, *av_fetch ((AV *)sv, 1, 1)); 403 encode_sv (enc, *av_fetch ((AV *)sv, 1, 1));
404
405 return;
406 }
407 }
408
409 if (ecb_expect_false (SvREFCNT (sv) > 1)
410 && ecb_expect_false (enc->cbor.flags & F_ALLOW_SHARING))
411 {
412 if (!enc->shareable)
413 enc->shareable = (HV *)sv_2mortal ((SV *)newHV ());
414
415 SV **svp = hv_fetch (enc->shareable, (char *)&sv, sizeof (sv), 1);
416
417 if (SvOK (*svp))
360 } 418 {
419 encode_tag (enc, CBOR_TAG_VALUE_SHAREDREF);
420 encode_uint (enc, MAJOR_POS_INT, SvUV (*svp));
421 return;
422 }
423 else
424 {
425 sv_setuv (*svp, enc->shareable_idx);
426 ++enc->shareable_idx;
427 encode_tag (enc, CBOR_TAG_VALUE_SHAREABLE);
428 }
429 }
430
431 if (ecb_expect_false (SvOBJECT (sv)))
432 {
433 HV *stash = SvSTASH (sv);
434 GV *method;
435
361 else if ((method = gv_fetchmethod_autoload (stash, "TO_CBOR", 0))) 436 if ((method = gv_fetchmethod_autoload (stash, "TO_CBOR", 0)))
362 { 437 {
363 dSP; 438 dSP;
364 439
365 ENTER; SAVETMPS; PUSHMARK (SP); 440 ENTER; SAVETMPS; PUSHMARK (SP);
366 // we re-bless the reference to get overload and other niceties right 441 // we re-bless the reference to get overload and other niceties right
398 // catch this surprisingly common error 473 // catch this surprisingly common error
399 if (count == 1 && SvROK (TOPs) && SvRV (TOPs) == sv) 474 if (count == 1 && SvROK (TOPs) && SvRV (TOPs) == sv)
400 croak ("%s::FREEZE(CBOR) method returned same object as was passed instead of a new one", HvNAME (stash)); 475 croak ("%s::FREEZE(CBOR) method returned same object as was passed instead of a new one", HvNAME (stash));
401 476
402 encode_tag (enc, CBOR_TAG_PERL_OBJECT); 477 encode_tag (enc, CBOR_TAG_PERL_OBJECT);
403 encode_uint (enc, 0x80, count + 1); 478 encode_uint (enc, MAJOR_ARRAY, count + 1);
404 encode_strref (enc, HvNAMEUTF8 (stash), HvNAME (stash), HvNAMELEN (stash)); 479 encode_strref (enc, HvNAMEUTF8 (stash), HvNAME (stash), HvNAMELEN (stash));
405 480
406 while (count) 481 while (count)
407 encode_sv (enc, SP[1 - count--]); 482 encode_sv (enc, SP[1 - count--]);
408 483
418 encode_hv (enc, (HV *)sv); 493 encode_hv (enc, (HV *)sv);
419 else if (svt == SVt_PVAV) 494 else if (svt == SVt_PVAV)
420 encode_av (enc, (AV *)sv); 495 encode_av (enc, (AV *)sv);
421 else 496 else
422 { 497 {
423 if (ecb_expect_false (SvREFCNT (sv) > 1)
424 && ecb_expect_false (enc->cbor.flags & F_ALLOW_SHARING))
425 {
426 if (!enc->shareable)
427 enc->shareable = (HV *)sv_2mortal ((SV *)newHV ());
428
429 SV **svp = hv_fetch (enc->shareable, (char *)&sv, sizeof (sv), 1);
430
431 if (SvOK (*svp))
432 {
433 encode_tag (enc, CBOR_TAG_VALUE_SHAREDREF);
434 encode_uint (enc, 0x00, SvUV (*svp));
435 return;
436 }
437 else
438 {
439 sv_setuv (*svp, enc->shareable_idx);
440 ++enc->shareable_idx;
441 encode_tag (enc, CBOR_TAG_VALUE_SHAREABLE);
442 }
443 }
444
445 encode_tag (enc, CBOR_TAG_INDIRECTION); 498 encode_tag (enc, CBOR_TAG_INDIRECTION);
446 encode_sv (enc, sv); 499 encode_sv (enc, sv);
447 } 500 }
448} 501}
449 502
452{ 505{
453 double nv = SvNVX (sv); 506 double nv = SvNVX (sv);
454 507
455 need (enc, 9); 508 need (enc, 9);
456 509
457 if (ecb_expect_false (nv == (U32)nv)) 510 if (ecb_expect_false (nv == (NV)(U32)nv))
458 encode_uint (enc, 0x00, (U32)nv); 511 encode_uint (enc, MAJOR_POS_INT, (U32)nv);
459 //TODO: maybe I32? 512 //TODO: maybe I32?
460 else if (ecb_expect_false (nv == (float)nv)) 513 else if (ecb_expect_false (nv == (float)nv))
461 { 514 {
462 uint32_t fp = ecb_float_to_binary32 (nv); 515 uint32_t fp = ecb_float_to_binary32 (nv);
463 516
464 *enc->cur++ = 0xe0 | 26; 517 *enc->cur++ = MAJOR_MISC | MISC_FLOAT32;
465 518
466 if (!ecb_big_endian ()) 519 if (!ecb_big_endian ())
467 fp = ecb_bswap32 (fp); 520 fp = ecb_bswap32 (fp);
468 521
469 memcpy (enc->cur, &fp, 4); 522 memcpy (enc->cur, &fp, 4);
471 } 524 }
472 else 525 else
473 { 526 {
474 uint64_t fp = ecb_double_to_binary64 (nv); 527 uint64_t fp = ecb_double_to_binary64 (nv);
475 528
476 *enc->cur++ = 0xe0 | 27; 529 *enc->cur++ = MAJOR_MISC | MISC_FLOAT64;
477 530
478 if (!ecb_big_endian ()) 531 if (!ecb_big_endian ())
479 fp = ecb_bswap64 (fp); 532 fp = ecb_bswap64 (fp);
480 533
481 memcpy (enc->cur, &fp, 8); 534 memcpy (enc->cur, &fp, 8);
497 else if (SvNOKp (sv)) 550 else if (SvNOKp (sv))
498 encode_nv (enc, sv); 551 encode_nv (enc, sv);
499 else if (SvIOKp (sv)) 552 else if (SvIOKp (sv))
500 { 553 {
501 if (SvIsUV (sv)) 554 if (SvIsUV (sv))
502 encode_uint (enc, 0x00, SvUVX (sv)); 555 encode_uint (enc, MAJOR_POS_INT, SvUVX (sv));
503 else if (SvIVX (sv) >= 0) 556 else if (SvIVX (sv) >= 0)
504 encode_uint (enc, 0x00, SvIVX (sv)); 557 encode_uint (enc, MAJOR_POS_INT, SvIVX (sv));
505 else 558 else
506 encode_uint (enc, 0x20, -(SvIVX (sv) + 1)); 559 encode_uint (enc, MAJOR_NEG_INT, -(SvIVX (sv) + 1));
507 } 560 }
508 else if (SvROK (sv)) 561 else if (SvROK (sv))
509 encode_rv (enc, SvRV (sv)); 562 encode_rv (enc, SvRV (sv));
510 else if (!SvOK (sv)) 563 else if (!SvOK (sv))
511 encode_ch (enc, 0xe0 | 22); 564 encode_ch (enc, MAJOR_MISC | SIMPLE_NULL);
512 else if (enc->cbor.flags & F_ALLOW_UNKNOWN) 565 else if (enc->cbor.flags & F_ALLOW_UNKNOWN)
513 encode_ch (enc, 0xe0 | 23); 566 encode_ch (enc, MAJOR_MISC | SIMPLE_UNDEF);
514 else 567 else
515 croak ("encountered perl type (%s,0x%x) that CBOR cannot handle, check your input data", 568 croak ("encountered perl type (%s,0x%x) that CBOR cannot handle, check your input data",
516 SvPV_nolen (sv), (unsigned int)SvFLAGS (sv)); 569 SvPV_nolen (sv), (unsigned int)SvFLAGS (sv));
517} 570}
518 571
571#define DEC_DEC_DEPTH --dec->depth 624#define DEC_DEC_DEPTH --dec->depth
572 625
573static UV 626static UV
574decode_uint (dec_t *dec) 627decode_uint (dec_t *dec)
575{ 628{
576 switch (*dec->cur & 31) 629 U8 m = *dec->cur & MINOR_MASK;
577 { 630 ++dec->cur;
578 case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7:
579 case 8: case 9: case 10: case 11: case 12: case 13: case 14: case 15:
580 case 16: case 17: case 18: case 19: case 20: case 21: case 22: case 23:
581 return *dec->cur++ & 31;
582 631
583 case 24: 632 if (ecb_expect_true (m < LENGTH_EXT1))
633 return m;
634 else if (ecb_expect_true (m == LENGTH_EXT1))
635 {
584 WANT (2); 636 WANT (1);
585 dec->cur += 2; 637 dec->cur += 1;
586 return dec->cur[-1]; 638 return dec->cur[-1];
587 639 }
588 case 25: 640 else if (ecb_expect_true (m == LENGTH_EXT2))
641 {
589 WANT (3); 642 WANT (2);
590 dec->cur += 3; 643 dec->cur += 2;
591 return (((UV)dec->cur[-2]) << 8) 644 return (((UV)dec->cur[-2]) << 8)
592 | ((UV)dec->cur[-1]); 645 | ((UV)dec->cur[-1]);
593 646 }
594 case 26: 647 else if (ecb_expect_true (m == LENGTH_EXT4))
648 {
595 WANT (5); 649 WANT (4);
596 dec->cur += 5; 650 dec->cur += 4;
597 return (((UV)dec->cur[-4]) << 24) 651 return (((UV)dec->cur[-4]) << 24)
598 | (((UV)dec->cur[-3]) << 16) 652 | (((UV)dec->cur[-3]) << 16)
599 | (((UV)dec->cur[-2]) << 8) 653 | (((UV)dec->cur[-2]) << 8)
600 | ((UV)dec->cur[-1]); 654 | ((UV)dec->cur[-1]);
601 655 }
602 case 27: 656 else if (ecb_expect_true (m == LENGTH_EXT8))
657 {
603 WANT (9); 658 WANT (8);
604 dec->cur += 9; 659 dec->cur += 8;
660
661 return
662#if UVSIZE < 8
663 0
664#else
605 return (((UV)dec->cur[-8]) << 56) 665 (((UV)dec->cur[-8]) << 56)
606 | (((UV)dec->cur[-7]) << 48) 666 | (((UV)dec->cur[-7]) << 48)
607 | (((UV)dec->cur[-6]) << 40) 667 | (((UV)dec->cur[-6]) << 40)
608 | (((UV)dec->cur[-5]) << 32) 668 | (((UV)dec->cur[-5]) << 32)
669#endif
609 | (((UV)dec->cur[-4]) << 24) 670 | (((UV)dec->cur[-4]) << 24)
610 | (((UV)dec->cur[-3]) << 16) 671 | (((UV)dec->cur[-3]) << 16)
611 | (((UV)dec->cur[-2]) << 8) 672 | (((UV)dec->cur[-2]) << 8)
612 | ((UV)dec->cur[-1]); 673 | ((UV)dec->cur[-1]);
613 674 }
614 default: 675 else
615 ERR ("corrupted CBOR data (unsupported integer minor encoding)"); 676 ERR ("corrupted CBOR data (unsupported integer minor encoding)");
616 }
617 677
618fail: 678fail:
619 return 0; 679 return 0;
620} 680}
621 681
626{ 686{
627 AV *av = newAV (); 687 AV *av = newAV ();
628 688
629 DEC_INC_DEPTH; 689 DEC_INC_DEPTH;
630 690
631 if ((*dec->cur & 31) == 31) 691 if (*dec->cur == (MAJOR_ARRAY | MINOR_INDEF))
632 { 692 {
633 ++dec->cur; 693 ++dec->cur;
634 694
635 for (;;) 695 for (;;)
636 { 696 {
637 WANT (1); 697 WANT (1);
638 698
639 if (*dec->cur == (0xe0 | 31)) 699 if (*dec->cur == (MAJOR_MISC | MINOR_INDEF))
640 { 700 {
641 ++dec->cur; 701 ++dec->cur;
642 break; 702 break;
643 } 703 }
644 704
647 } 707 }
648 else 708 else
649 { 709 {
650 int i, len = decode_uint (dec); 710 int i, len = decode_uint (dec);
651 711
712 WANT (len); // complexity check for av_fill - need at least one byte per value, do not allow supersize arrays
652 av_fill (av, len - 1); 713 av_fill (av, len - 1);
653 714
654 for (i = 0; i < len; ++i) 715 for (i = 0; i < len; ++i)
655 AvARRAY (av)[i] = decode_sv (dec); 716 AvARRAY (av)[i] = decode_sv (dec);
656 } 717 }
669{ 730{
670 // for speed reasons, we specialcase single-string 731 // for speed reasons, we specialcase single-string
671 // byte or utf-8 strings as keys, but only when !stringref 732 // byte or utf-8 strings as keys, but only when !stringref
672 733
673 if (ecb_expect_true (!dec->stringref)) 734 if (ecb_expect_true (!dec->stringref))
674 if (*dec->cur >= 0x40 && *dec->cur <= 0x40 + 27) 735 if (ecb_expect_true ((*dec->cur - MAJOR_BYTES) <= LENGTH_EXT8))
675 { 736 {
676 I32 len = decode_uint (dec); 737 I32 len = decode_uint (dec);
677 char *key = (char *)dec->cur; 738 char *key = (char *)dec->cur;
678 739
679 dec->cur += len; 740 dec->cur += len;
680 741
681 if (ecb_expect_false (dec->stringref))
682 av_push (dec->stringref, newSVpvn (key, len));
683
684 hv_store (hv, key, len, decode_sv (dec), 0); 742 hv_store (hv, key, len, decode_sv (dec), 0);
685 743
686 return; 744 return;
687 } 745 }
688 else if (*dec->cur >= 0x60 && *dec->cur <= 0x60 + 27) 746 else if (ecb_expect_true ((*dec->cur - MAJOR_TEXT) <= LENGTH_EXT8))
689 { 747 {
690 I32 len = decode_uint (dec); 748 I32 len = decode_uint (dec);
691 char *key = (char *)dec->cur; 749 char *key = (char *)dec->cur;
692 750
693 dec->cur += len; 751 dec->cur += len;
694 752
695 if (ecb_expect_false (dec->stringref)) 753 if (ecb_expect_false (dec->cbor.flags & F_VALIDATE_UTF8))
696 av_push (dec->stringref, newSVpvn_utf8 (key, len, 1)); 754 if (!is_utf8_string (key, len))
755 ERR ("corrupted CBOR data (invalid UTF-8 in map key)");
697 756
698 hv_store (hv, key, -len, decode_sv (dec), 0); 757 hv_store (hv, key, -len, decode_sv (dec), 0);
699 758
700 return; 759 return;
701 } 760 }
703 SV *k = decode_sv (dec); 762 SV *k = decode_sv (dec);
704 SV *v = decode_sv (dec); 763 SV *v = decode_sv (dec);
705 764
706 hv_store_ent (hv, k, v, 0); 765 hv_store_ent (hv, k, v, 0);
707 SvREFCNT_dec (k); 766 SvREFCNT_dec (k);
767
768fail:
769 ;
708} 770}
709 771
710static SV * 772static SV *
711decode_hv (dec_t *dec) 773decode_hv (dec_t *dec)
712{ 774{
713 HV *hv = newHV (); 775 HV *hv = newHV ();
714 776
715 DEC_INC_DEPTH; 777 DEC_INC_DEPTH;
716 778
717 if ((*dec->cur & 31) == 31) 779 if (*dec->cur == (MAJOR_MAP | MINOR_INDEF))
718 { 780 {
719 ++dec->cur; 781 ++dec->cur;
720 782
721 for (;;) 783 for (;;)
722 { 784 {
723 WANT (1); 785 WANT (1);
724 786
725 if (*dec->cur == (0xe0 | 31)) 787 if (*dec->cur == (MAJOR_MISC | MINOR_INDEF))
726 { 788 {
727 ++dec->cur; 789 ++dec->cur;
728 break; 790 break;
729 } 791 }
730 792
751static SV * 813static SV *
752decode_str (dec_t *dec, int utf8) 814decode_str (dec_t *dec, int utf8)
753{ 815{
754 SV *sv = 0; 816 SV *sv = 0;
755 817
756 if ((*dec->cur & 31) == 31) 818 if ((*dec->cur & MINOR_MASK) == MINOR_INDEF)
757 { 819 {
758 // indefinite length strings 820 // indefinite length strings
759 ++dec->cur; 821 ++dec->cur;
760 822
761 unsigned char major = *dec->cur & 0xe0; 823 U8 major = *dec->cur & MAJOR_MISC;
762 824
763 sv = newSVpvn ("", 0); 825 sv = newSVpvn ("", 0);
764 826
765 for (;;) 827 for (;;)
766 { 828 {
767 WANT (1); 829 WANT (1);
768 830
769 if ((*dec->cur ^ major) >= 31) 831 if ((*dec->cur - major) > LENGTH_EXT8)
770 if (*dec->cur == (0xe0 | 31)) 832 if (*dec->cur == (MAJOR_MISC | MINOR_INDEF))
771 { 833 {
772 ++dec->cur; 834 ++dec->cur;
773 break; 835 break;
774 } 836 }
775 else 837 else
794 && SvCUR (sv) >= minimum_string_length (AvFILLp (dec->stringref) + 1)) 856 && SvCUR (sv) >= minimum_string_length (AvFILLp (dec->stringref) + 1))
795 av_push (dec->stringref, SvREFCNT_inc_NN (sv)); 857 av_push (dec->stringref, SvREFCNT_inc_NN (sv));
796 } 858 }
797 859
798 if (utf8) 860 if (utf8)
861 {
862 if (ecb_expect_false (dec->cbor.flags & F_VALIDATE_UTF8))
863 if (!is_utf8_string (SvPVX (sv), SvCUR (sv)))
864 ERR ("corrupted CBOR data (invalid UTF-8 in text string)");
865
799 SvUTF8_on (sv); 866 SvUTF8_on (sv);
867 }
800 868
801 return sv; 869 return sv;
802 870
803fail: 871fail:
804 SvREFCNT_dec (sv); 872 SvREFCNT_dec (sv);
836 } 904 }
837 break; 905 break;
838 906
839 case CBOR_TAG_STRINGREF: 907 case CBOR_TAG_STRINGREF:
840 { 908 {
841 if ((*dec->cur >> 5) != 0) 909 if ((*dec->cur >> MAJOR_SHIFT) != (MAJOR_POS_INT >> MAJOR_SHIFT))
842 ERR ("corrupted CBOR data (stringref index not an unsigned integer)"); 910 ERR ("corrupted CBOR data (stringref index not an unsigned integer)");
843 911
844 UV idx = decode_uint (dec); 912 UV idx = decode_uint (dec);
845 913
846 if (!dec->stringref || (int)idx > AvFILLp (dec->stringref)) 914 if (!dec->stringref || (int)idx > AvFILLp (dec->stringref))
853 case CBOR_TAG_VALUE_SHAREABLE: 921 case CBOR_TAG_VALUE_SHAREABLE:
854 { 922 {
855 if (ecb_expect_false (!dec->shareable)) 923 if (ecb_expect_false (!dec->shareable))
856 dec->shareable = (AV *)sv_2mortal ((SV *)newAV ()); 924 dec->shareable = (AV *)sv_2mortal ((SV *)newAV ());
857 925
926 if (dec->cbor.flags & F_ALLOW_CYCLES)
927 {
858 sv = newSV (0); 928 sv = newSV (0);
859 av_push (dec->shareable, SvREFCNT_inc_NN (sv)); 929 av_push (dec->shareable, SvREFCNT_inc_NN (sv));
860 930
861 SV *osv = decode_sv (dec); 931 SV *osv = decode_sv (dec);
862 sv_setsv (sv, osv); 932 sv_setsv (sv, osv);
863 SvREFCNT_dec_NN (osv); 933 SvREFCNT_dec_NN (osv);
934 }
935 else
936 {
937 av_push (dec->shareable, &PL_sv_undef);
938 int idx = AvFILLp (dec->shareable);
939 sv = decode_sv (dec);
940 av_store (dec->shareable, idx, SvREFCNT_inc_NN (sv));
941 }
864 } 942 }
865 break; 943 break;
866 944
867 case CBOR_TAG_VALUE_SHAREDREF: 945 case CBOR_TAG_VALUE_SHAREDREF:
868 { 946 {
869 if ((*dec->cur >> 5) != 0) 947 if ((*dec->cur >> MAJOR_SHIFT) != (MAJOR_POS_INT >> MAJOR_SHIFT))
870 ERR ("corrupted CBOR data (sharedref index not an unsigned integer)"); 948 ERR ("corrupted CBOR data (sharedref index not an unsigned integer)");
871 949
872 UV idx = decode_uint (dec); 950 UV idx = decode_uint (dec);
873 951
874 if (!dec->shareable || (int)idx > AvFILLp (dec->shareable)) 952 if (!dec->shareable || (int)idx > AvFILLp (dec->shareable))
875 ERR ("corrupted CBOR data (sharedref index out of bounds)"); 953 ERR ("corrupted CBOR data (sharedref index out of bounds)");
876 954
877 sv = SvREFCNT_inc_NN (AvARRAY (dec->shareable)[idx]); 955 sv = SvREFCNT_inc_NN (AvARRAY (dec->shareable)[idx]);
956
957 if (sv == &PL_sv_undef)
958 ERR ("cyclic CBOR data structure found, but allow_cycles is not enabled");
878 } 959 }
879 break; 960 break;
880 961
881 case CBOR_TAG_PERL_OBJECT: 962 case CBOR_TAG_PERL_OBJECT:
882 { 963 {
983static SV * 1064static SV *
984decode_sv (dec_t *dec) 1065decode_sv (dec_t *dec)
985{ 1066{
986 WANT (1); 1067 WANT (1);
987 1068
988 switch (*dec->cur >> 5) 1069 switch (*dec->cur >> MAJOR_SHIFT)
989 { 1070 {
990 case 0: // unsigned int 1071 case MAJOR_POS_INT >> MAJOR_SHIFT: return newSVuv (decode_uint (dec));
991 return newSVuv (decode_uint (dec)); 1072 case MAJOR_NEG_INT >> MAJOR_SHIFT: return newSViv (-1 - (IV)decode_uint (dec));
992 case 1: // negative int 1073 case MAJOR_BYTES >> MAJOR_SHIFT: return decode_str (dec, 0);
993 return newSViv (-1 - (IV)decode_uint (dec)); 1074 case MAJOR_TEXT >> MAJOR_SHIFT: return decode_str (dec, 1);
994 case 2: // octet string 1075 case MAJOR_ARRAY >> MAJOR_SHIFT: return decode_av (dec);
995 return decode_str (dec, 0); 1076 case MAJOR_MAP >> MAJOR_SHIFT: return decode_hv (dec);
996 case 3: // utf-8 string 1077 case MAJOR_TAG >> MAJOR_SHIFT: return decode_tagged (dec);
997 return decode_str (dec, 1); 1078
998 case 4: // array 1079 case MAJOR_MISC >> MAJOR_SHIFT:
999 return decode_av (dec);
1000 case 5: // map
1001 return decode_hv (dec);
1002 case 6: // tag
1003 return decode_tagged (dec);
1004 case 7: // misc
1005 switch (*dec->cur++ & 31) 1080 switch (*dec->cur++ & MINOR_MASK)
1006 { 1081 {
1007 case 20: 1082 case SIMPLE_FALSE:
1008#if CBOR_SLOW 1083#if CBOR_SLOW
1009 types_false = get_bool ("Types::Serialiser::false"); 1084 types_false = get_bool ("Types::Serialiser::false");
1010#endif 1085#endif
1011 return newSVsv (types_false); 1086 return newSVsv (types_false);
1012 case 21: 1087 case SIMPLE_TRUE:
1013#if CBOR_SLOW 1088#if CBOR_SLOW
1014 types_true = get_bool ("Types::Serialiser::true"); 1089 types_true = get_bool ("Types::Serialiser::true");
1015#endif 1090#endif
1016 return newSVsv (types_true); 1091 return newSVsv (types_true);
1017 case 22: 1092 case SIMPLE_NULL:
1018 return newSVsv (&PL_sv_undef); 1093 return newSVsv (&PL_sv_undef);
1019 case 23: 1094 case SIMPLE_UNDEF:
1020#if CBOR_SLOW 1095#if CBOR_SLOW
1021 types_error = get_bool ("Types::Serialiser::error"); 1096 types_error = get_bool ("Types::Serialiser::error");
1022#endif 1097#endif
1023 return newSVsv (types_error); 1098 return newSVsv (types_error);
1024 1099
1025 case 25: 1100 case MISC_FLOAT16:
1026 { 1101 {
1027 WANT (2); 1102 WANT (2);
1028 1103
1029 uint16_t fp = (dec->cur[0] << 8) | dec->cur[1]; 1104 uint16_t fp = (dec->cur[0] << 8) | dec->cur[1];
1030 dec->cur += 2; 1105 dec->cur += 2;
1031 1106
1032 return newSVnv (ecb_binary16_to_float (fp)); 1107 return newSVnv (ecb_binary16_to_float (fp));
1033 } 1108 }
1034 1109
1035 case 26: 1110 case MISC_FLOAT32:
1036 { 1111 {
1037 uint32_t fp; 1112 uint32_t fp;
1038 WANT (4); 1113 WANT (4);
1039 memcpy (&fp, dec->cur, 4); 1114 memcpy (&fp, dec->cur, 4);
1040 dec->cur += 4; 1115 dec->cur += 4;
1043 fp = ecb_bswap32 (fp); 1118 fp = ecb_bswap32 (fp);
1044 1119
1045 return newSVnv (ecb_binary32_to_float (fp)); 1120 return newSVnv (ecb_binary32_to_float (fp));
1046 } 1121 }
1047 1122
1048 case 27: 1123 case MISC_FLOAT64:
1049 { 1124 {
1050 uint64_t fp; 1125 uint64_t fp;
1051 WANT (8); 1126 WANT (8);
1052 memcpy (&fp, dec->cur, 8); 1127 memcpy (&fp, dec->cur, 8);
1053 dec->cur += 8; 1128 dec->cur += 8;
1056 fp = ecb_bswap64 (fp); 1131 fp = ecb_bswap64 (fp);
1057 1132
1058 return newSVnv (ecb_binary64_to_double (fp)); 1133 return newSVnv (ecb_binary64_to_double (fp));
1059 } 1134 }
1060 1135
1061 // 0..19 unassigned 1136 // 0..19 unassigned simple
1062 // 24 reserved + unassigned (reserved values are not encodable) 1137 // 24 reserved + unassigned (reserved values are not encodable)
1063 default: 1138 default:
1064 ERR ("corrupted CBOR data (reserved/unassigned major 7 value)"); 1139 ERR ("corrupted CBOR data (reserved/unassigned major 7 value)");
1065 } 1140 }
1066 1141
1154void shrink (CBOR *self, int enable = 1) 1229void shrink (CBOR *self, int enable = 1)
1155 ALIAS: 1230 ALIAS:
1156 shrink = F_SHRINK 1231 shrink = F_SHRINK
1157 allow_unknown = F_ALLOW_UNKNOWN 1232 allow_unknown = F_ALLOW_UNKNOWN
1158 allow_sharing = F_ALLOW_SHARING 1233 allow_sharing = F_ALLOW_SHARING
1234 allow_cycles = F_ALLOW_CYCLES
1159 pack_strings = F_PACK_STRINGS 1235 pack_strings = F_PACK_STRINGS
1236 validate_utf8 = F_VALIDATE_UTF8
1160 PPCODE: 1237 PPCODE:
1161{ 1238{
1162 if (enable) 1239 if (enable)
1163 self->flags |= ix; 1240 self->flags |= ix;
1164 else 1241 else
1170void get_shrink (CBOR *self) 1247void get_shrink (CBOR *self)
1171 ALIAS: 1248 ALIAS:
1172 get_shrink = F_SHRINK 1249 get_shrink = F_SHRINK
1173 get_allow_unknown = F_ALLOW_UNKNOWN 1250 get_allow_unknown = F_ALLOW_UNKNOWN
1174 get_allow_sharing = F_ALLOW_SHARING 1251 get_allow_sharing = F_ALLOW_SHARING
1252 get_allow_cycles = F_ALLOW_CYCLES
1175 get_pack_strings = F_PACK_STRINGS 1253 get_pack_strings = F_PACK_STRINGS
1254 get_validate_utf8 = F_VALIDATE_UTF8
1176 PPCODE: 1255 PPCODE:
1177 XPUSHs (boolSV (self->flags & ix)); 1256 XPUSHs (boolSV (self->flags & ix));
1178 1257
1179void max_depth (CBOR *self, U32 max_depth = 0x80000000UL) 1258void max_depth (CBOR *self, U32 max_depth = 0x80000000UL)
1180 PPCODE: 1259 PPCODE:
1236 cbor_free (self); 1315 cbor_free (self);
1237 1316
1238PROTOTYPES: ENABLE 1317PROTOTYPES: ENABLE
1239 1318
1240void encode_cbor (SV *scalar) 1319void encode_cbor (SV *scalar)
1320 ALIAS:
1321 encode_cbor = 0
1322 encode_cbor_sharing = F_ALLOW_SHARING
1241 PPCODE: 1323 PPCODE:
1242{ 1324{
1243 CBOR cbor; 1325 CBOR cbor;
1244 cbor_init (&cbor); 1326 cbor_init (&cbor);
1327 cbor.flags |= ix;
1245 PUTBACK; scalar = encode_cbor (scalar, &cbor); SPAGAIN; 1328 PUTBACK; scalar = encode_cbor (scalar, &cbor); SPAGAIN;
1246 XPUSHs (scalar); 1329 XPUSHs (scalar);
1247} 1330}
1248 1331
1249void decode_cbor (SV *cborstr) 1332void decode_cbor (SV *cborstr)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines