Commit | Line | Data |
---|---|---|
a0ed51b3 LW |
1 | /* utf8.c |
2 | * | |
1129b882 | 3 | * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
b94e2f88 | 4 | * by Larry Wall and others |
a0ed51b3 LW |
5 | * |
6 | * You may distribute under the terms of either the GNU General Public | |
7 | * License or the Artistic License, as specified in the README file. | |
8 | * | |
9 | */ | |
10 | ||
11 | /* | |
4ac71550 TC |
12 | * 'What a fix!' said Sam. 'That's the one place in all the lands we've ever |
13 | * heard of that we don't want to see any closer; and that's the one place | |
14 | * we're trying to get to! And that's just where we can't get, nohow.' | |
15 | * | |
cdad3b53 | 16 | * [p.603 of _The Lord of the Rings_, IV/I: "The Taming of Sméagol"] |
a0ed51b3 LW |
17 | * |
18 | * 'Well do I understand your speech,' he answered in the same language; | |
19 | * 'yet few strangers do so. Why then do you not speak in the Common Tongue, | |
4ac71550 | 20 | * as is the custom in the West, if you wish to be answered?' |
cdad3b53 | 21 | * --Gandalf, addressing Théoden's door wardens |
4ac71550 TC |
22 | * |
23 | * [p.508 of _The Lord of the Rings_, III/vi: "The King of the Golden Hall"] | |
a0ed51b3 LW |
24 | * |
25 | * ...the travellers perceived that the floor was paved with stones of many | |
26 | * hues; branching runes and strange devices intertwined beneath their feet. | |
4ac71550 TC |
27 | * |
28 | * [p.512 of _The Lord of the Rings_, III/vi: "The King of the Golden Hall"] | |
a0ed51b3 LW |
29 | */ |
30 | ||
31 | #include "EXTERN.h" | |
864dbfa3 | 32 | #define PERL_IN_UTF8_C |
a0ed51b3 | 33 | #include "perl.h" |
b992490d | 34 | #include "invlist_inline.h" |
a0ed51b3 | 35 | |
806547a7 | 36 | static const char malformed_text[] = "Malformed UTF-8 character"; |
27da23d5 | 37 | static const char unees[] = |
806547a7 | 38 | "Malformed UTF-8 character (unexpected end of string)"; |
760c7c2f | 39 | static const char cp_above_legal_max[] = |
13f4dd34 A |
40 | "Use of code point 0x%" UVXf " is not allowed; " |
41 | "the permissible max is 0x%" UVXf; | |
760c7c2f | 42 | |
114d9c4d | 43 | #define MAX_NON_DEPRECATED_CP ((UV) (IV_MAX)) |
901b21bf | 44 | |
48ef279e | 45 | /* |
ccfc67b7 | 46 | =head1 Unicode Support |
7fefc6c1 | 47 | These are various utility functions for manipulating UTF8-encoded |
72d33970 | 48 | strings. For the uninitiated, this is a method of representing arbitrary |
61296642 | 49 | Unicode characters as a variable number of bytes, in such a way that |
56da48f7 DM |
50 | characters in the ASCII range are unmodified, and a zero byte never appears |
51 | within non-zero characters. | |
166f8a29 | 52 | |
eaf7a4d2 CS |
53 | =cut |
54 | */ | |
55 | ||
9cbfb8ab KW |
56 | void |
57 | Perl__force_out_malformed_utf8_message(pTHX_ | |
58 | const U8 *const p, /* First byte in UTF-8 sequence */ | |
59 | const U8 * const e, /* Final byte in sequence (may include | |
60 | multiple chars */ | |
61 | const U32 flags, /* Flags to pass to utf8n_to_uvchr(), | |
62 | usually 0, or some DISALLOW flags */ | |
63 | const bool die_here) /* If TRUE, this function does not return */ | |
64 | { | |
65 | /* This core-only function is to be called when a malformed UTF-8 character | |
66 | * is found, in order to output the detailed information about the | |
67 | * malformation before dieing. The reason it exists is for the occasions | |
68 | * when such a malformation is fatal, but warnings might be turned off, so | |
69 | * that normally they would not be actually output. This ensures that they | |
70 | * do get output. Because a sequence may be malformed in more than one | |
71 | * way, multiple messages may be generated, so we can't make them fatal, as | |
72 | * that would cause the first one to die. | |
73 | * | |
74 | * Instead we pretend -W was passed to perl, then die afterwards. The | |
75 | * flexibility is here to return to the caller so they can finish up and | |
76 | * die themselves */ | |
77 | U32 errors; | |
78 | ||
79 | PERL_ARGS_ASSERT__FORCE_OUT_MALFORMED_UTF8_MESSAGE; | |
80 | ||
81 | ENTER; | |
c15a80f3 | 82 | SAVEI8(PL_dowarn); |
9cbfb8ab KW |
83 | SAVESPTR(PL_curcop); |
84 | ||
85 | PL_dowarn = G_WARN_ALL_ON|G_WARN_ON; | |
86 | if (PL_curcop) { | |
87 | PL_curcop->cop_warnings = pWARN_ALL; | |
88 | } | |
89 | ||
90 | (void) utf8n_to_uvchr_error(p, e - p, NULL, flags & ~UTF8_CHECK_ONLY, &errors); | |
91 | ||
92 | LEAVE; | |
93 | ||
94 | if (! errors) { | |
95 | Perl_croak(aTHX_ "panic: _force_out_malformed_utf8_message should" | |
96 | " be called only when there are errors found"); | |
97 | } | |
98 | ||
99 | if (die_here) { | |
100 | Perl_croak(aTHX_ "Malformed UTF-8 character (fatal)"); | |
101 | } | |
102 | } | |
103 | ||
eaf7a4d2 | 104 | /* |
378516de | 105 | =for apidoc uvoffuni_to_utf8_flags |
eebe1485 | 106 | |
a27992cc | 107 | THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES. |
de69f3af KW |
108 | Instead, B<Almost all code should use L</uvchr_to_utf8> or |
109 | L</uvchr_to_utf8_flags>>. | |
a27992cc | 110 | |
de69f3af KW |
111 | This function is like them, but the input is a strict Unicode |
112 | (as opposed to native) code point. Only in very rare circumstances should code | |
113 | not be using the native code point. | |
949cf498 | 114 | |
efa9cd84 | 115 | For details, see the description for L</uvchr_to_utf8_flags>. |
949cf498 | 116 | |
eebe1485 SC |
117 | =cut |
118 | */ | |
119 | ||
8ee1cdcb KW |
120 | #define HANDLE_UNICODE_SURROGATE(uv, flags) \ |
121 | STMT_START { \ | |
122 | if (flags & UNICODE_WARN_SURROGATE) { \ | |
123 | Perl_ck_warner_d(aTHX_ packWARN(WARN_SURROGATE), \ | |
147e3846 | 124 | "UTF-16 surrogate U+%04" UVXf, uv); \ |
8ee1cdcb KW |
125 | } \ |
126 | if (flags & UNICODE_DISALLOW_SURROGATE) { \ | |
127 | return NULL; \ | |
128 | } \ | |
129 | } STMT_END; | |
130 | ||
131 | #define HANDLE_UNICODE_NONCHAR(uv, flags) \ | |
132 | STMT_START { \ | |
133 | if (flags & UNICODE_WARN_NONCHAR) { \ | |
134 | Perl_ck_warner_d(aTHX_ packWARN(WARN_NONCHAR), \ | |
147e3846 | 135 | "Unicode non-character U+%04" UVXf " is not " \ |
8ee1cdcb KW |
136 | "recommended for open interchange", uv); \ |
137 | } \ | |
138 | if (flags & UNICODE_DISALLOW_NONCHAR) { \ | |
139 | return NULL; \ | |
140 | } \ | |
141 | } STMT_END; | |
142 | ||
ba6ed43c KW |
143 | /* Use shorter names internally in this file */ |
144 | #define SHIFT UTF_ACCUMULATION_SHIFT | |
145 | #undef MARK | |
146 | #define MARK UTF_CONTINUATION_MARK | |
147 | #define MASK UTF_CONTINUATION_MASK | |
148 | ||
dfe13c55 | 149 | U8 * |
4b31b634 | 150 | Perl_uvoffuni_to_utf8_flags(pTHX_ U8 *d, UV uv, const UV flags) |
a0ed51b3 | 151 | { |
378516de | 152 | PERL_ARGS_ASSERT_UVOFFUNI_TO_UTF8_FLAGS; |
7918f24d | 153 | |
2d1545e5 | 154 | if (OFFUNI_IS_INVARIANT(uv)) { |
4c8cd605 | 155 | *d++ = LATIN1_TO_NATIVE(uv); |
d9432125 KW |
156 | return d; |
157 | } | |
facc1dc2 | 158 | |
3ea68d71 | 159 | if (uv <= MAX_UTF8_TWO_BYTE) { |
facc1dc2 KW |
160 | *d++ = I8_TO_NATIVE_UTF8(( uv >> SHIFT) | UTF_START_MARK(2)); |
161 | *d++ = I8_TO_NATIVE_UTF8(( uv & MASK) | MARK); | |
3ea68d71 KW |
162 | return d; |
163 | } | |
d9432125 | 164 | |
ba6ed43c KW |
165 | /* Not 2-byte; test for and handle 3-byte result. In the test immediately |
166 | * below, the 16 is for start bytes E0-EF (which are all the possible ones | |
167 | * for 3 byte characters). The 2 is for 2 continuation bytes; these each | |
168 | * contribute SHIFT bits. This yields 0x4000 on EBCDIC platforms, 0x1_0000 | |
169 | * on ASCII; so 3 bytes covers the range 0x400-0x3FFF on EBCDIC; | |
170 | * 0x800-0xFFFF on ASCII */ | |
171 | if (uv < (16 * (1U << (2 * SHIFT)))) { | |
172 | *d++ = I8_TO_NATIVE_UTF8(( uv >> ((3 - 1) * SHIFT)) | UTF_START_MARK(3)); | |
173 | *d++ = I8_TO_NATIVE_UTF8(((uv >> ((2 - 1) * SHIFT)) & MASK) | MARK); | |
174 | *d++ = I8_TO_NATIVE_UTF8(( uv /* (1 - 1) */ & MASK) | MARK); | |
175 | ||
176 | #ifndef EBCDIC /* These problematic code points are 4 bytes on EBCDIC, so | |
177 | aren't tested here */ | |
178 | /* The most likely code points in this range are below the surrogates. | |
179 | * Do an extra test to quickly exclude those. */ | |
180 | if (UNLIKELY(uv >= UNICODE_SURROGATE_FIRST)) { | |
181 | if (UNLIKELY( UNICODE_IS_32_CONTIGUOUS_NONCHARS(uv) | |
182 | || UNICODE_IS_END_PLANE_NONCHAR_GIVEN_NOT_SUPER(uv))) | |
183 | { | |
8ee1cdcb KW |
184 | HANDLE_UNICODE_NONCHAR(uv, flags); |
185 | } | |
186 | else if (UNLIKELY(UNICODE_IS_SURROGATE(uv))) { | |
187 | HANDLE_UNICODE_SURROGATE(uv, flags); | |
760c7c2f | 188 | } |
ba6ed43c KW |
189 | } |
190 | #endif | |
191 | return d; | |
192 | } | |
193 | ||
194 | /* Not 3-byte; that means the code point is at least 0x1_0000 on ASCII | |
195 | * platforms, and 0x4000 on EBCDIC. There are problematic cases that can | |
196 | * happen starting with 4-byte characters on ASCII platforms. We unify the | |
197 | * code for these with EBCDIC, even though some of them require 5-bytes on | |
198 | * those, because khw believes the code saving is worth the very slight | |
199 | * performance hit on these high EBCDIC code points. */ | |
200 | ||
201 | if (UNLIKELY(UNICODE_IS_SUPER(uv))) { | |
13f4dd34 A |
202 | if (UNLIKELY(uv > MAX_NON_DEPRECATED_CP)) { |
203 | Perl_croak(aTHX_ cp_above_legal_max, uv, MAX_NON_DEPRECATED_CP); | |
a5bf80e0 KW |
204 | } |
205 | if ( (flags & UNICODE_WARN_SUPER) | |
206 | || ( UNICODE_IS_ABOVE_31_BIT(uv) | |
207 | && (flags & UNICODE_WARN_ABOVE_31_BIT))) | |
208 | { | |
209 | Perl_ck_warner_d(aTHX_ packWARN(WARN_NON_UNICODE), | |
210 | ||
211 | /* Choose the more dire applicable warning */ | |
212 | (UNICODE_IS_ABOVE_31_BIT(uv)) | |
147e3846 KW |
213 | ? "Code point 0x%" UVXf " is not Unicode, and not portable" |
214 | : "Code point 0x%" UVXf " is not Unicode, may not be portable", | |
a5bf80e0 KW |
215 | uv); |
216 | } | |
217 | if (flags & UNICODE_DISALLOW_SUPER | |
218 | || ( UNICODE_IS_ABOVE_31_BIT(uv) | |
219 | && (flags & UNICODE_DISALLOW_ABOVE_31_BIT))) | |
220 | { | |
221 | return NULL; | |
222 | } | |
223 | } | |
ba6ed43c KW |
224 | else if (UNLIKELY(UNICODE_IS_END_PLANE_NONCHAR_GIVEN_NOT_SUPER(uv))) { |
225 | HANDLE_UNICODE_NONCHAR(uv, flags); | |
507b9800 | 226 | } |
d9432125 | 227 | |
ba6ed43c KW |
228 | /* Test for and handle 4-byte result. In the test immediately below, the |
229 | * 8 is for start bytes F0-F7 (which are all the possible ones for 4 byte | |
230 | * characters). The 3 is for 3 continuation bytes; these each contribute | |
231 | * SHIFT bits. This yields 0x4_0000 on EBCDIC platforms, 0x20_0000 on | |
232 | * ASCII, so 4 bytes covers the range 0x4000-0x3_FFFF on EBCDIC; | |
233 | * 0x1_0000-0x1F_FFFF on ASCII */ | |
234 | if (uv < (8 * (1U << (3 * SHIFT)))) { | |
235 | *d++ = I8_TO_NATIVE_UTF8(( uv >> ((4 - 1) * SHIFT)) | UTF_START_MARK(4)); | |
236 | *d++ = I8_TO_NATIVE_UTF8(((uv >> ((3 - 1) * SHIFT)) & MASK) | MARK); | |
237 | *d++ = I8_TO_NATIVE_UTF8(((uv >> ((2 - 1) * SHIFT)) & MASK) | MARK); | |
238 | *d++ = I8_TO_NATIVE_UTF8(( uv /* (1 - 1) */ & MASK) | MARK); | |
239 | ||
240 | #ifdef EBCDIC /* These were handled on ASCII platforms in the code for 3-byte | |
241 | characters. The end-plane non-characters for EBCDIC were | |
242 | handled just above */ | |
243 | if (UNLIKELY(UNICODE_IS_32_CONTIGUOUS_NONCHARS(uv))) { | |
244 | HANDLE_UNICODE_NONCHAR(uv, flags); | |
d528804a | 245 | } |
ba6ed43c KW |
246 | else if (UNLIKELY(UNICODE_IS_SURROGATE(uv))) { |
247 | HANDLE_UNICODE_SURROGATE(uv, flags); | |
248 | } | |
249 | #endif | |
250 | ||
251 | return d; | |
252 | } | |
253 | ||
254 | /* Not 4-byte; that means the code point is at least 0x20_0000 on ASCII | |
255 | * platforms, and 0x4000 on EBCDIC. At this point we switch to a loop | |
256 | * format. The unrolled version above turns out to not save all that much | |
257 | * time, and at these high code points (well above the legal Unicode range | |
258 | * on ASCII platforms, and well above anything in common use in EBCDIC), | |
259 | * khw believes that less code outweighs slight performance gains. */ | |
260 | ||
d9432125 | 261 | { |
5aaebcb3 | 262 | STRLEN len = OFFUNISKIP(uv); |
1d72bdf6 NIS |
263 | U8 *p = d+len-1; |
264 | while (p > d) { | |
4c8cd605 | 265 | *p-- = I8_TO_NATIVE_UTF8((uv & UTF_CONTINUATION_MASK) | UTF_CONTINUATION_MARK); |
1d72bdf6 NIS |
266 | uv >>= UTF_ACCUMULATION_SHIFT; |
267 | } | |
4c8cd605 | 268 | *p = I8_TO_NATIVE_UTF8((uv & UTF_START_MASK(len)) | UTF_START_MARK(len)); |
1d72bdf6 NIS |
269 | return d+len; |
270 | } | |
a0ed51b3 | 271 | } |
a5bf80e0 | 272 | |
646ca15d | 273 | /* |
07693fe6 KW |
274 | =for apidoc uvchr_to_utf8 |
275 | ||
bcb1a2d4 | 276 | Adds the UTF-8 representation of the native code point C<uv> to the end |
f2fc1b45 | 277 | of the string C<d>; C<d> should have at least C<UVCHR_SKIP(uv)+1> (up to |
c749c9fd KW |
278 | C<UTF8_MAXBYTES+1>) free bytes available. The return value is the pointer to |
279 | the byte after the end of the new character. In other words, | |
07693fe6 KW |
280 | |
281 | d = uvchr_to_utf8(d, uv); | |
282 | ||
283 | is the recommended wide native character-aware way of saying | |
284 | ||
285 | *(d++) = uv; | |
286 | ||
760c7c2f KW |
287 | This function accepts any UV as input, but very high code points (above |
288 | C<IV_MAX> on the platform) will raise a deprecation warning. This is | |
289 | typically 0x7FFF_FFFF in a 32-bit word. | |
290 | ||
291 | It is possible to forbid or warn on non-Unicode code points, or those that may | |
292 | be problematic by using L</uvchr_to_utf8_flags>. | |
de69f3af | 293 | |
07693fe6 KW |
294 | =cut |
295 | */ | |
296 | ||
de69f3af KW |
297 | /* This is also a macro */ |
298 | PERL_CALLCONV U8* Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv); | |
299 | ||
07693fe6 KW |
300 | U8 * |
301 | Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv) | |
302 | { | |
de69f3af | 303 | return uvchr_to_utf8(d, uv); |
07693fe6 KW |
304 | } |
305 | ||
de69f3af KW |
306 | /* |
307 | =for apidoc uvchr_to_utf8_flags | |
308 | ||
309 | Adds the UTF-8 representation of the native code point C<uv> to the end | |
f2fc1b45 | 310 | of the string C<d>; C<d> should have at least C<UVCHR_SKIP(uv)+1> (up to |
c749c9fd KW |
311 | C<UTF8_MAXBYTES+1>) free bytes available. The return value is the pointer to |
312 | the byte after the end of the new character. In other words, | |
de69f3af KW |
313 | |
314 | d = uvchr_to_utf8_flags(d, uv, flags); | |
315 | ||
316 | or, in most cases, | |
317 | ||
318 | d = uvchr_to_utf8_flags(d, uv, 0); | |
319 | ||
320 | This is the Unicode-aware way of saying | |
321 | ||
322 | *(d++) = uv; | |
323 | ||
760c7c2f KW |
324 | If C<flags> is 0, this function accepts any UV as input, but very high code |
325 | points (above C<IV_MAX> for the platform) will raise a deprecation warning. | |
326 | This is typically 0x7FFF_FFFF in a 32-bit word. | |
327 | ||
328 | Specifying C<flags> can further restrict what is allowed and not warned on, as | |
329 | follows: | |
de69f3af | 330 | |
796b6530 | 331 | If C<uv> is a Unicode surrogate code point and C<UNICODE_WARN_SURROGATE> is set, |
7ee537e6 KW |
332 | the function will raise a warning, provided UTF8 warnings are enabled. If |
333 | instead C<UNICODE_DISALLOW_SURROGATE> is set, the function will fail and return | |
334 | NULL. If both flags are set, the function will both warn and return NULL. | |
de69f3af | 335 | |
760c7c2f KW |
336 | Similarly, the C<UNICODE_WARN_NONCHAR> and C<UNICODE_DISALLOW_NONCHAR> flags |
337 | affect how the function handles a Unicode non-character. | |
93e6dbd6 | 338 | |
760c7c2f KW |
339 | And likewise, the C<UNICODE_WARN_SUPER> and C<UNICODE_DISALLOW_SUPER> flags |
340 | affect the handling of code points that are above the Unicode maximum of | |
341 | 0x10FFFF. Languages other than Perl may not be able to accept files that | |
342 | contain these. | |
93e6dbd6 KW |
343 | |
344 | The flag C<UNICODE_WARN_ILLEGAL_INTERCHANGE> selects all three of | |
345 | the above WARN flags; and C<UNICODE_DISALLOW_ILLEGAL_INTERCHANGE> selects all | |
ecc1615f KW |
346 | three DISALLOW flags. C<UNICODE_DISALLOW_ILLEGAL_INTERCHANGE> restricts the |
347 | allowed inputs to the strict UTF-8 traditionally defined by Unicode. | |
348 | Similarly, C<UNICODE_WARN_ILLEGAL_C9_INTERCHANGE> and | |
349 | C<UNICODE_DISALLOW_ILLEGAL_C9_INTERCHANGE> are shortcuts to select the | |
350 | above-Unicode and surrogate flags, but not the non-character ones, as | |
351 | defined in | |
352 | L<Unicode Corrigendum #9|http://www.unicode.org/versions/corrigendum9.html>. | |
353 | See L<perlunicode/Noncharacter code points>. | |
93e6dbd6 | 354 | |
ab8e6d41 KW |
355 | Code points above 0x7FFF_FFFF (2**31 - 1) were never specified in any standard, |
356 | so using them is more problematic than other above-Unicode code points. Perl | |
357 | invented an extension to UTF-8 to represent the ones above 2**36-1, so it is | |
358 | likely that non-Perl languages will not be able to read files that contain | |
359 | these that written by the perl interpreter; nor would Perl understand files | |
360 | written by something that uses a different extension. For these reasons, there | |
361 | is a separate set of flags that can warn and/or disallow these extremely high | |
362 | code points, even if other above-Unicode ones are accepted. These are the | |
760c7c2f KW |
363 | C<UNICODE_WARN_ABOVE_31_BIT> and C<UNICODE_DISALLOW_ABOVE_31_BIT> flags. These |
364 | are entirely independent from the deprecation warning for code points above | |
365 | C<IV_MAX>. On 32-bit machines, it will eventually be forbidden to have any | |
366 | code point that needs more than 31 bits to represent. When that happens, | |
367 | effectively the C<UNICODE_DISALLOW_ABOVE_31_BIT> flag will always be set on | |
368 | 32-bit machines. (Of course C<UNICODE_DISALLOW_SUPER> will treat all | |
ab8e6d41 KW |
369 | above-Unicode code points, including these, as malformations; and |
370 | C<UNICODE_WARN_SUPER> warns on these.) | |
371 | ||
372 | On EBCDIC platforms starting in Perl v5.24, the Perl extension for representing | |
373 | extremely high code points kicks in at 0x3FFF_FFFF (2**30 -1), which is lower | |
374 | than on ASCII. Prior to that, code points 2**31 and higher were simply | |
375 | unrepresentable, and a different, incompatible method was used to represent | |
376 | code points between 2**30 and 2**31 - 1. The flags C<UNICODE_WARN_ABOVE_31_BIT> | |
377 | and C<UNICODE_DISALLOW_ABOVE_31_BIT> have the same function as on ASCII | |
378 | platforms, warning and disallowing 2**31 and higher. | |
de69f3af | 379 | |
de69f3af KW |
380 | =cut |
381 | */ | |
382 | ||
383 | /* This is also a macro */ | |
384 | PERL_CALLCONV U8* Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags); | |
385 | ||
07693fe6 KW |
386 | U8 * |
387 | Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags) | |
388 | { | |
de69f3af | 389 | return uvchr_to_utf8_flags(d, uv, flags); |
07693fe6 KW |
390 | } |
391 | ||
83dc0f42 KW |
392 | PERL_STATIC_INLINE bool |
393 | S_is_utf8_cp_above_31_bits(const U8 * const s, const U8 * const e) | |
394 | { | |
395 | /* Returns TRUE if the first code point represented by the Perl-extended- | |
396 | * UTF-8-encoded string starting at 's', and looking no further than 'e - | |
397 | * 1' doesn't fit into 31 bytes. That is, that if it is >= 2**31. | |
398 | * | |
399 | * The function handles the case where the input bytes do not include all | |
400 | * the ones necessary to represent a full character. That is, they may be | |
401 | * the intial bytes of the representation of a code point, but possibly | |
402 | * the final ones necessary for the complete representation may be beyond | |
403 | * 'e - 1'. | |
404 | * | |
405 | * The function assumes that the sequence is well-formed UTF-8 as far as it | |
406 | * goes, and is for a UTF-8 variant code point. If the sequence is | |
407 | * incomplete, the function returns FALSE if there is any well-formed | |
408 | * UTF-8 byte sequence that can complete it in such a way that a code point | |
409 | * < 2**31 is produced; otherwise it returns TRUE. | |
410 | * | |
411 | * Getting this exactly right is slightly tricky, and has to be done in | |
412 | * several places in this file, so is centralized here. It is based on the | |
413 | * following table: | |
414 | * | |
415 | * U+7FFFFFFF (2 ** 31 - 1) | |
416 | * ASCII: \xFD\xBF\xBF\xBF\xBF\xBF | |
417 | * IBM-1047: \xFE\x41\x41\x41\x41\x41\x41\x42\x73\x73\x73\x73\x73\x73 | |
418 | * IBM-037: \xFE\x41\x41\x41\x41\x41\x41\x42\x72\x72\x72\x72\x72\x72 | |
419 | * POSIX-BC: \xFE\x41\x41\x41\x41\x41\x41\x42\x75\x75\x75\x75\x75\x75 | |
420 | * I8: \xFF\xA0\xA0\xA0\xA0\xA0\xA0\xA1\xBF\xBF\xBF\xBF\xBF\xBF | |
421 | * U+80000000 (2 ** 31): | |
422 | * ASCII: \xFE\x82\x80\x80\x80\x80\x80 | |
423 | * [0] [1] [2] [3] [4] [5] [6] [7] [8] [9] 10 11 12 13 | |
424 | * IBM-1047: \xFE\x41\x41\x41\x41\x41\x41\x43\x41\x41\x41\x41\x41\x41 | |
425 | * IBM-037: \xFE\x41\x41\x41\x41\x41\x41\x43\x41\x41\x41\x41\x41\x41 | |
426 | * POSIX-BC: \xFE\x41\x41\x41\x41\x41\x41\x43\x41\x41\x41\x41\x41\x41 | |
427 | * I8: \xFF\xA0\xA0\xA0\xA0\xA0\xA0\xA2\xA0\xA0\xA0\xA0\xA0\xA0 | |
428 | */ | |
429 | ||
430 | #ifdef EBCDIC | |
431 | ||
37086697 KW |
432 | /* [0] is start byte [1] [2] [3] [4] [5] [6] [7] */ |
433 | const U8 prefix[] = "\x41\x41\x41\x41\x41\x41\x42"; | |
83dc0f42 KW |
434 | const STRLEN prefix_len = sizeof(prefix) - 1; |
435 | const STRLEN len = e - s; | |
f880f78a | 436 | const STRLEN cmp_len = MIN(prefix_len, len - 1); |
83dc0f42 KW |
437 | |
438 | #else | |
439 | ||
440 | PERL_UNUSED_ARG(e); | |
441 | ||
442 | #endif | |
443 | ||
444 | PERL_ARGS_ASSERT_IS_UTF8_CP_ABOVE_31_BITS; | |
445 | ||
446 | assert(! UTF8_IS_INVARIANT(*s)); | |
447 | ||
448 | #ifndef EBCDIC | |
449 | ||
450 | /* Technically, a start byte of FE can be for a code point that fits into | |
451 | * 31 bytes, but not for well-formed UTF-8: doing that requires an overlong | |
452 | * malformation. */ | |
453 | return (*s >= 0xFE); | |
454 | ||
455 | #else | |
456 | ||
457 | /* On the EBCDIC code pages we handle, only 0xFE can mean a 32-bit or | |
458 | * larger code point (0xFF is an invariant). For 0xFE, we need at least 2 | |
459 | * bytes, and maybe up through 8 bytes, to be sure if the value is above 31 | |
460 | * bits. */ | |
461 | if (*s != 0xFE || len == 1) { | |
462 | return FALSE; | |
463 | } | |
464 | ||
465 | /* Note that in UTF-EBCDIC, the two lowest possible continuation bytes are | |
466 | * \x41 and \x42. */ | |
467 | return cBOOL(memGT(s + 1, prefix, cmp_len)); | |
468 | ||
469 | #endif | |
470 | ||
471 | } | |
472 | ||
12a4bed3 KW |
473 | PERL_STATIC_INLINE bool |
474 | S_does_utf8_overflow(const U8 * const s, const U8 * e) | |
475 | { | |
476 | const U8 *x; | |
477 | const U8 * y = (const U8 *) HIGHEST_REPRESENTABLE_UTF8; | |
478 | ||
c551bb01 KW |
479 | #if ! defined(UV_IS_QUAD) && ! defined(EBCDIC) |
480 | ||
481 | const STRLEN len = e - s; | |
482 | ||
483 | #endif | |
484 | ||
12a4bed3 KW |
485 | /* Returns a boolean as to if this UTF-8 string would overflow a UV on this |
486 | * platform, that is if it represents a code point larger than the highest | |
487 | * representable code point. (For ASCII platforms, we could use memcmp() | |
488 | * because we don't have to convert each byte to I8, but it's very rare | |
489 | * input indeed that would approach overflow, so the loop below will likely | |
490 | * only get executed once. | |
491 | * | |
492 | * 'e' must not be beyond a full character. If it is less than a full | |
493 | * character, the function returns FALSE if there is any input beyond 'e' | |
494 | * that could result in a non-overflowing code point */ | |
495 | ||
496 | PERL_ARGS_ASSERT_DOES_UTF8_OVERFLOW; | |
b0b342d4 KW |
497 | assert(s <= e && s + UTF8SKIP(s) >= e); |
498 | ||
499 | #if ! defined(UV_IS_QUAD) && ! defined(EBCDIC) | |
500 | ||
501 | /* On 32 bit ASCII machines, many overlongs that start with FF don't | |
502 | * overflow */ | |
503 | ||
c551bb01 | 504 | if (isFF_OVERLONG(s, len)) { |
b0b342d4 KW |
505 | const U8 max_32_bit_overlong[] = "\xFF\x80\x80\x80\x80\x80\x80\x84"; |
506 | return memGE(s, max_32_bit_overlong, | |
c551bb01 | 507 | MIN(len, sizeof(max_32_bit_overlong) - 1)); |
b0b342d4 KW |
508 | } |
509 | ||
510 | #endif | |
12a4bed3 KW |
511 | |
512 | for (x = s; x < e; x++, y++) { | |
513 | ||
514 | /* If this byte is larger than the corresponding highest UTF-8 byte, it | |
515 | * overflows */ | |
516 | if (UNLIKELY(NATIVE_UTF8_TO_I8(*x) > *y)) { | |
517 | return TRUE; | |
518 | } | |
519 | ||
520 | /* If not the same as this byte, it must be smaller, doesn't overflow */ | |
521 | if (LIKELY(NATIVE_UTF8_TO_I8(*x) != *y)) { | |
522 | return FALSE; | |
523 | } | |
524 | } | |
525 | ||
526 | /* Got to the end and all bytes are the same. If the input is a whole | |
527 | * character, it doesn't overflow. And if it is a partial character, | |
528 | * there's not enough information to tell, so assume doesn't overflow */ | |
529 | return FALSE; | |
530 | } | |
531 | ||
532 | PERL_STATIC_INLINE bool | |
533 | S_is_utf8_overlong_given_start_byte_ok(const U8 * const s, const STRLEN len) | |
534 | { | |
535 | /* Overlongs can occur whenever the number of continuation bytes | |
536 | * changes. That means whenever the number of leading 1 bits in a start | |
537 | * byte increases from the next lower start byte. That happens for start | |
538 | * bytes C0, E0, F0, F8, FC, FE, and FF. On modern perls, the following | |
539 | * illegal start bytes have already been excluded, so don't need to be | |
540 | * tested here; | |
541 | * ASCII platforms: C0, C1 | |
542 | * EBCDIC platforms C0, C1, C2, C3, C4, E0 | |
543 | * | |
544 | * At least a second byte is required to determine if other sequences will | |
545 | * be an overlong. */ | |
546 | ||
547 | const U8 s0 = NATIVE_UTF8_TO_I8(s[0]); | |
548 | const U8 s1 = NATIVE_UTF8_TO_I8(s[1]); | |
549 | ||
550 | PERL_ARGS_ASSERT_IS_UTF8_OVERLONG_GIVEN_START_BYTE_OK; | |
551 | assert(len > 1 && UTF8_IS_START(*s)); | |
552 | ||
553 | /* Each platform has overlongs after the start bytes given above (expressed | |
554 | * in I8 for EBCDIC). What constitutes an overlong varies by platform, but | |
555 | * the logic is the same, except the E0 overlong has already been excluded | |
556 | * on EBCDIC platforms. The values below were found by manually | |
557 | * inspecting the UTF-8 patterns. See the tables in utf8.h and | |
558 | * utfebcdic.h. */ | |
559 | ||
560 | # ifdef EBCDIC | |
561 | # define F0_ABOVE_OVERLONG 0xB0 | |
562 | # define F8_ABOVE_OVERLONG 0xA8 | |
563 | # define FC_ABOVE_OVERLONG 0xA4 | |
564 | # define FE_ABOVE_OVERLONG 0xA2 | |
565 | # define FF_OVERLONG_PREFIX "\xfe\x41\x41\x41\x41\x41\x41\x41" | |
566 | /* I8(0xfe) is FF */ | |
567 | # else | |
568 | ||
569 | if (s0 == 0xE0 && UNLIKELY(s1 < 0xA0)) { | |
570 | return TRUE; | |
571 | } | |
572 | ||
573 | # define F0_ABOVE_OVERLONG 0x90 | |
574 | # define F8_ABOVE_OVERLONG 0x88 | |
575 | # define FC_ABOVE_OVERLONG 0x84 | |
576 | # define FE_ABOVE_OVERLONG 0x82 | |
577 | # define FF_OVERLONG_PREFIX "\xff\x80\x80\x80\x80\x80\x80" | |
578 | # endif | |
579 | ||
580 | ||
581 | if ( (s0 == 0xF0 && UNLIKELY(s1 < F0_ABOVE_OVERLONG)) | |
582 | || (s0 == 0xF8 && UNLIKELY(s1 < F8_ABOVE_OVERLONG)) | |
583 | || (s0 == 0xFC && UNLIKELY(s1 < FC_ABOVE_OVERLONG)) | |
584 | || (s0 == 0xFE && UNLIKELY(s1 < FE_ABOVE_OVERLONG))) | |
585 | { | |
586 | return TRUE; | |
587 | } | |
588 | ||
b0b342d4 KW |
589 | /* Check for the FF overlong */ |
590 | return isFF_OVERLONG(s, len); | |
591 | } | |
592 | ||
593 | PERL_STATIC_INLINE bool | |
594 | S_isFF_OVERLONG(const U8 * const s, const STRLEN len) | |
595 | { | |
596 | PERL_ARGS_ASSERT_ISFF_OVERLONG; | |
12a4bed3 KW |
597 | |
598 | /* Check for the FF overlong. This happens only if all these bytes match; | |
599 | * what comes after them doesn't matter. See tables in utf8.h, | |
b0b342d4 | 600 | * utfebcdic.h. */ |
12a4bed3 | 601 | |
b0b342d4 KW |
602 | return len >= sizeof(FF_OVERLONG_PREFIX) - 1 |
603 | && UNLIKELY(memEQ(s, FF_OVERLONG_PREFIX, | |
604 | sizeof(FF_OVERLONG_PREFIX) - 1)); | |
12a4bed3 KW |
605 | } |
606 | ||
607 | #undef F0_ABOVE_OVERLONG | |
608 | #undef F8_ABOVE_OVERLONG | |
609 | #undef FC_ABOVE_OVERLONG | |
610 | #undef FE_ABOVE_OVERLONG | |
611 | #undef FF_OVERLONG_PREFIX | |
612 | ||
35f8c9bd | 613 | STRLEN |
edc2c47a | 614 | Perl__is_utf8_char_helper(const U8 * const s, const U8 * e, const U32 flags) |
35f8c9bd | 615 | { |
2b479609 | 616 | STRLEN len; |
12a4bed3 | 617 | const U8 *x; |
35f8c9bd | 618 | |
2b479609 KW |
619 | /* A helper function that should not be called directly. |
620 | * | |
621 | * This function returns non-zero if the string beginning at 's' and | |
622 | * looking no further than 'e - 1' is well-formed Perl-extended-UTF-8 for a | |
623 | * code point; otherwise it returns 0. The examination stops after the | |
624 | * first code point in 's' is validated, not looking at the rest of the | |
625 | * input. If 'e' is such that there are not enough bytes to represent a | |
626 | * complete code point, this function will return non-zero anyway, if the | |
627 | * bytes it does have are well-formed UTF-8 as far as they go, and aren't | |
628 | * excluded by 'flags'. | |
629 | * | |
630 | * A non-zero return gives the number of bytes required to represent the | |
631 | * code point. Be aware that if the input is for a partial character, the | |
632 | * return will be larger than 'e - s'. | |
633 | * | |
634 | * This function assumes that the code point represented is UTF-8 variant. | |
635 | * The caller should have excluded this possibility before calling this | |
636 | * function. | |
637 | * | |
638 | * 'flags' can be 0, or any combination of the UTF8_DISALLOW_foo flags | |
639 | * accepted by L</utf8n_to_uvchr>. If non-zero, this function will return | |
640 | * 0 if the code point represented is well-formed Perl-extended-UTF-8, but | |
641 | * disallowed by the flags. If the input is only for a partial character, | |
642 | * the function will return non-zero if there is any sequence of | |
643 | * well-formed UTF-8 that, when appended to the input sequence, could | |
644 | * result in an allowed code point; otherwise it returns 0. Non characters | |
645 | * cannot be determined based on partial character input. But many of the | |
646 | * other excluded types can be determined with just the first one or two | |
647 | * bytes. | |
648 | * | |
649 | */ | |
650 | ||
651 | PERL_ARGS_ASSERT__IS_UTF8_CHAR_HELPER; | |
652 | ||
653 | assert(0 == (flags & ~(UTF8_DISALLOW_ILLEGAL_INTERCHANGE | |
654 | |UTF8_DISALLOW_ABOVE_31_BIT))); | |
655 | assert(! UTF8_IS_INVARIANT(*s)); | |
35f8c9bd | 656 | |
2b479609 | 657 | /* A variant char must begin with a start byte */ |
35f8c9bd KW |
658 | if (UNLIKELY(! UTF8_IS_START(*s))) { |
659 | return 0; | |
660 | } | |
661 | ||
edc2c47a KW |
662 | /* Examine a maximum of a single whole code point */ |
663 | if (e - s > UTF8SKIP(s)) { | |
664 | e = s + UTF8SKIP(s); | |
665 | } | |
666 | ||
2b479609 KW |
667 | len = e - s; |
668 | ||
669 | if (flags && isUTF8_POSSIBLY_PROBLEMATIC(*s)) { | |
670 | const U8 s0 = NATIVE_UTF8_TO_I8(s[0]); | |
35f8c9bd | 671 | |
2b479609 KW |
672 | /* The code below is derived from this table. Keep in mind that legal |
673 | * continuation bytes range between \x80..\xBF for UTF-8, and | |
674 | * \xA0..\xBF for I8. Anything above those aren't continuation bytes. | |
675 | * Hence, we don't have to test the upper edge because if any of those | |
676 | * are encountered, the sequence is malformed, and will fail elsewhere | |
677 | * in this function. | |
678 | * UTF-8 UTF-EBCDIC I8 | |
679 | * U+D800: \xED\xA0\x80 \xF1\xB6\xA0\xA0 First surrogate | |
680 | * U+DFFF: \xED\xBF\xBF \xF1\xB7\xBF\xBF Final surrogate | |
681 | * U+110000: \xF4\x90\x80\x80 \xF9\xA2\xA0\xA0\xA0 First above Unicode | |
682 | * | |
683 | */ | |
684 | ||
685 | #ifdef EBCDIC /* On EBCDIC, these are actually I8 bytes */ | |
686 | # define FIRST_START_BYTE_THAT_IS_DEFINITELY_SUPER 0xFA | |
19794540 | 687 | # define IS_UTF8_2_BYTE_SUPER(s0, s1) ((s0) == 0xF9 && (s1) >= 0xA2) |
2b479609 | 688 | |
19794540 KW |
689 | # define IS_UTF8_2_BYTE_SURROGATE(s0, s1) ((s0) == 0xF1 \ |
690 | /* B6 and B7 */ \ | |
691 | && ((s1) & 0xFE ) == 0xB6) | |
2b479609 KW |
692 | #else |
693 | # define FIRST_START_BYTE_THAT_IS_DEFINITELY_SUPER 0xF5 | |
19794540 KW |
694 | # define IS_UTF8_2_BYTE_SUPER(s0, s1) ((s0) == 0xF4 && (s1) >= 0x90) |
695 | # define IS_UTF8_2_BYTE_SURROGATE(s0, s1) ((s0) == 0xED && (s1) >= 0xA0) | |
2b479609 KW |
696 | #endif |
697 | ||
698 | if ( (flags & UTF8_DISALLOW_SUPER) | |
ddb65933 KW |
699 | && UNLIKELY(s0 >= FIRST_START_BYTE_THAT_IS_DEFINITELY_SUPER)) |
700 | { | |
2b479609 KW |
701 | return 0; /* Above Unicode */ |
702 | } | |
703 | ||
704 | if ( (flags & UTF8_DISALLOW_ABOVE_31_BIT) | |
705 | && UNLIKELY(is_utf8_cp_above_31_bits(s, e))) | |
706 | { | |
707 | return 0; /* Above 31 bits */ | |
708 | } | |
709 | ||
710 | if (len > 1) { | |
711 | const U8 s1 = NATIVE_UTF8_TO_I8(s[1]); | |
712 | ||
713 | if ( (flags & UTF8_DISALLOW_SUPER) | |
19794540 | 714 | && UNLIKELY(IS_UTF8_2_BYTE_SUPER(s0, s1))) |
2b479609 KW |
715 | { |
716 | return 0; /* Above Unicode */ | |
717 | } | |
718 | ||
719 | if ( (flags & UTF8_DISALLOW_SURROGATE) | |
19794540 | 720 | && UNLIKELY(IS_UTF8_2_BYTE_SURROGATE(s0, s1))) |
2b479609 KW |
721 | { |
722 | return 0; /* Surrogate */ | |
723 | } | |
724 | ||
725 | if ( (flags & UTF8_DISALLOW_NONCHAR) | |
726 | && UNLIKELY(UTF8_IS_NONCHAR(s, e))) | |
727 | { | |
728 | return 0; /* Noncharacter code point */ | |
729 | } | |
730 | } | |
731 | } | |
732 | ||
733 | /* Make sure that all that follows are continuation bytes */ | |
35f8c9bd KW |
734 | for (x = s + 1; x < e; x++) { |
735 | if (UNLIKELY(! UTF8_IS_CONTINUATION(*x))) { | |
736 | return 0; | |
737 | } | |
738 | } | |
739 | ||
af13dd8a | 740 | /* Here is syntactically valid. Next, make sure this isn't the start of an |
12a4bed3 KW |
741 | * overlong. */ |
742 | if (len > 1 && is_utf8_overlong_given_start_byte_ok(s, len)) { | |
743 | return 0; | |
af13dd8a KW |
744 | } |
745 | ||
12a4bed3 KW |
746 | /* And finally, that the code point represented fits in a word on this |
747 | * platform */ | |
748 | if (does_utf8_overflow(s, e)) { | |
749 | return 0; | |
35f8c9bd KW |
750 | } |
751 | ||
2b479609 | 752 | return UTF8SKIP(s); |
35f8c9bd KW |
753 | } |
754 | ||
7e2f38b2 KW |
755 | char * |
756 | Perl__byte_dump_string(pTHX_ const U8 * s, const STRLEN len, const bool format) | |
7cf8d05d KW |
757 | { |
758 | /* Returns a mortalized C string that is a displayable copy of the 'len' | |
7e2f38b2 KW |
759 | * bytes starting at 's'. 'format' gives how to display each byte. |
760 | * Currently, there are only two formats, so it is currently a bool: | |
761 | * 0 \xab | |
762 | * 1 ab (that is a space between two hex digit bytes) | |
763 | */ | |
7cf8d05d KW |
764 | |
765 | const STRLEN output_len = 4 * len + 1; /* 4 bytes per each input, plus a | |
766 | trailing NUL */ | |
767 | const U8 * const e = s + len; | |
768 | char * output; | |
769 | char * d; | |
770 | ||
771 | PERL_ARGS_ASSERT__BYTE_DUMP_STRING; | |
772 | ||
773 | Newx(output, output_len, char); | |
774 | SAVEFREEPV(output); | |
775 | ||
776 | d = output; | |
777 | for (; s < e; s++) { | |
778 | const unsigned high_nibble = (*s & 0xF0) >> 4; | |
779 | const unsigned low_nibble = (*s & 0x0F); | |
780 | ||
7e2f38b2 KW |
781 | if (format) { |
782 | *d++ = ' '; | |
783 | } | |
784 | else { | |
785 | *d++ = '\\'; | |
786 | *d++ = 'x'; | |
787 | } | |
7cf8d05d KW |
788 | |
789 | if (high_nibble < 10) { | |
790 | *d++ = high_nibble + '0'; | |
791 | } | |
792 | else { | |
793 | *d++ = high_nibble - 10 + 'a'; | |
794 | } | |
795 | ||
796 | if (low_nibble < 10) { | |
797 | *d++ = low_nibble + '0'; | |
798 | } | |
799 | else { | |
800 | *d++ = low_nibble - 10 + 'a'; | |
801 | } | |
802 | } | |
803 | ||
804 | *d = '\0'; | |
805 | return output; | |
806 | } | |
807 | ||
806547a7 | 808 | PERL_STATIC_INLINE char * |
7cf8d05d KW |
809 | S_unexpected_non_continuation_text(pTHX_ const U8 * const s, |
810 | ||
811 | /* How many bytes to print */ | |
3cc6a05e | 812 | STRLEN print_len, |
7cf8d05d KW |
813 | |
814 | /* Which one is the non-continuation */ | |
815 | const STRLEN non_cont_byte_pos, | |
816 | ||
817 | /* How many bytes should there be? */ | |
818 | const STRLEN expect_len) | |
806547a7 KW |
819 | { |
820 | /* Return the malformation warning text for an unexpected continuation | |
821 | * byte. */ | |
822 | ||
7cf8d05d | 823 | const char * const where = (non_cont_byte_pos == 1) |
806547a7 | 824 | ? "immediately" |
7cf8d05d KW |
825 | : Perl_form(aTHX_ "%d bytes", |
826 | (int) non_cont_byte_pos); | |
806547a7 KW |
827 | |
828 | PERL_ARGS_ASSERT_UNEXPECTED_NON_CONTINUATION_TEXT; | |
829 | ||
7cf8d05d KW |
830 | /* We don't need to pass this parameter, but since it has already been |
831 | * calculated, it's likely faster to pass it; verify under DEBUGGING */ | |
832 | assert(expect_len == UTF8SKIP(s)); | |
833 | ||
834 | return Perl_form(aTHX_ "%s: %s (unexpected non-continuation byte 0x%02x," | |
835 | " %s after start byte 0x%02x; need %d bytes, got %d)", | |
836 | malformed_text, | |
7e2f38b2 | 837 | _byte_dump_string(s, print_len, 0), |
7cf8d05d KW |
838 | *(s + non_cont_byte_pos), |
839 | where, | |
840 | *s, | |
841 | (int) expect_len, | |
842 | (int) non_cont_byte_pos); | |
806547a7 KW |
843 | } |
844 | ||
35f8c9bd KW |
845 | /* |
846 | ||
de69f3af | 847 | =for apidoc utf8n_to_uvchr |
378516de KW |
848 | |
849 | THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES. | |
de69f3af | 850 | Most code should use L</utf8_to_uvchr_buf>() rather than call this directly. |
67e989fb | 851 | |
9041c2e3 | 852 | Bottom level UTF-8 decode routine. |
de69f3af | 853 | Returns the native code point value of the first character in the string C<s>, |
746afd53 KW |
854 | which is assumed to be in UTF-8 (or UTF-EBCDIC) encoding, and no longer than |
855 | C<curlen> bytes; C<*retlen> (if C<retlen> isn't NULL) will be set to | |
856 | the length, in bytes, of that character. | |
949cf498 KW |
857 | |
858 | The value of C<flags> determines the behavior when C<s> does not point to a | |
2b5e7bc2 KW |
859 | well-formed UTF-8 character. If C<flags> is 0, encountering a malformation |
860 | causes zero to be returned and C<*retlen> is set so that (S<C<s> + C<*retlen>>) | |
861 | is the next possible position in C<s> that could begin a non-malformed | |
862 | character. Also, if UTF-8 warnings haven't been lexically disabled, a warning | |
863 | is raised. Some UTF-8 input sequences may contain multiple malformations. | |
864 | This function tries to find every possible one in each call, so multiple | |
865 | warnings can be raised for each sequence. | |
949cf498 KW |
866 | |
867 | Various ALLOW flags can be set in C<flags> to allow (and not warn on) | |
868 | individual types of malformations, such as the sequence being overlong (that | |
869 | is, when there is a shorter sequence that can express the same code point; | |
870 | overlong sequences are expressly forbidden in the UTF-8 standard due to | |
871 | potential security issues). Another malformation example is the first byte of | |
872 | a character not being a legal first byte. See F<utf8.h> for the list of such | |
94953955 KW |
873 | flags. Even if allowed, this function generally returns the Unicode |
874 | REPLACEMENT CHARACTER when it encounters a malformation. There are flags in | |
875 | F<utf8.h> to override this behavior for the overlong malformations, but don't | |
876 | do that except for very specialized purposes. | |
949cf498 | 877 | |
796b6530 | 878 | The C<UTF8_CHECK_ONLY> flag overrides the behavior when a non-allowed (by other |
949cf498 KW |
879 | flags) malformation is found. If this flag is set, the routine assumes that |
880 | the caller will raise a warning, and this function will silently just set | |
d088425d KW |
881 | C<retlen> to C<-1> (cast to C<STRLEN>) and return zero. |
882 | ||
75200dff | 883 | Note that this API requires disambiguation between successful decoding a C<NUL> |
796b6530 | 884 | character, and an error return (unless the C<UTF8_CHECK_ONLY> flag is set), as |
111fa700 KW |
885 | in both cases, 0 is returned, and, depending on the malformation, C<retlen> may |
886 | be set to 1. To disambiguate, upon a zero return, see if the first byte of | |
887 | C<s> is 0 as well. If so, the input was a C<NUL>; if not, the input had an | |
f9380377 | 888 | error. Or you can use C<L</utf8n_to_uvchr_error>>. |
949cf498 KW |
889 | |
890 | Certain code points are considered problematic. These are Unicode surrogates, | |
746afd53 | 891 | Unicode non-characters, and code points above the Unicode maximum of 0x10FFFF. |
949cf498 | 892 | By default these are considered regular code points, but certain situations |
ecc1615f KW |
893 | warrant special handling for them, which can be specified using the C<flags> |
894 | parameter. If C<flags> contains C<UTF8_DISALLOW_ILLEGAL_INTERCHANGE>, all | |
895 | three classes are treated as malformations and handled as such. The flags | |
896 | C<UTF8_DISALLOW_SURROGATE>, C<UTF8_DISALLOW_NONCHAR>, and | |
897 | C<UTF8_DISALLOW_SUPER> (meaning above the legal Unicode maximum) can be set to | |
898 | disallow these categories individually. C<UTF8_DISALLOW_ILLEGAL_INTERCHANGE> | |
899 | restricts the allowed inputs to the strict UTF-8 traditionally defined by | |
900 | Unicode. Use C<UTF8_DISALLOW_ILLEGAL_C9_INTERCHANGE> to use the strictness | |
901 | definition given by | |
902 | L<Unicode Corrigendum #9|http://www.unicode.org/versions/corrigendum9.html>. | |
903 | The difference between traditional strictness and C9 strictness is that the | |
904 | latter does not forbid non-character code points. (They are still discouraged, | |
905 | however.) For more discussion see L<perlunicode/Noncharacter code points>. | |
906 | ||
907 | The flags C<UTF8_WARN_ILLEGAL_INTERCHANGE>, | |
908 | C<UTF8_WARN_ILLEGAL_C9_INTERCHANGE>, C<UTF8_WARN_SURROGATE>, | |
796b6530 KW |
909 | C<UTF8_WARN_NONCHAR>, and C<UTF8_WARN_SUPER> will cause warning messages to be |
910 | raised for their respective categories, but otherwise the code points are | |
911 | considered valid (not malformations). To get a category to both be treated as | |
912 | a malformation and raise a warning, specify both the WARN and DISALLOW flags. | |
949cf498 | 913 | (But note that warnings are not raised if lexically disabled nor if |
796b6530 | 914 | C<UTF8_CHECK_ONLY> is also specified.) |
949cf498 | 915 | |
760c7c2f KW |
916 | It is now deprecated to have very high code points (above C<IV_MAX> on the |
917 | platforms) and this function will raise a deprecation warning for these (unless | |
d5944cab | 918 | such warnings are turned off). This value is typically 0x7FFF_FFFF (2**31 -1) |
760c7c2f | 919 | in a 32-bit word. |
ab8e6d41 KW |
920 | |
921 | Code points above 0x7FFF_FFFF (2**31 - 1) were never specified in any standard, | |
922 | so using them is more problematic than other above-Unicode code points. Perl | |
923 | invented an extension to UTF-8 to represent the ones above 2**36-1, so it is | |
924 | likely that non-Perl languages will not be able to read files that contain | |
aff2be59 | 925 | these; nor would Perl understand files |
ab8e6d41 KW |
926 | written by something that uses a different extension. For these reasons, there |
927 | is a separate set of flags that can warn and/or disallow these extremely high | |
928 | code points, even if other above-Unicode ones are accepted. These are the | |
760c7c2f KW |
929 | C<UTF8_WARN_ABOVE_31_BIT> and C<UTF8_DISALLOW_ABOVE_31_BIT> flags. These |
930 | are entirely independent from the deprecation warning for code points above | |
931 | C<IV_MAX>. On 32-bit machines, it will eventually be forbidden to have any | |
932 | code point that needs more than 31 bits to represent. When that happens, | |
933 | effectively the C<UTF8_DISALLOW_ABOVE_31_BIT> flag will always be set on | |
934 | 32-bit machines. (Of course C<UTF8_DISALLOW_SUPER> will treat all | |
ab8e6d41 KW |
935 | above-Unicode code points, including these, as malformations; and |
936 | C<UTF8_WARN_SUPER> warns on these.) | |
937 | ||
938 | On EBCDIC platforms starting in Perl v5.24, the Perl extension for representing | |
939 | extremely high code points kicks in at 0x3FFF_FFFF (2**30 -1), which is lower | |
940 | than on ASCII. Prior to that, code points 2**31 and higher were simply | |
941 | unrepresentable, and a different, incompatible method was used to represent | |
942 | code points between 2**30 and 2**31 - 1. The flags C<UTF8_WARN_ABOVE_31_BIT> | |
943 | and C<UTF8_DISALLOW_ABOVE_31_BIT> have the same function as on ASCII | |
944 | platforms, warning and disallowing 2**31 and higher. | |
949cf498 KW |
945 | |
946 | All other code points corresponding to Unicode characters, including private | |
947 | use and those yet to be assigned, are never considered malformed and never | |
948 | warn. | |
67e989fb | 949 | |
37607a96 | 950 | =cut |
f9380377 KW |
951 | |
952 | Also implemented as a macro in utf8.h | |
953 | */ | |
954 | ||
955 | UV | |
956 | Perl_utf8n_to_uvchr(pTHX_ const U8 *s, | |
957 | STRLEN curlen, | |
958 | STRLEN *retlen, | |
959 | const U32 flags) | |
960 | { | |
961 | PERL_ARGS_ASSERT_UTF8N_TO_UVCHR; | |
962 | ||
963 | return utf8n_to_uvchr_error(s, curlen, retlen, flags, NULL); | |
964 | } | |
965 | ||
966 | /* | |
967 | ||
968 | =for apidoc utf8n_to_uvchr_error | |
969 | ||
970 | THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES. | |
971 | Most code should use L</utf8_to_uvchr_buf>() rather than call this directly. | |
972 | ||
973 | This function is for code that needs to know what the precise malformation(s) | |
974 | are when an error is found. | |
975 | ||
976 | It is like C<L</utf8n_to_uvchr>> but it takes an extra parameter placed after | |
977 | all the others, C<errors>. If this parameter is 0, this function behaves | |
978 | identically to C<L</utf8n_to_uvchr>>. Otherwise, C<errors> should be a pointer | |
979 | to a C<U32> variable, which this function sets to indicate any errors found. | |
980 | Upon return, if C<*errors> is 0, there were no errors found. Otherwise, | |
981 | C<*errors> is the bit-wise C<OR> of the bits described in the list below. Some | |
982 | of these bits will be set if a malformation is found, even if the input | |
7a65503b | 983 | C<flags> parameter indicates that the given malformation is allowed; those |
f9380377 KW |
984 | exceptions are noted: |
985 | ||
986 | =over 4 | |
987 | ||
988 | =item C<UTF8_GOT_ABOVE_31_BIT> | |
989 | ||
990 | The code point represented by the input UTF-8 sequence occupies more than 31 | |
991 | bits. | |
992 | This bit is set only if the input C<flags> parameter contains either the | |
993 | C<UTF8_DISALLOW_ABOVE_31_BIT> or the C<UTF8_WARN_ABOVE_31_BIT> flags. | |
994 | ||
995 | =item C<UTF8_GOT_CONTINUATION> | |
996 | ||
997 | The input sequence was malformed in that the first byte was a a UTF-8 | |
998 | continuation byte. | |
999 | ||
1000 | =item C<UTF8_GOT_EMPTY> | |
1001 | ||
1002 | The input C<curlen> parameter was 0. | |
1003 | ||
1004 | =item C<UTF8_GOT_LONG> | |
1005 | ||
1006 | The input sequence was malformed in that there is some other sequence that | |
1007 | evaluates to the same code point, but that sequence is shorter than this one. | |
1008 | ||
1009 | =item C<UTF8_GOT_NONCHAR> | |
1010 | ||
1011 | The code point represented by the input UTF-8 sequence is for a Unicode | |
1012 | non-character code point. | |
1013 | This bit is set only if the input C<flags> parameter contains either the | |
1014 | C<UTF8_DISALLOW_NONCHAR> or the C<UTF8_WARN_NONCHAR> flags. | |
1015 | ||
1016 | =item C<UTF8_GOT_NON_CONTINUATION> | |
1017 | ||
1018 | The input sequence was malformed in that a non-continuation type byte was found | |
1019 | in a position where only a continuation type one should be. | |
1020 | ||
1021 | =item C<UTF8_GOT_OVERFLOW> | |
1022 | ||
1023 | The input sequence was malformed in that it is for a code point that is not | |
1024 | representable in the number of bits available in a UV on the current platform. | |
1025 | ||
1026 | =item C<UTF8_GOT_SHORT> | |
1027 | ||
1028 | The input sequence was malformed in that C<curlen> is smaller than required for | |
1029 | a complete sequence. In other words, the input is for a partial character | |
1030 | sequence. | |
1031 | ||
1032 | =item C<UTF8_GOT_SUPER> | |
1033 | ||
1034 | The input sequence was malformed in that it is for a non-Unicode code point; | |
1035 | that is, one above the legal Unicode maximum. | |
1036 | This bit is set only if the input C<flags> parameter contains either the | |
1037 | C<UTF8_DISALLOW_SUPER> or the C<UTF8_WARN_SUPER> flags. | |
1038 | ||
1039 | =item C<UTF8_GOT_SURROGATE> | |
1040 | ||
1041 | The input sequence was malformed in that it is for a -Unicode UTF-16 surrogate | |
1042 | code point. | |
1043 | This bit is set only if the input C<flags> parameter contains either the | |
1044 | C<UTF8_DISALLOW_SURROGATE> or the C<UTF8_WARN_SURROGATE> flags. | |
1045 | ||
1046 | =back | |
1047 | ||
133551d8 KW |
1048 | To do your own error handling, call this function with the C<UTF8_CHECK_ONLY> |
1049 | flag to suppress any warnings, and then examine the C<*errors> return. | |
1050 | ||
f9380377 | 1051 | =cut |
37607a96 | 1052 | */ |
67e989fb | 1053 | |
a0ed51b3 | 1054 | UV |
f9380377 KW |
1055 | Perl_utf8n_to_uvchr_error(pTHX_ const U8 *s, |
1056 | STRLEN curlen, | |
1057 | STRLEN *retlen, | |
1058 | const U32 flags, | |
1059 | U32 * errors) | |
a0ed51b3 | 1060 | { |
d4c19fe8 | 1061 | const U8 * const s0 = s; |
2b5e7bc2 KW |
1062 | U8 * send = NULL; /* (initialized to silence compilers' wrong |
1063 | warning) */ | |
1064 | U32 possible_problems = 0; /* A bit is set here for each potential problem | |
1065 | found as we go along */ | |
eb83ed87 | 1066 | UV uv = *s; |
2b5e7bc2 KW |
1067 | STRLEN expectlen = 0; /* How long should this sequence be? |
1068 | (initialized to silence compilers' wrong | |
1069 | warning) */ | |
e308b348 | 1070 | STRLEN avail_len = 0; /* When input is too short, gives what that is */ |
f9380377 KW |
1071 | U32 discard_errors = 0; /* Used to save branches when 'errors' is NULL; |
1072 | this gets set and discarded */ | |
a0dbb045 | 1073 | |
2b5e7bc2 KW |
1074 | /* The below are used only if there is both an overlong malformation and a |
1075 | * too short one. Otherwise the first two are set to 's0' and 'send', and | |
1076 | * the third not used at all */ | |
1077 | U8 * adjusted_s0 = (U8 *) s0; | |
5ec712b1 KW |
1078 | U8 * adjusted_send = NULL; /* (Initialized to silence compilers' wrong |
1079 | warning) */ | |
e9f2c446 KW |
1080 | U8 temp_char_buf[UTF8_MAXBYTES + 1]; /* Used to avoid a Newx in this |
1081 | routine; see [perl #130921] */ | |
2b5e7bc2 | 1082 | UV uv_so_far = 0; /* (Initialized to silence compilers' wrong warning) */ |
7918f24d | 1083 | |
f9380377 KW |
1084 | PERL_ARGS_ASSERT_UTF8N_TO_UVCHR_ERROR; |
1085 | ||
1086 | if (errors) { | |
1087 | *errors = 0; | |
1088 | } | |
1089 | else { | |
1090 | errors = &discard_errors; | |
1091 | } | |
a0dbb045 | 1092 | |
eb83ed87 KW |
1093 | /* The order of malformation tests here is important. We should consume as |
1094 | * few bytes as possible in order to not skip any valid character. This is | |
1095 | * required by the Unicode Standard (section 3.9 of Unicode 6.0); see also | |
1096 | * http://unicode.org/reports/tr36 for more discussion as to why. For | |
1097 | * example, once we've done a UTF8SKIP, we can tell the expected number of | |
1098 | * bytes, and could fail right off the bat if the input parameters indicate | |
1099 | * that there are too few available. But it could be that just that first | |
1100 | * byte is garbled, and the intended character occupies fewer bytes. If we | |
1101 | * blindly assumed that the first byte is correct, and skipped based on | |
1102 | * that number, we could skip over a valid input character. So instead, we | |
1103 | * always examine the sequence byte-by-byte. | |
1104 | * | |
1105 | * We also should not consume too few bytes, otherwise someone could inject | |
1106 | * things. For example, an input could be deliberately designed to | |
1107 | * overflow, and if this code bailed out immediately upon discovering that, | |
e2660c54 | 1108 | * returning to the caller C<*retlen> pointing to the very next byte (one |
eb83ed87 KW |
1109 | * which is actually part of of the overflowing sequence), that could look |
1110 | * legitimate to the caller, which could discard the initial partial | |
2b5e7bc2 KW |
1111 | * sequence and process the rest, inappropriately. |
1112 | * | |
1113 | * Some possible input sequences are malformed in more than one way. This | |
1114 | * function goes to lengths to try to find all of them. This is necessary | |
1115 | * for correctness, as the inputs may allow one malformation but not | |
1116 | * another, and if we abandon searching for others after finding the | |
1117 | * allowed one, we could allow in something that shouldn't have been. | |
1118 | */ | |
eb83ed87 | 1119 | |
b5b9af04 | 1120 | if (UNLIKELY(curlen == 0)) { |
2b5e7bc2 KW |
1121 | possible_problems |= UTF8_GOT_EMPTY; |
1122 | curlen = 0; | |
5a48568d | 1123 | uv = UNICODE_REPLACEMENT; |
2b5e7bc2 | 1124 | goto ready_to_handle_errors; |
0c443dc2 JH |
1125 | } |
1126 | ||
eb83ed87 KW |
1127 | expectlen = UTF8SKIP(s); |
1128 | ||
1129 | /* A well-formed UTF-8 character, as the vast majority of calls to this | |
1130 | * function will be for, has this expected length. For efficiency, set | |
1131 | * things up here to return it. It will be overriden only in those rare | |
1132 | * cases where a malformation is found */ | |
1133 | if (retlen) { | |
1134 | *retlen = expectlen; | |
1135 | } | |
1136 | ||
1137 | /* An invariant is trivially well-formed */ | |
1d72bdf6 | 1138 | if (UTF8_IS_INVARIANT(uv)) { |
de69f3af | 1139 | return uv; |
a0ed51b3 | 1140 | } |
67e989fb | 1141 | |
eb83ed87 | 1142 | /* A continuation character can't start a valid sequence */ |
b5b9af04 | 1143 | if (UNLIKELY(UTF8_IS_CONTINUATION(uv))) { |
2b5e7bc2 KW |
1144 | possible_problems |= UTF8_GOT_CONTINUATION; |
1145 | curlen = 1; | |
1146 | uv = UNICODE_REPLACEMENT; | |
1147 | goto ready_to_handle_errors; | |
ba210ebe | 1148 | } |
9041c2e3 | 1149 | |
dcd27b3c | 1150 | /* Here is not a continuation byte, nor an invariant. The only thing left |
ddb65933 KW |
1151 | * is a start byte (possibly for an overlong). (We can't use UTF8_IS_START |
1152 | * because it excludes start bytes like \xC0 that always lead to | |
1153 | * overlongs.) */ | |
dcd27b3c | 1154 | |
534752c1 KW |
1155 | /* Convert to I8 on EBCDIC (no-op on ASCII), then remove the leading bits |
1156 | * that indicate the number of bytes in the character's whole UTF-8 | |
1157 | * sequence, leaving just the bits that are part of the value. */ | |
1158 | uv = NATIVE_UTF8_TO_I8(uv) & UTF_START_MASK(expectlen); | |
ba210ebe | 1159 | |
e308b348 KW |
1160 | /* Setup the loop end point, making sure to not look past the end of the |
1161 | * input string, and flag it as too short if the size isn't big enough. */ | |
1162 | send = (U8*) s0; | |
1163 | if (UNLIKELY(curlen < expectlen)) { | |
1164 | possible_problems |= UTF8_GOT_SHORT; | |
1165 | avail_len = curlen; | |
1166 | send += curlen; | |
1167 | } | |
1168 | else { | |
1169 | send += expectlen; | |
1170 | } | |
1171 | adjusted_send = send; | |
1172 | ||
eb83ed87 | 1173 | /* Now, loop through the remaining bytes in the character's sequence, |
e308b348 | 1174 | * accumulating each into the working value as we go. */ |
eb83ed87 | 1175 | for (s = s0 + 1; s < send; s++) { |
b5b9af04 | 1176 | if (LIKELY(UTF8_IS_CONTINUATION(*s))) { |
8850bf83 | 1177 | uv = UTF8_ACCUMULATE(uv, *s); |
2b5e7bc2 KW |
1178 | continue; |
1179 | } | |
1180 | ||
1181 | /* Here, found a non-continuation before processing all expected bytes. | |
1182 | * This byte indicates the beginning of a new character, so quit, even | |
1183 | * if allowing this malformation. */ | |
2b5e7bc2 | 1184 | possible_problems |= UTF8_GOT_NON_CONTINUATION; |
e308b348 | 1185 | break; |
eb83ed87 KW |
1186 | } /* End of loop through the character's bytes */ |
1187 | ||
1188 | /* Save how many bytes were actually in the character */ | |
1189 | curlen = s - s0; | |
1190 | ||
2b5e7bc2 KW |
1191 | /* Note that there are two types of too-short malformation. One is when |
1192 | * there is actual wrong data before the normal termination of the | |
1193 | * sequence. The other is that the sequence wasn't complete before the end | |
1194 | * of the data we are allowed to look at, based on the input 'curlen'. | |
1195 | * This means that we were passed data for a partial character, but it is | |
1196 | * valid as far as we saw. The other is definitely invalid. This | |
1197 | * distinction could be important to a caller, so the two types are kept | |
15b010f0 KW |
1198 | * separate. |
1199 | * | |
1200 | * A convenience macro that matches either of the too-short conditions. */ | |
1201 | # define UTF8_GOT_TOO_SHORT (UTF8_GOT_SHORT|UTF8_GOT_NON_CONTINUATION) | |
1202 | ||
1203 | if (UNLIKELY(possible_problems & UTF8_GOT_TOO_SHORT)) { | |
1204 | uv_so_far = uv; | |
1205 | uv = UNICODE_REPLACEMENT; | |
1206 | } | |
2b5e7bc2 KW |
1207 | |
1208 | /* Check for overflow */ | |
1209 | if (UNLIKELY(does_utf8_overflow(s0, send))) { | |
1210 | possible_problems |= UTF8_GOT_OVERFLOW; | |
1211 | uv = UNICODE_REPLACEMENT; | |
eb83ed87 | 1212 | } |
eb83ed87 | 1213 | |
2b5e7bc2 KW |
1214 | /* Check for overlong. If no problems so far, 'uv' is the correct code |
1215 | * point value. Simply see if it is expressible in fewer bytes. Otherwise | |
1216 | * we must look at the UTF-8 byte sequence itself to see if it is for an | |
1217 | * overlong */ | |
1218 | if ( ( LIKELY(! possible_problems) | |
1219 | && UNLIKELY(expectlen > (STRLEN) OFFUNISKIP(uv))) | |
1220 | || ( UNLIKELY( possible_problems) | |
1221 | && ( UNLIKELY(! UTF8_IS_START(*s0)) | |
1222 | || ( curlen > 1 | |
1223 | && UNLIKELY(is_utf8_overlong_given_start_byte_ok(s0, | |
1224 | send - s0)))))) | |
2f8f112e | 1225 | { |
2b5e7bc2 KW |
1226 | possible_problems |= UTF8_GOT_LONG; |
1227 | ||
2b5e7bc2 KW |
1228 | if (UNLIKELY(possible_problems & UTF8_GOT_TOO_SHORT)) { |
1229 | UV min_uv = uv_so_far; | |
1230 | STRLEN i; | |
1231 | ||
1232 | /* Here, the input is both overlong and is missing some trailing | |
1233 | * bytes. There is no single code point it could be for, but there | |
1234 | * may be enough information present to determine if what we have | |
1235 | * so far is for an unallowed code point, such as for a surrogate. | |
1236 | * The code below has the intelligence to determine this, but just | |
1237 | * for non-overlong UTF-8 sequences. What we do here is calculate | |
1238 | * the smallest code point the input could represent if there were | |
1239 | * no too short malformation. Then we compute and save the UTF-8 | |
1240 | * for that, which is what the code below looks at instead of the | |
1241 | * raw input. It turns out that the smallest such code point is | |
1242 | * all we need. */ | |
1243 | for (i = curlen; i < expectlen; i++) { | |
1244 | min_uv = UTF8_ACCUMULATE(min_uv, | |
1245 | I8_TO_NATIVE_UTF8(UTF_CONTINUATION_MARK)); | |
1246 | } | |
1247 | ||
e9f2c446 | 1248 | adjusted_s0 = temp_char_buf; |
2b5e7bc2 KW |
1249 | adjusted_send = uvoffuni_to_utf8_flags(adjusted_s0, min_uv, 0); |
1250 | } | |
eb83ed87 KW |
1251 | } |
1252 | ||
2b5e7bc2 KW |
1253 | /* Now check that the input isn't for a problematic code point not allowed |
1254 | * by the input parameters. */ | |
1255 | /* isn't problematic if < this */ | |
1256 | if ( ( ( LIKELY(! possible_problems) && uv >= UNICODE_SURROGATE_FIRST) | |
1257 | || ( UNLIKELY(possible_problems) | |
d60baaa7 KW |
1258 | |
1259 | /* if overflow, we know without looking further | |
1260 | * precisely which of the problematic types it is, | |
1261 | * and we deal with those in the overflow handling | |
1262 | * code */ | |
1263 | && LIKELY(! (possible_problems & UTF8_GOT_OVERFLOW)) | |
2b5e7bc2 | 1264 | && isUTF8_POSSIBLY_PROBLEMATIC(*adjusted_s0))) |
760c7c2f KW |
1265 | && ((flags & ( UTF8_DISALLOW_NONCHAR |
1266 | |UTF8_DISALLOW_SURROGATE | |
1267 | |UTF8_DISALLOW_SUPER | |
1268 | |UTF8_DISALLOW_ABOVE_31_BIT | |
1269 | |UTF8_WARN_NONCHAR | |
1270 | |UTF8_WARN_SURROGATE | |
1271 | |UTF8_WARN_SUPER | |
1272 | |UTF8_WARN_ABOVE_31_BIT)) | |
2b5e7bc2 KW |
1273 | /* In case of a malformation, 'uv' is not valid, and has |
1274 | * been changed to something in the Unicode range. | |
1275 | * Currently we don't output a deprecation message if there | |
1276 | * is already a malformation, so we don't have to special | |
1277 | * case the test immediately below */ | |
760c7c2f KW |
1278 | || ( UNLIKELY(uv > MAX_NON_DEPRECATED_CP) |
1279 | && ckWARN_d(WARN_DEPRECATED)))) | |
eb83ed87 | 1280 | { |
2b5e7bc2 KW |
1281 | /* If there were no malformations, or the only malformation is an |
1282 | * overlong, 'uv' is valid */ | |
1283 | if (LIKELY(! (possible_problems & ~UTF8_GOT_LONG))) { | |
1284 | if (UNLIKELY(UNICODE_IS_SURROGATE(uv))) { | |
1285 | possible_problems |= UTF8_GOT_SURROGATE; | |
1286 | } | |
1287 | else if (UNLIKELY(uv > PERL_UNICODE_MAX)) { | |
1288 | possible_problems |= UTF8_GOT_SUPER; | |
1289 | } | |
1290 | else if (UNLIKELY(UNICODE_IS_NONCHAR(uv))) { | |
1291 | possible_problems |= UTF8_GOT_NONCHAR; | |
1292 | } | |
1293 | } | |
1294 | else { /* Otherwise, need to look at the source UTF-8, possibly | |
1295 | adjusted to be non-overlong */ | |
1296 | ||
1297 | if (UNLIKELY(NATIVE_UTF8_TO_I8(*adjusted_s0) | |
1298 | >= FIRST_START_BYTE_THAT_IS_DEFINITELY_SUPER)) | |
ea5ced44 | 1299 | { |
2b5e7bc2 KW |
1300 | possible_problems |= UTF8_GOT_SUPER; |
1301 | } | |
1302 | else if (curlen > 1) { | |
1303 | if (UNLIKELY(IS_UTF8_2_BYTE_SUPER( | |
1304 | NATIVE_UTF8_TO_I8(*adjusted_s0), | |
1305 | NATIVE_UTF8_TO_I8(*(adjusted_s0 + 1))))) | |
ea5ced44 | 1306 | { |
2b5e7bc2 | 1307 | possible_problems |= UTF8_GOT_SUPER; |
ea5ced44 | 1308 | } |
2b5e7bc2 KW |
1309 | else if (UNLIKELY(IS_UTF8_2_BYTE_SURROGATE( |
1310 | NATIVE_UTF8_TO_I8(*adjusted_s0), | |
1311 | NATIVE_UTF8_TO_I8(*(adjusted_s0 + 1))))) | |
1312 | { | |
1313 | possible_problems |= UTF8_GOT_SURROGATE; | |
ea5ced44 KW |
1314 | } |
1315 | } | |
c0236afe | 1316 | |
2b5e7bc2 KW |
1317 | /* We need a complete well-formed UTF-8 character to discern |
1318 | * non-characters, so can't look for them here */ | |
1319 | } | |
1320 | } | |
949cf498 | 1321 | |
2b5e7bc2 KW |
1322 | ready_to_handle_errors: |
1323 | ||
1324 | /* At this point: | |
1325 | * curlen contains the number of bytes in the sequence that | |
1326 | * this call should advance the input by. | |
e308b348 KW |
1327 | * avail_len gives the available number of bytes passed in, but |
1328 | * only if this is less than the expected number of | |
1329 | * bytes, based on the code point's start byte. | |
2b5e7bc2 KW |
1330 | * possible_problems' is 0 if there weren't any problems; otherwise a bit |
1331 | * is set in it for each potential problem found. | |
1332 | * uv contains the code point the input sequence | |
1333 | * represents; or if there is a problem that prevents | |
1334 | * a well-defined value from being computed, it is | |
1335 | * some subsitute value, typically the REPLACEMENT | |
1336 | * CHARACTER. | |
1337 | * s0 points to the first byte of the character | |
1338 | * send points to just after where that (potentially | |
1339 | * partial) character ends | |
1340 | * adjusted_s0 normally is the same as s0, but in case of an | |
1341 | * overlong for which the UTF-8 matters below, it is | |
1342 | * the first byte of the shortest form representation | |
1343 | * of the input. | |
1344 | * adjusted_send normally is the same as 'send', but if adjusted_s0 | |
1345 | * is set to something other than s0, this points one | |
1346 | * beyond its end | |
1347 | */ | |
eb83ed87 | 1348 | |
2b5e7bc2 KW |
1349 | if (UNLIKELY(possible_problems)) { |
1350 | bool disallowed = FALSE; | |
1351 | const U32 orig_problems = possible_problems; | |
1352 | ||
1353 | while (possible_problems) { /* Handle each possible problem */ | |
1354 | UV pack_warn = 0; | |
1355 | char * message = NULL; | |
1356 | ||
1357 | /* Each 'if' clause handles one problem. They are ordered so that | |
1358 | * the first ones' messages will be displayed before the later | |
1359 | * ones; this is kinda in decreasing severity order */ | |
1360 | if (possible_problems & UTF8_GOT_OVERFLOW) { | |
1361 | ||
1362 | /* Overflow means also got a super and above 31 bits, but we | |
1363 | * handle all three cases here */ | |
1364 | possible_problems | |
1365 | &= ~(UTF8_GOT_OVERFLOW|UTF8_GOT_SUPER|UTF8_GOT_ABOVE_31_BIT); | |
f9380377 KW |
1366 | *errors |= UTF8_GOT_OVERFLOW; |
1367 | ||
1368 | /* But the API says we flag all errors found */ | |
1369 | if (flags & (UTF8_WARN_SUPER|UTF8_DISALLOW_SUPER)) { | |
1370 | *errors |= UTF8_GOT_SUPER; | |
1371 | } | |
ddb65933 KW |
1372 | if (flags |
1373 | & (UTF8_WARN_ABOVE_31_BIT|UTF8_DISALLOW_ABOVE_31_BIT)) | |
1374 | { | |
f9380377 KW |
1375 | *errors |= UTF8_GOT_ABOVE_31_BIT; |
1376 | } | |
2b5e7bc2 | 1377 | |
d60baaa7 KW |
1378 | /* Disallow if any of the three categories say to */ |
1379 | if ( ! (flags & UTF8_ALLOW_OVERFLOW) | |
1380 | || (flags & ( UTF8_DISALLOW_SUPER | |
1381 | |UTF8_DISALLOW_ABOVE_31_BIT))) | |
1382 | { | |
1383 | disallowed = TRUE; | |
1384 | } | |
1385 | ||
1386 | ||
1387 | /* Likewise, warn if any say to, plus if deprecation warnings | |
1388 | * are on, because this code point is above IV_MAX */ | |
1389 | if ( ckWARN_d(WARN_DEPRECATED) | |
1390 | || ! (flags & UTF8_ALLOW_OVERFLOW) | |
1391 | || (flags & (UTF8_WARN_SUPER|UTF8_WARN_ABOVE_31_BIT))) | |
1392 | { | |
2b5e7bc2 | 1393 | |
ddb65933 KW |
1394 | /* The warnings code explicitly says it doesn't handle the |
1395 | * case of packWARN2 and two categories which have | |
1396 | * parent-child relationship. Even if it works now to | |
1397 | * raise the warning if either is enabled, it wouldn't | |
1398 | * necessarily do so in the future. We output (only) the | |
1399 | * most dire warning*/ | |
1400 | if (! (flags & UTF8_CHECK_ONLY)) { | |
1401 | if (ckWARN_d(WARN_UTF8)) { | |
1402 | pack_warn = packWARN(WARN_UTF8); | |
1403 | } | |
1404 | else if (ckWARN_d(WARN_NON_UNICODE)) { | |
1405 | pack_warn = packWARN(WARN_NON_UNICODE); | |
1406 | } | |
1407 | if (pack_warn) { | |
1408 | message = Perl_form(aTHX_ "%s: %s (overflows)", | |
1409 | malformed_text, | |
7e2f38b2 | 1410 | _byte_dump_string(s0, send - s0, 0)); |
ddb65933 | 1411 | } |
2b5e7bc2 KW |
1412 | } |
1413 | } | |
1414 | } | |
1415 | else if (possible_problems & UTF8_GOT_EMPTY) { | |
1416 | possible_problems &= ~UTF8_GOT_EMPTY; | |
f9380377 | 1417 | *errors |= UTF8_GOT_EMPTY; |
2b5e7bc2 KW |
1418 | |
1419 | if (! (flags & UTF8_ALLOW_EMPTY)) { | |
d1f8d421 KW |
1420 | |
1421 | /* This so-called malformation is now treated as a bug in | |
1422 | * the caller. If you have nothing to decode, skip calling | |
1423 | * this function */ | |
1424 | assert(0); | |
1425 | ||
2b5e7bc2 KW |
1426 | disallowed = TRUE; |
1427 | if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) { | |
1428 | pack_warn = packWARN(WARN_UTF8); | |
1429 | message = Perl_form(aTHX_ "%s (empty string)", | |
1430 | malformed_text); | |
1431 | } | |
1432 | } | |
1433 | } | |
1434 | else if (possible_problems & UTF8_GOT_CONTINUATION) { | |
1435 | possible_problems &= ~UTF8_GOT_CONTINUATION; | |
f9380377 | 1436 | *errors |= UTF8_GOT_CONTINUATION; |
2b5e7bc2 KW |
1437 | |
1438 | if (! (flags & UTF8_ALLOW_CONTINUATION)) { | |
1439 | disallowed = TRUE; | |
1440 | if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) { | |
1441 | pack_warn = packWARN(WARN_UTF8); | |
1442 | message = Perl_form(aTHX_ | |
1443 | "%s: %s (unexpected continuation byte 0x%02x," | |
1444 | " with no preceding start byte)", | |
1445 | malformed_text, | |
7e2f38b2 | 1446 | _byte_dump_string(s0, 1, 0), *s0); |
2b5e7bc2 KW |
1447 | } |
1448 | } | |
1449 | } | |
2b5e7bc2 KW |
1450 | else if (possible_problems & UTF8_GOT_SHORT) { |
1451 | possible_problems &= ~UTF8_GOT_SHORT; | |
f9380377 | 1452 | *errors |= UTF8_GOT_SHORT; |
2b5e7bc2 KW |
1453 | |
1454 | if (! (flags & UTF8_ALLOW_SHORT)) { | |
1455 | disallowed = TRUE; | |
1456 | if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) { | |
1457 | pack_warn = packWARN(WARN_UTF8); | |
1458 | message = Perl_form(aTHX_ | |
9a6c9c81 | 1459 | "%s: %s (too short; %d byte%s available, need %d)", |
2b5e7bc2 | 1460 | malformed_text, |
7e2f38b2 | 1461 | _byte_dump_string(s0, send - s0, 0), |
e308b348 KW |
1462 | (int)avail_len, |
1463 | avail_len == 1 ? "" : "s", | |
2b5e7bc2 KW |
1464 | (int)expectlen); |
1465 | } | |
1466 | } | |
ba210ebe | 1467 | |
2b5e7bc2 | 1468 | } |
e308b348 KW |
1469 | else if (possible_problems & UTF8_GOT_NON_CONTINUATION) { |
1470 | possible_problems &= ~UTF8_GOT_NON_CONTINUATION; | |
1471 | *errors |= UTF8_GOT_NON_CONTINUATION; | |
1472 | ||
1473 | if (! (flags & UTF8_ALLOW_NON_CONTINUATION)) { | |
1474 | disallowed = TRUE; | |
1475 | if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) { | |
99a765e9 KW |
1476 | |
1477 | /* If we don't know for sure that the input length is | |
1478 | * valid, avoid as much as possible reading past the | |
1479 | * end of the buffer */ | |
1480 | int printlen = (flags & _UTF8_NO_CONFIDENCE_IN_CURLEN) | |
1481 | ? s - s0 | |
1482 | : send - s0; | |
e308b348 KW |
1483 | pack_warn = packWARN(WARN_UTF8); |
1484 | message = Perl_form(aTHX_ "%s", | |
1485 | unexpected_non_continuation_text(s0, | |
99a765e9 | 1486 | printlen, |
e308b348 KW |
1487 | s - s0, |
1488 | (int) expectlen)); | |
1489 | } | |
1490 | } | |
1491 | } | |
2b5e7bc2 KW |
1492 | else if (possible_problems & UTF8_GOT_LONG) { |
1493 | possible_problems &= ~UTF8_GOT_LONG; | |
f9380377 | 1494 | *errors |= UTF8_GOT_LONG; |
2b5e7bc2 | 1495 | |
94953955 KW |
1496 | if (flags & UTF8_ALLOW_LONG) { |
1497 | ||
1498 | /* We don't allow the actual overlong value, unless the | |
1499 | * special extra bit is also set */ | |
1500 | if (! (flags & ( UTF8_ALLOW_LONG_AND_ITS_VALUE | |
1501 | & ~UTF8_ALLOW_LONG))) | |
1502 | { | |
1503 | uv = UNICODE_REPLACEMENT; | |
1504 | } | |
1505 | } | |
1506 | else { | |
2b5e7bc2 KW |
1507 | disallowed = TRUE; |
1508 | ||
1509 | if (ckWARN_d(WARN_UTF8) && ! (flags & UTF8_CHECK_ONLY)) { | |
1510 | pack_warn = packWARN(WARN_UTF8); | |
1511 | ||
1512 | /* These error types cause 'uv' to be something that | |
1513 | * isn't what was intended, so can't use it in the | |
1514 | * message. The other error types either can't | |
1515 | * generate an overlong, or else the 'uv' is valid */ | |
1516 | if (orig_problems & | |
1517 | (UTF8_GOT_TOO_SHORT|UTF8_GOT_OVERFLOW)) | |
1518 | { | |
1519 | message = Perl_form(aTHX_ | |
1520 | "%s: %s (any UTF-8 sequence that starts" | |
1521 | " with \"%s\" is overlong which can and" | |
1522 | " should be represented with a" | |
1523 | " different, shorter sequence)", | |
1524 | malformed_text, | |
7e2f38b2 KW |
1525 | _byte_dump_string(s0, send - s0, 0), |
1526 | _byte_dump_string(s0, curlen, 0)); | |
2b5e7bc2 KW |
1527 | } |
1528 | else { | |
1529 | U8 tmpbuf[UTF8_MAXBYTES+1]; | |
1530 | const U8 * const e = uvoffuni_to_utf8_flags(tmpbuf, | |
1531 | uv, 0); | |
1532 | message = Perl_form(aTHX_ | |
1533 | "%s: %s (overlong; instead use %s to represent" | |
147e3846 | 1534 | " U+%0*" UVXf ")", |
2b5e7bc2 | 1535 | malformed_text, |
7e2f38b2 KW |
1536 | _byte_dump_string(s0, send - s0, 0), |
1537 | _byte_dump_string(tmpbuf, e - tmpbuf, 0), | |
2b5e7bc2 KW |
1538 | ((uv < 256) ? 2 : 4), /* Field width of 2 for |
1539 | small code points */ | |
1540 | uv); | |
1541 | } | |
1542 | } | |
1543 | } | |
1544 | } | |
1545 | else if (possible_problems & UTF8_GOT_SURROGATE) { | |
1546 | possible_problems &= ~UTF8_GOT_SURROGATE; | |
1547 | ||
f9380377 KW |
1548 | if (flags & UTF8_WARN_SURROGATE) { |
1549 | *errors |= UTF8_GOT_SURROGATE; | |
1550 | ||
1551 | if ( ! (flags & UTF8_CHECK_ONLY) | |
1552 | && ckWARN_d(WARN_SURROGATE)) | |
1553 | { | |
2b5e7bc2 KW |
1554 | pack_warn = packWARN(WARN_SURROGATE); |
1555 | ||
1556 | /* These are the only errors that can occur with a | |
1557 | * surrogate when the 'uv' isn't valid */ | |
1558 | if (orig_problems & UTF8_GOT_TOO_SHORT) { | |
1559 | message = Perl_form(aTHX_ | |
1560 | "UTF-16 surrogate (any UTF-8 sequence that" | |
1561 | " starts with \"%s\" is for a surrogate)", | |
7e2f38b2 | 1562 | _byte_dump_string(s0, curlen, 0)); |
2b5e7bc2 KW |
1563 | } |
1564 | else { | |
1565 | message = Perl_form(aTHX_ | |
147e3846 | 1566 | "UTF-16 surrogate U+%04" UVXf, uv); |
2b5e7bc2 | 1567 | } |
f9380377 | 1568 | } |
2b5e7bc2 | 1569 | } |
ba210ebe | 1570 | |
2b5e7bc2 KW |
1571 | if (flags & UTF8_DISALLOW_SURROGATE) { |
1572 | disallowed = TRUE; | |
f9380377 | 1573 | *errors |= UTF8_GOT_SURROGATE; |
2b5e7bc2 KW |
1574 | } |
1575 | } | |
1576 | else if (possible_problems & UTF8_GOT_SUPER) { | |
1577 | possible_problems &= ~UTF8_GOT_SUPER; | |
949cf498 | 1578 | |
f9380377 KW |
1579 | if (flags & UTF8_WARN_SUPER) { |
1580 | *errors |= UTF8_GOT_SUPER; | |
1581 | ||
1582 | if ( ! (flags & UTF8_CHECK_ONLY) | |
1583 | && ckWARN_d(WARN_NON_UNICODE)) | |
1584 | { | |
2b5e7bc2 KW |
1585 | pack_warn = packWARN(WARN_NON_UNICODE); |
1586 | ||
1587 | if (orig_problems & UTF8_GOT_TOO_SHORT) { | |
1588 | message = Perl_form(aTHX_ | |
1589 | "Any UTF-8 sequence that starts with" | |
1590 | " \"%s\" is for a non-Unicode code point," | |
1591 | " may not be portable", | |
7e2f38b2 | 1592 | _byte_dump_string(s0, curlen, 0)); |
2b5e7bc2 KW |
1593 | } |
1594 | else { | |
1595 | message = Perl_form(aTHX_ | |
147e3846 | 1596 | "Code point 0x%04" UVXf " is not" |
2b5e7bc2 KW |
1597 | " Unicode, may not be portable", |
1598 | uv); | |
1599 | } | |
f9380377 | 1600 | } |
2b5e7bc2 | 1601 | } |
ba210ebe | 1602 | |
2b5e7bc2 KW |
1603 | /* The maximum code point ever specified by a standard was |
1604 | * 2**31 - 1. Anything larger than that is a Perl extension | |
1605 | * that very well may not be understood by other applications | |
1606 | * (including earlier perl versions on EBCDIC platforms). We | |
1607 | * test for these after the regular SUPER ones, and before | |
1608 | * possibly bailing out, so that the slightly more dire warning | |
1609 | * will override the regular one. */ | |
1610 | if ( (flags & (UTF8_WARN_ABOVE_31_BIT | |
1611 | |UTF8_WARN_SUPER | |
1612 | |UTF8_DISALLOW_ABOVE_31_BIT)) | |
1613 | && ( ( UNLIKELY(orig_problems & UTF8_GOT_TOO_SHORT) | |
1614 | && UNLIKELY(is_utf8_cp_above_31_bits( | |
1615 | adjusted_s0, | |
1616 | adjusted_send))) | |
1617 | || ( LIKELY(! (orig_problems & UTF8_GOT_TOO_SHORT)) | |
1618 | && UNLIKELY(UNICODE_IS_ABOVE_31_BIT(uv))))) | |
1619 | { | |
1620 | if ( ! (flags & UTF8_CHECK_ONLY) | |
1621 | && (flags & (UTF8_WARN_ABOVE_31_BIT|UTF8_WARN_SUPER)) | |
1622 | && ckWARN_d(WARN_UTF8)) | |
1623 | { | |
1624 | pack_warn = packWARN(WARN_UTF8); | |
1625 | ||
1626 | if (orig_problems & UTF8_GOT_TOO_SHORT) { | |
1627 | message = Perl_form(aTHX_ | |
1628 | "Any UTF-8 sequence that starts with" | |
1629 | " \"%s\" is for a non-Unicode code" | |
1630 | " point, and is not portable", | |
7e2f38b2 | 1631 | _byte_dump_string(s0, curlen, 0)); |
2b5e7bc2 KW |
1632 | } |
1633 | else { | |
1634 | message = Perl_form(aTHX_ | |
147e3846 | 1635 | "Code point 0x%" UVXf " is not Unicode," |
2b5e7bc2 KW |
1636 | " and not portable", |
1637 | uv); | |
1638 | } | |
1639 | } | |
1640 | ||
ddb65933 KW |
1641 | if (flags & ( UTF8_WARN_ABOVE_31_BIT |
1642 | |UTF8_DISALLOW_ABOVE_31_BIT)) | |
1643 | { | |
f9380377 KW |
1644 | *errors |= UTF8_GOT_ABOVE_31_BIT; |
1645 | ||
1646 | if (flags & UTF8_DISALLOW_ABOVE_31_BIT) { | |
1647 | disallowed = TRUE; | |
1648 | } | |
2b5e7bc2 KW |
1649 | } |
1650 | } | |
eb83ed87 | 1651 | |
2b5e7bc2 | 1652 | if (flags & UTF8_DISALLOW_SUPER) { |
f9380377 | 1653 | *errors |= UTF8_GOT_SUPER; |
2b5e7bc2 KW |
1654 | disallowed = TRUE; |
1655 | } | |
eb83ed87 | 1656 | |
2b5e7bc2 KW |
1657 | /* The deprecated warning overrides any non-deprecated one. If |
1658 | * there are other problems, a deprecation message is not | |
1659 | * really helpful, so don't bother to raise it in that case. | |
1660 | * This also keeps the code from having to handle the case | |
1661 | * where 'uv' is not valid. */ | |
1662 | if ( ! (orig_problems | |
1663 | & (UTF8_GOT_TOO_SHORT|UTF8_GOT_OVERFLOW)) | |
13f4dd34 A |
1664 | && UNLIKELY(uv > MAX_NON_DEPRECATED_CP)) { |
1665 | Perl_croak(aTHX_ cp_above_legal_max, uv, | |
1666 | MAX_NON_DEPRECATED_CP); | |
2b5e7bc2 KW |
1667 | } |
1668 | } | |
1669 | else if (possible_problems & UTF8_GOT_NONCHAR) { | |
1670 | possible_problems &= ~UTF8_GOT_NONCHAR; | |
ba210ebe | 1671 | |
f9380377 KW |
1672 | if (flags & UTF8_WARN_NONCHAR) { |
1673 | *errors |= UTF8_GOT_NONCHAR; | |
1674 | ||
1675 | if ( ! (flags & UTF8_CHECK_ONLY) | |
1676 | && ckWARN_d(WARN_NONCHAR)) | |
1677 | { | |
2b5e7bc2 KW |
1678 | /* The code above should have guaranteed that we don't |
1679 | * get here with errors other than overlong */ | |
1680 | assert (! (orig_problems | |
1681 | & ~(UTF8_GOT_LONG|UTF8_GOT_NONCHAR))); | |
1682 | ||
1683 | pack_warn = packWARN(WARN_NONCHAR); | |
1684 | message = Perl_form(aTHX_ "Unicode non-character" | |
147e3846 | 1685 | " U+%04" UVXf " is not recommended" |
2b5e7bc2 | 1686 | " for open interchange", uv); |
f9380377 | 1687 | } |
2b5e7bc2 | 1688 | } |
5b311467 | 1689 | |
2b5e7bc2 KW |
1690 | if (flags & UTF8_DISALLOW_NONCHAR) { |
1691 | disallowed = TRUE; | |
f9380377 | 1692 | *errors |= UTF8_GOT_NONCHAR; |
2b5e7bc2 KW |
1693 | } |
1694 | } /* End of looking through the possible flags */ | |
1695 | ||
1696 | /* Display the message (if any) for the problem being handled in | |
1697 | * this iteration of the loop */ | |
1698 | if (message) { | |
1699 | if (PL_op) | |
1700 | Perl_warner(aTHX_ pack_warn, "%s in %s", message, | |
1701 | OP_DESC(PL_op)); | |
1702 | else | |
1703 | Perl_warner(aTHX_ pack_warn, "%s", message); | |
1704 | } | |
ddb65933 | 1705 | } /* End of 'while (possible_problems)' */ |
a0dbb045 | 1706 | |
2b5e7bc2 KW |
1707 | /* Since there was a possible problem, the returned length may need to |
1708 | * be changed from the one stored at the beginning of this function. | |
1709 | * Instead of trying to figure out if that's needed, just do it. */ | |
1710 | if (retlen) { | |
1711 | *retlen = curlen; | |
1712 | } | |
a0dbb045 | 1713 | |
2b5e7bc2 KW |
1714 | if (disallowed) { |
1715 | if (flags & UTF8_CHECK_ONLY && retlen) { | |
1716 | *retlen = ((STRLEN) -1); | |
1717 | } | |
1718 | return 0; | |
1719 | } | |
eb83ed87 | 1720 | } |
ba210ebe | 1721 | |
2b5e7bc2 | 1722 | return UNI_TO_NATIVE(uv); |
a0ed51b3 LW |
1723 | } |
1724 | ||
8e84507e | 1725 | /* |
ec5f19d0 KW |
1726 | =for apidoc utf8_to_uvchr_buf |
1727 | ||
1728 | Returns the native code point of the first character in the string C<s> which | |
1729 | is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>. | |
524080c4 | 1730 | C<*retlen> will be set to the length, in bytes, of that character. |
ec5f19d0 | 1731 | |
524080c4 KW |
1732 | If C<s> does not point to a well-formed UTF-8 character and UTF8 warnings are |
1733 | enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't | |
796b6530 | 1734 | C<NULL>) to -1. If those warnings are off, the computed value, if well-defined |
173db420 | 1735 | (or the Unicode REPLACEMENT CHARACTER if not), is silently returned, and |
796b6530 | 1736 | C<*retlen> is set (if C<retlen> isn't C<NULL>) so that (S<C<s> + C<*retlen>>) is |
173db420 | 1737 | the next possible position in C<s> that could begin a non-malformed character. |
de69f3af | 1738 | See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is |
173db420 | 1739 | returned. |
ec5f19d0 | 1740 | |
760c7c2f KW |
1741 | Code points above the platform's C<IV_MAX> will raise a deprecation warning, |
1742 | unless those are turned off. | |
1743 | ||
ec5f19d0 | 1744 | =cut |
52be2536 KW |
1745 | |
1746 | Also implemented as a macro in utf8.h | |
1747 | ||
ec5f19d0 KW |
1748 | */ |
1749 | ||
1750 | ||
1751 | UV | |
1752 | Perl_utf8_to_uvchr_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen) | |
1753 | { | |
7f974d7e KW |
1754 | PERL_ARGS_ASSERT_UTF8_TO_UVCHR_BUF; |
1755 | ||
ec5f19d0 KW |
1756 | assert(s < send); |
1757 | ||
1758 | return utf8n_to_uvchr(s, send - s, retlen, | |
ddb65933 | 1759 | ckWARN_d(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY); |
ec5f19d0 KW |
1760 | } |
1761 | ||
52be2536 KW |
1762 | /* This is marked as deprecated |
1763 | * | |
ec5f19d0 KW |
1764 | =for apidoc utf8_to_uvuni_buf |
1765 | ||
de69f3af KW |
1766 | Only in very rare circumstances should code need to be dealing in Unicode |
1767 | (as opposed to native) code points. In those few cases, use | |
1768 | C<L<NATIVE_TO_UNI(utf8_to_uvchr_buf(...))|/utf8_to_uvchr_buf>> instead. | |
4f83cdcd KW |
1769 | |
1770 | Returns the Unicode (not-native) code point of the first character in the | |
1771 | string C<s> which | |
ec5f19d0 KW |
1772 | is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>. |
1773 | C<retlen> will be set to the length, in bytes, of that character. | |
1774 | ||
524080c4 KW |
1775 | If C<s> does not point to a well-formed UTF-8 character and UTF8 warnings are |
1776 | enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't | |
1777 | NULL) to -1. If those warnings are off, the computed value if well-defined (or | |
1778 | the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen> | |
1779 | is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the | |
1780 | next possible position in C<s> that could begin a non-malformed character. | |
de69f3af | 1781 | See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is returned. |
ec5f19d0 | 1782 | |
760c7c2f KW |
1783 | Code points above the platform's C<IV_MAX> will raise a deprecation warning, |
1784 | unless those are turned off. | |
1785 | ||
ec5f19d0 KW |
1786 | =cut |
1787 | */ | |
1788 | ||
1789 | UV | |
1790 | Perl_utf8_to_uvuni_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen) | |
1791 | { | |
1792 | PERL_ARGS_ASSERT_UTF8_TO_UVUNI_BUF; | |
1793 | ||
1794 | assert(send > s); | |
1795 | ||
5962d97e KW |
1796 | /* Call the low level routine, asking for checks */ |
1797 | return NATIVE_TO_UNI(utf8_to_uvchr_buf(s, send, retlen)); | |
ec5f19d0 KW |
1798 | } |
1799 | ||
b76347f2 | 1800 | /* |
87cea99e | 1801 | =for apidoc utf8_length |
b76347f2 JH |
1802 | |
1803 | Return the length of the UTF-8 char encoded string C<s> in characters. | |
02eb7b47 JH |
1804 | Stops at C<e> (inclusive). If C<e E<lt> s> or if the scan would end |
1805 | up past C<e>, croaks. | |
b76347f2 JH |
1806 | |
1807 | =cut | |
1808 | */ | |
1809 | ||
1810 | STRLEN | |
35a4481c | 1811 | Perl_utf8_length(pTHX_ const U8 *s, const U8 *e) |
b76347f2 JH |
1812 | { |
1813 | STRLEN len = 0; | |
1814 | ||
7918f24d NC |
1815 | PERL_ARGS_ASSERT_UTF8_LENGTH; |
1816 | ||
8850bf83 JH |
1817 | /* Note: cannot use UTF8_IS_...() too eagerly here since e.g. |
1818 | * the bitops (especially ~) can create illegal UTF-8. | |
1819 | * In other words: in Perl UTF-8 is not just for Unicode. */ | |
1820 | ||
a3b680e6 AL |
1821 | if (e < s) |
1822 | goto warn_and_return; | |
b76347f2 | 1823 | while (s < e) { |
4cbf4130 | 1824 | s += UTF8SKIP(s); |
8e91ec7f AV |
1825 | len++; |
1826 | } | |
1827 | ||
1828 | if (e != s) { | |
1829 | len--; | |
1830 | warn_and_return: | |
9b387841 NC |
1831 | if (PL_op) |
1832 | Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), | |
1833 | "%s in %s", unees, OP_DESC(PL_op)); | |
1834 | else | |
61a12c31 | 1835 | Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), "%s", unees); |
b76347f2 JH |
1836 | } |
1837 | ||
1838 | return len; | |
1839 | } | |
1840 | ||
b06226ff | 1841 | /* |
fed3ba5d NC |
1842 | =for apidoc bytes_cmp_utf8 |
1843 | ||
a1433954 | 1844 | Compares the sequence of characters (stored as octets) in C<b>, C<blen> with the |
72d33970 FC |
1845 | sequence of characters (stored as UTF-8) |
1846 | in C<u>, C<ulen>. Returns 0 if they are | |
fed3ba5d NC |
1847 | equal, -1 or -2 if the first string is less than the second string, +1 or +2 |
1848 | if the first string is greater than the second string. | |
1849 | ||
1850 | -1 or +1 is returned if the shorter string was identical to the start of the | |
72d33970 FC |
1851 | longer string. -2 or +2 is returned if |
1852 | there was a difference between characters | |
fed3ba5d NC |
1853 | within the strings. |
1854 | ||
1855 | =cut | |
1856 | */ | |
1857 | ||
1858 | int | |
1859 | Perl_bytes_cmp_utf8(pTHX_ const U8 *b, STRLEN blen, const U8 *u, STRLEN ulen) | |
1860 | { | |
1861 | const U8 *const bend = b + blen; | |
1862 | const U8 *const uend = u + ulen; | |
1863 | ||
1864 | PERL_ARGS_ASSERT_BYTES_CMP_UTF8; | |
fed3ba5d NC |
1865 | |
1866 | while (b < bend && u < uend) { | |
1867 | U8 c = *u++; | |
1868 | if (!UTF8_IS_INVARIANT(c)) { | |
1869 | if (UTF8_IS_DOWNGRADEABLE_START(c)) { | |
1870 | if (u < uend) { | |
1871 | U8 c1 = *u++; | |
1872 | if (UTF8_IS_CONTINUATION(c1)) { | |
a62b247b | 1873 | c = EIGHT_BIT_UTF8_TO_NATIVE(c, c1); |
fed3ba5d | 1874 | } else { |
2b5e7bc2 | 1875 | /* diag_listed_as: Malformed UTF-8 character%s */ |
fed3ba5d | 1876 | Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), |
806547a7 | 1877 | "%s %s%s", |
7cf8d05d | 1878 | unexpected_non_continuation_text(u - 1, 2, 1, 2), |
806547a7 KW |
1879 | PL_op ? " in " : "", |
1880 | PL_op ? OP_DESC(PL_op) : ""); | |
fed3ba5d NC |
1881 | return -2; |
1882 | } | |
1883 | } else { | |
1884 | if (PL_op) | |
1885 | Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), | |
1886 | "%s in %s", unees, OP_DESC(PL_op)); | |
1887 | else | |
61a12c31 | 1888 | Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), "%s", unees); |
fed3ba5d NC |
1889 | return -2; /* Really want to return undef :-) */ |
1890 | } | |
1891 | } else { | |
1892 | return -2; | |
1893 | } | |
1894 | } | |
1895 | if (*b != c) { | |
1896 | return *b < c ? -2 : +2; | |
1897 | } | |
1898 | ++b; | |
1899 | } | |
1900 | ||
1901 | if (b == bend && u == uend) | |
1902 | return 0; | |
1903 | ||
1904 | return b < bend ? +1 : -1; | |
1905 | } | |
1906 | ||
1907 | /* | |
87cea99e | 1908 | =for apidoc utf8_to_bytes |
6940069f | 1909 | |
2bbc8d55 | 1910 | Converts a string C<s> of length C<len> from UTF-8 into native byte encoding. |
a1433954 KW |
1911 | Unlike L</bytes_to_utf8>, this over-writes the original string, and |
1912 | updates C<len> to contain the new length. | |
67e989fb | 1913 | Returns zero on failure, setting C<len> to -1. |
6940069f | 1914 | |
a1433954 | 1915 | If you need a copy of the string, see L</bytes_from_utf8>. |
95be277c | 1916 | |
6940069f GS |
1917 | =cut |
1918 | */ | |
1919 | ||
1920 | U8 * | |
37607a96 | 1921 | Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len) |
6940069f | 1922 | { |
9fe0d3c2 | 1923 | U8 * first_variant; |
246fae53 | 1924 | |
7918f24d | 1925 | PERL_ARGS_ASSERT_UTF8_TO_BYTES; |
81611534 | 1926 | PERL_UNUSED_CONTEXT; |
7918f24d | 1927 | |
9fe0d3c2 KW |
1928 | /* This is a no-op if no variants at all in the input */ |
1929 | if (is_utf8_invariant_string_loc(s, *len, (const U8 **) &first_variant)) { | |
1930 | return s; | |
1931 | } | |
1932 | ||
1933 | { | |
1934 | U8 * const save = s; | |
1935 | U8 * const send = s + *len; | |
1936 | U8 * d; | |
1937 | ||
1938 | /* Nothing before the first variant needs to be changed, so start the real | |
1939 | * work there */ | |
1940 | s = first_variant; | |
d4c19fe8 | 1941 | while (s < send) { |
d59937ca KW |
1942 | if (! UTF8_IS_INVARIANT(*s)) { |
1943 | if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, send)) { | |
1944 | *len = ((STRLEN) -1); | |
1945 | return 0; | |
1946 | } | |
1947 | s++; | |
dcad2880 | 1948 | } |
d59937ca | 1949 | s++; |
246fae53 | 1950 | } |
dcad2880 | 1951 | |
9fe0d3c2 | 1952 | d = s = first_variant; |
6940069f | 1953 | while (s < send) { |
80e0b38f | 1954 | U8 c = *s++; |
28de57be | 1955 | if (! UVCHR_IS_INVARIANT(c)) { |
80e0b38f | 1956 | /* Then it is two-byte encoded */ |
a62b247b | 1957 | c = EIGHT_BIT_UTF8_TO_NATIVE(c, *s); |
80e0b38f KW |
1958 | s++; |
1959 | } | |
1960 | *d++ = c; | |
6940069f GS |
1961 | } |
1962 | *d = '\0'; | |
246fae53 | 1963 | *len = d - save; |
6940069f | 1964 | return save; |
9fe0d3c2 | 1965 | } |
6940069f GS |
1966 | } |
1967 | ||
1968 | /* | |
87cea99e | 1969 | =for apidoc bytes_from_utf8 |
f9a63242 | 1970 | |
4f3d592d KW |
1971 | Converts a potentially UTF-8 encoded string C<s> of length C<len> into native |
1972 | byte encoding. On input, the boolean C<*is_utf8> gives whether or not C<s> is | |
1973 | actually encoded in UTF-8. | |
1974 | ||
1975 | Unlike L</utf8_to_bytes> but like L</bytes_to_utf8>, this is non-destructive of | |
1976 | the input string. | |
1977 | ||
1978 | Do nothing if C<*is_utf8> is 0, or if there are code points in the string | |
1979 | not expressible in native byte encoding. In these cases, C<*is_utf8> and | |
1980 | C<*len> are unchanged, and the return value is the original C<s>. | |
1981 | ||
1982 | Otherwise, C<*is_utf8> is set to 0, and the return value is a pointer to a | |
1983 | newly created string containing a downgraded copy of C<s>, and whose length is | |
1984 | returned in C<*len>, updated. | |
f9a63242 | 1985 | |
37607a96 PK |
1986 | =cut |
1987 | */ | |
f9a63242 JH |
1988 | |
1989 | U8 * | |
e1ec3a88 | 1990 | Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8) |
f9a63242 | 1991 | { |
f9a63242 | 1992 | U8 *d; |
e1ec3a88 AL |
1993 | const U8 *start = s; |
1994 | const U8 *send; | |
2a67563b | 1995 | Size_t count = 0; |
f9a63242 | 1996 | |
7918f24d | 1997 | PERL_ARGS_ASSERT_BYTES_FROM_UTF8; |
96a5add6 | 1998 | PERL_UNUSED_CONTEXT; |
f9a63242 | 1999 | if (!*is_utf8) |
73d840c0 | 2000 | return (U8 *)start; |
f9a63242 | 2001 | |
1e54db1a | 2002 | /* ensure valid UTF-8 and chars < 256 before converting string */ |
f9a63242 | 2003 | for (send = s + *len; s < send;) { |
d59937ca KW |
2004 | if (! UTF8_IS_INVARIANT(*s)) { |
2005 | if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, send)) { | |
73d840c0 | 2006 | return (U8 *)start; |
d59937ca KW |
2007 | } |
2008 | count++; | |
2009 | s++; | |
db42d148 | 2010 | } |
d59937ca | 2011 | s++; |
f9a63242 JH |
2012 | } |
2013 | ||
35da51f7 | 2014 | *is_utf8 = FALSE; |
f9a63242 | 2015 | |
212542aa | 2016 | Newx(d, (*len) - count + 1, U8); |
170a1c22 KW |
2017 | |
2018 | if (LIKELY(count)) { | |
38af28cf KW |
2019 | s = start; start = d; |
2020 | while (s < send) { | |
2021 | U8 c = *s++; | |
2022 | if (! UTF8_IS_INVARIANT(c)) { | |
2023 | /* Then it is two-byte encoded */ | |
2024 | c = EIGHT_BIT_UTF8_TO_NATIVE(c, *s); | |
2025 | s++; | |
2026 | } | |
2027 | *d++ = c; | |
2028 | } | |
2029 | *d = '\0'; | |
2030 | *len = d - start; | |
170a1c22 | 2031 | |
38af28cf | 2032 | return (U8 *)start; |
170a1c22 KW |
2033 | } |
2034 | else { | |
2035 | Copy(start, d, *len, U8); | |
2036 | *(d + *len) = '\0'; | |
2037 | return (U8 *)d; | |
2038 | } | |
f9a63242 JH |
2039 | } |
2040 | ||
2041 | /* | |
87cea99e | 2042 | =for apidoc bytes_to_utf8 |
6940069f | 2043 | |
ff97e5cf KW |
2044 | Converts a string C<s> of length C<len> bytes from the native encoding into |
2045 | UTF-8. | |
6662521e | 2046 | Returns a pointer to the newly-created string, and sets C<len> to |
ff97e5cf | 2047 | reflect the new length in bytes. |
6940069f | 2048 | |
75200dff | 2049 | A C<NUL> character will be written after the end of the string. |
2bbc8d55 SP |
2050 | |
2051 | If you want to convert to UTF-8 from encodings other than | |
2052 | the native (Latin1 or EBCDIC), | |
a1433954 | 2053 | see L</sv_recode_to_utf8>(). |
c9ada85f | 2054 | |
497711e7 | 2055 | =cut |
6940069f GS |
2056 | */ |
2057 | ||
2058 | U8* | |
35a4481c | 2059 | Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len) |
6940069f | 2060 | { |
35a4481c | 2061 | const U8 * const send = s + (*len); |
6940069f GS |
2062 | U8 *d; |
2063 | U8 *dst; | |
7918f24d NC |
2064 | |
2065 | PERL_ARGS_ASSERT_BYTES_TO_UTF8; | |
96a5add6 | 2066 | PERL_UNUSED_CONTEXT; |
6940069f | 2067 | |
212542aa | 2068 | Newx(d, (*len) * 2 + 1, U8); |
6940069f GS |
2069 | dst = d; |
2070 | ||
2071 | while (s < send) { | |
55d09dc8 KW |
2072 | append_utf8_from_native_byte(*s, &d); |
2073 | s++; | |
6940069f GS |
2074 | } |
2075 | *d = '\0'; | |
6662521e | 2076 | *len = d-dst; |
6940069f GS |
2077 | return dst; |
2078 | } | |
2079 | ||
a0ed51b3 | 2080 | /* |
dea0fc0b | 2081 | * Convert native (big-endian) or reversed (little-endian) UTF-16 to UTF-8. |
a0ed51b3 LW |
2082 | * |
2083 | * Destination must be pre-extended to 3/2 source. Do not use in-place. | |
2084 | * We optimize for native, for obvious reasons. */ | |
2085 | ||
2086 | U8* | |
dea0fc0b | 2087 | Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen) |
a0ed51b3 | 2088 | { |
dea0fc0b JH |
2089 | U8* pend; |
2090 | U8* dstart = d; | |
2091 | ||
7918f24d NC |
2092 | PERL_ARGS_ASSERT_UTF16_TO_UTF8; |
2093 | ||
dea0fc0b | 2094 | if (bytelen & 1) |
147e3846 | 2095 | Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen %" UVuf, (UV)bytelen); |
dea0fc0b JH |
2096 | |
2097 | pend = p + bytelen; | |
2098 | ||
a0ed51b3 | 2099 | while (p < pend) { |
dea0fc0b JH |
2100 | UV uv = (p[0] << 8) + p[1]; /* UTF-16BE */ |
2101 | p += 2; | |
2d1545e5 | 2102 | if (OFFUNI_IS_INVARIANT(uv)) { |
56d37426 | 2103 | *d++ = LATIN1_TO_NATIVE((U8) uv); |
a0ed51b3 LW |
2104 | continue; |
2105 | } | |
56d37426 KW |
2106 | if (uv <= MAX_UTF8_TWO_BYTE) { |
2107 | *d++ = UTF8_TWO_BYTE_HI(UNI_TO_NATIVE(uv)); | |
2108 | *d++ = UTF8_TWO_BYTE_LO(UNI_TO_NATIVE(uv)); | |
a0ed51b3 LW |
2109 | continue; |
2110 | } | |
46956fad KW |
2111 | #define FIRST_HIGH_SURROGATE UNICODE_SURROGATE_FIRST |
2112 | #define LAST_HIGH_SURROGATE 0xDBFF | |
2113 | #define FIRST_LOW_SURROGATE 0xDC00 | |
2114 | #define LAST_LOW_SURROGATE UNICODE_SURROGATE_LAST | |
e23c50db KW |
2115 | |
2116 | /* This assumes that most uses will be in the first Unicode plane, not | |
2117 | * needing surrogates */ | |
2118 | if (UNLIKELY(uv >= UNICODE_SURROGATE_FIRST | |
2119 | && uv <= UNICODE_SURROGATE_LAST)) | |
2120 | { | |
2121 | if (UNLIKELY(p >= pend) || UNLIKELY(uv > LAST_HIGH_SURROGATE)) { | |
2122 | Perl_croak(aTHX_ "Malformed UTF-16 surrogate"); | |
2123 | } | |
2124 | else { | |
01ea242b | 2125 | UV low = (p[0] << 8) + p[1]; |
e23c50db KW |
2126 | if ( UNLIKELY(low < FIRST_LOW_SURROGATE) |
2127 | || UNLIKELY(low > LAST_LOW_SURROGATE)) | |
2128 | { | |
01ea242b | 2129 | Perl_croak(aTHX_ "Malformed UTF-16 surrogate"); |
e23c50db KW |
2130 | } |
2131 | p += 2; | |
46956fad KW |
2132 | uv = ((uv - FIRST_HIGH_SURROGATE) << 10) |
2133 | + (low - FIRST_LOW_SURROGATE) + 0x10000; | |
01ea242b | 2134 | } |
a0ed51b3 | 2135 | } |
56d37426 KW |
2136 | #ifdef EBCDIC |
2137 | d = uvoffuni_to_utf8_flags(d, uv, 0); | |
2138 | #else | |
a0ed51b3 | 2139 | if (uv < 0x10000) { |
eb160463 GS |
2140 | *d++ = (U8)(( uv >> 12) | 0xe0); |
2141 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
2142 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
2143 | continue; |
2144 | } | |
2145 | else { | |
eb160463 GS |
2146 | *d++ = (U8)(( uv >> 18) | 0xf0); |
2147 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
2148 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
2149 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
2150 | continue; |
2151 | } | |
56d37426 | 2152 | #endif |
a0ed51b3 | 2153 | } |
dea0fc0b | 2154 | *newlen = d - dstart; |
a0ed51b3 LW |
2155 | return d; |
2156 | } | |
2157 | ||
2158 | /* Note: this one is slightly destructive of the source. */ | |
2159 | ||
2160 | U8* | |
dea0fc0b | 2161 | Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen) |
a0ed51b3 LW |
2162 | { |
2163 | U8* s = (U8*)p; | |
d4c19fe8 | 2164 | U8* const send = s + bytelen; |
7918f24d NC |
2165 | |
2166 | PERL_ARGS_ASSERT_UTF16_TO_UTF8_REVERSED; | |
2167 | ||
e0ea5e2d | 2168 | if (bytelen & 1) |
147e3846 | 2169 | Perl_croak(aTHX_ "panic: utf16_to_utf8_reversed: odd bytelen %" UVuf, |
e0ea5e2d NC |
2170 | (UV)bytelen); |
2171 | ||
a0ed51b3 | 2172 | while (s < send) { |
d4c19fe8 | 2173 | const U8 tmp = s[0]; |
a0ed51b3 LW |
2174 | s[0] = s[1]; |
2175 | s[1] = tmp; | |
2176 | s += 2; | |
2177 | } | |
dea0fc0b | 2178 | return utf16_to_utf8(p, d, bytelen, newlen); |
a0ed51b3 LW |
2179 | } |
2180 | ||
922e8cb4 KW |
2181 | bool |
2182 | Perl__is_uni_FOO(pTHX_ const U8 classnum, const UV c) | |
2183 | { | |
2184 | U8 tmpbuf[UTF8_MAXBYTES+1]; | |
2185 | uvchr_to_utf8(tmpbuf, c); | |
da8c1a98 | 2186 | return _is_utf8_FOO_with_len(classnum, tmpbuf, tmpbuf + sizeof(tmpbuf)); |
922e8cb4 KW |
2187 | } |
2188 | ||
f9ae8fb6 JD |
2189 | /* Internal function so we can deprecate the external one, and call |
2190 | this one from other deprecated functions in this file */ | |
2191 | ||
f2645549 KW |
2192 | bool |
2193 | Perl__is_utf8_idstart(pTHX_ const U8 *p) | |
61b19385 | 2194 | { |
f2645549 | 2195 | PERL_ARGS_ASSERT__IS_UTF8_IDSTART; |
61b19385 KW |
2196 | |
2197 | if (*p == '_') | |
2198 | return TRUE; | |
f25ce844 | 2199 | return is_utf8_common(p, &PL_utf8_idstart, "IdStart", NULL); |
61b19385 KW |
2200 | } |
2201 | ||
5092f92a | 2202 | bool |
eba68aa0 KW |
2203 | Perl__is_uni_perl_idcont(pTHX_ UV c) |
2204 | { | |
2205 | U8 tmpbuf[UTF8_MAXBYTES+1]; | |
2206 | uvchr_to_utf8(tmpbuf, c); | |
da8c1a98 | 2207 | return _is_utf8_perl_idcont_with_len(tmpbuf, tmpbuf + sizeof(tmpbuf)); |
eba68aa0 KW |
2208 | } |
2209 | ||
2210 | bool | |
f91dcd13 KW |
2211 | Perl__is_uni_perl_idstart(pTHX_ UV c) |
2212 | { | |
2213 | U8 tmpbuf[UTF8_MAXBYTES+1]; | |
2214 | uvchr_to_utf8(tmpbuf, c); | |
da8c1a98 | 2215 | return _is_utf8_perl_idstart_with_len(tmpbuf, tmpbuf + sizeof(tmpbuf)); |
f91dcd13 KW |
2216 | } |
2217 | ||
3a4c58c9 KW |
2218 | UV |
2219 | Perl__to_upper_title_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp, const char S_or_s) | |
2220 | { | |
2221 | /* We have the latin1-range values compiled into the core, so just use | |
4a4088c4 | 2222 | * those, converting the result to UTF-8. The only difference between upper |
3a4c58c9 KW |
2223 | * and title case in this range is that LATIN_SMALL_LETTER_SHARP_S is |
2224 | * either "SS" or "Ss". Which one to use is passed into the routine in | |
2225 | * 'S_or_s' to avoid a test */ | |
2226 | ||
2227 | UV converted = toUPPER_LATIN1_MOD(c); | |
2228 | ||
2229 | PERL_ARGS_ASSERT__TO_UPPER_TITLE_LATIN1; | |
2230 | ||
2231 | assert(S_or_s == 'S' || S_or_s == 's'); | |
2232 | ||
6f2d5cbc | 2233 | if (UVCHR_IS_INVARIANT(converted)) { /* No difference between the two for |
f4cd282c | 2234 | characters in this range */ |
3a4c58c9 KW |
2235 | *p = (U8) converted; |
2236 | *lenp = 1; | |
2237 | return converted; | |
2238 | } | |
2239 | ||
2240 | /* toUPPER_LATIN1_MOD gives the correct results except for three outliers, | |
2241 | * which it maps to one of them, so as to only have to have one check for | |
2242 | * it in the main case */ | |
2243 | if (UNLIKELY(converted == LATIN_SMALL_LETTER_Y_WITH_DIAERESIS)) { | |
2244 | switch (c) { | |
2245 | case LATIN_SMALL_LETTER_Y_WITH_DIAERESIS: | |
2246 | converted = LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS; | |
2247 | break; | |
2248 | case MICRO_SIGN: | |
2249 | converted = GREEK_CAPITAL_LETTER_MU; | |
2250 | break; | |
79e064b9 KW |
2251 | #if UNICODE_MAJOR_VERSION > 2 \ |
2252 | || (UNICODE_MAJOR_VERSION == 2 && UNICODE_DOT_VERSION >= 1 \ | |
2253 | && UNICODE_DOT_DOT_VERSION >= 8) | |
3a4c58c9 KW |
2254 | case LATIN_SMALL_LETTER_SHARP_S: |
2255 | *(p)++ = 'S'; | |
2256 | *p = S_or_s; | |
2257 | *lenp = 2; | |
2258 | return 'S'; | |
79e064b9 | 2259 | #endif |
3a4c58c9 KW |
2260 | default: |
2261 | Perl_croak(aTHX_ "panic: to_upper_title_latin1 did not expect '%c' to map to '%c'", c, LATIN_SMALL_LETTER_Y_WITH_DIAERESIS); | |
e5964223 | 2262 | NOT_REACHED; /* NOTREACHED */ |
3a4c58c9 KW |
2263 | } |
2264 | } | |
2265 | ||
2266 | *(p)++ = UTF8_TWO_BYTE_HI(converted); | |
2267 | *p = UTF8_TWO_BYTE_LO(converted); | |
2268 | *lenp = 2; | |
2269 | ||
2270 | return converted; | |
2271 | } | |
2272 | ||
50bda2c3 KW |
2273 | /* Call the function to convert a UTF-8 encoded character to the specified case. |
2274 | * Note that there may be more than one character in the result. | |
2275 | * INP is a pointer to the first byte of the input character | |
2276 | * OUTP will be set to the first byte of the string of changed characters. It | |
2277 | * needs to have space for UTF8_MAXBYTES_CASE+1 bytes | |
2278 | * LENP will be set to the length in bytes of the string of changed characters | |
2279 | * | |
2280 | * The functions return the ordinal of the first character in the string of OUTP */ | |
b9992569 KW |
2281 | #define CALL_UPPER_CASE(uv, s, d, lenp) _to_utf8_case(uv, s, d, lenp, &PL_utf8_toupper, "ToUc", "") |
2282 | #define CALL_TITLE_CASE(uv, s, d, lenp) _to_utf8_case(uv, s, d, lenp, &PL_utf8_totitle, "ToTc", "") | |
2283 | #define CALL_LOWER_CASE(uv, s, d, lenp) _to_utf8_case(uv, s, d, lenp, &PL_utf8_tolower, "ToLc", "") | |
50bda2c3 | 2284 | |
b9992569 KW |
2285 | /* This additionally has the input parameter 'specials', which if non-zero will |
2286 | * cause this to use the specials hash for folding (meaning get full case | |
50bda2c3 | 2287 | * folding); otherwise, when zero, this implies a simple case fold */ |
b9992569 | 2288 | #define CALL_FOLD_CASE(uv, s, d, lenp, specials) _to_utf8_case(uv, s, d, lenp, &PL_utf8_tofold, "ToCf", (specials) ? "" : NULL) |
c3fd2246 | 2289 | |
84afefe6 JH |
2290 | UV |
2291 | Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp) | |
a0ed51b3 | 2292 | { |
a1433954 KW |
2293 | /* Convert the Unicode character whose ordinal is <c> to its uppercase |
2294 | * version and store that in UTF-8 in <p> and its length in bytes in <lenp>. | |
2295 | * Note that the <p> needs to be at least UTF8_MAXBYTES_CASE+1 bytes since | |
c3fd2246 KW |
2296 | * the changed version may be longer than the original character. |
2297 | * | |
2298 | * The ordinal of the first character of the changed version is returned | |
2299 | * (but note, as explained above, that there may be more.) */ | |
2300 | ||
7918f24d NC |
2301 | PERL_ARGS_ASSERT_TO_UNI_UPPER; |
2302 | ||
3a4c58c9 KW |
2303 | if (c < 256) { |
2304 | return _to_upper_title_latin1((U8) c, p, lenp, 'S'); | |
2305 | } | |
2306 | ||
0ebc6274 | 2307 | uvchr_to_utf8(p, c); |
b9992569 | 2308 | return CALL_UPPER_CASE(c, p, p, lenp); |
a0ed51b3 LW |
2309 | } |
2310 | ||
84afefe6 JH |
2311 | UV |
2312 | Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp) | |
a0ed51b3 | 2313 | { |
7918f24d NC |
2314 | PERL_ARGS_ASSERT_TO_UNI_TITLE; |
2315 | ||
3a4c58c9 KW |
2316 | if (c < 256) { |
2317 | return _to_upper_title_latin1((U8) c, p, lenp, 's'); | |
2318 | } | |
2319 | ||
0ebc6274 | 2320 | uvchr_to_utf8(p, c); |
b9992569 | 2321 | return CALL_TITLE_CASE(c, p, p, lenp); |
a0ed51b3 LW |
2322 | } |
2323 | ||
afc16117 | 2324 | STATIC U8 |
eaf412bf | 2325 | S_to_lower_latin1(const U8 c, U8* p, STRLEN *lenp, const char dummy) |
afc16117 KW |
2326 | { |
2327 | /* We have the latin1-range values compiled into the core, so just use | |
4a4088c4 | 2328 | * those, converting the result to UTF-8. Since the result is always just |
a1433954 | 2329 | * one character, we allow <p> to be NULL */ |
afc16117 KW |
2330 | |
2331 | U8 converted = toLOWER_LATIN1(c); | |
2332 | ||
eaf412bf KW |
2333 | PERL_UNUSED_ARG(dummy); |
2334 | ||
afc16117 | 2335 | if (p != NULL) { |
6f2d5cbc | 2336 | if (NATIVE_BYTE_IS_INVARIANT(converted)) { |
afc16117 KW |
2337 | *p = converted; |
2338 | *lenp = 1; | |
2339 | } | |
2340 | else { | |
430c9760 KW |
2341 | /* Result is known to always be < 256, so can use the EIGHT_BIT |
2342 | * macros */ | |
2343 | *p = UTF8_EIGHT_BIT_HI(converted); | |
2344 | *(p+1) = UTF8_EIGHT_BIT_LO(converted); | |
afc16117 KW |
2345 | *lenp = 2; |
2346 | } | |
2347 | } | |
2348 | return converted; | |
2349 | } | |
2350 | ||
84afefe6 JH |
2351 | UV |
2352 | Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp) | |
a0ed51b3 | 2353 | { |
7918f24d NC |
2354 | PERL_ARGS_ASSERT_TO_UNI_LOWER; |
2355 | ||
afc16117 | 2356 | if (c < 256) { |
eaf412bf | 2357 | return to_lower_latin1((U8) c, p, lenp, 0 /* 0 is a dummy arg */ ); |
bca00c02 KW |
2358 | } |
2359 | ||
afc16117 | 2360 | uvchr_to_utf8(p, c); |
b9992569 | 2361 | return CALL_LOWER_CASE(c, p, p, lenp); |
a0ed51b3 LW |
2362 | } |
2363 | ||
84afefe6 | 2364 | UV |
51910141 | 2365 | Perl__to_fold_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp, const unsigned int flags) |
a1dde8de | 2366 | { |
51910141 | 2367 | /* Corresponds to to_lower_latin1(); <flags> bits meanings: |
1ca267a5 | 2368 | * FOLD_FLAGS_NOMIX_ASCII iff non-ASCII to ASCII folds are prohibited |
51910141 | 2369 | * FOLD_FLAGS_FULL iff full folding is to be used; |
1ca267a5 KW |
2370 | * |
2371 | * Not to be used for locale folds | |
51910141 | 2372 | */ |
f673fad4 | 2373 | |
a1dde8de KW |
2374 | UV converted; |
2375 | ||
2376 | PERL_ARGS_ASSERT__TO_FOLD_LATIN1; | |
81611534 | 2377 | PERL_UNUSED_CONTEXT; |
a1dde8de | 2378 | |
1ca267a5 KW |
2379 | assert (! (flags & FOLD_FLAGS_LOCALE)); |
2380 | ||
659a7c2d | 2381 | if (UNLIKELY(c == MICRO_SIGN)) { |
a1dde8de KW |
2382 | converted = GREEK_SMALL_LETTER_MU; |
2383 | } | |
9b63e895 KW |
2384 | #if UNICODE_MAJOR_VERSION > 3 /* no multifolds in early Unicode */ \ |
2385 | || (UNICODE_MAJOR_VERSION == 3 && ( UNICODE_DOT_VERSION > 0) \ | |
2386 | || UNICODE_DOT_DOT_VERSION > 0) | |
659a7c2d KW |
2387 | else if ( (flags & FOLD_FLAGS_FULL) |
2388 | && UNLIKELY(c == LATIN_SMALL_LETTER_SHARP_S)) | |
2389 | { | |
1ca267a5 KW |
2390 | /* If can't cross 127/128 boundary, can't return "ss"; instead return |
2391 | * two U+017F characters, as fc("\df") should eq fc("\x{17f}\x{17f}") | |
2392 | * under those circumstances. */ | |
2393 | if (flags & FOLD_FLAGS_NOMIX_ASCII) { | |
2394 | *lenp = 2 * sizeof(LATIN_SMALL_LETTER_LONG_S_UTF8) - 2; | |
2395 | Copy(LATIN_SMALL_LETTER_LONG_S_UTF8 LATIN_SMALL_LETTER_LONG_S_UTF8, | |
2396 | p, *lenp, U8); | |
2397 | return LATIN_SMALL_LETTER_LONG_S; | |
2398 | } | |
2399 | else { | |
4f489194 KW |
2400 | *(p)++ = 's'; |
2401 | *p = 's'; | |
2402 | *lenp = 2; | |
2403 | return 's'; | |
1ca267a5 | 2404 | } |
a1dde8de | 2405 | } |
9b63e895 | 2406 | #endif |
a1dde8de KW |
2407 | else { /* In this range the fold of all other characters is their lower |
2408 | case */ | |
2409 | converted = toLOWER_LATIN1(c); | |
2410 | } | |
2411 | ||
6f2d5cbc | 2412 | if (UVCHR_IS_INVARIANT(converted)) { |
a1dde8de KW |
2413 | *p = (U8) converted; |
2414 | *lenp = 1; | |
2415 | } | |
2416 | else { | |
2417 | *(p)++ = UTF8_TWO_BYTE_HI(converted); | |
2418 | *p = UTF8_TWO_BYTE_LO(converted); | |
2419 | *lenp = 2; | |
2420 | } | |
2421 | ||
2422 | return converted; | |
2423 | } | |
2424 | ||
2425 | UV | |
31f05a37 | 2426 | Perl__to_uni_fold_flags(pTHX_ UV c, U8* p, STRLEN *lenp, U8 flags) |
84afefe6 | 2427 | { |
4b593389 | 2428 | |
a0270393 KW |
2429 | /* Not currently externally documented, and subject to change |
2430 | * <flags> bits meanings: | |
2431 | * FOLD_FLAGS_FULL iff full folding is to be used; | |
31f05a37 KW |
2432 | * FOLD_FLAGS_LOCALE is set iff the rules from the current underlying |
2433 | * locale are to be used. | |
a0270393 KW |
2434 | * FOLD_FLAGS_NOMIX_ASCII iff non-ASCII to ASCII folds are prohibited |
2435 | */ | |
4b593389 | 2436 | |
36bb2ab6 | 2437 | PERL_ARGS_ASSERT__TO_UNI_FOLD_FLAGS; |
7918f24d | 2438 | |
780fcc9f KW |
2439 | if (flags & FOLD_FLAGS_LOCALE) { |
2440 | /* Treat a UTF-8 locale as not being in locale at all */ | |
2441 | if (IN_UTF8_CTYPE_LOCALE) { | |
2442 | flags &= ~FOLD_FLAGS_LOCALE; | |
2443 | } | |
2444 | else { | |
2445 | _CHECK_AND_WARN_PROBLEMATIC_LOCALE; | |
e7b7ac46 | 2446 | goto needs_full_generality; |
780fcc9f | 2447 | } |
31f05a37 KW |
2448 | } |
2449 | ||
a1dde8de | 2450 | if (c < 256) { |
e7b7ac46 | 2451 | return _to_fold_latin1((U8) c, p, lenp, |
31f05a37 | 2452 | flags & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII)); |
a1dde8de KW |
2453 | } |
2454 | ||
2f306ab9 | 2455 | /* Here, above 255. If no special needs, just use the macro */ |
a0270393 KW |
2456 | if ( ! (flags & (FOLD_FLAGS_LOCALE|FOLD_FLAGS_NOMIX_ASCII))) { |
2457 | uvchr_to_utf8(p, c); | |
b9992569 | 2458 | return CALL_FOLD_CASE(c, p, p, lenp, flags & FOLD_FLAGS_FULL); |
a0270393 | 2459 | } |
567b353c | 2460 | else { /* Otherwise, _toFOLD_utf8_flags has the intelligence to deal with |
a0270393 KW |
2461 | the special flags. */ |
2462 | U8 utf8_c[UTF8_MAXBYTES + 1]; | |
e7b7ac46 KW |
2463 | |
2464 | needs_full_generality: | |
a0270393 | 2465 | uvchr_to_utf8(utf8_c, c); |
a1a5ec35 | 2466 | return _toFOLD_utf8_flags(utf8_c, utf8_c + sizeof(utf8_c), p, lenp, flags); |
a0270393 | 2467 | } |
84afefe6 JH |
2468 | } |
2469 | ||
26483009 | 2470 | PERL_STATIC_INLINE bool |
5141f98e | 2471 | S_is_utf8_common(pTHX_ const U8 *const p, SV **swash, |
f25ce844 | 2472 | const char *const swashname, SV* const invlist) |
bde6a22d | 2473 | { |
ea317ccb KW |
2474 | /* returns a boolean giving whether or not the UTF8-encoded character that |
2475 | * starts at <p> is in the swash indicated by <swashname>. <swash> | |
2476 | * contains a pointer to where the swash indicated by <swashname> | |
2477 | * is to be stored; which this routine will do, so that future calls will | |
f25ce844 KW |
2478 | * look at <*swash> and only generate a swash if it is not null. <invlist> |
2479 | * is NULL or an inversion list that defines the swash. If not null, it | |
2480 | * saves time during initialization of the swash. | |
ea317ccb KW |
2481 | * |
2482 | * Note that it is assumed that the buffer length of <p> is enough to | |
2483 | * contain all the bytes that comprise the character. Thus, <*p> should | |
2484 | * have been checked before this call for mal-formedness enough to assure | |
2485 | * that. */ | |
2486 | ||
7918f24d NC |
2487 | PERL_ARGS_ASSERT_IS_UTF8_COMMON; |
2488 | ||
492a624f | 2489 | /* The API should have included a length for the UTF-8 character in <p>, |
28123549 | 2490 | * but it doesn't. We therefore assume that p has been validated at least |
492a624f KW |
2491 | * as far as there being enough bytes available in it to accommodate the |
2492 | * character without reading beyond the end, and pass that number on to the | |
2493 | * validating routine */ | |
6302f837 | 2494 | if (! isUTF8_CHAR(p, p + UTF8SKIP(p))) { |
86ae6e94 | 2495 | _force_out_malformed_utf8_message(p, p + UTF8SKIP(p), |
99a765e9 | 2496 | _UTF8_NO_CONFIDENCE_IN_CURLEN, |
86ae6e94 KW |
2497 | 1 /* Die */ ); |
2498 | NOT_REACHED; /* NOTREACHED */ | |
28123549 | 2499 | } |
86ae6e94 | 2500 | |
87367d5f KW |
2501 | if (!*swash) { |
2502 | U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST; | |
f25ce844 KW |
2503 | *swash = _core_swash_init("utf8", |
2504 | ||
2505 | /* Only use the name if there is no inversion | |
2506 | * list; otherwise will go out to disk */ | |
2507 | (invlist) ? "" : swashname, | |
2508 | ||
2509 | &PL_sv_undef, 1, 0, invlist, &flags); | |
87367d5f | 2510 | } |
28123549 | 2511 | |
bde6a22d NC |
2512 | return swash_fetch(*swash, p, TRUE) != 0; |
2513 | } | |
2514 | ||
da8c1a98 KW |
2515 | PERL_STATIC_INLINE bool |
2516 | S_is_utf8_common_with_len(pTHX_ const U8 *const p, const U8 * const e, SV **swash, | |
2517 | const char *const swashname, SV* const invlist) | |
2518 | { | |
2519 | /* returns a boolean giving whether or not the UTF8-encoded character that | |
2520 | * starts at <p>, and extending no further than <e - 1> is in the swash | |
2521 | * indicated by <swashname>. <swash> contains a pointer to where the swash | |
2522 | * indicated by <swashname> is to be stored; which this routine will do, so | |
2523 | * that future calls will look at <*swash> and only generate a swash if it | |
2524 | * is not null. <invlist> is NULL or an inversion list that defines the | |
2525 | * swash. If not null, it saves time during initialization of the swash. | |
2526 | */ | |
2527 | ||
2528 | PERL_ARGS_ASSERT_IS_UTF8_COMMON_WITH_LEN; | |
2529 | ||
2530 | if (! isUTF8_CHAR(p, e)) { | |
2531 | _force_out_malformed_utf8_message(p, e, 0, 1); | |
2532 | NOT_REACHED; /* NOTREACHED */ | |
2533 | } | |
2534 | ||
2535 | if (!*swash) { | |
2536 | U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST; | |
2537 | *swash = _core_swash_init("utf8", | |
2538 | ||
2539 | /* Only use the name if there is no inversion | |
2540 | * list; otherwise will go out to disk */ | |
2541 | (invlist) ? "" : swashname, | |
2542 | ||
2543 | &PL_sv_undef, 1, 0, invlist, &flags); | |
2544 | } | |
2545 | ||
2546 | return swash_fetch(*swash, p, TRUE) != 0; | |
2547 | } | |
2548 | ||
34aeb2e9 KW |
2549 | STATIC void |
2550 | S_warn_on_first_deprecated_use(pTHX_ const char * const name, | |
2551 | const char * const alternative, | |
2552 | const bool use_locale, | |
2553 | const char * const file, | |
2554 | const unsigned line) | |
2555 | { | |
2556 | const char * key; | |
2557 | ||
2558 | PERL_ARGS_ASSERT_WARN_ON_FIRST_DEPRECATED_USE; | |
2559 | ||
2560 | if (ckWARN_d(WARN_DEPRECATED)) { | |
2561 | ||
2562 | key = Perl_form(aTHX_ "%s;%d;%s;%d", name, use_locale, file, line); | |
2563 | if (! hv_fetch(PL_seen_deprecated_macro, key, strlen(key), 0)) { | |
2564 | if (! PL_seen_deprecated_macro) { | |
2565 | PL_seen_deprecated_macro = newHV(); | |
2566 | } | |
2567 | if (! hv_store(PL_seen_deprecated_macro, key, | |
2568 | strlen(key), &PL_sv_undef, 0)) | |
2569 | { | |
2570 | Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed"); | |
2571 | } | |
2572 | ||
c44e9413 | 2573 | if (instr(file, "mathoms.c")) { |
607313a1 KW |
2574 | Perl_warner(aTHX_ WARN_DEPRECATED, |
2575 | "In %s, line %d, starting in Perl v5.30, %s()" | |
2576 | " will be removed. Avoid this message by" | |
2577 | " converting to use %s().\n", | |
2578 | file, line, name, alternative); | |
2579 | } | |
2580 | else { | |
34aeb2e9 KW |
2581 | Perl_warner(aTHX_ WARN_DEPRECATED, |
2582 | "In %s, line %d, starting in Perl v5.30, %s() will" | |
2583 | " require an additional parameter. Avoid this" | |
2584 | " message by converting to use %s().\n", | |
2585 | file, line, name, alternative); | |
607313a1 | 2586 | } |
34aeb2e9 KW |
2587 | } |
2588 | } | |
2589 | } | |
2590 | ||
bde6a22d | 2591 | bool |
34aeb2e9 KW |
2592 | Perl__is_utf8_FOO(pTHX_ U8 classnum, |
2593 | const U8 *p, | |
2594 | const char * const name, | |
2595 | const char * const alternative, | |
2596 | const bool use_utf8, | |
2597 | const bool use_locale, | |
2598 | const char * const file, | |
2599 | const unsigned line) | |
922e8cb4 | 2600 | { |
922e8cb4 KW |
2601 | PERL_ARGS_ASSERT__IS_UTF8_FOO; |
2602 | ||
34aeb2e9 KW |
2603 | warn_on_first_deprecated_use(name, alternative, use_locale, file, line); |
2604 | ||
2605 | if (use_utf8 && UTF8_IS_ABOVE_LATIN1(*p)) { | |
34aeb2e9 KW |
2606 | |
2607 | switch (classnum) { | |
2608 | case _CC_WORDCHAR: | |
2609 | case _CC_DIGIT: | |
2610 | case _CC_ALPHA: | |
2611 | case _CC_LOWER: | |
2612 | case _CC_UPPER: | |
2613 | case _CC_PUNCT: | |
2614 | case _CC_PRINT: | |
2615 | case _CC_ALPHANUMERIC: | |
2616 | case _CC_GRAPH: | |
2617 | case _CC_CASED: | |
2618 | ||
2619 | return is_utf8_common(p, | |
2620 | &PL_utf8_swash_ptrs[classnum], | |
2621 | swash_property_names[classnum], | |
2622 | PL_XPosix_ptrs[classnum]); | |
2623 | ||
2624 | case _CC_SPACE: | |
2625 | return is_XPERLSPACE_high(p); | |
2626 | case _CC_BLANK: | |
2627 | return is_HORIZWS_high(p); | |
2628 | case _CC_XDIGIT: | |
2629 | return is_XDIGIT_high(p); | |
2630 | case _CC_CNTRL: | |
2631 | return 0; | |
2632 | case _CC_ASCII: | |
2633 | return 0; | |
2634 | case _CC_VERTSPACE: | |
2635 | return is_VERTWS_high(p); | |
2636 | case _CC_IDFIRST: | |
2637 | if (! PL_utf8_perl_idstart) { | |
22f0498f KW |
2638 | PL_utf8_perl_idstart |
2639 | = _new_invlist_C_array(_Perl_IDStart_invlist); | |
34aeb2e9 | 2640 | } |
22f0498f KW |
2641 | return is_utf8_common(p, &PL_utf8_perl_idstart, |
2642 | "_Perl_IDStart", NULL); | |
34aeb2e9 KW |
2643 | case _CC_IDCONT: |
2644 | if (! PL_utf8_perl_idcont) { | |
22f0498f KW |
2645 | PL_utf8_perl_idcont |
2646 | = _new_invlist_C_array(_Perl_IDCont_invlist); | |
34aeb2e9 | 2647 | } |
22f0498f KW |
2648 | return is_utf8_common(p, &PL_utf8_perl_idcont, |
2649 | "_Perl_IDCont", NULL); | |
34aeb2e9 KW |
2650 | } |
2651 | } | |
2652 | ||
2653 | /* idcont is the same as wordchar below 256 */ | |
2654 | if (classnum == _CC_IDCONT) { | |
2655 | classnum = _CC_WORDCHAR; | |
2656 | } | |
2657 | else if (classnum == _CC_IDFIRST) { | |
2658 | if (*p == '_') { | |
2659 | return TRUE; | |
2660 | } | |
2661 | classnum = _CC_ALPHA; | |
2662 | } | |
2663 | ||
2664 | if (! use_locale) { | |
2665 | if (! use_utf8 || UTF8_IS_INVARIANT(*p)) { | |
2666 | return _generic_isCC(*p, classnum); | |
2667 | } | |
922e8cb4 | 2668 | |
34aeb2e9 KW |
2669 | return _generic_isCC(EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p + 1 )), classnum); |
2670 | } | |
2671 | else { | |
2672 | if (! use_utf8 || UTF8_IS_INVARIANT(*p)) { | |
2673 | return isFOO_lc(classnum, *p); | |
2674 | } | |
2675 | ||
2676 | return isFOO_lc(classnum, EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p + 1 ))); | |
2677 | } | |
2678 | ||
2679 | NOT_REACHED; /* NOTREACHED */ | |
922e8cb4 KW |
2680 | } |
2681 | ||
2682 | bool | |
da8c1a98 KW |
2683 | Perl__is_utf8_FOO_with_len(pTHX_ const U8 classnum, const U8 *p, |
2684 | const U8 * const e) | |
2685 | { | |
2686 | PERL_ARGS_ASSERT__IS_UTF8_FOO_WITH_LEN; | |
2687 | ||
2688 | assert(classnum < _FIRST_NON_SWASH_CC); | |
2689 | ||
2690 | return is_utf8_common_with_len(p, | |
2691 | e, | |
2692 | &PL_utf8_swash_ptrs[classnum], | |
2693 | swash_property_names[classnum], | |
2694 | PL_XPosix_ptrs[classnum]); | |
2695 | } | |
2696 | ||
2697 | bool | |
da8c1a98 KW |
2698 | Perl__is_utf8_perl_idstart_with_len(pTHX_ const U8 *p, const U8 * const e) |
2699 | { | |
2700 | SV* invlist = NULL; | |
2701 | ||
2702 | PERL_ARGS_ASSERT__IS_UTF8_PERL_IDSTART_WITH_LEN; | |
2703 | ||
2704 | if (! PL_utf8_perl_idstart) { | |
2705 | invlist = _new_invlist_C_array(_Perl_IDStart_invlist); | |
2706 | } | |
2707 | return is_utf8_common_with_len(p, e, &PL_utf8_perl_idstart, | |
2708 | "_Perl_IDStart", invlist); | |
2709 | } | |
2710 | ||
2711 | bool | |
f2645549 | 2712 | Perl__is_utf8_xidstart(pTHX_ const U8 *p) |
c11ff943 | 2713 | { |
f2645549 | 2714 | PERL_ARGS_ASSERT__IS_UTF8_XIDSTART; |
c11ff943 KW |
2715 | |
2716 | if (*p == '_') | |
2717 | return TRUE; | |
f25ce844 | 2718 | return is_utf8_common(p, &PL_utf8_xidstart, "XIdStart", NULL); |
c11ff943 KW |
2719 | } |
2720 | ||
2721 | bool | |
da8c1a98 KW |
2722 | Perl__is_utf8_perl_idcont_with_len(pTHX_ const U8 *p, const U8 * const e) |
2723 | { | |
2724 | SV* invlist = NULL; | |
2725 | ||
2726 | PERL_ARGS_ASSERT__IS_UTF8_PERL_IDCONT_WITH_LEN; | |
2727 | ||
2728 | if (! PL_utf8_perl_idcont) { | |
2729 | invlist = _new_invlist_C_array(_Perl_IDCont_invlist); | |
2730 | } | |
2731 | return is_utf8_common_with_len(p, e, &PL_utf8_perl_idcont, | |
2732 | "_Perl_IDCont", invlist); | |
2733 | } | |
2734 | ||
2735 | bool | |
f2645549 | 2736 | Perl__is_utf8_idcont(pTHX_ const U8 *p) |
82686b01 | 2737 | { |
f2645549 | 2738 | PERL_ARGS_ASSERT__IS_UTF8_IDCONT; |
7918f24d | 2739 | |
f25ce844 | 2740 | return is_utf8_common(p, &PL_utf8_idcont, "IdContinue", NULL); |
a0ed51b3 LW |
2741 | } |
2742 | ||
2743 | bool | |
f2645549 | 2744 | Perl__is_utf8_xidcont(pTHX_ const U8 *p) |
c11ff943 | 2745 | { |
f2645549 | 2746 | PERL_ARGS_ASSERT__IS_UTF8_XIDCONT; |
c11ff943 | 2747 | |
f25ce844 | 2748 | return is_utf8_common(p, &PL_utf8_idcont, "XIdContinue", NULL); |
c11ff943 KW |
2749 | } |
2750 | ||
2751 | bool | |
7dbf68d2 KW |
2752 | Perl__is_utf8_mark(pTHX_ const U8 *p) |
2753 | { | |
7dbf68d2 KW |
2754 | PERL_ARGS_ASSERT__IS_UTF8_MARK; |
2755 | ||
f25ce844 | 2756 | return is_utf8_common(p, &PL_utf8_mark, "IsM", NULL); |
7dbf68d2 KW |
2757 | } |
2758 | ||
b9992569 | 2759 | /* change namve uv1 to 'from' */ |
6a4a25f4 | 2760 | STATIC UV |
b9992569 KW |
2761 | S__to_utf8_case(pTHX_ const UV uv1, const U8 *p, U8* ustrp, STRLEN *lenp, |
2762 | SV **swashp, const char *normal, const char *special) | |
2763 | { | |
0134edef | 2764 | STRLEN len = 0; |
7918f24d | 2765 | |
b9992569 | 2766 | PERL_ARGS_ASSERT__TO_UTF8_CASE; |
7918f24d | 2767 | |
36eaa811 KW |
2768 | /* For code points that don't change case, we already know that the output |
2769 | * of this function is the unchanged input, so we can skip doing look-ups | |
2770 | * for them. Unfortunately the case-changing code points are scattered | |
2771 | * around. But there are some long consecutive ranges where there are no | |
2772 | * case changing code points. By adding tests, we can eliminate the lookup | |
2773 | * for all the ones in such ranges. This is currently done here only for | |
2774 | * just a few cases where the scripts are in common use in modern commerce | |
2775 | * (and scripts adjacent to those which can be included without additional | |
2776 | * tests). */ | |
2777 | ||
2778 | if (uv1 >= 0x0590) { | |
2779 | /* This keeps from needing further processing the code points most | |
2780 | * likely to be used in the following non-cased scripts: Hebrew, | |
2781 | * Arabic, Syriac, Thaana, NKo, Samaritan, Mandaic, Devanagari, | |
2782 | * Bengali, Gurmukhi, Gujarati, Oriya, Tamil, Telugu, Kannada, | |
2783 | * Malayalam, Sinhala, Thai, Lao, Tibetan, Myanmar */ | |
2784 | if (uv1 < 0x10A0) { | |
2785 | goto cases_to_self; | |
2786 | } | |
2787 | ||
2788 | /* The following largish code point ranges also don't have case | |
2789 | * changes, but khw didn't think they warranted extra tests to speed | |
2790 | * them up (which would slightly slow down everything else above them): | |
2791 | * 1100..139F Hangul Jamo, Ethiopic | |
2792 | * 1400..1CFF Unified Canadian Aboriginal Syllabics, Ogham, Runic, | |
2793 | * Tagalog, Hanunoo, Buhid, Tagbanwa, Khmer, Mongolian, | |
2794 | * Limbu, Tai Le, New Tai Lue, Buginese, Tai Tham, | |
2795 | * Combining Diacritical Marks Extended, Balinese, | |
2796 | * Sundanese, Batak, Lepcha, Ol Chiki | |
2797 | * 2000..206F General Punctuation | |
2798 | */ | |
2799 | ||
2800 | if (uv1 >= 0x2D30) { | |
2801 | ||
2802 | /* This keeps the from needing further processing the code points | |
2803 | * most likely to be used in the following non-cased major scripts: | |
2804 | * CJK, Katakana, Hiragana, plus some less-likely scripts. | |
2805 | * | |
2806 | * (0x2D30 above might have to be changed to 2F00 in the unlikely | |
2807 | * event that Unicode eventually allocates the unused block as of | |
2808 | * v8.0 2FE0..2FEF to code points that are cased. khw has verified | |
2809 | * that the test suite will start having failures to alert you | |
2810 | * should that happen) */ | |
2811 | if (uv1 < 0xA640) { | |
2812 | goto cases_to_self; | |
2813 | } | |
2814 | ||
2815 | if (uv1 >= 0xAC00) { | |
2816 | if (UNLIKELY(UNICODE_IS_SURROGATE(uv1))) { | |
5af9bc97 KW |
2817 | if (ckWARN_d(WARN_SURROGATE)) { |
2818 | const char* desc = (PL_op) ? OP_DESC(PL_op) : normal; | |
2819 | Perl_warner(aTHX_ packWARN(WARN_SURROGATE), | |
147e3846 | 2820 | "Operation \"%s\" returns its argument for UTF-16 surrogate U+%04" UVXf, desc, uv1); |
5af9bc97 KW |
2821 | } |
2822 | goto cases_to_self; | |
2823 | } | |
36eaa811 KW |
2824 | |
2825 | /* AC00..FAFF Catches Hangul syllables and private use, plus | |
2826 | * some others */ | |
2827 | if (uv1 < 0xFB00) { | |
2828 | goto cases_to_self; | |
2829 | ||
2830 | } | |
2831 | ||
5af9bc97 | 2832 | if (UNLIKELY(UNICODE_IS_SUPER(uv1))) { |
13f4dd34 A |
2833 | if (UNLIKELY(uv1 > MAX_NON_DEPRECATED_CP)) { |
2834 | Perl_croak(aTHX_ cp_above_legal_max, uv1, | |
2835 | MAX_NON_DEPRECATED_CP); | |
5af9bc97 KW |
2836 | } |
2837 | if (ckWARN_d(WARN_NON_UNICODE)) { | |
2838 | const char* desc = (PL_op) ? OP_DESC(PL_op) : normal; | |
2839 | Perl_warner(aTHX_ packWARN(WARN_NON_UNICODE), | |
147e3846 | 2840 | "Operation \"%s\" returns its argument for non-Unicode code point 0x%04" UVXf, desc, uv1); |
5af9bc97 KW |
2841 | } |
2842 | goto cases_to_self; | |
2843 | } | |
3bfc1e70 KW |
2844 | #ifdef HIGHEST_CASE_CHANGING_CP_FOR_USE_ONLY_BY_UTF8_DOT_C |
2845 | if (UNLIKELY(uv1 | |
2846 | > HIGHEST_CASE_CHANGING_CP_FOR_USE_ONLY_BY_UTF8_DOT_C)) | |
2847 | { | |
2848 | ||
2849 | /* As of this writing, this means we avoid swash creation | |
2850 | * for anything beyond low Plane 1 */ | |
2851 | goto cases_to_self; | |
2852 | } | |
2853 | #endif | |
36eaa811 KW |
2854 | } |
2855 | } | |
9ae3ac1a | 2856 | |
36eaa811 KW |
2857 | /* Note that non-characters are perfectly legal, so no warning should |
2858 | * be given. There are so few of them, that it isn't worth the extra | |
2859 | * tests to avoid swash creation */ | |
9ae3ac1a KW |
2860 | } |
2861 | ||
0134edef | 2862 | if (!*swashp) /* load on-demand */ |
5ab9d2ef | 2863 | *swashp = _core_swash_init("utf8", normal, &PL_sv_undef, 4, 0, NULL, NULL); |
0134edef | 2864 | |
a6f87d8c | 2865 | if (special) { |
0134edef | 2866 | /* It might be "special" (sometimes, but not always, |
2a37f04d | 2867 | * a multicharacter mapping) */ |
4a8240a3 | 2868 | HV *hv = NULL; |
b08cf34e JH |
2869 | SV **svp; |
2870 | ||
4a8240a3 KW |
2871 | /* If passed in the specials name, use that; otherwise use any |
2872 | * given in the swash */ | |
2873 | if (*special != '\0') { | |
2874 | hv = get_hv(special, 0); | |
2875 | } | |
2876 | else { | |
2877 | svp = hv_fetchs(MUTABLE_HV(SvRV(*swashp)), "SPECIALS", 0); | |
2878 | if (svp) { | |
2879 | hv = MUTABLE_HV(SvRV(*svp)); | |
2880 | } | |
2881 | } | |
2882 | ||
176fe009 | 2883 | if (hv |
5f560d8a | 2884 | && (svp = hv_fetch(hv, (const char*)p, UVCHR_SKIP(uv1), FALSE)) |
176fe009 KW |
2885 | && (*svp)) |
2886 | { | |
cfd0369c | 2887 | const char *s; |
47654450 | 2888 | |
cfd0369c | 2889 | s = SvPV_const(*svp, len); |
47654450 | 2890 | if (len == 1) |
f4cd282c | 2891 | /* EIGHTBIT */ |
c80e42f3 | 2892 | len = uvchr_to_utf8(ustrp, *(U8*)s) - ustrp; |
2a37f04d | 2893 | else { |
d2dcd0fb | 2894 | Copy(s, ustrp, len, U8); |
29e98929 | 2895 | } |
983ffd37 | 2896 | } |
0134edef JH |
2897 | } |
2898 | ||
2899 | if (!len && *swashp) { | |
4a4088c4 | 2900 | const UV uv2 = swash_fetch(*swashp, p, TRUE /* => is UTF-8 */); |
d4c19fe8 | 2901 | |
0134edef JH |
2902 | if (uv2) { |
2903 | /* It was "normal" (a single character mapping). */ | |
f4cd282c | 2904 | len = uvchr_to_utf8(ustrp, uv2) - ustrp; |
2a37f04d JH |
2905 | } |
2906 | } | |
1feea2c7 | 2907 | |
cbe07460 KW |
2908 | if (len) { |
2909 | if (lenp) { | |
2910 | *lenp = len; | |
2911 | } | |
2912 | return valid_utf8_to_uvchr(ustrp, 0); | |
2913 | } | |
2914 | ||
2915 | /* Here, there was no mapping defined, which means that the code point maps | |
2916 | * to itself. Return the inputs */ | |
e24dfe9c | 2917 | cases_to_self: |
bfdf22ec | 2918 | len = UTF8SKIP(p); |
ca9fab46 KW |
2919 | if (p != ustrp) { /* Don't copy onto itself */ |
2920 | Copy(p, ustrp, len, U8); | |
2921 | } | |
0134edef | 2922 | |
2a37f04d JH |
2923 | if (lenp) |
2924 | *lenp = len; | |
2925 | ||
f4cd282c | 2926 | return uv1; |
cbe07460 | 2927 | |
a0ed51b3 LW |
2928 | } |
2929 | ||
051a06d4 | 2930 | STATIC UV |
357aadde | 2931 | S_check_locale_boundary_crossing(pTHX_ const U8* const p, const UV result, U8* const ustrp, STRLEN *lenp) |
051a06d4 | 2932 | { |
4a4088c4 | 2933 | /* This is called when changing the case of a UTF-8-encoded character above |
31f05a37 KW |
2934 | * the Latin1 range, and the operation is in a non-UTF-8 locale. If the |
2935 | * result contains a character that crosses the 255/256 boundary, disallow | |
2936 | * the change, and return the original code point. See L<perlfunc/lc> for | |
2937 | * why; | |
051a06d4 | 2938 | * |
a1433954 KW |
2939 | * p points to the original string whose case was changed; assumed |
2940 | * by this routine to be well-formed | |
051a06d4 KW |
2941 | * result the code point of the first character in the changed-case string |
2942 | * ustrp points to the changed-case string (<result> represents its first char) | |
2943 | * lenp points to the length of <ustrp> */ | |
2944 | ||
2945 | UV original; /* To store the first code point of <p> */ | |
2946 | ||
2947 | PERL_ARGS_ASSERT_CHECK_LOCALE_BOUNDARY_CROSSING; | |
2948 | ||
a4f12ed7 | 2949 | assert(UTF8_IS_ABOVE_LATIN1(*p)); |
051a06d4 KW |
2950 | |
2951 | /* We know immediately if the first character in the string crosses the | |
2952 | * boundary, so can skip */ | |
2953 | if (result > 255) { | |
2954 | ||
2955 | /* Look at every character in the result; if any cross the | |
2956 | * boundary, the whole thing is disallowed */ | |
2957 | U8* s = ustrp + UTF8SKIP(ustrp); | |
2958 | U8* e = ustrp + *lenp; | |
2959 | while (s < e) { | |
a4f12ed7 | 2960 | if (! UTF8_IS_ABOVE_LATIN1(*s)) { |
051a06d4 KW |
2961 | goto bad_crossing; |
2962 | } | |
2963 | s += UTF8SKIP(s); | |
2964 | } | |
2965 | ||
613abc6d KW |
2966 | /* Here, no characters crossed, result is ok as-is, but we warn. */ |
2967 | _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG(p, p + UTF8SKIP(p)); | |
051a06d4 KW |
2968 | return result; |
2969 | } | |
2970 | ||
7b52d656 | 2971 | bad_crossing: |
051a06d4 KW |
2972 | |
2973 | /* Failed, have to return the original */ | |
4b88fb76 | 2974 | original = valid_utf8_to_uvchr(p, lenp); |
ab0b796c KW |
2975 | |
2976 | /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */ | |
2977 | Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE), | |
147e3846 KW |
2978 | "Can't do %s(\"\\x{%" UVXf "}\") on non-UTF-8 locale; " |
2979 | "resolved to \"\\x{%" UVXf "}\".", | |
357aadde | 2980 | OP_DESC(PL_op), |
ab0b796c KW |
2981 | original, |
2982 | original); | |
051a06d4 KW |
2983 | Copy(p, ustrp, *lenp, char); |
2984 | return original; | |
2985 | } | |
2986 | ||
607313a1 KW |
2987 | STATIC U32 |
2988 | S_check_and_deprecate(pTHX_ const U8 *p, | |
2989 | const U8 **e, | |
2990 | const unsigned int type, /* See below */ | |
2991 | const bool use_locale, /* Is this a 'LC_' | |
2992 | macro call? */ | |
2993 | const char * const file, | |
2994 | const unsigned line) | |
2995 | { | |
2996 | /* This is a temporary function to deprecate the unsafe calls to the case | |
2997 | * changing macros and functions. It keeps all the special stuff in just | |
2998 | * one place. | |
2999 | * | |
3000 | * It updates *e with the pointer to the end of the input string. If using | |
3001 | * the old-style macros, *e is NULL on input, and so this function assumes | |
3002 | * the input string is long enough to hold the entire UTF-8 sequence, and | |
3003 | * sets *e accordingly, but it then returns a flag to pass the | |
3004 | * utf8n_to_uvchr(), to tell it that this size is a guess, and to avoid | |
3005 | * using the full length if possible. | |
3006 | * | |
3007 | * It also does the assert that *e > p when *e is not NULL. This should be | |
3008 | * migrated to the callers when this function gets deleted. | |
3009 | * | |
3010 | * The 'type' parameter is used for the caller to specify which case | |
3011 | * changing function this is called from: */ | |
3012 | ||
3013 | # define DEPRECATE_TO_UPPER 0 | |
3014 | # define DEPRECATE_TO_TITLE 1 | |
3015 | # define DEPRECATE_TO_LOWER 2 | |
3016 | # define DEPRECATE_TO_FOLD 3 | |
3017 | ||
3018 | U32 utf8n_flags = 0; | |
3019 | const char * name; | |
3020 | const char * alternative; | |
3021 | ||
3022 | PERL_ARGS_ASSERT_CHECK_AND_DEPRECATE; | |
3023 | ||
3024 | if (*e == NULL) { | |
3025 | utf8n_flags = _UTF8_NO_CONFIDENCE_IN_CURLEN; | |
3026 | *e = p + UTF8SKIP(p); | |
3027 | ||
3028 | /* For mathoms.c calls, we use the function name we know is stored | |
c44e9413 | 3029 | * there. It could be part of a larger path */ |
607313a1 | 3030 | if (type == DEPRECATE_TO_UPPER) { |
c44e9413 | 3031 | name = instr(file, "mathoms.c") |
607313a1 KW |
3032 | ? "to_utf8_upper" |
3033 | : "toUPPER_utf8"; | |
3034 | alternative = "toUPPER_utf8_safe"; | |
3035 | } | |
3036 | else if (type == DEPRECATE_TO_TITLE) { | |
c44e9413 | 3037 | name = instr(file, "mathoms.c") |
607313a1 KW |
3038 | ? "to_utf8_title" |
3039 | : "toTITLE_utf8"; | |
3040 | alternative = "toTITLE_utf8_safe"; | |
3041 | } | |
3042 | else if (type == DEPRECATE_TO_LOWER) { | |
c44e9413 | 3043 | name = instr(file, "mathoms.c") |
607313a1 KW |
3044 | ? "to_utf8_lower" |
3045 | : "toLOWER_utf8"; | |
3046 | alternative = "toLOWER_utf8_safe"; | |
3047 | } | |
3048 | else if (type == DEPRECATE_TO_FOLD) { | |
c44e9413 | 3049 | name = instr(file, "mathoms.c") |
607313a1 KW |
3050 | ? "to_utf8_fold" |
3051 | : "toFOLD_utf8"; | |
3052 | alternative = "toFOLD_utf8_safe"; | |
3053 | } | |
3054 | else Perl_croak(aTHX_ "panic: Unexpected case change type"); | |
3055 | ||
3056 | warn_on_first_deprecated_use(name, alternative, use_locale, file, line); | |
3057 | } | |
3058 | else { | |
3059 | assert (p < *e); | |
3060 | } | |
3061 | ||
3062 | return utf8n_flags; | |
3063 | } | |
3064 | ||
eaf412bf KW |
3065 | /* The process for changing the case is essentially the same for the four case |
3066 | * change types, except there are complications for folding. Otherwise the | |
3067 | * difference is only which case to change to. To make sure that they all do | |
3068 | * the same thing, the bodies of the functions are extracted out into the | |
3069 | * following two macros. The functions are written with the same variable | |
3070 | * names, and these are known and used inside these macros. It would be | |
3071 | * better, of course, to have inline functions to do it, but since different | |
3072 | * macros are called, depending on which case is being changed to, this is not | |
3073 | * feasible in C (to khw's knowledge). Two macros are created so that the fold | |
3074 | * function can start with the common start macro, then finish with its special | |
3075 | * handling; while the other three cases can just use the common end macro. | |
3076 | * | |
3077 | * The algorithm is to use the proper (passed in) macro or function to change | |
3078 | * the case for code points that are below 256. The macro is used if using | |
3079 | * locale rules for the case change; the function if not. If the code point is | |
3080 | * above 255, it is computed from the input UTF-8, and another macro is called | |
3081 | * to do the conversion. If necessary, the output is converted to UTF-8. If | |
3082 | * using a locale, we have to check that the change did not cross the 255/256 | |
3083 | * boundary, see check_locale_boundary_crossing() for further details. | |
3084 | * | |
3085 | * The macros are split with the correct case change for the below-256 case | |
3086 | * stored into 'result', and in the middle of an else clause for the above-255 | |
3087 | * case. At that point in the 'else', 'result' is not the final result, but is | |
3088 | * the input code point calculated from the UTF-8. The fold code needs to | |
3089 | * realize all this and take it from there. | |
3090 | * | |
3091 | * If you read the two macros as sequential, it's easier to understand what's | |
3092 | * going on. */ | |
3093 | #define CASE_CHANGE_BODY_START(locale_flags, LC_L1_change_macro, L1_func, \ | |
3094 | L1_func_extra_param) \ | |
a239b1e2 | 3095 | \ |
eaf412bf KW |
3096 | if (flags & (locale_flags)) { \ |
3097 | /* Treat a UTF-8 locale as not being in locale at all */ \ | |
3098 | if (IN_UTF8_CTYPE_LOCALE) { \ | |
3099 | flags &= ~(locale_flags); \ | |
3100 | } \ | |
3101 | else { \ | |
3102 | _CHECK_AND_WARN_PROBLEMATIC_LOCALE; \ | |
3103 | } \ | |
3104 | } \ | |
3105 | \ | |
3106 | if (UTF8_IS_INVARIANT(*p)) { \ | |
3107 | if (flags & (locale_flags)) { \ | |
3108 | result = LC_L1_change_macro(*p); \ | |
3109 | } \ | |
3110 | else { \ | |
3111 | return L1_func(*p, ustrp, lenp, L1_func_extra_param); \ | |
3112 | } \ | |
3113 | } \ | |
a239b1e2 | 3114 | else if UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(p, e) { \ |
eaf412bf KW |
3115 | if (flags & (locale_flags)) { \ |
3116 | result = LC_L1_change_macro(EIGHT_BIT_UTF8_TO_NATIVE(*p, \ | |
3117 | *(p+1))); \ | |
3118 | } \ | |
3119 | else { \ | |
3120 | return L1_func(EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1)), \ | |
3121 | ustrp, lenp, L1_func_extra_param); \ | |
3122 | } \ | |
3123 | } \ | |
fa8ab374 KW |
3124 | else { /* malformed UTF-8 or ord above 255 */ \ |
3125 | STRLEN len_result; \ | |
fa8ab374 KW |
3126 | result = utf8n_to_uvchr(p, e - p, &len_result, UTF8_CHECK_ONLY); \ |
3127 | if (len_result == (STRLEN) -1) { \ | |
607313a1 KW |
3128 | _force_out_malformed_utf8_message(p, e, utf8n_flags, \ |
3129 | 1 /* Die */ ); \ | |
fa8ab374 | 3130 | } |
eaf412bf KW |
3131 | |
3132 | #define CASE_CHANGE_BODY_END(locale_flags, change_macro) \ | |
3133 | result = change_macro(result, p, ustrp, lenp); \ | |
3134 | \ | |
3135 | if (flags & (locale_flags)) { \ | |
3136 | result = check_locale_boundary_crossing(p, result, ustrp, lenp); \ | |
3137 | } \ | |
3138 | return result; \ | |
3139 | } \ | |
3140 | \ | |
3141 | /* Here, used locale rules. Convert back to UTF-8 */ \ | |
3142 | if (UTF8_IS_INVARIANT(result)) { \ | |
3143 | *ustrp = (U8) result; \ | |
3144 | *lenp = 1; \ | |
3145 | } \ | |
3146 | else { \ | |
3147 | *ustrp = UTF8_EIGHT_BIT_HI((U8) result); \ | |
3148 | *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result); \ | |
3149 | *lenp = 2; \ | |
3150 | } \ | |
3151 | \ | |
3152 | return result; | |
3153 | ||
d3e79532 | 3154 | /* |
87cea99e | 3155 | =for apidoc to_utf8_upper |
d3e79532 | 3156 | |
a239b1e2 | 3157 | Instead use L</toUPPER_utf8_safe>. |
a1433954 | 3158 | |
d3e79532 JH |
3159 | =cut */ |
3160 | ||
051a06d4 | 3161 | /* Not currently externally documented, and subject to change: |
31f05a37 KW |
3162 | * <flags> is set iff iff the rules from the current underlying locale are to |
3163 | * be used. */ | |
051a06d4 | 3164 | |
2104c8d9 | 3165 | UV |
607313a1 KW |
3166 | Perl__to_utf8_upper_flags(pTHX_ const U8 *p, |
3167 | const U8 *e, | |
3168 | U8* ustrp, | |
3169 | STRLEN *lenp, | |
3170 | bool flags, | |
3171 | const char * const file, | |
3172 | const int line) | |
a0ed51b3 | 3173 | { |
051a06d4 | 3174 | UV result; |
607313a1 KW |
3175 | const U32 utf8n_flags = check_and_deprecate(p, &e, DEPRECATE_TO_UPPER, |
3176 | cBOOL(flags), file, line); | |
051a06d4 KW |
3177 | |
3178 | PERL_ARGS_ASSERT__TO_UTF8_UPPER_FLAGS; | |
7918f24d | 3179 | |
eaf412bf KW |
3180 | /* ~0 makes anything non-zero in 'flags' mean we are using locale rules */ |
3181 | /* 2nd char of uc(U+DF) is 'S' */ | |
3182 | CASE_CHANGE_BODY_START(~0, toUPPER_LC, _to_upper_title_latin1, 'S'); | |
3183 | CASE_CHANGE_BODY_END (~0, CALL_UPPER_CASE); | |
983ffd37 | 3184 | } |
a0ed51b3 | 3185 | |
d3e79532 | 3186 | /* |
87cea99e | 3187 | =for apidoc to_utf8_title |
d3e79532 | 3188 | |
a239b1e2 | 3189 | Instead use L</toTITLE_utf8_safe>. |
a1433954 | 3190 | |
d3e79532 JH |
3191 | =cut */ |
3192 | ||
051a06d4 | 3193 | /* Not currently externally documented, and subject to change: |
31f05a37 KW |
3194 | * <flags> is set iff the rules from the current underlying locale are to be |
3195 | * used. Since titlecase is not defined in POSIX, for other than a | |
3196 | * UTF-8 locale, uppercase is used instead for code points < 256. | |
445bf929 | 3197 | */ |
051a06d4 | 3198 | |
983ffd37 | 3199 | UV |
607313a1 KW |
3200 | Perl__to_utf8_title_flags(pTHX_ const U8 *p, |
3201 | const U8 *e, | |
3202 | U8* ustrp, | |
3203 | STRLEN *lenp, | |
3204 | bool flags, | |
3205 | const char * const file, | |
3206 | const int line) | |
983ffd37 | 3207 | { |
051a06d4 | 3208 | UV result; |
607313a1 KW |
3209 | const U32 utf8n_flags = check_and_deprecate(p, &e, DEPRECATE_TO_TITLE, |
3210 | cBOOL(flags), file, line); | |
051a06d4 KW |
3211 | |
3212 | PERL_ARGS_ASSERT__TO_UTF8_TITLE_FLAGS; | |
7918f24d | 3213 | |
eaf412bf KW |
3214 | /* 2nd char of ucfirst(U+DF) is 's' */ |
3215 | CASE_CHANGE_BODY_START(~0, toUPPER_LC, _to_upper_title_latin1, 's'); | |
3216 | CASE_CHANGE_BODY_END (~0, CALL_TITLE_CASE); | |
a0ed51b3 LW |
3217 | } |
3218 | ||
d3e79532 | 3219 | /* |
87cea99e | 3220 | =for apidoc to_utf8_lower |
d3e79532 | 3221 | |
a239b1e2 | 3222 | Instead use L</toLOWER_utf8_safe>. |
a1433954 | 3223 | |
d3e79532 JH |
3224 | =cut */ |
3225 | ||
051a06d4 | 3226 | /* Not currently externally documented, and subject to change: |
31f05a37 KW |
3227 | * <flags> is set iff iff the rules from the current underlying locale are to |
3228 | * be used. | |
3229 | */ | |
051a06d4 | 3230 | |
2104c8d9 | 3231 | UV |
607313a1 KW |
3232 | Perl__to_utf8_lower_flags(pTHX_ const U8 *p, |
3233 | const U8 *e, | |
3234 | U8* ustrp, | |
3235 | STRLEN *lenp, | |
3236 | bool flags, | |
3237 | const char * const file, | |
3238 | const int line) | |
a0ed51b3 | 3239 | { |
051a06d4 | 3240 | UV result; |
607313a1 KW |
3241 | const U32 utf8n_flags = check_and_deprecate(p, &e, DEPRECATE_TO_LOWER, |
3242 | cBOOL(flags), file, line); | |
051a06d4 | 3243 | |
051a06d4 | 3244 | PERL_ARGS_ASSERT__TO_UTF8_LOWER_FLAGS; |
7918f24d | 3245 | |
eaf412bf KW |
3246 | CASE_CHANGE_BODY_START(~0, toLOWER_LC, to_lower_latin1, 0 /* 0 is dummy */) |
3247 | CASE_CHANGE_BODY_END (~0, CALL_LOWER_CASE) | |
b4e400f9 JH |
3248 | } |
3249 | ||
d3e79532 | 3250 | /* |
87cea99e | 3251 | =for apidoc to_utf8_fold |
d3e79532 | 3252 | |
a239b1e2 | 3253 | Instead use L</toFOLD_utf8_safe>. |
a1433954 | 3254 | |
d3e79532 JH |
3255 | =cut */ |
3256 | ||
051a06d4 KW |
3257 | /* Not currently externally documented, and subject to change, |
3258 | * in <flags> | |
31f05a37 KW |
3259 | * bit FOLD_FLAGS_LOCALE is set iff the rules from the current underlying |
3260 | * locale are to be used. | |
051a06d4 KW |
3261 | * bit FOLD_FLAGS_FULL is set iff full case folds are to be used; |
3262 | * otherwise simple folds | |
a0270393 KW |
3263 | * bit FOLD_FLAGS_NOMIX_ASCII is set iff folds of non-ASCII to ASCII are |
3264 | * prohibited | |
445bf929 | 3265 | */ |
36bb2ab6 | 3266 | |
b4e400f9 | 3267 | UV |
607313a1 KW |
3268 | Perl__to_utf8_fold_flags(pTHX_ const U8 *p, |
3269 | const U8 *e, | |
3270 | U8* ustrp, | |
3271 | STRLEN *lenp, | |
3272 | U8 flags, | |
3273 | const char * const file, | |
3274 | const int line) | |
b4e400f9 | 3275 | { |
051a06d4 | 3276 | UV result; |
607313a1 KW |
3277 | const U32 utf8n_flags = check_and_deprecate(p, &e, DEPRECATE_TO_FOLD, |
3278 | cBOOL(flags), file, line); | |
051a06d4 | 3279 | |
36bb2ab6 | 3280 | PERL_ARGS_ASSERT__TO_UTF8_FOLD_FLAGS; |
7918f24d | 3281 | |
a0270393 KW |
3282 | /* These are mutually exclusive */ |
3283 | assert (! ((flags & FOLD_FLAGS_LOCALE) && (flags & FOLD_FLAGS_NOMIX_ASCII))); | |
3284 | ||
50ba90ff KW |
3285 | assert(p != ustrp); /* Otherwise overwrites */ |
3286 | ||
eaf412bf KW |
3287 | CASE_CHANGE_BODY_START(FOLD_FLAGS_LOCALE, toFOLD_LC, _to_fold_latin1, |
3288 | ((flags) & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII))); | |
31f05a37 | 3289 | |
eaf412bf | 3290 | result = CALL_FOLD_CASE(result, p, ustrp, lenp, flags & FOLD_FLAGS_FULL); |
a1dde8de | 3291 | |
1ca267a5 KW |
3292 | if (flags & FOLD_FLAGS_LOCALE) { |
3293 | ||
76f2ffcd | 3294 | # define LONG_S_T LATIN_SMALL_LIGATURE_LONG_S_T_UTF8 |
0766489e KW |
3295 | const unsigned int long_s_t_len = sizeof(LONG_S_T) - 1; |
3296 | ||
3297 | # ifdef LATIN_CAPITAL_LETTER_SHARP_S_UTF8 | |
3298 | # define CAP_SHARP_S LATIN_CAPITAL_LETTER_SHARP_S_UTF8 | |
76f2ffcd KW |
3299 | |
3300 | const unsigned int cap_sharp_s_len = sizeof(CAP_SHARP_S) - 1; | |
76f2ffcd | 3301 | |
538e84ed KW |
3302 | /* Special case these two characters, as what normally gets |
3303 | * returned under locale doesn't work */ | |
76f2ffcd KW |
3304 | if (UTF8SKIP(p) == cap_sharp_s_len |
3305 | && memEQ((char *) p, CAP_SHARP_S, cap_sharp_s_len)) | |
1ca267a5 | 3306 | { |
ab0b796c KW |
3307 | /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */ |
3308 | Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE), | |
3309 | "Can't do fc(\"\\x{1E9E}\") on non-UTF-8 locale; " | |
3310 | "resolved to \"\\x{17F}\\x{17F}\"."); | |
1ca267a5 KW |
3311 | goto return_long_s; |
3312 | } | |
0766489e KW |
3313 | else |
3314 | #endif | |
3315 | if (UTF8SKIP(p) == long_s_t_len | |
76f2ffcd | 3316 | && memEQ((char *) p, LONG_S_T, long_s_t_len)) |
9fc2026f | 3317 | { |
ab0b796c KW |
3318 | /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */ |
3319 | Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE), | |
3320 | "Can't do fc(\"\\x{FB05}\") on non-UTF-8 locale; " | |
3321 | "resolved to \"\\x{FB06}\"."); | |
9fc2026f KW |
3322 | goto return_ligature_st; |
3323 | } | |
74894415 KW |
3324 | |
3325 | #if UNICODE_MAJOR_VERSION == 3 \ | |
3326 | && UNICODE_DOT_VERSION == 0 \ | |
3327 | && UNICODE_DOT_DOT_VERSION == 1 | |
3328 | # define DOTTED_I LATIN_CAPITAL_LETTER_I_WITH_DOT_ABOVE_UTF8 | |
3329 | ||
3330 | /* And special case this on this Unicode version only, for the same | |
3331 | * reaons the other two are special cased. They would cross the | |
3332 | * 255/256 boundary which is forbidden under /l, and so the code | |
3333 | * wouldn't catch that they are equivalent (which they are only in | |
3334 | * this release) */ | |
3335 | else if (UTF8SKIP(p) == sizeof(DOTTED_I) - 1 | |
3336 | && memEQ((char *) p, DOTTED_I, sizeof(DOTTED_I) - 1)) | |
3337 | { | |
3338 | /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */ | |
3339 | Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE), | |
3340 | "Can't do fc(\"\\x{0130}\") on non-UTF-8 locale; " | |
3341 | "resolved to \"\\x{0131}\"."); | |
3342 | goto return_dotless_i; | |
3343 | } | |
3344 | #endif | |
3345 | ||
357aadde | 3346 | return check_locale_boundary_crossing(p, result, ustrp, lenp); |
051a06d4 | 3347 | } |
a0270393 KW |
3348 | else if (! (flags & FOLD_FLAGS_NOMIX_ASCII)) { |
3349 | return result; | |
3350 | } | |
3351 | else { | |
4a4088c4 | 3352 | /* This is called when changing the case of a UTF-8-encoded |
9fc2026f KW |
3353 | * character above the ASCII range, and the result should not |
3354 | * contain an ASCII character. */ | |
a0270393 KW |
3355 | |
3356 | UV original; /* To store the first code point of <p> */ | |
3357 | ||
3358 | /* Look at every character in the result; if any cross the | |
3359 | * boundary, the whole thing is disallowed */ | |
3360 | U8* s = ustrp; | |
3361 | U8* e = ustrp + *lenp; | |
3362 | while (s < e) { | |
3363 | if (isASCII(*s)) { | |
3364 | /* Crossed, have to return the original */ | |
3365 | original = valid_utf8_to_uvchr(p, lenp); | |
1ca267a5 | 3366 | |
9fc2026f | 3367 | /* But in these instances, there is an alternative we can |
1ca267a5 | 3368 | * return that is valid */ |
0766489e KW |
3369 | if (original == LATIN_SMALL_LETTER_SHARP_S |
3370 | #ifdef LATIN_CAPITAL_LETTER_SHARP_S /* not defined in early Unicode releases */ | |
3371 | || original == LATIN_CAPITAL_LETTER_SHARP_S | |
3372 | #endif | |
3373 | ) { | |
1ca267a5 KW |
3374 | goto return_long_s; |
3375 | } | |
9fc2026f KW |
3376 | else if (original == LATIN_SMALL_LIGATURE_LONG_S_T) { |
3377 | goto return_ligature_st; | |
3378 | } | |
74894415 KW |
3379 | #if UNICODE_MAJOR_VERSION == 3 \ |
3380 | && UNICODE_DOT_VERSION == 0 \ | |
3381 | && UNICODE_DOT_DOT_VERSION == 1 | |
3382 | ||
3383 | else if (original == LATIN_CAPITAL_LETTER_I_WITH_DOT_ABOVE) { | |
3384 | goto return_dotless_i; | |
3385 | } | |
3386 | #endif | |
a0270393 KW |
3387 | Copy(p, ustrp, *lenp, char); |
3388 | return original; | |
3389 | } | |
3390 | s += UTF8SKIP(s); | |
3391 | } | |
051a06d4 | 3392 | |
a0270393 KW |
3393 | /* Here, no characters crossed, result is ok as-is */ |
3394 | return result; | |
3395 | } | |
051a06d4 KW |
3396 | } |
3397 | ||
4a4088c4 | 3398 | /* Here, used locale rules. Convert back to UTF-8 */ |
051a06d4 KW |
3399 | if (UTF8_IS_INVARIANT(result)) { |
3400 | *ustrp = (U8) result; | |
3401 | *lenp = 1; | |
3402 | } | |
3403 | else { | |
62cb07ea KW |
3404 | *ustrp = UTF8_EIGHT_BIT_HI((U8) result); |
3405 | *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result); | |
051a06d4 KW |
3406 | *lenp = 2; |
3407 | } | |
3408 | ||
051a06d4 | 3409 | return result; |
1ca267a5 KW |
3410 | |
3411 | return_long_s: | |
3412 | /* Certain folds to 'ss' are prohibited by the options, but they do allow | |
3413 | * folds to a string of two of these characters. By returning this | |
3414 | * instead, then, e.g., | |
3415 | * fc("\x{1E9E}") eq fc("\x{17F}\x{17F}") | |
3416 | * works. */ | |
3417 | ||
3418 | *lenp = 2 * sizeof(LATIN_SMALL_LETTER_LONG_S_UTF8) - 2; | |
3419 | Copy(LATIN_SMALL_LETTER_LONG_S_UTF8 LATIN_SMALL_LETTER_LONG_S_UTF8, | |
3420 | ustrp, *lenp, U8); | |
3421 | return LATIN_SMALL_LETTER_LONG_S; | |
9fc2026f KW |
3422 | |
3423 | return_ligature_st: | |
3424 | /* Two folds to 'st' are prohibited by the options; instead we pick one and | |
3425 | * have the other one fold to it */ | |
3426 | ||
3427 | *lenp = sizeof(LATIN_SMALL_LIGATURE_ST_UTF8) - 1; | |
3428 | Copy(LATIN_SMALL_LIGATURE_ST_UTF8, ustrp, *lenp, U8); | |
3429 | return LATIN_SMALL_LIGATURE_ST; | |
74894415 KW |
3430 | |
3431 | #if UNICODE_MAJOR_VERSION == 3 \ | |
3432 | && UNICODE_DOT_VERSION == 0 \ | |
3433 | && UNICODE_DOT_DOT_VERSION == 1 | |
3434 | ||
3435 | return_dotless_i: | |
3436 | *lenp = sizeof(LATIN_SMALL_LETTER_DOTLESS_I_UTF8) - 1; | |
3437 | Copy(LATIN_SMALL_LETTER_DOTLESS_I_UTF8, ustrp, *lenp, U8); | |
3438 | return LATIN_SMALL_LETTER_DOTLESS_I; | |
3439 | ||
3440 | #endif | |
3441 | ||
a0ed51b3 LW |
3442 | } |
3443 | ||
711a919c | 3444 | /* Note: |
f90a9a02 | 3445 | * Returns a "swash" which is a hash described in utf8.c:Perl_swash_fetch(). |
711a919c TS |
3446 | * C<pkg> is a pointer to a package name for SWASHNEW, should be "utf8". |
3447 | * For other parameters, see utf8::SWASHNEW in lib/utf8_heavy.pl. | |
3448 | */ | |
c4a5db0c | 3449 | |
a0ed51b3 | 3450 | SV* |
7fc63493 | 3451 | Perl_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none) |
a0ed51b3 | 3452 | { |
c4a5db0c KW |
3453 | PERL_ARGS_ASSERT_SWASH_INIT; |
3454 | ||
3455 | /* Returns a copy of a swash initiated by the called function. This is the | |
3456 | * public interface, and returning a copy prevents others from doing | |
3457 | * mischief on the original */ | |
3458 | ||
5d3d13d1 | 3459 | return newSVsv(_core_swash_init(pkg, name, listsv, minbits, none, NULL, NULL)); |
c4a5db0c KW |
3460 | } |
3461 | ||
3462 | SV* | |
5d3d13d1 | 3463 | Perl__core_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none, SV* invlist, U8* const flags_p) |
c4a5db0c | 3464 | { |
2c1f00b9 YO |
3465 | |
3466 | /*NOTE NOTE NOTE - If you want to use "return" in this routine you MUST | |
3467 | * use the following define */ | |
3468 | ||
3469 | #define CORE_SWASH_INIT_RETURN(x) \ | |
3470 | PL_curpm= old_PL_curpm; \ | |
3471 | return x | |
3472 | ||
c4a5db0c | 3473 | /* Initialize and return a swash, creating it if necessary. It does this |
87367d5f KW |
3474 | * by calling utf8_heavy.pl in the general case. The returned value may be |
3475 | * the swash's inversion list instead if the input parameters allow it. | |
3476 | * Which is returned should be immaterial to callers, as the only | |
923b6d4e KW |
3477 | * operations permitted on a swash, swash_fetch(), _get_swash_invlist(), |
3478 | * and swash_to_invlist() handle both these transparently. | |
c4a5db0c KW |
3479 | * |
3480 | * This interface should only be used by functions that won't destroy or | |
3481 | * adversely change the swash, as doing so affects all other uses of the | |
3482 | * swash in the program; the general public should use 'Perl_swash_init' | |
3483 | * instead. | |
3484 | * | |
3485 | * pkg is the name of the package that <name> should be in. | |
3486 | * name is the name of the swash to find. Typically it is a Unicode | |
3487 | * property name, including user-defined ones | |
3488 | * listsv is a string to initialize the swash with. It must be of the form | |
3489 | * documented as the subroutine return value in | |
3490 | * L<perlunicode/User-Defined Character Properties> | |
3491 | * minbits is the number of bits required to represent each data element. | |
3492 | * It is '1' for binary properties. | |
3493 | * none I (khw) do not understand this one, but it is used only in tr///. | |
9a53f6cf | 3494 | * invlist is an inversion list to initialize the swash with (or NULL) |
83199d38 KW |
3495 | * flags_p if non-NULL is the address of various input and output flag bits |
3496 | * to the routine, as follows: ('I' means is input to the routine; | |
3497 | * 'O' means output from the routine. Only flags marked O are | |
3498 | * meaningful on return.) | |
3499 | * _CORE_SWASH_INIT_USER_DEFINED_PROPERTY indicates if the swash | |
3500 | * came from a user-defined property. (I O) | |
5d3d13d1 KW |
3501 | * _CORE_SWASH_INIT_RETURN_IF_UNDEF indicates that instead of croaking |
3502 | * when the swash cannot be located, to simply return NULL. (I) | |
87367d5f KW |
3503 | * _CORE_SWASH_INIT_ACCEPT_INVLIST indicates that the caller will accept a |
3504 | * return of an inversion list instead of a swash hash if this routine | |
3505 | * thinks that would result in faster execution of swash_fetch() later | |
3506 | * on. (I) | |
9a53f6cf KW |
3507 | * |
3508 | * Thus there are three possible inputs to find the swash: <name>, | |
3509 | * <listsv>, and <invlist>. At least one must be specified. The result | |
3510 | * will be the union of the specified ones, although <listsv>'s various | |
aabbdbda KW |
3511 | * actions can intersect, etc. what <name> gives. To avoid going out to |
3512 | * disk at all, <invlist> should specify completely what the swash should | |
3513 | * have, and <listsv> should be &PL_sv_undef and <name> should be "". | |
9a53f6cf KW |
3514 | * |
3515 | * <invlist> is only valid for binary properties */ | |
c4a5db0c | 3516 | |
2c1f00b9 YO |
3517 | PMOP *old_PL_curpm= PL_curpm; /* save away the old PL_curpm */ |
3518 | ||
c4a5db0c | 3519 | SV* retval = &PL_sv_undef; |
83199d38 | 3520 | HV* swash_hv = NULL; |
87367d5f KW |
3521 | const int invlist_swash_boundary = |
3522 | (flags_p && *flags_p & _CORE_SWASH_INIT_ACCEPT_INVLIST) | |
3523 | ? 512 /* Based on some benchmarking, but not extensive, see commit | |
3524 | message */ | |
3525 | : -1; /* Never return just an inversion list */ | |
9a53f6cf KW |
3526 | |
3527 | assert(listsv != &PL_sv_undef || strNE(name, "") || invlist); | |
3528 | assert(! invlist || minbits == 1); | |
3529 | ||
2c1f00b9 YO |
3530 | PL_curpm= NULL; /* reset PL_curpm so that we dont get confused between the regex |
3531 | that triggered the swash init and the swash init perl logic itself. | |
3532 | See perl #122747 */ | |
3533 | ||
9a53f6cf KW |
3534 | /* If data was passed in to go out to utf8_heavy to find the swash of, do |
3535 | * so */ | |
3536 | if (listsv != &PL_sv_undef || strNE(name, "")) { | |
69794297 KW |
3537 | dSP; |
3538 | const size_t pkg_len = strlen(pkg); | |
3539 | const size_t name_len = strlen(name); | |
3540 | HV * const stash = gv_stashpvn(pkg, pkg_len, 0); | |
3541 | SV* errsv_save; | |
3542 | GV *method; | |
3543 | ||
3544 | PERL_ARGS_ASSERT__CORE_SWASH_INIT; | |
3545 | ||
3546 | PUSHSTACKi(PERLSI_MAGIC); | |
ce3b816e | 3547 | ENTER; |
69794297 | 3548 | SAVEHINTS(); |
2782061f | 3549 | save_re_context(); |
650f067c JL |
3550 | /* We might get here via a subroutine signature which uses a utf8 |
3551 | * parameter name, at which point PL_subname will have been set | |
3552 | * but not yet used. */ | |
3553 | save_item(PL_subname); | |
69794297 KW |
3554 | if (PL_parser && PL_parser->error_count) |
3555 | SAVEI8(PL_parser->error_count), PL_parser->error_count = 0; | |
3556 | method = gv_fetchmeth(stash, "SWASHNEW", 8, -1); | |
4a4088c4 | 3557 | if (!method) { /* demand load UTF-8 */ |
69794297 | 3558 | ENTER; |
db2c6cb3 FC |
3559 | if ((errsv_save = GvSV(PL_errgv))) SAVEFREESV(errsv_save); |
3560 | GvSV(PL_errgv) = NULL; | |
1a419e6b | 3561 | #ifndef NO_TAINT_SUPPORT |
69794297 KW |
3562 | /* It is assumed that callers of this routine are not passing in |
3563 | * any user derived data. */ | |
2782061f DM |
3564 | /* Need to do this after save_re_context() as it will set |
3565 | * PL_tainted to 1 while saving $1 etc (see the code after getrx: | |
3566 | * in Perl_magic_get). Even line to create errsv_save can turn on | |
3567 | * PL_tainted. */ | |
284167a5 S |
3568 | SAVEBOOL(TAINT_get); |
3569 | TAINT_NOT; | |
3570 | #endif | |
69794297 KW |
3571 | Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, newSVpvn(pkg,pkg_len), |
3572 | NULL); | |
eed484f9 | 3573 | { |
db2c6cb3 FC |
3574 | /* Not ERRSV, as there is no need to vivify a scalar we are |
3575 | about to discard. */ | |
3576 | SV * const errsv = GvSV(PL_errgv); | |
3577 | if (!SvTRUE(errsv)) { | |
3578 | GvSV(PL_errgv) = SvREFCNT_inc_simple(errsv_save); | |
3579 | SvREFCNT_dec(errsv); | |
3580 | } | |
eed484f9 | 3581 | } |
69794297 KW |
3582 | LEAVE; |
3583 | } | |
3584 | SPAGAIN; | |
3585 | PUSHMARK(SP); | |
3586 | EXTEND(SP,5); | |
3587 | mPUSHp(pkg, pkg_len); | |
3588 | mPUSHp(name, name_len); | |
3589 | PUSHs(listsv); | |
3590 | mPUSHi(minbits); | |
3591 | mPUSHi(none); | |
3592 | PUTBACK; | |
db2c6cb3 FC |
3593 | if ((errsv_save = GvSV(PL_errgv))) SAVEFREESV(errsv_save); |
3594 | GvSV(PL_errgv) = NULL; | |
69794297 KW |
3595 | /* If we already have a pointer to the method, no need to use |
3596 | * call_method() to repeat the lookup. */ | |
c41800a8 KW |
3597 | if (method |
3598 | ? call_sv(MUTABLE_SV(method), G_SCALAR) | |
69794297 KW |
3599 | : call_sv(newSVpvs_flags("SWASHNEW", SVs_TEMP), G_SCALAR | G_METHOD)) |
3600 | { | |
3601 | retval = *PL_stack_sp--; | |
3602 | SvREFCNT_inc(retval); | |
3603 | } | |
eed484f9 | 3604 | { |
db2c6cb3 FC |
3605 | /* Not ERRSV. See above. */ |
3606 | SV * const errsv = GvSV(PL_errgv); | |
3607 | if (!SvTRUE(errsv)) { | |
3608 | GvSV(PL_errgv) = SvREFCNT_inc_simple(errsv_save); | |
3609 | SvREFCNT_dec(errsv); | |
3610 | } | |
eed484f9 | 3611 | } |
ce3b816e | 3612 | LEAVE; |
69794297 KW |
3613 | POPSTACK; |
3614 | if (IN_PERL_COMPILETIME) { | |
3615 | CopHINTS_set(PL_curcop, PL_hints); | |
3616 | } | |
3617 | if (!SvROK(retval) || SvTYPE(SvRV(retval)) != SVt_PVHV) { | |
d95e4a00 | 3618 | if (SvPOK(retval)) { |
69794297 KW |
3619 | |
3620 | /* If caller wants to handle missing properties, let them */ | |
5d3d13d1 | 3621 | if (flags_p && *flags_p & _CORE_SWASH_INIT_RETURN_IF_UNDEF) { |
2c1f00b9 | 3622 | CORE_SWASH_INIT_RETURN(NULL); |
69794297 KW |
3623 | } |
3624 | Perl_croak(aTHX_ | |
147e3846 | 3625 | "Can't find Unicode property definition \"%" SVf "\"", |
69794297 | 3626 | SVfARG(retval)); |
a25b5927 | 3627 | NOT_REACHED; /* NOTREACHED */ |
d95e4a00 | 3628 | } |
69794297 | 3629 | } |
9a53f6cf | 3630 | } /* End of calling the module to find the swash */ |
36eb48b4 | 3631 | |
83199d38 KW |
3632 | /* If this operation fetched a swash, and we will need it later, get it */ |
3633 | if (retval != &PL_sv_undef | |
3634 | && (minbits == 1 || (flags_p | |
3635 | && ! (*flags_p | |
3636 | & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY)))) | |
3637 | { | |
3638 | swash_hv = MUTABLE_HV(SvRV(retval)); | |
3639 | ||
3640 | /* If we don't already know that there is a user-defined component to | |
3641 | * this swash, and the user has indicated they wish to know if there is | |
3642 | * one (by passing <flags_p>), find out */ | |
3643 | if (flags_p && ! (*flags_p & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY)) { | |
3644 | SV** user_defined = hv_fetchs(swash_hv, "USER_DEFINED", FALSE); | |
3645 | if (user_defined && SvUV(*user_defined)) { | |
3646 | *flags_p |= _CORE_SWASH_INIT_USER_DEFINED_PROPERTY; | |
3647 | } | |
3648 | } | |
3649 | } | |
3650 | ||
36eb48b4 KW |
3651 | /* Make sure there is an inversion list for binary properties */ |
3652 | if (minbits == 1) { | |
3653 | SV** swash_invlistsvp = NULL; | |
3654 | SV* swash_invlist = NULL; | |
9a53f6cf | 3655 | bool invlist_in_swash_is_valid = FALSE; |
02c85471 FC |
3656 | bool swash_invlist_unclaimed = FALSE; /* whether swash_invlist has |
3657 | an unclaimed reference count */ | |
36eb48b4 | 3658 | |
9a53f6cf | 3659 | /* If this operation fetched a swash, get its already existing |
83199d38 | 3660 | * inversion list, or create one for it */ |
36eb48b4 | 3661 | |
83199d38 | 3662 | if (swash_hv) { |
5c9f4bd2 | 3663 | swash_invlistsvp = hv_fetchs(swash_hv, "V", FALSE); |
9a53f6cf KW |
3664 | if (swash_invlistsvp) { |
3665 | swash_invlist = *swash_invlistsvp; | |
3666 | invlist_in_swash_is_valid = TRUE; | |
3667 | } | |
3668 | else { | |
36eb48b4 | 3669 | swash_invlist = _swash_to_invlist(retval); |
02c85471 | 3670 | swash_invlist_unclaimed = TRUE; |
9a53f6cf KW |
3671 | } |
3672 | } | |
3673 | ||
3674 | /* If an inversion list was passed in, have to include it */ | |
3675 | if (invlist) { | |
3676 | ||
3677 | /* Any fetched swash will by now have an inversion list in it; | |
3678 | * otherwise <swash_invlist> will be NULL, indicating that we | |
3679 | * didn't fetch a swash */ | |
3680 | if (swash_invlist) { | |
3681 | ||
3682 | /* Add the passed-in inversion list, which invalidates the one | |
3683 | * already stored in the swash */ | |
3684 | invlist_in_swash_is_valid = FALSE; | |
eee4c920 | 3685 | SvREADONLY_off(swash_invlist); /* Turned on again below */ |
9a53f6cf KW |
3686 | _invlist_union(invlist, swash_invlist, &swash_invlist); |
3687 | } | |
3688 | else { | |
3689 | ||
87367d5f KW |
3690 | /* Here, there is no swash already. Set up a minimal one, if |
3691 | * we are going to return a swash */ | |
3692 | if ((int) _invlist_len(invlist) > invlist_swash_boundary) { | |
971d486f | 3693 | swash_hv = newHV(); |
4aca0fe6 | 3694 | retval = newRV_noinc(MUTABLE_SV(swash_hv)); |
87367d5f | 3695 | } |
9a53f6cf KW |
3696 | swash_invlist = invlist; |
3697 | } | |
9a53f6cf KW |
3698 | } |
3699 | ||
3700 | /* Here, we have computed the union of all the passed-in data. It may | |
3701 | * be that there was an inversion list in the swash which didn't get | |
538e84ed | 3702 | * touched; otherwise save the computed one */ |
87367d5f KW |
3703 | if (! invlist_in_swash_is_valid |
3704 | && (int) _invlist_len(swash_invlist) > invlist_swash_boundary) | |
3705 | { | |
5c9f4bd2 | 3706 | if (! hv_stores(MUTABLE_HV(SvRV(retval)), "V", swash_invlist)) |
69794297 KW |
3707 | { |
3708 | Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed"); | |
3709 | } | |
cc34d8c5 FC |
3710 | /* We just stole a reference count. */ |
3711 | if (swash_invlist_unclaimed) swash_invlist_unclaimed = FALSE; | |
3712 | else SvREFCNT_inc_simple_void_NN(swash_invlist); | |
9a53f6cf | 3713 | } |
87367d5f | 3714 | |
ee3222e3 | 3715 | /* The result is immutable. Forbid attempts to change it. */ |
dbfdbd26 KW |
3716 | SvREADONLY_on(swash_invlist); |
3717 | ||
c41800a8 | 3718 | /* Use the inversion list stand-alone if small enough */ |
87367d5f KW |
3719 | if ((int) _invlist_len(swash_invlist) <= invlist_swash_boundary) { |
3720 | SvREFCNT_dec(retval); | |
02c85471 FC |
3721 | if (!swash_invlist_unclaimed) |
3722 | SvREFCNT_inc_simple_void_NN(swash_invlist); | |
3723 | retval = newRV_noinc(swash_invlist); | |
87367d5f | 3724 | } |
36eb48b4 KW |
3725 | } |
3726 | ||
2c1f00b9 YO |
3727 | CORE_SWASH_INIT_RETURN(retval); |
3728 | #undef CORE_SWASH_INIT_RETURN | |
a0ed51b3 LW |
3729 | } |
3730 | ||
035d37be JH |
3731 | |
3732 | /* This API is wrong for special case conversions since we may need to | |
3733 | * return several Unicode characters for a single Unicode character | |
3734 | * (see lib/unicore/SpecCase.txt) The SWASHGET in lib/utf8_heavy.pl is | |
3735 | * the lower-level routine, and it is similarly broken for returning | |
38684baa | 3736 | * multiple values. --jhi |
b9992569 | 3737 | * For those, you should use S__to_utf8_case() instead */ |
b0e3252e | 3738 | /* Now SWASHGET is recasted into S_swatch_get in this file. */ |
680c470c TS |
3739 | |
3740 | /* Note: | |
3741 | * Returns the value of property/mapping C<swash> for the first character | |
3742 | * of the string C<ptr>. If C<do_utf8> is true, the string C<ptr> i |