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