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.54 by root, Sun Apr 24 20:08:41 2016 UTC vs.
Revision 1.58 by root, Fri Nov 25 13:27:29 2016 UTC

665 SV *decode_tagged; 665 SV *decode_tagged;
666} dec_t; 666} dec_t;
667 667
668#define ERR(reason) SB if (!dec->err) dec->err = reason; goto fail; SE 668#define ERR(reason) SB if (!dec->err) dec->err = reason; goto fail; SE
669 669
670#define WANT(len) if (ecb_expect_false (dec->cur + len > dec->end)) ERR ("unexpected end of CBOR data") 670#define WANT(len) if (ecb_expect_false ((UV)(dec->end - dec->cur) < (UV)len)) ERR ("unexpected end of CBOR data")
671 671
672#define DEC_INC_DEPTH if (++dec->depth > dec->cbor.max_depth) ERR (ERR_NESTING_EXCEEDED) 672#define DEC_INC_DEPTH if (ecb_expect_false (++dec->depth > dec->cbor.max_depth)) ERR (ERR_NESTING_EXCEEDED)
673#define DEC_DEC_DEPTH --dec->depth 673#define DEC_DEC_DEPTH --dec->depth
674 674
675static UV 675static UV
676decode_uint (dec_t *dec) 676decode_uint (dec_t *dec)
677{ 677{
754 av_push (av, decode_sv (dec)); 754 av_push (av, decode_sv (dec));
755 } 755 }
756 } 756 }
757 else 757 else
758 { 758 {
759 int i, len = decode_uint (dec); 759 UV i, len = decode_uint (dec);
760 760
761 WANT (len); // complexity check for av_fill - need at least one byte per value, do not allow supersize arrays 761 WANT (len); // complexity check for av_fill - need at least one byte per value, do not allow supersize arrays
762 av_fill (av, len - 1); 762 av_fill (av, len - 1);
763 763
764 for (i = 0; i < len; ++i) 764 for (i = 0; i < len; ++i)
781 // byte or utf-8 strings as keys, but only when !stringref 781 // byte or utf-8 strings as keys, but only when !stringref
782 782
783 if (ecb_expect_true (!dec->stringref)) 783 if (ecb_expect_true (!dec->stringref))
784 if (ecb_expect_true ((U8)(*dec->cur - MAJOR_BYTES) <= LENGTH_EXT8)) 784 if (ecb_expect_true ((U8)(*dec->cur - MAJOR_BYTES) <= LENGTH_EXT8))
785 { 785 {
786 I32 len = decode_uint (dec); 786 STRLEN len = decode_uint (dec);
787 char *key = (char *)dec->cur; 787 char *key = (char *)dec->cur;
788 788
789 WANT (len); 789 WANT (len);
790 dec->cur += len; 790 dec->cur += len;
791 791
793 793
794 return; 794 return;
795 } 795 }
796 else if (ecb_expect_true ((U8)(*dec->cur - MAJOR_TEXT) <= LENGTH_EXT8)) 796 else if (ecb_expect_true ((U8)(*dec->cur - MAJOR_TEXT) <= LENGTH_EXT8))
797 { 797 {
798 I32 len = decode_uint (dec); 798 STRLEN len = decode_uint (dec);
799 char *key = (char *)dec->cur; 799 char *key = (char *)dec->cur;
800 800
801 WANT (len); 801 WANT (len);
802 dec->cur += len; 802 dec->cur += len;
803 803
844 decode_he (dec, hv); 844 decode_he (dec, hv);
845 } 845 }
846 } 846 }
847 else 847 else
848 { 848 {
849 int pairs = decode_uint (dec); 849 UV pairs = decode_uint (dec);
850
851 WANT (pairs); // complexity check - need at least one byte per value, do not allow supersize hashes
850 852
851 while (pairs--) 853 while (pairs--)
852 decode_he (dec, hv); 854 decode_he (dec, hv);
853 } 855 }
854 856
942 sv = newRV_noinc (decode_sv (dec)); 944 sv = newRV_noinc (decode_sv (dec));
943 break; 945 break;
944 946
945 case CBOR_TAG_STRINGREF_NAMESPACE: 947 case CBOR_TAG_STRINGREF_NAMESPACE:
946 { 948 {
949 // do nmot use SAVETMPS/FREETMPS, as these will
950 // erase mortalised caches, e.g. "shareable"
947 ENTER; SAVETMPS; 951 ENTER;
948 952
949 SAVESPTR (dec->stringref); 953 SAVESPTR (dec->stringref);
950 dec->stringref = (AV *)sv_2mortal ((SV *)newAV ()); 954 dec->stringref = (AV *)sv_2mortal ((SV *)newAV ());
951 955
952 sv = decode_sv (dec); 956 sv = decode_sv (dec);
953 957
954 FREETMPS; LEAVE; 958 LEAVE;
955 } 959 }
956 break; 960 break;
957 961
958 case CBOR_TAG_STRINGREF: 962 case CBOR_TAG_STRINGREF:
959 { 963 {
1062 } 1066 }
1063 break; 1067 break;
1064 1068
1065 default: 1069 default:
1066 { 1070 {
1071 SV *tag_sv = newSVuv (tag);
1072
1067 sv = decode_sv (dec); 1073 sv = decode_sv (dec);
1068 1074
1069 dSP; 1075 dSP;
1070 ENTER; SAVETMPS; 1076 ENTER; SAVETMPS;
1071 SAVESTACK_POS (); 1077 SAVESTACK_POS ();
1072 PUSHMARK (SP); 1078 PUSHMARK (SP);
1073 EXTEND (SP, 2); 1079 EXTEND (SP, 2);
1074 PUSHs (newSVuv (tag)); 1080 PUSHs (tag_sv);
1075 PUSHs (sv); 1081 PUSHs (sv);
1076 1082
1077 PUTBACK; 1083 PUTBACK;
1078 int count = call_sv (dec->cbor.filter ? dec->cbor.filter : default_filter, G_ARRAY | G_EVAL); 1084 int count = call_sv (dec->cbor.filter ? dec->cbor.filter : default_filter, G_ARRAY | G_EVAL);
1079 SPAGAIN; 1085 SPAGAIN;
1080 1086
1081 if (SvTRUE (ERRSV)) 1087 if (SvTRUE (ERRSV))
1082 { 1088 {
1089 SvREFCNT_dec (tag_sv);
1083 FREETMPS; LEAVE; 1090 FREETMPS; LEAVE;
1084 ERR (SvPVutf8_nolen (sv_2mortal (SvREFCNT_inc (ERRSV)))); 1091 ERR (SvPVutf8_nolen (sv_2mortal (SvREFCNT_inc (ERRSV))));
1085 } 1092 }
1086 1093
1087 if (count) 1094 if (count)
1088 { 1095 {
1096 SvREFCNT_dec (tag_sv);
1089 SvREFCNT_dec (sv); 1097 SvREFCNT_dec (sv);
1090 sv = SvREFCNT_inc (POPs); 1098 sv = SvREFCNT_inc (POPs);
1091 } 1099 }
1092 else 1100 else
1093 { 1101 {
1094 AV *av = newAV (); 1102 AV *av = newAV ();
1095 av_push (av, newSVuv (tag)); 1103 av_push (av, tag_sv);
1096 av_push (av, sv); 1104 av_push (av, sv);
1097 1105
1098 HV *tagged_stash = !CBOR_SLOW || cbor_tagged_stash 1106 HV *tagged_stash = !CBOR_SLOW || cbor_tagged_stash
1099 ? cbor_tagged_stash 1107 ? cbor_tagged_stash
1100 : gv_stashpv ("CBOR::XS::Tagged" , 1); 1108 : gv_stashpv ("CBOR::XS::Tagged" , 1);
1229 1237
1230 if (dec.err) 1238 if (dec.err)
1231 { 1239 {
1232 if (dec.shareable) 1240 if (dec.shareable)
1233 { 1241 {
1234 // need to break cyclic links, which whould all be in shareable 1242 // need to break cyclic links, which would all be in shareable
1235 int i; 1243 int i;
1236 SV **svp; 1244 SV **svp;
1237 1245
1238 for (i = av_len (dec.shareable) + 1; i--; ) 1246 for (i = av_len (dec.shareable) + 1; i--; )
1239 if ((svp = av_fetch (dec.shareable, i, 0))) 1247 if ((svp = av_fetch (dec.shareable, i, 0)))
1392 1400
1393 default_filter = newSVpv ("CBOR::XS::default_filter", 0); 1401 default_filter = newSVpv ("CBOR::XS::default_filter", 0);
1394 1402
1395 sv_cbor = newSVpv ("CBOR", 0); 1403 sv_cbor = newSVpv ("CBOR", 0);
1396 SvREADONLY_on (sv_cbor); 1404 SvREADONLY_on (sv_cbor);
1405
1406 assert (("STRLEN must be an unsigned type", 0 <= (STRLEN)-1));
1397} 1407}
1398 1408
1399PROTOTYPES: DISABLE 1409PROTOTYPES: DISABLE
1400 1410
1401void CLONE (...) 1411void CLONE (...)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines