This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
5fca6f72489feb2183e94b83ae0a5043fc10f09b
[perl5.git] / utf8.c
1 /*    utf8.c
2  *
3  *    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4  *    by Larry Wall and others
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 /*
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  *
16  *     [p.603 of _The Lord of the Rings_, IV/I: "The Taming of Sméagol"]
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,
20  *  as is the custom in the West, if you wish to be answered?'
21  *                           --Gandalf, addressing Théoden's door wardens
22  *
23  *     [p.508 of _The Lord of the Rings_, III/vi: "The King of the Golden Hall"]
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.
27  *
28  *     [p.512 of _The Lord of the Rings_, III/vi: "The King of the Golden Hall"]
29  */
30
31 #include "EXTERN.h"
32 #define PERL_IN_UTF8_C
33 #include "perl.h"
34 #include "invlist_inline.h"
35
36 static const char malformed_text[] = "Malformed UTF-8 character";
37 static const char unees[] =
38                         "Malformed UTF-8 character (unexpected end of string)";
39 static const char cp_above_legal_max[] =
40  "Use of code point 0x%" UVXf " is deprecated; the permissible max is 0x%" UVXf;
41
42 #define MAX_NON_DEPRECATED_CP ((UV) (IV_MAX))
43
44 /*
45 =head1 Unicode Support
46 These are various utility functions for manipulating UTF8-encoded
47 strings.  For the uninitiated, this is a method of representing arbitrary
48 Unicode characters as a variable number of bytes, in such a way that
49 characters in the ASCII range are unmodified, and a zero byte never appears
50 within non-zero characters.
51
52 =cut
53 */
54
55 void
56 Perl__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;
81     SAVESPTR(PL_dowarn);
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
103 /*
104 =for apidoc uvoffuni_to_utf8_flags
105
106 THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES.
107 Instead, B<Almost all code should use L</uvchr_to_utf8> or
108 L</uvchr_to_utf8_flags>>.
109
110 This 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
112 not be using the native code point.
113
114 For details, see the description for L</uvchr_to_utf8_flags>.
115
116 =cut
117 */
118
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),        \
123                                 "UTF-16 surrogate U+%04" UVXf, uv); \
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),          \
134                  "Unicode non-character U+%04" UVXf " is not "      \
135                  "recommended for open interchange", uv);           \
136         }                                                           \
137         if (flags & UNICODE_DISALLOW_NONCHAR) {                     \
138             return NULL;                                            \
139         }                                                           \
140     } STMT_END;
141
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
148 U8 *
149 Perl_uvoffuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
150 {
151     PERL_ARGS_ASSERT_UVOFFUNI_TO_UTF8_FLAGS;
152
153     if (OFFUNI_IS_INVARIANT(uv)) {
154         *d++ = LATIN1_TO_NATIVE(uv);
155         return d;
156     }
157
158     if (uv <= MAX_UTF8_TWO_BYTE) {
159         *d++ = I8_TO_NATIVE_UTF8(( uv >> SHIFT) | UTF_START_MARK(2));
160         *d++ = I8_TO_NATIVE_UTF8(( uv           & MASK) |   MARK);
161         return d;
162     }
163
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             {
183                 HANDLE_UNICODE_NONCHAR(uv, flags);
184             }
185             else if (UNLIKELY(UNICODE_IS_SURROGATE(uv))) {
186                 HANDLE_UNICODE_SURROGATE(uv, flags);
187             }
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))) {
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))
215               ? "Code point 0x%" UVXf " is not Unicode, and not portable"
216               : "Code point 0x%" UVXf " is not Unicode, may not be portable",
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     }
226     else if (UNLIKELY(UNICODE_IS_END_PLANE_NONCHAR_GIVEN_NOT_SUPER(uv))) {
227         HANDLE_UNICODE_NONCHAR(uv, flags);
228     }
229
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);
247         }
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
263     {
264         STRLEN len  = OFFUNISKIP(uv);
265         U8 *p = d+len-1;
266         while (p > d) {
267             *p-- = I8_TO_NATIVE_UTF8((uv & UTF_CONTINUATION_MASK) | UTF_CONTINUATION_MARK);
268             uv >>= UTF_ACCUMULATION_SHIFT;
269         }
270         *p = I8_TO_NATIVE_UTF8((uv & UTF_START_MASK(len)) | UTF_START_MARK(len));
271         return d+len;
272     }
273 }
274
275 /*
276 =for apidoc uvchr_to_utf8
277
278 Adds the UTF-8 representation of the native code point C<uv> to the end
279 of the string C<d>; C<d> should have at least C<UVCHR_SKIP(uv)+1> (up to
280 C<UTF8_MAXBYTES+1>) free bytes available.  The return value is the pointer to
281 the byte after the end of the new character.  In other words,
282
283     d = uvchr_to_utf8(d, uv);
284
285 is the recommended wide native character-aware way of saying
286
287     *(d++) = uv;
288
289 This function accepts any UV as input, but very high code points (above
290 C<IV_MAX> on the platform)  will raise a deprecation warning.  This is
291 typically 0x7FFF_FFFF in a 32-bit word.
292
293 It is possible to forbid or warn on non-Unicode code points, or those that may
294 be problematic by using L</uvchr_to_utf8_flags>.
295
296 =cut
297 */
298
299 /* This is also a macro */
300 PERL_CALLCONV U8*       Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv);
301
302 U8 *
303 Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv)
304 {
305     return uvchr_to_utf8(d, uv);
306 }
307
308 /*
309 =for apidoc uvchr_to_utf8_flags
310
311 Adds the UTF-8 representation of the native code point C<uv> to the end
312 of the string C<d>; C<d> should have at least C<UVCHR_SKIP(uv)+1> (up to
313 C<UTF8_MAXBYTES+1>) free bytes available.  The return value is the pointer to
314 the byte after the end of the new character.  In other words,
315
316     d = uvchr_to_utf8_flags(d, uv, flags);
317
318 or, in most cases,
319
320     d = uvchr_to_utf8_flags(d, uv, 0);
321
322 This is the Unicode-aware way of saying
323
324     *(d++) = uv;
325
326 If C<flags> is 0, this function accepts any UV as input, but very high code
327 points (above C<IV_MAX> for the platform)  will raise a deprecation warning.
328 This is typically 0x7FFF_FFFF in a 32-bit word.
329
330 Specifying C<flags> can further restrict what is allowed and not warned on, as
331 follows:
332
333 If C<uv> is a Unicode surrogate code point and C<UNICODE_WARN_SURROGATE> is set,
334 the function will raise a warning, provided UTF8 warnings are enabled.  If
335 instead C<UNICODE_DISALLOW_SURROGATE> is set, the function will fail and return
336 NULL.  If both flags are set, the function will both warn and return NULL.
337
338 Similarly, the C<UNICODE_WARN_NONCHAR> and C<UNICODE_DISALLOW_NONCHAR> flags
339 affect how the function handles a Unicode non-character.
340
341 And likewise, the C<UNICODE_WARN_SUPER> and C<UNICODE_DISALLOW_SUPER> flags
342 affect the handling of code points that are above the Unicode maximum of
343 0x10FFFF.  Languages other than Perl may not be able to accept files that
344 contain these.
345
346 The flag C<UNICODE_WARN_ILLEGAL_INTERCHANGE> selects all three of
347 the above WARN flags; and C<UNICODE_DISALLOW_ILLEGAL_INTERCHANGE> selects all
348 three DISALLOW flags.  C<UNICODE_DISALLOW_ILLEGAL_INTERCHANGE> restricts the
349 allowed inputs to the strict UTF-8 traditionally defined by Unicode.
350 Similarly, C<UNICODE_WARN_ILLEGAL_C9_INTERCHANGE> and
351 C<UNICODE_DISALLOW_ILLEGAL_C9_INTERCHANGE> are shortcuts to select the
352 above-Unicode and surrogate flags, but not the non-character ones, as
353 defined in
354 L<Unicode Corrigendum #9|http://www.unicode.org/versions/corrigendum9.html>.
355 See L<perlunicode/Noncharacter code points>.
356
357 Code points above 0x7FFF_FFFF (2**31 - 1) were never specified in any standard,
358 so using them is more problematic than other above-Unicode code points.  Perl
359 invented an extension to UTF-8 to represent the ones above 2**36-1, so it is
360 likely that non-Perl languages will not be able to read files that contain
361 these that written by the perl interpreter; nor would Perl understand files
362 written by something that uses a different extension.  For these reasons, there
363 is a separate set of flags that can warn and/or disallow these extremely high
364 code points, even if other above-Unicode ones are accepted.  These are the
365 C<UNICODE_WARN_ABOVE_31_BIT> and C<UNICODE_DISALLOW_ABOVE_31_BIT> flags.  These
366 are entirely independent from the deprecation warning for code points above
367 C<IV_MAX>.  On 32-bit machines, it will eventually be forbidden to have any
368 code point that needs more than 31 bits to represent.  When that happens,
369 effectively the C<UNICODE_DISALLOW_ABOVE_31_BIT> flag will always be set on
370 32-bit machines.  (Of course C<UNICODE_DISALLOW_SUPER> will treat all
371 above-Unicode code points, including these, as malformations; and
372 C<UNICODE_WARN_SUPER> warns on these.)
373
374 On EBCDIC platforms starting in Perl v5.24, the Perl extension for representing
375 extremely high code points kicks in at 0x3FFF_FFFF (2**30 -1), which is lower
376 than on ASCII.  Prior to that, code points 2**31 and higher were simply
377 unrepresentable, and a different, incompatible method was used to represent
378 code points between 2**30 and 2**31 - 1.  The flags C<UNICODE_WARN_ABOVE_31_BIT>
379 and C<UNICODE_DISALLOW_ABOVE_31_BIT> have the same function as on ASCII
380 platforms, warning and disallowing 2**31 and higher.
381
382 =cut
383 */
384
385 /* This is also a macro */
386 PERL_CALLCONV U8*       Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags);
387
388 U8 *
389 Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
390 {
391     return uvchr_to_utf8_flags(d, uv, flags);
392 }
393
394 PERL_STATIC_INLINE bool
395 S_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
434     /* [0] is start byte  [1] [2] [3] [4] [5] [6] [7] */
435     const U8 prefix[] = "\x41\x41\x41\x41\x41\x41\x42";
436     const STRLEN prefix_len = sizeof(prefix) - 1;
437     const STRLEN len = e - s;
438     const STRLEN cmp_len = MIN(prefix_len, len - 1);
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
475 PERL_STATIC_INLINE bool
476 S_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
481 #if ! defined(UV_IS_QUAD) && ! defined(EBCDIC)
482
483     const STRLEN len = e - s;
484
485 #endif
486
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;
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
506     if (isFF_OVERLONG(s, len)) {
507         const U8 max_32_bit_overlong[] = "\xFF\x80\x80\x80\x80\x80\x80\x84";
508         return memGE(s, max_32_bit_overlong,
509                                 MIN(len, sizeof(max_32_bit_overlong) - 1));
510     }
511
512 #endif
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
534 PERL_STATIC_INLINE bool
535 S_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
591     /* Check for the FF overlong */
592     return isFF_OVERLONG(s, len);
593 }
594
595 PERL_STATIC_INLINE bool
596 S_isFF_OVERLONG(const U8 * const s, const STRLEN len)
597 {
598     PERL_ARGS_ASSERT_ISFF_OVERLONG;
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,
602      * utfebcdic.h. */
603
604     return    len >= sizeof(FF_OVERLONG_PREFIX) - 1
605            && UNLIKELY(memEQ(s, FF_OVERLONG_PREFIX,
606                                             sizeof(FF_OVERLONG_PREFIX) - 1));
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
615 STRLEN
616 Perl__is_utf8_char_helper(const U8 * const s, const U8 * e, const U32 flags)
617 {
618     STRLEN len;
619     const U8 *x;
620
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));
658
659     /* A variant char must begin with a start byte */
660     if (UNLIKELY(! UTF8_IS_START(*s))) {
661         return 0;
662     }
663
664     /* Examine a maximum of a single whole code point */
665     if (e - s > UTF8SKIP(s)) {
666         e = s + UTF8SKIP(s);
667     }
668
669     len = e - s;
670
671     if (flags && isUTF8_POSSIBLY_PROBLEMATIC(*s)) {
672         const U8 s0 = NATIVE_UTF8_TO_I8(s[0]);
673
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
689 #  define IS_UTF8_2_BYTE_SUPER(s0, s1)           ((s0) == 0xF9 && (s1) >= 0xA2)
690
691 #  define IS_UTF8_2_BYTE_SURROGATE(s0, s1)       ((s0) == 0xF1              \
692                                                        /* B6 and B7 */      \
693                                               && ((s1) & 0xFE ) == 0xB6)
694 #else
695 #  define FIRST_START_BYTE_THAT_IS_DEFINITELY_SUPER  0xF5
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)
698 #endif
699
700         if (  (flags & UTF8_DISALLOW_SUPER)
701             && UNLIKELY(s0 >= FIRST_START_BYTE_THAT_IS_DEFINITELY_SUPER))
702         {
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)
716                 &&  UNLIKELY(IS_UTF8_2_BYTE_SUPER(s0, s1)))
717             {
718                 return 0;       /* Above Unicode */
719             }
720
721             if (   (flags & UTF8_DISALLOW_SURROGATE)
722                 &&  UNLIKELY(IS_UTF8_2_BYTE_SURROGATE(s0, s1)))
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 */
736     for (x = s + 1; x < e; x++) {
737         if (UNLIKELY(! UTF8_IS_CONTINUATION(*x))) {
738             return 0;
739         }
740     }
741
742     /* Here is syntactically valid.  Next, make sure this isn't the start of an
743      * overlong. */
744     if (len > 1 && is_utf8_overlong_given_start_byte_ok(s, len)) {
745         return 0;
746     }
747
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;
752     }
753
754     return UTF8SKIP(s);
755 }
756
757 STATIC char *
758 S__byte_dump_string(pTHX_ const U8 * s, const STRLEN len)
759 {
760     /* Returns a mortalized C string that is a displayable copy of the 'len'
761      * bytes starting at 's', each in a \xXY format. */
762
763     const STRLEN output_len = 4 * len + 1;  /* 4 bytes per each input, plus a
764                                                trailing NUL */
765     const U8 * const e = s + len;
766     char * output;
767     char * d;
768
769     PERL_ARGS_ASSERT__BYTE_DUMP_STRING;
770
771     Newx(output, output_len, char);
772     SAVEFREEPV(output);
773
774     d = output;
775     for (; s < e; s++) {
776         const unsigned high_nibble = (*s & 0xF0) >> 4;
777         const unsigned low_nibble =  (*s & 0x0F);
778
779         *d++ = '\\';
780         *d++ = 'x';
781
782         if (high_nibble < 10) {
783             *d++ = high_nibble + '0';
784         }
785         else {
786             *d++ = high_nibble - 10 + 'a';
787         }
788
789         if (low_nibble < 10) {
790             *d++ = low_nibble + '0';
791         }
792         else {
793             *d++ = low_nibble - 10 + 'a';
794         }
795     }
796
797     *d = '\0';
798     return output;
799 }
800
801 PERL_STATIC_INLINE char *
802 S_unexpected_non_continuation_text(pTHX_ const U8 * const s,
803
804                                          /* How many bytes to print */
805                                          STRLEN print_len,
806
807                                          /* Which one is the non-continuation */
808                                          const STRLEN non_cont_byte_pos,
809
810                                          /* How many bytes should there be? */
811                                          const STRLEN expect_len)
812 {
813     /* Return the malformation warning text for an unexpected continuation
814      * byte. */
815
816     const char * const where = (non_cont_byte_pos == 1)
817                                ? "immediately"
818                                : Perl_form(aTHX_ "%d bytes",
819                                                  (int) non_cont_byte_pos);
820
821     PERL_ARGS_ASSERT_UNEXPECTED_NON_CONTINUATION_TEXT;
822
823     /* We don't need to pass this parameter, but since it has already been
824      * calculated, it's likely faster to pass it; verify under DEBUGGING */
825     assert(expect_len == UTF8SKIP(s));
826
827     return Perl_form(aTHX_ "%s: %s (unexpected non-continuation byte 0x%02x,"
828                            " %s after start byte 0x%02x; need %d bytes, got %d)",
829                            malformed_text,
830                            _byte_dump_string(s, print_len),
831                            *(s + non_cont_byte_pos),
832                            where,
833                            *s,
834                            (int) expect_len,
835                            (int) non_cont_byte_pos);
836 }
837
838 /*
839
840 =for apidoc utf8n_to_uvchr
841
842 THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES.
843 Most code should use L</utf8_to_uvchr_buf>() rather than call this directly.
844
845 Bottom level UTF-8 decode routine.
846 Returns the native code point value of the first character in the string C<s>,
847 which is assumed to be in UTF-8 (or UTF-EBCDIC) encoding, and no longer than
848 C<curlen> bytes; C<*retlen> (if C<retlen> isn't NULL) will be set to
849 the length, in bytes, of that character.
850
851 The value of C<flags> determines the behavior when C<s> does not point to a
852 well-formed UTF-8 character.  If C<flags> is 0, encountering a malformation
853 causes zero to be returned and C<*retlen> is set so that (S<C<s> + C<*retlen>>)
854 is the next possible position in C<s> that could begin a non-malformed
855 character.  Also, if UTF-8 warnings haven't been lexically disabled, a warning
856 is raised.  Some UTF-8 input sequences may contain multiple malformations.
857 This function tries to find every possible one in each call, so multiple
858 warnings can be raised for each sequence.
859
860 Various ALLOW flags can be set in C<flags> to allow (and not warn on)
861 individual types of malformations, such as the sequence being overlong (that
862 is, when there is a shorter sequence that can express the same code point;
863 overlong sequences are expressly forbidden in the UTF-8 standard due to
864 potential security issues).  Another malformation example is the first byte of
865 a character not being a legal first byte.  See F<utf8.h> for the list of such
866 flags.  Even if allowed, this function generally returns the Unicode
867 REPLACEMENT CHARACTER when it encounters a malformation.  There are flags in
868 F<utf8.h> to override this behavior for the overlong malformations, but don't
869 do that except for very specialized purposes.
870
871 The C<UTF8_CHECK_ONLY> flag overrides the behavior when a non-allowed (by other
872 flags) malformation is found.  If this flag is set, the routine assumes that
873 the caller will raise a warning, and this function will silently just set
874 C<retlen> to C<-1> (cast to C<STRLEN>) and return zero.
875
876 Note that this API requires disambiguation between successful decoding a C<NUL>
877 character, and an error return (unless the C<UTF8_CHECK_ONLY> flag is set), as
878 in both cases, 0 is returned, and, depending on the malformation, C<retlen> may
879 be set to 1.  To disambiguate, upon a zero return, see if the first byte of
880 C<s> is 0 as well.  If so, the input was a C<NUL>; if not, the input had an
881 error.  Or you can use C<L</utf8n_to_uvchr_error>>.
882
883 Certain code points are considered problematic.  These are Unicode surrogates,
884 Unicode non-characters, and code points above the Unicode maximum of 0x10FFFF.
885 By default these are considered regular code points, but certain situations
886 warrant special handling for them, which can be specified using the C<flags>
887 parameter.  If C<flags> contains C<UTF8_DISALLOW_ILLEGAL_INTERCHANGE>, all
888 three classes are treated as malformations and handled as such.  The flags
889 C<UTF8_DISALLOW_SURROGATE>, C<UTF8_DISALLOW_NONCHAR>, and
890 C<UTF8_DISALLOW_SUPER> (meaning above the legal Unicode maximum) can be set to
891 disallow these categories individually.  C<UTF8_DISALLOW_ILLEGAL_INTERCHANGE>
892 restricts the allowed inputs to the strict UTF-8 traditionally defined by
893 Unicode.  Use C<UTF8_DISALLOW_ILLEGAL_C9_INTERCHANGE> to use the strictness
894 definition given by
895 L<Unicode Corrigendum #9|http://www.unicode.org/versions/corrigendum9.html>.
896 The difference between traditional strictness and C9 strictness is that the
897 latter does not forbid non-character code points.  (They are still discouraged,
898 however.)  For more discussion see L<perlunicode/Noncharacter code points>.
899
900 The flags C<UTF8_WARN_ILLEGAL_INTERCHANGE>,
901 C<UTF8_WARN_ILLEGAL_C9_INTERCHANGE>, C<UTF8_WARN_SURROGATE>,
902 C<UTF8_WARN_NONCHAR>, and C<UTF8_WARN_SUPER> will cause warning messages to be
903 raised for their respective categories, but otherwise the code points are
904 considered valid (not malformations).  To get a category to both be treated as
905 a malformation and raise a warning, specify both the WARN and DISALLOW flags.
906 (But note that warnings are not raised if lexically disabled nor if
907 C<UTF8_CHECK_ONLY> is also specified.)
908
909 It is now deprecated to have very high code points (above C<IV_MAX> on the
910 platforms) and this function will raise a deprecation warning for these (unless
911 such warnings are turned off).  This value is typically 0x7FFF_FFFF (2**31 -1)
912 in a 32-bit word.
913
914 Code points above 0x7FFF_FFFF (2**31 - 1) were never specified in any standard,
915 so using them is more problematic than other above-Unicode code points.  Perl
916 invented an extension to UTF-8 to represent the ones above 2**36-1, so it is
917 likely that non-Perl languages will not be able to read files that contain
918 these; nor would Perl understand files
919 written by something that uses a different extension.  For these reasons, there
920 is a separate set of flags that can warn and/or disallow these extremely high
921 code points, even if other above-Unicode ones are accepted.  These are the
922 C<UTF8_WARN_ABOVE_31_BIT> and C<UTF8_DISALLOW_ABOVE_31_BIT> flags.  These
923 are entirely independent from the deprecation warning for code points above
924 C<IV_MAX>.  On 32-bit machines, it will eventually be forbidden to have any
925 code point that needs more than 31 bits to represent.  When that happens,
926 effectively the C<UTF8_DISALLOW_ABOVE_31_BIT> flag will always be set on
927 32-bit machines.  (Of course C<UTF8_DISALLOW_SUPER> will treat all
928 above-Unicode code points, including these, as malformations; and
929 C<UTF8_WARN_SUPER> warns on these.)
930
931 On EBCDIC platforms starting in Perl v5.24, the Perl extension for representing
932 extremely high code points kicks in at 0x3FFF_FFFF (2**30 -1), which is lower
933 than on ASCII.  Prior to that, code points 2**31 and higher were simply
934 unrepresentable, and a different, incompatible method was used to represent
935 code points between 2**30 and 2**31 - 1.  The flags C<UTF8_WARN_ABOVE_31_BIT>
936 and C<UTF8_DISALLOW_ABOVE_31_BIT> have the same function as on ASCII
937 platforms, warning and disallowing 2**31 and higher.
938
939 All other code points corresponding to Unicode characters, including private
940 use and those yet to be assigned, are never considered malformed and never
941 warn.
942
943 =cut
944
945 Also implemented as a macro in utf8.h
946 */
947
948 UV
949 Perl_utf8n_to_uvchr(pTHX_ const U8 *s,
950                           STRLEN curlen,
951                           STRLEN *retlen,
952                           const U32 flags)
953 {
954     PERL_ARGS_ASSERT_UTF8N_TO_UVCHR;
955
956     return utf8n_to_uvchr_error(s, curlen, retlen, flags, NULL);
957 }
958
959 /*
960
961 =for apidoc utf8n_to_uvchr_error
962
963 THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES.
964 Most code should use L</utf8_to_uvchr_buf>() rather than call this directly.
965
966 This function is for code that needs to know what the precise malformation(s)
967 are when an error is found.
968
969 It is like C<L</utf8n_to_uvchr>> but it takes an extra parameter placed after
970 all the others, C<errors>.  If this parameter is 0, this function behaves
971 identically to C<L</utf8n_to_uvchr>>.  Otherwise, C<errors> should be a pointer
972 to a C<U32> variable, which this function sets to indicate any errors found.
973 Upon return, if C<*errors> is 0, there were no errors found.  Otherwise,
974 C<*errors> is the bit-wise C<OR> of the bits described in the list below.  Some
975 of these bits will be set if a malformation is found, even if the input
976 C<flags> parameter indicates that the given malformation is allowed; those
977 exceptions are noted:
978
979 =over 4
980
981 =item C<UTF8_GOT_ABOVE_31_BIT>
982
983 The code point represented by the input UTF-8 sequence occupies more than 31
984 bits.
985 This bit is set only if the input C<flags> parameter contains either the
986 C<UTF8_DISALLOW_ABOVE_31_BIT> or the C<UTF8_WARN_ABOVE_31_BIT> flags.
987
988 =item C<UTF8_GOT_CONTINUATION>
989
990 The input sequence was malformed in that the first byte was a a UTF-8
991 continuation byte.
992
993 =item C<UTF8_GOT_EMPTY>
994
995 The input C<curlen> parameter was 0.
996
997 =item C<UTF8_GOT_LONG>
998
999 The input sequence was malformed in that there is some other sequence that
1000 evaluates to the same code point, but that sequence is shorter than this one.
1001
1002 =item C<UTF8_GOT_NONCHAR>
1003
1004 The code point represented by the input UTF-8 sequence is for a Unicode
1005 non-character code point.
1006 This bit is set only if the input C<flags> parameter contains either the
1007 C<UTF8_DISALLOW_NONCHAR> or the C<UTF8_WARN_NONCHAR> flags.
1008
1009 =item C<UTF8_GOT_NON_CONTINUATION>
1010
1011 The input sequence was malformed in that a non-continuation type byte was found
1012 in a position where only a continuation type one should be.
1013
1014 =item C<UTF8_GOT_OVERFLOW>
1015
1016 The input sequence was malformed in that it is for a code point that is not
1017 representable in the number of bits available in a UV on the current platform.
1018
1019 =item C<UTF8_GOT_SHORT>
1020
1021 The input sequence was malformed in that C<curlen> is smaller than required for
1022 a complete sequence.  In other words, the input is for a partial character
1023 sequence.
1024
1025 =item C<UTF8_GOT_SUPER>
1026
1027 The input sequence was malformed in that it is for a non-Unicode code point;
1028 that is, one above the legal Unicode maximum.
1029 This bit is set only if the input C<flags> parameter contains either the
1030 C<UTF8_DISALLOW_SUPER> or the C<UTF8_WARN_SUPER> flags.
1031
1032 =item C<UTF8_GOT_SURROGATE>
1033
1034 The input sequence was malformed in that it is for a -Unicode UTF-16 surrogate
1035 code point.
1036 This bit is set only if the input C<flags> parameter contains either the
1037 C<UTF8_DISALLOW_SURROGATE> or the C<UTF8_WARN_SURROGATE> flags.
1038
1039 =back
1040
1041 To do your own error handling, call this function with the C<UTF8_CHECK_ONLY>
1042 flag to suppress any warnings, and then examine the C<*errors> return.
1043
1044 =cut
1045 */
1046
1047 UV
1048 Perl_utf8n_to_uvchr_error(pTHX_ const U8 *s,
1049                                 STRLEN curlen,
1050                                 STRLEN *retlen,
1051                                 const U32 flags,
1052                                 U32 * errors)
1053 {
1054     const U8 * const s0 = s;
1055     U8 * send = NULL;           /* (initialized to silence compilers' wrong
1056                                    warning) */
1057     U32 possible_problems = 0;  /* A bit is set here for each potential problem
1058                                    found as we go along */
1059     UV uv = *s;
1060     STRLEN expectlen   = 0;     /* How long should this sequence be?
1061                                    (initialized to silence compilers' wrong
1062                                    warning) */
1063     STRLEN avail_len   = 0;     /* When input is too short, gives what that is */
1064     U32 discard_errors = 0;     /* Used to save branches when 'errors' is NULL;
1065                                    this gets set and discarded */
1066
1067     /* The below are used only if there is both an overlong malformation and a
1068      * too short one.  Otherwise the first two are set to 's0' and 'send', and
1069      * the third not used at all */
1070     U8 * adjusted_s0 = (U8 *) s0;
1071     U8 * adjusted_send = NULL;  /* (Initialized to silence compilers' wrong
1072                                    warning) */
1073     UV uv_so_far = 0;   /* (Initialized to silence compilers' wrong warning) */
1074
1075     PERL_ARGS_ASSERT_UTF8N_TO_UVCHR_ERROR;
1076
1077     if (errors) {
1078         *errors = 0;
1079     }
1080     else {
1081         errors = &discard_errors;
1082     }
1083
1084     /* The order of malformation tests here is important.  We should consume as
1085      * few bytes as possible in order to not skip any valid character.  This is
1086      * required by the Unicode Standard (section 3.9 of Unicode 6.0); see also
1087      * http://unicode.org/reports/tr36 for more discussion as to why.  For
1088      * example, once we've done a UTF8SKIP, we can tell the expected number of
1089      * bytes, and could fail right off the bat if the input parameters indicate
1090      * that there are too few available.  But it could be that just that first
1091      * byte is garbled, and the intended character occupies fewer bytes.  If we
1092      * blindly assumed that the first byte is correct, and skipped based on
1093      * that number, we could skip over a valid input character.  So instead, we
1094      * always examine the sequence byte-by-byte.
1095      *
1096      * We also should not consume too few bytes, otherwise someone could inject
1097      * things.  For example, an input could be deliberately designed to
1098      * overflow, and if this code bailed out immediately upon discovering that,
1099      * returning to the caller C<*retlen> pointing to the very next byte (one
1100      * which is actually part of of the overflowing sequence), that could look
1101      * legitimate to the caller, which could discard the initial partial
1102      * sequence and process the rest, inappropriately.
1103      *
1104      * Some possible input sequences are malformed in more than one way.  This
1105      * function goes to lengths to try to find all of them.  This is necessary
1106      * for correctness, as the inputs may allow one malformation but not
1107      * another, and if we abandon searching for others after finding the
1108      * allowed one, we could allow in something that shouldn't have been.
1109      */
1110
1111     if (UNLIKELY(curlen == 0)) {
1112         possible_problems |= UTF8_GOT_EMPTY;
1113         curlen = 0;
1114         uv = UNICODE_REPLACEMENT;
1115         goto ready_to_handle_errors;
1116     }
1117
1118     expectlen = UTF8SKIP(s);
1119
1120     /* A well-formed UTF-8 character, as the vast majority of calls to this
1121      * function will be for, has this expected length.  For efficiency, set
1122      * things up here to return it.  It will be overriden only in those rare
1123      * cases where a malformation is found */
1124     if (retlen) {
1125         *retlen = expectlen;
1126     }
1127
1128     /* An invariant is trivially well-formed */
1129     if (UTF8_IS_INVARIANT(uv)) {
1130         return uv;
1131     }
1132
1133     /* A continuation character can't start a valid sequence */
1134     if (UNLIKELY(UTF8_IS_CONTINUATION(uv))) {
1135         possible_problems |= UTF8_GOT_CONTINUATION;
1136         curlen = 1;
1137         uv = UNICODE_REPLACEMENT;
1138         goto ready_to_handle_errors;
1139     }
1140
1141     /* Here is not a continuation byte, nor an invariant.  The only thing left
1142      * is a start byte (possibly for an overlong).  (We can't use UTF8_IS_START
1143      * because it excludes start bytes like \xC0 that always lead to
1144      * overlongs.) */
1145
1146     /* Convert to I8 on EBCDIC (no-op on ASCII), then remove the leading bits
1147      * that indicate the number of bytes in the character's whole UTF-8
1148      * sequence, leaving just the bits that are part of the value.  */
1149     uv = NATIVE_UTF8_TO_I8(uv) & UTF_START_MASK(expectlen);
1150
1151     /* Setup the loop end point, making sure to not look past the end of the
1152      * input string, and flag it as too short if the size isn't big enough. */
1153     send = (U8*) s0;
1154     if (UNLIKELY(curlen < expectlen)) {
1155         possible_problems |= UTF8_GOT_SHORT;
1156         avail_len = curlen;
1157         send += curlen;
1158     }
1159     else {
1160         send += expectlen;
1161     }
1162     adjusted_send = send;
1163
1164     /* Now, loop through the remaining bytes in the character's sequence,
1165      * accumulating each into the working value as we go. */
1166     for (s = s0 + 1; s < send; s++) {
1167         if (LIKELY(UTF8_IS_CONTINUATION(*s))) {
1168             uv = UTF8_ACCUMULATE(uv, *s);
1169             continue;
1170         }
1171
1172         /* Here, found a non-continuation before processing all expected bytes.
1173          * This byte indicates the beginning of a new character, so quit, even
1174          * if allowing this malformation. */
1175         possible_problems |= UTF8_GOT_NON_CONTINUATION;
1176         break;
1177     } /* End of loop through the character's bytes */
1178
1179     /* Save how many bytes were actually in the character */
1180     curlen = s - s0;
1181
1182     /* A convenience macro that matches either of the too-short conditions.  */
1183 #   define UTF8_GOT_TOO_SHORT (UTF8_GOT_SHORT|UTF8_GOT_NON_CONTINUATION)
1184
1185     if (UNLIKELY(possible_problems & UTF8_GOT_TOO_SHORT)) {
1186         uv_so_far = uv;
1187         uv = UNICODE_REPLACEMENT;
1188     }
1189
1190     /* Note that there are two types of too-short malformation.  One is when
1191      * there is actual wrong data before the normal termination of the
1192      * sequence.  The other is that the sequence wasn't complete before the end
1193      * of the data we are allowed to look at, based on the input 'curlen'.
1194      * This means that we were passed data for a partial character, but it is
1195      * valid as far as we saw.  The other is definitely invalid.  This
1196      * distinction could be important to a caller, so the two types are kept
1197      * separate. */
1198
1199     /* Check for overflow */
1200     if (UNLIKELY(does_utf8_overflow(s0, send))) {
1201         possible_problems |= UTF8_GOT_OVERFLOW;
1202         uv = UNICODE_REPLACEMENT;
1203     }
1204
1205     /* Check for overlong.  If no problems so far, 'uv' is the correct code
1206      * point value.  Simply see if it is expressible in fewer bytes.  Otherwise
1207      * we must look at the UTF-8 byte sequence itself to see if it is for an
1208      * overlong */
1209     if (     (   LIKELY(! possible_problems)
1210               && UNLIKELY(expectlen > (STRLEN) OFFUNISKIP(uv)))
1211         || (   UNLIKELY(  possible_problems)
1212             && (   UNLIKELY(! UTF8_IS_START(*s0))
1213                 || (   curlen > 1
1214                     && UNLIKELY(is_utf8_overlong_given_start_byte_ok(s0,
1215                                                                 send - s0))))))
1216     {
1217         possible_problems |= UTF8_GOT_LONG;
1218
1219         if (UNLIKELY(possible_problems & UTF8_GOT_TOO_SHORT)) {
1220             UV min_uv = uv_so_far;
1221             STRLEN i;
1222
1223             /* Here, the input is both overlong and is missing some trailing
1224              * bytes.  There is no single code point it could be for, but there
1225              * may be enough information present to determine if what we have
1226              * so far is for an unallowed code point, such as for a surrogate.
1227              * The code below has the intelligence to determine this, but just
1228              * for non-overlong UTF-8 sequences.  What we do here is calculate
1229              * the smallest code point the input could represent if there were
1230              * no too short malformation.  Then we compute and save the UTF-8
1231              * for that, which is what the code below looks at instead of the
1232              * raw input.  It turns out that the smallest such code point is
1233              * all we need. */
1234             for (i = curlen; i < expectlen; i++) {
1235                 min_uv = UTF8_ACCUMULATE(min_uv,
1236                                      I8_TO_NATIVE_UTF8(UTF_CONTINUATION_MARK));
1237             }
1238
1239             Newx(adjusted_s0, OFFUNISKIP(min_uv) + 1, U8);
1240             SAVEFREEPV((U8 *) adjusted_s0);    /* Needed because we may not get
1241                                                   to free it ourselves if
1242                                                   warnings are made fatal */
1243             adjusted_send = uvoffuni_to_utf8_flags(adjusted_s0, min_uv, 0);
1244         }
1245     }
1246
1247     /* Now check that the input isn't for a problematic code point not allowed
1248      * by the input parameters. */
1249                                               /* isn't problematic if < this */
1250     if (   (   (   LIKELY(! possible_problems) && uv >= UNICODE_SURROGATE_FIRST)
1251             || (   UNLIKELY(possible_problems)
1252
1253                           /* if overflow, we know without looking further
1254                            * precisely which of the problematic types it is,
1255                            * and we deal with those in the overflow handling
1256                            * code */
1257                 && LIKELY(! (possible_problems & UTF8_GOT_OVERFLOW))
1258                 && isUTF8_POSSIBLY_PROBLEMATIC(*adjusted_s0)))
1259         && ((flags & ( UTF8_DISALLOW_NONCHAR
1260                       |UTF8_DISALLOW_SURROGATE
1261                       |UTF8_DISALLOW_SUPER
1262                       |UTF8_DISALLOW_ABOVE_31_BIT
1263                       |UTF8_WARN_NONCHAR
1264                       |UTF8_WARN_SURROGATE
1265                       |UTF8_WARN_SUPER
1266                       |UTF8_WARN_ABOVE_31_BIT))
1267                    /* In case of a malformation, 'uv' is not valid, and has
1268                     * been changed to something in the Unicode range.
1269                     * Currently we don't output a deprecation message if there
1270                     * is already a malformation, so we don't have to special
1271                     * case the test immediately below */
1272             || (   UNLIKELY(uv > MAX_NON_DEPRECATED_CP)
1273                 && ckWARN_d(WARN_DEPRECATED))))
1274     {
1275         /* If there were no malformations, or the only malformation is an
1276          * overlong, 'uv' is valid */
1277         if (LIKELY(! (possible_problems & ~UTF8_GOT_LONG))) {
1278             if (UNLIKELY(UNICODE_IS_SURROGATE(uv))) {
1279                 possible_problems |= UTF8_GOT_SURROGATE;
1280             }
1281             else if (UNLIKELY(uv > PERL_UNICODE_MAX)) {
1282                 possible_problems |= UTF8_GOT_SUPER;
1283             }
1284             else if (UNLIKELY(UNICODE_IS_NONCHAR(uv))) {
1285                 possible_problems |= UTF8_GOT_NONCHAR;
1286             }
1287         }
1288         else {  /* Otherwise, need to look at the source UTF-8, possibly
1289                    adjusted to be non-overlong */
1290
1291             if (UNLIKELY(NATIVE_UTF8_TO_I8(*adjusted_s0)
1292                                 >= FIRST_START_BYTE_THAT_IS_DEFINITELY_SUPER))
1293             {
1294                 possible_problems |= UTF8_GOT_SUPER;
1295             }
1296             else if (curlen > 1) {
1297                 if (UNLIKELY(IS_UTF8_2_BYTE_SUPER(
1298                                       NATIVE_UTF8_TO_I8(*adjusted_s0),
1299                                       NATIVE_UTF8_TO_I8(*(adjusted_s0 + 1)))))
1300                 {
1301                     possible_problems |= UTF8_GOT_SUPER;
1302                 }
1303                 else if (UNLIKELY(IS_UTF8_2_BYTE_SURROGATE(
1304                                       NATIVE_UTF8_TO_I8(*adjusted_s0),
1305                                       NATIVE_UTF8_TO_I8(*(adjusted_s0 + 1)))))
1306                 {
1307                     possible_problems |= UTF8_GOT_SURROGATE;
1308                 }
1309             }
1310
1311             /* We need a complete well-formed UTF-8 character to discern
1312              * non-characters, so can't look for them here */
1313         }
1314     }
1315
1316   ready_to_handle_errors:
1317
1318     /* At this point:
1319      * curlen               contains the number of bytes in the sequence that
1320      *                      this call should advance the input by.
1321      * avail_len            gives the available number of bytes passed in, but
1322      *                      only if this is less than the expected number of
1323      *                      bytes, based on the code point's start byte.
1324      * possible_problems'   is 0 if there weren't any problems; otherwise a bit
1325      *                      is set in it for each potential problem found.
1326      * uv                   contains the code point the input sequence
1327      *                      represents; or if there is a problem that prevents
1328      *                      a well-defined value from being computed, it is
1329      *                      some subsitute value, typically the REPLACEMENT
1330      *                      CHARACTER.
1331      * s0                   points to the first byte of the character
1332      * send                 points to just after where that (potentially
1333      *                      partial) character ends
1334      * adjusted_s0          normally is the same as s0, but in case of an
1335      *                      overlong for which the UTF-8 matters below, it is
1336      *                      the first byte of the shortest form representation
1337      *                      of the input.
1338      * adjusted_send        normally is the same as 'send', but if adjusted_s0
1339      *                      is set to something other than s0, this points one
1340      *                      beyond its end
1341      */
1342
1343     if (UNLIKELY(possible_problems)) {
1344         bool disallowed = FALSE;
1345         const U32 orig_problems = possible_problems;
1346
1347         while (possible_problems) { /* Handle each possible problem */
1348             UV pack_warn = 0;
1349             char * message = NULL;
1350
1351             /* Each 'if' clause handles one problem.  They are ordered so that
1352              * the first ones' messages will be displayed before the later
1353              * ones; this is kinda in decreasing severity order */
1354             if (possible_problems & UTF8_GOT_OVERFLOW) {
1355
1356                 /* Overflow means also got a super and above 31 bits, but we
1357                  * handle all three cases here */
1358                 possible_problems
1359                   &= ~(UTF8_GOT_OVERFLOW|UTF8_GOT_SUPER|UTF8_GOT_ABOVE_31_BIT);
1360                 *errors |= UTF8_GOT_OVERFLOW;
1361
1362                 /* But the API says we flag all errors found */
1363                 if (flags & (UTF8_WARN_SUPER|UTF8_DISALLOW_SUPER)) {
1364                     *errors |= UTF8_GOT_SUPER;
1365                 }
1366                 if (flags
1367                         & (UTF8_WARN_ABOVE_31_BIT|UTF8_DISALLOW_ABOVE_31_BIT))
1368                 {
1369                     *errors |= UTF8_GOT_ABOVE_31_BIT;
1370                 }
1371
1372                 /* Disallow if any of the three categories say to */
1373                 if ( ! (flags & UTF8_ALLOW_OVERFLOW)
1374                     || (flags & ( UTF8_DISALLOW_SUPER
1375                                  |UTF8_DISALLOW_ABOVE_31_BIT)))
1376                 {
1377                     disallowed = TRUE;
1378                 }
1379
1380
1381                 /* Likewise, warn if any say to, plus if deprecation warnings
1382                  * are on, because this code point is above IV_MAX */
1383                 if (  ckWARN_d(WARN_DEPRECATED)
1384                     || ! (flags & UTF8_ALLOW_OVERFLOW)
1385                     ||   (flags & (UTF8_WARN_SUPER|UTF8_WARN_ABOVE_31_BIT)))
1386                 {
1387
1388                     /* The warnings code explicitly says it doesn't handle the
1389                      * case of packWARN2 and two categories which have
1390                      * parent-child relationship.  Even if it works now to
1391                      * raise the warning if either is enabled, it wouldn't
1392                      * necessarily do so in the future.  We output (only) the
1393                      * most dire warning*/
1394                     if (! (flags & UTF8_CHECK_ONLY)) {
1395                         if (ckWARN_d(WARN_UTF8)) {
1396                             pack_warn = packWARN(WARN_UTF8);
1397                         }
1398                         else if (ckWARN_d(WARN_NON_UNICODE)) {
1399                             pack_warn = packWARN(WARN_NON_UNICODE);
1400                         }
1401                         if (pack_warn) {
1402                             message = Perl_form(aTHX_ "%s: %s (overflows)",
1403                                             malformed_text,
1404                                             _byte_dump_string(s0, send - s0));
1405                         }
1406                     }
1407                 }
1408             }
1409             else if (possible_problems & UTF8_GOT_EMPTY) {
1410                 possible_problems &= ~UTF8_GOT_EMPTY;
1411                 *errors |= UTF8_GOT_EMPTY;
1412
1413                 if (! (flags & UTF8_ALLOW_EMPTY)) {
1414
1415                     /* This so-called malformation is now treated as a bug in
1416                      * the caller.  If you have nothing to decode, skip calling
1417                      * this function */
1418                     assert(0);
1419
1420                     disallowed = TRUE;
1421                     if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) {
1422                         pack_warn = packWARN(WARN_UTF8);
1423                         message = Perl_form(aTHX_ "%s (empty string)",
1424                                                    malformed_text);
1425                     }
1426                 }
1427             }
1428             else if (possible_problems & UTF8_GOT_CONTINUATION) {
1429                 possible_problems &= ~UTF8_GOT_CONTINUATION;
1430                 *errors |= UTF8_GOT_CONTINUATION;
1431
1432                 if (! (flags & UTF8_ALLOW_CONTINUATION)) {
1433                     disallowed = TRUE;
1434                     if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) {
1435                         pack_warn = packWARN(WARN_UTF8);
1436                         message = Perl_form(aTHX_
1437                                 "%s: %s (unexpected continuation byte 0x%02x,"
1438                                 " with no preceding start byte)",
1439                                 malformed_text,
1440                                 _byte_dump_string(s0, 1), *s0);
1441                     }
1442                 }
1443             }
1444             else if (possible_problems & UTF8_GOT_SHORT) {
1445                 possible_problems &= ~UTF8_GOT_SHORT;
1446                 *errors |= UTF8_GOT_SHORT;
1447
1448                 if (! (flags & UTF8_ALLOW_SHORT)) {
1449                     disallowed = TRUE;
1450                     if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) {
1451                         pack_warn = packWARN(WARN_UTF8);
1452                         message = Perl_form(aTHX_
1453                                 "%s: %s (too short; %d byte%s available, need %d)",
1454                                 malformed_text,
1455                                 _byte_dump_string(s0, send - s0),
1456                                 (int)avail_len,
1457                                 avail_len == 1 ? "" : "s",
1458                                 (int)expectlen);
1459                     }
1460                 }
1461
1462             }
1463             else if (possible_problems & UTF8_GOT_NON_CONTINUATION) {
1464                 possible_problems &= ~UTF8_GOT_NON_CONTINUATION;
1465                 *errors |= UTF8_GOT_NON_CONTINUATION;
1466
1467                 if (! (flags & UTF8_ALLOW_NON_CONTINUATION)) {
1468                     disallowed = TRUE;
1469                     if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) {
1470
1471                         /* If we don't know for sure that the input length is
1472                          * valid, avoid as much as possible reading past the
1473                          * end of the buffer */
1474                         int printlen = (flags & _UTF8_NO_CONFIDENCE_IN_CURLEN)
1475                                        ? s - s0
1476                                        : send - s0;
1477                         pack_warn = packWARN(WARN_UTF8);
1478                         message = Perl_form(aTHX_ "%s",
1479                             unexpected_non_continuation_text(s0,
1480                                                             printlen,
1481                                                             s - s0,
1482                                                             (int) expectlen));
1483                     }
1484                 }
1485             }
1486             else if (possible_problems & UTF8_GOT_LONG) {
1487                 possible_problems &= ~UTF8_GOT_LONG;
1488                 *errors |= UTF8_GOT_LONG;
1489
1490                 if (flags & UTF8_ALLOW_LONG) {
1491
1492                     /* We don't allow the actual overlong value, unless the
1493                      * special extra bit is also set */
1494                     if (! (flags & (   UTF8_ALLOW_LONG_AND_ITS_VALUE
1495                                     & ~UTF8_ALLOW_LONG)))
1496                     {
1497                         uv = UNICODE_REPLACEMENT;
1498                     }
1499                 }
1500                 else {
1501                     disallowed = TRUE;
1502
1503                     if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) {
1504                         pack_warn = packWARN(WARN_UTF8);
1505
1506                         /* These error types cause 'uv' to be something that
1507                          * isn't what was intended, so can't use it in the
1508                          * message.  The other error types either can't
1509                          * generate an overlong, or else the 'uv' is valid */
1510                         if (orig_problems &
1511                                         (UTF8_GOT_TOO_SHORT|UTF8_GOT_OVERFLOW))
1512                         {
1513                             message = Perl_form(aTHX_
1514                                     "%s: %s (any UTF-8 sequence that starts"
1515                                     " with \"%s\" is overlong which can and"
1516                                     " should be represented with a"
1517                                     " different, shorter sequence)",
1518                                     malformed_text,
1519                                     _byte_dump_string(s0, send - s0),
1520                                     _byte_dump_string(s0, curlen));
1521                         }
1522                         else {
1523                             U8 tmpbuf[UTF8_MAXBYTES+1];
1524                             const U8 * const e = uvoffuni_to_utf8_flags(tmpbuf,
1525                                                                         uv, 0);
1526                             message = Perl_form(aTHX_
1527                                 "%s: %s (overlong; instead use %s to represent"
1528                                 " U+%0*" UVXf ")",
1529                                 malformed_text,
1530                                 _byte_dump_string(s0, send - s0),
1531                                 _byte_dump_string(tmpbuf, e - tmpbuf),
1532                                 ((uv < 256) ? 2 : 4), /* Field width of 2 for
1533                                                          small code points */
1534                                 uv);
1535                         }
1536                     }
1537                 }
1538             }
1539             else if (possible_problems & UTF8_GOT_SURROGATE) {
1540                 possible_problems &= ~UTF8_GOT_SURROGATE;
1541
1542                 if (flags & UTF8_WARN_SURROGATE) {
1543                     *errors |= UTF8_GOT_SURROGATE;
1544
1545                     if (   ! (flags & UTF8_CHECK_ONLY)
1546                         && ckWARN_d(WARN_SURROGATE))
1547                     {
1548                         pack_warn = packWARN(WARN_SURROGATE);
1549
1550                         /* These are the only errors that can occur with a
1551                         * surrogate when the 'uv' isn't valid */
1552                         if (orig_problems & UTF8_GOT_TOO_SHORT) {
1553                             message = Perl_form(aTHX_
1554                                     "UTF-16 surrogate (any UTF-8 sequence that"
1555                                     " starts with \"%s\" is for a surrogate)",
1556                                     _byte_dump_string(s0, curlen));
1557                         }
1558                         else {
1559                             message = Perl_form(aTHX_
1560                                             "UTF-16 surrogate U+%04" UVXf, uv);
1561                         }
1562                     }
1563                 }
1564
1565                 if (flags & UTF8_DISALLOW_SURROGATE) {
1566                     disallowed = TRUE;
1567                     *errors |= UTF8_GOT_SURROGATE;
1568                 }
1569             }
1570             else if (possible_problems & UTF8_GOT_SUPER) {
1571                 possible_problems &= ~UTF8_GOT_SUPER;
1572
1573                 if (flags & UTF8_WARN_SUPER) {
1574                     *errors |= UTF8_GOT_SUPER;
1575
1576                     if (   ! (flags & UTF8_CHECK_ONLY)
1577                         && ckWARN_d(WARN_NON_UNICODE))
1578                     {
1579                         pack_warn = packWARN(WARN_NON_UNICODE);
1580
1581                         if (orig_problems & UTF8_GOT_TOO_SHORT) {
1582                             message = Perl_form(aTHX_
1583                                     "Any UTF-8 sequence that starts with"
1584                                     " \"%s\" is for a non-Unicode code point,"
1585                                     " may not be portable",
1586                                     _byte_dump_string(s0, curlen));
1587                         }
1588                         else {
1589                             message = Perl_form(aTHX_
1590                                                 "Code point 0x%04" UVXf " is not"
1591                                                 " Unicode, may not be portable",
1592                                                 uv);
1593                         }
1594                     }
1595                 }
1596
1597                 /* The maximum code point ever specified by a standard was
1598                  * 2**31 - 1.  Anything larger than that is a Perl extension
1599                  * that very well may not be understood by other applications
1600                  * (including earlier perl versions on EBCDIC platforms).  We
1601                  * test for these after the regular SUPER ones, and before
1602                  * possibly bailing out, so that the slightly more dire warning
1603                  * will override the regular one. */
1604                 if (   (flags & (UTF8_WARN_ABOVE_31_BIT
1605                                 |UTF8_WARN_SUPER
1606                                 |UTF8_DISALLOW_ABOVE_31_BIT))
1607                     && (   (   UNLIKELY(orig_problems & UTF8_GOT_TOO_SHORT)
1608                             && UNLIKELY(is_utf8_cp_above_31_bits(
1609                                                                 adjusted_s0,
1610                                                                 adjusted_send)))
1611                         || (   LIKELY(! (orig_problems & UTF8_GOT_TOO_SHORT))
1612                             && UNLIKELY(UNICODE_IS_ABOVE_31_BIT(uv)))))
1613                 {
1614                     if (  ! (flags & UTF8_CHECK_ONLY)
1615                         &&  (flags & (UTF8_WARN_ABOVE_31_BIT|UTF8_WARN_SUPER))
1616                         &&  ckWARN_d(WARN_UTF8))
1617                     {
1618                         pack_warn = packWARN(WARN_UTF8);
1619
1620                         if (orig_problems & UTF8_GOT_TOO_SHORT) {
1621                             message = Perl_form(aTHX_
1622                                         "Any UTF-8 sequence that starts with"
1623                                         " \"%s\" is for a non-Unicode code"
1624                                         " point, and is not portable",
1625                                         _byte_dump_string(s0, curlen));
1626                         }
1627                         else {
1628                             message = Perl_form(aTHX_
1629                                         "Code point 0x%" UVXf " is not Unicode,"
1630                                         " and not portable",
1631                                          uv);
1632                         }
1633                     }
1634
1635                     if (flags & ( UTF8_WARN_ABOVE_31_BIT
1636                                  |UTF8_DISALLOW_ABOVE_31_BIT))
1637                     {
1638                         *errors |= UTF8_GOT_ABOVE_31_BIT;
1639
1640                         if (flags & UTF8_DISALLOW_ABOVE_31_BIT) {
1641                             disallowed = TRUE;
1642                         }
1643                     }
1644                 }
1645
1646                 if (flags & UTF8_DISALLOW_SUPER) {
1647                     *errors |= UTF8_GOT_SUPER;
1648                     disallowed = TRUE;
1649                 }
1650
1651                 /* The deprecated warning overrides any non-deprecated one.  If
1652                  * there are other problems, a deprecation message is not
1653                  * really helpful, so don't bother to raise it in that case.
1654                  * This also keeps the code from having to handle the case
1655                  * where 'uv' is not valid. */
1656                 if (   ! (orig_problems
1657                                     & (UTF8_GOT_TOO_SHORT|UTF8_GOT_OVERFLOW))
1658                     && UNLIKELY(uv > MAX_NON_DEPRECATED_CP)
1659                     && ckWARN_d(WARN_DEPRECATED))
1660                 {
1661                     message = Perl_form(aTHX_ cp_above_legal_max,
1662                                               uv, MAX_NON_DEPRECATED_CP);
1663                     pack_warn = packWARN(WARN_DEPRECATED);
1664                 }
1665             }
1666             else if (possible_problems & UTF8_GOT_NONCHAR) {
1667                 possible_problems &= ~UTF8_GOT_NONCHAR;
1668
1669                 if (flags & UTF8_WARN_NONCHAR) {
1670                     *errors |= UTF8_GOT_NONCHAR;
1671
1672                     if (  ! (flags & UTF8_CHECK_ONLY)
1673                         && ckWARN_d(WARN_NONCHAR))
1674                     {
1675                         /* The code above should have guaranteed that we don't
1676                          * get here with errors other than overlong */
1677                         assert (! (orig_problems
1678                                         & ~(UTF8_GOT_LONG|UTF8_GOT_NONCHAR)));
1679
1680                         pack_warn = packWARN(WARN_NONCHAR);
1681                         message = Perl_form(aTHX_ "Unicode non-character"
1682                                                 " U+%04" UVXf " is not recommended"
1683                                                 " for open interchange", uv);
1684                     }
1685                 }
1686
1687                 if (flags & UTF8_DISALLOW_NONCHAR) {
1688                     disallowed = TRUE;
1689                     *errors |= UTF8_GOT_NONCHAR;
1690                 }
1691             } /* End of looking through the possible flags */
1692
1693             /* Display the message (if any) for the problem being handled in
1694              * this iteration of the loop */
1695             if (message) {
1696                 if (PL_op)
1697                     Perl_warner(aTHX_ pack_warn, "%s in %s", message,
1698                                                  OP_DESC(PL_op));
1699                 else
1700                     Perl_warner(aTHX_ pack_warn, "%s", message);
1701             }
1702         }   /* End of 'while (possible_problems)' */
1703
1704         /* Since there was a possible problem, the returned length may need to
1705          * be changed from the one stored at the beginning of this function.
1706          * Instead of trying to figure out if that's needed, just do it. */
1707         if (retlen) {
1708             *retlen = curlen;
1709         }
1710
1711         if (disallowed) {
1712             if (flags & UTF8_CHECK_ONLY && retlen) {
1713                 *retlen = ((STRLEN) -1);
1714             }
1715             return 0;
1716         }
1717     }
1718
1719     return UNI_TO_NATIVE(uv);
1720 }
1721
1722 /*
1723 =for apidoc utf8_to_uvchr_buf
1724
1725 Returns the native code point of the first character in the string C<s> which
1726 is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>.
1727 C<*retlen> will be set to the length, in bytes, of that character.
1728
1729 If C<s> does not point to a well-formed UTF-8 character and UTF8 warnings are
1730 enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't
1731 C<NULL>) to -1.  If those warnings are off, the computed value, if well-defined
1732 (or the Unicode REPLACEMENT CHARACTER if not), is silently returned, and
1733 C<*retlen> is set (if C<retlen> isn't C<NULL>) so that (S<C<s> + C<*retlen>>) is
1734 the next possible position in C<s> that could begin a non-malformed character.
1735 See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is
1736 returned.
1737
1738 Code points above the platform's C<IV_MAX> will raise a deprecation warning,
1739 unless those are turned off.
1740
1741 =cut
1742
1743 Also implemented as a macro in utf8.h
1744
1745 */
1746
1747
1748 UV
1749 Perl_utf8_to_uvchr_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
1750 {
1751     assert(s < send);
1752
1753     return utf8n_to_uvchr(s, send - s, retlen,
1754                      ckWARN_d(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
1755 }
1756
1757 /* This is marked as deprecated
1758  *
1759 =for apidoc utf8_to_uvuni_buf
1760
1761 Only in very rare circumstances should code need to be dealing in Unicode
1762 (as opposed to native) code points.  In those few cases, use
1763 C<L<NATIVE_TO_UNI(utf8_to_uvchr_buf(...))|/utf8_to_uvchr_buf>> instead.
1764
1765 Returns the Unicode (not-native) code point of the first character in the
1766 string C<s> which
1767 is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>.
1768 C<retlen> will be set to the length, in bytes, of that character.
1769
1770 If C<s> does not point to a well-formed UTF-8 character and UTF8 warnings are
1771 enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't
1772 NULL) to -1.  If those warnings are off, the computed value if well-defined (or
1773 the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen>
1774 is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the
1775 next possible position in C<s> that could begin a non-malformed character.
1776 See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is returned.
1777
1778 Code points above the platform's C<IV_MAX> will raise a deprecation warning,
1779 unless those are turned off.
1780
1781 =cut
1782 */
1783
1784 UV
1785 Perl_utf8_to_uvuni_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
1786 {
1787     PERL_ARGS_ASSERT_UTF8_TO_UVUNI_BUF;
1788
1789     assert(send > s);
1790
1791     /* Call the low level routine, asking for checks */
1792     return NATIVE_TO_UNI(utf8_to_uvchr_buf(s, send, retlen));
1793 }
1794
1795 /*
1796 =for apidoc utf8_length
1797
1798 Return the length of the UTF-8 char encoded string C<s> in characters.
1799 Stops at C<e> (inclusive).  If C<e E<lt> s> or if the scan would end
1800 up past C<e>, croaks.
1801
1802 =cut
1803 */
1804
1805 STRLEN
1806 Perl_utf8_length(pTHX_ const U8 *s, const U8 *e)
1807 {
1808     STRLEN len = 0;
1809
1810     PERL_ARGS_ASSERT_UTF8_LENGTH;
1811
1812     /* Note: cannot use UTF8_IS_...() too eagerly here since e.g.
1813      * the bitops (especially ~) can create illegal UTF-8.
1814      * In other words: in Perl UTF-8 is not just for Unicode. */
1815
1816     if (e < s)
1817         goto warn_and_return;
1818     while (s < e) {
1819         s += UTF8SKIP(s);
1820         len++;
1821     }
1822
1823     if (e != s) {
1824         len--;
1825         warn_and_return:
1826         if (PL_op)
1827             Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
1828                              "%s in %s", unees, OP_DESC(PL_op));
1829         else
1830             Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), "%s", unees);
1831     }
1832
1833     return len;
1834 }
1835
1836 /*
1837 =for apidoc bytes_cmp_utf8
1838
1839 Compares the sequence of characters (stored as octets) in C<b>, C<blen> with the
1840 sequence of characters (stored as UTF-8)
1841 in C<u>, C<ulen>.  Returns 0 if they are
1842 equal, -1 or -2 if the first string is less than the second string, +1 or +2
1843 if the first string is greater than the second string.
1844
1845 -1 or +1 is returned if the shorter string was identical to the start of the
1846 longer string.  -2 or +2 is returned if
1847 there was a difference between characters
1848 within the strings.
1849
1850 =cut
1851 */
1852
1853 int
1854 Perl_bytes_cmp_utf8(pTHX_ const U8 *b, STRLEN blen, const U8 *u, STRLEN ulen)
1855 {
1856     const U8 *const bend = b + blen;
1857     const U8 *const uend = u + ulen;
1858
1859     PERL_ARGS_ASSERT_BYTES_CMP_UTF8;
1860
1861     while (b < bend && u < uend) {
1862         U8 c = *u++;
1863         if (!UTF8_IS_INVARIANT(c)) {
1864             if (UTF8_IS_DOWNGRADEABLE_START(c)) {
1865                 if (u < uend) {
1866                     U8 c1 = *u++;
1867                     if (UTF8_IS_CONTINUATION(c1)) {
1868                         c = EIGHT_BIT_UTF8_TO_NATIVE(c, c1);
1869                     } else {
1870                         /* diag_listed_as: Malformed UTF-8 character%s */
1871                         Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
1872                                     "%s %s%s",
1873                                     unexpected_non_continuation_text(u - 1, 2, 1, 2),
1874                                     PL_op ? " in " : "",
1875                                     PL_op ? OP_DESC(PL_op) : "");
1876                         return -2;
1877                     }
1878                 } else {
1879                     if (PL_op)
1880                         Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
1881                                          "%s in %s", unees, OP_DESC(PL_op));
1882                     else
1883                         Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), "%s", unees);
1884                     return -2; /* Really want to return undef :-)  */
1885                 }
1886             } else {
1887                 return -2;
1888             }
1889         }
1890         if (*b != c) {
1891             return *b < c ? -2 : +2;
1892         }
1893         ++b;
1894     }
1895
1896     if (b == bend && u == uend)
1897         return 0;
1898
1899     return b < bend ? +1 : -1;
1900 }
1901
1902 /*
1903 =for apidoc utf8_to_bytes
1904
1905 Converts a string C<s> of length C<len> from UTF-8 into native byte encoding.
1906 Unlike L</bytes_to_utf8>, this over-writes the original string, and
1907 updates C<len> to contain the new length.
1908 Returns zero on failure, setting C<len> to -1.
1909
1910 If you need a copy of the string, see L</bytes_from_utf8>.
1911
1912 =cut
1913 */
1914
1915 U8 *
1916 Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len)
1917 {
1918     U8 * const save = s;
1919     U8 * const send = s + *len;
1920     U8 *d;
1921
1922     PERL_ARGS_ASSERT_UTF8_TO_BYTES;
1923     PERL_UNUSED_CONTEXT;
1924
1925     /* ensure valid UTF-8 and chars < 256 before updating string */
1926     while (s < send) {
1927         if (! UTF8_IS_INVARIANT(*s)) {
1928             if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, send)) {
1929                 *len = ((STRLEN) -1);
1930                 return 0;
1931             }
1932             s++;
1933         }
1934         s++;
1935     }
1936
1937     d = s = save;
1938     while (s < send) {
1939         U8 c = *s++;
1940         if (! UTF8_IS_INVARIANT(c)) {
1941             /* Then it is two-byte encoded */
1942             c = EIGHT_BIT_UTF8_TO_NATIVE(c, *s);
1943             s++;
1944         }
1945         *d++ = c;
1946     }
1947     *d = '\0';
1948     *len = d - save;
1949     return save;
1950 }
1951
1952 /*
1953 =for apidoc bytes_from_utf8
1954
1955 Converts a string C<s> of length C<len> from UTF-8 into native byte encoding.
1956 Unlike L</utf8_to_bytes> but like L</bytes_to_utf8>, returns a pointer to
1957 the newly-created string, and updates C<len> to contain the new
1958 length.  Returns the original string if no conversion occurs, C<len>
1959 is unchanged.  Do nothing if C<is_utf8> points to 0.  Sets C<is_utf8> to
1960 0 if C<s> is converted or consisted entirely of characters that are invariant
1961 in UTF-8 (i.e., US-ASCII on non-EBCDIC machines).
1962
1963 =cut
1964 */
1965
1966 U8 *
1967 Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8)
1968 {
1969     U8 *d;
1970     const U8 *start = s;
1971     const U8 *send;
1972     I32 count = 0;
1973
1974     PERL_ARGS_ASSERT_BYTES_FROM_UTF8;
1975     PERL_UNUSED_CONTEXT;
1976     if (!*is_utf8)
1977         return (U8 *)start;
1978
1979     /* ensure valid UTF-8 and chars < 256 before converting string */
1980     for (send = s + *len; s < send;) {
1981         if (! UTF8_IS_INVARIANT(*s)) {
1982             if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, send)) {
1983                 return (U8 *)start;
1984             }
1985             count++;
1986             s++;
1987         }
1988         s++;
1989     }
1990
1991     *is_utf8 = FALSE;
1992
1993     Newx(d, (*len) - count + 1, U8);
1994     s = start; start = d;
1995     while (s < send) {
1996         U8 c = *s++;
1997         if (! UTF8_IS_INVARIANT(c)) {
1998             /* Then it is two-byte encoded */
1999             c = EIGHT_BIT_UTF8_TO_NATIVE(c, *s);
2000             s++;
2001         }
2002         *d++ = c;
2003     }
2004     *d = '\0';
2005     *len = d - start;
2006     return (U8 *)start;
2007 }
2008
2009 /*
2010 =for apidoc bytes_to_utf8
2011
2012 Converts a string C<s> of length C<len> bytes from the native encoding into
2013 UTF-8.
2014 Returns a pointer to the newly-created string, and sets C<len> to
2015 reflect the new length in bytes.
2016
2017 A C<NUL> character will be written after the end of the string.
2018
2019 If you want to convert to UTF-8 from encodings other than
2020 the native (Latin1 or EBCDIC),
2021 see L</sv_recode_to_utf8>().
2022
2023 =cut
2024 */
2025
2026 /* This logic is duplicated in sv_catpvn_flags, so any bug fixes will
2027    likewise need duplication. */
2028
2029 U8*
2030 Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len)
2031 {
2032     const U8 * const send = s + (*len);
2033     U8 *d;
2034     U8 *dst;
2035
2036     PERL_ARGS_ASSERT_BYTES_TO_UTF8;
2037     PERL_UNUSED_CONTEXT;
2038
2039     Newx(d, (*len) * 2 + 1, U8);
2040     dst = d;
2041
2042     while (s < send) {
2043         append_utf8_from_native_byte(*s, &d);
2044         s++;
2045     }
2046     *d = '\0';
2047     *len = d-dst;
2048     return dst;
2049 }
2050
2051 /*
2052  * Convert native (big-endian) or reversed (little-endian) UTF-16 to UTF-8.
2053  *
2054  * Destination must be pre-extended to 3/2 source.  Do not use in-place.
2055  * We optimize for native, for obvious reasons. */
2056
2057 U8*
2058 Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
2059 {
2060     U8* pend;
2061     U8* dstart = d;
2062
2063     PERL_ARGS_ASSERT_UTF16_TO_UTF8;
2064
2065     if (bytelen & 1)
2066         Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen %" UVuf, (UV)bytelen);
2067
2068     pend = p + bytelen;
2069
2070     while (p < pend) {
2071         UV uv = (p[0] << 8) + p[1]; /* UTF-16BE */
2072         p += 2;
2073         if (OFFUNI_IS_INVARIANT(uv)) {
2074             *d++ = LATIN1_TO_NATIVE((U8) uv);
2075             continue;
2076         }
2077         if (uv <= MAX_UTF8_TWO_BYTE) {
2078             *d++ = UTF8_TWO_BYTE_HI(UNI_TO_NATIVE(uv));
2079             *d++ = UTF8_TWO_BYTE_LO(UNI_TO_NATIVE(uv));
2080             continue;
2081         }
2082 #define FIRST_HIGH_SURROGATE UNICODE_SURROGATE_FIRST
2083 #define LAST_HIGH_SURROGATE  0xDBFF
2084 #define FIRST_LOW_SURROGATE  0xDC00
2085 #define LAST_LOW_SURROGATE   UNICODE_SURROGATE_LAST
2086
2087         /* This assumes that most uses will be in the first Unicode plane, not
2088          * needing surrogates */
2089         if (UNLIKELY(uv >= UNICODE_SURROGATE_FIRST
2090                   && uv <= UNICODE_SURROGATE_LAST))
2091         {
2092             if (UNLIKELY(p >= pend) || UNLIKELY(uv > LAST_HIGH_SURROGATE)) {
2093                 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
2094             }
2095             else {
2096                 UV low = (p[0] << 8) + p[1];
2097                 if (   UNLIKELY(low < FIRST_LOW_SURROGATE)
2098                     || UNLIKELY(low > LAST_LOW_SURROGATE))
2099                 {
2100                     Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
2101                 }
2102                 p += 2;
2103                 uv = ((uv - FIRST_HIGH_SURROGATE) << 10)
2104                                        + (low - FIRST_LOW_SURROGATE) + 0x10000;
2105             }
2106         }
2107 #ifdef EBCDIC
2108         d = uvoffuni_to_utf8_flags(d, uv, 0);
2109 #else
2110         if (uv < 0x10000) {
2111             *d++ = (U8)(( uv >> 12)         | 0xe0);
2112             *d++ = (U8)(((uv >>  6) & 0x3f) | 0x80);
2113             *d++ = (U8)(( uv        & 0x3f) | 0x80);
2114             continue;
2115         }
2116         else {
2117             *d++ = (U8)(( uv >> 18)         | 0xf0);
2118             *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
2119             *d++ = (U8)(((uv >>  6) & 0x3f) | 0x80);
2120             *d++ = (U8)(( uv        & 0x3f) | 0x80);
2121             continue;
2122         }
2123 #endif
2124     }
2125     *newlen = d - dstart;
2126     return d;
2127 }
2128
2129 /* Note: this one is slightly destructive of the source. */
2130
2131 U8*
2132 Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
2133 {
2134     U8* s = (U8*)p;
2135     U8* const send = s + bytelen;
2136
2137     PERL_ARGS_ASSERT_UTF16_TO_UTF8_REVERSED;
2138
2139     if (bytelen & 1)
2140         Perl_croak(aTHX_ "panic: utf16_to_utf8_reversed: odd bytelen %" UVuf,
2141                    (UV)bytelen);
2142
2143     while (s < send) {
2144         const U8 tmp = s[0];
2145         s[0] = s[1];
2146         s[1] = tmp;
2147         s += 2;
2148     }
2149     return utf16_to_utf8(p, d, bytelen, newlen);
2150 }
2151
2152 bool
2153 Perl__is_uni_FOO(pTHX_ const U8 classnum, const UV c)
2154 {
2155     U8 tmpbuf[UTF8_MAXBYTES+1];
2156     uvchr_to_utf8(tmpbuf, c);
2157     return _is_utf8_FOO_with_len(classnum, tmpbuf, tmpbuf + sizeof(tmpbuf));
2158 }
2159
2160 /* Internal function so we can deprecate the external one, and call
2161    this one from other deprecated functions in this file */
2162
2163 bool
2164 Perl__is_utf8_idstart(pTHX_ const U8 *p)
2165 {
2166     PERL_ARGS_ASSERT__IS_UTF8_IDSTART;
2167
2168     if (*p == '_')
2169         return TRUE;
2170     return is_utf8_common(p, &PL_utf8_idstart, "IdStart", NULL);
2171 }
2172
2173 bool
2174 Perl__is_uni_perl_idcont(pTHX_ UV c)
2175 {
2176     U8 tmpbuf[UTF8_MAXBYTES+1];
2177     uvchr_to_utf8(tmpbuf, c);
2178     return _is_utf8_perl_idcont_with_len(tmpbuf, tmpbuf + sizeof(tmpbuf));
2179 }
2180
2181 bool
2182 Perl__is_uni_perl_idstart(pTHX_ UV c)
2183 {
2184     U8 tmpbuf[UTF8_MAXBYTES+1];
2185     uvchr_to_utf8(tmpbuf, c);
2186     return _is_utf8_perl_idstart_with_len(tmpbuf, tmpbuf + sizeof(tmpbuf));
2187 }
2188
2189 UV
2190 Perl__to_upper_title_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp, const char S_or_s)
2191 {
2192     /* We have the latin1-range values compiled into the core, so just use
2193      * those, converting the result to UTF-8.  The only difference between upper
2194      * and title case in this range is that LATIN_SMALL_LETTER_SHARP_S is
2195      * either "SS" or "Ss".  Which one to use is passed into the routine in
2196      * 'S_or_s' to avoid a test */
2197
2198     UV converted = toUPPER_LATIN1_MOD(c);
2199
2200     PERL_ARGS_ASSERT__TO_UPPER_TITLE_LATIN1;
2201
2202     assert(S_or_s == 'S' || S_or_s == 's');
2203
2204     if (UVCHR_IS_INVARIANT(converted)) { /* No difference between the two for
2205                                              characters in this range */
2206         *p = (U8) converted;
2207         *lenp = 1;
2208         return converted;
2209     }
2210
2211     /* toUPPER_LATIN1_MOD gives the correct results except for three outliers,
2212      * which it maps to one of them, so as to only have to have one check for
2213      * it in the main case */
2214     if (UNLIKELY(converted == LATIN_SMALL_LETTER_Y_WITH_DIAERESIS)) {
2215         switch (c) {
2216             case LATIN_SMALL_LETTER_Y_WITH_DIAERESIS:
2217                 converted = LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS;
2218                 break;
2219             case MICRO_SIGN:
2220                 converted = GREEK_CAPITAL_LETTER_MU;
2221                 break;
2222 #if    UNICODE_MAJOR_VERSION > 2                                        \
2223    || (UNICODE_MAJOR_VERSION == 2 && UNICODE_DOT_VERSION >= 1           \
2224                                   && UNICODE_DOT_DOT_VERSION >= 8)
2225             case LATIN_SMALL_LETTER_SHARP_S:
2226                 *(p)++ = 'S';
2227                 *p = S_or_s;
2228                 *lenp = 2;
2229                 return 'S';
2230 #endif
2231             default:
2232                 Perl_croak(aTHX_ "panic: to_upper_title_latin1 did not expect '%c' to map to '%c'", c, LATIN_SMALL_LETTER_Y_WITH_DIAERESIS);
2233                 NOT_REACHED; /* NOTREACHED */
2234         }
2235     }
2236
2237     *(p)++ = UTF8_TWO_BYTE_HI(converted);
2238     *p = UTF8_TWO_BYTE_LO(converted);
2239     *lenp = 2;
2240
2241     return converted;
2242 }
2243
2244 /* Call the function to convert a UTF-8 encoded character to the specified case.
2245  * Note that there may be more than one character in the result.
2246  * INP is a pointer to the first byte of the input character
2247  * OUTP will be set to the first byte of the string of changed characters.  It
2248  *      needs to have space for UTF8_MAXBYTES_CASE+1 bytes
2249  * LENP will be set to the length in bytes of the string of changed characters
2250  *
2251  * The functions return the ordinal of the first character in the string of OUTP */
2252 #define CALL_UPPER_CASE(uv, s, d, lenp) _to_utf8_case(uv, s, d, lenp, &PL_utf8_toupper, "ToUc", "")
2253 #define CALL_TITLE_CASE(uv, s, d, lenp) _to_utf8_case(uv, s, d, lenp, &PL_utf8_totitle, "ToTc", "")
2254 #define CALL_LOWER_CASE(uv, s, d, lenp) _to_utf8_case(uv, s, d, lenp, &PL_utf8_tolower, "ToLc", "")
2255
2256 /* This additionally has the input parameter 'specials', which if non-zero will
2257  * cause this to use the specials hash for folding (meaning get full case
2258  * folding); otherwise, when zero, this implies a simple case fold */
2259 #define CALL_FOLD_CASE(uv, s, d, lenp, specials) _to_utf8_case(uv, s, d, lenp, &PL_utf8_tofold, "ToCf", (specials) ? "" : NULL)
2260
2261 UV
2262 Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp)
2263 {
2264     /* Convert the Unicode character whose ordinal is <c> to its uppercase
2265      * version and store that in UTF-8 in <p> and its length in bytes in <lenp>.
2266      * Note that the <p> needs to be at least UTF8_MAXBYTES_CASE+1 bytes since
2267      * the changed version may be longer than the original character.
2268      *
2269      * The ordinal of the first character of the changed version is returned
2270      * (but note, as explained above, that there may be more.) */
2271
2272     PERL_ARGS_ASSERT_TO_UNI_UPPER;
2273
2274     if (c < 256) {
2275         return _to_upper_title_latin1((U8) c, p, lenp, 'S');
2276     }
2277
2278     uvchr_to_utf8(p, c);
2279     return CALL_UPPER_CASE(c, p, p, lenp);
2280 }
2281
2282 UV
2283 Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp)
2284 {
2285     PERL_ARGS_ASSERT_TO_UNI_TITLE;
2286
2287     if (c < 256) {
2288         return _to_upper_title_latin1((U8) c, p, lenp, 's');
2289     }
2290
2291     uvchr_to_utf8(p, c);
2292     return CALL_TITLE_CASE(c, p, p, lenp);
2293 }
2294
2295 STATIC U8
2296 S_to_lower_latin1(const U8 c, U8* p, STRLEN *lenp, const char dummy)
2297 {
2298     /* We have the latin1-range values compiled into the core, so just use
2299      * those, converting the result to UTF-8.  Since the result is always just
2300      * one character, we allow <p> to be NULL */
2301
2302     U8 converted = toLOWER_LATIN1(c);
2303
2304     PERL_UNUSED_ARG(dummy);
2305
2306     if (p != NULL) {
2307         if (NATIVE_BYTE_IS_INVARIANT(converted)) {
2308             *p = converted;
2309             *lenp = 1;
2310         }
2311         else {
2312             /* Result is known to always be < 256, so can use the EIGHT_BIT
2313              * macros */
2314             *p = UTF8_EIGHT_BIT_HI(converted);
2315             *(p+1) = UTF8_EIGHT_BIT_LO(converted);
2316             *lenp = 2;
2317         }
2318     }
2319     return converted;
2320 }
2321
2322 UV
2323 Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp)
2324 {
2325     PERL_ARGS_ASSERT_TO_UNI_LOWER;
2326
2327     if (c < 256) {
2328         return to_lower_latin1((U8) c, p, lenp, 0 /* 0 is a dummy arg */ );
2329     }
2330
2331     uvchr_to_utf8(p, c);
2332     return CALL_LOWER_CASE(c, p, p, lenp);
2333 }
2334
2335 UV
2336 Perl__to_fold_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp, const unsigned int flags)
2337 {
2338     /* Corresponds to to_lower_latin1(); <flags> bits meanings:
2339      *      FOLD_FLAGS_NOMIX_ASCII iff non-ASCII to ASCII folds are prohibited
2340      *      FOLD_FLAGS_FULL  iff full folding is to be used;
2341      *
2342      *  Not to be used for locale folds
2343      */
2344
2345     UV converted;
2346
2347     PERL_ARGS_ASSERT__TO_FOLD_LATIN1;
2348     PERL_UNUSED_CONTEXT;
2349
2350     assert (! (flags & FOLD_FLAGS_LOCALE));
2351
2352     if (UNLIKELY(c == MICRO_SIGN)) {
2353         converted = GREEK_SMALL_LETTER_MU;
2354     }
2355 #if    UNICODE_MAJOR_VERSION > 3 /* no multifolds in early Unicode */   \
2356    || (UNICODE_MAJOR_VERSION == 3 && (   UNICODE_DOT_VERSION > 0)       \
2357                                       || UNICODE_DOT_DOT_VERSION > 0)
2358     else if (   (flags & FOLD_FLAGS_FULL)
2359              && UNLIKELY(c == LATIN_SMALL_LETTER_SHARP_S))
2360     {
2361         /* If can't cross 127/128 boundary, can't return "ss"; instead return
2362          * two U+017F characters, as fc("\df") should eq fc("\x{17f}\x{17f}")
2363          * under those circumstances. */
2364         if (flags & FOLD_FLAGS_NOMIX_ASCII) {
2365             *lenp = 2 * sizeof(LATIN_SMALL_LETTER_LONG_S_UTF8) - 2;
2366             Copy(LATIN_SMALL_LETTER_LONG_S_UTF8 LATIN_SMALL_LETTER_LONG_S_UTF8,
2367                  p, *lenp, U8);
2368             return LATIN_SMALL_LETTER_LONG_S;
2369         }
2370         else {
2371             *(p)++ = 's';
2372             *p = 's';
2373             *lenp = 2;
2374             return 's';
2375         }
2376     }
2377 #endif
2378     else { /* In this range the fold of all other characters is their lower
2379               case */
2380         converted = toLOWER_LATIN1(c);
2381     }
2382
2383     if (UVCHR_IS_INVARIANT(converted)) {
2384         *p = (U8) converted;
2385         *lenp = 1;
2386     }
2387     else {
2388         *(p)++ = UTF8_TWO_BYTE_HI(converted);
2389         *p = UTF8_TWO_BYTE_LO(converted);
2390         *lenp = 2;
2391     }
2392
2393     return converted;
2394 }
2395
2396 UV
2397 Perl__to_uni_fold_flags(pTHX_ UV c, U8* p, STRLEN *lenp, U8 flags)
2398 {
2399
2400     /* Not currently externally documented, and subject to change
2401      *  <flags> bits meanings:
2402      *      FOLD_FLAGS_FULL  iff full folding is to be used;
2403      *      FOLD_FLAGS_LOCALE is set iff the rules from the current underlying
2404      *                        locale are to be used.
2405      *      FOLD_FLAGS_NOMIX_ASCII iff non-ASCII to ASCII folds are prohibited
2406      */
2407
2408     PERL_ARGS_ASSERT__TO_UNI_FOLD_FLAGS;
2409
2410     if (flags & FOLD_FLAGS_LOCALE) {
2411         /* Treat a UTF-8 locale as not being in locale at all */
2412         if (IN_UTF8_CTYPE_LOCALE) {
2413             flags &= ~FOLD_FLAGS_LOCALE;
2414         }
2415         else {
2416             _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2417             goto needs_full_generality;
2418         }
2419     }
2420
2421     if (c < 256) {
2422         return _to_fold_latin1((U8) c, p, lenp,
2423                             flags & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII));
2424     }
2425
2426     /* Here, above 255.  If no special needs, just use the macro */
2427     if ( ! (flags & (FOLD_FLAGS_LOCALE|FOLD_FLAGS_NOMIX_ASCII))) {
2428         uvchr_to_utf8(p, c);
2429         return CALL_FOLD_CASE(c, p, p, lenp, flags & FOLD_FLAGS_FULL);
2430     }
2431     else {  /* Otherwise, _to_utf8_fold_flags has the intelligence to deal with
2432                the special flags. */
2433         U8 utf8_c[UTF8_MAXBYTES + 1];
2434
2435       needs_full_generality:
2436         uvchr_to_utf8(utf8_c, c);
2437         return _to_utf8_fold_flags(utf8_c, p, lenp, flags);
2438     }
2439 }
2440
2441 PERL_STATIC_INLINE bool
2442 S_is_utf8_common(pTHX_ const U8 *const p, SV **swash,
2443                  const char *const swashname, SV* const invlist)
2444 {
2445     /* returns a boolean giving whether or not the UTF8-encoded character that
2446      * starts at <p> is in the swash indicated by <swashname>.  <swash>
2447      * contains a pointer to where the swash indicated by <swashname>
2448      * is to be stored; which this routine will do, so that future calls will
2449      * look at <*swash> and only generate a swash if it is not null.  <invlist>
2450      * is NULL or an inversion list that defines the swash.  If not null, it
2451      * saves time during initialization of the swash.
2452      *
2453      * Note that it is assumed that the buffer length of <p> is enough to
2454      * contain all the bytes that comprise the character.  Thus, <*p> should
2455      * have been checked before this call for mal-formedness enough to assure
2456      * that. */
2457
2458     PERL_ARGS_ASSERT_IS_UTF8_COMMON;
2459
2460     /* The API should have included a length for the UTF-8 character in <p>,
2461      * but it doesn't.  We therefore assume that p has been validated at least
2462      * as far as there being enough bytes available in it to accommodate the
2463      * character without reading beyond the end, and pass that number on to the
2464      * validating routine */
2465     if (! isUTF8_CHAR(p, p + UTF8SKIP(p))) {
2466         _force_out_malformed_utf8_message(p, p + UTF8SKIP(p),
2467                                           _UTF8_NO_CONFIDENCE_IN_CURLEN,
2468                                           1 /* Die */ );
2469         NOT_REACHED; /* NOTREACHED */
2470     }
2471
2472     if (!*swash) {
2473         U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
2474         *swash = _core_swash_init("utf8",
2475
2476                                   /* Only use the name if there is no inversion
2477                                    * list; otherwise will go out to disk */
2478                                   (invlist) ? "" : swashname,
2479
2480                                   &PL_sv_undef, 1, 0, invlist, &flags);
2481     }
2482
2483     return swash_fetch(*swash, p, TRUE) != 0;
2484 }
2485
2486 PERL_STATIC_INLINE bool
2487 S_is_utf8_common_with_len(pTHX_ const U8 *const p, const U8 * const e, SV **swash,
2488                           const char *const swashname, SV* const invlist)
2489 {
2490     /* returns a boolean giving whether or not the UTF8-encoded character that
2491      * starts at <p>, and extending no further than <e - 1> is in the swash
2492      * indicated by <swashname>.  <swash> contains a pointer to where the swash
2493      * indicated by <swashname> is to be stored; which this routine will do, so
2494      * that future calls will look at <*swash> and only generate a swash if it
2495      * is not null.  <invlist> is NULL or an inversion list that defines the
2496      * swash.  If not null, it saves time during initialization of the swash.
2497      */
2498
2499     PERL_ARGS_ASSERT_IS_UTF8_COMMON_WITH_LEN;
2500
2501     if (! isUTF8_CHAR(p, e)) {
2502         _force_out_malformed_utf8_message(p, e, 0, 1);
2503         NOT_REACHED; /* NOTREACHED */
2504     }
2505
2506     if (!*swash) {
2507         U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
2508         *swash = _core_swash_init("utf8",
2509
2510                                   /* Only use the name if there is no inversion
2511                                    * list; otherwise will go out to disk */
2512                                   (invlist) ? "" : swashname,
2513
2514                                   &PL_sv_undef, 1, 0, invlist, &flags);
2515     }
2516
2517     return swash_fetch(*swash, p, TRUE) != 0;
2518 }
2519
2520 STATIC void
2521 S_warn_on_first_deprecated_use(pTHX_ const char * const name,
2522                                      const char * const alternative,
2523                                      const bool use_locale,
2524                                      const char * const file,
2525                                      const unsigned line)
2526 {
2527     const char * key;
2528
2529     PERL_ARGS_ASSERT_WARN_ON_FIRST_DEPRECATED_USE;
2530
2531     if (ckWARN_d(WARN_DEPRECATED)) {
2532
2533         key = Perl_form(aTHX_ "%s;%d;%s;%d", name, use_locale, file, line);
2534         if (! hv_fetch(PL_seen_deprecated_macro, key, strlen(key), 0)) {
2535             if (! PL_seen_deprecated_macro) {
2536                 PL_seen_deprecated_macro = newHV();
2537             }
2538             if (! hv_store(PL_seen_deprecated_macro, key,
2539                            strlen(key), &PL_sv_undef, 0))
2540             {
2541                 Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
2542             }
2543
2544                 Perl_warner(aTHX_ WARN_DEPRECATED,
2545                             "In %s, line %d, starting in Perl v5.30, %s() will"
2546                             " require an additional parameter.  Avoid this"
2547                             " message by converting to use %s().\n",
2548                             file, line, name, alternative);
2549         }
2550     }
2551 }
2552
2553 bool
2554 Perl__is_utf8_FOO(pTHX_       U8   classnum,
2555                         const U8   *p,
2556                         const char * const name,
2557                         const char * const alternative,
2558                         const bool use_utf8,
2559                         const bool use_locale,
2560                         const char * const file,
2561                         const unsigned line)
2562 {
2563     PERL_ARGS_ASSERT__IS_UTF8_FOO;
2564
2565     warn_on_first_deprecated_use(name, alternative, use_locale, file, line);
2566
2567     if (use_utf8 && UTF8_IS_ABOVE_LATIN1(*p)) {
2568         SV * invlist;
2569
2570         switch (classnum) {
2571             case _CC_WORDCHAR:
2572             case _CC_DIGIT:
2573             case _CC_ALPHA:
2574             case _CC_LOWER:
2575             case _CC_UPPER:
2576             case _CC_PUNCT:
2577             case _CC_PRINT:
2578             case _CC_ALPHANUMERIC:
2579             case _CC_GRAPH:
2580             case _CC_CASED:
2581
2582                 return is_utf8_common(p,
2583                                       &PL_utf8_swash_ptrs[classnum],
2584                                       swash_property_names[classnum],
2585                                       PL_XPosix_ptrs[classnum]);
2586
2587             case _CC_SPACE:
2588                 return is_XPERLSPACE_high(p);
2589             case _CC_BLANK:
2590                 return is_HORIZWS_high(p);
2591             case _CC_XDIGIT:
2592                 return is_XDIGIT_high(p);
2593             case _CC_CNTRL:
2594                 return 0;
2595             case _CC_ASCII:
2596                 return 0;
2597             case _CC_VERTSPACE:
2598                 return is_VERTWS_high(p);
2599             case _CC_IDFIRST:
2600                 if (! PL_utf8_perl_idstart) {
2601                     invlist = _new_invlist_C_array(_Perl_IDStart_invlist);
2602                 }
2603                 return is_utf8_common(p, &PL_utf8_perl_idstart, "_Perl_IDStart", invlist);
2604             case _CC_IDCONT:
2605                 if (! PL_utf8_perl_idcont) {
2606                     invlist = _new_invlist_C_array(_Perl_IDCont_invlist);
2607                 }
2608                 return is_utf8_common(p, &PL_utf8_perl_idcont, "_Perl_IDCont", invlist);
2609         }
2610     }
2611
2612     /* idcont is the same as wordchar below 256 */
2613     if (classnum == _CC_IDCONT) {
2614         classnum = _CC_WORDCHAR;
2615     }
2616     else if (classnum == _CC_IDFIRST) {
2617         if (*p == '_') {
2618             return TRUE;
2619         }
2620         classnum = _CC_ALPHA;
2621     }
2622
2623     if (! use_locale) {
2624         if (! use_utf8 || UTF8_IS_INVARIANT(*p)) {
2625             return _generic_isCC(*p, classnum);
2626         }
2627
2628         return _generic_isCC(EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p + 1 )), classnum);
2629     }
2630     else {
2631         if (! use_utf8 || UTF8_IS_INVARIANT(*p)) {
2632             return isFOO_lc(classnum, *p);
2633         }
2634
2635         return isFOO_lc(classnum, EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p + 1 )));
2636     }
2637
2638     NOT_REACHED; /* NOTREACHED */
2639 }
2640
2641 bool
2642 Perl__is_utf8_FOO_with_len(pTHX_ const U8 classnum, const U8 *p,
2643                                                             const U8 * const e)
2644 {
2645     PERL_ARGS_ASSERT__IS_UTF8_FOO_WITH_LEN;
2646
2647     assert(classnum < _FIRST_NON_SWASH_CC);
2648
2649     return is_utf8_common_with_len(p,
2650                                    e,
2651                                    &PL_utf8_swash_ptrs[classnum],
2652                                    swash_property_names[classnum],
2653                                    PL_XPosix_ptrs[classnum]);
2654 }
2655
2656 bool
2657 Perl__is_utf8_perl_idstart_with_len(pTHX_ const U8 *p, const U8 * const e)
2658 {
2659     SV* invlist = NULL;
2660
2661     PERL_ARGS_ASSERT__IS_UTF8_PERL_IDSTART_WITH_LEN;
2662
2663     if (! PL_utf8_perl_idstart) {
2664         invlist = _new_invlist_C_array(_Perl_IDStart_invlist);
2665     }
2666     return is_utf8_common_with_len(p, e, &PL_utf8_perl_idstart,
2667                                       "_Perl_IDStart", invlist);
2668 }
2669
2670 bool
2671 Perl__is_utf8_xidstart(pTHX_ const U8 *p)
2672 {
2673     PERL_ARGS_ASSERT__IS_UTF8_XIDSTART;
2674
2675     if (*p == '_')
2676         return TRUE;
2677     return is_utf8_common(p, &PL_utf8_xidstart, "XIdStart", NULL);
2678 }
2679
2680 bool
2681 Perl__is_utf8_perl_idcont_with_len(pTHX_ const U8 *p, const U8 * const e)
2682 {
2683     SV* invlist = NULL;
2684
2685     PERL_ARGS_ASSERT__IS_UTF8_PERL_IDCONT_WITH_LEN;
2686
2687     if (! PL_utf8_perl_idcont) {
2688         invlist = _new_invlist_C_array(_Perl_IDCont_invlist);
2689     }
2690     return is_utf8_common_with_len(p, e, &PL_utf8_perl_idcont,
2691                                    "_Perl_IDCont", invlist);
2692 }
2693
2694 bool
2695 Perl__is_utf8_idcont(pTHX_ const U8 *p)
2696 {
2697     PERL_ARGS_ASSERT__IS_UTF8_IDCONT;
2698
2699     return is_utf8_common(p, &PL_utf8_idcont, "IdContinue", NULL);
2700 }
2701
2702 bool
2703 Perl__is_utf8_xidcont(pTHX_ const U8 *p)
2704 {
2705     PERL_ARGS_ASSERT__IS_UTF8_XIDCONT;
2706
2707     return is_utf8_common(p, &PL_utf8_idcont, "XIdContinue", NULL);
2708 }
2709
2710 bool
2711 Perl__is_utf8_mark(pTHX_ const U8 *p)
2712 {
2713     PERL_ARGS_ASSERT__IS_UTF8_MARK;
2714
2715     return is_utf8_common(p, &PL_utf8_mark, "IsM", NULL);
2716 }
2717
2718 /*
2719 =for apidoc to_utf8_case
2720
2721 Instead use the appropriate one of L</toUPPER_utf8>,
2722 L</toTITLE_utf8>,
2723 L</toLOWER_utf8>,
2724 or L</toFOLD_utf8>.
2725
2726 C<p> contains the pointer to the UTF-8 string encoding
2727 the character that is being converted.  This routine assumes that the character
2728 at C<p> is well-formed.
2729
2730 C<ustrp> is a pointer to the character buffer to put the
2731 conversion result to.  C<lenp> is a pointer to the length
2732 of the result.
2733
2734 C<swashp> is a pointer to the swash to use.
2735
2736 Both the special and normal mappings are stored in F<lib/unicore/To/Foo.pl>,
2737 and loaded by C<SWASHNEW>, using F<lib/utf8_heavy.pl>.  C<special> (usually,
2738 but not always, a multicharacter mapping), is tried first.
2739
2740 C<special> is a string, normally C<NULL> or C<"">.  C<NULL> means to not use
2741 any special mappings; C<""> means to use the special mappings.  Values other
2742 than these two are treated as the name of the hash containing the special
2743 mappings, like C<"utf8::ToSpecLower">.
2744
2745 C<normal> is a string like C<"ToLower"> which means the swash
2746 C<%utf8::ToLower>.
2747
2748 Code points above the platform's C<IV_MAX> will raise a deprecation warning,
2749 unless those are turned off.
2750
2751 =cut */
2752
2753 UV
2754 Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp,
2755                         SV **swashp, const char *normal, const char *special)
2756 {
2757     PERL_ARGS_ASSERT_TO_UTF8_CASE;
2758
2759     return _to_utf8_case(valid_utf8_to_uvchr(p, NULL), p, ustrp, lenp, swashp, normal, special);
2760 }
2761
2762     /* change namve uv1 to 'from' */
2763 STATIC UV
2764 S__to_utf8_case(pTHX_ const UV uv1, const U8 *p, U8* ustrp, STRLEN *lenp,
2765                 SV **swashp, const char *normal, const char *special)
2766 {
2767     STRLEN len = 0;
2768
2769     PERL_ARGS_ASSERT__TO_UTF8_CASE;
2770
2771     /* For code points that don't change case, we already know that the output
2772      * of this function is the unchanged input, so we can skip doing look-ups
2773      * for them.  Unfortunately the case-changing code points are scattered
2774      * around.  But there are some long consecutive ranges where there are no
2775      * case changing code points.  By adding tests, we can eliminate the lookup
2776      * for all the ones in such ranges.  This is currently done here only for
2777      * just a few cases where the scripts are in common use in modern commerce
2778      * (and scripts adjacent to those which can be included without additional
2779      * tests). */
2780
2781     if (uv1 >= 0x0590) {
2782         /* This keeps from needing further processing the code points most
2783          * likely to be used in the following non-cased scripts: Hebrew,
2784          * Arabic, Syriac, Thaana, NKo, Samaritan, Mandaic, Devanagari,
2785          * Bengali, Gurmukhi, Gujarati, Oriya, Tamil, Telugu, Kannada,
2786          * Malayalam, Sinhala, Thai, Lao, Tibetan, Myanmar */
2787         if (uv1 < 0x10A0) {
2788             goto cases_to_self;
2789         }
2790
2791         /* The following largish code point ranges also don't have case
2792          * changes, but khw didn't think they warranted extra tests to speed
2793          * them up (which would slightly slow down everything else above them):
2794          * 1100..139F   Hangul Jamo, Ethiopic
2795          * 1400..1CFF   Unified Canadian Aboriginal Syllabics, Ogham, Runic,
2796          *              Tagalog, Hanunoo, Buhid, Tagbanwa, Khmer, Mongolian,
2797          *              Limbu, Tai Le, New Tai Lue, Buginese, Tai Tham,
2798          *              Combining Diacritical Marks Extended, Balinese,
2799          *              Sundanese, Batak, Lepcha, Ol Chiki
2800          * 2000..206F   General Punctuation
2801          */
2802
2803         if (uv1 >= 0x2D30) {
2804
2805             /* This keeps the from needing further processing the code points
2806              * most likely to be used in the following non-cased major scripts:
2807              * CJK, Katakana, Hiragana, plus some less-likely scripts.
2808              *
2809              * (0x2D30 above might have to be changed to 2F00 in the unlikely
2810              * event that Unicode eventually allocates the unused block as of
2811              * v8.0 2FE0..2FEF to code points that are cased.  khw has verified
2812              * that the test suite will start having failures to alert you
2813              * should that happen) */
2814             if (uv1 < 0xA640) {
2815                 goto cases_to_self;
2816             }
2817
2818             if (uv1 >= 0xAC00) {
2819                 if (UNLIKELY(UNICODE_IS_SURROGATE(uv1))) {
2820                     if (ckWARN_d(WARN_SURROGATE)) {
2821                         const char* desc = (PL_op) ? OP_DESC(PL_op) : normal;
2822                         Perl_warner(aTHX_ packWARN(WARN_SURROGATE),
2823                             "Operation \"%s\" returns its argument for UTF-16 surrogate U+%04" UVXf, desc, uv1);
2824                     }
2825                     goto cases_to_self;
2826                 }
2827
2828                 /* AC00..FAFF Catches Hangul syllables and private use, plus
2829                  * some others */
2830                 if (uv1 < 0xFB00) {
2831                     goto cases_to_self;
2832
2833                 }
2834
2835                 if (UNLIKELY(UNICODE_IS_SUPER(uv1))) {
2836                     if (   UNLIKELY(uv1 > MAX_NON_DEPRECATED_CP)
2837                         && ckWARN_d(WARN_DEPRECATED))
2838                     {
2839                         Perl_warner(aTHX_ packWARN(WARN_DEPRECATED),
2840                                 cp_above_legal_max, uv1, MAX_NON_DEPRECATED_CP);
2841                     }
2842                     if (ckWARN_d(WARN_NON_UNICODE)) {
2843                         const char* desc = (PL_op) ? OP_DESC(PL_op) : normal;
2844                         Perl_warner(aTHX_ packWARN(WARN_NON_UNICODE),
2845                             "Operation \"%s\" returns its argument for non-Unicode code point 0x%04" UVXf, desc, uv1);
2846                     }
2847                     goto cases_to_self;
2848                 }
2849 #ifdef HIGHEST_CASE_CHANGING_CP_FOR_USE_ONLY_BY_UTF8_DOT_C
2850                 if (UNLIKELY(uv1
2851                     > HIGHEST_CASE_CHANGING_CP_FOR_USE_ONLY_BY_UTF8_DOT_C))
2852                 {
2853
2854                     /* As of this writing, this means we avoid swash creation
2855                      * for anything beyond low Plane 1 */
2856                     goto cases_to_self;
2857                 }
2858 #endif
2859             }
2860         }
2861
2862         /* Note that non-characters are perfectly legal, so no warning should
2863          * be given.  There are so few of them, that it isn't worth the extra
2864          * tests to avoid swash creation */
2865     }
2866
2867     if (!*swashp) /* load on-demand */
2868          *swashp = _core_swash_init("utf8", normal, &PL_sv_undef, 4, 0, NULL, NULL);
2869
2870     if (special) {
2871          /* It might be "special" (sometimes, but not always,
2872           * a multicharacter mapping) */
2873          HV *hv = NULL;
2874          SV **svp;
2875
2876          /* If passed in the specials name, use that; otherwise use any
2877           * given in the swash */
2878          if (*special != '\0') {
2879             hv = get_hv(special, 0);
2880         }
2881         else {
2882             svp = hv_fetchs(MUTABLE_HV(SvRV(*swashp)), "SPECIALS", 0);
2883             if (svp) {
2884                 hv = MUTABLE_HV(SvRV(*svp));
2885             }
2886         }
2887
2888          if (hv
2889              && (svp = hv_fetch(hv, (const char*)p, UVCHR_SKIP(uv1), FALSE))
2890              && (*svp))
2891          {
2892              const char *s;
2893
2894               s = SvPV_const(*svp, len);
2895               if (len == 1)
2896                   /* EIGHTBIT */
2897                    len = uvchr_to_utf8(ustrp, *(U8*)s) - ustrp;
2898               else {
2899                    Copy(s, ustrp, len, U8);
2900               }
2901          }
2902     }
2903
2904     if (!len && *swashp) {
2905         const UV uv2 = swash_fetch(*swashp, p, TRUE /* => is UTF-8 */);
2906
2907          if (uv2) {
2908               /* It was "normal" (a single character mapping). */
2909               len = uvchr_to_utf8(ustrp, uv2) - ustrp;
2910          }
2911     }
2912
2913     if (len) {
2914         if (lenp) {
2915             *lenp = len;
2916         }
2917         return valid_utf8_to_uvchr(ustrp, 0);
2918     }
2919
2920     /* Here, there was no mapping defined, which means that the code point maps
2921      * to itself.  Return the inputs */
2922   cases_to_self:
2923     len = UTF8SKIP(p);
2924     if (p != ustrp) {   /* Don't copy onto itself */
2925         Copy(p, ustrp, len, U8);
2926     }
2927
2928     if (lenp)
2929          *lenp = len;
2930
2931     return uv1;
2932
2933 }
2934
2935 STATIC UV
2936 S_check_locale_boundary_crossing(pTHX_ const U8* const p, const UV result, U8* const ustrp, STRLEN *lenp)
2937 {
2938     /* This is called when changing the case of a UTF-8-encoded character above
2939      * the Latin1 range, and the operation is in a non-UTF-8 locale.  If the
2940      * result contains a character that crosses the 255/256 boundary, disallow
2941      * the change, and return the original code point.  See L<perlfunc/lc> for
2942      * why;
2943      *
2944      * p        points to the original string whose case was changed; assumed
2945      *          by this routine to be well-formed
2946      * result   the code point of the first character in the changed-case string
2947      * ustrp    points to the changed-case string (<result> represents its first char)
2948      * lenp     points to the length of <ustrp> */
2949
2950     UV original;    /* To store the first code point of <p> */
2951
2952     PERL_ARGS_ASSERT_CHECK_LOCALE_BOUNDARY_CROSSING;
2953
2954     assert(UTF8_IS_ABOVE_LATIN1(*p));
2955
2956     /* We know immediately if the first character in the string crosses the
2957      * boundary, so can skip */
2958     if (result > 255) {
2959
2960         /* Look at every character in the result; if any cross the
2961         * boundary, the whole thing is disallowed */
2962         U8* s = ustrp + UTF8SKIP(ustrp);
2963         U8* e = ustrp + *lenp;
2964         while (s < e) {
2965             if (! UTF8_IS_ABOVE_LATIN1(*s)) {
2966                 goto bad_crossing;
2967             }
2968             s += UTF8SKIP(s);
2969         }
2970
2971         /* Here, no characters crossed, result is ok as-is, but we warn. */
2972         _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG(p, p + UTF8SKIP(p));
2973         return result;
2974     }
2975
2976   bad_crossing:
2977
2978     /* Failed, have to return the original */
2979     original = valid_utf8_to_uvchr(p, lenp);
2980
2981     /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */
2982     Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
2983                            "Can't do %s(\"\\x{%" UVXf "}\") on non-UTF-8 locale; "
2984                            "resolved to \"\\x{%" UVXf "}\".",
2985                            OP_DESC(PL_op),
2986                            original,
2987                            original);
2988     Copy(p, ustrp, *lenp, char);
2989     return original;
2990 }
2991
2992 /* The process for changing the case is essentially the same for the four case
2993  * change types, except there are complications for folding.  Otherwise the
2994  * difference is only which case to change to.  To make sure that they all do
2995  * the same thing, the bodies of the functions are extracted out into the
2996  * following two macros.  The functions are written with the same variable
2997  * names, and these are known and used inside these macros.  It would be
2998  * better, of course, to have inline functions to do it, but since different
2999  * macros are called, depending on which case is being changed to, this is not
3000  * feasible in C (to khw's knowledge).  Two macros are created so that the fold
3001  * function can start with the common start macro, then finish with its special
3002  * handling; while the other three cases can just use the common end macro.
3003  *
3004  * The algorithm is to use the proper (passed in) macro or function to change
3005  * the case for code points that are below 256.  The macro is used if using
3006  * locale rules for the case change; the function if not.  If the code point is
3007  * above 255, it is computed from the input UTF-8, and another macro is called
3008  * to do the conversion.  If necessary, the output is converted to UTF-8.  If
3009  * using a locale, we have to check that the change did not cross the 255/256
3010  * boundary, see check_locale_boundary_crossing() for further details.
3011  *
3012  * The macros are split with the correct case change for the below-256 case
3013  * stored into 'result', and in the middle of an else clause for the above-255
3014  * case.  At that point in the 'else', 'result' is not the final result, but is
3015  * the input code point calculated from the UTF-8.  The fold code needs to
3016  * realize all this and take it from there.
3017  *
3018  * If you read the two macros as sequential, it's easier to understand what's
3019  * going on. */
3020 #define CASE_CHANGE_BODY_START(locale_flags, LC_L1_change_macro, L1_func,    \
3021                                L1_func_extra_param)                          \
3022     if (flags & (locale_flags)) {                                            \
3023         /* Treat a UTF-8 locale as not being in locale at all */             \
3024         if (IN_UTF8_CTYPE_LOCALE) {                                          \
3025             flags &= ~(locale_flags);                                        \
3026         }                                                                    \
3027         else {                                                               \
3028             _CHECK_AND_WARN_PROBLEMATIC_LOCALE;                              \
3029         }                                                                    \
3030     }                                                                        \
3031                                                                              \
3032     if (UTF8_IS_INVARIANT(*p)) {                                             \
3033         if (flags & (locale_flags)) {                                        \
3034             result = LC_L1_change_macro(*p);                                 \
3035         }                                                                    \
3036         else {                                                               \
3037             return L1_func(*p, ustrp, lenp, L1_func_extra_param);            \
3038         }                                                                    \
3039     }                                                                        \
3040     else if UTF8_IS_DOWNGRADEABLE_START(*p) {                                \
3041         if (flags & (locale_flags)) {                                        \
3042             result = LC_L1_change_macro(EIGHT_BIT_UTF8_TO_NATIVE(*p,         \
3043                                                                  *(p+1)));   \
3044         }                                                                    \
3045         else {                                                               \
3046             return L1_func(EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1)),             \
3047                            ustrp, lenp,  L1_func_extra_param);               \
3048         }                                                                    \
3049     }                                                                        \
3050     else {  /* malformed UTF-8 */                                            \
3051         result = valid_utf8_to_uvchr(p, NULL);                               \
3052
3053 #define CASE_CHANGE_BODY_END(locale_flags, change_macro)                     \
3054         result = change_macro(result, p, ustrp, lenp);                       \
3055                                                                              \
3056         if (flags & (locale_flags)) {                                        \
3057             result = check_locale_boundary_crossing(p, result, ustrp, lenp); \
3058         }                                                                    \
3059         return result;                                                       \
3060     }                                                                        \
3061                                                                              \
3062     /* Here, used locale rules.  Convert back to UTF-8 */                    \
3063     if (UTF8_IS_INVARIANT(result)) {                                         \
3064         *ustrp = (U8) result;                                                \
3065         *lenp = 1;                                                           \
3066     }                                                                        \
3067     else {                                                                   \
3068         *ustrp = UTF8_EIGHT_BIT_HI((U8) result);                             \
3069         *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);                       \
3070         *lenp = 2;                                                           \
3071     }                                                                        \
3072                                                                              \
3073     return result;
3074
3075 /*
3076 =for apidoc to_utf8_upper
3077
3078 Instead use L</toUPPER_utf8>.
3079
3080 =cut */
3081
3082 /* Not currently externally documented, and subject to change:
3083  * <flags> is set iff iff the rules from the current underlying locale are to
3084  *         be used. */
3085
3086 UV
3087 Perl__to_utf8_upper_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, bool flags)
3088 {
3089     UV result;
3090
3091     PERL_ARGS_ASSERT__TO_UTF8_UPPER_FLAGS;
3092
3093     /* ~0 makes anything non-zero in 'flags' mean we are using locale rules */
3094     /* 2nd char of uc(U+DF) is 'S' */
3095     CASE_CHANGE_BODY_START(~0, toUPPER_LC, _to_upper_title_latin1, 'S');
3096     CASE_CHANGE_BODY_END  (~0, CALL_UPPER_CASE);
3097 }
3098
3099 /*
3100 =for apidoc to_utf8_title
3101
3102 Instead use L</toTITLE_utf8>.
3103
3104 =cut */
3105
3106 /* Not currently externally documented, and subject to change:
3107  * <flags> is set iff the rules from the current underlying locale are to be
3108  *         used.  Since titlecase is not defined in POSIX, for other than a
3109  *         UTF-8 locale, uppercase is used instead for code points < 256.
3110  */
3111
3112 UV
3113 Perl__to_utf8_title_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, bool flags)
3114 {
3115     UV result;
3116
3117     PERL_ARGS_ASSERT__TO_UTF8_TITLE_FLAGS;
3118
3119     /* 2nd char of ucfirst(U+DF) is 's' */
3120     CASE_CHANGE_BODY_START(~0, toUPPER_LC, _to_upper_title_latin1, 's');
3121     CASE_CHANGE_BODY_END  (~0, CALL_TITLE_CASE);
3122 }
3123
3124 /*
3125 =for apidoc to_utf8_lower
3126
3127 Instead use L</toLOWER_utf8>.
3128
3129 =cut */
3130
3131 /* Not currently externally documented, and subject to change:
3132  * <flags> is set iff iff the rules from the current underlying locale are to
3133  *         be used.
3134  */
3135
3136 UV
3137 Perl__to_utf8_lower_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, bool flags)
3138 {
3139     UV result;
3140
3141     PERL_ARGS_ASSERT__TO_UTF8_LOWER_FLAGS;
3142
3143     CASE_CHANGE_BODY_START(~0, toLOWER_LC, to_lower_latin1, 0 /* 0 is dummy */)
3144     CASE_CHANGE_BODY_END  (~0, CALL_LOWER_CASE)
3145 }
3146
3147 /*
3148 =for apidoc to_utf8_fold
3149
3150 Instead use L</toFOLD_utf8>.
3151
3152 =cut */
3153
3154 /* Not currently externally documented, and subject to change,
3155  * in <flags>
3156  *      bit FOLD_FLAGS_LOCALE is set iff the rules from the current underlying
3157  *                            locale are to be used.
3158  *      bit FOLD_FLAGS_FULL   is set iff full case folds are to be used;
3159  *                            otherwise simple folds
3160  *      bit FOLD_FLAGS_NOMIX_ASCII is set iff folds of non-ASCII to ASCII are
3161  *                            prohibited
3162  */
3163
3164 UV
3165 Perl__to_utf8_fold_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, U8 flags)
3166 {
3167     UV result;
3168
3169     PERL_ARGS_ASSERT__TO_UTF8_FOLD_FLAGS;
3170
3171     /* These are mutually exclusive */
3172     assert (! ((flags & FOLD_FLAGS_LOCALE) && (flags & FOLD_FLAGS_NOMIX_ASCII)));
3173
3174     assert(p != ustrp); /* Otherwise overwrites */
3175
3176     CASE_CHANGE_BODY_START(FOLD_FLAGS_LOCALE, toFOLD_LC, _to_fold_latin1,
3177                  ((flags) & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII)));
3178
3179         result = CALL_FOLD_CASE(result, p, ustrp, lenp, flags & FOLD_FLAGS_FULL);
3180
3181         if (flags & FOLD_FLAGS_LOCALE) {
3182
3183 #           define LONG_S_T      LATIN_SMALL_LIGATURE_LONG_S_T_UTF8
3184             const unsigned int long_s_t_len    = sizeof(LONG_S_T) - 1;
3185
3186 #         ifdef LATIN_CAPITAL_LETTER_SHARP_S_UTF8
3187 #           define CAP_SHARP_S   LATIN_CAPITAL_LETTER_SHARP_S_UTF8
3188
3189             const unsigned int cap_sharp_s_len = sizeof(CAP_SHARP_S) - 1;
3190
3191             /* Special case these two characters, as what normally gets
3192              * returned under locale doesn't work */
3193             if (UTF8SKIP(p) == cap_sharp_s_len
3194                 && memEQ((char *) p, CAP_SHARP_S, cap_sharp_s_len))
3195             {
3196                 /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */
3197                 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
3198                               "Can't do fc(\"\\x{1E9E}\") on non-UTF-8 locale; "
3199                               "resolved to \"\\x{17F}\\x{17F}\".");
3200                 goto return_long_s;
3201             }
3202             else
3203 #endif
3204                  if (UTF8SKIP(p) == long_s_t_len
3205                      && memEQ((char *) p, LONG_S_T, long_s_t_len))
3206             {
3207                 /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */
3208                 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
3209                               "Can't do fc(\"\\x{FB05}\") on non-UTF-8 locale; "
3210                               "resolved to \"\\x{FB06}\".");
3211                 goto return_ligature_st;
3212             }
3213
3214 #if    UNICODE_MAJOR_VERSION   == 3         \
3215     && UNICODE_DOT_VERSION     == 0         \
3216     && UNICODE_DOT_DOT_VERSION == 1
3217 #           define DOTTED_I   LATIN_CAPITAL_LETTER_I_WITH_DOT_ABOVE_UTF8
3218
3219             /* And special case this on this Unicode version only, for the same
3220              * reaons the other two are special cased.  They would cross the
3221              * 255/256 boundary which is forbidden under /l, and so the code
3222              * wouldn't catch that they are equivalent (which they are only in
3223              * this release) */
3224             else if (UTF8SKIP(p) == sizeof(DOTTED_I) - 1
3225                      && memEQ((char *) p, DOTTED_I, sizeof(DOTTED_I) - 1))
3226             {
3227                 /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */
3228                 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
3229                               "Can't do fc(\"\\x{0130}\") on non-UTF-8 locale; "
3230                               "resolved to \"\\x{0131}\".");
3231                 goto return_dotless_i;
3232             }
3233 #endif
3234
3235             return check_locale_boundary_crossing(p, result, ustrp, lenp);
3236         }
3237         else if (! (flags & FOLD_FLAGS_NOMIX_ASCII)) {
3238             return result;
3239         }
3240         else {
3241             /* This is called when changing the case of a UTF-8-encoded
3242              * character above the ASCII range, and the result should not
3243              * contain an ASCII character. */
3244
3245             UV original;    /* To store the first code point of <p> */
3246
3247             /* Look at every character in the result; if any cross the
3248             * boundary, the whole thing is disallowed */
3249             U8* s = ustrp;
3250             U8* e = ustrp + *lenp;
3251             while (s < e) {
3252                 if (isASCII(*s)) {
3253                     /* Crossed, have to return the original */
3254                     original = valid_utf8_to_uvchr(p, lenp);
3255
3256                     /* But in these instances, there is an alternative we can
3257                      * return that is valid */
3258                     if (original == LATIN_SMALL_LETTER_SHARP_S
3259 #ifdef LATIN_CAPITAL_LETTER_SHARP_S /* not defined in early Unicode releases */
3260                         || original == LATIN_CAPITAL_LETTER_SHARP_S
3261 #endif
3262                     ) {
3263                         goto return_long_s;
3264                     }
3265                     else if (original == LATIN_SMALL_LIGATURE_LONG_S_T) {
3266                         goto return_ligature_st;
3267                     }
3268 #if    UNICODE_MAJOR_VERSION   == 3         \
3269     && UNICODE_DOT_VERSION     == 0         \
3270     && UNICODE_DOT_DOT_VERSION == 1
3271
3272                     else if (original == LATIN_CAPITAL_LETTER_I_WITH_DOT_ABOVE) {
3273                         goto return_dotless_i;
3274                     }
3275 #endif
3276                     Copy(p, ustrp, *lenp, char);
3277                     return original;
3278                 }
3279                 s += UTF8SKIP(s);
3280             }
3281
3282             /* Here, no characters crossed, result is ok as-is */
3283             return result;
3284         }
3285     }
3286
3287     /* Here, used locale rules.  Convert back to UTF-8 */
3288     if (UTF8_IS_INVARIANT(result)) {
3289         *ustrp = (U8) result;
3290         *lenp = 1;
3291     }
3292     else {
3293         *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
3294         *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
3295         *lenp = 2;
3296     }
3297
3298     return result;
3299
3300   return_long_s:
3301     /* Certain folds to 'ss' are prohibited by the options, but they do allow
3302      * folds to a string of two of these characters.  By returning this
3303      * instead, then, e.g.,
3304      *      fc("\x{1E9E}") eq fc("\x{17F}\x{17F}")
3305      * works. */
3306
3307     *lenp = 2 * sizeof(LATIN_SMALL_LETTER_LONG_S_UTF8) - 2;
3308     Copy(LATIN_SMALL_LETTER_LONG_S_UTF8 LATIN_SMALL_LETTER_LONG_S_UTF8,
3309         ustrp, *lenp, U8);
3310     return LATIN_SMALL_LETTER_LONG_S;
3311
3312   return_ligature_st:
3313     /* Two folds to 'st' are prohibited by the options; instead we pick one and
3314      * have the other one fold to it */
3315
3316     *lenp = sizeof(LATIN_SMALL_LIGATURE_ST_UTF8) - 1;
3317     Copy(LATIN_SMALL_LIGATURE_ST_UTF8, ustrp, *lenp, U8);
3318     return LATIN_SMALL_LIGATURE_ST;
3319
3320 #if    UNICODE_MAJOR_VERSION   == 3         \
3321     && UNICODE_DOT_VERSION     == 0         \
3322     && UNICODE_DOT_DOT_VERSION == 1
3323
3324   return_dotless_i:
3325     *lenp = sizeof(LATIN_SMALL_LETTER_DOTLESS_I_UTF8) - 1;
3326     Copy(LATIN_SMALL_LETTER_DOTLESS_I_UTF8, ustrp, *lenp, U8);
3327     return LATIN_SMALL_LETTER_DOTLESS_I;
3328
3329 #endif
3330
3331 }
3332
3333 /* Note:
3334  * Returns a "swash" which is a hash described in utf8.c:Perl_swash_fetch().
3335  * C<pkg> is a pointer to a package name for SWASHNEW, should be "utf8".
3336  * For other parameters, see utf8::SWASHNEW in lib/utf8_heavy.pl.
3337  */
3338
3339 SV*
3340 Perl_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none)
3341 {
3342     PERL_ARGS_ASSERT_SWASH_INIT;
3343
3344     /* Returns a copy of a swash initiated by the called function.  This is the
3345      * public interface, and returning a copy prevents others from doing
3346      * mischief on the original */
3347
3348     return newSVsv(_core_swash_init(pkg, name, listsv, minbits, none, NULL, NULL));
3349 }
3350
3351 SV*
3352 Perl__core_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none, SV* invlist, U8* const flags_p)
3353 {
3354
3355     /*NOTE NOTE NOTE - If you want to use "return" in this routine you MUST
3356      * use the following define */
3357
3358 #define CORE_SWASH_INIT_RETURN(x)   \
3359     PL_curpm= old_PL_curpm;         \
3360     return x
3361
3362     /* Initialize and return a swash, creating it if necessary.  It does this
3363      * by calling utf8_heavy.pl in the general case.  The returned value may be
3364      * the swash's inversion list instead if the input parameters allow it.
3365      * Which is returned should be immaterial to callers, as the only
3366      * operations permitted on a swash, swash_fetch(), _get_swash_invlist(),
3367      * and swash_to_invlist() handle both these transparently.
3368      *
3369      * This interface should only be used by functions that won't destroy or
3370      * adversely change the swash, as doing so affects all other uses of the
3371      * swash in the program; the general public should use 'Perl_swash_init'
3372      * instead.
3373      *
3374      * pkg  is the name of the package that <name> should be in.
3375      * name is the name of the swash to find.  Typically it is a Unicode
3376      *      property name, including user-defined ones
3377      * listsv is a string to initialize the swash with.  It must be of the form
3378      *      documented as the subroutine return value in
3379      *      L<perlunicode/User-Defined Character Properties>
3380      * minbits is the number of bits required to represent each data element.
3381      *      It is '1' for binary properties.
3382      * none I (khw) do not understand this one, but it is used only in tr///.
3383      * invlist is an inversion list to initialize the swash with (or NULL)
3384      * flags_p if non-NULL is the address of various input and output flag bits
3385      *      to the routine, as follows:  ('I' means is input to the routine;
3386      *      'O' means output from the routine.  Only flags marked O are
3387      *      meaningful on return.)
3388      *  _CORE_SWASH_INIT_USER_DEFINED_PROPERTY indicates if the swash
3389      *      came from a user-defined property.  (I O)
3390      *  _CORE_SWASH_INIT_RETURN_IF_UNDEF indicates that instead of croaking
3391      *      when the swash cannot be located, to simply return NULL. (I)
3392      *  _CORE_SWASH_INIT_ACCEPT_INVLIST indicates that the caller will accept a
3393      *      return of an inversion list instead of a swash hash if this routine
3394      *      thinks that would result in faster execution of swash_fetch() later
3395      *      on. (I)
3396      *
3397      * Thus there are three possible inputs to find the swash: <name>,
3398      * <listsv>, and <invlist>.  At least one must be specified.  The result
3399      * will be the union of the specified ones, although <listsv>'s various
3400      * actions can intersect, etc. what <name> gives.  To avoid going out to
3401      * disk at all, <invlist> should specify completely what the swash should
3402      * have, and <listsv> should be &PL_sv_undef and <name> should be "".
3403      *
3404      * <invlist> is only valid for binary properties */
3405
3406     PMOP *old_PL_curpm= PL_curpm; /* save away the old PL_curpm */
3407
3408     SV* retval = &PL_sv_undef;
3409     HV* swash_hv = NULL;
3410     const int invlist_swash_boundary =
3411         (flags_p && *flags_p & _CORE_SWASH_INIT_ACCEPT_INVLIST)
3412         ? 512    /* Based on some benchmarking, but not extensive, see commit
3413                     message */
3414         : -1;   /* Never return just an inversion list */
3415
3416     assert(listsv != &PL_sv_undef || strNE(name, "") || invlist);
3417     assert(! invlist || minbits == 1);
3418
3419     PL_curpm= NULL; /* reset PL_curpm so that we dont get confused between the regex
3420                        that triggered the swash init and the swash init perl logic itself.
3421                        See perl #122747 */
3422
3423     /* If data was passed in to go out to utf8_heavy to find the swash of, do
3424      * so */
3425     if (listsv != &PL_sv_undef || strNE(name, "")) {
3426         dSP;
3427         const size_t pkg_len = strlen(pkg);
3428         const size_t name_len = strlen(name);
3429         HV * const stash = gv_stashpvn(pkg, pkg_len, 0);
3430         SV* errsv_save;
3431         GV *method;
3432
3433         PERL_ARGS_ASSERT__CORE_SWASH_INIT;
3434
3435         PUSHSTACKi(PERLSI_MAGIC);
3436         ENTER;
3437         SAVEHINTS();
3438         save_re_context();
3439         /* We might get here via a subroutine signature which uses a utf8
3440          * parameter name, at which point PL_subname will have been set
3441          * but not yet used. */
3442         save_item(PL_subname);
3443         if (PL_parser && PL_parser->error_count)
3444             SAVEI8(PL_parser->error_count), PL_parser->error_count = 0;
3445         method = gv_fetchmeth(stash, "SWASHNEW", 8, -1);
3446         if (!method) {  /* demand load UTF-8 */
3447             ENTER;
3448             if ((errsv_save = GvSV(PL_errgv))) SAVEFREESV(errsv_save);
3449             GvSV(PL_errgv) = NULL;
3450 #ifndef NO_TAINT_SUPPORT
3451             /* It is assumed that callers of this routine are not passing in
3452              * any user derived data.  */
3453             /* Need to do this after save_re_context() as it will set
3454              * PL_tainted to 1 while saving $1 etc (see the code after getrx:
3455              * in Perl_magic_get).  Even line to create errsv_save can turn on
3456              * PL_tainted.  */
3457             SAVEBOOL(TAINT_get);
3458             TAINT_NOT;
3459 #endif
3460             Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, newSVpvn(pkg,pkg_len),
3461                              NULL);
3462             {
3463                 /* Not ERRSV, as there is no need to vivify a scalar we are
3464                    about to discard. */
3465                 SV * const errsv = GvSV(PL_errgv);
3466                 if (!SvTRUE(errsv)) {
3467                     GvSV(PL_errgv) = SvREFCNT_inc_simple(errsv_save);
3468                     SvREFCNT_dec(errsv);
3469                 }
3470             }
3471             LEAVE;
3472         }
3473         SPAGAIN;
3474         PUSHMARK(SP);
3475         EXTEND(SP,5);
3476         mPUSHp(pkg, pkg_len);
3477         mPUSHp(name, name_len);
3478         PUSHs(listsv);
3479         mPUSHi(minbits);
3480         mPUSHi(none);
3481         PUTBACK;
3482         if ((errsv_save = GvSV(PL_errgv))) SAVEFREESV(errsv_save);
3483         GvSV(PL_errgv) = NULL;
3484         /* If we already have a pointer to the method, no need to use
3485          * call_method() to repeat the lookup.  */
3486         if (method
3487             ? call_sv(MUTABLE_SV(method), G_SCALAR)
3488             : call_sv(newSVpvs_flags("SWASHNEW", SVs_TEMP), G_SCALAR | G_METHOD))
3489         {
3490             retval = *PL_stack_sp--;
3491             SvREFCNT_inc(retval);
3492         }
3493         {
3494             /* Not ERRSV.  See above. */
3495             SV * const errsv = GvSV(PL_errgv);
3496             if (!SvTRUE(errsv)) {
3497                 GvSV(PL_errgv) = SvREFCNT_inc_simple(errsv_save);
3498                 SvREFCNT_dec(errsv);
3499             }
3500         }
3501         LEAVE;
3502         POPSTACK;
3503         if (IN_PERL_COMPILETIME) {
3504             CopHINTS_set(PL_curcop, PL_hints);
3505         }
3506         if (!SvROK(retval) || SvTYPE(SvRV(retval)) != SVt_PVHV) {
3507             if (SvPOK(retval)) {
3508
3509                 /* If caller wants to handle missing properties, let them */
3510                 if (flags_p && *flags_p & _CORE_SWASH_INIT_RETURN_IF_UNDEF) {
3511                     CORE_SWASH_INIT_RETURN(NULL);
3512                 }
3513                 Perl_croak(aTHX_
3514                            "Can't find Unicode property definition \"%" SVf "\"",
3515                            SVfARG(retval));
3516                 NOT_REACHED; /* NOTREACHED */
3517             }
3518         }
3519     } /* End of calling the module to find the swash */
3520
3521     /* If this operation fetched a swash, and we will need it later, get it */
3522     if (retval != &PL_sv_undef
3523         && (minbits == 1 || (flags_p
3524                             && ! (*flags_p
3525                                   & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY))))
3526     {
3527         swash_hv = MUTABLE_HV(SvRV(retval));
3528
3529         /* If we don't already know that there is a user-defined component to
3530          * this swash, and the user has indicated they wish to know if there is
3531          * one (by passing <flags_p>), find out */
3532         if (flags_p && ! (*flags_p & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY)) {
3533             SV** user_defined = hv_fetchs(swash_hv, "USER_DEFINED", FALSE);
3534             if (user_defined && SvUV(*user_defined)) {
3535                 *flags_p |= _CORE_SWASH_INIT_USER_DEFINED_PROPERTY;
3536             }
3537         }
3538     }
3539
3540     /* Make sure there is an inversion list for binary properties */
3541     if (minbits == 1) {
3542         SV** swash_invlistsvp = NULL;
3543         SV* swash_invlist = NULL;
3544         bool invlist_in_swash_is_valid = FALSE;
3545         bool swash_invlist_unclaimed = FALSE; /* whether swash_invlist has
3546                                             an unclaimed reference count */
3547
3548         /* If this operation fetched a swash, get its already existing
3549          * inversion list, or create one for it */
3550
3551         if (swash_hv) {
3552             swash_invlistsvp = hv_fetchs(swash_hv, "V", FALSE);
3553             if (swash_invlistsvp) {
3554                 swash_invlist = *swash_invlistsvp;
3555                 invlist_in_swash_is_valid = TRUE;
3556             }
3557             else {
3558                 swash_invlist = _swash_to_invlist(retval);
3559                 swash_invlist_unclaimed = TRUE;
3560             }
3561         }
3562
3563         /* If an inversion list was passed in, have to include it */
3564         if (invlist) {
3565
3566             /* Any fetched swash will by now have an inversion list in it;
3567              * otherwise <swash_invlist>  will be NULL, indicating that we
3568              * didn't fetch a swash */
3569             if (swash_invlist) {
3570
3571                 /* Add the passed-in inversion list, which invalidates the one
3572                  * already stored in the swash */
3573                 invlist_in_swash_is_valid = FALSE;
3574                 SvREADONLY_off(swash_invlist);  /* Turned on again below */
3575                 _invlist_union(invlist, swash_invlist, &swash_invlist);
3576             }
3577             else {
3578
3579                 /* Here, there is no swash already.  Set up a minimal one, if
3580                  * we are going to return a swash */
3581                 if ((int) _invlist_len(invlist) > invlist_swash_boundary) {
3582                     swash_hv = newHV();
3583                     retval = newRV_noinc(MUTABLE_SV(swash_hv));
3584                 }
3585                 swash_invlist = invlist;
3586             }
3587         }
3588
3589         /* Here, we have computed the union of all the passed-in data.  It may
3590          * be that there was an inversion list in the swash which didn't get
3591          * touched; otherwise save the computed one */
3592         if (! invlist_in_swash_is_valid
3593             && (int) _invlist_len(swash_invlist) > invlist_swash_boundary)
3594         {
3595             if (! hv_stores(MUTABLE_HV(SvRV(retval)), "V", swash_invlist))
3596             {
3597                 Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
3598             }
3599             /* We just stole a reference count. */
3600             if (swash_invlist_unclaimed) swash_invlist_unclaimed = FALSE;
3601             else SvREFCNT_inc_simple_void_NN(swash_invlist);
3602         }
3603
3604         /* The result is immutable.  Forbid attempts to change it. */
3605         SvREADONLY_on(swash_invlist);
3606
3607         /* Use the inversion list stand-alone if small enough */
3608         if ((int) _invlist_len(swash_invlist) <= invlist_swash_boundary) {
3609             SvREFCNT_dec(retval);
3610             if (!swash_invlist_unclaimed)
3611                 SvREFCNT_inc_simple_void_NN(swash_invlist);
3612             retval = newRV_noinc(swash_invlist);
3613         }
3614     }
3615
3616     CORE_SWASH_INIT_RETURN(retval);
3617 #undef CORE_SWASH_INIT_RETURN
3618 }
3619
3620
3621 /* This API is wrong for special case conversions since we may need to
3622  * return several Unicode characters for a single Unicode character
3623  * (see lib/unicore/SpecCase.txt) The SWASHGET in lib/utf8_heavy.pl is
3624  * the lower-level routine, and it is similarly broken for returning
3625  * multiple values.  --jhi
3626  * For those, you should use S__to_utf8_case() instead */
3627 /* Now SWASHGET is recasted into S_swatch_get in this file. */
3628
3629 /* Note:
3630  * Returns the value of property/mapping C<swash> for the first character
3631  * of the string C<ptr>. If C<do_utf8> is true, the string C<ptr> is
3632  * assumed to be in well-formed UTF-8. If C<do_utf8> is false, the string C<ptr>
3633  * is assumed to be in native 8-bit encoding. Caches the swatch in C<swash>.
3634  *
3635  * A "swash" is a hash which contains initially the keys/values set up by
3636  * SWASHNEW.  The purpose is to be able to completely represent a Unicode
3637  * property for all possible code points.  Things are stored in a compact form
3638  * (see utf8_heavy.pl) so that calculation is required to find the actual
3639  * property value for a given code point.  As code points are looked up, new
3640  * key/value pairs are added to the hash, so that the calculation doesn't have
3641  * to ever be re-done.  Further, each calculation is done, not just for the
3642  * desired one, but for a whole block of code points adjacent to that one.
3643  * For binary properties on ASCII machines, the block is usually for 64 code
3644  * points, starting with a code point evenly divisible by 64.  Thus if the
3645  * property value for code point 257 is requested, the code goes out and
3646  * calculates the property values for all 64 code points between 256 and 319,
3647  * and stores these as a single 64-bit long bit vector, called a "swatch",
3648  * under the key for code point 256.  The key is the UTF-8 encoding for code
3649  * point 256, minus the final byte.  Thus, if the length of the UTF-8 encoding
3650  * for a code point is 13 bytes, the key will be 12 bytes long.  If the value
3651  * for code point 258 is then requested, this code realizes that it would be
3652  * stored under the key for 256, and would find that value and extract the
3653  * relevant bit, offset from 256.
3654  *
3655  * Non-binary properties are stored in as many bits as necessary to represent
3656  * their values (32 currently, though the code is more general than that), not
3657  * as single bits, but the principle is the same: the value for each key is a
3658  * vector that encompasses the property values for all code points whose UTF-8
3659  * representations are represented by the key.  That is, for all code points
3660  * whose UTF-8 representations are length N bytes, and the key is the first N-1
3661  * bytes of that.
3662  */
3663 UV
3664 Perl_swash_fetch(pTHX_ SV *swash, const U8 *ptr, bool do_utf8)
3665 {
3666     HV *const hv = MUTABLE_HV(SvRV(swash));
3667     U32 klen;
3668     U32 off;
3669     STRLEN slen = 0;
3670     STRLEN needents;
3671     const U8 *tmps = NULL;
3672     SV *swatch;
3673     const U8 c = *ptr;
3674
3675     PERL_ARGS_ASSERT_SWASH_FETCH;
3676
3677     /* If it really isn't a hash, it isn't really swash; must be an inversion
3678      * list */
3679     if (SvTYPE(hv) != SVt_PVHV) {
3680         return _invlist_contains_cp((SV*)hv,
3681                                     (do_utf8)
3682                                      ? valid_utf8_to_uvchr(ptr, NULL)
3683                                      : c);
3684     }
3685
3686     /* We store the values in a "swatch" which is a vec() value in a swash
3687      * hash.  Code points 0-255 are a single vec() stored with key length
3688      * (klen) 0.  All other code points have a UTF-8 representation
3689      * 0xAA..0xYY,0xZZ.  A vec() is constructed containing all of them which
3690      * share 0xAA..0xYY, which is the key in the hash to that vec.  So the key
3691      * length for them is the length of the encoded char - 1.  ptr[klen] is the
3692      * final byte in the sequence representing the character */
3693     if (!do_utf8 || UTF8_IS_INVARIANT(c)) {
3694         klen = 0;
3695         needents = 256;
3696         off = c;
3697     }
3698     else if (UTF8_IS_DOWNGRADEABLE_START(c)) {
3699         klen = 0;
3700         needents = 256;
3701         off = EIGHT_BIT_UTF8_TO_NATIVE(c, *(ptr + 1));
3702     }
3703     else {
3704         klen = UTF8SKIP(ptr) - 1;
3705
3706         /* Each vec() stores 2**UTF_ACCUMULATION_SHIFT values.  The offset into
3707          * the vec is the final byte in the sequence.  (In EBCDIC this is
3708          * converted to I8 to get consecutive values.)  To help you visualize
3709          * all this:
3710          *                       Straight 1047   After final byte
3711          *             UTF-8      UTF-EBCDIC     I8 transform
3712          *  U+0400:  \xD0\x80    \xB8\x41\x41    \xB8\x41\xA0
3713          *  U+0401:  \xD0\x81    \xB8\x41\x42    \xB8\x41\xA1
3714          *    ...
3715          *  U+0409:  \xD0\x89    \xB8\x41\x4A    \xB8\x41\xA9
3716          *  U+040A:  \xD0\x8A    \xB8\x41\x51    \xB8\x41\xAA
3717          *    ...
3718          *  U+0412:  \xD0\x92    \xB8\x41\x59    \xB8\x41\xB2
3719          *  U+0413:  \xD0\x93    \xB8\x41\x62    \xB8\x41\xB3
3720          *    ...
3721          *  U+041B:  \xD0\x9B    \xB8\x41\x6A    \xB8\x41\xBB
3722          *  U+041C:  \xD0\x9C    \xB8\x41\x70    \xB8\x41\xBC
3723          *    ...
3724          *  U+041F:  \xD0\x9F    \xB8\x41\x73    \xB8\x41\xBF
3725          *  U+0420:  \xD0\xA0    \xB8\x42\x41    \xB8\x42\x41
3726          *
3727          * (There are no discontinuities in the elided (...) entries.)
3728          * The UTF-8 key for these 33 code points is '\xD0' (which also is the
3729          * key for the next 31, up through U+043F, whose UTF-8 final byte is
3730          * \xBF).  Thus in UTF-8, each key is for a vec() for 64 code points.
3731          * The final UTF-8 byte, which ranges between \x80 and \xBF, is an
3732          * index into the vec() swatch (after subtracting 0x80, which we
3733          * actually do with an '&').
3734          * In UTF-EBCDIC, each key is for a 32 code point vec().  The first 32
3735          * code points above have key '\xB8\x41'. The final UTF-EBCDIC byte has
3736          * dicontinuities which go away by transforming it into I8, and we
3737          * effectively subtract 0xA0 to get the index. */
3738         needents = (1 << UTF_ACCUMULATION_SHIFT);
3739         off      = NATIVE_UTF8_TO_I8(ptr[klen]) & UTF_CONTINUATION_MASK;
3740     }
3741
3742     /*
3743      * This single-entry cache saves about 1/3 of the UTF-8 overhead in test
3744      * suite.  (That is, only 7-8% overall over just a hash cache.  Still,
3745      * it's nothing to sniff at.)  Pity we usually come through at least
3746      * two function calls to get here...
3747      *
3748      * NB: this code assumes that swatches are never modified, once generated!
3749      */
3750
3751     if (hv   == PL_last_swash_hv &&
3752         klen == PL_last_swash_klen &&
3753         (!klen || memEQ((char *)ptr, (char *)PL_last_swash_key, klen)) )
3754     {
3755         tmps = PL_last_swash_tmps;
3756         slen = PL_last_swash_slen;
3757     }
3758     else {
3759         /* Try our second-level swatch cache, kept in a hash. */
3760         SV** svp = hv_fetch(hv, (const char*)ptr, klen, FALSE);
3761
3762         /* If not cached, generate it via swatch_get */
3763         if (!svp || !SvPOK(*svp)
3764                  || !(tmps = (const U8*)SvPV_const(*svp, slen)))
3765         {
3766             if (klen) {
3767                 const UV code_point = valid_utf8_to_uvchr(ptr, NULL);
3768                 swatch = swatch_get(swash,
3769                                     code_point & ~((UV)needents - 1),
3770                                     needents);
3771             }
3772             else {  /* For the first 256 code points, the swatch has a key of
3773                        length 0 */
3774                 swatch = swatch_get(swash, 0, needents);
3775             }
3776
3777             if (IN_PERL_COMPILETIME)
3778                 CopHINTS_set(PL_curcop, PL_hints);
3779
3780             svp = hv_store(hv, (const char *)ptr, klen, swatch, 0);
3781
3782             if (!svp || !(tmps = (U8*)SvPV(*svp, slen))
3783                      || (slen << 3) < needents)
3784                 Perl_croak(aTHX_ "panic: swash_fetch got improper swatch, "
3785                            "svp=%p, tmps=%p, slen=%" UVuf ", needents=%" UVuf,
3786                            svp, tmps, (UV)slen, (UV)needents);
3787         }
3788
3789         PL_last_swash_hv = hv;
3790         assert(klen <= sizeof(PL_last_swash_key));
3791         PL_last_swash_klen = (U8)klen;
3792         /* FIXME change interpvar.h?  */
3793         PL_last_swash_tmps = (U8 *) tmps;
3794         PL_last_swash_slen = slen;
3795         if (klen)
3796             Copy(ptr, PL_last_swash_key, klen, U8);
3797     }
3798
3799     switch ((int)((slen << 3) / needents)) {
3800     case 1:
3801         return ((UV) tmps[off >> 3] & (1 << (off & 7))) != 0;
3802     case 8:
3803         return ((UV) tmps[off]);
3804     case 16:
3805         off <<= 1;
3806         return
3807             ((UV) tmps[off    ] << 8) +
3808             ((UV) tmps[off + 1]);
3809     case 32:
3810         off <<= 2;
3811         return
3812             ((UV) tmps[off    ] << 24) +
3813             ((UV) tmps[off + 1] << 16) +
3814             ((UV) tmps[off + 2] <<  8) +
3815             ((UV) tmps[off + 3]);
3816     }
3817     Perl_croak(aTHX_ "panic: swash_fetch got swatch of unexpected bit width, "
3818                "slen=%" UVuf ", needents=%" UVuf, (UV)slen, (UV)needents);
3819     NORETURN_FUNCTION_END;
3820 }
3821
3822 /* Read a single line of the main body of the swash input text.  These are of
3823  * the form:
3824  * 0053 0056    0073
3825  * where each number is hex.  The first two numbers form the minimum and
3826  * maximum of a range, and the third is the value associated with the range.
3827  * Not all swashes should have a third number
3828  *
3829  * On input: l    points to the beginning of the line to be examined; it points
3830  *                to somewhere in the string of the whole input text, and is
3831  *                terminated by a \n or the null string terminator.
3832  *           lend   points to the null terminator of that string
3833  *           wants_value    is non-zero if the swash expects a third number
3834  *           typestr is the name of the swash's mapping, like 'ToLower'
3835  * On output: *min, *max, and *val are set to the values read from the line.
3836  *            returns a pointer just beyond the line examined.  If there was no
3837  *            valid min number on the line, returns lend+1
3838  */
3839
3840 STATIC U8*
3841 S_swash_scan_list_line(pTHX_ U8* l, U8* const lend, UV* min, UV* max, UV* val,
3842                              const bool wants_value, const U8* const typestr)
3843 {
3844     const int  typeto  = typestr[0] == 'T' && typestr[1] == 'o';
3845     STRLEN numlen;          /* Length of the number */
3846     I32 flags = PERL_SCAN_SILENT_ILLDIGIT
3847                 | PERL_SCAN_DISALLOW_PREFIX
3848                 | PERL_SCAN_SILENT_NON_PORTABLE;
3849
3850     /* nl points to the next \n in the scan */
3851     U8* const nl = (U8*)memchr(l, '\n', lend - l);
3852
3853     PERL_ARGS_ASSERT_SWASH_SCAN_LIST_LINE;
3854
3855     /* Get the first number on the line: the range minimum */
3856     numlen = lend - l;
3857     *min = grok_hex((char *)l, &numlen, &flags, NULL);
3858     *max = *min;    /* So can never return without setting max */
3859     if (numlen)     /* If found a hex number, position past it */
3860         l += numlen;
3861     else if (nl) {          /* Else, go handle next line, if any */
3862         return nl + 1;  /* 1 is length of "\n" */
3863     }
3864     else {              /* Else, no next line */
3865         return lend + 1;        /* to LIST's end at which \n is not found */
3866     }
3867
3868     /* The max range value follows, separated by a BLANK */
3869     if (isBLANK(*l)) {
3870         ++l;
3871         flags = PERL_SCAN_SILENT_ILLDIGIT
3872                 | PERL_SCAN_DISALLOW_PREFIX
3873                 | PERL_SCAN_SILENT_NON_PORTABLE;
3874         numlen = lend - l;
3875         *max = grok_hex((char *)l, &numlen, &flags, NULL);
3876         if (numlen)
3877             l += numlen;
3878         else    /* If no value here, it is a single element range */
3879             *max = *min;
3880
3881         /* Non-binary tables have a third entry: what the first element of the
3882          * range maps to.  The map for those currently read here is in hex */
3883         if (wants_value) {
3884             if (isBLANK(*l)) {
3885                 ++l;
3886                 flags = PERL_SCAN_SILENT_ILLDIGIT
3887                     | PERL_SCAN_DISALLOW_PREFIX
3888                     | PERL_SCAN_SILENT_NON_PORTABLE;
3889                 numlen = lend - l;
3890                 *val = grok_hex((char *)l, &numlen, &flags, NULL);
3891                 if (numlen)
3892                     l += numlen;
3893                 else
3894                     *val = 0;
3895             }
3896             else {
3897                 *val = 0;
3898                 if (typeto) {
3899                     /* diag_listed_as: To%s: illegal mapping '%s' */
3900                     Perl_croak(aTHX_ "%s: illegal mapping '%s'",
3901                                      typestr, l);
3902                 }
3903             }
3904         }
3905         else
3906             *val = 0; /* bits == 1, then any val should be ignored */
3907     }
3908     else { /* Nothing following range min, should be single element with no
3909               mapping expected */
3910         if (wants_value) {
3911             *val = 0;
3912             if (typeto) {
3913                 /* diag_listed_as: To%s: illegal mapping '%s' */
3914                 Perl_croak(aTHX_ "%s: illegal mapping '%s'", typestr, l);
3915             }
3916         }
3917         else
3918             *val = 0; /* bits == 1, then val should be ignored */
3919     }
3920
3921     /* Position to next line if any, or EOF */
3922     if (nl)
3923         l = nl + 1;
3924     else
3925         l = lend;
3926
3927     return l;
3928 }
3929
3930 /* Note:
3931  * Returns a swatch (a bit vector string) for a code point sequence
3932  * that starts from the value C<start> and comprises the number C<span>.
3933  * A C<swash> must be an object created by SWASHNEW (see lib/utf8_heavy.pl).
3934  * Should be used via swash_fetch, which will cache the swatch in C<swash>.
3935  */
3936 STATIC SV*
3937 S_swatch_get(pTHX_ SV* swash, UV start, UV span)
3938 {
3939     SV *swatch;
3940     U8 *l, *lend, *x, *xend, *s, *send;
3941     STRLEN lcur, xcur, scur;
3942     HV *const hv = MUTABLE_HV(SvRV(swash));
3943     SV** const invlistsvp = hv_fetchs(hv, "V", FALSE);
3944
3945     SV** listsvp = NULL; /* The string containing the main body of the table */
3946     SV** extssvp = NULL;
3947     SV** invert_it_svp = NULL;
3948     U8* typestr = NULL;
3949     STRLEN bits;
3950     STRLEN octets; /* if bits == 1, then octets == 0 */
3951     UV  none;
3952     UV  end = start + span;
3953
3954     if (invlistsvp == NULL) {
3955         SV** const bitssvp = hv_fetchs(hv, "BITS", FALSE);
3956         SV** const nonesvp = hv_fetchs(hv, "NONE", FALSE);
3957         SV** const typesvp = hv_fetchs(hv, "TYPE", FALSE);
3958         extssvp = hv_fetchs(hv, "EXTRAS", FALSE);
3959         listsvp = hv_fetchs(hv, "LIST", FALSE);
3960         invert_it_svp = hv_fetchs(hv, "INVERT_IT", FALSE);
3961
3962         bits  = SvUV(*bitssvp);
3963         none  = SvUV(*nonesvp);
3964         typestr = (U8*)SvPV_nolen(*typesvp);
3965     }
3966     else {
3967         bits = 1;
3968         none = 0;
3969     }
3970     octets = bits >> 3; /* if bits == 1, then octets == 0 */
3971
3972     PERL_ARGS_ASSERT_SWATCH_GET;
3973
3974     if (bits != 1 && bits != 8 && bits != 16 && bits != 32) {
3975         Perl_croak(aTHX_ "panic: swatch_get doesn't expect bits %" UVuf,
3976                                                  (UV)bits);
3977     }
3978
3979     /* If overflowed, use the max possible */
3980     if (end < start) {
3981         end = UV_MAX;
3982         span = end - start;
3983     }
3984
3985     /* create and initialize $swatch */
3986     scur   = octets ? (span * octets) : (span + 7) / 8;
3987     swatch = newSV(scur);
3988     SvPOK_on(swatch);
3989     s = (U8*)SvPVX(swatch);
3990     if (octets && none) {
3991         const U8* const e = s + scur;
3992         while (s < e) {
3993             if (bits == 8)
3994                 *s++ = (U8)(none & 0xff);
3995             else if (bits == 16) {
3996                 *s++ = (U8)((none >>  8) & 0xff);
3997                 *s++ = (U8)( none        & 0xff);
3998             }
3999             else if (bits == 32) {
4000                 *s++ = (U8)((none >> 24) & 0xff);
4001                 *s++ = (U8)((none >> 16) & 0xff);
4002                 *s++ = (U8)((none >>  8) & 0xff);
4003                 *s++ = (U8)( none        & 0xff);
4004             }
4005         }
4006         *s = '\0';
4007     }
4008     else {
4009         (void)memzero((U8*)s, scur + 1);
4010     }
4011     SvCUR_set(swatch, scur);
4012     s = (U8*)SvPVX(swatch);
4013
4014     if (invlistsvp) {   /* If has an inversion list set up use that */
4015         _invlist_populate_swatch(*invlistsvp, start, end, s);
4016         return swatch;
4017     }
4018
4019     /* read $swash->{LIST} */
4020     l = (U8*)SvPV(*listsvp, lcur);
4021     lend = l + lcur;
4022     while (l < lend) {
4023         UV min, max, val, upper;
4024         l = swash_scan_list_line(l, lend, &min, &max, &val,
4025                                                         cBOOL(octets), typestr);
4026         if (l > lend) {
4027             break;
4028         }
4029
4030         /* If looking for something beyond this range, go try the next one */
4031         if (max < start)
4032             continue;
4033
4034         /* <end> is generally 1 beyond where we want to set things, but at the
4035          * platform's infinity, where we can't go any higher, we want to
4036          * include the code point at <end> */
4037         upper = (max < end)
4038                 ? max
4039                 : (max != UV_MAX || end != UV_MAX)
4040                   ? end - 1
4041                   : end;
4042
4043         if (octets) {
4044             UV key;
4045             if (min < start) {
4046                 if (!none || val < none) {
4047                     val += start - min;
4048                 }
4049                 min = start;
4050             }
4051             for (key = min; key <= upper; key++) {
4052                 STRLEN offset;
4053                 /* offset must be non-negative (start <= min <= key < end) */
4054                 offset = octets * (key - start);
4055                 if (bits == 8)
4056                     s[offset] = (U8)(val & 0xff);
4057                 else if (bits == 16) {
4058                     s[offset    ] = (U8)((val >>  8) & 0xff);
4059                     s[offset + 1] = (U8)( val        & 0xff);
4060                 }
4061                 else if (bits == 32) {
4062                     s[offset    ] = (U8)((val >> 24) & 0xff);
4063                     s[offset + 1] = (U8)((val >> 16) & 0xff);
4064                     s[offset + 2] = (U8)((val >>  8) & 0xff);
4065                     s[offset + 3] = (U8)( val        & 0xff);
4066                 }
4067
4068                 if (!none || val < none)
4069                     ++val;
4070             }
4071         }
4072         else { /* bits == 1, then val should be ignored */
4073             UV key;
4074             if (min < start)
4075                 min = start;
4076
4077             for (key = min; key <= upper; key++) {
4078                 const STRLEN offset = (STRLEN)(key - start);
4079                 s[offset >> 3] |= 1 << (offset & 7);
4080             }
4081         }
4082     } /* while */
4083
4084     /* Invert if the data says it should be.  Assumes that bits == 1 */
4085     if (invert_it_svp && SvUV(*invert_it_svp)) {
4086
4087         /* Unicode properties should come with all bits above PERL_UNICODE_MAX
4088          * be 0, and their inversion should also be 0, as we don't succeed any
4089          * Unicode property matches for non-Unicode code points */
4090         if (start <= PERL_UNICODE_MAX) {
4091
4092             /* The code below assumes that we never cross the
4093              * Unicode/above-Unicode boundary in a range, as otherwise we would
4094              * have to figure out where to stop flipping the bits.  Since this
4095              * boundary is divisible by a large power of 2, and swatches comes
4096              * in small powers of 2, this should be a valid assumption */
4097             assert(start + span - 1 <= PERL_UNICODE_MAX);
4098
4099             send = s + scur;
4100             while (s < send) {
4101                 *s = ~(*s);
4102                 s++;
4103             }
4104         }
4105     }
4106
4107     /* read $swash->{EXTRAS}
4108      * This code also copied to swash_to_invlist() below */
4109     x = (U8*)SvPV(*extssvp, xcur);
4110     xend = x + xcur;
4111     while (x < xend) {
4112         STRLEN namelen;
4113         U8 *namestr;
4114         SV** othersvp;
4115         HV* otherhv;
4116         STRLEN otherbits;
4117         SV **otherbitssvp, *other;
4118         U8 *s, *o, *nl;
4119         STRLEN slen, olen;
4120
4121         const U8 opc = *x++;
4122         if (opc == '\n')
4123             continue;
4124
4125         nl = (U8*)memchr(x, '\n', xend - x);
4126
4127         if (opc != '-' && opc != '+' && opc != '!' && opc != '&') {
4128             if (nl) {
4129                 x = nl + 1; /* 1 is length of "\n" */
4130                 continue;
4131             }
4132             else {
4133                 x = xend; /* to EXTRAS' end at which \n is not found */
4134                 break;
4135             }
4136         }
4137
4138         namestr = x;
4139         if (nl) {
4140             namelen = nl - namestr;
4141             x = nl + 1;
4142         }
4143         else {
4144             namelen = xend - namestr;
4145             x = xend;
4146         }
4147
4148         othersvp = hv_fetch(hv, (char *)namestr, namelen, FALSE);
4149         otherhv = MUTABLE_HV(SvRV(*othersvp));
4150         otherbitssvp = hv_fetchs(otherhv, "BITS", FALSE);
4151         otherbits = (STRLEN)SvUV(*otherbitssvp);
4152         if (bits < otherbits)
4153             Perl_croak(aTHX_ "panic: swatch_get found swatch size mismatch, "
4154                        "bits=%" UVuf ", otherbits=%" UVuf, (UV)bits, (UV)otherbits);
4155
4156         /* The "other" swatch must be destroyed after. */
4157         other = swatch_get(*othersvp, start, span);
4158         o = (U8*)SvPV(other, olen);
4159
4160         if (!olen)
4161             Perl_croak(aTHX_ "panic: swatch_get got improper swatch");
4162
4163         s = (U8*)SvPV(swatch, slen);
4164         if (bits == 1 && otherbits == 1) {
4165             if (slen != olen)
4166                 Perl_croak(aTHX_ "panic: swatch_get found swatch length "
4167                            "mismatch, slen=%" UVuf ", olen=%" UVuf,
4168                            (UV)slen, (UV)olen);
4169
4170             switch (opc) {
4171             case '+':
4172                 while (slen--)
4173                     *s++ |= *o++;
4174                 break;
4175             case '!':
4176                 while (slen--)
4177                     *s++ |= ~*o++;
4178                 break;
4179             case '-':
4180                 while (slen--)
4181                     *s++ &= ~*o++;
4182                 break;
4183             case '&':
4184                 while (slen--)
4185                     *s++ &= *o++;
4186                 break;
4187             default:
4188                 break;
4189             }
4190         }
4191         else {
4192             STRLEN otheroctets = otherbits >> 3;
4193             STRLEN offset = 0;
4194             U8* const send = s + slen;
4195
4196             while (s < send) {
4197                 UV otherval = 0;
4198
4199                 if (otherbits == 1) {
4200                     otherval = (o[offset >> 3] >> (offset & 7)) & 1;
4201                     ++offset;
4202                 }
4203                 else {
4204                     STRLEN vlen = otheroctets;
4205                     otherval = *o++;
4206                     while (--vlen) {
4207                         otherval <<= 8;
4208                         otherval |= *o++;
4209                     }
4210                 }
4211
4212                 if (opc == '+' && otherval)
4213                     NOOP;   /* replace with otherval */
4214                 else if (opc == '!' && !otherval)
4215                     otherval = 1;
4216                 else if (opc == '-' && otherval)
4217                     otherval = 0;
4218                 else if (opc == '&' && !otherval)
4219                     otherval = 0;
4220                 else {
4221                     s += octets; /* no replacement */
4222                     continue;
4223                 }
4224
4225                 if (bits == 8)
4226                     *s++ = (U8)( otherval & 0xff);
4227                 else if (bits == 16) {
4228                     *s++ = (U8)((otherval >>  8) & 0xff);
4229                     *s++ = (U8)( otherval        & 0xff);
4230                 }
4231                 else if (bits == 32) {
4232                     *s++ = (U8)((otherval >> 24) & 0xff);
4233                     *s++ = (U8)((otherval >> 16) & 0xff);
4234                     *s++ = (U8)((otherval >>  8) & 0xff);
4235                     *s++ = (U8)( otherval        & 0xff);
4236                 }
4237             }
4238         }
4239         sv_free(other); /* through with it! */
4240     } /* while */
4241     return swatch;
4242 }
4243
4244 HV*
4245 Perl__swash_inversion_hash(pTHX_ SV* const swash)
4246 {
4247
4248    /* Subject to change or removal.  For use only in regcomp.c and regexec.c
4249     * Can't be used on a property that is subject to user override, as it
4250     * relies on the value of SPECIALS in the swash which would be set by
4251     * utf8_heavy.pl to the hash in the non-overriden file, and hence is not set
4252     * for overridden properties
4253     *
4254     * Returns a hash which is the inversion and closure of a swash mapping.
4255     * For example, consider the input lines:
4256     * 004B              006B
4257     * 004C              006C
4258     * 212A              006B
4259     *
4260     * The returned hash would have two keys, the UTF-8 for 006B and the UTF-8 for
4261     * 006C.  The value for each key is an array.  For 006C, the array would
4262     * have two elements, the UTF-8 for itself, and for 004C.  For 006B, there
4263     * would be three elements in its array, the UTF-8 for 006B, 004B and 212A.
4264     *
4265     * Note that there are no elements in the hash for 004B, 004C, 212A.  The
4266     * keys are only code points that are folded-to, so it isn't a full closure.
4267     *
4268     * Essentially, for any code point, it gives all the code points that map to
4269     * it, or the list of 'froms' for that point.
4270     *
4271     * Currently it ignores any additions or deletions from other swashes,
4272     * looking at just the main body of the swash, and if there are SPECIALS
4273     * in the swash, at that hash
4274     *
4275     * The specials hash can be extra code points, and most likely consists of
4276     * maps from single code points to multiple ones (each expressed as a string
4277     * of UTF-8 characters).   This function currently returns only 1-1 mappings.
4278     * However consider this possible input in the specials hash:
4279     * "\xEF\xAC\x85" => "\x{0073}\x{0074}",         # U+FB05 => 0073 0074
4280     * "\xEF\xAC\x86" => "\x{0073}\x{0074}",         # U+FB06 => 0073 0074
4281     *
4282     * Both FB05 and FB06 map to the same multi-char sequence, which we don't
4283     * currently handle.  But it also means that FB05 and FB06 are equivalent in
4284     * a 1-1 mapping which we should handle, and this relationship may not be in
4285     * the main table.  Therefore this function examines all the multi-char
4286     * sequences and adds the 1-1 mappings that come out of that.
4287     *
4288     * XXX This function was originally intended to be multipurpose, but its
4289     * only use is quite likely to remain for constructing the inversion of
4290     * the CaseFolding (//i) property.  If it were more general purpose for
4291     * regex patterns, it would have to do the FB05/FB06 game for simple folds,
4292     * because certain folds are prohibited under /iaa and /il.  As an example,
4293     * in Unicode 3.0.1 both U+0130 and U+0131 fold to 'i', and hence are both
4294     * equivalent under /i.  But under /iaa and /il, the folds to 'i' are
4295     * prohibited, so we would not figure out that they fold to each other.
4296     * Code could be written to automatically figure this out, similar to the
4297     * code that does this for multi-character folds, but this is the only case
4298     * where something like this is ever&nbs