This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
reindent tiearray.t
[perl5.git] / utf8.c
CommitLineData
a0ed51b3
LW
1/* utf8.c
2 *
1129b882 3 * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
b94e2f88 4 * by Larry Wall and others
a0ed51b3
LW
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
9 */
10
11/*
4ac71550
TC
12 * 'What a fix!' said Sam. 'That's the one place in all the lands we've ever
13 * heard of that we don't want to see any closer; and that's the one place
14 * we're trying to get to! And that's just where we can't get, nohow.'
15 *
cdad3b53 16 * [p.603 of _The Lord of the Rings_, IV/I: "The Taming of Sméagol"]
a0ed51b3
LW
17 *
18 * 'Well do I understand your speech,' he answered in the same language;
19 * 'yet few strangers do so. Why then do you not speak in the Common Tongue,
4ac71550 20 * as is the custom in the West, if you wish to be answered?'
cdad3b53 21 * --Gandalf, addressing Théoden's door wardens
4ac71550
TC
22 *
23 * [p.508 of _The Lord of the Rings_, III/vi: "The King of the Golden Hall"]
a0ed51b3
LW
24 *
25 * ...the travellers perceived that the floor was paved with stones of many
26 * hues; branching runes and strange devices intertwined beneath their feet.
4ac71550
TC
27 *
28 * [p.512 of _The Lord of the Rings_, III/vi: "The King of the Golden Hall"]
a0ed51b3
LW
29 */
30
31#include "EXTERN.h"
864dbfa3 32#define PERL_IN_UTF8_C
a0ed51b3 33#include "perl.h"
b992490d 34#include "invlist_inline.h"
a0ed51b3 35
806547a7 36static const char malformed_text[] = "Malformed UTF-8 character";
27da23d5 37static const char unees[] =
806547a7 38 "Malformed UTF-8 character (unexpected end of string)";
760c7c2f 39static const char cp_above_legal_max[] =
2d212e86 40 "Use of code point 0x%"UVXf" is deprecated; the permissible max is 0x%"UVXf"";
760c7c2f 41
114d9c4d 42#define MAX_NON_DEPRECATED_CP ((UV) (IV_MAX))
901b21bf 43
48ef279e 44/*
ccfc67b7 45=head1 Unicode Support
7fefc6c1 46These are various utility functions for manipulating UTF8-encoded
72d33970 47strings. For the uninitiated, this is a method of representing arbitrary
61296642 48Unicode characters as a variable number of bytes, in such a way that
56da48f7
DM
49characters in the ASCII range are unmodified, and a zero byte never appears
50within non-zero characters.
166f8a29 51
eaf7a4d2
CS
52=cut
53*/
54
55/*
378516de 56=for apidoc uvoffuni_to_utf8_flags
eebe1485 57
a27992cc 58THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES.
de69f3af
KW
59Instead, B<Almost all code should use L</uvchr_to_utf8> or
60L</uvchr_to_utf8_flags>>.
a27992cc 61
de69f3af
KW
62This function is like them, but the input is a strict Unicode
63(as opposed to native) code point. Only in very rare circumstances should code
64not be using the native code point.
949cf498 65
efa9cd84 66For details, see the description for L</uvchr_to_utf8_flags>.
949cf498 67
eebe1485
SC
68=cut
69*/
70
8ee1cdcb
KW
71#define HANDLE_UNICODE_SURROGATE(uv, flags) \
72 STMT_START { \
73 if (flags & UNICODE_WARN_SURROGATE) { \
74 Perl_ck_warner_d(aTHX_ packWARN(WARN_SURROGATE), \
75 "UTF-16 surrogate U+%04"UVXf, uv); \
76 } \
77 if (flags & UNICODE_DISALLOW_SURROGATE) { \
78 return NULL; \
79 } \
80 } STMT_END;
81
82#define HANDLE_UNICODE_NONCHAR(uv, flags) \
83 STMT_START { \
84 if (flags & UNICODE_WARN_NONCHAR) { \
85 Perl_ck_warner_d(aTHX_ packWARN(WARN_NONCHAR), \
86 "Unicode non-character U+%04"UVXf" is not " \
87 "recommended for open interchange", uv); \
88 } \
89 if (flags & UNICODE_DISALLOW_NONCHAR) { \
90 return NULL; \
91 } \
92 } STMT_END;
93
ba6ed43c
KW
94/* Use shorter names internally in this file */
95#define SHIFT UTF_ACCUMULATION_SHIFT
96#undef MARK
97#define MARK UTF_CONTINUATION_MARK
98#define MASK UTF_CONTINUATION_MASK
99
dfe13c55 100U8 *
378516de 101Perl_uvoffuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
a0ed51b3 102{
378516de 103 PERL_ARGS_ASSERT_UVOFFUNI_TO_UTF8_FLAGS;
7918f24d 104
2d1545e5 105 if (OFFUNI_IS_INVARIANT(uv)) {
4c8cd605 106 *d++ = LATIN1_TO_NATIVE(uv);
d9432125
KW
107 return d;
108 }
facc1dc2 109
3ea68d71 110 if (uv <= MAX_UTF8_TWO_BYTE) {
facc1dc2
KW
111 *d++ = I8_TO_NATIVE_UTF8(( uv >> SHIFT) | UTF_START_MARK(2));
112 *d++ = I8_TO_NATIVE_UTF8(( uv & MASK) | MARK);
3ea68d71
KW
113 return d;
114 }
d9432125 115
ba6ed43c
KW
116 /* Not 2-byte; test for and handle 3-byte result. In the test immediately
117 * below, the 16 is for start bytes E0-EF (which are all the possible ones
118 * for 3 byte characters). The 2 is for 2 continuation bytes; these each
119 * contribute SHIFT bits. This yields 0x4000 on EBCDIC platforms, 0x1_0000
120 * on ASCII; so 3 bytes covers the range 0x400-0x3FFF on EBCDIC;
121 * 0x800-0xFFFF on ASCII */
122 if (uv < (16 * (1U << (2 * SHIFT)))) {
123 *d++ = I8_TO_NATIVE_UTF8(( uv >> ((3 - 1) * SHIFT)) | UTF_START_MARK(3));
124 *d++ = I8_TO_NATIVE_UTF8(((uv >> ((2 - 1) * SHIFT)) & MASK) | MARK);
125 *d++ = I8_TO_NATIVE_UTF8(( uv /* (1 - 1) */ & MASK) | MARK);
126
127#ifndef EBCDIC /* These problematic code points are 4 bytes on EBCDIC, so
128 aren't tested here */
129 /* The most likely code points in this range are below the surrogates.
130 * Do an extra test to quickly exclude those. */
131 if (UNLIKELY(uv >= UNICODE_SURROGATE_FIRST)) {
132 if (UNLIKELY( UNICODE_IS_32_CONTIGUOUS_NONCHARS(uv)
133 || UNICODE_IS_END_PLANE_NONCHAR_GIVEN_NOT_SUPER(uv)))
134 {
8ee1cdcb
KW
135 HANDLE_UNICODE_NONCHAR(uv, flags);
136 }
137 else if (UNLIKELY(UNICODE_IS_SURROGATE(uv))) {
138 HANDLE_UNICODE_SURROGATE(uv, flags);
760c7c2f 139 }
ba6ed43c
KW
140 }
141#endif
142 return d;
143 }
144
145 /* Not 3-byte; that means the code point is at least 0x1_0000 on ASCII
146 * platforms, and 0x4000 on EBCDIC. There are problematic cases that can
147 * happen starting with 4-byte characters on ASCII platforms. We unify the
148 * code for these with EBCDIC, even though some of them require 5-bytes on
149 * those, because khw believes the code saving is worth the very slight
150 * performance hit on these high EBCDIC code points. */
151
152 if (UNLIKELY(UNICODE_IS_SUPER(uv))) {
a5bf80e0
KW
153 if ( UNLIKELY(uv > MAX_NON_DEPRECATED_CP)
154 && ckWARN_d(WARN_DEPRECATED))
155 {
156 Perl_warner(aTHX_ packWARN(WARN_DEPRECATED),
157 cp_above_legal_max, uv, MAX_NON_DEPRECATED_CP);
158 }
159 if ( (flags & UNICODE_WARN_SUPER)
160 || ( UNICODE_IS_ABOVE_31_BIT(uv)
161 && (flags & UNICODE_WARN_ABOVE_31_BIT)))
162 {
163 Perl_ck_warner_d(aTHX_ packWARN(WARN_NON_UNICODE),
164
165 /* Choose the more dire applicable warning */
166 (UNICODE_IS_ABOVE_31_BIT(uv))
167 ? "Code point 0x%"UVXf" is not Unicode, and not portable"
168 : "Code point 0x%"UVXf" is not Unicode, may not be portable",
169 uv);
170 }
171 if (flags & UNICODE_DISALLOW_SUPER
172 || ( UNICODE_IS_ABOVE_31_BIT(uv)
173 && (flags & UNICODE_DISALLOW_ABOVE_31_BIT)))
174 {
175 return NULL;
176 }
177 }
ba6ed43c
KW
178 else if (UNLIKELY(UNICODE_IS_END_PLANE_NONCHAR_GIVEN_NOT_SUPER(uv))) {
179 HANDLE_UNICODE_NONCHAR(uv, flags);
507b9800 180 }
d9432125 181
ba6ed43c
KW
182 /* Test for and handle 4-byte result. In the test immediately below, the
183 * 8 is for start bytes F0-F7 (which are all the possible ones for 4 byte
184 * characters). The 3 is for 3 continuation bytes; these each contribute
185 * SHIFT bits. This yields 0x4_0000 on EBCDIC platforms, 0x20_0000 on
186 * ASCII, so 4 bytes covers the range 0x4000-0x3_FFFF on EBCDIC;
187 * 0x1_0000-0x1F_FFFF on ASCII */
188 if (uv < (8 * (1U << (3 * SHIFT)))) {
189 *d++ = I8_TO_NATIVE_UTF8(( uv >> ((4 - 1) * SHIFT)) | UTF_START_MARK(4));
190 *d++ = I8_TO_NATIVE_UTF8(((uv >> ((3 - 1) * SHIFT)) & MASK) | MARK);
191 *d++ = I8_TO_NATIVE_UTF8(((uv >> ((2 - 1) * SHIFT)) & MASK) | MARK);
192 *d++ = I8_TO_NATIVE_UTF8(( uv /* (1 - 1) */ & MASK) | MARK);
193
194#ifdef EBCDIC /* These were handled on ASCII platforms in the code for 3-byte
195 characters. The end-plane non-characters for EBCDIC were
196 handled just above */
197 if (UNLIKELY(UNICODE_IS_32_CONTIGUOUS_NONCHARS(uv))) {
198 HANDLE_UNICODE_NONCHAR(uv, flags);
d528804a 199 }
ba6ed43c
KW
200 else if (UNLIKELY(UNICODE_IS_SURROGATE(uv))) {
201 HANDLE_UNICODE_SURROGATE(uv, flags);
202 }
203#endif
204
205 return d;
206 }
207
208 /* Not 4-byte; that means the code point is at least 0x20_0000 on ASCII
209 * platforms, and 0x4000 on EBCDIC. At this point we switch to a loop
210 * format. The unrolled version above turns out to not save all that much
211 * time, and at these high code points (well above the legal Unicode range
212 * on ASCII platforms, and well above anything in common use in EBCDIC),
213 * khw believes that less code outweighs slight performance gains. */
214
d9432125 215 {
5aaebcb3 216 STRLEN len = OFFUNISKIP(uv);
1d72bdf6
NIS
217 U8 *p = d+len-1;
218 while (p > d) {
4c8cd605 219 *p-- = I8_TO_NATIVE_UTF8((uv & UTF_CONTINUATION_MASK) | UTF_CONTINUATION_MARK);
1d72bdf6
NIS
220 uv >>= UTF_ACCUMULATION_SHIFT;
221 }
4c8cd605 222 *p = I8_TO_NATIVE_UTF8((uv & UTF_START_MASK(len)) | UTF_START_MARK(len));
1d72bdf6
NIS
223 return d+len;
224 }
a0ed51b3 225}
a5bf80e0 226
646ca15d 227/*
07693fe6
KW
228=for apidoc uvchr_to_utf8
229
bcb1a2d4 230Adds the UTF-8 representation of the native code point C<uv> to the end
f2fc1b45 231of the string C<d>; C<d> should have at least C<UVCHR_SKIP(uv)+1> (up to
c749c9fd
KW
232C<UTF8_MAXBYTES+1>) free bytes available. The return value is the pointer to
233the byte after the end of the new character. In other words,
07693fe6
KW
234
235 d = uvchr_to_utf8(d, uv);
236
237is the recommended wide native character-aware way of saying
238
239 *(d++) = uv;
240
760c7c2f
KW
241This function accepts any UV as input, but very high code points (above
242C<IV_MAX> on the platform) will raise a deprecation warning. This is
243typically 0x7FFF_FFFF in a 32-bit word.
244
245It is possible to forbid or warn on non-Unicode code points, or those that may
246be problematic by using L</uvchr_to_utf8_flags>.
de69f3af 247
07693fe6
KW
248=cut
249*/
250
de69f3af
KW
251/* This is also a macro */
252PERL_CALLCONV U8* Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv);
253
07693fe6
KW
254U8 *
255Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv)
256{
de69f3af 257 return uvchr_to_utf8(d, uv);
07693fe6
KW
258}
259
de69f3af
KW
260/*
261=for apidoc uvchr_to_utf8_flags
262
263Adds the UTF-8 representation of the native code point C<uv> to the end
f2fc1b45 264of the string C<d>; C<d> should have at least C<UVCHR_SKIP(uv)+1> (up to
c749c9fd
KW
265C<UTF8_MAXBYTES+1>) free bytes available. The return value is the pointer to
266the byte after the end of the new character. In other words,
de69f3af
KW
267
268 d = uvchr_to_utf8_flags(d, uv, flags);
269
270or, in most cases,
271
272 d = uvchr_to_utf8_flags(d, uv, 0);
273
274This is the Unicode-aware way of saying
275
276 *(d++) = uv;
277
760c7c2f
KW
278If C<flags> is 0, this function accepts any UV as input, but very high code
279points (above C<IV_MAX> for the platform) will raise a deprecation warning.
280This is typically 0x7FFF_FFFF in a 32-bit word.
281
282Specifying C<flags> can further restrict what is allowed and not warned on, as
283follows:
de69f3af 284
796b6530 285If C<uv> is a Unicode surrogate code point and C<UNICODE_WARN_SURROGATE> is set,
7ee537e6
KW
286the function will raise a warning, provided UTF8 warnings are enabled. If
287instead C<UNICODE_DISALLOW_SURROGATE> is set, the function will fail and return
288NULL. If both flags are set, the function will both warn and return NULL.
de69f3af 289
760c7c2f
KW
290Similarly, the C<UNICODE_WARN_NONCHAR> and C<UNICODE_DISALLOW_NONCHAR> flags
291affect how the function handles a Unicode non-character.
93e6dbd6 292
760c7c2f
KW
293And likewise, the C<UNICODE_WARN_SUPER> and C<UNICODE_DISALLOW_SUPER> flags
294affect the handling of code points that are above the Unicode maximum of
2950x10FFFF. Languages other than Perl may not be able to accept files that
296contain these.
93e6dbd6
KW
297
298The flag C<UNICODE_WARN_ILLEGAL_INTERCHANGE> selects all three of
299the above WARN flags; and C<UNICODE_DISALLOW_ILLEGAL_INTERCHANGE> selects all
ecc1615f
KW
300three DISALLOW flags. C<UNICODE_DISALLOW_ILLEGAL_INTERCHANGE> restricts the
301allowed inputs to the strict UTF-8 traditionally defined by Unicode.
302Similarly, C<UNICODE_WARN_ILLEGAL_C9_INTERCHANGE> and
303C<UNICODE_DISALLOW_ILLEGAL_C9_INTERCHANGE> are shortcuts to select the
304above-Unicode and surrogate flags, but not the non-character ones, as
305defined in
306L<Unicode Corrigendum #9|http://www.unicode.org/versions/corrigendum9.html>.
307See L<perlunicode/Noncharacter code points>.
93e6dbd6 308
ab8e6d41
KW
309Code points above 0x7FFF_FFFF (2**31 - 1) were never specified in any standard,
310so using them is more problematic than other above-Unicode code points. Perl
311invented an extension to UTF-8 to represent the ones above 2**36-1, so it is
312likely that non-Perl languages will not be able to read files that contain
313these that written by the perl interpreter; nor would Perl understand files
314written by something that uses a different extension. For these reasons, there
315is a separate set of flags that can warn and/or disallow these extremely high
316code points, even if other above-Unicode ones are accepted. These are the
760c7c2f
KW
317C<UNICODE_WARN_ABOVE_31_BIT> and C<UNICODE_DISALLOW_ABOVE_31_BIT> flags. These
318are entirely independent from the deprecation warning for code points above
319C<IV_MAX>. On 32-bit machines, it will eventually be forbidden to have any
320code point that needs more than 31 bits to represent. When that happens,
321effectively the C<UNICODE_DISALLOW_ABOVE_31_BIT> flag will always be set on
32232-bit machines. (Of course C<UNICODE_DISALLOW_SUPER> will treat all
ab8e6d41
KW
323above-Unicode code points, including these, as malformations; and
324C<UNICODE_WARN_SUPER> warns on these.)
325
326On EBCDIC platforms starting in Perl v5.24, the Perl extension for representing
327extremely high code points kicks in at 0x3FFF_FFFF (2**30 -1), which is lower
328than on ASCII. Prior to that, code points 2**31 and higher were simply
329unrepresentable, and a different, incompatible method was used to represent
330code points between 2**30 and 2**31 - 1. The flags C<UNICODE_WARN_ABOVE_31_BIT>
331and C<UNICODE_DISALLOW_ABOVE_31_BIT> have the same function as on ASCII
332platforms, warning and disallowing 2**31 and higher.
de69f3af 333
de69f3af
KW
334=cut
335*/
336
337/* This is also a macro */
338PERL_CALLCONV U8* Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags);
339
07693fe6
KW
340U8 *
341Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
342{
de69f3af 343 return uvchr_to_utf8_flags(d, uv, flags);
07693fe6
KW
344}
345
83dc0f42
KW
346PERL_STATIC_INLINE bool
347S_is_utf8_cp_above_31_bits(const U8 * const s, const U8 * const e)
348{
349 /* Returns TRUE if the first code point represented by the Perl-extended-
350 * UTF-8-encoded string starting at 's', and looking no further than 'e -
351 * 1' doesn't fit into 31 bytes. That is, that if it is >= 2**31.
352 *
353 * The function handles the case where the input bytes do not include all
354 * the ones necessary to represent a full character. That is, they may be
355 * the intial bytes of the representation of a code point, but possibly
356 * the final ones necessary for the complete representation may be beyond
357 * 'e - 1'.
358 *
359 * The function assumes that the sequence is well-formed UTF-8 as far as it
360 * goes, and is for a UTF-8 variant code point. If the sequence is
361 * incomplete, the function returns FALSE if there is any well-formed
362 * UTF-8 byte sequence that can complete it in such a way that a code point
363 * < 2**31 is produced; otherwise it returns TRUE.
364 *
365 * Getting this exactly right is slightly tricky, and has to be done in
366 * several places in this file, so is centralized here. It is based on the
367 * following table:
368 *
369 * U+7FFFFFFF (2 ** 31 - 1)
370 * ASCII: \xFD\xBF\xBF\xBF\xBF\xBF
371 * IBM-1047: \xFE\x41\x41\x41\x41\x41\x41\x42\x73\x73\x73\x73\x73\x73
372 * IBM-037: \xFE\x41\x41\x41\x41\x41\x41\x42\x72\x72\x72\x72\x72\x72
373 * POSIX-BC: \xFE\x41\x41\x41\x41\x41\x41\x42\x75\x75\x75\x75\x75\x75
374 * I8: \xFF\xA0\xA0\xA0\xA0\xA0\xA0\xA1\xBF\xBF\xBF\xBF\xBF\xBF
375 * U+80000000 (2 ** 31):
376 * ASCII: \xFE\x82\x80\x80\x80\x80\x80
377 * [0] [1] [2] [3] [4] [5] [6] [7] [8] [9] 10 11 12 13
378 * IBM-1047: \xFE\x41\x41\x41\x41\x41\x41\x43\x41\x41\x41\x41\x41\x41
379 * IBM-037: \xFE\x41\x41\x41\x41\x41\x41\x43\x41\x41\x41\x41\x41\x41
380 * POSIX-BC: \xFE\x41\x41\x41\x41\x41\x41\x43\x41\x41\x41\x41\x41\x41
381 * I8: \xFF\xA0\xA0\xA0\xA0\xA0\xA0\xA2\xA0\xA0\xA0\xA0\xA0\xA0
382 */
383
384#ifdef EBCDIC
385
b343c774
KW
386 /* [0] is start byte [1] [2] [3] [4] [5] [6] [7] */
387 const U8 * const prefix = (U8 *) "\x41\x41\x41\x41\x41\x41\x42";
83dc0f42
KW
388 const STRLEN prefix_len = sizeof(prefix) - 1;
389 const STRLEN len = e - s;
f880f78a 390 const STRLEN cmp_len = MIN(prefix_len, len - 1);
83dc0f42
KW
391
392#else
393
394 PERL_UNUSED_ARG(e);
395
396#endif
397
398 PERL_ARGS_ASSERT_IS_UTF8_CP_ABOVE_31_BITS;
399
400 assert(! UTF8_IS_INVARIANT(*s));
401
402#ifndef EBCDIC
403
404 /* Technically, a start byte of FE can be for a code point that fits into
405 * 31 bytes, but not for well-formed UTF-8: doing that requires an overlong
406 * malformation. */
407 return (*s >= 0xFE);
408
409#else
410
411 /* On the EBCDIC code pages we handle, only 0xFE can mean a 32-bit or
412 * larger code point (0xFF is an invariant). For 0xFE, we need at least 2
413 * bytes, and maybe up through 8 bytes, to be sure if the value is above 31
414 * bits. */
415 if (*s != 0xFE || len == 1) {
416 return FALSE;
417 }
418
419 /* Note that in UTF-EBCDIC, the two lowest possible continuation bytes are
420 * \x41 and \x42. */
421 return cBOOL(memGT(s + 1, prefix, cmp_len));
422
423#endif
424
425}
426
12a4bed3
KW
427PERL_STATIC_INLINE bool
428S_does_utf8_overflow(const U8 * const s, const U8 * e)
429{
430 const U8 *x;
431 const U8 * y = (const U8 *) HIGHEST_REPRESENTABLE_UTF8;
432
433 /* Returns a boolean as to if this UTF-8 string would overflow a UV on this
434 * platform, that is if it represents a code point larger than the highest
435 * representable code point. (For ASCII platforms, we could use memcmp()
436 * because we don't have to convert each byte to I8, but it's very rare
437 * input indeed that would approach overflow, so the loop below will likely
438 * only get executed once.
439 *
440 * 'e' must not be beyond a full character. If it is less than a full
441 * character, the function returns FALSE if there is any input beyond 'e'
442 * that could result in a non-overflowing code point */
443
444 PERL_ARGS_ASSERT_DOES_UTF8_OVERFLOW;
445 assert(s + UTF8SKIP(s) >= e);
446
447 for (x = s; x < e; x++, y++) {
448
449 /* If this byte is larger than the corresponding highest UTF-8 byte, it
450 * overflows */
451 if (UNLIKELY(NATIVE_UTF8_TO_I8(*x) > *y)) {
452 return TRUE;
453 }
454
455 /* If not the same as this byte, it must be smaller, doesn't overflow */
456 if (LIKELY(NATIVE_UTF8_TO_I8(*x) != *y)) {
457 return FALSE;
458 }
459 }
460
461 /* Got to the end and all bytes are the same. If the input is a whole
462 * character, it doesn't overflow. And if it is a partial character,
463 * there's not enough information to tell, so assume doesn't overflow */
464 return FALSE;
465}
466
467PERL_STATIC_INLINE bool
468S_is_utf8_overlong_given_start_byte_ok(const U8 * const s, const STRLEN len)
469{
470 /* Overlongs can occur whenever the number of continuation bytes
471 * changes. That means whenever the number of leading 1 bits in a start
472 * byte increases from the next lower start byte. That happens for start
473 * bytes C0, E0, F0, F8, FC, FE, and FF. On modern perls, the following
474 * illegal start bytes have already been excluded, so don't need to be
475 * tested here;
476 * ASCII platforms: C0, C1
477 * EBCDIC platforms C0, C1, C2, C3, C4, E0
478 *
479 * At least a second byte is required to determine if other sequences will
480 * be an overlong. */
481
482 const U8 s0 = NATIVE_UTF8_TO_I8(s[0]);
483 const U8 s1 = NATIVE_UTF8_TO_I8(s[1]);
484
485 PERL_ARGS_ASSERT_IS_UTF8_OVERLONG_GIVEN_START_BYTE_OK;
486 assert(len > 1 && UTF8_IS_START(*s));
487
488 /* Each platform has overlongs after the start bytes given above (expressed
489 * in I8 for EBCDIC). What constitutes an overlong varies by platform, but
490 * the logic is the same, except the E0 overlong has already been excluded
491 * on EBCDIC platforms. The values below were found by manually
492 * inspecting the UTF-8 patterns. See the tables in utf8.h and
493 * utfebcdic.h. */
494
495# ifdef EBCDIC
496# define F0_ABOVE_OVERLONG 0xB0
497# define F8_ABOVE_OVERLONG 0xA8
498# define FC_ABOVE_OVERLONG 0xA4
499# define FE_ABOVE_OVERLONG 0xA2
500# define FF_OVERLONG_PREFIX "\xfe\x41\x41\x41\x41\x41\x41\x41"
501 /* I8(0xfe) is FF */
502# else
503
504 if (s0 == 0xE0 && UNLIKELY(s1 < 0xA0)) {
505 return TRUE;
506 }
507
508# define F0_ABOVE_OVERLONG 0x90
509# define F8_ABOVE_OVERLONG 0x88
510# define FC_ABOVE_OVERLONG 0x84
511# define FE_ABOVE_OVERLONG 0x82
512# define FF_OVERLONG_PREFIX "\xff\x80\x80\x80\x80\x80\x80"
513# endif
514
515
516 if ( (s0 == 0xF0 && UNLIKELY(s1 < F0_ABOVE_OVERLONG))
517 || (s0 == 0xF8 && UNLIKELY(s1 < F8_ABOVE_OVERLONG))
518 || (s0 == 0xFC && UNLIKELY(s1 < FC_ABOVE_OVERLONG))
519 || (s0 == 0xFE && UNLIKELY(s1 < FE_ABOVE_OVERLONG)))
520 {
521 return TRUE;
522 }
523
524# if defined(UV_IS_QUAD) || defined(EBCDIC)
525
526 /* Check for the FF overlong. This happens only if all these bytes match;
527 * what comes after them doesn't matter. See tables in utf8.h,
528 * utfebcdic.h. (Can't happen on ASCII 32-bit platforms, as overflows
529 * instead.) */
530
531 if ( len >= sizeof(FF_OVERLONG_PREFIX) - 1
532 && UNLIKELY(memEQ(s, FF_OVERLONG_PREFIX,
533 sizeof(FF_OVERLONG_PREFIX) - 1)))
534 {
535 return TRUE;
536 }
537
538#endif
539
540 return FALSE;
541}
542
543#undef F0_ABOVE_OVERLONG
544#undef F8_ABOVE_OVERLONG
545#undef FC_ABOVE_OVERLONG
546#undef FE_ABOVE_OVERLONG
547#undef FF_OVERLONG_PREFIX
548
35f8c9bd 549STRLEN
edc2c47a 550Perl__is_utf8_char_helper(const U8 * const s, const U8 * e, const U32 flags)
35f8c9bd 551{
2b479609 552 STRLEN len;
12a4bed3 553 const U8 *x;
35f8c9bd 554
2b479609
KW
555 /* A helper function that should not be called directly.
556 *
557 * This function returns non-zero if the string beginning at 's' and
558 * looking no further than 'e - 1' is well-formed Perl-extended-UTF-8 for a
559 * code point; otherwise it returns 0. The examination stops after the
560 * first code point in 's' is validated, not looking at the rest of the
561 * input. If 'e' is such that there are not enough bytes to represent a
562 * complete code point, this function will return non-zero anyway, if the
563 * bytes it does have are well-formed UTF-8 as far as they go, and aren't
564 * excluded by 'flags'.
565 *
566 * A non-zero return gives the number of bytes required to represent the
567 * code point. Be aware that if the input is for a partial character, the
568 * return will be larger than 'e - s'.
569 *
570 * This function assumes that the code point represented is UTF-8 variant.
571 * The caller should have excluded this possibility before calling this
572 * function.
573 *
574 * 'flags' can be 0, or any combination of the UTF8_DISALLOW_foo flags
575 * accepted by L</utf8n_to_uvchr>. If non-zero, this function will return
576 * 0 if the code point represented is well-formed Perl-extended-UTF-8, but
577 * disallowed by the flags. If the input is only for a partial character,
578 * the function will return non-zero if there is any sequence of
579 * well-formed UTF-8 that, when appended to the input sequence, could
580 * result in an allowed code point; otherwise it returns 0. Non characters
581 * cannot be determined based on partial character input. But many of the
582 * other excluded types can be determined with just the first one or two
583 * bytes.
584 *
585 */
586
587 PERL_ARGS_ASSERT__IS_UTF8_CHAR_HELPER;
588
589 assert(0 == (flags & ~(UTF8_DISALLOW_ILLEGAL_INTERCHANGE
590 |UTF8_DISALLOW_ABOVE_31_BIT)));
591 assert(! UTF8_IS_INVARIANT(*s));
35f8c9bd 592
2b479609 593 /* A variant char must begin with a start byte */
35f8c9bd
KW
594 if (UNLIKELY(! UTF8_IS_START(*s))) {
595 return 0;
596 }
597
edc2c47a
KW
598 /* Examine a maximum of a single whole code point */
599 if (e - s > UTF8SKIP(s)) {
600 e = s + UTF8SKIP(s);
601 }
602
2b479609
KW
603 len = e - s;
604
605 if (flags && isUTF8_POSSIBLY_PROBLEMATIC(*s)) {
606 const U8 s0 = NATIVE_UTF8_TO_I8(s[0]);
35f8c9bd 607
2b479609
KW
608 /* The code below is derived from this table. Keep in mind that legal
609 * continuation bytes range between \x80..\xBF for UTF-8, and
610 * \xA0..\xBF for I8. Anything above those aren't continuation bytes.
611 * Hence, we don't have to test the upper edge because if any of those
612 * are encountered, the sequence is malformed, and will fail elsewhere
613 * in this function.
614 * UTF-8 UTF-EBCDIC I8
615 * U+D800: \xED\xA0\x80 \xF1\xB6\xA0\xA0 First surrogate
616 * U+DFFF: \xED\xBF\xBF \xF1\xB7\xBF\xBF Final surrogate
617 * U+110000: \xF4\x90\x80\x80 \xF9\xA2\xA0\xA0\xA0 First above Unicode
618 *
619 */
620
621#ifdef EBCDIC /* On EBCDIC, these are actually I8 bytes */
622# define FIRST_START_BYTE_THAT_IS_DEFINITELY_SUPER 0xFA
19794540 623# define IS_UTF8_2_BYTE_SUPER(s0, s1) ((s0) == 0xF9 && (s1) >= 0xA2)
2b479609 624
19794540
KW
625# define IS_UTF8_2_BYTE_SURROGATE(s0, s1) ((s0) == 0xF1 \
626 /* B6 and B7 */ \
627 && ((s1) & 0xFE ) == 0xB6)
2b479609
KW
628#else
629# define FIRST_START_BYTE_THAT_IS_DEFINITELY_SUPER 0xF5
19794540
KW
630# define IS_UTF8_2_BYTE_SUPER(s0, s1) ((s0) == 0xF4 && (s1) >= 0x90)
631# define IS_UTF8_2_BYTE_SURROGATE(s0, s1) ((s0) == 0xED && (s1) >= 0xA0)
2b479609
KW
632#endif
633
634 if ( (flags & UTF8_DISALLOW_SUPER)
635 && UNLIKELY(s0 >= FIRST_START_BYTE_THAT_IS_DEFINITELY_SUPER)) {
636 return 0; /* Above Unicode */
637 }
638
639 if ( (flags & UTF8_DISALLOW_ABOVE_31_BIT)
640 && UNLIKELY(is_utf8_cp_above_31_bits(s, e)))
641 {
642 return 0; /* Above 31 bits */
643 }
644
645 if (len > 1) {
646 const U8 s1 = NATIVE_UTF8_TO_I8(s[1]);
647
648 if ( (flags & UTF8_DISALLOW_SUPER)
19794540 649 && UNLIKELY(IS_UTF8_2_BYTE_SUPER(s0, s1)))
2b479609
KW
650 {
651 return 0; /* Above Unicode */
652 }
653
654 if ( (flags & UTF8_DISALLOW_SURROGATE)
19794540 655 && UNLIKELY(IS_UTF8_2_BYTE_SURROGATE(s0, s1)))
2b479609
KW
656 {
657 return 0; /* Surrogate */
658 }
659
660 if ( (flags & UTF8_DISALLOW_NONCHAR)
661 && UNLIKELY(UTF8_IS_NONCHAR(s, e)))
662 {
663 return 0; /* Noncharacter code point */
664 }
665 }
666 }
667
668 /* Make sure that all that follows are continuation bytes */
35f8c9bd
KW
669 for (x = s + 1; x < e; x++) {
670 if (UNLIKELY(! UTF8_IS_CONTINUATION(*x))) {
671 return 0;
672 }
673 }
674
af13dd8a 675 /* Here is syntactically valid. Next, make sure this isn't the start of an
12a4bed3
KW
676 * overlong. */
677 if (len > 1 && is_utf8_overlong_given_start_byte_ok(s, len)) {
678 return 0;
af13dd8a
KW
679 }
680
12a4bed3
KW
681 /* And finally, that the code point represented fits in a word on this
682 * platform */
683 if (does_utf8_overflow(s, e)) {
684 return 0;
35f8c9bd
KW
685 }
686
2b479609 687 return UTF8SKIP(s);
35f8c9bd
KW
688}
689
7cf8d05d
KW
690STATIC char *
691S__byte_dump_string(pTHX_ const U8 * s, const STRLEN len)
692{
693 /* Returns a mortalized C string that is a displayable copy of the 'len'
694 * bytes starting at 's', each in a \xXY format. */
695
696 const STRLEN output_len = 4 * len + 1; /* 4 bytes per each input, plus a
697 trailing NUL */
698 const U8 * const e = s + len;
699 char * output;
700 char * d;
701
702 PERL_ARGS_ASSERT__BYTE_DUMP_STRING;
703
704 Newx(output, output_len, char);
705 SAVEFREEPV(output);
706
707 d = output;
708 for (; s < e; s++) {
709 const unsigned high_nibble = (*s & 0xF0) >> 4;
710 const unsigned low_nibble = (*s & 0x0F);
711
712 *d++ = '\\';
713 *d++ = 'x';
714
715 if (high_nibble < 10) {
716 *d++ = high_nibble + '0';
717 }
718 else {
719 *d++ = high_nibble - 10 + 'a';
720 }
721
722 if (low_nibble < 10) {
723 *d++ = low_nibble + '0';
724 }
725 else {
726 *d++ = low_nibble - 10 + 'a';
727 }
728 }
729
730 *d = '\0';
731 return output;
732}
733
806547a7 734PERL_STATIC_INLINE char *
7cf8d05d
KW
735S_unexpected_non_continuation_text(pTHX_ const U8 * const s,
736
737 /* How many bytes to print */
3cc6a05e 738 STRLEN print_len,
7cf8d05d
KW
739
740 /* Which one is the non-continuation */
741 const STRLEN non_cont_byte_pos,
742
743 /* How many bytes should there be? */
744 const STRLEN expect_len)
806547a7
KW
745{
746 /* Return the malformation warning text for an unexpected continuation
747 * byte. */
748
7cf8d05d 749 const char * const where = (non_cont_byte_pos == 1)
806547a7 750 ? "immediately"
7cf8d05d
KW
751 : Perl_form(aTHX_ "%d bytes",
752 (int) non_cont_byte_pos);
3cc6a05e 753 unsigned int i;
806547a7
KW
754
755 PERL_ARGS_ASSERT_UNEXPECTED_NON_CONTINUATION_TEXT;
756
7cf8d05d
KW
757 /* We don't need to pass this parameter, but since it has already been
758 * calculated, it's likely faster to pass it; verify under DEBUGGING */
759 assert(expect_len == UTF8SKIP(s));
760
3cc6a05e
KW
761 /* It is possible that utf8n_to_uvchr() was called incorrectly, with a
762 * length that is larger than is actually available in the buffer. If we
763 * print all the bytes based on that length, we will read past the buffer
764 * end. Often, the strings are NUL terminated, so to lower the chances of
765 * this happening, print the malformed bytes only up through any NUL. */
766 for (i = 1; i < print_len; i++) {
767 if (*(s + i) == '\0') {
768 print_len = i + 1; /* +1 gets the NUL printed */
769 break;
770 }
771 }
772
7cf8d05d
KW
773 return Perl_form(aTHX_ "%s: %s (unexpected non-continuation byte 0x%02x,"
774 " %s after start byte 0x%02x; need %d bytes, got %d)",
775 malformed_text,
776 _byte_dump_string(s, print_len),
777 *(s + non_cont_byte_pos),
778 where,
779 *s,
780 (int) expect_len,
781 (int) non_cont_byte_pos);
806547a7
KW
782}
783
35f8c9bd
KW
784/*
785
de69f3af 786=for apidoc utf8n_to_uvchr
378516de
KW
787
788THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES.
de69f3af 789Most code should use L</utf8_to_uvchr_buf>() rather than call this directly.
67e989fb 790
9041c2e3 791Bottom level UTF-8 decode routine.
de69f3af 792Returns the native code point value of the first character in the string C<s>,
746afd53
KW
793which is assumed to be in UTF-8 (or UTF-EBCDIC) encoding, and no longer than
794C<curlen> bytes; C<*retlen> (if C<retlen> isn't NULL) will be set to
795the length, in bytes, of that character.
949cf498
KW
796
797The value of C<flags> determines the behavior when C<s> does not point to a
2b5e7bc2
KW
798well-formed UTF-8 character. If C<flags> is 0, encountering a malformation
799causes zero to be returned and C<*retlen> is set so that (S<C<s> + C<*retlen>>)
800is the next possible position in C<s> that could begin a non-malformed
801character. Also, if UTF-8 warnings haven't been lexically disabled, a warning
802is raised. Some UTF-8 input sequences may contain multiple malformations.
803This function tries to find every possible one in each call, so multiple
804warnings can be raised for each sequence.
949cf498
KW
805
806Various ALLOW flags can be set in C<flags> to allow (and not warn on)
807individual types of malformations, such as the sequence being overlong (that
808is, when there is a shorter sequence that can express the same code point;
809overlong sequences are expressly forbidden in the UTF-8 standard due to
810potential security issues). Another malformation example is the first byte of
811a character not being a legal first byte. See F<utf8.h> for the list of such
524080c4
KW
812flags. For allowed 0 length strings, this function returns 0; for allowed
813overlong sequences, the computed code point is returned; for all other allowed
814malformations, the Unicode REPLACEMENT CHARACTER is returned, as these have no
815determinable reasonable value.
949cf498 816
796b6530 817The C<UTF8_CHECK_ONLY> flag overrides the behavior when a non-allowed (by other
949cf498
KW
818flags) malformation is found. If this flag is set, the routine assumes that
819the caller will raise a warning, and this function will silently just set
d088425d
KW
820C<retlen> to C<-1> (cast to C<STRLEN>) and return zero.
821
75200dff 822Note that this API requires disambiguation between successful decoding a C<NUL>
796b6530 823character, and an error return (unless the C<UTF8_CHECK_ONLY> flag is set), as
111fa700
KW
824in both cases, 0 is returned, and, depending on the malformation, C<retlen> may
825be set to 1. To disambiguate, upon a zero return, see if the first byte of
826C<s> is 0 as well. If so, the input was a C<NUL>; if not, the input had an
f9380377 827error. Or you can use C<L</utf8n_to_uvchr_error>>.
949cf498
KW
828
829Certain code points are considered problematic. These are Unicode surrogates,
746afd53 830Unicode non-characters, and code points above the Unicode maximum of 0x10FFFF.
949cf498 831By default these are considered regular code points, but certain situations
ecc1615f
KW
832warrant special handling for them, which can be specified using the C<flags>
833parameter. If C<flags> contains C<UTF8_DISALLOW_ILLEGAL_INTERCHANGE>, all
834three classes are treated as malformations and handled as such. The flags
835C<UTF8_DISALLOW_SURROGATE>, C<UTF8_DISALLOW_NONCHAR>, and
836C<UTF8_DISALLOW_SUPER> (meaning above the legal Unicode maximum) can be set to
837disallow these categories individually. C<UTF8_DISALLOW_ILLEGAL_INTERCHANGE>
838restricts the allowed inputs to the strict UTF-8 traditionally defined by
839Unicode. Use C<UTF8_DISALLOW_ILLEGAL_C9_INTERCHANGE> to use the strictness
840definition given by
841L<Unicode Corrigendum #9|http://www.unicode.org/versions/corrigendum9.html>.
842The difference between traditional strictness and C9 strictness is that the
843latter does not forbid non-character code points. (They are still discouraged,
844however.) For more discussion see L<perlunicode/Noncharacter code points>.
845
846The flags C<UTF8_WARN_ILLEGAL_INTERCHANGE>,
847C<UTF8_WARN_ILLEGAL_C9_INTERCHANGE>, C<UTF8_WARN_SURROGATE>,
796b6530
KW
848C<UTF8_WARN_NONCHAR>, and C<UTF8_WARN_SUPER> will cause warning messages to be
849raised for their respective categories, but otherwise the code points are
850considered valid (not malformations). To get a category to both be treated as
851a malformation and raise a warning, specify both the WARN and DISALLOW flags.
949cf498 852(But note that warnings are not raised if lexically disabled nor if
796b6530 853C<UTF8_CHECK_ONLY> is also specified.)
949cf498 854
760c7c2f
KW
855It is now deprecated to have very high code points (above C<IV_MAX> on the
856platforms) and this function will raise a deprecation warning for these (unless
d5944cab 857such warnings are turned off). This value is typically 0x7FFF_FFFF (2**31 -1)
760c7c2f 858in a 32-bit word.
ab8e6d41
KW
859
860Code points above 0x7FFF_FFFF (2**31 - 1) were never specified in any standard,
861so using them is more problematic than other above-Unicode code points. Perl
862invented an extension to UTF-8 to represent the ones above 2**36-1, so it is
863likely that non-Perl languages will not be able to read files that contain
aff2be59 864these; nor would Perl understand files
ab8e6d41
KW
865written by something that uses a different extension. For these reasons, there
866is a separate set of flags that can warn and/or disallow these extremely high
867code points, even if other above-Unicode ones are accepted. These are the
760c7c2f
KW
868C<UTF8_WARN_ABOVE_31_BIT> and C<UTF8_DISALLOW_ABOVE_31_BIT> flags. These
869are entirely independent from the deprecation warning for code points above
870C<IV_MAX>. On 32-bit machines, it will eventually be forbidden to have any
871code point that needs more than 31 bits to represent. When that happens,
872effectively the C<UTF8_DISALLOW_ABOVE_31_BIT> flag will always be set on
87332-bit machines. (Of course C<UTF8_DISALLOW_SUPER> will treat all
ab8e6d41
KW
874above-Unicode code points, including these, as malformations; and
875C<UTF8_WARN_SUPER> warns on these.)
876
877On EBCDIC platforms starting in Perl v5.24, the Perl extension for representing
878extremely high code points kicks in at 0x3FFF_FFFF (2**30 -1), which is lower
879than on ASCII. Prior to that, code points 2**31 and higher were simply
880unrepresentable, and a different, incompatible method was used to represent
881code points between 2**30 and 2**31 - 1. The flags C<UTF8_WARN_ABOVE_31_BIT>
882and C<UTF8_DISALLOW_ABOVE_31_BIT> have the same function as on ASCII
883platforms, warning and disallowing 2**31 and higher.
949cf498
KW
884
885All other code points corresponding to Unicode characters, including private
886use and those yet to be assigned, are never considered malformed and never
887warn.
67e989fb 888
37607a96 889=cut
f9380377
KW
890
891Also implemented as a macro in utf8.h
892*/
893
894UV
895Perl_utf8n_to_uvchr(pTHX_ const U8 *s,
896 STRLEN curlen,
897 STRLEN *retlen,
898 const U32 flags)
899{
900 PERL_ARGS_ASSERT_UTF8N_TO_UVCHR;
901
902 return utf8n_to_uvchr_error(s, curlen, retlen, flags, NULL);
903}
904
905/*
906
907=for apidoc utf8n_to_uvchr_error
908
909THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES.
910Most code should use L</utf8_to_uvchr_buf>() rather than call this directly.
911
912This function is for code that needs to know what the precise malformation(s)
913are when an error is found.
914
915It is like C<L</utf8n_to_uvchr>> but it takes an extra parameter placed after
916all the others, C<errors>. If this parameter is 0, this function behaves
917identically to C<L</utf8n_to_uvchr>>. Otherwise, C<errors> should be a pointer
918to a C<U32> variable, which this function sets to indicate any errors found.
919Upon return, if C<*errors> is 0, there were no errors found. Otherwise,
920C<*errors> is the bit-wise C<OR> of the bits described in the list below. Some
921of these bits will be set if a malformation is found, even if the input
922C<flags> parameter indicates that the given malformation is allowed; the
923exceptions are noted:
924
925=over 4
926
927=item C<UTF8_GOT_ABOVE_31_BIT>
928
929The code point represented by the input UTF-8 sequence occupies more than 31
930bits.
931This bit is set only if the input C<flags> parameter contains either the
932C<UTF8_DISALLOW_ABOVE_31_BIT> or the C<UTF8_WARN_ABOVE_31_BIT> flags.
933
934=item C<UTF8_GOT_CONTINUATION>
935
936The input sequence was malformed in that the first byte was a a UTF-8
937continuation byte.
938
939=item C<UTF8_GOT_EMPTY>
940
941The input C<curlen> parameter was 0.
942
943=item C<UTF8_GOT_LONG>
944
945The input sequence was malformed in that there is some other sequence that
946evaluates to the same code point, but that sequence is shorter than this one.
947
948=item C<UTF8_GOT_NONCHAR>
949
950The code point represented by the input UTF-8 sequence is for a Unicode
951non-character code point.
952This bit is set only if the input C<flags> parameter contains either the
953C<UTF8_DISALLOW_NONCHAR> or the C<UTF8_WARN_NONCHAR> flags.
954
955=item C<UTF8_GOT_NON_CONTINUATION>
956
957The input sequence was malformed in that a non-continuation type byte was found
958in a position where only a continuation type one should be.
959
960=item C<UTF8_GOT_OVERFLOW>
961
962The input sequence was malformed in that it is for a code point that is not
963representable in the number of bits available in a UV on the current platform.
964
965=item C<UTF8_GOT_SHORT>
966
967The input sequence was malformed in that C<curlen> is smaller than required for
968a complete sequence. In other words, the input is for a partial character
969sequence.
970
971=item C<UTF8_GOT_SUPER>
972
973The input sequence was malformed in that it is for a non-Unicode code point;
974that is, one above the legal Unicode maximum.
975This bit is set only if the input C<flags> parameter contains either the
976C<UTF8_DISALLOW_SUPER> or the C<UTF8_WARN_SUPER> flags.
977
978=item C<UTF8_GOT_SURROGATE>
979
980The input sequence was malformed in that it is for a -Unicode UTF-16 surrogate
981code point.
982This bit is set only if the input C<flags> parameter contains either the
983C<UTF8_DISALLOW_SURROGATE> or the C<UTF8_WARN_SURROGATE> flags.
984
985=back
986
987=cut
37607a96 988*/
67e989fb 989
a0ed51b3 990UV
f9380377
KW
991Perl_utf8n_to_uvchr_error(pTHX_ const U8 *s,
992 STRLEN curlen,
993 STRLEN *retlen,
994 const U32 flags,
995 U32 * errors)
a0ed51b3 996{
d4c19fe8 997 const U8 * const s0 = s;
2b5e7bc2
KW
998 U8 * send = NULL; /* (initialized to silence compilers' wrong
999 warning) */
1000 U32 possible_problems = 0; /* A bit is set here for each potential problem
1001 found as we go along */
eb83ed87 1002 UV uv = *s;
2b5e7bc2
KW
1003 STRLEN expectlen = 0; /* How long should this sequence be?
1004 (initialized to silence compilers' wrong
1005 warning) */
f9380377
KW
1006 U32 discard_errors = 0; /* Used to save branches when 'errors' is NULL;
1007 this gets set and discarded */
a0dbb045 1008
2b5e7bc2
KW
1009 /* The below are used only if there is both an overlong malformation and a
1010 * too short one. Otherwise the first two are set to 's0' and 'send', and
1011 * the third not used at all */
1012 U8 * adjusted_s0 = (U8 *) s0;
5ec712b1
KW
1013 U8 * adjusted_send = NULL; /* (Initialized to silence compilers' wrong
1014 warning) */
2b5e7bc2 1015 UV uv_so_far = 0; /* (Initialized to silence compilers' wrong warning) */
7918f24d 1016
f9380377
KW
1017 PERL_ARGS_ASSERT_UTF8N_TO_UVCHR_ERROR;
1018
1019 if (errors) {
1020 *errors = 0;
1021 }
1022 else {
1023 errors = &discard_errors;
1024 }
a0dbb045 1025
eb83ed87
KW
1026 /* The order of malformation tests here is important. We should consume as
1027 * few bytes as possible in order to not skip any valid character. This is
1028 * required by the Unicode Standard (section 3.9 of Unicode 6.0); see also
1029 * http://unicode.org/reports/tr36 for more discussion as to why. For
1030 * example, once we've done a UTF8SKIP, we can tell the expected number of
1031 * bytes, and could fail right off the bat if the input parameters indicate
1032 * that there are too few available. But it could be that just that first
1033 * byte is garbled, and the intended character occupies fewer bytes. If we
1034 * blindly assumed that the first byte is correct, and skipped based on
1035 * that number, we could skip over a valid input character. So instead, we
1036 * always examine the sequence byte-by-byte.
1037 *
1038 * We also should not consume too few bytes, otherwise someone could inject
1039 * things. For example, an input could be deliberately designed to
1040 * overflow, and if this code bailed out immediately upon discovering that,
e2660c54 1041 * returning to the caller C<*retlen> pointing to the very next byte (one
eb83ed87
KW
1042 * which is actually part of of the overflowing sequence), that could look
1043 * legitimate to the caller, which could discard the initial partial
2b5e7bc2
KW
1044 * sequence and process the rest, inappropriately.
1045 *
1046 * Some possible input sequences are malformed in more than one way. This
1047 * function goes to lengths to try to find all of them. This is necessary
1048 * for correctness, as the inputs may allow one malformation but not
1049 * another, and if we abandon searching for others after finding the
1050 * allowed one, we could allow in something that shouldn't have been.
1051 */
eb83ed87 1052
b5b9af04 1053 if (UNLIKELY(curlen == 0)) {
2b5e7bc2
KW
1054 possible_problems |= UTF8_GOT_EMPTY;
1055 curlen = 0;
1056 uv = 0; /* XXX It could be argued that this should be
1057 UNICODE_REPLACEMENT? */
1058 goto ready_to_handle_errors;
0c443dc2
JH
1059 }
1060
eb83ed87
KW
1061 expectlen = UTF8SKIP(s);
1062
1063 /* A well-formed UTF-8 character, as the vast majority of calls to this
1064 * function will be for, has this expected length. For efficiency, set
1065 * things up here to return it. It will be overriden only in those rare
1066 * cases where a malformation is found */
1067 if (retlen) {
1068 *retlen = expectlen;
1069 }
1070
1071 /* An invariant is trivially well-formed */
1d72bdf6 1072 if (UTF8_IS_INVARIANT(uv)) {
de69f3af 1073 return uv;
a0ed51b3 1074 }
67e989fb 1075
eb83ed87 1076 /* A continuation character can't start a valid sequence */
b5b9af04 1077 if (UNLIKELY(UTF8_IS_CONTINUATION(uv))) {
2b5e7bc2
KW
1078 possible_problems |= UTF8_GOT_CONTINUATION;
1079 curlen = 1;
1080 uv = UNICODE_REPLACEMENT;
1081 goto ready_to_handle_errors;
ba210ebe 1082 }
9041c2e3 1083
dcd27b3c
KW
1084 /* Here is not a continuation byte, nor an invariant. The only thing left
1085 * is a start byte (possibly for an overlong) */
1086
534752c1
KW
1087 /* Convert to I8 on EBCDIC (no-op on ASCII), then remove the leading bits
1088 * that indicate the number of bytes in the character's whole UTF-8
1089 * sequence, leaving just the bits that are part of the value. */
1090 uv = NATIVE_UTF8_TO_I8(uv) & UTF_START_MASK(expectlen);
ba210ebe 1091
eb83ed87
KW
1092 /* Now, loop through the remaining bytes in the character's sequence,
1093 * accumulating each into the working value as we go. Be sure to not look
1094 * past the end of the input string */
b3057643
KW
1095 send = adjusted_send = (U8*) s0 + ((expectlen <= curlen)
1096 ? expectlen
1097 : curlen);
eb83ed87 1098 for (s = s0 + 1; s < send; s++) {
b5b9af04 1099 if (LIKELY(UTF8_IS_CONTINUATION(*s))) {
8850bf83 1100 uv = UTF8_ACCUMULATE(uv, *s);
2b5e7bc2
KW
1101 continue;
1102 }
1103
1104 /* Here, found a non-continuation before processing all expected bytes.
1105 * This byte indicates the beginning of a new character, so quit, even
1106 * if allowing this malformation. */
1107 curlen = s - s0; /* Save how many bytes we actually got */
1108 possible_problems |= UTF8_GOT_NON_CONTINUATION;
1109 goto finish_short;
eb83ed87
KW
1110 } /* End of loop through the character's bytes */
1111
1112 /* Save how many bytes were actually in the character */
1113 curlen = s - s0;
1114
2b5e7bc2
KW
1115 /* Did we get all the continuation bytes that were expected? Note that we
1116 * know this result even without executing the loop above. But we had to
1117 * do the loop to see if there are unexpected non-continuations. */
1118 if (UNLIKELY(curlen < expectlen)) {
1119 possible_problems |= UTF8_GOT_SHORT;
2f8f112e 1120
2b5e7bc2
KW
1121 finish_short:
1122 uv_so_far = uv;
1123 uv = UNICODE_REPLACEMENT;
eb83ed87
KW
1124 }
1125
2b5e7bc2
KW
1126 /* Note that there are two types of too-short malformation. One is when
1127 * there is actual wrong data before the normal termination of the
1128 * sequence. The other is that the sequence wasn't complete before the end
1129 * of the data we are allowed to look at, based on the input 'curlen'.
1130 * This means that we were passed data for a partial character, but it is
1131 * valid as far as we saw. The other is definitely invalid. This
1132 * distinction could be important to a caller, so the two types are kept
1133 * separate. */
1134
1135 /* Check for overflow */
1136 if (UNLIKELY(does_utf8_overflow(s0, send))) {
1137 possible_problems |= UTF8_GOT_OVERFLOW;
1138 uv = UNICODE_REPLACEMENT;
eb83ed87 1139 }
eb83ed87 1140
2b5e7bc2
KW
1141 /* Check for overlong. If no problems so far, 'uv' is the correct code
1142 * point value. Simply see if it is expressible in fewer bytes. Otherwise
1143 * we must look at the UTF-8 byte sequence itself to see if it is for an
1144 * overlong */
1145 if ( ( LIKELY(! possible_problems)
1146 && UNLIKELY(expectlen > (STRLEN) OFFUNISKIP(uv)))
1147 || ( UNLIKELY( possible_problems)
1148 && ( UNLIKELY(! UTF8_IS_START(*s0))
1149 || ( curlen > 1
1150 && UNLIKELY(is_utf8_overlong_given_start_byte_ok(s0,
1151 send - s0))))))
2f8f112e 1152 {
2b5e7bc2
KW
1153 possible_problems |= UTF8_GOT_LONG;
1154
1155 /* A convenience macro that matches either of the too-short conditions.
1156 * */
1157# define UTF8_GOT_TOO_SHORT (UTF8_GOT_SHORT|UTF8_GOT_NON_CONTINUATION)
1158
1159 if (UNLIKELY(possible_problems & UTF8_GOT_TOO_SHORT)) {
1160 UV min_uv = uv_so_far;
1161 STRLEN i;
1162
1163 /* Here, the input is both overlong and is missing some trailing
1164 * bytes. There is no single code point it could be for, but there
1165 * may be enough information present to determine if what we have
1166 * so far is for an unallowed code point, such as for a surrogate.
1167 * The code below has the intelligence to determine this, but just
1168 * for non-overlong UTF-8 sequences. What we do here is calculate
1169 * the smallest code point the input could represent if there were
1170 * no too short malformation. Then we compute and save the UTF-8
1171 * for that, which is what the code below looks at instead of the
1172 * raw input. It turns out that the smallest such code point is
1173 * all we need. */
1174 for (i = curlen; i < expectlen; i++) {
1175 min_uv = UTF8_ACCUMULATE(min_uv,
1176 I8_TO_NATIVE_UTF8(UTF_CONTINUATION_MARK));
1177 }
1178
1179 Newx(adjusted_s0, OFFUNISKIP(min_uv) + 1, U8);
1180 SAVEFREEPV((U8 *) adjusted_s0); /* Needed because we may not get
1181 to free it ourselves if
1182 warnings are made fatal */
1183 adjusted_send = uvoffuni_to_utf8_flags(adjusted_s0, min_uv, 0);
1184 }
eb83ed87
KW
1185 }
1186
2b5e7bc2
KW
1187 /* Now check that the input isn't for a problematic code point not allowed
1188 * by the input parameters. */
1189 /* isn't problematic if < this */
1190 if ( ( ( LIKELY(! possible_problems) && uv >= UNICODE_SURROGATE_FIRST)
1191 || ( UNLIKELY(possible_problems)
1192 && isUTF8_POSSIBLY_PROBLEMATIC(*adjusted_s0)))
760c7c2f
KW
1193 && ((flags & ( UTF8_DISALLOW_NONCHAR
1194 |UTF8_DISALLOW_SURROGATE
1195 |UTF8_DISALLOW_SUPER
1196 |UTF8_DISALLOW_ABOVE_31_BIT
1197 |UTF8_WARN_NONCHAR
1198 |UTF8_WARN_SURROGATE
1199 |UTF8_WARN_SUPER
1200 |UTF8_WARN_ABOVE_31_BIT))
2b5e7bc2
KW
1201 /* In case of a malformation, 'uv' is not valid, and has
1202 * been changed to something in the Unicode range.
1203 * Currently we don't output a deprecation message if there
1204 * is already a malformation, so we don't have to special
1205 * case the test immediately below */
760c7c2f
KW
1206 || ( UNLIKELY(uv > MAX_NON_DEPRECATED_CP)
1207 && ckWARN_d(WARN_DEPRECATED))))
eb83ed87 1208 {
2b5e7bc2
KW
1209 /* If there were no malformations, or the only malformation is an
1210 * overlong, 'uv' is valid */
1211 if (LIKELY(! (possible_problems & ~UTF8_GOT_LONG))) {
1212 if (UNLIKELY(UNICODE_IS_SURROGATE(uv))) {
1213 possible_problems |= UTF8_GOT_SURROGATE;
1214 }
1215 else if (UNLIKELY(uv > PERL_UNICODE_MAX)) {
1216 possible_problems |= UTF8_GOT_SUPER;
1217 }
1218 else if (UNLIKELY(UNICODE_IS_NONCHAR(uv))) {
1219 possible_problems |= UTF8_GOT_NONCHAR;
1220 }
1221 }
1222 else { /* Otherwise, need to look at the source UTF-8, possibly
1223 adjusted to be non-overlong */
1224
1225 if (UNLIKELY(NATIVE_UTF8_TO_I8(*adjusted_s0)
1226 >= FIRST_START_BYTE_THAT_IS_DEFINITELY_SUPER))
ea5ced44 1227 {
2b5e7bc2
KW
1228 possible_problems |= UTF8_GOT_SUPER;
1229 }
1230 else if (curlen > 1) {
1231 if (UNLIKELY(IS_UTF8_2_BYTE_SUPER(
1232 NATIVE_UTF8_TO_I8(*adjusted_s0),
1233 NATIVE_UTF8_TO_I8(*(adjusted_s0 + 1)))))
ea5ced44 1234 {
2b5e7bc2 1235 possible_problems |= UTF8_GOT_SUPER;
ea5ced44 1236 }
2b5e7bc2
KW
1237 else if (UNLIKELY(IS_UTF8_2_BYTE_SURROGATE(
1238 NATIVE_UTF8_TO_I8(*adjusted_s0),
1239 NATIVE_UTF8_TO_I8(*(adjusted_s0 + 1)))))
1240 {
1241 possible_problems |= UTF8_GOT_SURROGATE;
ea5ced44
KW
1242 }
1243 }
c0236afe 1244
2b5e7bc2
KW
1245 /* We need a complete well-formed UTF-8 character to discern
1246 * non-characters, so can't look for them here */
1247 }
1248 }
949cf498 1249
2b5e7bc2
KW
1250 ready_to_handle_errors:
1251
1252 /* At this point:
1253 * curlen contains the number of bytes in the sequence that
1254 * this call should advance the input by.
1255 * possible_problems' is 0 if there weren't any problems; otherwise a bit
1256 * is set in it for each potential problem found.
1257 * uv contains the code point the input sequence
1258 * represents; or if there is a problem that prevents
1259 * a well-defined value from being computed, it is
1260 * some subsitute value, typically the REPLACEMENT
1261 * CHARACTER.
1262 * s0 points to the first byte of the character
1263 * send points to just after where that (potentially
1264 * partial) character ends
1265 * adjusted_s0 normally is the same as s0, but in case of an
1266 * overlong for which the UTF-8 matters below, it is
1267 * the first byte of the shortest form representation
1268 * of the input.
1269 * adjusted_send normally is the same as 'send', but if adjusted_s0
1270 * is set to something other than s0, this points one
1271 * beyond its end
1272 */
eb83ed87 1273
2b5e7bc2
KW
1274 if (UNLIKELY(possible_problems)) {
1275 bool disallowed = FALSE;
1276 const U32 orig_problems = possible_problems;
1277
1278 while (possible_problems) { /* Handle each possible problem */
1279 UV pack_warn = 0;
1280 char * message = NULL;
1281
1282 /* Each 'if' clause handles one problem. They are ordered so that
1283 * the first ones' messages will be displayed before the later
1284 * ones; this is kinda in decreasing severity order */
1285 if (possible_problems & UTF8_GOT_OVERFLOW) {
1286
1287 /* Overflow means also got a super and above 31 bits, but we
1288 * handle all three cases here */
1289 possible_problems
1290 &= ~(UTF8_GOT_OVERFLOW|UTF8_GOT_SUPER|UTF8_GOT_ABOVE_31_BIT);
f9380377
KW
1291 *errors |= UTF8_GOT_OVERFLOW;
1292
1293 /* But the API says we flag all errors found */
1294 if (flags & (UTF8_WARN_SUPER|UTF8_DISALLOW_SUPER)) {
1295 *errors |= UTF8_GOT_SUPER;
1296 }
1297 if (flags & (UTF8_WARN_ABOVE_31_BIT|UTF8_DISALLOW_ABOVE_31_BIT)) {
1298 *errors |= UTF8_GOT_ABOVE_31_BIT;
1299 }
2b5e7bc2
KW
1300
1301 disallowed = TRUE;
1302
1303 /* The warnings code explicitly says it doesn't handle the case
1304 * of packWARN2 and two categories which have parent-child
1305 * relationship. Even if it works now to raise the warning if
1306 * either is enabled, it wouldn't necessarily do so in the
1307 * future. We output (only) the most dire warning*/
1308 if (! (flags & UTF8_CHECK_ONLY)) {
1309 if (ckWARN_d(WARN_UTF8)) {
1310 pack_warn = packWARN(WARN_UTF8);
1311 }
1312 else if (ckWARN_d(WARN_NON_UNICODE)) {
1313 pack_warn = packWARN(WARN_NON_UNICODE);
1314 }
1315 if (pack_warn) {
1316 message = Perl_form(aTHX_ "%s: %s (overflows)",
1317 malformed_text,
1318 _byte_dump_string(s0, send - s0));
1319 }
1320 }
1321 }
1322 else if (possible_problems & UTF8_GOT_EMPTY) {
1323 possible_problems &= ~UTF8_GOT_EMPTY;
f9380377 1324 *errors |= UTF8_GOT_EMPTY;
2b5e7bc2
KW
1325
1326 if (! (flags & UTF8_ALLOW_EMPTY)) {
1327 disallowed = TRUE;
1328 if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) {
1329 pack_warn = packWARN(WARN_UTF8);
1330 message = Perl_form(aTHX_ "%s (empty string)",
1331 malformed_text);
1332 }
1333 }
1334 }
1335 else if (possible_problems & UTF8_GOT_CONTINUATION) {
1336 possible_problems &= ~UTF8_GOT_CONTINUATION;
f9380377 1337 *errors |= UTF8_GOT_CONTINUATION;
2b5e7bc2
KW
1338
1339 if (! (flags & UTF8_ALLOW_CONTINUATION)) {
1340 disallowed = TRUE;
1341 if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) {
1342 pack_warn = packWARN(WARN_UTF8);
1343 message = Perl_form(aTHX_
1344 "%s: %s (unexpected continuation byte 0x%02x,"
1345 " with no preceding start byte)",
1346 malformed_text,
1347 _byte_dump_string(s0, 1), *s0);
1348 }
1349 }
1350 }
1351 else if (possible_problems & UTF8_GOT_NON_CONTINUATION) {
1352 possible_problems &= ~UTF8_GOT_NON_CONTINUATION;
f9380377 1353 *errors |= UTF8_GOT_NON_CONTINUATION;
2b5e7bc2
KW
1354
1355 if (! (flags & UTF8_ALLOW_NON_CONTINUATION)) {
1356 disallowed = TRUE;
1357 if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) {
1358 pack_warn = packWARN(WARN_UTF8);
1359 message = Perl_form(aTHX_ "%s",
1360 unexpected_non_continuation_text(s0,
1361 send - s0,
1362 s - s0,
1363 (int) expectlen));
1364 }
1365 }
1366 }
1367 else if (possible_problems & UTF8_GOT_SHORT) {
1368 possible_problems &= ~UTF8_GOT_SHORT;
f9380377 1369 *errors |= UTF8_GOT_SHORT;
2b5e7bc2
KW
1370
1371 if (! (flags & UTF8_ALLOW_SHORT)) {
1372 disallowed = TRUE;
1373 if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) {
1374 pack_warn = packWARN(WARN_UTF8);
1375 message = Perl_form(aTHX_
1376 "%s: %s (too short; got %d byte%s, need %d)",
1377 malformed_text,
1378 _byte_dump_string(s0, send - s0),
1379 (int)curlen,
1380 curlen == 1 ? "" : "s",
1381 (int)expectlen);
1382 }
1383 }
ba210ebe 1384
2b5e7bc2
KW
1385 }
1386 else if (possible_problems & UTF8_GOT_LONG) {
1387 possible_problems &= ~UTF8_GOT_LONG;
f9380377 1388 *errors |= UTF8_GOT_LONG;
2b5e7bc2
KW
1389
1390 if (! (flags & UTF8_ALLOW_LONG)) {
1391 disallowed = TRUE;
1392
1393 if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) {
1394 pack_warn = packWARN(WARN_UTF8);
1395
1396 /* These error types cause 'uv' to be something that
1397 * isn't what was intended, so can't use it in the
1398 * message. The other error types either can't
1399 * generate an overlong, or else the 'uv' is valid */
1400 if (orig_problems &
1401 (UTF8_GOT_TOO_SHORT|UTF8_GOT_OVERFLOW))
1402 {
1403 message = Perl_form(aTHX_
1404 "%s: %s (any UTF-8 sequence that starts"
1405 " with \"%s\" is overlong which can and"
1406 " should be represented with a"
1407 " different, shorter sequence)",
1408 malformed_text,
1409 _byte_dump_string(s0, send - s0),
1410 _byte_dump_string(s0, curlen));
1411 }
1412 else {
1413 U8 tmpbuf[UTF8_MAXBYTES+1];
1414 const U8 * const e = uvoffuni_to_utf8_flags(tmpbuf,
1415 uv, 0);
1416 message = Perl_form(aTHX_
1417 "%s: %s (overlong; instead use %s to represent"
1418 " U+%0*"UVXf")",
1419 malformed_text,
1420 _byte_dump_string(s0, send - s0),
1421 _byte_dump_string(tmpbuf, e - tmpbuf),
1422 ((uv < 256) ? 2 : 4), /* Field width of 2 for
1423 small code points */
1424 uv);
1425 }
1426 }
1427 }
1428 }
1429 else if (possible_problems & UTF8_GOT_SURROGATE) {
1430 possible_problems &= ~UTF8_GOT_SURROGATE;
1431
f9380377
KW
1432 if (flags & UTF8_WARN_SURROGATE) {
1433 *errors |= UTF8_GOT_SURROGATE;
1434
1435 if ( ! (flags & UTF8_CHECK_ONLY)
1436 && ckWARN_d(WARN_SURROGATE))
1437 {
2b5e7bc2
KW
1438 pack_warn = packWARN(WARN_SURROGATE);
1439
1440 /* These are the only errors that can occur with a
1441 * surrogate when the 'uv' isn't valid */
1442 if (orig_problems & UTF8_GOT_TOO_SHORT) {
1443 message = Perl_form(aTHX_
1444 "UTF-16 surrogate (any UTF-8 sequence that"
1445 " starts with \"%s\" is for a surrogate)",
1446 _byte_dump_string(s0, curlen));
1447 }
1448 else {
1449 message = Perl_form(aTHX_
1450 "UTF-16 surrogate U+%04"UVXf"", uv);
1451 }
f9380377 1452 }
2b5e7bc2 1453 }
ba210ebe 1454
2b5e7bc2
KW
1455 if (flags & UTF8_DISALLOW_SURROGATE) {
1456 disallowed = TRUE;
f9380377 1457 *errors |= UTF8_GOT_SURROGATE;
2b5e7bc2
KW
1458 }
1459 }
1460 else if (possible_problems & UTF8_GOT_SUPER) {
1461 possible_problems &= ~UTF8_GOT_SUPER;
949cf498 1462
f9380377
KW
1463 if (flags & UTF8_WARN_SUPER) {
1464 *errors |= UTF8_GOT_SUPER;
1465
1466 if ( ! (flags & UTF8_CHECK_ONLY)
1467 && ckWARN_d(WARN_NON_UNICODE))
1468 {
2b5e7bc2
KW
1469 pack_warn = packWARN(WARN_NON_UNICODE);
1470
1471 if (orig_problems & UTF8_GOT_TOO_SHORT) {
1472 message = Perl_form(aTHX_
1473 "Any UTF-8 sequence that starts with"
1474 " \"%s\" is for a non-Unicode code point,"
1475 " may not be portable",
1476 _byte_dump_string(s0, curlen));
1477 }
1478 else {
1479 message = Perl_form(aTHX_
1480 "Code point 0x%04"UVXf" is not"
1481 " Unicode, may not be portable",
1482 uv);
1483 }
f9380377 1484 }
2b5e7bc2 1485 }
ba210ebe 1486
2b5e7bc2
KW
1487 /* The maximum code point ever specified by a standard was
1488 * 2**31 - 1. Anything larger than that is a Perl extension
1489 * that very well may not be understood by other applications
1490 * (including earlier perl versions on EBCDIC platforms). We
1491 * test for these after the regular SUPER ones, and before
1492 * possibly bailing out, so that the slightly more dire warning
1493 * will override the regular one. */
1494 if ( (flags & (UTF8_WARN_ABOVE_31_BIT
1495 |UTF8_WARN_SUPER
1496 |UTF8_DISALLOW_ABOVE_31_BIT))
1497 && ( ( UNLIKELY(orig_problems & UTF8_GOT_TOO_SHORT)
1498 && UNLIKELY(is_utf8_cp_above_31_bits(
1499 adjusted_s0,
1500 adjusted_send)))
1501 || ( LIKELY(! (orig_problems & UTF8_GOT_TOO_SHORT))
1502 && UNLIKELY(UNICODE_IS_ABOVE_31_BIT(uv)))))
1503 {
1504 if ( ! (flags & UTF8_CHECK_ONLY)
1505 && (flags & (UTF8_WARN_ABOVE_31_BIT|UTF8_WARN_SUPER))
1506 && ckWARN_d(WARN_UTF8))
1507 {
1508 pack_warn = packWARN(WARN_UTF8);
1509
1510 if (orig_problems & UTF8_GOT_TOO_SHORT) {
1511 message = Perl_form(aTHX_
1512 "Any UTF-8 sequence that starts with"
1513 " \"%s\" is for a non-Unicode code"
1514 " point, and is not portable",
1515 _byte_dump_string(s0, curlen));
1516 }
1517 else {
1518 message = Perl_form(aTHX_
1519 "Code point 0x%"UVXf" is not Unicode,"
1520 " and not portable",
1521 uv);
1522 }
1523 }
1524
f9380377
KW
1525 if (flags & (UTF8_WARN_ABOVE_31_BIT|UTF8_DISALLOW_ABOVE_31_BIT)) {
1526 *errors |= UTF8_GOT_ABOVE_31_BIT;
1527
1528 if (flags & UTF8_DISALLOW_ABOVE_31_BIT) {
1529 disallowed = TRUE;
1530 }
2b5e7bc2
KW
1531 }
1532 }
eb83ed87 1533
2b5e7bc2 1534 if (flags & UTF8_DISALLOW_SUPER) {
f9380377 1535 *errors |= UTF8_GOT_SUPER;
2b5e7bc2
KW
1536 disallowed = TRUE;
1537 }
eb83ed87 1538
2b5e7bc2
KW
1539 /* The deprecated warning overrides any non-deprecated one. If
1540 * there are other problems, a deprecation message is not
1541 * really helpful, so don't bother to raise it in that case.
1542 * This also keeps the code from having to handle the case
1543 * where 'uv' is not valid. */
1544 if ( ! (orig_problems
1545 & (UTF8_GOT_TOO_SHORT|UTF8_GOT_OVERFLOW))
1546 && UNLIKELY(uv > MAX_NON_DEPRECATED_CP)
1547 && ckWARN_d(WARN_DEPRECATED))
1548 {
1549 message = Perl_form(aTHX_ cp_above_legal_max,
1550 uv, MAX_NON_DEPRECATED_CP);
1551 pack_warn = packWARN(WARN_DEPRECATED);
1552 }
1553 }
1554 else if (possible_problems & UTF8_GOT_NONCHAR) {
1555 possible_problems &= ~UTF8_GOT_NONCHAR;
ba210ebe 1556
f9380377
KW
1557 if (flags & UTF8_WARN_NONCHAR) {
1558 *errors |= UTF8_GOT_NONCHAR;
1559
1560 if ( ! (flags & UTF8_CHECK_ONLY)
1561 && ckWARN_d(WARN_NONCHAR))
1562 {
2b5e7bc2
KW
1563 /* The code above should have guaranteed that we don't
1564 * get here with errors other than overlong */
1565 assert (! (orig_problems
1566 & ~(UTF8_GOT_LONG|UTF8_GOT_NONCHAR)));
1567
1568 pack_warn = packWARN(WARN_NONCHAR);
1569 message = Perl_form(aTHX_ "Unicode non-character"
1570 " U+%04"UVXf" is not recommended"
1571 " for open interchange", uv);
f9380377 1572 }
2b5e7bc2 1573 }
5b311467 1574
2b5e7bc2
KW
1575 if (flags & UTF8_DISALLOW_NONCHAR) {
1576 disallowed = TRUE;
f9380377 1577 *errors |= UTF8_GOT_NONCHAR;
2b5e7bc2
KW
1578 }
1579 } /* End of looking through the possible flags */
1580
1581 /* Display the message (if any) for the problem being handled in
1582 * this iteration of the loop */
1583 if (message) {
1584 if (PL_op)
1585 Perl_warner(aTHX_ pack_warn, "%s in %s", message,
1586 OP_DESC(PL_op));
1587 else
1588 Perl_warner(aTHX_ pack_warn, "%s", message);
1589 }
1590 } /* End of 'while (possible_problems) {' */
a0dbb045 1591
2b5e7bc2
KW
1592 /* Since there was a possible problem, the returned length may need to
1593 * be changed from the one stored at the beginning of this function.
1594 * Instead of trying to figure out if that's needed, just do it. */
1595 if (retlen) {
1596 *retlen = curlen;
1597 }
a0dbb045 1598
2b5e7bc2
KW
1599 if (disallowed) {
1600 if (flags & UTF8_CHECK_ONLY && retlen) {
1601 *retlen = ((STRLEN) -1);
1602 }
1603 return 0;
1604 }
eb83ed87 1605 }
ba210ebe 1606
2b5e7bc2 1607 return UNI_TO_NATIVE(uv);
a0ed51b3
LW
1608}
1609
8e84507e 1610/*
ec5f19d0
KW
1611=for apidoc utf8_to_uvchr_buf
1612
1613Returns the native code point of the first character in the string C<s> which
1614is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>.
524080c4 1615C<*retlen> will be set to the length, in bytes, of that character.
ec5f19d0 1616
524080c4
KW
1617If C<s> does not point to a well-formed UTF-8 character and UTF8 warnings are
1618enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't
796b6530 1619C<NULL>) to -1. If those warnings are off, the computed value, if well-defined
173db420 1620(or the Unicode REPLACEMENT CHARACTER if not), is silently returned, and
796b6530 1621C<*retlen> is set (if C<retlen> isn't C<NULL>) so that (S<C<s> + C<*retlen>>) is
173db420 1622the next possible position in C<s> that could begin a non-malformed character.
de69f3af 1623See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is
173db420 1624returned.
ec5f19d0 1625
760c7c2f
KW
1626Code points above the platform's C<IV_MAX> will raise a deprecation warning,
1627unless those are turned off.
1628
ec5f19d0 1629=cut
52be2536
KW
1630
1631Also implemented as a macro in utf8.h
1632
ec5f19d0
KW
1633*/
1634
1635
1636UV
1637Perl_utf8_to_uvchr_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
1638{
ec5f19d0
KW
1639 assert(s < send);
1640
1641 return utf8n_to_uvchr(s, send - s, retlen,
1642 ckWARN_d(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
1643}
1644
52be2536
KW
1645/* This is marked as deprecated
1646 *
ec5f19d0
KW
1647=for apidoc utf8_to_uvuni_buf
1648
de69f3af
KW
1649Only in very rare circumstances should code need to be dealing in Unicode
1650(as opposed to native) code points. In those few cases, use
1651C<L<NATIVE_TO_UNI(utf8_to_uvchr_buf(...))|/utf8_to_uvchr_buf>> instead.
4f83cdcd
KW
1652
1653Returns the Unicode (not-native) code point of the first character in the
1654string C<s> which
ec5f19d0
KW
1655is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>.
1656C<retlen> will be set to the length, in bytes, of that character.
1657
524080c4
KW
1658If C<s> does not point to a well-formed UTF-8 character and UTF8 warnings are
1659enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't
1660NULL) to -1. If those warnings are off, the computed value if well-defined (or
1661the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen>
1662is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the
1663next possible position in C<s> that could begin a non-malformed character.
de69f3af 1664See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is returned.
ec5f19d0 1665
760c7c2f
KW
1666Code points above the platform's C<IV_MAX> will raise a deprecation warning,
1667unless those are turned off.
1668
ec5f19d0
KW
1669=cut
1670*/
1671
1672UV
1673Perl_utf8_to_uvuni_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
1674{
1675 PERL_ARGS_ASSERT_UTF8_TO_UVUNI_BUF;
1676
1677 assert(send > s);
1678
5962d97e
KW
1679 /* Call the low level routine, asking for checks */
1680 return NATIVE_TO_UNI(utf8_to_uvchr_buf(s, send, retlen));
ec5f19d0
KW
1681}
1682
b76347f2 1683/*
87cea99e 1684=for apidoc utf8_length
b76347f2
JH
1685
1686Return the length of the UTF-8 char encoded string C<s> in characters.
02eb7b47
JH
1687Stops at C<e> (inclusive). If C<e E<lt> s> or if the scan would end
1688up past C<e>, croaks.
b76347f2
JH
1689
1690=cut
1691*/
1692
1693STRLEN
35a4481c 1694Perl_utf8_length(pTHX_ const U8 *s, const U8 *e)
b76347f2
JH
1695{
1696 STRLEN len = 0;
1697
7918f24d
NC
1698 PERL_ARGS_ASSERT_UTF8_LENGTH;
1699
8850bf83
JH
1700 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g.
1701 * the bitops (especially ~) can create illegal UTF-8.
1702 * In other words: in Perl UTF-8 is not just for Unicode. */
1703
a3b680e6
AL
1704 if (e < s)
1705 goto warn_and_return;
b76347f2 1706 while (s < e) {
4cbf4130 1707 s += UTF8SKIP(s);
8e91ec7f
AV
1708 len++;
1709 }
1710
1711 if (e != s) {
1712 len--;
1713 warn_and_return:
9b387841
NC
1714 if (PL_op)
1715 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
1716 "%s in %s", unees, OP_DESC(PL_op));
1717 else
61a12c31 1718 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), "%s", unees);
b76347f2
JH
1719 }
1720
1721 return len;
1722}
1723
b06226ff 1724/*
fed3ba5d
NC
1725=for apidoc bytes_cmp_utf8
1726
a1433954 1727Compares the sequence of characters (stored as octets) in C<b>, C<blen> with the
72d33970
FC
1728sequence of characters (stored as UTF-8)
1729in C<u>, C<ulen>. Returns 0 if they are
fed3ba5d
NC
1730equal, -1 or -2 if the first string is less than the second string, +1 or +2
1731if the first string is greater than the second string.
1732
1733-1 or +1 is returned if the shorter string was identical to the start of the
72d33970
FC
1734longer string. -2 or +2 is returned if
1735there was a difference between characters
fed3ba5d
NC
1736within the strings.
1737
1738=cut
1739*/
1740
1741int
1742Perl_bytes_cmp_utf8(pTHX_ const U8 *b, STRLEN blen, const U8 *u, STRLEN ulen)
1743{
1744 const U8 *const bend = b + blen;
1745 const U8 *const uend = u + ulen;
1746
1747 PERL_ARGS_ASSERT_BYTES_CMP_UTF8;
fed3ba5d
NC
1748
1749 while (b < bend && u < uend) {
1750 U8 c = *u++;
1751 if (!UTF8_IS_INVARIANT(c)) {
1752 if (UTF8_IS_DOWNGRADEABLE_START(c)) {
1753 if (u < uend) {
1754 U8 c1 = *u++;
1755 if (UTF8_IS_CONTINUATION(c1)) {
a62b247b 1756 c = EIGHT_BIT_UTF8_TO_NATIVE(c, c1);
fed3ba5d 1757 } else {
2b5e7bc2 1758 /* diag_listed_as: Malformed UTF-8 character%s */
fed3ba5d 1759 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
806547a7 1760 "%s %s%s",
7cf8d05d 1761 unexpected_non_continuation_text(u - 1, 2, 1, 2),
806547a7
KW
1762 PL_op ? " in " : "",
1763 PL_op ? OP_DESC(PL_op) : "");
fed3ba5d
NC
1764 return -2;
1765 }
1766 } else {
1767 if (PL_op)
1768 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
1769 "%s in %s", unees, OP_DESC(PL_op));
1770 else
61a12c31 1771 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), "%s", unees);
fed3ba5d
NC
1772 return -2; /* Really want to return undef :-) */
1773 }
1774 } else {
1775 return -2;
1776 }
1777 }
1778 if (*b != c) {
1779 return *b < c ? -2 : +2;
1780 }
1781 ++b;
1782 }
1783
1784 if (b == bend && u == uend)
1785 return 0;
1786
1787 return b < bend ? +1 : -1;
1788}
1789
1790/*
87cea99e 1791=for apidoc utf8_to_bytes
6940069f 1792
2bbc8d55 1793Converts a string C<s> of length C<len> from UTF-8 into native byte encoding.
a1433954
KW
1794Unlike L</bytes_to_utf8>, this over-writes the original string, and
1795updates C<len> to contain the new length.
67e989fb 1796Returns zero on failure, setting C<len> to -1.
6940069f 1797
a1433954 1798If you need a copy of the string, see L</bytes_from_utf8>.
95be277c 1799
6940069f
GS
1800=cut
1801*/
1802
1803U8 *
37607a96 1804Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len)
6940069f 1805{
d4c19fe8
AL
1806 U8 * const save = s;
1807 U8 * const send = s + *len;
6940069f 1808 U8 *d;
246fae53 1809
7918f24d 1810 PERL_ARGS_ASSERT_UTF8_TO_BYTES;
81611534 1811 PERL_UNUSED_CONTEXT;
7918f24d 1812
1e54db1a 1813 /* ensure valid UTF-8 and chars < 256 before updating string */
d4c19fe8 1814 while (s < send) {
d59937ca
KW
1815 if (! UTF8_IS_INVARIANT(*s)) {
1816 if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, send)) {
1817 *len = ((STRLEN) -1);
1818 return 0;
1819 }
1820 s++;
dcad2880 1821 }
d59937ca 1822 s++;
246fae53 1823 }
dcad2880
JH
1824
1825 d = s = save;
6940069f 1826 while (s < send) {
80e0b38f
KW
1827 U8 c = *s++;
1828 if (! UTF8_IS_INVARIANT(c)) {
1829 /* Then it is two-byte encoded */
a62b247b 1830 c = EIGHT_BIT_UTF8_TO_NATIVE(c, *s);
80e0b38f
KW
1831 s++;
1832 }
1833 *d++ = c;
6940069f
GS
1834 }
1835 *d = '\0';
246fae53 1836 *len = d - save;
6940069f
GS
1837 return save;
1838}
1839
1840/*
87cea99e 1841=for apidoc bytes_from_utf8
f9a63242 1842
2bbc8d55 1843Converts a string C<s> of length C<len> from UTF-8 into native byte encoding.
a1433954 1844Unlike L</utf8_to_bytes> but like L</bytes_to_utf8>, returns a pointer to
ef9edfd0
JH
1845the newly-created string, and updates C<len> to contain the new
1846length. Returns the original string if no conversion occurs, C<len>
72d33970 1847is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to
2bbc8d55 18480 if C<s> is converted or consisted entirely of characters that are invariant
4a4088c4 1849in UTF-8 (i.e., US-ASCII on non-EBCDIC machines).
f9a63242 1850
37607a96
PK
1851=cut
1852*/
f9a63242
JH
1853
1854U8 *
e1ec3a88 1855Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8)
f9a63242 1856{
f9a63242 1857 U8 *d;
e1ec3a88
AL
1858 const U8 *start = s;
1859 const U8 *send;
f9a63242
JH
1860 I32 count = 0;
1861
7918f24d 1862 PERL_ARGS_ASSERT_BYTES_FROM_UTF8;
96a5add6 1863 PERL_UNUSED_CONTEXT;
f9a63242 1864 if (!*is_utf8)
73d840c0 1865 return (U8 *)start;
f9a63242 1866
1e54db1a 1867 /* ensure valid UTF-8 and chars < 256 before converting string */
f9a63242 1868 for (send = s + *len; s < send;) {
d59937ca
KW
1869 if (! UTF8_IS_INVARIANT(*s)) {
1870 if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, send)) {
73d840c0 1871 return (U8 *)start;
d59937ca
KW
1872 }
1873 count++;
1874 s++;
db42d148 1875 }
d59937ca 1876 s++;
f9a63242
JH
1877 }
1878
35da51f7 1879 *is_utf8 = FALSE;
f9a63242 1880
212542aa 1881 Newx(d, (*len) - count + 1, U8);
ef9edfd0 1882 s = start; start = d;
f9a63242
JH
1883 while (s < send) {
1884 U8 c = *s++;
1a91c45d 1885 if (! UTF8_IS_INVARIANT(c)) {
c4d5f83a 1886 /* Then it is two-byte encoded */
a62b247b 1887 c = EIGHT_BIT_UTF8_TO_NATIVE(c, *s);
1a91c45d 1888 s++;
c4d5f83a
NIS
1889 }
1890 *d++ = c;
f9a63242
JH
1891 }
1892 *d = '\0';
1893 *len = d - start;
73d840c0 1894 return (U8 *)start;
f9a63242
JH
1895}
1896
1897/*
87cea99e 1898=for apidoc bytes_to_utf8
6940069f 1899
ff97e5cf
KW
1900Converts a string C<s> of length C<len> bytes from the native encoding into
1901UTF-8.
6662521e 1902Returns a pointer to the newly-created string, and sets C<len> to
ff97e5cf 1903reflect the new length in bytes.
6940069f 1904
75200dff 1905A C<NUL> character will be written after the end of the string.
2bbc8d55
SP
1906
1907If you want to convert to UTF-8 from encodings other than
1908the native (Latin1 or EBCDIC),
a1433954 1909see L</sv_recode_to_utf8>().
c9ada85f 1910
497711e7 1911=cut
6940069f
GS
1912*/
1913
c682ebef
FC
1914/* This logic is duplicated in sv_catpvn_flags, so any bug fixes will
1915 likewise need duplication. */
1916
6940069f 1917U8*
35a4481c 1918Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len)
6940069f 1919{
35a4481c 1920 const U8 * const send = s + (*len);
6940069f
GS
1921 U8 *d;
1922 U8 *dst;
7918f24d
NC
1923
1924 PERL_ARGS_ASSERT_BYTES_TO_UTF8;
96a5add6 1925 PERL_UNUSED_CONTEXT;
6940069f 1926
212542aa 1927 Newx(d, (*len) * 2 + 1, U8);
6940069f
GS
1928 dst = d;
1929
1930 while (s < send) {
55d09dc8
KW
1931 append_utf8_from_native_byte(*s, &d);
1932 s++;
6940069f
GS
1933 }
1934 *d = '\0';
6662521e 1935 *len = d-dst;
6940069f
GS
1936 return dst;
1937}
1938
a0ed51b3 1939/*
dea0fc0b 1940 * Convert native (big-endian) or reversed (little-endian) UTF-16 to UTF-8.
a0ed51b3
LW
1941 *
1942 * Destination must be pre-extended to 3/2 source. Do not use in-place.
1943 * We optimize for native, for obvious reasons. */
1944
1945U8*
dea0fc0b 1946Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
a0ed51b3 1947{
dea0fc0b
JH
1948 U8* pend;
1949 U8* dstart = d;
1950
7918f24d
NC
1951 PERL_ARGS_ASSERT_UTF16_TO_UTF8;
1952
dea0fc0b 1953 if (bytelen & 1)
f5992bc4 1954 Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen %"UVuf, (UV)bytelen);
dea0fc0b
JH
1955
1956 pend = p + bytelen;
1957
a0ed51b3 1958 while (p < pend) {
dea0fc0b
JH
1959 UV uv = (p[0] << 8) + p[1]; /* UTF-16BE */
1960 p += 2;
2d1545e5 1961 if (OFFUNI_IS_INVARIANT(uv)) {
56d37426 1962 *d++ = LATIN1_TO_NATIVE((U8) uv);
a0ed51b3
LW
1963 continue;
1964 }
56d37426
KW
1965 if (uv <= MAX_UTF8_TWO_BYTE) {
1966 *d++ = UTF8_TWO_BYTE_HI(UNI_TO_NATIVE(uv));
1967 *d++ = UTF8_TWO_BYTE_LO(UNI_TO_NATIVE(uv));
a0ed51b3
LW
1968 continue;
1969 }
46956fad
KW
1970#define FIRST_HIGH_SURROGATE UNICODE_SURROGATE_FIRST
1971#define LAST_HIGH_SURROGATE 0xDBFF
1972#define FIRST_LOW_SURROGATE 0xDC00
1973#define LAST_LOW_SURROGATE UNICODE_SURROGATE_LAST
e23c50db
KW
1974
1975 /* This assumes that most uses will be in the first Unicode plane, not
1976 * needing surrogates */
1977 if (UNLIKELY(uv >= UNICODE_SURROGATE_FIRST
1978 && uv <= UNICODE_SURROGATE_LAST))
1979 {
1980 if (UNLIKELY(p >= pend) || UNLIKELY(uv > LAST_HIGH_SURROGATE)) {
1981 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
1982 }
1983 else {
01ea242b 1984 UV low = (p[0] << 8) + p[1];
e23c50db
KW
1985 if ( UNLIKELY(low < FIRST_LOW_SURROGATE)
1986 || UNLIKELY(low > LAST_LOW_SURROGATE))
1987 {
01ea242b 1988 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
e23c50db
KW
1989 }
1990 p += 2;
46956fad
KW
1991 uv = ((uv - FIRST_HIGH_SURROGATE) << 10)
1992 + (low - FIRST_LOW_SURROGATE) + 0x10000;
01ea242b 1993 }
a0ed51b3 1994 }
56d37426
KW
1995#ifdef EBCDIC
1996 d = uvoffuni_to_utf8_flags(d, uv, 0);
1997#else
a0ed51b3 1998 if (uv < 0x10000) {
eb160463
GS
1999 *d++ = (U8)(( uv >> 12) | 0xe0);
2000 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
2001 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
2002 continue;
2003 }
2004 else {
eb160463
GS
2005 *d++ = (U8)(( uv >> 18) | 0xf0);
2006 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
2007 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
2008 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
2009 continue;
2010 }
56d37426 2011#endif
a0ed51b3 2012 }
dea0fc0b 2013 *newlen = d - dstart;
a0ed51b3
LW
2014 return d;
2015}
2016
2017/* Note: this one is slightly destructive of the source. */
2018
2019U8*
dea0fc0b 2020Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
a0ed51b3
LW
2021{
2022 U8* s = (U8*)p;
d4c19fe8 2023 U8* const send = s + bytelen;
7918f24d
NC
2024
2025 PERL_ARGS_ASSERT_UTF16_TO_UTF8_REVERSED;
2026
e0ea5e2d
NC
2027 if (bytelen & 1)
2028 Perl_croak(aTHX_ "panic: utf16_to_utf8_reversed: odd bytelen %"UVuf,
2029 (UV)bytelen);
2030
a0ed51b3 2031 while (s < send) {
d4c19fe8 2032 const U8 tmp = s[0];
a0ed51b3
LW
2033 s[0] = s[1];
2034 s[1] = tmp;
2035 s += 2;
2036 }
dea0fc0b 2037 return utf16_to_utf8(p, d, bytelen, newlen);
a0ed51b3
LW
2038}
2039
922e8cb4
KW
2040bool
2041Perl__is_uni_FOO(pTHX_ const U8 classnum, const UV c)
2042{
2043 U8 tmpbuf[UTF8_MAXBYTES+1];
2044 uvchr_to_utf8(tmpbuf, c);
2045 return _is_utf8_FOO(classnum, tmpbuf);
2046}
2047
f9ae8fb6
JD
2048/* Internal function so we can deprecate the external one, and call
2049 this one from other deprecated functions in this file */
2050
f2645549
KW
2051bool
2052Perl__is_utf8_idstart(pTHX_ const U8 *p)
61b19385 2053{
f2645549 2054 PERL_ARGS_ASSERT__IS_UTF8_IDSTART;
61b19385
KW
2055
2056 if (*p == '_')
2057 return TRUE;
f25ce844 2058 return is_utf8_common(p, &PL_utf8_idstart, "IdStart", NULL);
61b19385
KW
2059}
2060
5092f92a 2061bool
eba68aa0
KW
2062Perl__is_uni_perl_idcont(pTHX_ UV c)
2063{
2064 U8 tmpbuf[UTF8_MAXBYTES+1];
2065 uvchr_to_utf8(tmpbuf, c);
2066 return _is_utf8_perl_idcont(tmpbuf);
2067}
2068
2069bool
f91dcd13
KW
2070Perl__is_uni_perl_idstart(pTHX_ UV c)
2071{
2072 U8 tmpbuf[UTF8_MAXBYTES+1];
2073 uvchr_to_utf8(tmpbuf, c);
2074 return _is_utf8_perl_idstart(tmpbuf);
2075}
2076
3a4c58c9
KW
2077UV
2078Perl__to_upper_title_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp, const char S_or_s)
2079{
2080 /* We have the latin1-range values compiled into the core, so just use
4a4088c4 2081 * those, converting the result to UTF-8. The only difference between upper
3a4c58c9
KW
2082 * and title case in this range is that LATIN_SMALL_LETTER_SHARP_S is
2083 * either "SS" or "Ss". Which one to use is passed into the routine in
2084 * 'S_or_s' to avoid a test */
2085
2086 UV converted = toUPPER_LATIN1_MOD(c);
2087
2088 PERL_ARGS_ASSERT__TO_UPPER_TITLE_LATIN1;
2089
2090 assert(S_or_s == 'S' || S_or_s == 's');
2091
6f2d5cbc 2092 if (UVCHR_IS_INVARIANT(converted)) { /* No difference between the two for
f4cd282c 2093 characters in this range */
3a4c58c9
KW
2094 *p = (U8) converted;
2095 *lenp = 1;
2096 return converted;
2097 }
2098
2099 /* toUPPER_LATIN1_MOD gives the correct results except for three outliers,
2100 * which it maps to one of them, so as to only have to have one check for
2101 * it in the main case */
2102 if (UNLIKELY(converted == LATIN_SMALL_LETTER_Y_WITH_DIAERESIS)) {
2103 switch (c) {
2104 case LATIN_SMALL_LETTER_Y_WITH_DIAERESIS:
2105 converted = LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS;
2106 break;
2107 case MICRO_SIGN:
2108 converted = GREEK_CAPITAL_LETTER_MU;
2109 break;
79e064b9
KW
2110#if UNICODE_MAJOR_VERSION > 2 \
2111 || (UNICODE_MAJOR_VERSION == 2 && UNICODE_DOT_VERSION >= 1 \
2112 && UNICODE_DOT_DOT_VERSION >= 8)
3a4c58c9
KW
2113 case LATIN_SMALL_LETTER_SHARP_S:
2114 *(p)++ = 'S';
2115 *p = S_or_s;
2116 *lenp = 2;
2117 return 'S';
79e064b9 2118#endif
3a4c58c9
KW
2119 default:
2120 Perl_croak(aTHX_ "panic: to_upper_title_latin1 did not expect '%c' to map to '%c'", c, LATIN_SMALL_LETTER_Y_WITH_DIAERESIS);
e5964223 2121 NOT_REACHED; /* NOTREACHED */
3a4c58c9
KW
2122 }
2123 }
2124
2125 *(p)++ = UTF8_TWO_BYTE_HI(converted);
2126 *p = UTF8_TWO_BYTE_LO(converted);
2127 *lenp = 2;
2128
2129 return converted;
2130}
2131
50bda2c3
KW
2132/* Call the function to convert a UTF-8 encoded character to the specified case.
2133 * Note that there may be more than one character in the result.
2134 * INP is a pointer to the first byte of the input character
2135 * OUTP will be set to the first byte of the string of changed characters. It
2136 * needs to have space for UTF8_MAXBYTES_CASE+1 bytes
2137 * LENP will be set to the length in bytes of the string of changed characters
2138 *
2139 * The functions return the ordinal of the first character in the string of OUTP */
b9992569
KW
2140#define CALL_UPPER_CASE(uv, s, d, lenp) _to_utf8_case(uv, s, d, lenp, &PL_utf8_toupper, "ToUc", "")
2141#define CALL_TITLE_CASE(uv, s, d, lenp) _to_utf8_case(uv, s, d, lenp, &PL_utf8_totitle, "ToTc", "")
2142#define CALL_LOWER_CASE(uv, s, d, lenp) _to_utf8_case(uv, s, d, lenp, &PL_utf8_tolower, "ToLc", "")
50bda2c3 2143
b9992569
KW
2144/* This additionally has the input parameter 'specials', which if non-zero will
2145 * cause this to use the specials hash for folding (meaning get full case
50bda2c3 2146 * folding); otherwise, when zero, this implies a simple case fold */
b9992569 2147#define CALL_FOLD_CASE(uv, s, d, lenp, specials) _to_utf8_case(uv, s, d, lenp, &PL_utf8_tofold, "ToCf", (specials) ? "" : NULL)
c3fd2246 2148
84afefe6
JH
2149UV
2150Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp)
a0ed51b3 2151{
a1433954
KW
2152 /* Convert the Unicode character whose ordinal is <c> to its uppercase
2153 * version and store that in UTF-8 in <p> and its length in bytes in <lenp>.
2154 * Note that the <p> needs to be at least UTF8_MAXBYTES_CASE+1 bytes since
c3fd2246
KW
2155 * the changed version may be longer than the original character.
2156 *
2157 * The ordinal of the first character of the changed version is returned
2158 * (but note, as explained above, that there may be more.) */
2159
7918f24d
NC
2160 PERL_ARGS_ASSERT_TO_UNI_UPPER;
2161
3a4c58c9
KW
2162 if (c < 256) {
2163 return _to_upper_title_latin1((U8) c, p, lenp, 'S');
2164 }
2165
0ebc6274 2166 uvchr_to_utf8(p, c);
b9992569 2167 return CALL_UPPER_CASE(c, p, p, lenp);
a0ed51b3
LW
2168}
2169
84afefe6
JH
2170UV
2171Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp)
a0ed51b3 2172{
7918f24d
NC
2173 PERL_ARGS_ASSERT_TO_UNI_TITLE;
2174
3a4c58c9
KW
2175 if (c < 256) {
2176 return _to_upper_title_latin1((U8) c, p, lenp, 's');
2177 }
2178
0ebc6274 2179 uvchr_to_utf8(p, c);
b9992569 2180 return CALL_TITLE_CASE(c, p, p, lenp);
a0ed51b3
LW
2181}
2182
afc16117 2183STATIC U8
81611534 2184S_to_lower_latin1(const U8 c, U8* p, STRLEN *lenp)
afc16117
KW
2185{
2186 /* We have the latin1-range values compiled into the core, so just use
4a4088c4 2187 * those, converting the result to UTF-8. Since the result is always just
a1433954 2188 * one character, we allow <p> to be NULL */
afc16117
KW
2189
2190 U8 converted = toLOWER_LATIN1(c);
2191
2192 if (p != NULL) {
6f2d5cbc 2193 if (NATIVE_BYTE_IS_INVARIANT(converted)) {
afc16117
KW
2194 *p = converted;
2195 *lenp = 1;
2196 }
2197 else {
430c9760
KW
2198 /* Result is known to always be < 256, so can use the EIGHT_BIT
2199 * macros */
2200 *p = UTF8_EIGHT_BIT_HI(converted);
2201 *(p+1) = UTF8_EIGHT_BIT_LO(converted);
afc16117
KW
2202 *lenp = 2;
2203 }
2204 }
2205 return converted;
2206}
2207
84afefe6
JH
2208UV
2209Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp)
a0ed51b3 2210{
7918f24d
NC
2211 PERL_ARGS_ASSERT_TO_UNI_LOWER;
2212
afc16117
KW
2213 if (c < 256) {
2214 return to_lower_latin1((U8) c, p, lenp);
bca00c02
KW
2215 }
2216
afc16117 2217 uvchr_to_utf8(p, c);
b9992569 2218 return CALL_LOWER_CASE(c, p, p, lenp);
a0ed51b3
LW
2219}
2220
84afefe6 2221UV
51910141 2222Perl__to_fold_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp, const unsigned int flags)
a1dde8de 2223{
51910141 2224 /* Corresponds to to_lower_latin1(); <flags> bits meanings:
1ca267a5 2225 * FOLD_FLAGS_NOMIX_ASCII iff non-ASCII to ASCII folds are prohibited
51910141 2226 * FOLD_FLAGS_FULL iff full folding is to be used;
1ca267a5
KW
2227 *
2228 * Not to be used for locale folds
51910141 2229 */
f673fad4 2230
a1dde8de
KW
2231 UV converted;
2232
2233 PERL_ARGS_ASSERT__TO_FOLD_LATIN1;
81611534 2234 PERL_UNUSED_CONTEXT;
a1dde8de 2235
1ca267a5
KW
2236 assert (! (flags & FOLD_FLAGS_LOCALE));
2237
659a7c2d 2238 if (UNLIKELY(c == MICRO_SIGN)) {
a1dde8de
KW
2239 converted = GREEK_SMALL_LETTER_MU;
2240 }
9b63e895
KW
2241#if UNICODE_MAJOR_VERSION > 3 /* no multifolds in early Unicode */ \
2242 || (UNICODE_MAJOR_VERSION == 3 && ( UNICODE_DOT_VERSION > 0) \
2243 || UNICODE_DOT_DOT_VERSION > 0)
659a7c2d
KW
2244 else if ( (flags & FOLD_FLAGS_FULL)
2245 && UNLIKELY(c == LATIN_SMALL_LETTER_SHARP_S))
2246 {
1ca267a5
KW
2247 /* If can't cross 127/128 boundary, can't return "ss"; instead return
2248 * two U+017F characters, as fc("\df") should eq fc("\x{17f}\x{17f}")
2249 * under those circumstances. */
2250 if (flags & FOLD_FLAGS_NOMIX_ASCII) {
2251 *lenp = 2 * sizeof(LATIN_SMALL_LETTER_LONG_S_UTF8) - 2;
2252 Copy(LATIN_SMALL_LETTER_LONG_S_UTF8 LATIN_SMALL_LETTER_LONG_S_UTF8,
2253 p, *lenp, U8);
2254 return LATIN_SMALL_LETTER_LONG_S;
2255 }
2256 else {
4f489194
KW
2257 *(p)++ = 's';
2258 *p = 's';
2259 *lenp = 2;
2260 return 's';
1ca267a5 2261 }
a1dde8de 2262 }
9b63e895 2263#endif
a1dde8de
KW
2264 else { /* In this range the fold of all other characters is their lower
2265 case */
2266 converted = toLOWER_LATIN1(c);
2267 }
2268
6f2d5cbc 2269 if (UVCHR_IS_INVARIANT(converted)) {
a1dde8de
KW
2270 *p = (U8) converted;
2271 *lenp = 1;
2272 }
2273 else {
2274 *(p)++ = UTF8_TWO_BYTE_HI(converted);
2275 *p = UTF8_TWO_BYTE_LO(converted);
2276 *lenp = 2;
2277 }
2278
2279 return converted;
2280}
2281
2282UV
31f05a37 2283Perl__to_uni_fold_flags(pTHX_ UV c, U8* p, STRLEN *lenp, U8 flags)
84afefe6 2284{
4b593389 2285
a0270393
KW
2286 /* Not currently externally documented, and subject to change
2287 * <flags> bits meanings:
2288 * FOLD_FLAGS_FULL iff full folding is to be used;
31f05a37
KW
2289 * FOLD_FLAGS_LOCALE is set iff the rules from the current underlying
2290 * locale are to be used.
a0270393
KW
2291 * FOLD_FLAGS_NOMIX_ASCII iff non-ASCII to ASCII folds are prohibited
2292 */
4b593389 2293
36bb2ab6 2294 PERL_ARGS_ASSERT__TO_UNI_FOLD_FLAGS;
7918f24d 2295
780fcc9f
KW
2296 if (flags & FOLD_FLAGS_LOCALE) {
2297 /* Treat a UTF-8 locale as not being in locale at all */
2298 if (IN_UTF8_CTYPE_LOCALE) {
2299 flags &= ~FOLD_FLAGS_LOCALE;
2300 }
2301 else {
2302 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
e7b7ac46 2303 goto needs_full_generality;
780fcc9f 2304 }
31f05a37
KW
2305 }
2306
a1dde8de 2307 if (c < 256) {
e7b7ac46 2308 return _to_fold_latin1((U8) c, p, lenp,
31f05a37 2309 flags & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII));
a1dde8de
KW
2310 }
2311
2f306ab9 2312 /* Here, above 255. If no special needs, just use the macro */
a0270393
KW
2313 if ( ! (flags & (FOLD_FLAGS_LOCALE|FOLD_FLAGS_NOMIX_ASCII))) {
2314 uvchr_to_utf8(p, c);
b9992569 2315 return CALL_FOLD_CASE(c, p, p, lenp, flags & FOLD_FLAGS_FULL);
a0270393
KW
2316 }
2317 else { /* Otherwise, _to_utf8_fold_flags has the intelligence to deal with
2318 the special flags. */
2319 U8 utf8_c[UTF8_MAXBYTES + 1];
e7b7ac46
KW
2320
2321 needs_full_generality:
a0270393 2322 uvchr_to_utf8(utf8_c, c);
445bf929 2323 return _to_utf8_fold_flags(utf8_c, p, lenp, flags);
a0270393 2324 }
84afefe6
JH
2325}
2326
26483009 2327PERL_STATIC_INLINE bool
5141f98e 2328S_is_utf8_common(pTHX_ const U8 *const p, SV **swash,
f25ce844 2329 const char *const swashname, SV* const invlist)
bde6a22d 2330{
ea317ccb
KW
2331 /* returns a boolean giving whether or not the UTF8-encoded character that
2332 * starts at <p> is in the swash indicated by <swashname>. <swash>
2333 * contains a pointer to where the swash indicated by <swashname>
2334 * is to be stored; which this routine will do, so that future calls will
f25ce844
KW
2335 * look at <*swash> and only generate a swash if it is not null. <invlist>
2336 * is NULL or an inversion list that defines the swash. If not null, it
2337 * saves time during initialization of the swash.
ea317ccb
KW
2338 *
2339 * Note that it is assumed that the buffer length of <p> is enough to
2340 * contain all the bytes that comprise the character. Thus, <*p> should
2341 * have been checked before this call for mal-formedness enough to assure
2342 * that. */
2343
7918f24d
NC
2344 PERL_ARGS_ASSERT_IS_UTF8_COMMON;
2345
492a624f 2346 /* The API should have included a length for the UTF-8 character in <p>,
28123549 2347 * but it doesn't. We therefore assume that p has been validated at least
492a624f
KW
2348 * as far as there being enough bytes available in it to accommodate the
2349 * character without reading beyond the end, and pass that number on to the
2350 * validating routine */
6302f837 2351 if (! isUTF8_CHAR(p, p + UTF8SKIP(p))) {
28123549
KW
2352 if (ckWARN_d(WARN_UTF8)) {
2353 Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED,WARN_UTF8),
9816f121 2354 "Passing malformed UTF-8 to \"%s\" is deprecated", swashname);
28123549
KW
2355 if (ckWARN(WARN_UTF8)) { /* This will output details as to the
2356 what the malformation is */
2357 utf8_to_uvchr_buf(p, p + UTF8SKIP(p), NULL);
2358 }
2359 }
2360 return FALSE;
2361 }
87367d5f
KW
2362 if (!*swash) {
2363 U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
f25ce844
KW
2364 *swash = _core_swash_init("utf8",
2365
2366 /* Only use the name if there is no inversion
2367 * list; otherwise will go out to disk */
2368 (invlist) ? "" : swashname,
2369
2370 &PL_sv_undef, 1, 0, invlist, &flags);
87367d5f 2371 }
28123549 2372
bde6a22d
NC
2373 return swash_fetch(*swash, p, TRUE) != 0;
2374}
2375
2376bool
922e8cb4
KW
2377Perl__is_utf8_FOO(pTHX_ const U8 classnum, const U8 *p)
2378{
922e8cb4
KW
2379 PERL_ARGS_ASSERT__IS_UTF8_FOO;
2380
2381 assert(classnum < _FIRST_NON_SWASH_CC);
2382
f25ce844
KW
2383 return is_utf8_common(p,
2384 &PL_utf8_swash_ptrs[classnum],
2385 swash_property_names[classnum],
2386 PL_XPosix_ptrs[classnum]);
922e8cb4
KW
2387}
2388
2389bool
f2645549 2390Perl__is_utf8_perl_idstart(pTHX_ const U8 *p)
a0ed51b3 2391{
f2645549 2392 SV* invlist = NULL;
7918f24d 2393
f2645549 2394 PERL_ARGS_ASSERT__IS_UTF8_PERL_IDSTART;
7918f24d 2395
f2645549
KW
2396 if (! PL_utf8_perl_idstart) {
2397 invlist = _new_invlist_C_array(_Perl_IDStart_invlist);
2398 }
60071a22 2399 return is_utf8_common(p, &PL_utf8_perl_idstart, "_Perl_IDStart", invlist);
82686b01
JH
2400}
2401
2402bool
f2645549 2403Perl__is_utf8_xidstart(pTHX_ const U8 *p)
c11ff943 2404{
f2645549 2405 PERL_ARGS_ASSERT__IS_UTF8_XIDSTART;
c11ff943
KW
2406
2407 if (*p == '_')
2408 return TRUE;
f25ce844 2409 return is_utf8_common(p, &PL_utf8_xidstart, "XIdStart", NULL);
c11ff943
KW
2410}
2411
2412bool
eba68aa0
KW
2413Perl__is_utf8_perl_idcont(pTHX_ const U8 *p)
2414{
b24b43f7 2415 SV* invlist = NULL;
eba68aa0
KW
2416
2417 PERL_ARGS_ASSERT__IS_UTF8_PERL_IDCONT;
2418
b24b43f7
KW
2419 if (! PL_utf8_perl_idcont) {
2420 invlist = _new_invlist_C_array(_Perl_IDCont_invlist);
2421 }
60071a22 2422 return is_utf8_common(p, &PL_utf8_perl_idcont, "_Perl_IDCont", invlist);
eba68aa0
KW
2423}
2424
eba68aa0 2425bool
f2645549 2426Perl__is_utf8_idcont(pTHX_ const U8 *p)
82686b01 2427{
f2645549 2428 PERL_ARGS_ASSERT__IS_UTF8_IDCONT;
7918f24d 2429
f25ce844 2430 return is_utf8_common(p, &PL_utf8_idcont, "IdContinue", NULL);
a0ed51b3
LW
2431}
2432
2433bool
f2645549 2434Perl__is_utf8_xidcont(pTHX_ const U8 *p)
c11ff943 2435{
f2645549 2436 PERL_ARGS_ASSERT__IS_UTF8_XIDCONT;
c11ff943 2437
f25ce844 2438 return is_utf8_common(p, &PL_utf8_idcont, "XIdContinue", NULL);
c11ff943
KW
2439}
2440
2441bool
7dbf68d2
KW
2442Perl__is_utf8_mark(pTHX_ const U8 *p)
2443{
7dbf68d2
KW
2444 PERL_ARGS_ASSERT__IS_UTF8_MARK;
2445
f25ce844 2446 return is_utf8_common(p, &PL_utf8_mark, "IsM", NULL);
7dbf68d2
KW
2447}
2448
6b5c0936 2449/*
87cea99e 2450=for apidoc to_utf8_case
6b5c0936 2451
9da1e7cb
KW
2452Instead use the appropriate one of L</toUPPER_utf8>,
2453L</toTITLE_utf8>,
2454L</toLOWER_utf8>,
2455or L</toFOLD_utf8>.
2456
6fae5207 2457C<p> contains the pointer to the UTF-8 string encoding
a1433954
KW
2458the character that is being converted. This routine assumes that the character
2459at C<p> is well-formed.
6b5c0936 2460
6fae5207
KW
2461C<ustrp> is a pointer to the character buffer to put the
2462conversion result to. C<lenp> is a pointer to the length
6b5c0936
JH
2463of the result.
2464
6fae5207 2465C<swashp> is a pointer to the swash to use.
6b5c0936 2466
a1433954 2467Both the special and normal mappings are stored in F<lib/unicore/To/Foo.pl>,
796b6530 2468and loaded by C<SWASHNEW>, using F<lib/utf8_heavy.pl>. C<special> (usually,
0134edef 2469but not always, a multicharacter mapping), is tried first.
6b5c0936 2470
4a8240a3
KW
2471C<special> is a string, normally C<NULL> or C<"">. C<NULL> means to not use
2472any special mappings; C<""> means to use the special mappings. Values other
2473than these two are treated as the name of the hash containing the special
2474mappings, like C<"utf8::ToSpecLower">.
6b5c0936 2475
796b6530
KW
2476C<normal> is a string like C<"ToLower"> which means the swash
2477C<%utf8::ToLower>.
0134edef 2478
760c7c2f
KW
2479Code points above the platform's C<IV_MAX> will raise a deprecation warning,
2480unless those are turned off.
2481
0134edef 2482=cut */
6b5c0936 2483
2104c8d9 2484UV
9a957fbc
AL
2485Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp,
2486 SV **swashp, const char *normal, const char *special)
a0ed51b3 2487{
b9992569
KW
2488 PERL_ARGS_ASSERT_TO_UTF8_CASE;
2489
2490 return _to_utf8_case(valid_utf8_to_uvchr(p, NULL), p, ustrp, lenp, swashp, normal, special);
2491}
2492
2493 /* change namve uv1 to 'from' */
6a4a25f4 2494STATIC UV
b9992569
KW
2495S__to_utf8_case(pTHX_ const UV uv1, const U8 *p, U8* ustrp, STRLEN *lenp,
2496 SV **swashp, const char *normal, const char *special)
2497{
0134edef 2498 STRLEN len = 0;
7918f24d 2499
b9992569 2500 PERL_ARGS_ASSERT__TO_UTF8_CASE;
7918f24d 2501
36eaa811
KW
2502 /* For code points that don't change case, we already know that the output
2503 * of this function is the unchanged input, so we can skip doing look-ups
2504 * for them. Unfortunately the case-changing code points are scattered
2505 * around. But there are some long consecutive ranges where there are no
2506 * case changing code points. By adding tests, we can eliminate the lookup
2507 * for all the ones in such ranges. This is currently done here only for
2508 * just a few cases where the scripts are in common use in modern commerce
2509 * (and scripts adjacent to those which can be included without additional
2510 * tests). */
2511
2512 if (uv1 >= 0x0590) {
2513 /* This keeps from needing further processing the code points most
2514 * likely to be used in the following non-cased scripts: Hebrew,
2515 * Arabic, Syriac, Thaana, NKo, Samaritan, Mandaic, Devanagari,
2516 * Bengali, Gurmukhi, Gujarati, Oriya, Tamil, Telugu, Kannada,
2517 * Malayalam, Sinhala, Thai, Lao, Tibetan, Myanmar */
2518 if (uv1 < 0x10A0) {
2519 goto cases_to_self;
2520 }
2521
2522 /* The following largish code point ranges also don't have case
2523 * changes, but khw didn't think they warranted extra tests to speed
2524 * them up (which would slightly slow down everything else above them):
2525 * 1100..139F Hangul Jamo, Ethiopic
2526 * 1400..1CFF Unified Canadian Aboriginal Syllabics, Ogham, Runic,
2527 * Tagalog, Hanunoo, Buhid, Tagbanwa, Khmer, Mongolian,
2528 * Limbu, Tai Le, New Tai Lue, Buginese, Tai Tham,
2529 * Combining Diacritical Marks Extended, Balinese,
2530 * Sundanese, Batak, Lepcha, Ol Chiki
2531 * 2000..206F General Punctuation
2532 */
2533
2534 if (uv1 >= 0x2D30) {
2535
2536 /* This keeps the from needing further processing the code points
2537 * most likely to be used in the following non-cased major scripts:
2538 * CJK, Katakana, Hiragana, plus some less-likely scripts.
2539 *
2540 * (0x2D30 above might have to be changed to 2F00 in the unlikely
2541 * event that Unicode eventually allocates the unused block as of
2542 * v8.0 2FE0..2FEF to code points that are cased. khw has verified
2543 * that the test suite will start having failures to alert you
2544 * should that happen) */
2545 if (uv1 < 0xA640) {
2546 goto cases_to_self;
2547 }
2548
2549 if (uv1 >= 0xAC00) {
2550 if (UNLIKELY(UNICODE_IS_SURROGATE(uv1))) {
5af9bc97
KW
2551 if (ckWARN_d(WARN_SURROGATE)) {
2552 const char* desc = (PL_op) ? OP_DESC(PL_op) : normal;
2553 Perl_warner(aTHX_ packWARN(WARN_SURROGATE),
2554 "Operation \"%s\" returns its argument for UTF-16 surrogate U+%04"UVXf"", desc, uv1);
2555 }
2556 goto cases_to_self;
2557 }
36eaa811
KW
2558
2559 /* AC00..FAFF Catches Hangul syllables and private use, plus
2560 * some others */
2561 if (uv1 < 0xFB00) {
2562 goto cases_to_self;
2563
2564 }
2565
5af9bc97
KW
2566 if (UNLIKELY(UNICODE_IS_SUPER(uv1))) {
2567 if ( UNLIKELY(uv1 > MAX_NON_DEPRECATED_CP)
2568 && ckWARN_d(WARN_DEPRECATED))
2569 {
2570 Perl_warner(aTHX_ packWARN(WARN_DEPRECATED),
2571 cp_above_legal_max, uv1, MAX_NON_DEPRECATED_CP);
2572 }
2573 if (ckWARN_d(WARN_NON_UNICODE)) {
2574 const char* desc = (PL_op) ? OP_DESC(PL_op) : normal;
2575 Perl_warner(aTHX_ packWARN(WARN_NON_UNICODE),
2576 "Operation \"%s\" returns its argument for non-Unicode code point 0x%04"UVXf"", desc, uv1);
2577 }
2578 goto cases_to_self;
2579 }
3bfc1e70
KW
2580#ifdef HIGHEST_CASE_CHANGING_CP_FOR_USE_ONLY_BY_UTF8_DOT_C
2581 if (UNLIKELY(uv1
2582 > HIGHEST_CASE_CHANGING_CP_FOR_USE_ONLY_BY_UTF8_DOT_C))
2583 {
2584
2585 /* As of this writing, this means we avoid swash creation
2586 * for anything beyond low Plane 1 */
2587 goto cases_to_self;
2588 }
2589#endif
36eaa811
KW
2590 }
2591 }
9ae3ac1a 2592
36eaa811
KW
2593 /* Note that non-characters are perfectly legal, so no warning should
2594 * be given. There are so few of them, that it isn't worth the extra
2595 * tests to avoid swash creation */
9ae3ac1a
KW
2596 }
2597
0134edef 2598 if (!*swashp) /* load on-demand */
5ab9d2ef 2599 *swashp = _core_swash_init("utf8", normal, &PL_sv_undef, 4, 0, NULL, NULL);
0134edef 2600
a6f87d8c 2601 if (special) {
0134edef 2602 /* It might be "special" (sometimes, but not always,
2a37f04d 2603 * a multicharacter mapping) */
4a8240a3 2604 HV *hv = NULL;
b08cf34e
JH
2605 SV **svp;
2606
4a8240a3
KW
2607 /* If passed in the specials name, use that; otherwise use any
2608 * given in the swash */
2609 if (*special != '\0') {
2610 hv = get_hv(special, 0);
2611 }
2612 else {
2613 svp = hv_fetchs(MUTABLE_HV(SvRV(*swashp)), "SPECIALS", 0);
2614 if (svp) {
2615 hv = MUTABLE_HV(SvRV(*svp));
2616 }
2617 }
2618
176fe009 2619 if (hv
5f560d8a 2620 && (svp = hv_fetch(hv, (const char*)p, UVCHR_SKIP(uv1), FALSE))
176fe009
KW
2621 && (*svp))
2622 {
cfd0369c 2623 const char *s;
47654450 2624
cfd0369c 2625 s = SvPV_const(*svp, len);
47654450 2626 if (len == 1)
f4cd282c 2627 /* EIGHTBIT */
c80e42f3 2628 len = uvchr_to_utf8(ustrp, *(U8*)s) - ustrp;
2a37f04d 2629 else {
d2dcd0fb 2630 Copy(s, ustrp, len, U8);
29e98929 2631 }
983ffd37 2632 }
0134edef
JH
2633 }
2634
2635 if (!len && *swashp) {
4a4088c4 2636 const UV uv2 = swash_fetch(*swashp, p, TRUE /* => is UTF-8 */);
d4c19fe8 2637
0134edef
JH
2638 if (uv2) {
2639 /* It was "normal" (a single character mapping). */
f4cd282c 2640 len = uvchr_to_utf8(ustrp, uv2) - ustrp;
2a37f04d
JH
2641 }
2642 }
1feea2c7 2643
cbe07460
KW
2644 if (len) {
2645 if (lenp) {
2646 *lenp = len;
2647 }
2648 return valid_utf8_to_uvchr(ustrp, 0);
2649 }
2650
2651 /* Here, there was no mapping defined, which means that the code point maps
2652 * to itself. Return the inputs */
e24dfe9c 2653 cases_to_self:
bfdf22ec 2654 len = UTF8SKIP(p);
ca9fab46
KW
2655 if (p != ustrp) { /* Don't copy onto itself */
2656 Copy(p, ustrp, len, U8);
2657 }
0134edef 2658
2a37f04d
JH
2659 if (lenp)
2660 *lenp = len;
2661
f4cd282c 2662 return uv1;
cbe07460 2663
a0ed51b3
LW
2664}
2665
051a06d4 2666STATIC UV
357aadde 2667S_check_locale_boundary_crossing(pTHX_ const U8* const p, const UV result, U8* const ustrp, STRLEN *lenp)
051a06d4 2668{
4a4088c4 2669 /* This is called when changing the case of a UTF-8-encoded character above
31f05a37
KW
2670 * the Latin1 range, and the operation is in a non-UTF-8 locale. If the
2671 * result contains a character that crosses the 255/256 boundary, disallow
2672 * the change, and return the original code point. See L<perlfunc/lc> for
2673 * why;
051a06d4 2674 *
a1433954
KW
2675 * p points to the original string whose case was changed; assumed
2676 * by this routine to be well-formed
051a06d4
KW
2677 * result the code point of the first character in the changed-case string
2678 * ustrp points to the changed-case string (<result> represents its first char)
2679 * lenp points to the length of <ustrp> */
2680
2681 UV original; /* To store the first code point of <p> */
2682
2683 PERL_ARGS_ASSERT_CHECK_LOCALE_BOUNDARY_CROSSING;
2684
a4f12ed7 2685 assert(UTF8_IS_ABOVE_LATIN1(*p));
051a06d4
KW
2686
2687 /* We know immediately if the first character in the string crosses the
2688 * boundary, so can skip */
2689 if (result > 255) {
2690
2691 /* Look at every character in the result; if any cross the
2692 * boundary, the whole thing is disallowed */
2693 U8* s = ustrp + UTF8SKIP(ustrp);
2694 U8* e = ustrp + *lenp;
2695 while (s < e) {
a4f12ed7 2696 if (! UTF8_IS_ABOVE_LATIN1(*s)) {
051a06d4
KW
2697 goto bad_crossing;
2698 }
2699 s += UTF8SKIP(s);
2700 }
2701
613abc6d
KW
2702 /* Here, no characters crossed, result is ok as-is, but we warn. */
2703 _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG(p, p + UTF8SKIP(p));
051a06d4
KW
2704 return result;
2705 }
2706
7b52d656 2707 bad_crossing:
051a06d4
KW
2708
2709 /* Failed, have to return the original */
4b88fb76 2710 original = valid_utf8_to_uvchr(p, lenp);
ab0b796c
KW
2711
2712 /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */
2713 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
2714 "Can't do %s(\"\\x{%"UVXf"}\") on non-UTF-8 locale; "
2715 "resolved to \"\\x{%"UVXf"}\".",
357aadde 2716 OP_DESC(PL_op),
ab0b796c
KW
2717 original,
2718 original);
051a06d4
KW
2719 Copy(p, ustrp, *lenp, char);
2720 return original;
2721}
2722
d3e79532 2723/*
87cea99e 2724=for apidoc to_utf8_upper
d3e79532 2725
1f607577 2726Instead use L</toUPPER_utf8>.
a1433954 2727
d3e79532
JH
2728=cut */
2729
051a06d4 2730/* Not currently externally documented, and subject to change:
31f05a37
KW
2731 * <flags> is set iff iff the rules from the current underlying locale are to
2732 * be used. */
051a06d4 2733
2104c8d9 2734UV
31f05a37 2735Perl__to_utf8_upper_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, bool flags)
a0ed51b3 2736{
051a06d4
KW
2737 UV result;
2738
2739 PERL_ARGS_ASSERT__TO_UTF8_UPPER_FLAGS;
7918f24d 2740
780fcc9f
KW
2741 if (flags) {
2742 /* Treat a UTF-8 locale as not being in locale at all */
2743 if (IN_UTF8_CTYPE_LOCALE) {
2744 flags = FALSE;
2745 }
2746 else {
2747 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2748 }
31f05a37
KW
2749 }
2750
3a4c58c9 2751 if (UTF8_IS_INVARIANT(*p)) {
051a06d4
KW
2752 if (flags) {
2753 result = toUPPER_LC(*p);
2754 }
2755 else {
81c6c7ce 2756 return _to_upper_title_latin1(*p, ustrp, lenp, 'S');
051a06d4 2757 }
3a4c58c9
KW
2758 }
2759 else if UTF8_IS_DOWNGRADEABLE_START(*p) {
051a06d4 2760 if (flags) {
a62b247b 2761 U8 c = EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1));
68067e4e 2762 result = toUPPER_LC(c);
051a06d4
KW
2763 }
2764 else {
a62b247b 2765 return _to_upper_title_latin1(EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1)),
81c6c7ce 2766 ustrp, lenp, 'S');
051a06d4
KW
2767 }
2768 }
4a4088c4 2769 else { /* UTF-8, ord above 255 */
b9992569 2770 result = CALL_UPPER_CASE(valid_utf8_to_uvchr(p, NULL), p, ustrp, lenp);
051a06d4
KW
2771
2772 if (flags) {
357aadde 2773 result = check_locale_boundary_crossing(p, result, ustrp, lenp);
051a06d4
KW
2774 }
2775 return result;
2776 }
2777
4a4088c4 2778 /* Here, used locale rules. Convert back to UTF-8 */
051a06d4
KW
2779 if (UTF8_IS_INVARIANT(result)) {
2780 *ustrp = (U8) result;
2781 *lenp = 1;
2782 }
2783 else {
62cb07ea
KW
2784 *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
2785 *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
051a06d4 2786 *lenp = 2;
3a4c58c9 2787 }
baa60164 2788
051a06d4 2789 return result;
983ffd37 2790}
a0ed51b3 2791
d3e79532 2792/*
87cea99e 2793=for apidoc to_utf8_title
d3e79532 2794
1f607577 2795Instead use L</toTITLE_utf8>.
a1433954 2796
d3e79532
JH
2797=cut */
2798
051a06d4 2799/* Not currently externally documented, and subject to change:
31f05a37
KW
2800 * <flags> is set iff the rules from the current underlying locale are to be
2801 * used. Since titlecase is not defined in POSIX, for other than a
2802 * UTF-8 locale, uppercase is used instead for code points < 256.
445bf929 2803 */
051a06d4 2804
983ffd37 2805UV
31f05a37 2806Perl__to_utf8_title_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, bool flags)
983ffd37 2807{
051a06d4
KW
2808 UV result;
2809
2810 PERL_ARGS_ASSERT__TO_UTF8_TITLE_FLAGS;
7918f24d 2811
780fcc9f
KW
2812 if (flags) {
2813 /* Treat a UTF-8 locale as not being in locale at all */
2814 if (IN_UTF8_CTYPE_LOCALE) {
2815 flags = FALSE;
2816 }
2817 else {
2818 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2819 }
31f05a37
KW
2820 }
2821
3a4c58c9 2822 if (UTF8_IS_INVARIANT(*p)) {
051a06d4
KW
2823 if (flags) {
2824 result = toUPPER_LC(*p);
2825 }
2826 else {
81c6c7ce 2827 return _to_upper_title_latin1(*p, ustrp, lenp, 's');
051a06d4 2828 }
3a4c58c9
KW
2829 }
2830 else if UTF8_IS_DOWNGRADEABLE_START(*p) {
051a06d4 2831 if (flags) {
a62b247b 2832 U8 c = EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1));
68067e4e 2833 result = toUPPER_LC(c);
051a06d4
KW
2834 }
2835 else {
a62b247b 2836 return _to_upper_title_latin1(EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1)),
81c6c7ce 2837 ustrp, lenp, 's');
051a06d4
KW
2838 }
2839 }
4a4088c4 2840 else { /* UTF-8, ord above 255 */
b9992569 2841 result = CALL_TITLE_CASE(valid_utf8_to_uvchr(p, NULL), p, ustrp, lenp);
051a06d4
KW
2842
2843 if (flags) {
357aadde 2844 result = check_locale_boundary_crossing(p, result, ustrp, lenp);
051a06d4
KW
2845 }
2846 return result;
2847 }
2848
4a4088c4 2849 /* Here, used locale rules. Convert back to UTF-8 */
051a06d4
KW
2850 if (UTF8_IS_INVARIANT(result)) {
2851 *ustrp = (U8) result;
2852 *lenp = 1;
2853 }
2854 else {
62cb07ea
KW
2855 *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
2856 *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
051a06d4 2857 *lenp = 2;
3a4c58c9
KW
2858 }
2859
051a06d4 2860 return result;
a0ed51b3
LW
2861}
2862
d3e79532 2863/*
87cea99e 2864=for apidoc to_utf8_lower
d3e79532 2865
1f607577 2866Instead use L</toLOWER_utf8>.
a1433954 2867
d3e79532
JH
2868=cut */
2869
051a06d4 2870/* Not currently externally documented, and subject to change:
31f05a37
KW
2871 * <flags> is set iff iff the rules from the current underlying locale are to
2872 * be used.
2873 */
051a06d4 2874
2104c8d9 2875UV
31f05a37 2876Perl__to_utf8_lower_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, bool flags)
a0ed51b3 2877{
051a06d4
KW
2878 UV result;
2879
051a06d4 2880 PERL_ARGS_ASSERT__TO_UTF8_LOWER_FLAGS;
7918f24d 2881
780fcc9f
KW
2882 if (flags) {
2883 /* Treat a UTF-8 locale as not being in locale at all */
2884 if (IN_UTF8_CTYPE_LOCALE) {
2885 flags = FALSE;
2886 }
2887 else {
2888 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2889 }
31f05a37
KW
2890 }
2891
968c5e6a 2892 if (UTF8_IS_INVARIANT(*p)) {
051a06d4
KW
2893 if (flags) {
2894 result = toLOWER_LC(*p);
2895 }
2896 else {
81c6c7ce 2897 return to_lower_latin1(*p, ustrp, lenp);
051a06d4 2898 }
968c5e6a
KW
2899 }
2900 else if UTF8_IS_DOWNGRADEABLE_START(*p) {
051a06d4 2901 if (flags) {
a62b247b 2902 U8 c = EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1));
68067e4e 2903 result = toLOWER_LC(c);
051a06d4
KW
2904 }
2905 else {
a62b247b 2906 return to_lower_latin1(EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1)),
81c6c7ce 2907 ustrp, lenp);
051a06d4 2908 }
968c5e6a 2909 }
4a4088c4 2910 else { /* UTF-8, ord above 255 */
b9992569 2911 result = CALL_LOWER_CASE(valid_utf8_to_uvchr(p, NULL), p, ustrp, lenp);
051a06d4
KW
2912
2913 if (flags) {
357aadde 2914 result = check_locale_boundary_crossing(p, result, ustrp, lenp);
051a06d4 2915 }
968c5e6a 2916
051a06d4
KW
2917 return result;
2918 }
2919
4a4088c4 2920 /* Here, used locale rules. Convert back to UTF-8 */
051a06d4
KW
2921 if (UTF8_IS_INVARIANT(result)) {
2922 *ustrp = (U8) result;
2923 *lenp = 1;
2924 }
2925 else {
62cb07ea
KW
2926 *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
2927 *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
051a06d4
KW
2928 *lenp = 2;
2929 }
2930
051a06d4 2931 return result;
b4e400f9
JH
2932}
2933
d3e79532 2934/*
87cea99e 2935=for apidoc to_utf8_fold
d3e79532 2936
1f607577 2937Instead use L</toFOLD_utf8>.
a1433954 2938
d3e79532
JH
2939=cut */
2940
051a06d4
KW
2941/* Not currently externally documented, and subject to change,
2942 * in <flags>
31f05a37
KW
2943 * bit FOLD_FLAGS_LOCALE is set iff the rules from the current underlying
2944 * locale are to be used.
051a06d4
KW
2945 * bit FOLD_FLAGS_FULL is set iff full case folds are to be used;
2946 * otherwise simple folds
a0270393
KW
2947 * bit FOLD_FLAGS_NOMIX_ASCII is set iff folds of non-ASCII to ASCII are
2948 * prohibited
445bf929 2949 */
36bb2ab6 2950
b4e400f9 2951UV
445bf929 2952Perl__to_utf8_fold_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, U8 flags)
b4e400f9 2953{
051a06d4
KW
2954 UV result;
2955
36bb2ab6 2956 PERL_ARGS_ASSERT__TO_UTF8_FOLD_FLAGS;
7918f24d 2957
a0270393
KW
2958 /* These are mutually exclusive */
2959 assert (! ((flags & FOLD_FLAGS_LOCALE) && (flags & FOLD_FLAGS_NOMIX_ASCII)));
2960
50ba90ff
KW
2961 assert(p != ustrp); /* Otherwise overwrites */
2962
780fcc9f
KW
2963 if (flags & FOLD_FLAGS_LOCALE) {
2964 /* Treat a UTF-8 locale as not being in locale at all */
2965 if (IN_UTF8_CTYPE_LOCALE) {
2966 flags &= ~FOLD_FLAGS_LOCALE;
2967 }
2968 else {
2969 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2970 }
31f05a37
KW
2971 }
2972
a1dde8de 2973 if (UTF8_IS_INVARIANT(*p)) {
051a06d4 2974 if (flags & FOLD_FLAGS_LOCALE) {
d22b930b 2975 result = toFOLD_LC(*p);
051a06d4
KW
2976 }
2977 else {
81c6c7ce 2978 return _to_fold_latin1(*p, ustrp, lenp,
1ca267a5 2979 flags & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII));
051a06d4 2980 }
a1dde8de
KW
2981 }
2982 else if UTF8_IS_DOWNGRADEABLE_START(*p) {
051a06d4 2983 if (flags & FOLD_FLAGS_LOCALE) {
a62b247b 2984 U8 c = EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1));
68067e4e 2985 result = toFOLD_LC(c);
051a06d4
KW
2986 }
2987 else {
a62b247b 2988 return _to_fold_latin1(EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1)),
51910141 2989 ustrp, lenp,
1ca267a5 2990 flags & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII));
051a06d4 2991 }
a1dde8de 2992 }
4a4088c4 2993 else { /* UTF-8, ord above 255 */
b9992569 2994 result = CALL_FOLD_CASE(valid_utf8_to_uvchr(p, NULL), p, ustrp, lenp, flags & FOLD_FLAGS_FULL);
a1dde8de 2995
1ca267a5
KW
2996 if (flags & FOLD_FLAGS_LOCALE) {
2997
76f2ffcd 2998# define LONG_S_T LATIN_SMALL_LIGATURE_LONG_S_T_UTF8
0766489e
KW
2999 const unsigned int long_s_t_len = sizeof(LONG_S_T) - 1;
3000
3001# ifdef LATIN_CAPITAL_LETTER_SHARP_S_UTF8
3002# define CAP_SHARP_S LATIN_CAPITAL_LETTER_SHARP_S_UTF8
76f2ffcd
KW
3003
3004 const unsigned int cap_sharp_s_len = sizeof(CAP_SHARP_S) - 1;
76f2ffcd 3005
538e84ed
KW
3006 /* Special case these two characters, as what normally gets
3007 * returned under locale doesn't work */
76f2ffcd
KW
3008 if (UTF8SKIP(p) == cap_sharp_s_len
3009 && memEQ((char *) p, CAP_SHARP_S, cap_sharp_s_len))
1ca267a5 3010 {
ab0b796c
KW
3011 /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */
3012 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
3013 "Can't do fc(\"\\x{1E9E}\") on non-UTF-8 locale; "
3014 "resolved to \"\\x{17F}\\x{17F}\".");
1ca267a5
KW
3015 goto return_long_s;
3016 }
0766489e
KW
3017 else
3018#endif
3019 if (UTF8SKIP(p) == long_s_t_len
76f2ffcd 3020 && memEQ((char *) p, LONG_S_T, long_s_t_len))
9fc2026f 3021 {
ab0b796c
KW
3022 /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */
3023 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
3024 "Can't do fc(\"\\x{FB05}\") on non-UTF-8 locale; "
3025 "resolved to \"\\x{FB06}\".");
9fc2026f
KW
3026 goto return_ligature_st;
3027 }
74894415
KW
3028
3029#if UNICODE_MAJOR_VERSION == 3 \
3030 && UNICODE_DOT_VERSION == 0 \
3031 && UNICODE_DOT_DOT_VERSION == 1
3032# define DOTTED_I LATIN_CAPITAL_LETTER_I_WITH_DOT_ABOVE_UTF8
3033
3034 /* And special case this on this Unicode version only, for the same
3035 * reaons the other two are special cased. They would cross the
3036 * 255/256 boundary which is forbidden under /l, and so the code
3037 * wouldn't catch that they are equivalent (which they are only in
3038 * this release) */
3039 else if (UTF8SKIP(p) == sizeof(DOTTED_I) - 1
3040 && memEQ((char *) p, DOTTED_I, sizeof(DOTTED_I) - 1))
3041 {
3042 /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */
3043 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
3044 "Can't do fc(\"\\x{0130}\") on non-UTF-8 locale; "
3045 "resolved to \"\\x{0131}\".");
3046 goto return_dotless_i;
3047 }
3048#endif
3049
357aadde 3050 return check_locale_boundary_crossing(p, result, ustrp, lenp);
051a06d4 3051 }
a0270393
KW
3052 else if (! (flags & FOLD_FLAGS_NOMIX_ASCII)) {
3053 return result;
3054 }
3055 else {
4a4088c4 3056 /* This is called when changing the case of a UTF-8-encoded
9fc2026f
KW
3057 * character above the ASCII range, and the result should not
3058 * contain an ASCII character. */
a0270393
KW
3059
3060 UV original; /* To store the first code point of <p> */
3061
3062 /* Look at every character in the result; if any cross the
3063 * boundary, the whole thing is disallowed */
3064 U8* s = ustrp;
3065 U8* e = ustrp + *lenp;
3066 while (s < e) {
3067 if (isASCII(*s)) {
3068 /* Crossed, have to return the original */
3069 original = valid_utf8_to_uvchr(p, lenp);
1ca267a5 3070
9fc2026f 3071 /* But in these instances, there is an alternative we can
1ca267a5 3072 * return that is valid */
0766489e
KW
3073 if (original == LATIN_SMALL_LETTER_SHARP_S
3074#ifdef LATIN_CAPITAL_LETTER_SHARP_S /* not defined in early Unicode releases */
3075 || original == LATIN_CAPITAL_LETTER_SHARP_S
3076#endif
3077 ) {
1ca267a5
KW
3078 goto return_long_s;
3079 }
9fc2026f
KW
3080 else if (original == LATIN_SMALL_LIGATURE_LONG_S_T) {
3081 goto return_ligature_st;
3082 }
74894415
KW
3083#if UNICODE_MAJOR_VERSION == 3 \
3084 && UNICODE_DOT_VERSION == 0 \
3085 && UNICODE_DOT_DOT_VERSION == 1
3086
3087 else if (original == LATIN_CAPITAL_LETTER_I_WITH_DOT_ABOVE) {
3088 goto return_dotless_i;
3089 }
3090#endif
a0270393
KW
3091 Copy(p, ustrp, *lenp, char);
3092 return original;
3093 }
3094 s += UTF8SKIP(s);
3095 }
051a06d4 3096
a0270393
KW
3097 /* Here, no characters crossed, result is ok as-is */
3098 return result;
3099 }
051a06d4
KW
3100 }
3101
4a4088c4 3102 /* Here, used locale rules. Convert back to UTF-8 */
051a06d4
KW
3103 if (UTF8_IS_INVARIANT(result)) {
3104 *ustrp = (U8) result;
3105 *lenp = 1;
3106 }
3107 else {
62cb07ea
KW
3108 *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
3109 *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
051a06d4
KW
3110 *lenp = 2;
3111 }
3112
051a06d4 3113 return result;
1ca267a5
KW
3114
3115 return_long_s:
3116 /* Certain folds to 'ss' are prohibited by the options, but they do allow
3117 * folds to a string of two of these characters. By returning this
3118 * instead, then, e.g.,
3119 * fc("\x{1E9E}") eq fc("\x{17F}\x{17F}")
3120 * works. */
3121
3122 *lenp = 2 * sizeof(LATIN_SMALL_LETTER_LONG_S_UTF8) - 2;
3123 Copy(LATIN_SMALL_LETTER_LONG_S_UTF8 LATIN_SMALL_LETTER_LONG_S_UTF8,
3124 ustrp, *lenp, U8);
3125 return LATIN_SMALL_LETTER_LONG_S;
9fc2026f
KW
3126
3127 return_ligature_st:
3128 /* Two folds to 'st' are prohibited by the options; instead we pick one and
3129 * have the other one fold to it */
3130
3131 *lenp = sizeof(LATIN_SMALL_LIGATURE_ST_UTF8) - 1;
3132 Copy(LATIN_SMALL_LIGATURE_ST_UTF8, ustrp, *lenp, U8);
3133 return LATIN_SMALL_LIGATURE_ST;
74894415
KW
3134
3135#if UNICODE_MAJOR_VERSION == 3 \
3136 && UNICODE_DOT_VERSION == 0 \
3137 && UNICODE_DOT_DOT_VERSION == 1
3138
3139 return_dotless_i:
3140 *lenp = sizeof(LATIN_SMALL_LETTER_DOTLESS_I_UTF8) - 1;
3141 Copy(LATIN_SMALL_LETTER_DOTLESS_I_UTF8, ustrp, *lenp, U8);
3142 return LATIN_SMALL_LETTER_DOTLESS_I;
3143
3144#endif
3145
a0ed51b3
LW
3146}
3147
711a919c 3148/* Note:
f90a9a02 3149 * Returns a "swash" which is a hash described in utf8.c:Perl_swash_fetch().
711a919c
TS
3150 * C<pkg> is a pointer to a package name for SWASHNEW, should be "utf8".
3151 * For other parameters, see utf8::SWASHNEW in lib/utf8_heavy.pl.
3152 */
c4a5db0c 3153
a0ed51b3 3154SV*
7fc63493 3155Perl_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none)
a0ed51b3 3156{
c4a5db0c
KW
3157 PERL_ARGS_ASSERT_SWASH_INIT;
3158
3159 /* Returns a copy of a swash initiated by the called function. This is the
3160 * public interface, and returning a copy prevents others from doing
3161 * mischief on the original */
3162
5d3d13d1 3163 return newSVsv(_core_swash_init(pkg, name, listsv, minbits, none, NULL, NULL));
c4a5db0c
KW
3164}
3165
3166SV*
5d3d13d1 3167Perl__core_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none, SV* invlist, U8* const flags_p)
c4a5db0c 3168{
2c1f00b9
YO
3169
3170 /*NOTE NOTE NOTE - If you want to use "return" in this routine you MUST
3171 * use the following define */
3172
3173#define CORE_SWASH_INIT_RETURN(x) \
3174 PL_curpm= old_PL_curpm; \
3175 return x
3176
c4a5db0c 3177 /* Initialize and return a swash, creating it if necessary. It does this
87367d5f
KW
3178 * by calling utf8_heavy.pl in the general case. The returned value may be
3179 * the swash's inversion list instead if the input parameters allow it.
3180 * Which is returned should be immaterial to callers, as the only
923b6d4e
KW
3181 * operations permitted on a swash, swash_fetch(), _get_swash_invlist(),
3182 * and swash_to_invlist() handle both these transparently.
c4a5db0c
KW
3183 *
3184 * This interface should only be used by functions that won't destroy or
3185 * adversely change the swash, as doing so affects all other uses of the
3186 * swash in the program; the general public should use 'Perl_swash_init'
3187 * instead.
3188 *
3189 * pkg is the name of the package that <name> should be in.
3190 * name is the name of the swash to find. Typically it is a Unicode
3191 * property name, including user-defined ones
3192 * listsv is a string to initialize the swash with. It must be of the form
3193 * documented as the subroutine return value in
3194 * L<perlunicode/User-Defined Character Properties>
3195 * minbits is the number of bits required to represent each data element.
3196 * It is '1' for binary properties.
3197 * none I (khw) do not understand this one, but it is used only in tr///.
9a53f6cf 3198 * invlist is an inversion list to initialize the swash with (or NULL)
83199d38
KW
3199 * flags_p if non-NULL is the address of various input and output flag bits
3200 * to the routine, as follows: ('I' means is input to the routine;
3201 * 'O' means output from the routine. Only flags marked O are
3202 * meaningful on return.)
3203 * _CORE_SWASH_INIT_USER_DEFINED_PROPERTY indicates if the swash
3204 * came from a user-defined property. (I O)
5d3d13d1
KW
3205 * _CORE_SWASH_INIT_RETURN_IF_UNDEF indicates that instead of croaking
3206 * when the swash cannot be located, to simply return NULL. (I)
87367d5f
KW
3207 * _CORE_SWASH_INIT_ACCEPT_INVLIST indicates that the caller will accept a
3208 * return of an inversion list instead of a swash hash if this routine
3209 * thinks that would result in faster execution of swash_fetch() later
3210 * on. (I)
9a53f6cf
KW
3211 *
3212 * Thus there are three possible inputs to find the swash: <name>,
3213 * <listsv>, and <invlist>. At least one must be specified. The result
3214 * will be the union of the specified ones, although <listsv>'s various
aabbdbda
KW
3215 * actions can intersect, etc. what <name> gives. To avoid going out to
3216 * disk at all, <invlist> should specify completely what the swash should
3217 * have, and <listsv> should be &PL_sv_undef and <name> should be "".
9a53f6cf
KW
3218 *
3219 * <invlist> is only valid for binary properties */
c4a5db0c 3220
2c1f00b9
YO
3221 PMOP *old_PL_curpm= PL_curpm; /* save away the old PL_curpm */
3222
c4a5db0c 3223 SV* retval = &PL_sv_undef;
83199d38 3224 HV* swash_hv = NULL;
87367d5f
KW
3225 const int invlist_swash_boundary =
3226 (flags_p && *flags_p & _CORE_SWASH_INIT_ACCEPT_INVLIST)
3227 ? 512 /* Based on some benchmarking, but not extensive, see commit
3228 message */
3229 : -1; /* Never return just an inversion list */
9a53f6cf
KW
3230
3231 assert(listsv != &PL_sv_undef || strNE(name, "") || invlist);
3232 assert(! invlist || minbits == 1);
3233
2c1f00b9
YO
3234 PL_curpm= NULL; /* reset PL_curpm so that we dont get confused between the regex
3235 that triggered the swash init and the swash init perl logic itself.
3236 See perl #122747 */
3237
9a53f6cf
KW
3238 /* If data was passed in to go out to utf8_heavy to find the swash of, do
3239 * so */
3240 if (listsv != &PL_sv_undef || strNE(name, "")) {
69794297
KW
3241 dSP;
3242 const size_t pkg_len = strlen(pkg);
3243 const size_t name_len = strlen(name);
3244 HV * const stash = gv_stashpvn(pkg, pkg_len, 0);
3245 SV* errsv_save;
3246 GV *method;
3247
3248 PERL_ARGS_ASSERT__CORE_SWASH_INIT;
3249
3250 PUSHSTACKi(PERLSI_MAGIC);
ce3b816e 3251 ENTER;
69794297 3252 SAVEHINTS();
2782061f 3253 save_re_context();
650f067c
JL
3254 /* We might get here via a subroutine signature which uses a utf8
3255 * parameter name, at which point PL_subname will have been set
3256 * but not yet used. */
3257 save_item(PL_subname);
69794297
KW
3258 if (PL_parser && PL_parser->error_count)
3259 SAVEI8(PL_parser->error_count), PL_parser->error_count = 0;
3260 method = gv_fetchmeth(stash, "SWASHNEW", 8, -1);
4a4088c4 3261 if (!method) { /* demand load UTF-8 */
69794297 3262 ENTER;
db2c6cb3
FC
3263 if ((errsv_save = GvSV(PL_errgv))) SAVEFREESV(errsv_save);
3264 GvSV(PL_errgv) = NULL;
1a419e6b 3265#ifndef NO_TAINT_SUPPORT
69794297
KW
3266 /* It is assumed that callers of this routine are not passing in
3267 * any user derived data. */
2782061f
DM
3268 /* Need to do this after save_re_context() as it will set
3269 * PL_tainted to 1 while saving $1 etc (see the code after getrx:
3270 * in Perl_magic_get). Even line to create errsv_save can turn on
3271 * PL_tainted. */
284167a5
S
3272 SAVEBOOL(TAINT_get);
3273 TAINT_NOT;
3274#endif
69794297
KW
3275 Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, newSVpvn(pkg,pkg_len),
3276 NULL);
eed484f9 3277 {
db2c6cb3
FC
3278 /* Not ERRSV, as there is no need to vivify a scalar we are
3279 about to discard. */
3280 SV * const errsv = GvSV(PL_errgv);
3281 if (!SvTRUE(errsv)) {
3282 GvSV(PL_errgv) = SvREFCNT_inc_simple(errsv_save);
3283 SvREFCNT_dec(errsv);
3284 }
eed484f9 3285 }
69794297
KW
3286 LEAVE;
3287 }
3288 SPAGAIN;
3289 PUSHMARK(SP);
3290 EXTEND(SP,5);
3291 mPUSHp(pkg, pkg_len);
3292 mPUSHp(name, name_len);
3293 PUSHs(listsv);
3294 mPUSHi(minbits);
3295 mPUSHi(none);
3296 PUTBACK;
db2c6cb3
FC
3297 if ((errsv_save = GvSV(PL_errgv))) SAVEFREESV(errsv_save);
3298 GvSV(PL_errgv) = NULL;
69794297
KW
3299 /* If we already have a pointer to the method, no need to use
3300 * call_method() to repeat the lookup. */
c41800a8
KW
3301 if (method
3302 ? call_sv(MUTABLE_SV(method), G_SCALAR)
69794297
KW
3303 : call_sv(newSVpvs_flags("SWASHNEW", SVs_TEMP), G_SCALAR | G_METHOD))
3304 {
3305 retval = *PL_stack_sp--;
3306 SvREFCNT_inc(retval);
3307 }
eed484f9 3308 {
db2c6cb3
FC
3309 /* Not ERRSV. See above. */
3310 SV * const errsv = GvSV(PL_errgv);
3311 if (!SvTRUE(errsv)) {
3312 GvSV(PL_errgv) = SvREFCNT_inc_simple(errsv_save);
3313 SvREFCNT_dec(errsv);
3314 }
eed484f9 3315 }
ce3b816e 3316 LEAVE;
69794297
KW
3317 POPSTACK;
3318 if (IN_PERL_COMPILETIME) {
3319 CopHINTS_set(PL_curcop, PL_hints);
3320 }
3321 if (!SvROK(retval) || SvTYPE(SvRV(retval)) != SVt_PVHV) {
d95e4a00 3322 if (SvPOK(retval)) {
69794297
KW
3323
3324 /* If caller wants to handle missing properties, let them */
5d3d13d1 3325 if (flags_p && *flags_p & _CORE_SWASH_INIT_RETURN_IF_UNDEF) {
2c1f00b9 3326 CORE_SWASH_INIT_RETURN(NULL);
69794297
KW
3327 }
3328 Perl_croak(aTHX_
3329 "Can't find Unicode property definition \"%"SVf"\"",
3330 SVfARG(retval));
a25b5927 3331 NOT_REACHED; /* NOTREACHED */
d95e4a00 3332 }
69794297 3333 }
9a53f6cf 3334 } /* End of calling the module to find the swash */
36eb48b4 3335
83199d38
KW
3336 /* If this operation fetched a swash, and we will need it later, get it */
3337 if (retval != &PL_sv_undef
3338 && (minbits == 1 || (flags_p
3339 && ! (*flags_p
3340 & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY))))
3341 {
3342 swash_hv = MUTABLE_HV(SvRV(retval));
3343
3344 /* If we don't already know that there is a user-defined component to
3345 * this swash, and the user has indicated they wish to know if there is
3346 * one (by passing <flags_p>), find out */
3347 if (flags_p && ! (*flags_p & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY)) {
3348 SV** user_defined = hv_fetchs(swash_hv, "USER_DEFINED", FALSE);
3349 if (user_defined && SvUV(*user_defined)) {
3350 *flags_p |= _CORE_SWASH_INIT_USER_DEFINED_PROPERTY;
3351 }
3352 }
3353 }
3354
36eb48b4
KW
3355 /* Make sure there is an inversion list for binary properties */
3356 if (minbits == 1) {
3357 SV** swash_invlistsvp = NULL;
3358 SV* swash_invlist = NULL;
9a53f6cf 3359 bool invlist_in_swash_is_valid = FALSE;
02c85471
FC
3360 bool swash_invlist_unclaimed = FALSE; /* whether swash_invlist has
3361 an unclaimed reference count */
36eb48b4 3362
9a53f6cf 3363 /* If this operation fetched a swash, get its already existing
83199d38 3364 * inversion list, or create one for it */
36eb48b4 3365
83199d38 3366 if (swash_hv) {
5c9f4bd2 3367 swash_invlistsvp = hv_fetchs(swash_hv, "V", FALSE);
9a53f6cf
KW
3368 if (swash_invlistsvp) {
3369 swash_invlist = *swash_invlistsvp;
3370 invlist_in_swash_is_valid = TRUE;
3371 }
3372 else {
36eb48b4 3373 swash_invlist = _swash_to_invlist(retval);
02c85471 3374 swash_invlist_unclaimed = TRUE;
9a53f6cf
KW
3375 }
3376 }
3377
3378 /* If an inversion list was passed in, have to include it */
3379 if (invlist) {
3380
3381 /* Any fetched swash will by now have an inversion list in it;
3382 * otherwise <swash_invlist> will be NULL, indicating that we
3383 * didn't fetch a swash */
3384 if (swash_invlist) {
3385
3386 /* Add the passed-in inversion list, which invalidates the one
3387 * already stored in the swash */
3388 invlist_in_swash_is_valid = FALSE;
3389 _invlist_union(invlist, swash_invlist, &swash_invlist);
3390 }
3391 else {
3392
87367d5f
KW
3393 /* Here, there is no swash already. Set up a minimal one, if
3394 * we are going to return a swash */
3395 if ((int) _invlist_len(invlist) > invlist_swash_boundary) {
971d486f 3396 swash_hv = newHV();
4aca0fe6 3397 retval = newRV_noinc(MUTABLE_SV(swash_hv));
87367d5f 3398 }
9a53f6cf
KW
3399 swash_invlist = invlist;
3400 }
9a53f6cf
KW
3401 }
3402
3403 /* Here, we have computed the union of all the passed-in data. It may
3404 * be that there was an inversion list in the swash which didn't get
538e84ed 3405 * touched; otherwise save the computed one */
87367d5f
KW
3406 if (! invlist_in_swash_is_valid
3407 && (int) _invlist_len(swash_invlist) > invlist_swash_boundary)
3408 {
5c9f4bd2 3409 if (! hv_stores(MUTABLE_HV(SvRV(retval)), "V", swash_invlist))
69794297
KW
3410 {
3411 Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
3412 }
cc34d8c5
FC
3413 /* We just stole a reference count. */
3414 if (swash_invlist_unclaimed) swash_invlist_unclaimed = FALSE;
3415 else SvREFCNT_inc_simple_void_NN(swash_invlist);
9a53f6cf 3416 }
87367d5f 3417
dbfdbd26
KW
3418 SvREADONLY_on(swash_invlist);
3419
c41800a8 3420 /* Use the inversion list stand-alone if small enough */
87367d5f
KW
3421 if ((int) _invlist_len(swash_invlist) <= invlist_swash_boundary) {
3422 SvREFCNT_dec(retval);
02c85471
FC
3423 if (!swash_invlist_unclaimed)
3424 SvREFCNT_inc_simple_void_NN(swash_invlist);
3425 retval = newRV_noinc(swash_invlist);
87367d5f 3426 }
36eb48b4
KW
3427 }
3428
2c1f00b9
YO
3429 CORE_SWASH_INIT_RETURN(retval);
3430#undef CORE_SWASH_INIT_RETURN
a0ed51b3
LW
3431}
3432
035d37be
JH
3433
3434/* This API is wrong for special case conversions since we may need to
3435 * return several Unicode characters for a single Unicode character
3436 * (see lib/unicore/SpecCase.txt) The SWASHGET in lib/utf8_heavy.pl is
3437 * the lower-level routine, and it is similarly broken for returning
38684baa 3438 * multiple values. --jhi
b9992569 3439 * For those, you should use S__to_utf8_case() instead */
b0e3252e 3440/* Now SWASHGET is recasted into S_swatch_get in this file. */
680c470c
TS
3441
3442/* Note:
3443 * Returns the value of property/mapping C<swash> for the first character
3444 * of the string C<ptr>. If C<do_utf8> is true, the string C<ptr> is
4a4088c4 3445 * assumed to be in well-formed UTF-8. If C<do_utf8> is false, the string C<ptr>
3d0f8846 3446 * is assumed to be in native 8-bit encoding. Caches the swatch in C<swash>.
af2af982
KW
3447 *
3448 * A "swash" is a hash which contains initially the keys/values set up by
3449 * SWASHNEW. The purpose is to be able to completely represent a Unicode
3450 * property for all possible code points. Things are stored in a compact form
3451 * (see utf8_heavy.pl) so that calculation is required to find the actual
3452 * property value for a given code point. As code points are looked up, new
3453 * key/value pairs are added to the hash, so that the calculation doesn't have
3454 * to ever be re-done. Further, each calculation is done, not just for the
3455 * desired one, but for a whole block of code points adjacent to that one.
3456 * For binary properties on ASCII machines, the block is usually for 64 code
3457 * points, starting with a code point evenly divisible by 64. Thus if the
3458 * property value for code point 257 is requested, the code goes out and
3459 * calculates the property values for all 64 code points between 256 and 319,
3460 * and stores these as a single 64-bit long bit vector, called a "swatch",
3461 * under the key for code point 256. The key is the UTF-8 encoding for code
3462 * point 256, minus the final byte. Thus, if the length of the UTF-8 encoding
3463 * for a code point is 13 bytes, the key will be 12 bytes long. If the value
3464 * for code point 258 is then requested, this code realizes that it would be
3465 * stored under the key for 256, and would find that value and extract the
3466 * relevant bit, offset from 256.
3467 *
3468 * Non-binary properties are stored in as many bits as necessary to represent
3469 * their values (32 currently, though the code is more general than that), not
fc273927 3470 * as single bits, but the principle is the same: the value for each key is a
af2af982
KW
3471 * vector that encompasses the property values for all code points whose UTF-8
3472 * representations are represented by the key. That is, for all code points
3473 * whose UTF-8 representations are length N bytes, and the key is the first N-1
3474 * bytes of that.
680c470c 3475 */
a0ed51b3 3476UV
680c470c 3477Perl_swash_fetch(pTHX_ SV *swash, const U8 *ptr, bool do_utf8)
a0ed51b3 3478{
ef8f7699 3479 HV *const hv = MUTABLE_HV(SvRV(swash));
3568d838
JH
3480 U32 klen;
3481 U32 off;
9b56a019 3482 STRLEN slen = 0;
7d85a32c 3483 STRLEN needents;
cfd0369c 3484 const U8 *tmps = NULL;
979f2922 3485 SV *swatch;
08fb1ac5 3486 const U8 c = *ptr;
3568d838 3487
7918f24d
NC
3488 PERL_ARGS_ASSERT_SWASH_FETCH;
3489
87367d5f
KW
3490 /* If it really isn't a hash, it isn't really swash; must be an inversion
3491 * list */
3492 if (SvTYPE(hv) != SVt_PVHV) {
3493 return _invlist_contains_cp((SV*)hv,
3494 (do_utf8)
3495 ? valid_utf8_to_uvchr(ptr, NULL)
3496 : c);
3497 }
3498
08fb1ac5
KW
3499 /* We store the values in a "swatch" which is a vec() value in a swash
3500 * hash. Code points 0-255 are a single vec() stored with key length
3501 * (klen) 0. All other code points have a UTF-8 representation
3502 * 0xAA..0xYY,0xZZ. A vec() is constructed containing all of them which
3503 * share 0xAA..0xYY, which is the key in the hash to that vec. So the key
3504 * length for them is the length of the encoded char - 1. ptr[klen] is the
3505 * final byte in the sequence representing the character */
3506 if (!do_utf8 || UTF8_IS_INVARIANT(c)) {
3507 klen = 0;
3508 needents = 256;
3509 off = c;
3568d838 3510 }
08fb1ac5
KW
3511 else if (UTF8_IS_DOWNGRADEABLE_START(c)) {
3512 klen = 0;
3513 needents = 256;
a62b247b 3514 off = EIGHT_BIT_UTF8_TO_NATIVE(c, *(ptr + 1));
979f2922
TS
3515 }
3516 else {
08fb1ac5
KW
3517 klen = UTF8SKIP(ptr) - 1;
3518
3519 /* Each vec() stores 2**UTF_ACCUMULATION_SHIFT values. The offset into
3520 * the vec is the final byte in the sequence. (In EBCDIC this is
3521 * converted to I8 to get consecutive values.) To help you visualize
3522 * all this:
3523 * Straight 1047 After final byte
3524 * UTF-8 UTF-EBCDIC I8 transform
3525 * U+0400: \xD0\x80 \xB8\x41\x41 \xB8\x41\xA0
3526 * U+0401: \xD0\x81 \xB8\x41\x42 \xB8\x41\xA1
3527 * ...
3528 * U+0409: \xD0\x89 \xB8\x41\x4A \xB8\x41\xA9
3529 * U+040A: \xD0\x8A \xB8\x41\x51 \xB8\x41\xAA
3530 * ...
3531 * U+0412: \xD0\x92 \xB8\x41\x59 \xB8\x41\xB2
3532 * U+0413: \xD0\x93 \xB8\x41\x62 \xB8\x41\xB3
3533 * ...
3534 * U+041B: \xD0\x9B \xB8\x41\x6A \xB8\x41\xBB
3535 * U+041C: \xD0\x9C \xB8\x41\x70 \xB8\x41\xBC
3536 * ...
3537 * U+041F: \xD0\x9F \xB8\x41\x73 \xB8\x41\xBF
3538 * U+0420: \xD0\xA0 \xB8\x42\x41 \xB8\x42\x41
3539 *
3540 * (There are no discontinuities in the elided (...) entries.)
3541 * The UTF-8 key for these 33 code points is '\xD0' (which also is the
3542 * key for the next 31, up through U+043F, whose UTF-8 final byte is
3543 * \xBF). Thus in UTF-8, each key is for a vec() for 64 code points.
3544 * The final UTF-8 byte, which ranges between \x80 and \xBF, is an
3545 * index into the vec() swatch (after subtracting 0x80, which we
3546 * actually do with an '&').
3547 * In UTF-EBCDIC, each key is for a 32 code point vec(). The first 32
3548 * code points above have key '\xB8\x41'. The final UTF-EBCDIC byte has
3549 * dicontinuities which go away by transforming it into I8, and we
3550 * effectively subtract 0xA0 to get the index. */
979f2922 3551 needents = (1 << UTF_ACCUMULATION_SHIFT);
bc3632a8 3552 off = NATIVE_UTF8_TO_I8(ptr[klen]) & UTF_CONTINUATION_MASK;
979f2922 3553 }
7d85a32c 3554
a0ed51b3 3555 /*
4a4088c4 3556 * This single-entry cache saves about 1/3 of the UTF-8 overhead in test
a0ed51b3
LW
3557 * suite. (That is, only 7-8% overall over just a hash cache. Still,
3558 * it's nothing to sniff at.) Pity we usually come through at least
3559 * two function calls to get here...
3560 *
3561 * NB: this code assumes that swatches are never modified, once generated!
3562 */
3563
3568d838 3564 if (hv == PL_last_swash_hv &&
a0ed51b3 3565 klen == PL_last_swash_klen &&
27da23d5 3566 (!klen || memEQ((char *)ptr, (char *)PL_last_swash_key, klen)) )
a0ed51b3
LW
3567 {
3568 tmps = PL_last_swash_tmps;
3569 slen = PL_last_swash_slen;
3570 }
3571 else {
3572 /* Try our second-level swatch cache, kept in a hash. */
e1ec3a88 3573 SV** svp = hv_fetch(hv, (const char*)ptr, klen, FALSE);
a0ed51b3 3574
b0e3252e 3575 /* If not cached, generate it via swatch_get */
979f2922 3576 if (!svp || !SvPOK(*svp)
08fb1ac5
KW
3577 || !(tmps = (const U8*)SvPV_const(*svp, slen)))
3578 {
3579 if (klen) {
3580 const UV code_point = valid_utf8_to_uvchr(ptr, NULL);
3581 swatch = swatch_get(swash,
3582 code_point & ~((UV)needents - 1),
3583 needents);
3584 }
3585 else { /* For the first 256 code points, the swatch has a key of
3586 length 0 */
3587 swatch = swatch_get(swash, 0, needents);
3588 }
979f2922 3589
923e4eb5 3590 if (IN_PERL_COMPILETIME)
623e6609 3591 CopHINTS_set(PL_curcop, PL_hints);
a0ed51b3 3592
979f2922 3593 svp = hv_store(hv, (const char *)ptr, klen, swatch, 0);
a0ed51b3 3594
979f2922
TS
3595 if (!svp || !(tmps = (U8*)SvPV(*svp, slen))
3596 || (slen << 3) < needents)
5637ef5b
NC
3597 Perl_croak(aTHX_ "panic: swash_fetch got improper swatch, "
3598 "svp=%p, tmps=%p, slen=%"UVuf", needents=%"UVuf,
3599 svp, tmps, (UV)slen, (UV)needents);
a0ed51b3
LW
3600 }
3601
3602 PL_last_swash_hv = hv;
16d8f38a 3603 assert(klen <= sizeof(PL_last_swash_key));
eac04b2e 3604 PL_last_swash_klen = (U8)klen;
cfd0369c
NC
3605 /* FIXME change interpvar.h? */
3606 PL_last_swash_tmps = (U8 *) tmps;
a0ed51b3
LW
3607 PL_last_swash_slen = slen;
3608 if (klen)
3609 Copy(ptr, PL_last_swash_key, klen, U8);
3610 }
3611
9faf8d75 3612 switch ((int)((slen << 3) / needents)) {
a0ed51b3 3613 case 1:
e7aca353 3614 return ((UV) tmps[off >> 3] & (1 << (off & 7))) != 0;
a0ed51b3 3615 case 8:
e7aca353 3616 return ((UV) tmps[off]);
a0ed51b3
LW
3617 case 16:
3618 off <<= 1;
e7aca353
JH
3619 return
3620 ((UV) tmps[off ] << 8) +
3621 ((UV) tmps[off + 1]);
a0ed51b3
LW
3622 case 32:
3623 off <<= 2;
e7aca353
JH
3624 return
3625 ((UV) tmps[off ] << 24) +
3626 ((UV) tmps[off + 1] << 16) +
3627 ((UV) tmps[off + 2] << 8) +
3628 ((UV) tmps[off + 3]);
a0ed51b3 3629 }
5637ef5b
NC
3630 Perl_croak(aTHX_ "panic: swash_fetch got swatch of unexpected bit width, "
3631 "slen=%"UVuf", needents=%"UVuf, (UV)slen, (UV)needents);
670f1322 3632 NORETURN_FUNCTION_END;
a0ed51b3 3633}
2b9d42f0 3634
319009ee
KW
3635/* Read a single line of the main body of the swash input text. These are of
3636 * the form:
3637 * 0053 0056 0073
3638 * where each number is hex. The first two numbers form the minimum and
3639 * maximum of a range, and the third is the value associated with the range.
3640 * Not all swashes should have a third number
3641 *
3642 * On input: l points to the beginning of the line to be examined; it points
3643 * to somewhere in the string of the whole input text, and is
3644 * terminated by a \n or the null string terminator.
3645 * lend points to the null terminator of that string
3646 * wants_value is non-zero if the swash expects a third number
3647 * typestr is the name of the swash's mapping, like 'ToLower'
3648 * On output: *min, *max, and *val are set to the values read from the line.
3649 * returns a pointer just beyond the line examined. If there was no
3650 * valid min number on the line, returns lend+1
3651 */
3652
3653STATIC U8*
3654S_swash_scan_list_line(pTHX_ U8* l, U8* const lend, UV* min, UV* max, UV* val,
3655 const bool wants_value, const U8* const typestr)
3656{
3657 const int typeto = typestr[0] == 'T' && typestr[1] == 'o';
3658 STRLEN numlen; /* Length of the number */
02470786
KW
3659 I32 flags = PERL_SCAN_SILENT_ILLDIGIT
3660 | PERL_SCAN_DISALLOW_PREFIX
3661 | PERL_SCAN_SILENT_NON_PORTABLE;
319009ee
KW
3662
3663 /* nl points to the next \n in the scan */
3664 U8* const nl = (U8*)memchr(l, '\n', lend - l);
3665
95543e92
KW
3666 PERL_ARGS_ASSERT_SWASH_SCAN_LIST_LINE;
3667
319009ee
KW
3668 /* Get the first number on the line: the range minimum */
3669 numlen = lend - l;
3670 *min = grok_hex((char *)l, &numlen, &flags, NULL);
c88850db 3671 *max = *min; /* So can never return without setting max */
319009ee
KW
3672 if (numlen) /* If found a hex number, position past it */
3673 l += numlen;
3674 else if (nl) { /* Else, go handle next line, if any */
3675 return nl + 1; /* 1 is length of "\n" */
3676 }
3677 else { /* Else, no next line */
3678 return lend + 1; /* to LIST's end at which \n is not found */
3679 }
3680
3681 /* The max range value follows, separated by a BLANK */
3682 if (isBLANK(*l)) {
3683 ++l;
02470786
KW
3684 flags = PERL_SCAN_SILENT_ILLDIGIT
3685 | PERL_SCAN_DISALLOW_PREFIX
3686 | PERL_SCAN_SILENT_NON_PORTABLE;
319009ee
KW
3687 numlen = lend - l;
3688 *max = grok_hex((char *)l, &numlen, &flags, NULL);
3689 if (numlen)
3690 l += numlen;
3691 else /* If no value here, it is a single element range */
3692 *max = *min;
3693
3694 /* Non-binary tables have a third entry: what the first element of the
24303724 3695 * range maps to. The map for those currently read here is in hex */
319009ee
KW
3696 if (wants_value) {
3697 if (isBLANK(*l)) {
3698 ++l;
f2a7d0fc
KW
3699 flags = PERL_SCAN_SILENT_ILLDIGIT
3700 | PERL_SCAN_DISALLOW_PREFIX
3701 | PERL_SCAN_SILENT_NON_PORTABLE;
3702 numlen = lend - l;
3703 *val = grok_hex((char *)l, &numlen, &flags, NULL);
3704 if (numlen)
3705 l += numlen;
3706 else
3707 *val = 0;
319009ee
KW
3708 }
3709 else {
3710 *val = 0;
3711 if (typeto) {
dcbac5bb 3712 /* diag_listed_as: To%s: illegal mapping '%s' */
319009ee
KW
3713 Perl_croak(aTHX_ "%s: illegal mapping '%s'",
3714 typestr, l);
3715 }
3716 }
3717 }
3718 else
3719 *val = 0; /* bits == 1, then any val should be ignored */
3720 }
3721 else { /* Nothing following range min, should be single element with no
3722 mapping expected */
319009ee
KW
3723 if (wants_value) {
3724 *val = 0;
3725 if (typeto) {
dcbac5bb 3726 /* diag_listed_as: To%s: illegal mapping '%s' */
319009ee
KW
3727 Perl_croak(aTHX_ "%s: illegal mapping '%s'", typestr, l);
3728 }
3729 }
3730 else
3731 *val = 0; /* bits == 1, then val should be ignored */
3732 }
3733
3734 /* Position to next line if any, or EOF */
3735 if (nl)
3736 l = nl + 1;
3737 else
3738 l = lend;
3739
3740 return l;
3741}
3742
979f2922
TS
3743/* Note:
3744 * Returns a swatch (a bit vector string) for a code point sequence
3745 * that starts from the value C<start> and comprises the number C<span>.
3746 * A C<swash> must be an object created by SWASHNEW (see lib/utf8_heavy.pl).
3747 * Should be used via swash_fetch, which will cache the swatch in C<swash>.
3748 */
3749STATIC SV*
b0e3252e 3750S_swatch_get(pTHX_ SV* swash, UV start, UV span)
979f2922
TS
3751{
3752 SV *swatch;
77f9f126 3753 U8 *l, *lend, *x, *xend, *s, *send;
979f2922 3754 STRLEN lcur, xcur, scur;
ef8f7699 3755 HV *const hv = MUTABLE_HV(SvRV(swash));
5c9f4bd2 3756 SV** const invlistsvp = hv_fetchs(hv, "V", FALSE);
36eb48b4 3757
88d45d28
KW
3758 SV** listsvp = NULL; /* The string containing the main body of the table */
3759 SV** extssvp = NULL;
3760 SV** invert_it_svp = NULL;
3761 U8* typestr = NULL;
786861f5
KW
3762 STRLEN bits;
3763 STRLEN octets; /* if bits == 1, then octets == 0 */
3764 UV none;
3765 UV end = start + span;
972dd592 3766
36eb48b4 3767 if (invlistsvp == NULL) {
786861f5
KW
3768 SV** const bitssvp = hv_fetchs(hv, "BITS", FALSE);
3769 SV** const nonesvp = hv_fetchs(hv, "NONE", FALSE);
3770 SV** const typesvp = hv_fetchs(hv, "TYPE", FALSE);
3771 extssvp = hv_fetchs(hv, "EXTRAS", FALSE);
3772 listsvp = hv_fetchs(hv, "LIST", FALSE);
3773 invert_it_svp = hv_fetchs(hv, "INVERT_IT", FALSE);
3774
3775 bits = SvUV(*bitssvp);
3776 none = SvUV(*nonesvp);
3777 typestr = (U8*)SvPV_nolen(*typesvp);
3778 }
36eb48b4
KW
3779 else {
3780 bits = 1;
3781 none = 0;
3782 }
786861f5 3783 octets = bits >> 3; /* if bits == 1, then octets == 0 */
979f2922 3784
b0e3252e 3785 PERL_ARGS_ASSERT_SWATCH_GET;
7918f24d 3786
979f2922 3787 if (bits != 1 && bits != 8 && bits != 16 && bits != 32) {
b0e3252e 3788 Perl_croak(aTHX_ "panic: swatch_get doesn't expect bits %"UVuf,
660a4616 3789 (UV)bits);
979f2922
TS
3790 }
3791
84ea5ef6
KW
3792 /* If overflowed, use the max possible */
3793 if (end < start) {
3794 end = UV_MAX;
3795 span = end - start;
3796 }
3797
979f2922 3798 /* create and initialize $swatch */
979f2922 3799 scur = octets ? (span * octets) : (span + 7) / 8;
e524fe40
NC
3800 swatch = newSV(scur);
3801 SvPOK_on(swatch);
979f2922
TS
3802 s = (U8*)SvPVX(swatch);
3803 if (octets && none) {
0bd48802 3804 const U8* const e = s + scur;
979f2922
TS
3805 while (s < e) {
3806 if (bits == 8)
3807 *s++ = (U8)(none & 0xff);
3808 else if (bits == 16) {
3809 *s++ = (U8)((none >> 8) & 0xff);
3810 *s++ = (U8)( none & 0xff);
3811 }
3812 else if (bits == 32) {
3813 *s++ = (U8)((none >> 24) & 0xff);
3814 *s++ = (U8)((none >> 16) & 0xff);
3815 *s++ = (U8)((none >> 8) & 0xff);
3816 *s++ = (U8)( none & 0xff);
3817 }
3818 }
3819 *s = '\0';
3820 }
3821 else {
3822 (void)memzero((U8*)s, scur + 1);
3823 }
3824 SvCUR_set(swatch, scur);
3825 s = (U8*)SvPVX(swatch);
3826
36eb48b4
KW
3827 if (invlistsvp) { /* If has an inversion list set up use that */
3828 _invlist_populate_swatch(*invlistsvp, start, end, s);
3829 return swatch;
3830 }
3831
3832 /* read $swash->{LIST} */
979f2922
TS
3833 l = (U8*)SvPV(*listsvp, lcur);
3834 lend = l + lcur;
3835 while (l < lend) {
8ed25d53 3836 UV min, max, val, upper;
95543e92
KW
3837 l = swash_scan_list_line(l, lend, &min, &max, &val,
3838 cBOOL(octets), typestr);
319009ee 3839 if (l > lend) {
979f2922
TS
3840 break;
3841 }
3842
972dd592 3843 /* If looking for something beyond this range, go try the next one */
979f2922
TS
3844 if (max < start)
3845 continue;
3846
8ed25d53
KW
3847 /* <end> is generally 1 beyond where we want to set things, but at the
3848 * platform's infinity, where we can't go any higher, we want to
3849 * include the code point at <end> */
3850 upper = (max < end)
3851 ? max
3852 : (max != UV_MAX || end != UV_MAX)
3853 ? end - 1
3854 : end;
3855
979f2922 3856 if (octets) {
35da51f7 3857 UV key;
979f2922
TS
3858 if (min < start) {
3859 if (!none || val < none) {
3860 val += start - min;
3861 }
3862 min = start;
3863 }
8ed25d53 3864 for (key = min; key <= upper; key++) {
979f2922 3865 STRLEN offset;
979f2922
TS
3866 /* offset must be non-negative (start <= min <= key < end) */
3867 offset = octets * (key - start);
3868 if (bits == 8)
3869 s[offset] = (U8)(val & 0xff);
3870 else if (bits == 16) {
3871 s[offset ] = (U8)((val >> 8) & 0xff);
3872 s[offset + 1] = (U8)( val & 0xff);
3873 }
3874 else if (bits == 32) {
3875 s[offset ] = (U8)((val >> 24) & 0xff);
3876 s[offset + 1] = (U8)((val >> 16) & 0xff);
3877 s[offset + 2] = (U8)((val >> 8) & 0xff);
3878 s[offset + 3] = (U8)( val & 0xff);
3879 }
3880
3881 if (!none || val < none)
3882 ++val;
3883 }
3884 }
711a919c 3885 else { /* bits == 1, then val should be ignored */
35da51f7 3886 UV key;
979f2922
TS
3887 if (min < start)
3888 min = start;
6cb05c12 3889
8ed25d53 3890 for (key = min; key <= upper; key++) {
0bd48802 3891 const STRLEN offset = (STRLEN)(key - start);
979f2922
TS
3892 s[offset >> 3] |= 1 << (offset & 7);
3893 }
3894 }
3895 } /* while */
979f2922 3896
9479a769 3897 /* Invert if the data says it should be. Assumes that bits == 1 */
77f9f126 3898 if (invert_it_svp && SvUV(*invert_it_svp)) {
0bda3001
KW
3899
3900 /* Unicode properties should come with all bits above PERL_UNICODE_MAX
3901 * be 0, and their inversion should also be 0, as we don't succeed any
3902 * Unicode property matches for non-Unicode code points */
3903 if (start <= PERL_UNICODE_MAX) {
3904
3905 /* The code below assumes that we never cross the
3906 * Unicode/above-Unicode boundary in a range, as otherwise we would
3907 * have to figure out where to stop flipping the bits. Since this
3908 * boundary is divisible by a large power of 2, and swatches comes
3909 * in small powers of 2, this should be a valid assumption */
3910 assert(start + span - 1 <= PERL_UNICODE_MAX);
3911
507a8485
KW
3912 send = s + scur;
3913 while (s < send) {
3914 *s = ~(*s);
3915 s++;
3916 }
0bda3001 3917 }
77f9f126
KW
3918 }
3919
d73c39c5
KW
3920 /* read $swash->{EXTRAS}
3921 * This code also copied to swash_to_invlist() below */
979f2922
TS
3922 x = (U8*)SvPV(*extssvp, xcur);
3923 xend = x + xcur;
3924 while (x < xend) {
3925 STRLEN namelen;
3926 U8 *namestr;
3927 SV** othersvp;
3928 HV* otherhv;
3929 STRLEN otherbits;
3930 SV **otherbitssvp, *other;
711a919c 3931 U8 *s, *o, *nl;
979f2922
TS
3932 STRLEN slen, olen;
3933
35da51f7 3934 const U8 opc = *x++;
979f2922
TS
3935 if (opc == '\n')
3936 continue;
3937
3938 nl = (U8*)memchr(x, '\n', xend - x);
3939
3940 if (opc != '-' && opc != '+' && opc != '!' && opc != '&') {
3941 if (nl) {
3942 x = nl + 1; /* 1 is length of "\n" */
3943 continue;
3944 }
3945 else {
3946 x = xend; /* to EXTRAS' end at which \n is not found */
3947 break;
3948 }
3949 }
3950
3951 namestr = x;
3952 if (nl) {
3953 namelen = nl - namestr;
3954 x = nl + 1;
3955 }
3956 else {
3957 namelen = xend - namestr;
3958 x = xend;
3959 }
3960
3961 othersvp = hv_fetch(hv, (char *)namestr, namelen, FALSE);
ef8f7699 3962 otherhv = MUTABLE_HV(SvRV(*othersvp));
017a3ce5 3963 otherbitssvp = hv_fetchs(otherhv, "BITS", FALSE);
979f2922
TS
3964 otherbits = (STRLEN)SvUV(*otherbitssvp);
3965 if (bits < otherbits)
5637ef5b
NC
3966 Perl_croak(aTHX_ "panic: swatch_get found swatch size mismatch, "
3967 "bits=%"UVuf", otherbits=%"UVuf, (UV)bits, (UV)otherbits);
979f2922
TS
3968
3969 /* The "other" swatch must be destroyed after. */
b0e3252e 3970 other = swatch_get(*othersvp, start, span);
979f2922
TS
3971 o = (U8*)SvPV(other, olen);
3972
3973 if (!olen)
b0e3252e 3974 Perl_croak(aTHX_ "panic: swatch_get got improper swatch");
979f2922
TS
3975
3976 s = (U8*)SvPV(swatch, slen);
3977 if (bits == 1 && otherbits == 1) {
3978 if (slen != olen)
5637ef5b
NC
3979 Perl_croak(aTHX_ "panic: swatch_get found swatch length "
3980 "mismatch, slen=%"UVuf", olen=%"UVuf,
3981 (UV)slen, (UV)olen);
979f2922
TS
3982
3983 switch (opc) {
3984 case '+':
3985 while (slen--)
3986 *s++ |= *o++;
3987 break;
3988 case '!':
3989 while (slen--)
3990 *s++ |= ~*o++;
3991 break;
3992 case '-':
3993 while (slen--)
3994 *s++ &= ~*o++;
3995 break;
3996 case '&':
3997 while (slen--)
3998 *s++ &= *o++;
3999 break;
4000 default:
4001 break;
4002 }
4003 }
711a919c 4004 else {
979f2922
TS
4005 STRLEN otheroctets = otherbits >> 3;
4006 STRLEN offset = 0;
35da51f7 4007 U8* const send = s + slen;
979f2922
TS
4008
4009 while (s < send) {
4010 UV otherval = 0;
4011
4012 if (otherbits == 1) {
4013 otherval = (o[offset >> 3] >> (offset & 7)) & 1;
4014 ++offset;
4015 }
4016 else {
4017 STRLEN vlen = otheroctets;
4018 otherval = *o++;
4019 while (--vlen) {
4020 otherval <<= 8;
4021 otherval |= *o++;
4022 }
4023 }
4024
711a919c 4025 if (opc == '+' && otherval)
6f207bd3 4026 NOOP; /* replace with otherval */
979f2922
TS
4027 else if (opc == '!' && !otherval)
4028 otherval = 1;
4029 else if (opc == '-' && otherval)
4030 otherval = 0;
4031 else if (opc == '&' && !otherval)
4032 otherval = 0;
4033 else {
711a919c 4034 s += octets; /* no replacement */
979f2922
TS
4035 continue;
4036 }
4037
4038 if (bits == 8)
4039 *s++ = (U8)( otherval & 0xff);
4040 else if (bits == 16) {
4041 *s++ = (U8)((otherval >> 8) & 0xff);
4042 *s++ = (U8)( otherval & 0xff);
4043 }
4044 else if (bits == 32) {
4045 *s++ = (U8)((otherval >> 24) & 0xff);
4046 *s++ = (U8)((otherval >> 16) & 0xff);
4047 *s++ = (U8)((otherval >> 8) & 0xff);
4048 *s++ = (U8)( otherval & 0xff);
4049 }
4050 }
4051 }
4052 sv_free(other); /* through with it! */
4053 } /* while */
4054 return swatch;
4055}
4056
064c021d 4057HV*
4c2e1131 4058Perl__swash_inversion_hash(pTHX_ SV* const swash)
064c021d
KW
4059{
4060
79a2a0e8 4061 /* Subject to change or removal. For use only in regcomp.c and regexec.c
5662e334
KW
4062 * Can't be used on a property that is subject to user override, as it
4063 * relies on the value of SPECIALS in the swash which would be set by
4064 * utf8_heavy.pl to the hash in the non-overriden file, and hence is not set
4065 * for overridden properties
064c021d
KW
4066 *
4067 * Returns a hash which is the inversion and closure of a swash mapping.
4068 * For example, consider the input lines:
4069 * 004B 006B
4070 * 004C 006C
4071 * 212A 006B
4072 *
4a4088c4 4073 * The returned hash would have two keys, the UTF-8 for 006B and the UTF-8 for
064c021d 4074 * 006C. The value for each key is an array. For 006C, the array would
4a4088c4
KW
4075 * have two elements, the UTF-8 for itself, and for 004C. For 006B, there
4076 * would be three elements in its array, the UTF-8 for 006B, 004B and 212A.
064c021d 4077 *
538e84ed
KW
4078 * Note that there are no elements in the hash for 004B, 004C, 212A. The
4079 * keys are only code points that are folded-to, so it isn't a full closure.
4080 *
064c021d
KW
4081 * Essentially, for any code point, it gives all the code points that map to
4082 * it, or the list of 'froms' for that point.
4083 *
5662e334
KW
4084 * Currently it ignores any additions or deletions from other swashes,
4085 * looking at just the main body of the swash, and if there are SPECIALS
4086 * in the swash, at that hash
4087 *
4088 * The specials hash can be extra code points, and most likely consists of
4089 * maps from single code points to multiple ones (each expressed as a string
4a4088c4 4090 * of UTF-8 characters). This function currently returns only 1-1 mappings.
5662e334
KW
4091 * However consider this possible input in the specials hash:
4092 * "\xEF\xAC\x85" => "\x{0073}\x{0074}", # U+FB05 => 0073 0074
4093 * "\xEF\xAC\x86" => "\x{0073}\x{0074}", # U+FB06 => 0073 0074
4094 *
4095 * Both FB05 and FB06 map to the same multi-char sequence, which we don't
4096 * currently handle. But it also means that FB05 and FB06 are equivalent in
4097 * a 1-1 mapping which we should handle, and this relationship may not be in
4098 * the main table. Therefore this function examines all the multi-char
74894415
KW
4099 * sequences and adds the 1-1 mappings that come out of that.
4100 *
4101 * XXX This function was originally intended to be multipurpose, but its
4102 * only use is quite likely to remain for constructing the inversion of
4103 * the CaseFolding (//i) property. If it were more general purpose for
4104 * regex patterns, it would have to do the FB05/FB06 game for simple folds,
4105 * because certain folds are prohibited under /iaa and /il. As an example,
4106 * in Unicode 3.0.1 both U+0130 and U+0131 fold to 'i', and hence are both
4107 * equivalent under /i. But under /iaa and /il, the folds to 'i' are
4108 * prohibited, so we would not figure out that they fold to each other.
4109 * Code could be written to automatically figure this out, similar to the
4110 * code that does this for multi-character folds, but this is the only case
4111 * where something like this is ever likely to happen, as all the single
7ee537e6 4112 * char folds to the 0-255 range are now quite settled. Instead there is a
74894415
KW
4113 * little special code that is compiled only for this Unicode version. This
4114 * is smaller and didn't require much coding time to do. But this makes
4115 * this routine strongly tied to being used just for CaseFolding. If ever
4116 * it should be generalized, this would have to be fixed */
064c021d
KW
4117
4118 U8 *l, *lend;
4119 STRLEN lcur;
4120 HV *const hv = MUTABLE_HV(SvRV(swash));
4121
923b6d4e
KW
4122 /* The string containing the main body of the table. This will have its
4123 * assertion fail if the swash has been converted to its inversion list */
064c021d
KW
4124 SV** const listsvp = hv_fetchs(hv, "LIST", FALSE);
4125
4126 SV** const typesvp = hv_fetchs(hv, "TYPE", FALSE);
4127 SV** const bitssvp = hv_fetchs(hv, "BITS", FALSE);
4128 SV** const nonesvp = hv_fetchs(hv, "NONE", FALSE);
4129 /*SV** const extssvp = hv_fetchs(hv, "EXTRAS", FALSE);*/
4130 const U8* const typestr = (U8*)SvPV_nolen(*typesvp);
4131 const STRLEN bits = SvUV(*bitssvp);
4132 const STRLEN octets = bits >> 3; /* if bits == 1, then octets == 0 */
4133 const UV none = SvUV(*nonesvp);
5662e334 4134 SV **specials_p = hv_fetchs(hv, "SPECIALS", 0);
064c021d
KW
4135
4136 HV* ret = newHV();
4137
4138 PERL_ARGS_ASSERT__SWASH_INVERSION_HASH;
4139
4140 /* Must have at least 8 bits to get the mappings */
4141 if (bits != 8 && bits != 16 && bits != 32) {
4142 Perl_croak(aTHX_ "panic: swash_inversion_hash doesn't expect bits %"UVuf,
4143 (UV)bits);
4144 }
4145
5662e334
KW
4146 if (specials_p) { /* It might be "special" (sometimes, but not always, a
4147 mapping to more than one character */
4148
4149 /* Construct an inverse mapping hash for the specials */
4150 HV * const specials_hv = MUTABLE_HV(SvRV(*specials_p));
4151 HV * specials_inverse = newHV();
4152 char *char_from; /* the lhs of the map */
4153 I32 from_len; /* its byte length */
4154 char *char_to; /* the rhs of the map */
4155 I32 to_len; /* its byte length */
4156 SV *sv_to; /* and in a sv */
4157 AV* from_list; /* list of things that map to each 'to' */
4158
4159 hv_iterinit(specials_hv);
4160
4a4088c4
KW
4161 /* The keys are the characters (in UTF-8) that map to the corresponding
4162 * UTF-8 string value. Iterate through the list creating the inverse
5662e334
KW
4163 * list. */
4164 while ((sv_to = hv_iternextsv(specials_hv, &char_from, &from_len))) {
4165 SV** listp;
4166 if (! SvPOK(sv_to)) {
5637ef5b
NC
4167 Perl_croak(aTHX_ "panic: value returned from hv_iternextsv() "
4168 "unexpectedly is not a string, flags=%lu",
4169 (unsigned long)SvFLAGS(sv_to));
5662e334 4170 }
4b88fb76 4171 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "Found mapping from %"UVXf", First char of to is %"UVXf"\n", valid_utf8_to_uvchr((U8*) char_from, 0), valid_utf8_to_uvchr((U8*) SvPVX(sv_to), 0)));*/
5662e334
KW
4172
4173 /* Each key in the inverse list is a mapped-to value, and the key's
4a4088c4 4174 * hash value is a list of the strings (each in UTF-8) that map to
5662e334
KW
4175 * it. Those strings are all one character long */
4176 if ((listp = hv_fetch(specials_inverse,
4177 SvPVX(sv_to),
4178 SvCUR(sv_to), 0)))
4179 {
4180 from_list = (AV*) *listp;
4181 }
4182 else { /* No entry yet for it: create one */
4183 from_list = newAV();
4184 if (! hv_store(specials_inverse,
4185 SvPVX(sv_to),
4186 SvCUR(sv_to),
4187 (SV*) from_list, 0))
4188 {
4189 Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
4190 }
4191 }
4192
4193 /* Here have the list associated with this 'to' (perhaps newly
4194 * created and empty). Just add to it. Note that we ASSUME that
4195 * the input is guaranteed to not have duplications, so we don't
4196 * check for that. Duplications just slow down execution time. */
4197 av_push(from_list, newSVpvn_utf8(char_from, from_len, TRUE));
4198 }
4199
4200 /* Here, 'specials_inverse' contains the inverse mapping. Go through
4201 * it looking for cases like the FB05/FB06 examples above. There would
4202 * be an entry in the hash like
4203 * 'st' => [ FB05, FB06 ]
4204 * In this example we will create two lists that get stored in the
4205 * returned hash, 'ret':
4206 * FB05 => [ FB05, FB06 ]
4207 * FB06 => [ FB05, FB06 ]
4208 *
4209 * Note that there is nothing to do if the array only has one element.
4210 * (In the normal 1-1 case handled below, we don't have to worry about
4211 * two lists, as everything gets tied to the single list that is
4212 * generated for the single character 'to'. But here, we are omitting
4213 * that list, ('st' in the example), so must have multiple lists.) */
4214 while ((from_list = (AV *) hv_iternextsv(specials_inverse,
4215 &char_to, &to_len)))
4216 {
7e13d567 4217 if (av_tindex_nomg(from_list) > 0) {
c70927a6 4218 SSize_t i;
5662e334
KW
4219
4220 /* We iterate over all combinations of i,j to place each code
4221 * point on each list */
7e13d567 4222 for (i = 0; i <= av_tindex_nomg(from_list); i++) {
c70927a6 4223 SSize_t j;
5662e334
KW
4224 AV* i_list = newAV();
4225 SV** entryp = av_fetch(from_list, i, FALSE);
4226 if (entryp == NULL) {
4227 Perl_croak(aTHX_ "panic: av_fetch() unexpectedly failed");
4228 }
4229 if (hv_fetch(ret, SvPVX(*entryp), SvCUR(*entryp), FALSE)) {
4230 Perl_croak(aTHX_ "panic: unexpected entry for %s", SvPVX(*entryp));
4231 }
4232 if (! hv_store(ret, SvPVX(*entryp), SvCUR(*entryp),
4233 (SV*) i_list, FALSE))
4234 {
4235 Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
4236 }
4237
538e84ed 4238 /* For DEBUG_U: UV u = valid_utf8_to_uvchr((U8*) SvPVX(*entryp), 0);*/
7e13d567 4239 for (j = 0; j <= av_tindex_nomg(from_list); j++) {
5662e334
KW
4240 entryp = av_fetch(from_list, j, FALSE);
4241 if (entryp == NULL) {
4242 Perl_croak(aTHX_ "panic: av_fetch() unexpectedly failed");
4243 }
4244
4245 /* When i==j this adds itself to the list */
4b88fb76
KW
4246 av_push(i_list, newSVuv(utf8_to_uvchr_buf(
4247 (U8*) SvPVX(*entryp),
4248 (U8*) SvPVX(*entryp) + SvCUR(*entryp),
4249 0)));
4637d003 4250 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "%s: %d: Adding %"UVXf" to list for %"UVXf"\n", __FILE__, __LINE__, valid_utf8_to_uvchr((U8*) SvPVX(*entryp), 0), u));*/
5662e334
KW
4251 }
4252 }
4253 }
4254 }
4255 SvREFCNT_dec(specials_inverse); /* done with it */
4256 } /* End of specials */
4257
064c021d 4258 /* read $swash->{LIST} */
74894415
KW
4259
4260#if UNICODE_MAJOR_VERSION == 3 \
4261 && UNICODE_DOT_VERSION == 0 \
4262 && UNICODE_DOT_DOT_VERSION == 1
4263
4264 /* For this version only U+130 and U+131 are equivalent under qr//i. Add a
4265 * rule so that things work under /iaa and /il */
4266
4267 SV * mod_listsv = sv_mortalcopy(*listsvp);
4268 sv_catpv(mod_listsv, "130\t130\t131\n");
4269 l = (U8*)SvPV(mod_listsv, lcur);
4270
4271#else
4272
064c021d 4273 l = (U8*)SvPV(*listsvp, lcur);
74894415
KW
4274
4275#endif
4276
064c021d
KW
4277 lend = l + lcur;
4278
4279 /* Go through each input line */
4280 while (l < lend) {
4281 UV min, max, val;
4282 UV inverse;
95543e92
KW
4283 l = swash_scan_list_line(l, lend, &min, &max, &val,
4284 cBOOL(octets), typestr);
064c021d
KW
4285 if (l > lend) {
4286 break;
4287 }
4288
4289 /* Each element in the range is to be inverted */
4290 for (inverse = min; inverse <= max; inverse++) {
4291 AV* list;
064c021d
KW
4292 SV** listp;
4293 IV i;
4294 bool found_key = FALSE;
5662e334 4295 bool found_inverse = FALSE;
064c021d
KW
4296
4297 /* The key is the inverse mapping */
4298 char key[UTF8_MAXBYTES+1];
c80e42f3 4299 char* key_end = (char *) uvchr_to_utf8((U8*) key, val);
064c021d
KW
4300 STRLEN key_len = key_end - key;
4301
064c021d
KW
4302 /* Get the list for the map */
4303 if ((listp = hv_fetch(ret, key, key_len, FALSE))) {
4304 list = (AV*) *listp;
4305 }
4306 else { /* No entry yet for it: create one */
4307 list = newAV();
4308 if (! hv_store(ret, key, key_len, (SV*) list, FALSE)) {
4309 Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
4310 }
4311 }
4312
5662e334
KW
4313 /* Look through list to see if this inverse mapping already is
4314 * listed, or if there is a mapping to itself already */
7e13d567 4315 for (i = 0; i <= av_tindex_nomg(list); i++) {
064c021d
KW
4316 SV** entryp = av_fetch(list, i, FALSE);
4317 SV* entry;
414db8a1 4318 UV uv;
064c021d
KW
4319 if (entryp == NULL) {
4320 Perl_croak(aTHX_ "panic: av_fetch() unexpectedly failed");
4321 }
4322 entry = *entryp;
414db8a1
DM
4323 uv = SvUV(entry);
4324 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "list for %"UVXf" contains %"UVXf"\n", val, uv));*/
4325 if (uv == val) {
064c021d 4326 found_key = TRUE;
5662e334 4327 }
414db8a1 4328 if (uv == inverse) {
5662e334
KW
4329 found_inverse = TRUE;
4330 }
4331
4332 /* No need to continue searching if found everything we are
4333 * looking for */
4334 if (found_key && found_inverse) {
064c021d
KW
4335 break;
4336 }
4337 }
56ca34ca
KW
4338
4339 /* Make sure there is a mapping to itself on the list */
064c021d 4340 if (! found_key) {
d397ff6a 4341 av_push(list, newSVuv(val));
4637d003 4342 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "%s: %d: Adding %"UVXf" to list for %"UVXf"\n", __FILE__, __LINE__, val, val));*/
064c021d
KW
4343 }
4344
4345
4346 /* Simply add the value to the list */
5662e334
KW
4347 if (! found_inverse) {
4348 av_push(list, newSVuv(inverse));
4637d003 4349 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "%s: %d: Adding %"UVXf" to list for %"UVXf"\n", __FILE__, __LINE__, inverse, val));*/
5662e334 4350 }
064c021d 4351
b0e3252e 4352 /* swatch_get() increments the value of val for each element in the
064c021d
KW
4353 * range. That makes more compact tables possible. You can
4354 * express the capitalization, for example, of all consecutive
4355 * letters with a single line: 0061\t007A\t0041 This maps 0061 to
4356 * 0041, 0062 to 0042, etc. I (khw) have never understood 'none',
bd3f2f94 4357 * and it's not documented; it appears to be used only in
b0e3252e 4358 * implementing tr//; I copied the semantics from swatch_get(), just
bd3f2f94 4359 * in case */
064c021d
KW
4360 if (!none || val < none) {
4361 ++val;
4362 }
4363 }
4364 }
4365
4366 return ret;
4367}
4368
a25abddc 4369SV*
d764b54e
KW
4370Perl__swash_to_invlist(pTHX_ SV* const swash)
4371{
4372
ed92f1b3
KW
4373 /* Subject to change or removal. For use only in one place in regcomp.c.
4374 * Ownership is given to one reference count in the returned SV* */
d764b54e
KW
4375
4376 U8 *l, *lend;
4377 char *loc;
4378 STRLEN lcur;
4379 HV *const hv = MUTABLE_HV(SvRV(swash));
4380 UV elements = 0; /* Number of elements in the inversion list */
b443038a 4381 U8 empty[] = "";
923b6d4e
KW
4382 SV** listsvp;
4383 SV** typesvp;
4384 SV** bitssvp;
4385 SV** extssvp;
4386 SV** invert_it_svp;
d764b54e 4387
923b6d4e
KW
4388 U8* typestr;
4389 STRLEN bits;
4390 STRLEN octets; /* if bits == 1, then octets == 0 */
d73c39c5
KW
4391 U8 *x, *xend;
4392 STRLEN xcur;
d764b54e 4393
a25abddc 4394 SV* invlist;
d764b54e 4395
b81740c0
KW
4396 PERL_ARGS_ASSERT__SWASH_TO_INVLIST;
4397
923b6d4e
KW
4398 /* If not a hash, it must be the swash's inversion list instead */
4399 if (SvTYPE(hv) != SVt_PVHV) {
ed92f1b3 4400 return SvREFCNT_inc_simple_NN((SV*) hv);
923b6d4e
KW
4401 }
4402
4403 /* The string containing the main body of the table */
4404 listsvp = hv_fetchs(hv, "LIST", FALSE);
4405 typesvp = hv_fetchs(hv, "TYPE", FALSE);
4406 bitssvp = hv_fetchs(hv, "BITS", FALSE);
4407 extssvp = hv_fetchs(hv, "EXTRAS", FALSE);
4408 invert_it_svp = hv_fetchs(hv, "INVERT_IT", FALSE);
4409
4410 typestr = (U8*)SvPV_nolen(*typesvp);
4411 bits = SvUV(*bitssvp);
4412 octets = bits >> 3; /* if bits == 1, then octets == 0 */
4413
d764b54e 4414 /* read $swash->{LIST} */
b443038a
KW
4415 if (SvPOK(*listsvp)) {
4416 l = (U8*)SvPV(*listsvp, lcur);
4417 }
4418 else {
4419 /* LIST legitimately doesn't contain a string during compilation phases
4420 * of Perl itself, before the Unicode tables are generated. In this
4421 * case, just fake things up by creating an empty list */
4422 l = empty;
4423 lcur = 0;
4424 }
d764b54e
KW
4425 loc = (char *) l;
4426 lend = l + lcur;
4427
31aa6e0b 4428 if (*l == 'V') { /* Inversion list format */
99944878 4429 const char *after_atou = (char *) lend;
31aa6e0b
KW
4430 UV element0;
4431 UV* other_elements_ptr;
4432
4433 /* The first number is a count of the rest */
4434 l++;
22ff3130
HS
4435 if (!grok_atoUV((const char *)l, &elements, &after_atou)) {
4436 Perl_croak(aTHX_ "panic: Expecting a valid count of elements at start of inversion list");
4437 }
eb092534
KW
4438 if (elements == 0) {
4439 invlist = _new_invlist(0);
4440 }
4441 else {
99944878
JH
4442 while (isSPACE(*l)) l++;
4443 l = (U8 *) after_atou;
1f9f7d4c
KW
4444
4445 /* Get the 0th element, which is needed to setup the inversion list */
99944878 4446 while (isSPACE(*l)) l++;
22ff3130
HS
4447 if (!grok_atoUV((const char *)l, &element0, &after_atou)) {
4448 Perl_croak(aTHX_ "panic: Expecting a valid 0th element for inversion list");
4449 }
99944878 4450 l = (U8 *) after_atou;
1f9f7d4c
KW
4451 invlist = _setup_canned_invlist(elements, element0, &other_elements_ptr);
4452 elements--;
4453
4454 /* Then just populate the rest of the input */
4455 while (elements-- > 0) {
4456 if (l > lend) {
4457 Perl_croak(aTHX_ "panic: Expecting %"UVuf" more elements than available", elements);
4458 }
99944878 4459 while (isSPACE(*l)) l++;
22ff3130
HS
4460 if (!grok_atoUV((const char *)l, other_elements_ptr++, &after_atou)) {
4461 Perl_croak(aTHX_ "panic: Expecting a valid element in inversion list");
4462 }
99944878 4463 l = (U8 *) after_atou;
1f9f7d4c 4464 }
eb092534 4465 }
31aa6e0b
KW
4466 }
4467 else {
4468
1784d2f9
KW
4469 /* Scan the input to count the number of lines to preallocate array
4470 * size based on worst possible case, which is each line in the input
4471 * creates 2 elements in the inversion list: 1) the beginning of a
4472 * range in the list; 2) the beginning of a range not in the list. */
4473 while ((loc = (strchr(loc, '\n'))) != NULL) {
4474 elements += 2;
4475 loc++;
4476 }
d764b54e 4477
1784d2f9
KW
4478 /* If the ending is somehow corrupt and isn't a new line, add another
4479 * element for the final range that isn't in the inversion list */
4480 if (! (*lend == '\n'
4481 || (*lend == '\0' && (lcur == 0 || *(lend - 1) == '\n'))))
4482 {
4483 elements++;
4484 }
d764b54e 4485
1784d2f9 4486 invlist = _new_invlist(elements);
d764b54e 4487
1784d2f9
KW
4488 /* Now go through the input again, adding each range to the list */
4489 while (l < lend) {
4490 UV start, end;
4491 UV val; /* Not used by this function */
d764b54e 4492
95543e92
KW
4493 l = swash_scan_list_line(l, lend, &start, &end, &val,
4494 cBOOL(octets), typestr);
d764b54e 4495
1784d2f9
KW
4496 if (l > lend) {
4497 break;
4498 }
4499
4500 invlist = _add_range_to_invlist(invlist, start, end);
4501 }
31aa6e0b 4502 }
d764b54e 4503
77f9f126
KW
4504 /* Invert if the data says it should be */
4505 if (invert_it_svp && SvUV(*invert_it_svp)) {
25151030 4506 _invlist_invert(invlist);
77f9f126
KW
4507 }
4508
b0e3252e 4509 /* This code is copied from swatch_get()
d73c39c5
KW
4510 * read $swash->{EXTRAS} */
4511 x = (U8*)SvPV(*extssvp, xcur);
4512 xend = x + xcur;
4513 while (x < xend) {
4514 STRLEN namelen;
4515 U8 *namestr;
4516 SV** othersvp;
4517 HV* otherhv;
4518 STRLEN otherbits;
4519 SV **otherbitssvp, *other;
4520 U8 *nl;
4521
4522 const U8 opc = *x++;
4523 if (opc == '\n')
4524 continue;
4525
4526 nl = (U8*)memchr(x, '\n', xend - x);
4527
4528 if (opc != '-' && opc != '+' && opc != '!' && opc != '&') {
4529 if (nl) {
4530 x = nl + 1; /* 1 is length of "\n" */
4531 continue;
4532 }
4533 else {
4534 x = xend; /* to EXTRAS' end at which \n is not found */
4535 break;
4536 }
4537 }
4538
4539 namestr = x;
4540 if (nl) {
4541 namelen = nl - namestr;
4542 x = nl + 1;
4543 }
4544 else {
4545 namelen = xend - namestr;
4546 x = xend;
4547 }
4548
4549 othersvp = hv_fetch(hv, (char *)namestr, namelen, FALSE);
4550 otherhv = MUTABLE_HV(SvRV(*othersvp));
4551 otherbitssvp = hv_fetchs(otherhv, "BITS", FALSE);
4552 otherbits = (STRLEN)SvUV(*otherbitssvp);
4553
4554 if (bits != otherbits || bits != 1) {
5637ef5b
NC
4555 Perl_croak(aTHX_ "panic: _swash_to_invlist only operates on boolean "
4556 "properties, bits=%"UVuf", otherbits=%"UVuf,
4557 (UV)bits, (UV)otherbits);
d73c39c5
KW
4558 }
4559
4560 /* The "other" swatch must be destroyed after. */
4561 other = _swash_to_invlist((SV *)*othersvp);
4562
b0e3252e 4563 /* End of code copied from swatch_get() */
d73c39c5
KW
4564 switch (opc) {
4565 case '+':
4566 _invlist_union(invlist, other, &invlist);
4567 break;
4568 case '!':
6c46377d 4569 _invlist_union_maybe_complement_2nd(invlist, other, TRUE, &invlist);
d73c39c5
KW
4570 break;
4571 case '-':
4572 _invlist_subtract(invlist, other, &invlist);
4573 break;
4574 case '&':
4575 _invlist_intersection(invlist, other, &invlist);
4576 break;
4577 default:
4578 break;
4579 }
4580 sv_free(other); /* through with it! */
4581 }
4582
dbfdbd26 4583 SvREADONLY_on(invlist);
d764b54e
KW
4584 return invlist;
4585}
4586
3fdfee00
KW
4587SV*
4588Perl__get_swash_invlist(pTHX_ SV* const swash)
4589{
872dd7e0 4590 SV** ptr;
3fdfee00
KW
4591
4592 PERL_ARGS_ASSERT__GET_SWASH_INVLIST;
4593
87367d5f 4594 if (! SvROK(swash)) {
872dd7e0
KW
4595 return NULL;
4596 }
4597
87367d5f
KW
4598 /* If it really isn't a hash, it isn't really swash; must be an inversion
4599 * list */
4600 if (SvTYPE(SvRV(swash)) != SVt_PVHV) {
4601 return SvRV(swash);
4602 }
872dd7e0 4603
87367d5f 4604 ptr = hv_fetchs(MUTABLE_HV(SvRV(swash)), "V", FALSE);
3fdfee00
KW
4605 if (! ptr) {
4606 return NULL;
4607 }
4608
4609 return *ptr;
4610}
4611
0876b9a0 4612bool
5aaab254 4613Perl_check_utf8_print(pTHX_ const U8* s, const STRLEN len)
0876b9a0
KW
4614{
4615 /* May change: warns if surrogates, non-character code points, or
af2af982
KW
4616 * non-Unicode code points are in s which has length len bytes. Returns
4617 * TRUE if none found; FALSE otherwise. The only other validity check is
760c7c2f
KW
4618 * to make sure that this won't exceed the string's length.
4619 *
4620 * Code points above the platform's C<IV_MAX> will raise a deprecation
4621 * warning, unless those are turned off. */
0876b9a0
KW
4622
4623 const U8* const e = s + len;
4624 bool ok = TRUE;
4625
4626 PERL_ARGS_ASSERT_CHECK_UTF8_PRINT;
4627
4628 while (s < e) {
4629 if (UTF8SKIP(s) > len) {
4630 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
4631 "%s in %s", unees, PL_op ? OP_DESC(PL_op) : "print");
4632 return FALSE;
4633 }
ac6f1fbe 4634 if (UNLIKELY(isUTF8_POSSIBLY_PROBLEMATIC(*s))) {
0876b9a0 4635 STRLEN char_len;
f2bf18cc 4636 if (UNLIKELY(UTF8_IS_SUPER(s, e))) {
760c7c2f
KW
4637 if ( ckWARN_d(WARN_NON_UNICODE)
4638 || ( ckWARN_d(WARN_DEPRECATED)
83dc0f42
KW
4639#ifndef UV_IS_QUAD
4640 && UNLIKELY(is_utf8_cp_above_31_bits(s, e))
4641#else /* Below is 64-bit words */
760c7c2f
KW
4642 /* 2**63 and up meet these conditions provided we have
4643 * a 64-bit word. */
4644# ifdef EBCDIC
83dc0f42
KW
4645 && *s == 0xFE
4646 && NATIVE_UTF8_TO_I8(s[1]) >= 0xA8
760c7c2f 4647# else
83dc0f42
KW
4648 && *s == 0xFF
4649 /* s[1] being above 0x80 overflows */
760c7c2f
KW
4650 && s[2] >= 0x88
4651# endif
760c7c2f
KW
4652#endif
4653 )) {
15ca5930
KW
4654 /* A side effect of this function will be to warn */
4655 (void) utf8n_to_uvchr(s, e - s, &char_len, UTF8_WARN_SUPER);
7ee537e6
KW
4656 ok = FALSE;
4657 }
0876b9a0 4658 }
f2bf18cc 4659 else if (UNLIKELY(UTF8_IS_SURROGATE(s, e))) {
8457b38f 4660 if (ckWARN_d(WARN_SURROGATE)) {
15ca5930
KW
4661 /* This has a different warning than the one the called
4662 * function would output, so can't just call it, unlike we
4663 * do for the non-chars and above-unicodes */
4b88fb76 4664 UV uv = utf8_to_uvchr_buf(s, e, &char_len);
8457b38f
KW
4665 Perl_warner(aTHX_ packWARN(WARN_SURROGATE),
4666 "Unicode surrogate U+%04"UVXf" is illegal in UTF-8", uv);
4667 ok = FALSE;
4668 }
0876b9a0 4669 }
f2bf18cc 4670 else if (UNLIKELY(UTF8_IS_NONCHAR(s, e)) && (ckWARN_d(WARN_NONCHAR))) {
15ca5930
KW
4671 /* A side effect of this function will be to warn */
4672 (void) utf8n_to_uvchr(s, e - s, &char_len, UTF8_WARN_NONCHAR);
0876b9a0
KW
4673 ok = FALSE;
4674 }
4675 }
4676 s += UTF8SKIP(s);
4677 }
4678
4679 return ok;
4680}
4681
0f830e0b 4682/*
87cea99e 4683=for apidoc pv_uni_display
d2cc3551 4684
a1433954
KW
4685Build to the scalar C<dsv> a displayable version of the string C<spv>,
4686length C<len>, the displayable version being at most C<pvlim> bytes long
796b6530 4687(if longer, the rest is truncated and C<"..."> will be appended).
0a2ef054 4688
796b6530
KW
4689The C<flags> argument can have C<UNI_DISPLAY_ISPRINT> set to display
4690C<isPRINT()>able characters as themselves, C<UNI_DISPLAY_BACKSLASH>
4691to display the C<\\[nrfta\\]> as the backslashed versions (like C<"\n">)
4692(C<UNI_DISPLAY_BACKSLASH> is preferred over C<UNI_DISPLAY_ISPRINT> for C<"\\">).
4693C<UNI_DISPLAY_QQ> (and its alias C<UNI_DISPLAY_REGEX>) have both
4694C<UNI_DISPLAY_BACKSLASH> and C<UNI_DISPLAY_ISPRINT> turned on.
0a2ef054 4695
a1433954 4696The pointer to the PV of the C<dsv> is returned.
d2cc3551 4697
119bc988
KW
4698See also L</sv_uni_display>.
4699
d2cc3551 4700=cut */
e6b2e755 4701char *
e1ec3a88 4702Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
e6b2e755
JH
4703{
4704 int truncated = 0;
e1ec3a88 4705 const char *s, *e;
e6b2e755 4706
7918f24d
NC
4707 PERL_ARGS_ASSERT_PV_UNI_DISPLAY;
4708
9e2aa2e7 4709 SvPVCLEAR(dsv);
7fddd944 4710 SvUTF8_off(dsv);
e1ec3a88 4711 for (s = (const char *)spv, e = s + len; s < e; s += UTF8SKIP(s)) {
e6b2e755 4712 UV u;
a49f32c6
NC
4713 /* This serves double duty as a flag and a character to print after
4714 a \ when flags & UNI_DISPLAY_BACKSLASH is true.
4715 */
4716 char ok = 0;
c728cb41 4717
e6b2e755
JH
4718 if (pvlim && SvCUR(dsv) >= pvlim) {
4719 truncated++;
4720 break;
4721 }
4b88fb76 4722 u = utf8_to_uvchr_buf((U8*)s, (U8*)e, 0);
c728cb41 4723 if (u < 256) {
a3b680e6 4724 const unsigned char c = (unsigned char)u & 0xFF;
0bd48802 4725 if (flags & UNI_DISPLAY_BACKSLASH) {
a49f32c6 4726 switch (c) {
c728cb41 4727 case '\n':
a49f32c6 4728 ok = 'n'; break;
c728cb41 4729 case '\r':
a49f32c6 4730 ok = 'r'; break;
c728cb41 4731 case '\t':
a49f32c6 4732 ok = 't'; break;
c728cb41 4733 case '\f':
a49f32c6 4734 ok = 'f'; break;
c728cb41 4735 case '\a':
a49f32c6 4736 ok = 'a'; break;
c728cb41 4737 case '\\':
a49f32c6 4738 ok = '\\'; break;
c728cb41
JH
4739 default: break;
4740 }
a49f32c6 4741 if (ok) {
88c9ea1e 4742 const char string = ok;
76f68e9b 4743 sv_catpvs(dsv, "\\");
5e7aa789 4744 sv_catpvn(dsv, &string, 1);
a49f32c6 4745 }
c728cb41 4746 }
00e86452 4747 /* isPRINT() is the locale-blind version. */
a49f32c6 4748 if (!ok && (flags & UNI_DISPLAY_ISPRINT) && isPRINT(c)) {
88c9ea1e 4749 const char string = c;
5e7aa789 4750 sv_catpvn(dsv, &string, 1);
a49f32c6 4751 ok = 1;
0a2ef054 4752 }
c728cb41
JH
4753 }
4754 if (!ok)
9e55ce06 4755 Perl_sv_catpvf(aTHX_ dsv, "\\x{%"UVxf"}", u);
e6b2e755
JH
4756 }
4757 if (truncated)
396482e1 4758 sv_catpvs(dsv, "...");
48ef279e 4759
e6b2e755
JH
4760 return SvPVX(dsv);
4761}
2b9d42f0 4762
d2cc3551 4763/*
87cea99e 4764=for apidoc sv_uni_display
d2cc3551 4765
a1433954
KW
4766Build to the scalar C<dsv> a displayable version of the scalar C<sv>,
4767the displayable version being at most C<pvlim> bytes long
d2cc3551 4768(if longer, the rest is truncated and "..." will be appended).
0a2ef054 4769
a1433954 4770The C<flags> argument is as in L</pv_uni_display>().
0a2ef054 4771
a1433954 4772The pointer to the PV of the C<dsv> is returned.
d2cc3551 4773
d4c19fe8
AL
4774=cut
4775*/
e6b2e755
JH
4776char *
4777Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
4778{
8cdde9f8
NC
4779 const char * const ptr =
4780 isREGEXP(ssv) ? RX_WRAPPED((REGEXP*)ssv) : SvPVX_const(ssv);
4781
7918f24d
NC
4782 PERL_ARGS_ASSERT_SV_UNI_DISPLAY;
4783
8cdde9f8 4784 return Perl_pv_uni_display(aTHX_ dsv, (const U8*)ptr,
cfd0369c 4785 SvCUR(ssv), pvlim, flags);
701a277b
JH
4786}
4787
d2cc3551 4788/*
e6226b18 4789=for apidoc foldEQ_utf8
d2cc3551 4790
a1433954 4791Returns true if the leading portions of the strings C<s1> and C<s2> (either or both
e6226b18 4792of which may be in UTF-8) are the same case-insensitively; false otherwise.
d51c1b21 4793How far into the strings to compare is determined by other input parameters.
8b35872c 4794
a1433954
KW
4795If C<u1> is true, the string C<s1> is assumed to be in UTF-8-encoded Unicode;
4796otherwise it is assumed to be in native 8-bit encoding. Correspondingly for C<u2>
4797with respect to C<s2>.
8b35872c 4798
a1433954
KW
4799If the byte length C<l1> is non-zero, it says how far into C<s1> to check for fold
4800equality. In other words, C<s1>+C<l1> will be used as a goal to reach. The
8b35872c 4801scan will not be considered to be a match unless the goal is reached, and
a1433954
KW
4802scanning won't continue past that goal. Correspondingly for C<l2> with respect to
4803C<s2>.
4804
796b6530 4805If C<pe1> is non-C<NULL> and the pointer it points to is not C<NULL>, that pointer is
03bb5c85
KW
4806considered an end pointer to the position 1 byte past the maximum point
4807in C<s1> beyond which scanning will not continue under any circumstances.
4808(This routine assumes that UTF-8 encoded input strings are not malformed;
4809malformed input can cause it to read past C<pe1>).
4810This means that if both C<l1> and C<pe1> are specified, and C<pe1>
a1433954
KW
4811is less than C<s1>+C<l1>, the match will never be successful because it can
4812never
d51c1b21 4813get as far as its goal (and in fact is asserted against). Correspondingly for
a1433954 4814C<pe2> with respect to C<s2>.
8b35872c 4815
a1433954
KW
4816At least one of C<s1> and C<s2> must have a goal (at least one of C<l1> and
4817C<l2> must be non-zero), and if both do, both have to be
8b35872c
KW
4818reached for a successful match. Also, if the fold of a character is multiple
4819characters, all of them must be matched (see tr21 reference below for
4820'folding').
4821
796b6530 4822Upon a successful match, if C<pe1> is non-C<NULL>,
a1433954
KW
4823it will be set to point to the beginning of the I<next> character of C<s1>
4824beyond what was matched. Correspondingly for C<pe2> and C<s2>.
d2cc3551
JH
4825
4826For case-insensitiveness, the "casefolding" of Unicode is used
4827instead of upper/lowercasing both the characters, see
a1433954 4828L<http://www.unicode.org/unicode/reports/tr21/> (Case Mappings).
d2cc3551
JH
4829
4830=cut */
a33c29bc
KW
4831
4832/* A flags parameter has been added which may change, and hence isn't
4833 * externally documented. Currently it is:
4834 * 0 for as-documented above
4835 * FOLDEQ_UTF8_NOMIX_ASCII meaning that if a non-ASCII character folds to an
4836 ASCII one, to not match
31f05a37
KW
4837 * FOLDEQ_LOCALE is set iff the rules from the current underlying
4838 * locale are to be used.
4839 * FOLDEQ_S1_ALREADY_FOLDED s1 has already been folded before calling this
aa8ebe62
KW
4840 * routine. This allows that step to be skipped.
4841 * Currently, this requires s1 to be encoded as UTF-8
4842 * (u1 must be true), which is asserted for.
d635b710
KW
4843 * FOLDEQ_S1_FOLDS_SANE With either NOMIX_ASCII or LOCALE, no folds may
4844 * cross certain boundaries. Hence, the caller should
4845 * let this function do the folding instead of
4846 * pre-folding. This code contains an assertion to
4847 * that effect. However, if the caller knows what
4848 * it's doing, it can pass this flag to indicate that,
4849 * and the assertion is skipped.
31f05a37 4850 * FOLDEQ_S2_ALREADY_FOLDED Similarly.
d635b710 4851 * FOLDEQ_S2_FOLDS_SANE
a33c29bc 4852 */
701a277b 4853I32
5aaab254 4854Perl_foldEQ_utf8_flags(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2, U32 flags)
332ddc25 4855{
eb578fdb
KW
4856 const U8 *p1 = (const U8*)s1; /* Point to current char */
4857 const U8 *p2 = (const U8*)s2;
4858 const U8 *g1 = NULL; /* goal for s1 */
4859 const U8 *g2 = NULL;
4860 const U8 *e1 = NULL; /* Don't scan s1 past this */
4861 U8 *f1 = NULL; /* Point to current folded */
4862 const U8 *e2 = NULL;
4863 U8 *f2 = NULL;
48ef279e 4864 STRLEN n1 = 0, n2 = 0; /* Number of bytes in current char */
8b35872c
KW
4865 U8 foldbuf1[UTF8_MAXBYTES_CASE+1];
4866 U8 foldbuf2[UTF8_MAXBYTES_CASE+1];
1d39b2cd 4867 U8 flags_for_folder = FOLD_FLAGS_FULL;
8b35872c 4868
eda9cac1 4869 PERL_ARGS_ASSERT_FOLDEQ_UTF8_FLAGS;
8b35872c 4870
cea315b6 4871 assert( ! ((flags & (FOLDEQ_UTF8_NOMIX_ASCII | FOLDEQ_LOCALE))
d635b710
KW
4872 && (((flags & FOLDEQ_S1_ALREADY_FOLDED)
4873 && !(flags & FOLDEQ_S1_FOLDS_SANE))
4874 || ((flags & FOLDEQ_S2_ALREADY_FOLDED)
4875 && !(flags & FOLDEQ_S2_FOLDS_SANE)))));
b08f1bd5
KW
4876 /* The algorithm is to trial the folds without regard to the flags on
4877 * the first line of the above assert(), and then see if the result
4878 * violates them. This means that the inputs can't be pre-folded to a
4879 * violating result, hence the assert. This could be changed, with the
4880 * addition of extra tests here for the already-folded case, which would
4881 * slow it down. That cost is more than any possible gain for when these
4882 * flags are specified, as the flags indicate /il or /iaa matching which
4883 * is less common than /iu, and I (khw) also believe that real-world /il
4884 * and /iaa matches are most likely to involve code points 0-255, and this
4885 * function only under rare conditions gets called for 0-255. */
18f762c3 4886
1d39b2cd
KW
4887 if (flags & FOLDEQ_LOCALE) {
4888 if (IN_UTF8_CTYPE_LOCALE) {
4889 flags &= ~FOLDEQ_LOCALE;
4890 }
4891 else {
4892 flags_for_folder |= FOLD_FLAGS_LOCALE;
4893 }
31f05a37
KW
4894 }
4895
8b35872c 4896 if (pe1) {
48ef279e 4897 e1 = *(U8**)pe1;
8b35872c
KW
4898 }
4899
4900 if (l1) {
48ef279e 4901 g1 = (const U8*)s1 + l1;
8b35872c
KW
4902 }
4903
4904 if (pe2) {
48ef279e 4905 e2 = *(U8**)pe2;
8b35872c
KW
4906 }
4907
4908 if (l2) {
48ef279e 4909 g2 = (const U8*)s2 + l2;
8b35872c
KW
4910 }
4911
4912 /* Must have at least one goal */
4913 assert(g1 || g2);
4914
4915 if (g1) {
4916
48ef279e
KW
4917 /* Will never match if goal is out-of-bounds */
4918 assert(! e1 || e1 >= g1);
8b35872c 4919
48ef279e
KW
4920 /* Here, there isn't an end pointer, or it is beyond the goal. We
4921 * only go as far as the goal */
4922 e1 = g1;
8b35872c 4923 }
313b38e5
NC
4924 else {
4925 assert(e1); /* Must have an end for looking at s1 */
4926 }
8b35872c
KW
4927
4928 /* Same for goal for s2 */
4929 if (g2) {
48ef279e
KW
4930 assert(! e2 || e2 >= g2);
4931 e2 = g2;
8b35872c 4932 }
313b38e5
NC
4933 else {
4934 assert(e2);
4935 }
8b35872c 4936
18f762c3
KW
4937 /* If both operands are already folded, we could just do a memEQ on the
4938 * whole strings at once, but it would be better if the caller realized
4939 * this and didn't even call us */
4940
8b35872c
KW
4941 /* Look through both strings, a character at a time */
4942 while (p1 < e1 && p2 < e2) {
4943
d51c1b21 4944 /* If at the beginning of a new character in s1, get its fold to use
1d39b2cd 4945 * and the length of the fold. */
48ef279e 4946 if (n1 == 0) {
18f762c3
KW
4947 if (flags & FOLDEQ_S1_ALREADY_FOLDED) {
4948 f1 = (U8 *) p1;
aa8ebe62 4949 assert(u1);
18f762c3 4950 n1 = UTF8SKIP(f1);
18f762c3
KW
4951 }
4952 else {
1d39b2cd
KW
4953 if (isASCII(*p1) && ! (flags & FOLDEQ_LOCALE)) {
4954
4955 /* We have to forbid mixing ASCII with non-ASCII if the
4956 * flags so indicate. And, we can short circuit having to
4957 * call the general functions for this common ASCII case,
4958 * all of whose non-locale folds are also ASCII, and hence
4959 * UTF-8 invariants, so the UTF8ness of the strings is not
4960 * relevant. */
4961 if ((flags & FOLDEQ_UTF8_NOMIX_ASCII) && ! isASCII(*p2)) {
4962 return 0;
4963 }
4964 n1 = 1;
4965 *foldbuf1 = toFOLD(*p1);
4966 }
4967 else if (u1) {
4968 _to_utf8_fold_flags(p1, foldbuf1, &n1, flags_for_folder);
4969 }
4a4088c4 4970 else { /* Not UTF-8, get UTF-8 fold */
1d39b2cd
KW
4971 _to_uni_fold_flags(*p1, foldbuf1, &n1, flags_for_folder);
4972 }
4973 f1 = foldbuf1;
4974 }
48ef279e 4975 }
8b35872c 4976
48ef279e 4977 if (n2 == 0) { /* Same for s2 */
18f762c3
KW
4978 if (flags & FOLDEQ_S2_ALREADY_FOLDED) {
4979 f2 = (U8 *) p2;
aa8ebe62 4980 assert(u2);
18f762c3
KW
4981 n2 = UTF8SKIP(f2);
4982 }
4983 else {
1d39b2cd
KW
4984 if (isASCII(*p2) && ! (flags & FOLDEQ_LOCALE)) {
4985 if ((flags & FOLDEQ_UTF8_NOMIX_ASCII) && ! isASCII(*p1)) {
4986 return 0;
4987 }
4988 n2 = 1;
4989 *foldbuf2 = toFOLD(*p2);
4990 }
4991 else if (u2) {
4992 _to_utf8_fold_flags(p2, foldbuf2, &n2, flags_for_folder);
4993 }
4994 else {
4995 _to_uni_fold_flags(*p2, foldbuf2, &n2, flags_for_folder);
4996 }
4997 f2 = foldbuf2;
18f762c3 4998 }
48ef279e 4999 }
8b35872c 5000
5001101e 5001 /* Here f1 and f2 point to the beginning of the strings to compare.
227968da 5002 * These strings are the folds of the next character from each input
4a4088c4 5003 * string, stored in UTF-8. */
5e64d0fa 5004
48ef279e
KW
5005 /* While there is more to look for in both folds, see if they
5006 * continue to match */
5007 while (n1 && n2) {
5008 U8 fold_length = UTF8SKIP(f1);
5009 if (fold_length != UTF8SKIP(f2)
5010 || (fold_length == 1 && *f1 != *f2) /* Short circuit memNE
5011 function call for single
a6d5f321 5012 byte */
48ef279e
KW
5013 || memNE((char*)f1, (char*)f2, fold_length))
5014 {
e6226b18 5015 return 0; /* mismatch */
48ef279e
KW
5016 }
5017
5018 /* Here, they matched, advance past them */
5019 n1 -= fold_length;
5020 f1 += fold_length;
5021 n2 -= fold_length;
5022 f2 += fold_length;
5023 }
8b35872c 5024
48ef279e
KW
5025 /* When reach the end of any fold, advance the input past it */
5026 if (n1 == 0) {
5027 p1 += u1 ? UTF8SKIP(p1) : 1;
5028 }
5029 if (n2 == 0) {
5030 p2 += u2 ? UTF8SKIP(p2) : 1;
5031 }
8b35872c
KW
5032 } /* End of loop through both strings */
5033
5034 /* A match is defined by each scan that specified an explicit length
5035 * reaching its final goal, and the other not having matched a partial
5036 * character (which can happen when the fold of a character is more than one
5037 * character). */
5038 if (! ((g1 == 0 || p1 == g1) && (g2 == 0 || p2 == g2)) || n1 || n2) {
e6226b18 5039 return 0;
8b35872c
KW
5040 }
5041
5042 /* Successful match. Set output pointers */
5043 if (pe1) {
48ef279e 5044 *pe1 = (char*)p1;
8b35872c
KW
5045 }
5046 if (pe2) {
48ef279e 5047 *pe2 = (char*)p2;
8b35872c 5048 }
e6226b18 5049 return 1;
e6b2e755 5050}
701a277b 5051
f2645549 5052/* XXX The next two functions should likely be moved to mathoms.c once all
37e7596b
KW
5053 * occurrences of them are removed from the core; some cpan-upstream modules
5054 * still use them */
5055
5056U8 *
5057Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
5058{
5059 PERL_ARGS_ASSERT_UVUNI_TO_UTF8;
5060
5061 return Perl_uvoffuni_to_utf8_flags(aTHX_ d, uv, 0);
5062}
5063
e505af10
KW
5064/*
5065=for apidoc utf8n_to_uvuni
5066
5067Instead use L</utf8_to_uvchr_buf>, or rarely, L</utf8n_to_uvchr>.
5068
5069This function was useful for code that wanted to handle both EBCDIC and
5070ASCII platforms with Unicode properties, but starting in Perl v5.20, the
5071distinctions between the platforms have mostly been made invisible to most
5072code, so this function is quite unlikely to be what you want. If you do need
5073this precise functionality, use instead
5074C<L<NATIVE_TO_UNI(utf8_to_uvchr_buf(...))|/utf8_to_uvchr_buf>>
5075or C<L<NATIVE_TO_UNI(utf8n_to_uvchr(...))|/utf8n_to_uvchr>>.
5076
5077=cut
5078*/
5079
37e7596b
KW
5080UV
5081Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
5082{
5083 PERL_ARGS_ASSERT_UTF8N_TO_UVUNI;
5084
5085 return NATIVE_TO_UNI(utf8n_to_uvchr(s, curlen, retlen, flags));
5086}
5087
5088/*
5089=for apidoc uvuni_to_utf8_flags
5090
5091Instead you almost certainly want to use L</uvchr_to_utf8> or
efa9cd84 5092L</uvchr_to_utf8_flags>.
37e7596b
KW
5093
5094This function is a deprecated synonym for L</uvoffuni_to_utf8_flags>,
5095which itself, while not deprecated, should be used only in isolated
5096circumstances. These functions were useful for code that wanted to handle
5097both EBCDIC and ASCII platforms with Unicode properties, but starting in Perl
5098v5.20, the distinctions between the platforms have mostly been made invisible
5099to most code, so this function is quite unlikely to be what you want.
5100
5101=cut
5102*/
5103
5104U8 *
5105Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
5106{
5107 PERL_ARGS_ASSERT_UVUNI_TO_UTF8_FLAGS;
5108
5109 return uvoffuni_to_utf8_flags(d, uv, flags);
5110}
5111
5112/*
14d04a33 5113 * ex: set ts=8 sts=4 sw=4 et:
37442d52 5114 */