1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
|
/*
$Id: Unicode.xs,v 2.19 2019/01/21 03:09:59 dankogai Exp $
*/
#define IN_UNICODE_XS
#define PERL_NO_GET_CONTEXT
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "../Encode/encode.h"
#define FBCHAR 0xFFFd
#define BOM_BE 0xFeFF
#define BOM16LE 0xFFFe
#define BOM32LE 0xFFFe0000
#define issurrogate(x) (0xD800 <= (x) && (x) <= 0xDFFF )
#define isHiSurrogate(x) (0xD800 <= (x) && (x) < 0xDC00 )
#define isLoSurrogate(x) (0xDC00 <= (x) && (x) <= 0xDFFF )
#define invalid_ucs2(x) ( issurrogate(x) || 0xFFFF < (x) )
#ifndef SVfARG
#define SVfARG(p) ((void*)(p))
#endif
#define PERLIO_BUFSIZ 1024 /* XXX value comes from PerlIOEncode_get_base */
/* Avoid wasting too much space in the result buffer */
/* static void */
/* shrink_buffer(SV *result) */
/* { */
/* if (SvLEN(result) > 42 + SvCUR(result)) { */
/* char *buf; */
/* STRLEN len = 1 + SvCUR(result); /\* include the NUL byte *\/ */
/* New(0, buf, len, char); */
/* Copy(SvPVX(result), buf, len, char); */
/* Safefree(SvPVX(result)); */
/* SvPV_set(result, buf); */
/* SvLEN_set(result, len); */
/* } */
/* } */
#define shrink_buffer(result) { \
if (SvLEN(result) > 42 + SvCUR(result)) { \
char *newpv; \
STRLEN newlen = 1 + SvCUR(result); /* include the NUL byte */ \
New(0, newpv, newlen, char); \
Copy(SvPVX(result), newpv, newlen, char); \
Safefree(SvPVX(result)); \
SvPV_set(result, newpv); \
SvLEN_set(result, newlen); \
} \
}
static UV
enc_unpack(pTHX_ U8 **sp, U8 *e, STRLEN size, U8 endian)
{
U8 *s = *sp;
UV v = 0;
if (s+size > e) {
croak("Partial character %c",(char) endian);
}
switch(endian) {
case 'N':
v = *s++;
v = (v << 8) | *s++;
/* FALLTHROUGH */
case 'n':
v = (v << 8) | *s++;
v = (v << 8) | *s++;
break;
case 'V':
case 'v':
v |= *s++;
v |= (*s++ << 8);
if (endian == 'v')
break;
v |= (*s++ << 16);
v |= ((UV)*s++ << 24);
break;
default:
croak("Unknown endian %c",(char) endian);
break;
}
*sp = s;
return v;
}
static void
enc_pack(pTHX_ SV *result, STRLEN size, U8 endian, UV value)
{
U8 *d = (U8 *) SvPV_nolen(result);
switch(endian) {
case 'v':
case 'V':
d += SvCUR(result);
SvCUR_set(result,SvCUR(result)+size);
while (size--) {
*d++ = (U8)(value & 0xFF);
value >>= 8;
}
break;
case 'n':
case 'N':
SvCUR_set(result,SvCUR(result)+size);
d += SvCUR(result);
while (size--) {
*--d = (U8)(value & 0xFF);
value >>= 8;
}
break;
default:
croak("Unknown endian %c",(char) endian);
break;
}
}
MODULE = Encode::Unicode PACKAGE = Encode::Unicode
PROTOTYPES: DISABLE
#define attr(k) (hv_exists((HV *)SvRV(obj),"" k "",sizeof(k)-1) ? \
*hv_fetch((HV *)SvRV(obj),"" k "",sizeof(k)-1,0) : &PL_sv_undef)
void
decode(obj, str, check = 0)
SV * obj
SV * str
IV check
CODE:
{
SV *name = attr("Name");
SV *sve = attr("endian");
U8 endian = *((U8 *)SvPV_nolen(sve));
SV *svs = attr("size");
int size = SvIV(svs);
int ucs2 = -1; /* only needed in the event of surrogate pairs */
SV *result = newSVpvn("",0);
STRLEN usize = (size > 0 ? size : 1); /* protect against rogue size<=0 */
STRLEN ulen;
STRLEN resultbuflen;
U8 *resultbuf;
U8 *s;
U8 *e;
bool modify = (check && !(check & ENCODE_LEAVE_SRC));
bool temp_result;
SvGETMAGIC(str);
if (!SvOK(str))
XSRETURN_UNDEF;
s = modify ? (U8 *)SvPV_force_nomg(str, ulen) : (U8 *)SvPV_nomg(str, ulen);
if (SvUTF8(str)) {
if (!modify) {
SV *tmp = sv_2mortal(newSVpvn((char *)s, ulen));
SvUTF8_on(tmp);
if (SvTAINTED(str))
SvTAINTED_on(tmp);
str = tmp;
s = (U8 *)SvPVX(str);
}
if (ulen) {
if (!utf8_to_bytes(s, &ulen))
croak("Wide character");
SvCUR_set(str, ulen);
}
SvUTF8_off(str);
}
e = s+ulen;
/* Optimise for the common case of being called from PerlIOEncode_fill()
with a standard length buffer. In this case the result SV's buffer is
only used temporarily, so we can afford to allocate the maximum needed
and not care about unused space. */
temp_result = (ulen == PERLIO_BUFSIZ);
ST(0) = sv_2mortal(result);
SvUTF8_on(result);
if (!endian && s+size <= e) {
SV *sv;
UV bom;
endian = (size == 4) ? 'N' : 'n';
bom = enc_unpack(aTHX_ &s,e,size,endian);
if (bom != BOM_BE) {
if (bom == BOM16LE) {
endian = 'v';
}
else if (bom == BOM32LE) {
endian = 'V';
}
else {
/* No BOM found, use big-endian fallback as specified in
* RFC2781 and the Unicode Standard version 8.0:
*
* The UTF-16 encoding scheme may or may not begin with
* a BOM. However, when there is no BOM, and in the
* absence of a higher-level protocol, the byte order
* of the UTF-16 encoding scheme is big-endian.
*
* If the first two octets of the text is not 0xFE
* followed by 0xFF, and is not 0xFF followed by 0xFE,
* then the text SHOULD be interpreted as big-endian.
*/
s -= size;
}
}
#if 1
/* Update endian for next sequence */
sv = attr("renewed");
if (SvTRUE(sv)) {
(void)hv_store((HV *)SvRV(obj),"endian",6,newSVpv((char *)&endian,1),0);
}
#endif
}
if (temp_result) {
resultbuflen = 1 + ulen/usize * UTF8_MAXLEN;
} else {
/* Preallocate the buffer to the minimum possible space required. */
resultbuflen = ulen/usize + UTF8_MAXLEN + 1;
}
resultbuf = (U8 *) SvGROW(result, resultbuflen);
while (s < e && s+size <= e) {
UV ord = enc_unpack(aTHX_ &s,e,size,endian);
U8 *d;
HV *hv = NULL;
if (issurrogate(ord)) {
if (ucs2 == -1) {
SV *sv = attr("ucs2");
ucs2 = SvTRUE(sv);
}
if (ucs2 || size == 4) {
if (check & ENCODE_DIE_ON_ERR) {
croak("%" SVf ":no surrogates allowed %" UVxf,
SVfARG(name), ord);
}
if (encode_ckWARN(check, WARN_SURROGATE)) {
warner(packWARN(WARN_SURROGATE),
"%" SVf ":no surrogates allowed %" UVxf,
SVfARG(name), ord);
}
ord = FBCHAR;
}
else {
UV lo;
if (!isHiSurrogate(ord)) {
if (check & ENCODE_DIE_ON_ERR) {
croak("%" SVf ":Malformed HI surrogate %" UVxf,
SVfARG(name), ord);
}
if (encode_ckWARN(check, WARN_SURROGATE)) {
warner(packWARN(WARN_SURROGATE),
"%" SVf ":Malformed HI surrogate %" UVxf,
SVfARG(name), ord);
}
ord = FBCHAR;
}
else if (s+size > e) {
if (check & ENCODE_STOP_AT_PARTIAL) {
s -= size;
break;
}
if (check & ENCODE_DIE_ON_ERR) {
croak("%" SVf ":Malformed HI surrogate %" UVxf,
SVfARG(name), ord);
}
if (encode_ckWARN(check, WARN_SURROGATE)) {
warner(packWARN(WARN_SURROGATE),
"%" SVf ":Malformed HI surrogate %" UVxf,
SVfARG(name), ord);
}
ord = FBCHAR;
}
else {
lo = enc_unpack(aTHX_ &s,e,size,endian);
if (!isLoSurrogate(lo)) {
if (check & ENCODE_DIE_ON_ERR) {
croak("%" SVf ":Malformed LO surrogate %" UVxf,
SVfARG(name), ord);
}
if (encode_ckWARN(check, WARN_SURROGATE)) {
warner(packWARN(WARN_SURROGATE),
"%" SVf ":Malformed LO surrogate %" UVxf,
SVfARG(name), ord);
}
s -= size;
ord = FBCHAR;
}
else {
ord = 0x10000 + ((ord - 0xD800) << 10) + (lo - 0xDC00);
}
}
}
}
if ((ord & 0xFFFE) == 0xFFFE || (ord >= 0xFDD0 && ord <= 0xFDEF)) {
if (check & ENCODE_DIE_ON_ERR) {
croak("%" SVf ":Unicode character %" UVxf " is illegal",
SVfARG(name), ord);
}
if (encode_ckWARN(check, WARN_NONCHAR)) {
warner(packWARN(WARN_NONCHAR),
"%" SVf ":Unicode character %" UVxf " is illegal",
SVfARG(name), ord);
}
ord = FBCHAR;
}
if (resultbuflen < SvCUR(result) + UTF8_MAXLEN + 1) {
/* Do not allocate >8Mb more than the minimum needed.
This prevents allocating too much in the rogue case of a large
input consisting initially of long sequence uft8-byte unicode
chars followed by single utf8-byte chars. */
/* +1
fixes Unicode.xs!decode_xs n-byte heap-overflow
*/
STRLEN remaining = (e - s)/usize + 1; /* +1 to avoid the leak */
STRLEN max_alloc = remaining + (8*1024*1024);
STRLEN est_alloc = remaining * UTF8_MAXLEN;
STRLEN newlen = SvLEN(result) + /* min(max_alloc, est_alloc) */
(est_alloc > max_alloc ? max_alloc : est_alloc);
resultbuf = (U8 *) SvGROW(result, newlen);
resultbuflen = SvLEN(result);
}
d = uvchr_to_utf8_flags_msgs(resultbuf+SvCUR(result), ord, UNICODE_DISALLOW_ILLEGAL_INTERCHANGE | UNICODE_WARN_ILLEGAL_INTERCHANGE, &hv);
if (hv) {
SV *message = *hv_fetch(hv, "text", 4, 0);
U32 categories = SvUVx(*hv_fetch(hv, "warn_categories", 15, 0));
sv_2mortal((SV *)hv);
if (check & ENCODE_DIE_ON_ERR)
croak("%" SVf, SVfARG(message));
if (encode_ckWARN_packed(check, categories))
warner(categories, "%" SVf, SVfARG(message));
d = uvchr_to_utf8_flags(resultbuf+SvCUR(result), FBCHAR, 0);
}
SvCUR_set(result, d - (U8 *)SvPVX(result));
}
if (s < e) {
/* unlikely to happen because it's fixed-length -- dankogai */
if (check & ENCODE_DIE_ON_ERR)
croak("%" SVf ":Partial character", SVfARG(name));
if (encode_ckWARN(check, WARN_UTF8)) {
warner(packWARN(WARN_UTF8),"%" SVf ":Partial character", SVfARG(name));
}
}
if (check && !(check & ENCODE_LEAVE_SRC)) {
if (s < e) {
Move(s,SvPVX(str),e-s,U8);
SvCUR_set(str,(e-s));
}
else {
SvCUR_set(str,0);
}
*SvEND(str) = '\0';
SvSETMAGIC(str);
}
if (!temp_result) shrink_buffer(result);
if (SvTAINTED(str)) SvTAINTED_on(result); /* propagate taintedness */
XSRETURN(1);
}
void
encode(obj, utf8, check = 0)
SV * obj
SV * utf8
IV check
CODE:
{
SV *name = attr("Name");
SV *sve = attr("endian");
U8 endian = *((U8 *)SvPV_nolen(sve));
SV *svs = attr("size");
const int size = SvIV(svs);
int ucs2 = -1; /* only needed if there is invalid_ucs2 input */
const STRLEN usize = (size > 0 ? size : 1);
SV *result = newSVpvn("", 0);
STRLEN ulen;
U8 *s;
U8 *e;
bool modify = (check && !(check & ENCODE_LEAVE_SRC));
bool temp_result;
SvGETMAGIC(utf8);
if (!SvOK(utf8))
XSRETURN_UNDEF;
s = modify ? (U8 *)SvPV_force_nomg(utf8, ulen) : (U8 *)SvPV_nomg(utf8, ulen);
if (!SvUTF8(utf8)) {
if (!modify) {
SV *tmp = sv_2mortal(newSVpvn((char *)s, ulen));
if (SvTAINTED(utf8))
SvTAINTED_on(tmp);
utf8 = tmp;
}
sv_utf8_upgrade_nomg(utf8);
s = (U8 *)SvPV_nomg(utf8, ulen);
}
e = s+ulen;
/* Optimise for the common case of being called from PerlIOEncode_flush()
with a standard length buffer. In this case the result SV's buffer is
only used temporarily, so we can afford to allocate the maximum needed
and not care about unused space. */
temp_result = (ulen == PERLIO_BUFSIZ);
ST(0) = sv_2mortal(result);
/* Preallocate the result buffer to the maximum possible size.
ie. assume each UTF8 byte is 1 character.
Then shrink the result's buffer if necesary at the end. */
SvGROW(result, ((ulen+1) * usize));
if (!endian) {
SV *sv;
endian = (size == 4) ? 'N' : 'n';
enc_pack(aTHX_ result,size,endian,BOM_BE);
#if 1
/* Update endian for next sequence */
sv = attr("renewed");
if (SvTRUE(sv)) {
(void)hv_store((HV *)SvRV(obj),"endian",6,newSVpv((char *)&endian,1),0);
}
#endif
}
while (s < e && s+UTF8SKIP(s) <= e) {
STRLEN len;
AV *msgs = NULL;
UV ord = utf8n_to_uvchr_msgs(s, e-s, &len, UTF8_DISALLOW_ILLEGAL_INTERCHANGE | UTF8_WARN_ILLEGAL_INTERCHANGE, NULL, &msgs);
if (msgs) {
SSize_t i;
SSize_t len = av_len(msgs)+1;
sv_2mortal((SV *)msgs);
for (i = 0; i < len; ++i) {
SV *sv = *av_fetch(msgs, i, 0);
HV *hv = (HV *)SvRV(sv);
SV *message = *hv_fetch(hv, "text", 4, 0);
U32 categories = SvUVx(*hv_fetch(hv, "warn_categories", 15, 0));
if (check & ENCODE_DIE_ON_ERR)
croak("%" SVf, SVfARG(message));
if (encode_ckWARN_packed(check, categories))
warner(categories, "%" SVf, SVfARG(message));
}
}
if ((size != 4 && invalid_ucs2(ord)) || (ord == 0 && *s != 0)) {
if (!issurrogate(ord)) {
if (ucs2 == -1) {
SV *sv = attr("ucs2");
ucs2 = SvTRUE(sv);
}
if (ucs2 || ord > 0x10FFFF) {
if (check & ENCODE_DIE_ON_ERR) {
croak("%" SVf ":code point \"\\x{%" UVxf "}\" too high",
SVfARG(name),ord);
}
if (encode_ckWARN(check, WARN_NON_UNICODE)) {
warner(packWARN(WARN_NON_UNICODE),
"%" SVf ":code point \"\\x{%" UVxf "}\" too high",
SVfARG(name),ord);
}
enc_pack(aTHX_ result,size,endian,FBCHAR);
} else if (ord == 0) {
enc_pack(aTHX_ result,size,endian,FBCHAR);
} else {
UV hi = ((ord - 0x10000) >> 10) + 0xD800;
UV lo = ((ord - 0x10000) & 0x3FF) + 0xDC00;
enc_pack(aTHX_ result,size,endian,hi);
enc_pack(aTHX_ result,size,endian,lo);
}
}
else {
/* not supposed to happen */
enc_pack(aTHX_ result,size,endian,FBCHAR);
}
}
else {
enc_pack(aTHX_ result,size,endian,ord);
}
s += len;
}
if (s < e) {
/* UTF-8 partial char happens often on PerlIO.
Since this is okay and normal, we do not warn.
But this is critical when you choose to LEAVE_SRC
in which case we die */
if (check & (ENCODE_DIE_ON_ERR|ENCODE_LEAVE_SRC)) {
Perl_croak(aTHX_ "%" SVf ":partial character is not allowed "
"when CHECK = 0x%" UVuf,
SVfARG(name), check);
}
}
if (check && !(check & ENCODE_LEAVE_SRC)) {
if (s < e) {
Move(s,SvPVX(utf8),e-s,U8);
SvCUR_set(utf8,(e-s));
}
else {
SvCUR_set(utf8,0);
}
*SvEND(utf8) = '\0';
SvSETMAGIC(utf8);
}
if (!temp_result) shrink_buffer(result);
if (SvTAINTED(utf8)) SvTAINTED_on(result); /* propagate taintedness */
XSRETURN(1);
}
|