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