This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
t/op/die.t: tests for RT #4821
[perl5.git] / locale.c
1 /*    locale.c
2  *
3  *    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4  *    2002, 2003, 2005, 2006, 2007, 2008 by Larry Wall and others
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  *
9  */
10
11 /*
12  *      A Elbereth Gilthoniel,
13  *      silivren penna míriel
14  *      o menel aglar elenath!
15  *      Na-chaered palan-díriel
16  *      o galadhremmin ennorath,
17  *      Fanuilos, le linnathon
18  *      nef aear, si nef aearon!
19  *
20  *     [p.238 of _The Lord of the Rings_, II/i: "Many Meetings"]
21  */
22
23 /* utility functions for handling locale-specific stuff like what
24  * character represents the decimal point.
25  *
26  * All C programs have an underlying locale.  Perl generally doesn't pay any
27  * attention to it except within the scope of a 'use locale'.  For most
28  * categories, it accomplishes this by just using different operations if it is
29  * in such scope than if not.  However, various libc functions called by Perl
30  * are affected by the LC_NUMERIC category, so there are macros in perl.h that
31  * are used to toggle between the current locale and the C locale depending on
32  * the desired behavior of those functions at the moment.  And, LC_MESSAGES is
33  * switched to the C locale for outputting the message unless within the scope
34  * of 'use locale'.
35  */
36
37 #include "EXTERN.h"
38 #define PERL_IN_LOCALE_C
39 #include "perl.h"
40
41 #ifdef I_LANGINFO
42 #   include <langinfo.h>
43 #endif
44
45 #include "reentr.h"
46
47 /* If the environment says to, we can output debugging information during
48  * initialization.  This is done before option parsing, and before any thread
49  * creation, so can be a file-level static */
50 #ifdef DEBUGGING
51 # ifdef PERL_GLOBAL_STRUCT
52   /* no global syms allowed */
53 #  define debug_initialization 0
54 #  define DEBUG_INITIALIZATION_set(v)
55 # else
56 static bool debug_initialization = FALSE;
57 #  define DEBUG_INITIALIZATION_set(v) (debug_initialization = v)
58 # endif
59 #endif
60
61 #ifdef USE_LOCALE
62
63 /*
64  * Standardize the locale name from a string returned by 'setlocale', possibly
65  * modifying that string.
66  *
67  * The typical return value of setlocale() is either
68  * (1) "xx_YY" if the first argument of setlocale() is not LC_ALL
69  * (2) "xa_YY xb_YY ..." if the first argument of setlocale() is LC_ALL
70  *     (the space-separated values represent the various sublocales,
71  *      in some unspecified order).  This is not handled by this function.
72  *
73  * In some platforms it has a form like "LC_SOMETHING=Lang_Country.866\n",
74  * which is harmful for further use of the string in setlocale().  This
75  * function removes the trailing new line and everything up through the '='
76  *
77  */
78 STATIC char *
79 S_stdize_locale(pTHX_ char *locs)
80 {
81     const char * const s = strchr(locs, '=');
82     bool okay = TRUE;
83
84     PERL_ARGS_ASSERT_STDIZE_LOCALE;
85
86     if (s) {
87         const char * const t = strchr(s, '.');
88         okay = FALSE;
89         if (t) {
90             const char * const u = strchr(t, '\n');
91             if (u && (u[1] == 0)) {
92                 const STRLEN len = u - s;
93                 Move(s + 1, locs, len, char);
94                 locs[len] = 0;
95                 okay = TRUE;
96             }
97         }
98     }
99
100     if (!okay)
101         Perl_croak(aTHX_ "Can't fix broken locale name \"%s\"", locs);
102
103     return locs;
104 }
105
106 #endif
107
108 void
109 Perl_set_numeric_radix(pTHX)
110 {
111 #ifdef USE_LOCALE_NUMERIC
112 # ifdef HAS_LOCALECONV
113     const struct lconv* const lc = localeconv();
114
115     if (lc && lc->decimal_point) {
116         if (lc->decimal_point[0] == '.' && lc->decimal_point[1] == 0) {
117             SvREFCNT_dec(PL_numeric_radix_sv);
118             PL_numeric_radix_sv = NULL;
119         }
120         else {
121             if (PL_numeric_radix_sv)
122                 sv_setpv(PL_numeric_radix_sv, lc->decimal_point);
123             else
124                 PL_numeric_radix_sv = newSVpv(lc->decimal_point, 0);
125             if (! is_utf8_invariant_string((U8 *) lc->decimal_point, 0)
126                 && is_utf8_string((U8 *) lc->decimal_point, 0)
127                 && _is_cur_LC_category_utf8(LC_NUMERIC))
128             {
129                 SvUTF8_on(PL_numeric_radix_sv);
130             }
131         }
132     }
133     else
134         PL_numeric_radix_sv = NULL;
135
136 #ifdef DEBUGGING
137     if (DEBUG_L_TEST || debug_initialization) {
138         PerlIO_printf(Perl_debug_log, "Locale radix is '%s', ?UTF-8=%d\n",
139                                           (PL_numeric_radix_sv)
140                                            ? SvPVX(PL_numeric_radix_sv)
141                                            : "NULL",
142                                           (PL_numeric_radix_sv)
143                                            ? cBOOL(SvUTF8(PL_numeric_radix_sv))
144                                            : 0);
145     }
146 #endif
147
148 # endif /* HAS_LOCALECONV */
149 #endif /* USE_LOCALE_NUMERIC */
150 }
151
152 /* Is the C string input 'name' "C" or "POSIX"?  If so, and 'name' is the
153  * return of setlocale(), then this is extremely likely to be the C or POSIX
154  * locale.  However, the output of setlocale() is documented to be opaque, but
155  * the odds are extremely small that it would return these two strings for some
156  * other locale.  Note that VMS in these two locales includes many non-ASCII
157  * characters as controls and punctuation (below are hex bytes):
158  *   cntrl:  00-1F 7F 84-97 9B-9F
159  *   punct:  21-2F 3A-40 5B-60 7B-7E A1-A3 A5 A7-AB B0-B3 B5-B7 B9-BD BF-CF D1-DD DF-EF F1-FD
160  * Oddly, none there are listed as alphas, though some represent alphabetics
161  * http://www.nntp.perl.org/group/perl.perl5.porters/2013/02/msg198753.html */
162 #define isNAME_C_OR_POSIX(name) ((name) != NULL                                 \
163                                   && ((*(name) == 'C' && (*(name + 1)) == '\0') \
164                                        || strEQ((name), "POSIX")))
165
166 void
167 Perl_new_numeric(pTHX_ const char *newnum)
168 {
169 #ifdef USE_LOCALE_NUMERIC
170
171     /* Called after all libc setlocale() calls affecting LC_NUMERIC, to tell
172      * core Perl this and that 'newnum' is the name of the new locale.
173      * It installs this locale as the current underlying default.
174      *
175      * The default locale and the C locale can be toggled between by use of the
176      * set_numeric_local() and set_numeric_standard() functions, which should
177      * probably not be called directly, but only via macros like
178      * SET_NUMERIC_STANDARD() in perl.h.
179      *
180      * The toggling is necessary mainly so that a non-dot radix decimal point
181      * character can be output, while allowing internal calculations to use a
182      * dot.
183      *
184      * This sets several interpreter-level variables:
185      * PL_numeric_name  The underlying locale's name: a copy of 'newnum'
186      * PL_numeric_local A boolean indicating if the toggled state is such
187      *                  that the current locale is the program's underlying
188      *                  locale
189      * PL_numeric_standard An int indicating if the toggled state is such
190      *                  that the current locale is the C locale.  If non-zero,
191      *                  it is in C; if > 1, it means it may not be toggled away
192      *                  from C.
193      * Note that both of the last two variables can be true at the same time,
194      * if the underlying locale is C.  (Toggling is a no-op under these
195      * circumstances.)
196      *
197      * Any code changing the locale (outside this file) should use
198      * POSIX::setlocale, which calls this function.  Therefore this function
199      * should be called directly only from this file and from
200      * POSIX::setlocale() */
201
202     char *save_newnum;
203
204     if (! newnum) {
205         Safefree(PL_numeric_name);
206         PL_numeric_name = NULL;
207         PL_numeric_standard = TRUE;
208         PL_numeric_local = TRUE;
209         return;
210     }
211
212     save_newnum = stdize_locale(savepv(newnum));
213
214     PL_numeric_standard = isNAME_C_OR_POSIX(save_newnum);
215     PL_numeric_local = TRUE;
216
217     if (! PL_numeric_name || strNE(PL_numeric_name, save_newnum)) {
218         Safefree(PL_numeric_name);
219         PL_numeric_name = save_newnum;
220     }
221     else {
222         Safefree(save_newnum);
223     }
224
225     /* Keep LC_NUMERIC in the C locale.  This is for XS modules, so they don't
226      * have to worry about the radix being a non-dot.  (Core operations that
227      * need the underlying locale change to it temporarily). */
228     set_numeric_standard();
229
230     set_numeric_radix();
231
232 #else
233     PERL_UNUSED_ARG(newnum);
234 #endif /* USE_LOCALE_NUMERIC */
235 }
236
237 void
238 Perl_set_numeric_standard(pTHX)
239 {
240 #ifdef USE_LOCALE_NUMERIC
241     /* Toggle the LC_NUMERIC locale to C.  Most code should use the macros like
242      * SET_NUMERIC_STANDARD() in perl.h instead of calling this directly.  The
243      * macro avoids calling this routine if toggling isn't necessary according
244      * to our records (which could be wrong if some XS code has changed the
245      * locale behind our back) */
246
247     setlocale(LC_NUMERIC, "C");
248     PL_numeric_standard = TRUE;
249     PL_numeric_local = isNAME_C_OR_POSIX(PL_numeric_name);
250     set_numeric_radix();
251 #ifdef DEBUGGING
252     if (DEBUG_L_TEST || debug_initialization) {
253         PerlIO_printf(Perl_debug_log,
254                           "Underlying LC_NUMERIC locale now is C\n");
255     }
256 #endif
257
258 #endif /* USE_LOCALE_NUMERIC */
259 }
260
261 void
262 Perl_set_numeric_local(pTHX)
263 {
264 #ifdef USE_LOCALE_NUMERIC
265     /* Toggle the LC_NUMERIC locale to the current underlying default.  Most
266      * code should use the macros like SET_NUMERIC_LOCAL() in perl.h instead of
267      * calling this directly.  The macro avoids calling this routine if
268      * toggling isn't necessary according to our records (which could be wrong
269      * if some XS code has changed the locale behind our back) */
270
271     setlocale(LC_NUMERIC, PL_numeric_name);
272     PL_numeric_standard = isNAME_C_OR_POSIX(PL_numeric_name);
273     PL_numeric_local = TRUE;
274     set_numeric_radix();
275 #ifdef DEBUGGING
276     if (DEBUG_L_TEST || debug_initialization) {
277         PerlIO_printf(Perl_debug_log,
278                           "Underlying LC_NUMERIC locale now is %s\n",
279                           PL_numeric_name);
280     }
281 #endif
282
283 #endif /* USE_LOCALE_NUMERIC */
284 }
285
286 /*
287  * Set up for a new ctype locale.
288  */
289 void
290 Perl_new_ctype(pTHX_ const char *newctype)
291 {
292 #ifdef USE_LOCALE_CTYPE
293
294     /* Called after all libc setlocale() calls affecting LC_CTYPE, to tell
295      * core Perl this and that 'newctype' is the name of the new locale.
296      *
297      * This function sets up the folding arrays for all 256 bytes, assuming
298      * that tofold() is tolc() since fold case is not a concept in POSIX,
299      *
300      * Any code changing the locale (outside this file) should use
301      * POSIX::setlocale, which calls this function.  Therefore this function
302      * should be called directly only from this file and from
303      * POSIX::setlocale() */
304
305     dVAR;
306     UV i;
307
308     PERL_ARGS_ASSERT_NEW_CTYPE;
309
310     /* We will replace any bad locale warning with 1) nothing if the new one is
311      * ok; or 2) a new warning for the bad new locale */
312     if (PL_warn_locale) {
313         SvREFCNT_dec_NN(PL_warn_locale);
314         PL_warn_locale = NULL;
315     }
316
317     PL_in_utf8_CTYPE_locale = _is_cur_LC_category_utf8(LC_CTYPE);
318
319     /* A UTF-8 locale gets standard rules.  But note that code still has to
320      * handle this specially because of the three problematic code points */
321     if (PL_in_utf8_CTYPE_locale) {
322         Copy(PL_fold_latin1, PL_fold_locale, 256, U8);
323     }
324     else {
325         /* Assume enough space for every character being bad.  4 spaces each
326          * for the 94 printable characters that are output like "'x' "; and 5
327          * spaces each for "'\\' ", "'\t' ", and "'\n' "; plus a terminating
328          * NUL */
329         char bad_chars_list[ (94 * 4) + (3 * 5) + 1 ];
330
331         bool check_for_problems = ckWARN_d(WARN_LOCALE); /* No warnings means
332                                                             no check */
333         bool multi_byte_locale = FALSE;     /* Assume is a single-byte locale
334                                                to start */
335         unsigned int bad_count = 0;         /* Count of bad characters */
336
337         for (i = 0; i < 256; i++) {
338             if (isUPPER_LC((U8) i))
339                 PL_fold_locale[i] = (U8) toLOWER_LC((U8) i);
340             else if (isLOWER_LC((U8) i))
341                 PL_fold_locale[i] = (U8) toUPPER_LC((U8) i);
342             else
343                 PL_fold_locale[i] = (U8) i;
344
345             /* If checking for locale problems, see if the native ASCII-range
346              * printables plus \n and \t are in their expected categories in
347              * the new locale.  If not, this could mean big trouble, upending
348              * Perl's and most programs' assumptions, like having a
349              * metacharacter with special meaning become a \w.  Fortunately,
350              * it's very rare to find locales that aren't supersets of ASCII
351              * nowadays.  It isn't a problem for most controls to be changed
352              * into something else; we check only \n and \t, though perhaps \r
353              * could be an issue as well. */
354             if (check_for_problems
355                 && (isGRAPH_A(i) || isBLANK_A(i) || i == '\n'))
356             {
357                 if ((isALPHANUMERIC_A(i) && ! isALPHANUMERIC_LC(i))
358                      || (isPUNCT_A(i) && ! isPUNCT_LC(i))
359                      || (isBLANK_A(i) && ! isBLANK_LC(i))
360                      || (i == '\n' && ! isCNTRL_LC(i)))
361                 {
362                     if (bad_count) {    /* Separate multiple entries with a
363                                            blank */
364                         bad_chars_list[bad_count++] = ' ';
365                     }
366                     bad_chars_list[bad_count++] = '\'';
367                     if (isPRINT_A(i)) {
368                         bad_chars_list[bad_count++] = (char) i;
369                     }
370                     else {
371                         bad_chars_list[bad_count++] = '\\';
372                         if (i == '\n') {
373                             bad_chars_list[bad_count++] = 'n';
374                         }
375                         else {
376                             assert(i == '\t');
377                             bad_chars_list[bad_count++] = 't';
378                         }
379                     }
380                     bad_chars_list[bad_count++] = '\'';
381                     bad_chars_list[bad_count] = '\0';
382                 }
383             }
384         }
385
386 #ifdef MB_CUR_MAX
387         /* We only handle single-byte locales (outside of UTF-8 ones; so if
388          * this locale requires more than one byte, there are going to be
389          * problems. */
390         if (check_for_problems && MB_CUR_MAX > 1
391
392                /* Some platforms return MB_CUR_MAX > 1 for even the "C"
393                 * locale.  Just assume that the implementation for them (plus
394                 * for POSIX) is correct and the > 1 value is spurious.  (Since
395                 * these are specially handled to never be considered UTF-8
396                 * locales, as long as this is the only problem, everything
397                 * should work fine */
398             && strNE(newctype, "C") && strNE(newctype, "POSIX"))
399         {
400             multi_byte_locale = TRUE;
401         }
402 #endif
403
404         if (bad_count || multi_byte_locale) {
405             PL_warn_locale = Perl_newSVpvf(aTHX_
406                              "Locale '%s' may not work well.%s%s%s\n",
407                              newctype,
408                              (multi_byte_locale)
409                               ? "  Some characters in it are not recognized by"
410                                 " Perl."
411                               : "",
412                              (bad_count)
413                               ? "\nThe following characters (and maybe others)"
414                                 " may not have the same meaning as the Perl"
415                                 " program expects:\n"
416                               : "",
417                              (bad_count)
418                               ? bad_chars_list
419                               : ""
420                             );
421             /* If we are actually in the scope of the locale, output the
422              * message now.  Otherwise we save it to be output at the first
423              * operation using this locale, if that actually happens.  Most
424              * programs don't use locales, so they are immune to bad ones */
425             if (IN_LC(LC_CTYPE)) {
426
427                 /* We have to save 'newctype' because the setlocale() just
428                  * below may destroy it.  The next setlocale() further down
429                  * should restore it properly so that the intermediate change
430                  * here is transparent to this function's caller */
431                 const char * const badlocale = savepv(newctype);
432
433                 setlocale(LC_CTYPE, "C");
434
435                 /* The '0' below suppresses a bogus gcc compiler warning */
436                 Perl_warner(aTHX_ packWARN(WARN_LOCALE), SvPVX(PL_warn_locale), 0);
437                 setlocale(LC_CTYPE, badlocale);
438                 Safefree(badlocale);
439                 SvREFCNT_dec_NN(PL_warn_locale);
440                 PL_warn_locale = NULL;
441             }
442         }
443     }
444
445 #endif /* USE_LOCALE_CTYPE */
446     PERL_ARGS_ASSERT_NEW_CTYPE;
447     PERL_UNUSED_ARG(newctype);
448     PERL_UNUSED_CONTEXT;
449 }
450
451 void
452 Perl__warn_problematic_locale()
453 {
454
455 #ifdef USE_LOCALE_CTYPE
456
457     dTHX;
458
459     /* Internal-to-core function that outputs the message in PL_warn_locale,
460      * and then NULLS it.  Should be called only through the macro
461      * _CHECK_AND_WARN_PROBLEMATIC_LOCALE */
462
463     if (PL_warn_locale) {
464         /*GCC_DIAG_IGNORE(-Wformat-security);   Didn't work */
465         Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
466                              SvPVX(PL_warn_locale),
467                              0 /* dummy to avoid compiler warning */ );
468         /* GCC_DIAG_RESTORE; */
469         SvREFCNT_dec_NN(PL_warn_locale);
470         PL_warn_locale = NULL;
471     }
472
473 #endif
474
475 }
476
477 void
478 Perl_new_collate(pTHX_ const char *newcoll)
479 {
480 #ifdef USE_LOCALE_COLLATE
481
482     /* Called after all libc setlocale() calls affecting LC_COLLATE, to tell
483      * core Perl this and that 'newcoll' is the name of the new locale.
484      *
485      * Any code changing the locale (outside this file) should use
486      * POSIX::setlocale, which calls this function.  Therefore this function
487      * should be called directly only from this file and from
488      * POSIX::setlocale().
489      *
490      * The design of locale collation is that every locale change is given an
491      * index 'PL_collation_ix'.  The first time a string particpates in an
492      * operation that requires collation while locale collation is active, it
493      * is given PERL_MAGIC_collxfrm magic (via sv_collxfrm_flags()).  That
494      * magic includes the collation index, and the transformation of the string
495      * by strxfrm(), q.v.  That transformation is used when doing comparisons,
496      * instead of the string itself.  If a string changes, the magic is
497      * cleared.  The next time the locale changes, the index is incremented,
498      * and so we know during a comparison that the transformation is not
499      * necessarily still valid, and so is recomputed.  Note that if the locale
500      * changes enough times, the index could wrap (a U32), and it is possible
501      * that a transformation would improperly be considered valid, leading to
502      * an unlikely bug */
503
504     if (! newcoll) {
505         if (PL_collation_name) {
506             ++PL_collation_ix;
507             Safefree(PL_collation_name);
508             PL_collation_name = NULL;
509         }
510         PL_collation_standard = TRUE;
511       is_standard_collation:
512         PL_collxfrm_base = 0;
513         PL_collxfrm_mult = 2;
514         PL_in_utf8_COLLATE_locale = FALSE;
515         *PL_strxfrm_min_char = '\0';
516         PL_strxfrm_max_cp = 0;
517         return;
518     }
519
520     /* If this is not the same locale as currently, set the new one up */
521     if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
522         ++PL_collation_ix;
523         Safefree(PL_collation_name);
524         PL_collation_name = stdize_locale(savepv(newcoll));
525         PL_collation_standard = isNAME_C_OR_POSIX(newcoll);
526         if (PL_collation_standard) {
527             goto is_standard_collation;
528         }
529
530         PL_in_utf8_COLLATE_locale = _is_cur_LC_category_utf8(LC_COLLATE);
531         *PL_strxfrm_min_char = '\0';
532         PL_strxfrm_max_cp = 0;
533
534         /* A locale collation definition includes primary, secondary, tertiary,
535          * etc. weights for each character.  To sort, the primary weights are
536          * used, and only if they compare equal, then the secondary weights are
537          * used, and only if they compare equal, then the tertiary, etc.
538          *
539          * strxfrm() works by taking the input string, say ABC, and creating an
540          * output transformed string consisting of first the primary weights,
541          * A¹B¹C¹ followed by the secondary ones, A²B²C²; and then the
542          * tertiary, etc, yielding A¹B¹C¹ A²B²C² A³B³C³ ....  Some characters
543          * may not have weights at every level.  In our example, let's say B
544          * doesn't have a tertiary weight, and A doesn't have a secondary
545          * weight.  The constructed string is then going to be
546          *  A¹B¹C¹ B²C² A³C³ ....
547          * This has the desired effect that strcmp() will look at the secondary
548          * or tertiary weights only if the strings compare equal at all higher
549          * priority weights.  The spaces shown here, like in
550          *  "A¹B¹C¹ * A²B²C² "
551          * are not just for readability.  In the general case, these must
552          * actually be bytes, which we will call here 'separator weights'; and
553          * they must be smaller than any other weight value, but since these
554          * are C strings, only the terminating one can be a NUL (some
555          * implementations may include a non-NUL separator weight just before
556          * the NUL).  Implementations tend to reserve 01 for the separator
557          * weights.  They are needed so that a shorter string's secondary
558          * weights won't be misconstrued as primary weights of a longer string,
559          * etc.  By making them smaller than any other weight, the shorter
560          * string will sort first.  (Actually, if all secondary weights are
561          * smaller than all primary ones, there is no need for a separator
562          * weight between those two levels, etc.)
563          *
564          * The length of the transformed string is roughly a linear function of
565          * the input string.  It's not exactly linear because some characters
566          * don't have weights at all levels.  When we call strxfrm() we have to
567          * allocate some memory to hold the transformed string.  The
568          * calculations below try to find coefficients 'm' and 'b' for this
569          * locale so that m*x + b equals how much space we need, given the size
570          * of the input string in 'x'.  If we calculate too small, we increase
571          * the size as needed, and call strxfrm() again, but it is better to
572          * get it right the first time to avoid wasted expensive string
573          * transformations. */
574
575         {
576             /* We use the string below to find how long the tranformation of it
577              * is.  Almost all locales are supersets of ASCII, or at least the
578              * ASCII letters.  We use all of them, half upper half lower,
579              * because if we used fewer, we might hit just the ones that are
580              * outliers in a particular locale.  Most of the strings being
581              * collated will contain a preponderance of letters, and even if
582              * they are above-ASCII, they are likely to have the same number of
583              * weight levels as the ASCII ones.  It turns out that digits tend
584              * to have fewer levels, and some punctuation has more, but those
585              * are relatively sparse in text, and khw believes this gives a
586              * reasonable result, but it could be changed if experience so
587              * dictates. */
588             const char longer[] = "ABCDEFGHIJKLMnopqrstuvwxyz";
589             char * x_longer;        /* Transformed 'longer' */
590             Size_t x_len_longer;    /* Length of 'x_longer' */
591
592             char * x_shorter;   /* We also transform a substring of 'longer' */
593             Size_t x_len_shorter;
594
595             /* _mem_collxfrm() is used get the transformation (though here we
596              * are interested only in its length).  It is used because it has
597              * the intelligence to handle all cases, but to work, it needs some
598              * values of 'm' and 'b' to get it started.  For the purposes of
599              * this calculation we use a very conservative estimate of 'm' and
600              * 'b'.  This assumes a weight can be multiple bytes, enough to
601              * hold any UV on the platform, and there are 5 levels, 4 weight
602              * bytes, and a trailing NUL.  */
603             PL_collxfrm_base = 5;
604             PL_collxfrm_mult = 5 * sizeof(UV);
605
606             /* Find out how long the transformation really is */
607             x_longer = _mem_collxfrm(longer,
608                                      sizeof(longer) - 1,
609                                      &x_len_longer,
610
611                                      /* We avoid converting to UTF-8 in the
612                                       * called function by telling it the
613                                       * string is in UTF-8 if the locale is a
614                                       * UTF-8 one.  Since the string passed
615                                       * here is invariant under UTF-8, we can
616                                       * claim it's UTF-8 even though it isn't.
617                                       * */
618                                      PL_in_utf8_COLLATE_locale);
619             Safefree(x_longer);
620
621             /* Find out how long the transformation of a substring of 'longer'
622              * is.  Together the lengths of these transformations are
623              * sufficient to calculate 'm' and 'b'.  The substring is all of
624              * 'longer' except the first character.  This minimizes the chances
625              * of being swayed by outliers */
626             x_shorter = _mem_collxfrm(longer + 1,
627                                       sizeof(longer) - 2,
628                                       &x_len_shorter,
629                                       PL_in_utf8_COLLATE_locale);
630             Safefree(x_shorter);
631
632             /* If the results are nonsensical for this simple test, the whole
633              * locale definition is suspect.  Mark it so that locale collation
634              * is not active at all for it.  XXX Should we warn? */
635             if (   x_len_shorter == 0
636                 || x_len_longer == 0
637                 || x_len_shorter >= x_len_longer)
638             {
639                 PL_collxfrm_mult = 0;
640                 PL_collxfrm_base = 0;
641             }
642             else {
643                 SSize_t base;       /* Temporary */
644
645                 /* We have both:    m * strlen(longer)  + b = x_len_longer
646                  *                  m * strlen(shorter) + b = x_len_shorter;
647                  * subtracting yields:
648                  *          m * (strlen(longer) - strlen(shorter))
649                  *                             = x_len_longer - x_len_shorter
650                  * But we have set things up so that 'shorter' is 1 byte smaller
651                  * than 'longer'.  Hence:
652                  *          m = x_len_longer - x_len_shorter
653                  *
654                  * But if something went wrong, make sure the multiplier is at
655                  * least 1.
656                  */
657                 if (x_len_longer > x_len_shorter) {
658                     PL_collxfrm_mult = (STRLEN) x_len_longer - x_len_shorter;
659                 }
660                 else {
661                     PL_collxfrm_mult = 1;
662                 }
663
664                 /*     mx + b = len
665                  * so:      b = len - mx
666                  * but in case something has gone wrong, make sure it is
667                  * non-negative */
668                 base = x_len_longer - PL_collxfrm_mult * (sizeof(longer) - 1);
669                 if (base < 0) {
670                     base = 0;
671                 }
672
673                 /* Add 1 for the trailing NUL */
674                 PL_collxfrm_base = base + 1;
675             }
676
677 #ifdef DEBUGGING
678             if (DEBUG_L_TEST || debug_initialization) {
679                 PerlIO_printf(Perl_debug_log,
680                     "%s:%d: ?UTF-8 locale=%d; x_len_shorter=%zu, "
681                     "x_len_longer=%zu,"
682                     " collate multipler=%zu, collate base=%zu\n",
683                     __FILE__, __LINE__,
684                     PL_in_utf8_COLLATE_locale,
685                     x_len_shorter, x_len_longer,
686                     PL_collxfrm_mult, PL_collxfrm_base);
687             }
688 #endif
689         }
690     }
691
692 #else
693     PERL_UNUSED_ARG(newcoll);
694 #endif /* USE_LOCALE_COLLATE */
695 }
696
697 #ifdef WIN32
698
699 char *
700 Perl_my_setlocale(pTHX_ int category, const char* locale)
701 {
702     /* This, for Windows, emulates POSIX setlocale() behavior.  There is no
703      * difference unless the input locale is "", which means on Windows to get
704      * the machine default, which is set via the computer's "Regional and
705      * Language Options" (or its current equivalent).  In POSIX, it instead
706      * means to find the locale from the user's environment.  This routine
707      * looks in the environment, and, if anything is found, uses that instead
708      * of going to the machine default.  If there is no environment override,
709      * the machine default is used, as normal, by calling the real setlocale()
710      * with "".  The POSIX behavior is to use the LC_ALL variable if set;
711      * otherwise to use the particular category's variable if set; otherwise to
712      * use the LANG variable. */
713
714     bool override_LC_ALL = FALSE;
715     char * result;
716
717     if (locale && strEQ(locale, "")) {
718 #   ifdef LC_ALL
719         locale = PerlEnv_getenv("LC_ALL");
720         if (! locale) {
721 #endif
722             switch (category) {
723 #   ifdef LC_ALL
724                 case LC_ALL:
725                     override_LC_ALL = TRUE;
726                     break;  /* We already know its variable isn't set */
727 #   endif
728 #   ifdef USE_LOCALE_TIME
729                 case LC_TIME:
730                     locale = PerlEnv_getenv("LC_TIME");
731                     break;
732 #   endif
733 #   ifdef USE_LOCALE_CTYPE
734                 case LC_CTYPE:
735                     locale = PerlEnv_getenv("LC_CTYPE");
736                     break;
737 #   endif
738 #   ifdef USE_LOCALE_COLLATE
739                 case LC_COLLATE:
740                     locale = PerlEnv_getenv("LC_COLLATE");
741                     break;
742 #   endif
743 #   ifdef USE_LOCALE_MONETARY
744                 case LC_MONETARY:
745                     locale = PerlEnv_getenv("LC_MONETARY");
746                     break;
747 #   endif
748 #   ifdef USE_LOCALE_NUMERIC
749                 case LC_NUMERIC:
750                     locale = PerlEnv_getenv("LC_NUMERIC");
751                     break;
752 #   endif
753 #   ifdef USE_LOCALE_MESSAGES
754                 case LC_MESSAGES:
755                     locale = PerlEnv_getenv("LC_MESSAGES");
756                     break;
757 #   endif
758                 default:
759                     /* This is a category, like PAPER_SIZE that we don't
760                      * know about; and so can't provide a wrapper. */
761                     break;
762             }
763             if (! locale) {
764                 locale = PerlEnv_getenv("LANG");
765                 if (! locale) {
766                     locale = "";
767                 }
768             }
769 #   ifdef LC_ALL
770         }
771 #   endif
772     }
773
774     result = setlocale(category, locale);
775     DEBUG_L(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n", __FILE__, __LINE__,
776                             _setlocale_debug_string(category, locale, result)));
777
778     if (! override_LC_ALL)  {
779         return result;
780     }
781
782     /* Here the input category was LC_ALL, and we have set it to what is in the
783      * LANG variable or the system default if there is no LANG.  But these have
784      * lower priority than the other LC_foo variables, so override it for each
785      * one that is set.  (If they are set to "", it means to use the same thing
786      * we just set LC_ALL to, so can skip) */
787 #   ifdef USE_LOCALE_TIME
788     result = PerlEnv_getenv("LC_TIME");
789     if (result && strNE(result, "")) {
790         setlocale(LC_TIME, result);
791         DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
792                     __FILE__, __LINE__,
793                     _setlocale_debug_string(LC_TIME, result, "not captured")));
794     }
795 #   endif
796 #   ifdef USE_LOCALE_CTYPE
797     result = PerlEnv_getenv("LC_CTYPE");
798     if (result && strNE(result, "")) {
799         setlocale(LC_CTYPE, result);
800         DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
801                     __FILE__, __LINE__,
802                     _setlocale_debug_string(LC_CTYPE, result, "not captured")));
803     }
804 #   endif
805 #   ifdef USE_LOCALE_COLLATE
806     result = PerlEnv_getenv("LC_COLLATE");
807     if (result && strNE(result, "")) {
808         setlocale(LC_COLLATE, result);
809         DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
810                   __FILE__, __LINE__,
811                   _setlocale_debug_string(LC_COLLATE, result, "not captured")));
812     }
813 #   endif
814 #   ifdef USE_LOCALE_MONETARY
815     result = PerlEnv_getenv("LC_MONETARY");
816     if (result && strNE(result, "")) {
817         setlocale(LC_MONETARY, result);
818         DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
819                  __FILE__, __LINE__,
820                  _setlocale_debug_string(LC_MONETARY, result, "not captured")));
821     }
822 #   endif
823 #   ifdef USE_LOCALE_NUMERIC
824     result = PerlEnv_getenv("LC_NUMERIC");
825     if (result && strNE(result, "")) {
826         setlocale(LC_NUMERIC, result);
827         DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
828                  __FILE__, __LINE__,
829                  _setlocale_debug_string(LC_NUMERIC, result, "not captured")));
830     }
831 #   endif
832 #   ifdef USE_LOCALE_MESSAGES
833     result = PerlEnv_getenv("LC_MESSAGES");
834     if (result && strNE(result, "")) {
835         setlocale(LC_MESSAGES, result);
836         DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
837                  __FILE__, __LINE__,
838                  _setlocale_debug_string(LC_MESSAGES, result, "not captured")));
839     }
840 #   endif
841
842     result = setlocale(LC_ALL, NULL);
843     DEBUG_L(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
844                                __FILE__, __LINE__,
845                                _setlocale_debug_string(LC_ALL, NULL, result)));
846
847     return result;
848 }
849
850 #endif
851
852
853 /*
854  * Initialize locale awareness.
855  */
856 int
857 Perl_init_i18nl10n(pTHX_ int printwarn)
858 {
859     /* printwarn is
860      *
861      *    0 if not to output warning when setup locale is bad
862      *    1 if to output warning based on value of PERL_BADLANG
863      *    >1 if to output regardless of PERL_BADLANG
864      *
865      * returns
866      *    1 = set ok or not applicable,
867      *    0 = fallback to a locale of lower priority
868      *   -1 = fallback to all locales failed, not even to the C locale
869      *
870      * Under -DDEBUGGING, if the environment variable PERL_DEBUG_LOCALE_INIT is
871      * set, debugging information is output.
872      *
873      * This looks more complicated than it is, mainly due to the #ifdefs.
874      *
875      * We try to set LC_ALL to the value determined by the environment.  If
876      * there is no LC_ALL on this platform, we try the individual categories we
877      * know about.  If this works, we are done.
878      *
879      * But if it doesn't work, we have to do something else.  We search the
880      * environment variables ourselves instead of relying on the system to do
881      * it.  We look at, in order, LC_ALL, LANG, a system default locale (if we
882      * think there is one), and the ultimate fallback "C".  This is all done in
883      * the same loop as above to avoid duplicating code, but it makes things
884      * more complex.  After the original failure, we add the fallback
885      * possibilities to the list of locales to try, and iterate the loop
886      * through them all until one succeeds.
887      *
888      * On Ultrix, the locale MUST come from the environment, so there is
889      * preliminary code to set it.  I (khw) am not sure that it is necessary,
890      * and that this couldn't be folded into the loop, but barring any real
891      * platforms to test on, it's staying as-is
892      *
893      * A slight complication is that in embedded Perls, the locale may already
894      * be set-up, and we don't want to get it from the normal environment
895      * variables.  This is handled by having a special environment variable
896      * indicate we're in this situation.  We simply set setlocale's 2nd
897      * parameter to be a NULL instead of "".  That indicates to setlocale that
898      * it is not to change anything, but to return the current value,
899      * effectively initializing perl's db to what the locale already is.
900      *
901      * We play the same trick with NULL if a LC_ALL succeeds.  We call
902      * setlocale() on the individual categores with NULL to get their existing
903      * values for our db, instead of trying to change them.
904      * */
905
906     int ok = 1;
907
908 #if defined(USE_LOCALE)
909 #ifdef USE_LOCALE_CTYPE
910     char *curctype   = NULL;
911 #endif /* USE_LOCALE_CTYPE */
912 #ifdef USE_LOCALE_COLLATE
913     char *curcoll    = NULL;
914 #endif /* USE_LOCALE_COLLATE */
915 #ifdef USE_LOCALE_NUMERIC
916     char *curnum     = NULL;
917 #endif /* USE_LOCALE_NUMERIC */
918 #ifdef __GLIBC__
919     const char * const language   = savepv(PerlEnv_getenv("LANGUAGE"));
920 #endif
921
922     /* NULL uses the existing already set up locale */
923     const char * const setlocale_init = (PerlEnv_getenv("PERL_SKIP_LOCALE_INIT"))
924                                         ? NULL
925                                         : "";
926     const char* trial_locales[5];   /* 5 = 1 each for "", LC_ALL, LANG, "", C */
927     unsigned int trial_locales_count;
928     const char * const lc_all     = savepv(PerlEnv_getenv("LC_ALL"));
929     const char * const lang       = savepv(PerlEnv_getenv("LANG"));
930     bool setlocale_failure = FALSE;
931     unsigned int i;
932     char *p;
933
934     /* A later getenv() could zap this, so only use here */
935     const char * const bad_lang_use_once = PerlEnv_getenv("PERL_BADLANG");
936
937     const bool locwarn = (printwarn > 1
938                           || (printwarn
939                               && (! bad_lang_use_once
940                                   || (
941                                     /* disallow with "" or "0" */
942                                     *bad_lang_use_once
943                                     && strNE("0", bad_lang_use_once)))));
944     bool done = FALSE;
945     char * sl_result;   /* return from setlocale() */
946     char * locale_param;
947 #ifdef WIN32
948     /* In some systems you can find out the system default locale
949      * and use that as the fallback locale. */
950 #   define SYSTEM_DEFAULT_LOCALE
951 #endif
952 #ifdef SYSTEM_DEFAULT_LOCALE
953     const char *system_default_locale = NULL;
954 #endif
955
956 #ifdef DEBUGGING
957     DEBUG_INITIALIZATION_set((PerlEnv_getenv("PERL_DEBUG_LOCALE_INIT"))
958                            ? TRUE
959                            : FALSE);
960 #   define DEBUG_LOCALE_INIT(category, locale, result)                      \
961         STMT_START {                                                        \
962                 if (debug_initialization) {                                 \
963                     PerlIO_printf(Perl_debug_log,                           \
964                                   "%s:%d: %s\n",                            \
965                                   __FILE__, __LINE__,                       \
966                                   _setlocale_debug_string(category,         \
967                                                           locale,           \
968                                                           result));         \
969                 }                                                           \
970         } STMT_END
971 #else
972 #   define DEBUG_LOCALE_INIT(a,b,c)
973 #endif
974
975 #ifndef LOCALE_ENVIRON_REQUIRED
976     PERL_UNUSED_VAR(done);
977     PERL_UNUSED_VAR(locale_param);
978 #else
979
980     /*
981      * Ultrix setlocale(..., "") fails if there are no environment
982      * variables from which to get a locale name.
983      */
984
985 #   ifdef LC_ALL
986     if (lang) {
987         sl_result = my_setlocale(LC_ALL, setlocale_init);
988         DEBUG_LOCALE_INIT(LC_ALL, setlocale_init, sl_result);
989         if (sl_result)
990             done = TRUE;
991         else
992             setlocale_failure = TRUE;
993     }
994     if (! setlocale_failure) {
995 #       ifdef USE_LOCALE_CTYPE
996         locale_param = (! done && (lang || PerlEnv_getenv("LC_CTYPE")))
997                        ? setlocale_init
998                        : NULL;
999         curctype = my_setlocale(LC_CTYPE, locale_param);
1000         DEBUG_LOCALE_INIT(LC_CTYPE, locale_param, sl_result);
1001         if (! curctype)
1002             setlocale_failure = TRUE;
1003         else
1004             curctype = savepv(curctype);
1005 #       endif /* USE_LOCALE_CTYPE */
1006 #       ifdef USE_LOCALE_COLLATE
1007         locale_param = (! done && (lang || PerlEnv_getenv("LC_COLLATE")))
1008                        ? setlocale_init
1009                        : NULL;
1010         curcoll = my_setlocale(LC_COLLATE, locale_param);
1011         DEBUG_LOCALE_INIT(LC_COLLATE, locale_param, sl_result);
1012         if (! curcoll)
1013             setlocale_failure = TRUE;
1014         else
1015             curcoll = savepv(curcoll);
1016 #       endif /* USE_LOCALE_COLLATE */
1017 #       ifdef USE_LOCALE_NUMERIC
1018         locale_param = (! done && (lang || PerlEnv_getenv("LC_NUMERIC")))
1019                        ? setlocale_init
1020                        : NULL;
1021         curnum = my_setlocale(LC_NUMERIC, locale_param);
1022         DEBUG_LOCALE_INIT(LC_NUMERIC, locale_param, sl_result);
1023         if (! curnum)
1024             setlocale_failure = TRUE;
1025         else
1026             curnum = savepv(curnum);
1027 #       endif /* USE_LOCALE_NUMERIC */
1028 #       ifdef USE_LOCALE_MESSAGES
1029         locale_param = (! done && (lang || PerlEnv_getenv("LC_MESSAGES")))
1030                        ? setlocale_init
1031                        : NULL;
1032         sl_result = my_setlocale(LC_MESSAGES, locale_param);
1033         DEBUG_LOCALE_INIT(LC_MESSAGES, locale_param, sl_result);
1034         if (! sl_result) {
1035             setlocale_failure = TRUE;
1036         }
1037 #       endif /* USE_LOCALE_MESSAGES */
1038 #       ifdef USE_LOCALE_MONETARY
1039         locale_param = (! done && (lang || PerlEnv_getenv("LC_MONETARY")))
1040                        ? setlocale_init
1041                        : NULL;
1042         sl_result = my_setlocale(LC_MONETARY, locale_param);
1043         DEBUG_LOCALE_INIT(LC_MONETARY, locale_param, sl_result);
1044         if (! sl_result) {
1045             setlocale_failure = TRUE;
1046         }
1047 #       endif /* USE_LOCALE_MONETARY */
1048     }
1049
1050 #   endif /* LC_ALL */
1051
1052 #endif /* !LOCALE_ENVIRON_REQUIRED */
1053
1054     /* We try each locale in the list until we get one that works, or exhaust
1055      * the list.  Normally the loop is executed just once.  But if setting the
1056      * locale fails, inside the loop we add fallback trials to the array and so
1057      * will execute the loop multiple times */
1058     trial_locales[0] = setlocale_init;
1059     trial_locales_count = 1;
1060     for (i= 0; i < trial_locales_count; i++) {
1061         const char * trial_locale = trial_locales[i];
1062
1063         if (i > 0) {
1064
1065             /* XXX This is to preserve old behavior for LOCALE_ENVIRON_REQUIRED
1066              * when i==0, but I (khw) don't think that behavior makes much
1067              * sense */
1068             setlocale_failure = FALSE;
1069
1070 #ifdef SYSTEM_DEFAULT_LOCALE
1071 #  ifdef WIN32
1072             /* On Windows machines, an entry of "" after the 0th means to use
1073              * the system default locale, which we now proceed to get. */
1074             if (strEQ(trial_locale, "")) {
1075                 unsigned int j;
1076
1077                 /* Note that this may change the locale, but we are going to do
1078                  * that anyway just below */
1079                 system_default_locale = setlocale(LC_ALL, "");
1080                 DEBUG_LOCALE_INIT(LC_ALL, "", system_default_locale);
1081
1082                 /* Skip if invalid or it's already on the list of locales to
1083                  * try */
1084                 if (! system_default_locale) {
1085                     goto next_iteration;
1086                 }
1087                 for (j = 0; j < trial_locales_count; j++) {
1088                     if (strEQ(system_default_locale, trial_locales[j])) {
1089                         goto next_iteration;
1090                     }
1091                 }
1092
1093                 trial_locale = system_default_locale;
1094             }
1095 #  endif /* WIN32 */
1096 #endif /* SYSTEM_DEFAULT_LOCALE */
1097         }
1098
1099 #ifdef LC_ALL
1100         sl_result = my_setlocale(LC_ALL, trial_locale);
1101         DEBUG_LOCALE_INIT(LC_ALL, trial_locale, sl_result);
1102         if (! sl_result) {
1103             setlocale_failure = TRUE;
1104         }
1105         else {
1106             /* Since LC_ALL succeeded, it should have changed all the other
1107              * categories it can to its value; so we massage things so that the
1108              * setlocales below just return their category's current values.
1109              * This adequately handles the case in NetBSD where LC_COLLATE may
1110              * not be defined for a locale, and setting it individually will
1111              * fail, whereas setting LC_ALL suceeds, leaving LC_COLLATE set to
1112              * the POSIX locale. */
1113             trial_locale = NULL;
1114         }
1115 #endif /* LC_ALL */
1116
1117         if (!setlocale_failure) {
1118 #ifdef USE_LOCALE_CTYPE
1119             Safefree(curctype);
1120             curctype = my_setlocale(LC_CTYPE, trial_locale);
1121             DEBUG_LOCALE_INIT(LC_CTYPE, trial_locale, curctype);
1122             if (! curctype)
1123                 setlocale_failure = TRUE;
1124             else
1125                 curctype = savepv(curctype);
1126 #endif /* USE_LOCALE_CTYPE */
1127 #ifdef USE_LOCALE_COLLATE
1128             Safefree(curcoll);
1129             curcoll = my_setlocale(LC_COLLATE, trial_locale);
1130             DEBUG_LOCALE_INIT(LC_COLLATE, trial_locale, curcoll);
1131             if (! curcoll)
1132                 setlocale_failure = TRUE;
1133             else
1134                 curcoll = savepv(curcoll);
1135 #endif /* USE_LOCALE_COLLATE */
1136 #ifdef USE_LOCALE_NUMERIC
1137             Safefree(curnum);
1138             curnum = my_setlocale(LC_NUMERIC, trial_locale);
1139             DEBUG_LOCALE_INIT(LC_NUMERIC, trial_locale, curnum);
1140             if (! curnum)
1141                 setlocale_failure = TRUE;
1142             else
1143                 curnum = savepv(curnum);
1144 #endif /* USE_LOCALE_NUMERIC */
1145 #ifdef USE_LOCALE_MESSAGES
1146             sl_result = my_setlocale(LC_MESSAGES, trial_locale);
1147             DEBUG_LOCALE_INIT(LC_MESSAGES, trial_locale, sl_result);
1148             if (! (sl_result))
1149                 setlocale_failure = TRUE;
1150 #endif /* USE_LOCALE_MESSAGES */
1151 #ifdef USE_LOCALE_MONETARY
1152             sl_result = my_setlocale(LC_MONETARY, trial_locale);
1153             DEBUG_LOCALE_INIT(LC_MONETARY, trial_locale, sl_result);
1154             if (! (sl_result))
1155                 setlocale_failure = TRUE;
1156 #endif /* USE_LOCALE_MONETARY */
1157
1158             if (! setlocale_failure) {  /* Success */
1159                 break;
1160             }
1161         }
1162
1163         /* Here, something failed; will need to try a fallback. */
1164         ok = 0;
1165
1166         if (i == 0) {
1167             unsigned int j;
1168
1169             if (locwarn) { /* Output failure info only on the first one */
1170 #ifdef LC_ALL
1171
1172                 PerlIO_printf(Perl_error_log,
1173                 "perl: warning: Setting locale failed.\n");
1174
1175 #else /* !LC_ALL */
1176
1177                 PerlIO_printf(Perl_error_log,
1178                 "perl: warning: Setting locale failed for the categories:\n\t");
1179 #  ifdef USE_LOCALE_CTYPE
1180                 if (! curctype)
1181                     PerlIO_printf(Perl_error_log, "LC_CTYPE ");
1182 #  endif /* USE_LOCALE_CTYPE */
1183 #  ifdef USE_LOCALE_COLLATE
1184                 if (! curcoll)
1185                     PerlIO_printf(Perl_error_log, "LC_COLLATE ");
1186 #  endif /* USE_LOCALE_COLLATE */
1187 #  ifdef USE_LOCALE_NUMERIC
1188                 if (! curnum)
1189                     PerlIO_printf(Perl_error_log, "LC_NUMERIC ");
1190 #  endif /* USE_LOCALE_NUMERIC */
1191                 PerlIO_printf(Perl_error_log, "and possibly others\n");
1192
1193 #endif /* LC_ALL */
1194
1195                 PerlIO_printf(Perl_error_log,
1196                     "perl: warning: Please check that your locale settings:\n");
1197
1198 #ifdef __GLIBC__
1199                 PerlIO_printf(Perl_error_log,
1200                             "\tLANGUAGE = %c%s%c,\n",
1201                             language ? '"' : '(',
1202                             language ? language : "unset",
1203                             language ? '"' : ')');
1204 #endif
1205
1206                 PerlIO_printf(Perl_error_log,
1207                             "\tLC_ALL = %c%s%c,\n",
1208                             lc_all ? '"' : '(',
1209                             lc_all ? lc_all : "unset",
1210                             lc_all ? '"' : ')');
1211
1212 #if defined(USE_ENVIRON_ARRAY)
1213                 {
1214                 char **e;
1215                 for (e = environ; *e; e++) {
1216                     if (strEQs(*e, "LC_")
1217                             && strNEs(*e, "LC_ALL=")
1218                             && (p = strchr(*e, '=')))
1219                         PerlIO_printf(Perl_error_log, "\t%.*s = \"%s\",\n",
1220                                         (int)(p - *e), *e, p + 1);
1221                 }
1222                 }
1223 #else
1224                 PerlIO_printf(Perl_error_log,
1225                             "\t(possibly more locale environment variables)\n");
1226 #endif
1227
1228                 PerlIO_printf(Perl_error_log,
1229                             "\tLANG = %c%s%c\n",
1230                             lang ? '"' : '(',
1231                             lang ? lang : "unset",
1232                             lang ? '"' : ')');
1233
1234                 PerlIO_printf(Perl_error_log,
1235                             "    are supported and installed on your system.\n");
1236             }
1237
1238             /* Calculate what fallback locales to try.  We have avoided this
1239              * until we have to, because failure is quite unlikely.  This will
1240              * usually change the upper bound of the loop we are in.
1241              *
1242              * Since the system's default way of setting the locale has not
1243              * found one that works, We use Perl's defined ordering: LC_ALL,
1244              * LANG, and the C locale.  We don't try the same locale twice, so
1245              * don't add to the list if already there.  (On POSIX systems, the
1246              * LC_ALL element will likely be a repeat of the 0th element "",
1247              * but there's no harm done by doing it explicitly.
1248              *
1249              * Note that this tries the LC_ALL environment variable even on
1250              * systems which have no LC_ALL locale setting.  This may or may
1251              * not have been originally intentional, but there's no real need
1252              * to change the behavior. */
1253             if (lc_all) {
1254                 for (j = 0; j < trial_locales_count; j++) {
1255                     if (strEQ(lc_all, trial_locales[j])) {
1256                         goto done_lc_all;
1257                     }
1258                 }
1259                 trial_locales[trial_locales_count++] = lc_all;
1260             }
1261           done_lc_all:
1262
1263             if (lang) {
1264                 for (j = 0; j < trial_locales_count; j++) {
1265                     if (strEQ(lang, trial_locales[j])) {
1266                         goto done_lang;
1267                     }
1268                 }
1269                 trial_locales[trial_locales_count++] = lang;
1270             }
1271           done_lang:
1272
1273 #if defined(WIN32) && defined(LC_ALL)
1274             /* For Windows, we also try the system default locale before "C".
1275              * (If there exists a Windows without LC_ALL we skip this because
1276              * it gets too complicated.  For those, the "C" is the next
1277              * fallback possibility).  The "" is the same as the 0th element of
1278              * the array, but the code at the loop above knows to treat it
1279              * differently when not the 0th */
1280             trial_locales[trial_locales_count++] = "";
1281 #endif
1282
1283             for (j = 0; j < trial_locales_count; j++) {
1284                 if (strEQ("C", trial_locales[j])) {
1285                     goto done_C;
1286                 }
1287             }
1288             trial_locales[trial_locales_count++] = "C";
1289
1290           done_C: ;
1291         }   /* end of first time through the loop */
1292
1293 #ifdef WIN32
1294       next_iteration: ;
1295 #endif
1296
1297     }   /* end of looping through the trial locales */
1298
1299     if (ok < 1) {   /* If we tried to fallback */
1300         const char* msg;
1301         if (! setlocale_failure) {  /* fallback succeeded */
1302            msg = "Falling back to";
1303         }
1304         else {  /* fallback failed */
1305
1306             /* We dropped off the end of the loop, so have to decrement i to
1307              * get back to the value the last time through */
1308             i--;
1309
1310             ok = -1;
1311             msg = "Failed to fall back to";
1312
1313             /* To continue, we should use whatever values we've got */
1314 #ifdef USE_LOCALE_CTYPE
1315             Safefree(curctype);
1316             curctype = savepv(setlocale(LC_CTYPE, NULL));
1317             DEBUG_LOCALE_INIT(LC_CTYPE, NULL, curctype);
1318 #endif /* USE_LOCALE_CTYPE */
1319 #ifdef USE_LOCALE_COLLATE
1320             Safefree(curcoll);
1321             curcoll = savepv(setlocale(LC_COLLATE, NULL));
1322             DEBUG_LOCALE_INIT(LC_COLLATE, NULL, curcoll);
1323 #endif /* USE_LOCALE_COLLATE */
1324 #ifdef USE_LOCALE_NUMERIC
1325             Safefree(curnum);
1326             curnum = savepv(setlocale(LC_NUMERIC, NULL));
1327             DEBUG_LOCALE_INIT(LC_NUMERIC, NULL, curnum);
1328 #endif /* USE_LOCALE_NUMERIC */
1329         }
1330
1331         if (locwarn) {
1332             const char * description;
1333             const char * name = "";
1334             if (strEQ(trial_locales[i], "C")) {
1335                 description = "the standard locale";
1336                 name = "C";
1337             }
1338 #ifdef SYSTEM_DEFAULT_LOCALE
1339             else if (strEQ(trial_locales[i], "")) {
1340                 description = "the system default locale";
1341                 if (system_default_locale) {
1342                     name = system_default_locale;
1343                 }
1344             }
1345 #endif /* SYSTEM_DEFAULT_LOCALE */
1346             else {
1347                 description = "a fallback locale";
1348                 name = trial_locales[i];
1349             }
1350             if (name && strNE(name, "")) {
1351                 PerlIO_printf(Perl_error_log,
1352                     "perl: warning: %s %s (\"%s\").\n", msg, description, name);
1353             }
1354             else {
1355                 PerlIO_printf(Perl_error_log,
1356                                    "perl: warning: %s %s.\n", msg, description);
1357             }
1358         }
1359     } /* End of tried to fallback */
1360
1361 #ifdef USE_LOCALE_CTYPE
1362     new_ctype(curctype);
1363 #endif /* USE_LOCALE_CTYPE */
1364
1365 #ifdef USE_LOCALE_COLLATE
1366     new_collate(curcoll);
1367 #endif /* USE_LOCALE_COLLATE */
1368
1369 #ifdef USE_LOCALE_NUMERIC
1370     new_numeric(curnum);
1371 #endif /* USE_LOCALE_NUMERIC */
1372
1373 #if defined(USE_PERLIO) && defined(USE_LOCALE_CTYPE)
1374     /* Set PL_utf8locale to TRUE if using PerlIO _and_ the current LC_CTYPE
1375      * locale is UTF-8.  If PL_utf8locale and PL_unicode (set by -C or by
1376      * $ENV{PERL_UNICODE}) are true, perl.c:S_parse_body() will turn on the
1377      * PerlIO :utf8 layer on STDIN, STDOUT, STDERR, _and_ the default open
1378      * discipline.  */
1379     PL_utf8locale = _is_cur_LC_category_utf8(LC_CTYPE);
1380
1381     /* Set PL_unicode to $ENV{PERL_UNICODE} if using PerlIO.
1382        This is an alternative to using the -C command line switch
1383        (the -C if present will override this). */
1384     {
1385          const char *p = PerlEnv_getenv("PERL_UNICODE");
1386          PL_unicode = p ? parse_unicode_opts(&p) : 0;
1387          if (PL_unicode & PERL_UNICODE_UTF8CACHEASSERT_FLAG)
1388              PL_utf8cache = -1;
1389     }
1390 #endif
1391
1392 #ifdef USE_LOCALE_CTYPE
1393     Safefree(curctype);
1394 #endif /* USE_LOCALE_CTYPE */
1395 #ifdef USE_LOCALE_COLLATE
1396     Safefree(curcoll);
1397 #endif /* USE_LOCALE_COLLATE */
1398 #ifdef USE_LOCALE_NUMERIC
1399     Safefree(curnum);
1400 #endif /* USE_LOCALE_NUMERIC */
1401
1402 #ifdef __GLIBC__
1403     Safefree(language);
1404 #endif
1405
1406     Safefree(lc_all);
1407     Safefree(lang);
1408
1409 #else  /* !USE_LOCALE */
1410     PERL_UNUSED_ARG(printwarn);
1411 #endif /* USE_LOCALE */
1412
1413 #ifdef DEBUGGING
1414     /* So won't continue to output stuff */
1415     DEBUG_INITIALIZATION_set(FALSE);
1416 #endif
1417
1418     return ok;
1419 }
1420
1421 #ifdef USE_LOCALE_COLLATE
1422
1423 char *
1424 Perl__mem_collxfrm(pTHX_ const char *input_string,
1425                          STRLEN len,    /* Length of 'input_string' */
1426                          STRLEN *xlen,  /* Set to length of returned string
1427                                            (not including the collation index
1428                                            prefix) */
1429                          bool utf8      /* Is the input in UTF-8? */
1430                    )
1431 {
1432
1433     /* _mem_collxfrm() is a bit like strxfrm() but with two important
1434      * differences. First, it handles embedded NULs. Second, it allocates a bit
1435      * more memory than needed for the transformed data itself.  The real
1436      * transformed data begins at offset COLLXFRM_HDR_LEN.  *xlen is set to
1437      * the length of that, and doesn't include the collation index size.
1438      * Please see sv_collxfrm() to see how this is used. */
1439
1440 #define COLLXFRM_HDR_LEN    sizeof(PL_collation_ix)
1441
1442     char * s = (char *) input_string;
1443     STRLEN s_strlen = strlen(input_string);
1444     char *xbuf = NULL;
1445     STRLEN xAlloc;          /* xalloc is a reserved word in VC */
1446     STRLEN length_in_chars;
1447     bool first_time = TRUE; /* Cleared after first loop iteration */
1448
1449     PERL_ARGS_ASSERT__MEM_COLLXFRM;
1450
1451     /* Must be NUL-terminated */
1452     assert(*(input_string + len) == '\0');
1453
1454     /* If this locale has defective collation, skip */
1455     if (PL_collxfrm_base == 0 && PL_collxfrm_mult == 0) {
1456         DEBUG_L(PerlIO_printf(Perl_debug_log,
1457                       "_mem_collxfrm: locale's collation is defective\n"));
1458         goto bad;
1459     }
1460
1461     /* Replace any embedded NULs with the control that sorts before any others.
1462      * This will give as good as possible results on strings that don't
1463      * otherwise contain that character, but otherwise there may be
1464      * less-than-perfect results with that character and NUL.  This is
1465      * unavoidable unless we replace strxfrm with our own implementation. */
1466     if (s_strlen < len) {
1467         char * e = s + len;
1468         char * sans_nuls;
1469         STRLEN cur_min_char_len;
1470         STRLEN sans_nuls_len;
1471         STRLEN sans_nuls_pos;
1472         int try_non_controls;
1473
1474         /* If we don't know what control character sorts lowest for this
1475          * locale, find it */
1476         if (*PL_strxfrm_min_char == '\0') {
1477             int j;
1478 #ifdef DEBUGGING
1479             U8     cur_min_cp = 1; /* The code point that sorts lowest, so far */
1480 #endif
1481             char * cur_min_x = NULL;    /* And its xfrm, (except it also
1482                                            includes the collation index
1483                                            prefixed. */
1484
1485             DEBUG_Lv(PerlIO_printf(Perl_debug_log, "Looking to replace NUL\n"));
1486
1487             /* Unlikely, but it may be that no control will work to replace
1488              * NUL, in which case we instead look for any character */
1489             for (try_non_controls = 0;
1490                  try_non_controls < 2;
1491                  try_non_controls++)
1492             {
1493                 /* Look through all legal code points (NUL isn't) */
1494                 for (j = 1; j < 256; j++) {
1495                     char * x;       /* j's xfrm plus collation index */
1496                     STRLEN x_len;   /* length of 'x' */
1497                     STRLEN trial_len = 1;
1498
1499                     /* Create a 1 byte string of the current code point, but
1500                      * with room to be 2 bytes */
1501                     char cur_source[] = { (char) j, '\0' , '\0' };
1502
1503                     if (PL_in_utf8_COLLATE_locale) {
1504                         if (! try_non_controls && ! isCNTRL_L1(j)) {
1505                             continue;
1506                         }
1507
1508                         /* If needs to be 2 bytes, find them */
1509                         if (! UVCHR_IS_INVARIANT(j)) {
1510                             char * d = cur_source;
1511                             append_utf8_from_native_byte((U8) j, (U8 **) &d);
1512                             trial_len = 2;
1513                         }
1514                     }
1515                     else if (! try_non_controls && ! isCNTRL_LC(j)) {
1516                         continue;
1517                     }
1518
1519                     /* Then transform it */
1520                     x = _mem_collxfrm(cur_source, trial_len, &x_len,
1521                                       PL_in_utf8_COLLATE_locale);
1522
1523                     /* Ignore any character that didn't successfully transform
1524                      * */
1525                     if (! x) {
1526                         continue;
1527                     }
1528
1529                     /* If this character's transformation is lower than
1530                      * the current lowest, this one becomes the lowest */
1531                     if (   cur_min_x == NULL
1532                         || strLT(x         + COLLXFRM_HDR_LEN,
1533                                  cur_min_x + COLLXFRM_HDR_LEN))
1534                     {
1535                         PL_strxfrm_min_char[0] = cur_source[0];
1536                         PL_strxfrm_min_char[1] = cur_source[1];
1537                         PL_strxfrm_min_char[2] = cur_source[2];
1538                         cur_min_x = x;
1539 #ifdef DEBUGGING
1540                         cur_min_cp = j;
1541 #endif
1542                     }
1543                     else {
1544                         Safefree(x);
1545                     }
1546                 } /* end of loop through all bytes */
1547
1548                 if (cur_min_x) {
1549                     break;
1550                 }
1551
1552                 /* Unlikely, but possible, if there aren't any controls that
1553                  * work in the locale, repeat the loop, looking for any
1554                  * character that works */
1555                 DEBUG_L(PerlIO_printf(Perl_debug_log,
1556                 "_mem_collxfrm: No control worked.  Trying non-controls\n"));
1557             }
1558
1559             if (! cur_min_x) {
1560                 DEBUG_L(PerlIO_printf(Perl_debug_log,
1561                     "_mem_collxfrm: Couldn't find any character to replace"
1562                     " embedded NULs in locale %s with", PL_collation_name));
1563                 goto bad;
1564             }
1565
1566             DEBUG_L(PerlIO_printf(Perl_debug_log,
1567                     "_mem_collxfrm: Replacing embedded NULs in locale %s with "
1568                     "0x%02X\n", PL_collation_name, cur_min_cp));
1569
1570             Safefree(cur_min_x);
1571         }
1572
1573         /* The worst case length for the replaced string would be if every
1574          * character in it is NUL.  Multiply that by the length of each
1575          * replacement, and allow for a trailing NUL */
1576         cur_min_char_len = strlen(PL_strxfrm_min_char);
1577         sans_nuls_len = (len * cur_min_char_len) + 1;
1578         Newx(sans_nuls, sans_nuls_len, char);
1579         *sans_nuls = '\0';
1580         sans_nuls_pos = 0;
1581
1582         /* Replace each NUL with the lowest collating control.  Loop until have
1583          * exhausted all the NULs */
1584         while (s + s_strlen < e) {
1585             sans_nuls_pos = my_strlcat(sans_nuls + sans_nuls_pos,
1586                                        s,
1587                                        sans_nuls_len);
1588
1589             /* Do the actual replacement */
1590             sans_nuls_pos = my_strlcat(sans_nuls + sans_nuls_pos,
1591                                        PL_strxfrm_min_char,
1592                                        sans_nuls_len);
1593
1594             /* Move past the input NUL */
1595             s += s_strlen + 1;
1596             s_strlen = strlen(s);
1597         }
1598
1599         /* And add anything that trails the final NUL */
1600         my_strlcat(sans_nuls + sans_nuls_pos, s, sans_nuls_len);
1601
1602         /* Switch so below we transform this modified string */
1603         s = sans_nuls;
1604         len = strlen(s);
1605     }
1606
1607     /* Make sure the UTF8ness of the string and locale match */
1608     if (utf8 != PL_in_utf8_COLLATE_locale) {
1609         const char * const t = s;   /* Temporary so we can later find where the
1610                                        input was */
1611
1612         /* Here they don't match.  Change the string's to be what the locale is
1613          * expecting */
1614
1615         if (! utf8) { /* locale is UTF-8, but input isn't; upgrade the input */
1616             s = (char *) bytes_to_utf8((const U8 *) s, &len);
1617             utf8 = TRUE;
1618         }
1619         else {   /* locale is not UTF-8; but input is; downgrade the input */
1620
1621             s = (char *) bytes_from_utf8((const U8 *) s, &len, &utf8);
1622
1623             /* If the downgrade was successful we are done, but if the input
1624              * contains things that require UTF-8 to represent, have to do
1625              * damage control ... */
1626             if (UNLIKELY(utf8)) {
1627
1628                 /* What we do is construct a non-UTF-8 string with
1629                  *  1) the characters representable by a single byte converted
1630                  *     to be so (if necessary);
1631                  *  2) and the rest converted to collate the same as the
1632                  *     highest collating representable character.  That makes
1633                  *     them collate at the end.  This is similar to how we
1634                  *     handle embedded NULs, but we use the highest collating
1635                  *     code point instead of the smallest.  Like the NUL case,
1636                  *     this isn't perfect, but is the best we can reasonably
1637                  *     do.  Every above-255 code point will sort the same as
1638                  *     the highest-sorting 0-255 code point.  If that code
1639                  *     point can combine in a sequence with some other code
1640                  *     points for weight calculations, us changing something to
1641                  *     be it can adversely affect the results.  But in most
1642                  *     cases, it should work reasonably.  And note that this is
1643                  *     really an illegal situation: using code points above 255
1644                  *     on a locale where only 0-255 are valid.  If two strings
1645                  *     sort entirely equal, then the sort order for the
1646                  *     above-255 code points will be in code point order. */
1647
1648                 utf8 = FALSE;
1649
1650                 /* If we haven't calculated the code point with the maximum
1651                  * collating order for this locale, do so now */
1652                 if (! PL_strxfrm_max_cp) {
1653                     int j;
1654
1655                     /* The current transformed string that collates the
1656                      * highest (except it also includes the prefixed collation
1657                      * index. */
1658                     char * cur_max_x = NULL;
1659
1660                     /* Look through all legal code points (NUL isn't) */
1661                     for (j = 1; j < 256; j++) {
1662                         char * x;
1663                         STRLEN x_len;
1664
1665                         /* Create a 1-char string of the current code point. */
1666                         char cur_source[] = { (char) j, '\0' };
1667
1668                         /* Then transform it */
1669                         x = _mem_collxfrm(cur_source, 1, &x_len, FALSE);
1670
1671                         /* If something went wrong (which it shouldn't), just
1672                          * ignore this code point */
1673                         if (! x) {
1674                             continue;
1675                         }
1676
1677                         /* If this character's transformation is higher than
1678                          * the current highest, this one becomes the highest */
1679                         if (   cur_max_x == NULL
1680                             || strGT(x         + COLLXFRM_HDR_LEN,
1681                                      cur_max_x + COLLXFRM_HDR_LEN))
1682                         {
1683                             PL_strxfrm_max_cp = j;
1684                             cur_max_x = x;
1685                         }
1686                         else {
1687                             Safefree(x);
1688                         }
1689                     }
1690
1691                     if (! cur_max_x) {
1692                         DEBUG_L(PerlIO_printf(Perl_debug_log,
1693                             "_mem_collxfrm: Couldn't find any character to"
1694                             " replace above-Latin1 chars in locale %s with",
1695                             PL_collation_name));
1696                         goto bad;
1697                     }
1698
1699                     DEBUG_L(PerlIO_printf(Perl_debug_log,
1700                             "_mem_collxfrm: highest 1-byte collating character"
1701                             " in locale %s is 0x%02X\n",
1702                             PL_collation_name,
1703                             PL_strxfrm_max_cp));
1704
1705                     Safefree(cur_max_x);
1706                 }
1707
1708                 /* Here we know which legal code point collates the highest.
1709                  * We are ready to construct the non-UTF-8 string.  The length
1710                  * will be at least 1 byte smaller than the input string
1711                  * (because we changed at least one 2-byte character into a
1712                  * single byte), but that is eaten up by the trailing NUL */
1713                 Newx(s, len, char);
1714
1715                 {
1716                     STRLEN i;
1717                     STRLEN d= 0;
1718
1719                     for (i = 0; i < len; i+= UTF8SKIP(t + i)) {
1720                         U8 cur_char = t[i];
1721                         if (UTF8_IS_INVARIANT(cur_char)) {
1722                             s[d++] = cur_char;
1723                         }
1724                         else if (UTF8_IS_DOWNGRADEABLE_START(cur_char)) {
1725                             s[d++] = EIGHT_BIT_UTF8_TO_NATIVE(cur_char, t[i+1]);
1726                         }
1727                         else {  /* Replace illegal cp with highest collating
1728                                    one */
1729                             s[d++] = PL_strxfrm_max_cp;
1730                         }
1731                     }
1732                     s[d++] = '\0';
1733                     Renew(s, d, char);   /* Free up unused space */
1734                 }
1735             }
1736         }
1737
1738         /* Here, we have constructed a modified version of the input.  It could
1739          * be that we already had a modified copy before we did this version.
1740          * If so, that copy is no longer needed */
1741         if (t != input_string) {
1742             Safefree(t);
1743         }
1744     }
1745
1746     length_in_chars = (utf8)
1747                       ? utf8_length((U8 *) s, (U8 *) s + len)
1748                       : len;
1749
1750     /* The first element in the output is the collation id, used by
1751      * sv_collxfrm(); then comes the space for the transformed string.  The
1752      * equation should give us a good estimate as to how much is needed */
1753     xAlloc = COLLXFRM_HDR_LEN
1754            + PL_collxfrm_base
1755            + (PL_collxfrm_mult * length_in_chars);
1756     Newx(xbuf, xAlloc, char);
1757     if (UNLIKELY(! xbuf)) {
1758         DEBUG_L(PerlIO_printf(Perl_debug_log,
1759                       "_mem_collxfrm: Couldn't malloc %zu bytes\n", xAlloc));
1760         goto bad;
1761     }
1762
1763     /* Store the collation id */
1764     *(U32*)xbuf = PL_collation_ix;
1765
1766     /* Then the transformation of the input.  We loop until successful, or we
1767      * give up */
1768     for (;;) {
1769
1770         *xlen = strxfrm(xbuf + COLLXFRM_HDR_LEN, s, xAlloc - COLLXFRM_HDR_LEN);
1771
1772         /* If the transformed string occupies less space than we told strxfrm()
1773          * was available, it means it successfully transformed the whole
1774          * string. */
1775         if (*xlen < xAlloc - COLLXFRM_HDR_LEN) {
1776
1777             /* Some systems include a trailing NUL in the returned length.
1778              * Ignore it, using a loop in case multiple trailing NULs are
1779              * returned. */
1780             while (   (*xlen) > 0
1781                    && *(xbuf + COLLXFRM_HDR_LEN + (*xlen) - 1) == '\0')
1782             {
1783                 (*xlen)--;
1784             }
1785
1786             /* If the first try didn't get it, it means our prediction was low.
1787              * Modify the coefficients so that we predict a larger value in any
1788              * future transformations */
1789             if (! first_time) {
1790                 STRLEN needed = *xlen + 1;   /* +1 For trailing NUL */
1791                 STRLEN computed_guess = PL_collxfrm_base
1792                                       + (PL_collxfrm_mult * length_in_chars);
1793
1794                 /* On zero-length input, just keep current slope instead of
1795                  * dividing by 0 */
1796                 const STRLEN new_m = (length_in_chars != 0)
1797                                      ? needed / length_in_chars
1798                                      : PL_collxfrm_mult;
1799
1800                 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
1801                     "%s: %d: initial size of %zu bytes for a length "
1802                     "%zu string was insufficient, %zu needed\n",
1803                     __FILE__, __LINE__,
1804                     computed_guess, length_in_chars, needed));
1805
1806                 /* If slope increased, use it, but discard this result for
1807                  * length 1 strings, as we can't be sure that it's a real slope
1808                  * change */
1809                 if (length_in_chars > 1 && new_m  > PL_collxfrm_mult) {
1810 #ifdef DEBUGGING
1811                     STRLEN old_m = PL_collxfrm_mult;
1812                     STRLEN old_b = PL_collxfrm_base;
1813 #endif
1814                     PL_collxfrm_mult = new_m;
1815                     PL_collxfrm_base = 1;   /* +1 For trailing NUL */
1816                     computed_guess = PL_collxfrm_base
1817                                     + (PL_collxfrm_mult * length_in_chars);
1818                     if (computed_guess < needed) {
1819                         PL_collxfrm_base += needed - computed_guess;
1820                     }
1821
1822                     DEBUG_Lv(PerlIO_printf(Perl_debug_log,
1823                         "%s: %d: slope is now %zu; was %zu, base "
1824                         "is now %zu; was %zu\n",
1825                         __FILE__, __LINE__,
1826                         PL_collxfrm_mult, old_m,
1827                         PL_collxfrm_base, old_b));
1828                 }
1829                 else {  /* Slope didn't change, but 'b' did */
1830                     const STRLEN new_b = needed
1831                                         - computed_guess
1832                                         + PL_collxfrm_base;
1833                     DEBUG_Lv(PerlIO_printf(Perl_debug_log,
1834                         "%s: %d: base is now %zu; was %zu\n",
1835                         __FILE__, __LINE__,
1836                         new_b, PL_collxfrm_base));
1837                     PL_collxfrm_base = new_b;
1838                 }
1839             }
1840
1841             break;
1842         }
1843
1844         if (UNLIKELY(*xlen >= PERL_INT_MAX)) {
1845             DEBUG_L(PerlIO_printf(Perl_debug_log,
1846                   "_mem_collxfrm: Needed %zu bytes, max permissible is %u\n",
1847                   *xlen, PERL_INT_MAX));
1848             goto bad;
1849         }
1850
1851         /* A well-behaved strxfrm() returns exactly how much space it needs
1852          * (usually not including the trailing NUL) when it fails due to not
1853          * enough space being provided.  Assume that this is the case unless
1854          * it's been proven otherwise */
1855         if (LIKELY(PL_strxfrm_is_behaved) && first_time) {
1856             xAlloc = *xlen + COLLXFRM_HDR_LEN + 1;
1857         }
1858         else { /* Here, either:
1859                 *  1)  The strxfrm() has previously shown bad behavior; or
1860                 *  2)  It isn't the first time through the loop, which means
1861                 *      that the strxfrm() is now showing bad behavior, because
1862                 *      we gave it what it said was needed in the previous
1863                 *      iteration, and it came back saying it needed still more.
1864                 *      (Many versions of cygwin fit this.  When the buffer size
1865                 *      isn't sufficient, they return the input size instead of
1866                 *      how much is needed.)
1867                 * Increase the buffer size by a fixed percentage and try again.
1868                 * */
1869             xAlloc += (xAlloc / 4) + 1;
1870             PL_strxfrm_is_behaved = FALSE;
1871
1872 #ifdef DEBUGGING
1873             if (DEBUG_Lv_TEST || debug_initialization) {
1874                 PerlIO_printf(Perl_debug_log,
1875                 "_mem_collxfrm required more space than previously calculated"
1876                 " for locale %s, trying again with new guess=%d+%zu\n",
1877                 PL_collation_name, (int) COLLXFRM_HDR_LEN,
1878                 xAlloc - COLLXFRM_HDR_LEN);
1879             }
1880 #endif
1881         }
1882
1883         Renew(xbuf, xAlloc, char);
1884         if (UNLIKELY(! xbuf)) {
1885             DEBUG_L(PerlIO_printf(Perl_debug_log,
1886                       "_mem_collxfrm: Couldn't realloc %zu bytes\n", xAlloc));
1887             goto bad;
1888         }
1889
1890         first_time = FALSE;
1891     }
1892
1893
1894 #ifdef DEBUGGING
1895     if (DEBUG_Lv_TEST || debug_initialization) {
1896         Size_t i;
1897
1898         print_collxfrm_input_and_return(s, s + len, xlen, utf8);
1899         PerlIO_printf(Perl_debug_log, "Its xfrm is:");
1900         for (i = COLLXFRM_HDR_LEN; i < *xlen + COLLXFRM_HDR_LEN; i++) {
1901             PerlIO_printf(Perl_debug_log, " %02x", (U8) xbuf[i]);
1902         }
1903         PerlIO_printf(Perl_debug_log, "\n");
1904     }
1905 #endif
1906
1907     /* Free up unneeded space; retain ehough for trailing NUL */
1908     Renew(xbuf, COLLXFRM_HDR_LEN + *xlen + 1, char);
1909
1910     if (s != input_string) {
1911         Safefree(s);
1912     }
1913
1914     return xbuf;
1915
1916   bad:
1917     Safefree(xbuf);
1918     if (s != input_string) {
1919         Safefree(s);
1920     }
1921     *xlen = 0;
1922 #ifdef DEBUGGING
1923     if (DEBUG_Lv_TEST || debug_initialization) {
1924         print_collxfrm_input_and_return(s, s + len, NULL, utf8);
1925     }
1926 #endif
1927     return NULL;
1928 }
1929
1930 #ifdef DEBUGGING
1931
1932 void
1933 S_print_collxfrm_input_and_return(pTHX_
1934                                   const char * const s,
1935                                   const char * const e,
1936                                   const STRLEN * const xlen,
1937                                   const bool is_utf8)
1938 {
1939     const char * t = s;
1940     bool prev_was_printable = TRUE;
1941     bool first_time = TRUE;
1942
1943     PERL_ARGS_ASSERT_PRINT_COLLXFRM_INPUT_AND_RETURN;
1944
1945     PerlIO_printf(Perl_debug_log, "_mem_collxfrm[%d]: returning ",
1946                                                             PL_collation_ix);
1947     if (xlen) {
1948         PerlIO_printf(Perl_debug_log, "%"UVuf"", (UV) *xlen);
1949     }
1950     else {
1951         PerlIO_printf(Perl_debug_log, "NULL");
1952     }
1953     PerlIO_printf(Perl_debug_log, " for locale '%s', string='",
1954                                                             PL_collation_name);
1955
1956     while (t < e) {
1957         UV cp = (is_utf8)
1958                 ?  utf8_to_uvchr_buf((U8 *) t, e, NULL)
1959                 : * (U8 *) t;
1960         if (isPRINT(cp)) {
1961             if (! prev_was_printable) {
1962                 PerlIO_printf(Perl_debug_log, " ");
1963             }
1964             PerlIO_printf(Perl_debug_log, "%c", (U8) cp);
1965             prev_was_printable = TRUE;
1966         }
1967         else {
1968             if (! first_time) {
1969                 PerlIO_printf(Perl_debug_log, " ");
1970             }
1971             PerlIO_printf(Perl_debug_log, "%02"UVXf"", cp);
1972             prev_was_printable = FALSE;
1973         }
1974         t += (is_utf8) ? UTF8SKIP(t) : 1;
1975         first_time = FALSE;
1976     }
1977
1978     PerlIO_printf(Perl_debug_log, "'\n");
1979 }
1980
1981 #endif   /* #ifdef DEBUGGING */
1982
1983 #endif /* USE_LOCALE_COLLATE */
1984
1985 #ifdef USE_LOCALE
1986
1987 bool
1988 Perl__is_cur_LC_category_utf8(pTHX_ int category)
1989 {
1990     /* Returns TRUE if the current locale for 'category' is UTF-8; FALSE
1991      * otherwise. 'category' may not be LC_ALL.  If the platform doesn't have
1992      * nl_langinfo(), nor MB_CUR_MAX, this employs a heuristic, which hence
1993      * could give the wrong result.  The result will very likely be correct for
1994      * languages that have commonly used non-ASCII characters, but for notably
1995      * English, it comes down to if the locale's name ends in something like
1996      * "UTF-8".  It errs on the side of not being a UTF-8 locale. */
1997
1998     char *save_input_locale = NULL;
1999     STRLEN final_pos;
2000
2001 #ifdef LC_ALL
2002     assert(category != LC_ALL);
2003 #endif
2004
2005     /* First dispose of the trivial cases */
2006     save_input_locale = setlocale(category, NULL);
2007     if (! save_input_locale) {
2008         DEBUG_L(PerlIO_printf(Perl_debug_log,
2009                               "Could not find current locale for category %d\n",
2010                               category));
2011         return FALSE;   /* XXX maybe should croak */
2012     }
2013     save_input_locale = stdize_locale(savepv(save_input_locale));
2014     if (isNAME_C_OR_POSIX(save_input_locale)) {
2015         DEBUG_L(PerlIO_printf(Perl_debug_log,
2016                               "Current locale for category %d is %s\n",
2017                               category, save_input_locale));
2018         Safefree(save_input_locale);
2019         return FALSE;
2020     }
2021
2022 #if defined(USE_LOCALE_CTYPE)    \
2023     && (defined(MB_CUR_MAX) || (defined(HAS_NL_LANGINFO) && defined(CODESET)))
2024
2025     { /* Next try nl_langinfo or MB_CUR_MAX if available */
2026
2027         char *save_ctype_locale = NULL;
2028         bool is_utf8;
2029
2030         if (category != LC_CTYPE) { /* These work only on LC_CTYPE */
2031
2032             /* Get the current LC_CTYPE locale */
2033             save_ctype_locale = setlocale(LC_CTYPE, NULL);
2034             if (! save_ctype_locale) {
2035                 DEBUG_L(PerlIO_printf(Perl_debug_log,
2036                                "Could not find current locale for LC_CTYPE\n"));
2037                 goto cant_use_nllanginfo;
2038             }
2039             save_ctype_locale = stdize_locale(savepv(save_ctype_locale));
2040
2041             /* If LC_CTYPE and the desired category use the same locale, this
2042              * means that finding the value for LC_CTYPE is the same as finding
2043              * the value for the desired category.  Otherwise, switch LC_CTYPE
2044              * to the desired category's locale */
2045             if (strEQ(save_ctype_locale, save_input_locale)) {
2046                 Safefree(save_ctype_locale);
2047                 save_ctype_locale = NULL;
2048             }
2049             else if (! setlocale(LC_CTYPE, save_input_locale)) {
2050                 DEBUG_L(PerlIO_printf(Perl_debug_log,
2051                                     "Could not change LC_CTYPE locale to %s\n",
2052                                     save_input_locale));
2053                 Safefree(save_ctype_locale);
2054                 goto cant_use_nllanginfo;
2055             }
2056         }
2057
2058         DEBUG_L(PerlIO_printf(Perl_debug_log, "Current LC_CTYPE locale=%s\n",
2059                                               save_input_locale));
2060
2061         /* Here the current LC_CTYPE is set to the locale of the category whose
2062          * information is desired.  This means that nl_langinfo() and MB_CUR_MAX
2063          * should give the correct results */
2064
2065 #   if defined(HAS_NL_LANGINFO) && defined(CODESET)
2066         {
2067             char *codeset = nl_langinfo(CODESET);
2068             if (codeset && strNE(codeset, "")) {
2069                 codeset = savepv(codeset);
2070
2071                 /* If we switched LC_CTYPE, switch back */
2072                 if (save_ctype_locale) {
2073                     setlocale(LC_CTYPE, save_ctype_locale);
2074                     Safefree(save_ctype_locale);
2075                 }
2076
2077                 is_utf8 = foldEQ(codeset, STR_WITH_LEN("UTF-8"))
2078                         || foldEQ(codeset, STR_WITH_LEN("UTF8"));
2079
2080                 DEBUG_L(PerlIO_printf(Perl_debug_log,
2081                        "\tnllanginfo returned CODESET '%s'; ?UTF8 locale=%d\n",
2082                                                      codeset,         is_utf8));
2083                 Safefree(codeset);
2084                 Safefree(save_input_locale);
2085                 return is_utf8;
2086             }
2087         }
2088
2089 #   endif
2090 #   ifdef MB_CUR_MAX
2091
2092         /* Here, either we don't have nl_langinfo, or it didn't return a
2093          * codeset.  Try MB_CUR_MAX */
2094
2095         /* Standard UTF-8 needs at least 4 bytes to represent the maximum
2096          * Unicode code point.  Since UTF-8 is the only non-single byte
2097          * encoding we handle, we just say any such encoding is UTF-8, and if
2098          * turns out to be wrong, other things will fail */
2099         is_utf8 = MB_CUR_MAX >= 4;
2100
2101         DEBUG_L(PerlIO_printf(Perl_debug_log,
2102                               "\tMB_CUR_MAX=%d; ?UTF8 locale=%d\n",
2103                                    (int) MB_CUR_MAX,      is_utf8));
2104
2105         Safefree(save_input_locale);
2106
2107 #       ifdef HAS_MBTOWC
2108
2109         /* ... But, most system that have MB_CUR_MAX will also have mbtowc(),
2110          * since they are both in the C99 standard.  We can feed a known byte
2111          * string to the latter function, and check that it gives the expected
2112          * result */
2113         if (is_utf8) {
2114             wchar_t wc;
2115             PERL_UNUSED_RESULT(mbtowc(&wc, NULL, 0));/* Reset any shift state */
2116             errno = 0;
2117             if ((size_t)mbtowc(&wc, HYPHEN_UTF8, strlen(HYPHEN_UTF8))
2118                                                         != strlen(HYPHEN_UTF8)
2119                 || wc != (wchar_t) 0x2010)
2120             {
2121                 is_utf8 = FALSE;
2122                 DEBUG_L(PerlIO_printf(Perl_debug_log, "\thyphen=U+%x\n", (unsigned int)wc));
2123                 DEBUG_L(PerlIO_printf(Perl_debug_log,
2124                         "\treturn from mbtowc=%d; errno=%d; ?UTF8 locale=0\n",
2125                         mbtowc(&wc, HYPHEN_UTF8, strlen(HYPHEN_UTF8)), errno));
2126             }
2127         }
2128 #       endif
2129
2130         /* If we switched LC_CTYPE, switch back */
2131         if (save_ctype_locale) {
2132             setlocale(LC_CTYPE, save_ctype_locale);
2133             Safefree(save_ctype_locale);
2134         }
2135
2136         return is_utf8;
2137 #   endif
2138     }
2139
2140   cant_use_nllanginfo:
2141
2142 #else   /* nl_langinfo should work if available, so don't bother compiling this
2143            fallback code.  The final fallback of looking at the name is
2144            compiled, and will be executed if nl_langinfo fails */
2145
2146     /* nl_langinfo not available or failed somehow.  Next try looking at the
2147      * currency symbol to see if it disambiguates things.  Often that will be
2148      * in the native script, and if the symbol isn't in UTF-8, we know that the
2149      * locale isn't.  If it is non-ASCII UTF-8, we infer that the locale is
2150      * too, as the odds of a non-UTF8 string being valid UTF-8 are quite small
2151      * */
2152
2153 #ifdef HAS_LOCALECONV
2154 #   ifdef USE_LOCALE_MONETARY
2155     {
2156         char *save_monetary_locale = NULL;
2157         bool only_ascii = FALSE;
2158         bool is_utf8 = FALSE;
2159         struct lconv* lc;
2160
2161         /* Like above for LC_CTYPE, we first set LC_MONETARY to the locale of
2162          * the desired category, if it isn't that locale already */
2163
2164         if (category != LC_MONETARY) {
2165
2166             save_monetary_locale = setlocale(LC_MONETARY, NULL);
2167             if (! save_monetary_locale) {
2168                 DEBUG_L(PerlIO_printf(Perl_debug_log,
2169                             "Could not find current locale for LC_MONETARY\n"));
2170                 goto cant_use_monetary;
2171             }
2172             save_monetary_locale = stdize_locale(savepv(save_monetary_locale));
2173
2174             if (strEQ(save_monetary_locale, save_input_locale)) {
2175                 Safefree(save_monetary_locale);
2176                 save_monetary_locale = NULL;
2177             }
2178             else if (! setlocale(LC_MONETARY, save_input_locale)) {
2179                 DEBUG_L(PerlIO_printf(Perl_debug_log,
2180                             "Could not change LC_MONETARY locale to %s\n",
2181                                                         save_input_locale));
2182                 Safefree(save_monetary_locale);
2183                 goto cant_use_monetary;
2184             }
2185         }
2186
2187         /* Here the current LC_MONETARY is set to the locale of the category
2188          * whose information is desired. */
2189
2190         lc = localeconv();
2191         if (! lc
2192             || ! lc->currency_symbol
2193             || is_utf8_invariant_string((U8 *) lc->currency_symbol, 0))
2194         {
2195             DEBUG_L(PerlIO_printf(Perl_debug_log, "Couldn't get currency symbol for %s, or contains only ASCII; can't use for determining if UTF-8 locale\n", save_input_locale));
2196             only_ascii = TRUE;
2197         }
2198         else {
2199             is_utf8 = is_utf8_string((U8 *) lc->currency_symbol, 0);
2200         }
2201
2202         /* If we changed it, restore LC_MONETARY to its original locale */
2203         if (save_monetary_locale) {
2204             setlocale(LC_MONETARY, save_monetary_locale);
2205             Safefree(save_monetary_locale);
2206         }
2207
2208         if (! only_ascii) {
2209
2210             /* It isn't a UTF-8 locale if the symbol is not legal UTF-8;
2211              * otherwise assume the locale is UTF-8 if and only if the symbol
2212              * is non-ascii UTF-8. */
2213             DEBUG_L(PerlIO_printf(Perl_debug_log, "\t?Currency symbol for %s is UTF-8=%d\n",
2214                                     save_input_locale, is_utf8));
2215             Safefree(save_input_locale);
2216             return is_utf8;
2217         }
2218     }
2219   cant_use_monetary:
2220
2221 #   endif /* USE_LOCALE_MONETARY */
2222 #endif /* HAS_LOCALECONV */
2223
2224 #if defined(HAS_STRFTIME) && defined(USE_LOCALE_TIME)
2225
2226 /* Still haven't found a non-ASCII string to disambiguate UTF-8 or not.  Try
2227  * the names of the months and weekdays, timezone, and am/pm indicator */
2228     {
2229         char *save_time_locale = NULL;
2230         int hour = 10;
2231         bool is_dst = FALSE;
2232         int dom = 1;
2233         int month = 0;
2234         int i;
2235         char * formatted_time;
2236
2237
2238         /* Like above for LC_MONETARY, we set LC_TIME to the locale of the
2239          * desired category, if it isn't that locale already */
2240
2241         if (category != LC_TIME) {
2242
2243             save_time_locale = setlocale(LC_TIME, NULL);
2244             if (! save_time_locale) {
2245                 DEBUG_L(PerlIO_printf(Perl_debug_log,
2246                             "Could not find current locale for LC_TIME\n"));
2247                 goto cant_use_time;
2248             }
2249             save_time_locale = stdize_locale(savepv(save_time_locale));
2250
2251             if (strEQ(save_time_locale, save_input_locale)) {
2252                 Safefree(save_time_locale);
2253                 save_time_locale = NULL;
2254             }
2255             else if (! setlocale(LC_TIME, save_input_locale)) {
2256                 DEBUG_L(PerlIO_printf(Perl_debug_log,
2257                             "Could not change LC_TIME locale to %s\n",
2258                                                         save_input_locale));
2259                 Safefree(save_time_locale);
2260                 goto cant_use_time;
2261             }
2262         }
2263
2264         /* Here the current LC_TIME is set to the locale of the category
2265          * whose information is desired.  Look at all the days of the week and
2266          * month names, and the timezone and am/pm indicator for UTF-8 variant
2267          * characters.  The first such a one found will tell us if the locale
2268          * is UTF-8 or not */
2269
2270         for (i = 0; i < 7 + 12; i++) {  /* 7 days; 12 months */
2271             formatted_time = my_strftime("%A %B %Z %p",
2272                                     0, 0, hour, dom, month, 112, 0, 0, is_dst);
2273             if ( ! formatted_time
2274                 || is_utf8_invariant_string((U8 *) formatted_time, 0))
2275             {
2276
2277                 /* Here, we didn't find a non-ASCII.  Try the next time through
2278                  * with the complemented dst and am/pm, and try with the next
2279                  * weekday.  After we have gotten all weekdays, try the next
2280                  * month */
2281                 is_dst = ! is_dst;
2282                 hour = (hour + 12) % 24;
2283                 dom++;
2284                 if (i > 6) {
2285                     month++;
2286                 }
2287                 continue;
2288             }
2289
2290             /* Here, we have a non-ASCII.  Return TRUE is it is valid UTF8;
2291              * false otherwise.  But first, restore LC_TIME to its original
2292              * locale if we changed it */
2293             if (save_time_locale) {
2294                 setlocale(LC_TIME, save_time_locale);
2295                 Safefree(save_time_locale);
2296             }
2297
2298             DEBUG_L(PerlIO_printf(Perl_debug_log, "\t?time-related strings for %s are UTF-8=%d\n",
2299                                 save_input_locale,
2300                                 is_utf8_string((U8 *) formatted_time, 0)));
2301             Safefree(save_input_locale);
2302             return is_utf8_string((U8 *) formatted_time, 0);
2303         }
2304
2305         /* Falling off the end of the loop indicates all the names were just
2306          * ASCII.  Go on to the next test.  If we changed it, restore LC_TIME
2307          * to its original locale */
2308         if (save_time_locale) {
2309             setlocale(LC_TIME, save_time_locale);
2310             Safefree(save_time_locale);
2311         }
2312         DEBUG_L(PerlIO_printf(Perl_debug_log, "All time-related words for %s contain only ASCII; can't use for determining if UTF-8 locale\n", save_input_locale));
2313     }
2314   cant_use_time:
2315
2316 #endif
2317
2318 #if 0 && defined(USE_LOCALE_MESSAGES) && defined(HAS_SYS_ERRLIST)
2319
2320 /* This code is ifdefd out because it was found to not be necessary in testing
2321  * on our dromedary test machine, which has over 700 locales.  There, this
2322  * added no value to looking at the currency symbol and the time strings.  I
2323  * left it in so as to avoid rewriting it if real-world experience indicates
2324  * that dromedary is an outlier.  Essentially, instead of returning abpve if we
2325  * haven't found illegal utf8, we continue on and examine all the strerror()
2326  * messages on the platform for utf8ness.  If all are ASCII, we still don't
2327  * know the answer; but otherwise we have a pretty good indication of the
2328  * utf8ness.  The reason this doesn't help much is that the messages may not
2329  * have been translated into the locale.  The currency symbol and time strings
2330  * are much more likely to have been translated.  */
2331     {
2332         int e;
2333         bool is_utf8 = FALSE;
2334         bool non_ascii = FALSE;
2335         char *save_messages_locale = NULL;
2336         const char * errmsg = NULL;
2337
2338         /* Like above, we set LC_MESSAGES to the locale of the desired
2339          * category, if it isn't that locale already */
2340
2341         if (category != LC_MESSAGES) {
2342
2343             save_messages_locale = setlocale(LC_MESSAGES, NULL);
2344             if (! save_messages_locale) {
2345                 DEBUG_L(PerlIO_printf(Perl_debug_log,
2346                             "Could not find current locale for LC_MESSAGES\n"));
2347                 goto cant_use_messages;
2348             }
2349             save_messages_locale = stdize_locale(savepv(save_messages_locale));
2350
2351             if (strEQ(save_messages_locale, save_input_locale)) {
2352                 Safefree(save_messages_locale);
2353                 save_messages_locale = NULL;
2354             }
2355             else if (! setlocale(LC_MESSAGES, save_input_locale)) {
2356                 DEBUG_L(PerlIO_printf(Perl_debug_log,
2357                             "Could not change LC_MESSAGES locale to %s\n",
2358                                                         save_input_locale));
2359                 Safefree(save_messages_locale);
2360                 goto cant_use_messages;
2361             }
2362         }
2363
2364         /* Here the current LC_MESSAGES is set to the locale of the category
2365          * whose information is desired.  Look through all the messages.  We
2366          * can't use Strerror() here because it may expand to code that
2367          * segfaults in miniperl */
2368
2369         for (e = 0; e <= sys_nerr; e++) {
2370             errno = 0;
2371             errmsg = sys_errlist[e];
2372             if (errno || !errmsg) {
2373                 break;
2374             }
2375             errmsg = savepv(errmsg);
2376             if (! is_utf8_invariant_string((U8 *) errmsg, 0)) {
2377                 non_ascii = TRUE;
2378                 is_utf8 = is_utf8_string((U8 *) errmsg, 0);
2379                 break;
2380             }
2381         }
2382         Safefree(errmsg);
2383
2384         /* And, if we changed it, restore LC_MESSAGES to its original locale */
2385         if (save_messages_locale) {
2386             setlocale(LC_MESSAGES, save_messages_locale);
2387             Safefree(save_messages_locale);
2388         }
2389
2390         if (non_ascii) {
2391
2392             /* Any non-UTF-8 message means not a UTF-8 locale; if all are valid,
2393              * any non-ascii means it is one; otherwise we assume it isn't */
2394             DEBUG_L(PerlIO_printf(Perl_debug_log, "\t?error messages for %s are UTF-8=%d\n",
2395                                 save_input_locale,
2396                                 is_utf8));
2397             Safefree(save_input_locale);
2398             return is_utf8;
2399         }
2400
2401         DEBUG_L(PerlIO_printf(Perl_debug_log, "All error messages for %s contain only ASCII; can't use for determining if UTF-8 locale\n", save_input_locale));
2402     }
2403   cant_use_messages:
2404
2405 #endif
2406
2407 #endif /* the code that is compiled when no nl_langinfo */
2408
2409 #ifndef EBCDIC  /* On os390, even if the name ends with "UTF-8', it isn't a
2410                    UTF-8 locale */
2411     /* As a last resort, look at the locale name to see if it matches
2412      * qr/UTF -?  * 8 /ix, or some other common locale names.  This "name", the
2413      * return of setlocale(), is actually defined to be opaque, so we can't
2414      * really rely on the absence of various substrings in the name to indicate
2415      * its UTF-8ness, but if it has UTF8 in the name, it is extremely likely to
2416      * be a UTF-8 locale.  Similarly for the other common names */
2417
2418     final_pos = strlen(save_input_locale) - 1;
2419     if (final_pos >= 3) {
2420         char *name = save_input_locale;
2421
2422         /* Find next 'U' or 'u' and look from there */
2423         while ((name += strcspn(name, "Uu") + 1)
2424                                             <= save_input_locale + final_pos - 2)
2425         {
2426             if (!isALPHA_FOLD_NE(*name, 't')
2427                 || isALPHA_FOLD_NE(*(name + 1), 'f'))
2428             {
2429                 continue;
2430             }
2431             name += 2;
2432             if (*(name) == '-') {
2433                 if ((name > save_input_locale + final_pos - 1)) {
2434                     break;
2435                 }
2436                 name++;
2437             }
2438             if (*(name) == '8') {
2439                 DEBUG_L(PerlIO_printf(Perl_debug_log,
2440                                       "Locale %s ends with UTF-8 in name\n",
2441                                       save_input_locale));
2442                 Safefree(save_input_locale);
2443                 return TRUE;
2444             }
2445         }
2446         DEBUG_L(PerlIO_printf(Perl_debug_log,
2447                               "Locale %s doesn't end with UTF-8 in name\n",
2448                                 save_input_locale));
2449     }
2450 #endif
2451
2452 #ifdef WIN32
2453     /* http://msdn.microsoft.com/en-us/library/windows/desktop/dd317756.aspx */
2454     if (final_pos >= 4
2455         && *(save_input_locale + final_pos - 0) == '1'
2456         && *(save_input_locale + final_pos - 1) == '0'
2457         && *(save_input_locale + final_pos - 2) == '0'
2458         && *(save_input_locale + final_pos - 3) == '5'
2459         && *(save_input_locale + final_pos - 4) == '6')
2460     {
2461         DEBUG_L(PerlIO_printf(Perl_debug_log,
2462                         "Locale %s ends with 10056 in name, is UTF-8 locale\n",
2463                         save_input_locale));
2464         Safefree(save_input_locale);
2465         return TRUE;
2466     }
2467 #endif
2468
2469     /* Other common encodings are the ISO 8859 series, which aren't UTF-8.  But
2470      * since we are about to return FALSE anyway, there is no point in doing
2471      * this extra work */
2472 #if 0
2473     if (instr(save_input_locale, "8859")) {
2474         DEBUG_L(PerlIO_printf(Perl_debug_log,
2475                              "Locale %s has 8859 in name, not UTF-8 locale\n",
2476                              save_input_locale));
2477         Safefree(save_input_locale);
2478         return FALSE;
2479     }
2480 #endif
2481
2482     DEBUG_L(PerlIO_printf(Perl_debug_log,
2483                           "Assuming locale %s is not a UTF-8 locale\n",
2484                                     save_input_locale));
2485     Safefree(save_input_locale);
2486     return FALSE;
2487 }
2488
2489 #endif
2490
2491
2492 bool
2493 Perl__is_in_locale_category(pTHX_ const bool compiling, const int category)
2494 {
2495     dVAR;
2496     /* Internal function which returns if we are in the scope of a pragma that
2497      * enables the locale category 'category'.  'compiling' should indicate if
2498      * this is during the compilation phase (TRUE) or not (FALSE). */
2499
2500     const COP * const cop = (compiling) ? &PL_compiling : PL_curcop;
2501
2502     SV *categories = cop_hints_fetch_pvs(cop, "locale", 0);
2503     if (! categories || categories == &PL_sv_placeholder) {
2504         return FALSE;
2505     }
2506
2507     /* The pseudo-category 'not_characters' is -1, so just add 1 to each to get
2508      * a valid unsigned */
2509     assert(category >= -1);
2510     return cBOOL(SvUV(categories) & (1U << (category + 1)));
2511 }
2512
2513 char *
2514 Perl_my_strerror(pTHX_ const int errnum)
2515 {
2516     /* Returns a mortalized copy of the text of the error message associated
2517      * with 'errnum'.  It uses the current locale's text unless the platform
2518      * doesn't have the LC_MESSAGES category or we are not being called from
2519      * within the scope of 'use locale'.  In the former case, it uses whatever
2520      * strerror returns; in the latter case it uses the text from the C locale.
2521      *
2522      * The function just calls strerror(), but temporarily switches, if needed,
2523      * to the C locale */
2524
2525     char *errstr;
2526
2527 #ifdef USE_LOCALE_MESSAGES  /* If platform doesn't have messages category, we
2528                                don't do any switching to the C locale; we just
2529                                use whatever strerror() returns */
2530     const bool within_locale_scope = IN_LC(LC_MESSAGES);
2531
2532     dVAR;
2533
2534 #  ifdef USE_THREAD_SAFE_LOCALE
2535     locale_t save_locale;
2536 #  else
2537     char * save_locale;
2538     bool locale_is_C = FALSE;
2539
2540     /* We have a critical section to prevent another thread from changing the
2541      * locale out from under us (or zapping the buffer returned from
2542      * setlocale() ) */
2543     LOCALE_LOCK;
2544
2545 #  endif
2546
2547     if (! within_locale_scope) {
2548         errno = 0;
2549
2550 #  ifdef USE_THREAD_SAFE_LOCALE /* Use the thread-safe locale functions */
2551
2552         save_locale = uselocale(PL_C_locale_obj);
2553         if (! save_locale) {
2554             DEBUG_L(PerlIO_printf(Perl_debug_log,
2555                                   "uselocale failed, errno=%d\n", errno));
2556         }
2557
2558 #  else    /* Not thread-safe build */
2559
2560         save_locale = setlocale(LC_MESSAGES, NULL);
2561         if (! save_locale) {
2562             DEBUG_L(PerlIO_printf(Perl_debug_log,
2563                                   "setlocale failed, errno=%d\n", errno));
2564         }
2565         else {
2566             locale_is_C = isNAME_C_OR_POSIX(save_locale);
2567
2568             /* Switch to the C locale if not already in it */
2569             if (! locale_is_C) {
2570
2571                 /* The setlocale() just below likely will zap 'save_locale', so
2572                  * create a copy.  */
2573                 save_locale = savepv(save_locale);
2574                 setlocale(LC_MESSAGES, "C");
2575             }
2576         }
2577
2578 #  endif
2579
2580     }   /* end of ! within_locale_scope */
2581
2582 #endif
2583
2584     errstr = Strerror(errnum);
2585     if (errstr) {
2586         errstr = savepv(errstr);
2587         SAVEFREEPV(errstr);
2588     }
2589
2590 #ifdef USE_LOCALE_MESSAGES
2591
2592     if (! within_locale_scope) {
2593         errno = 0;
2594
2595 #  ifdef USE_THREAD_SAFE_LOCALE
2596
2597         if (save_locale && ! uselocale(save_locale)) {
2598             DEBUG_L(PerlIO_printf(Perl_debug_log,
2599                           "uselocale restore failed, errno=%d\n", errno));
2600         }
2601     }
2602
2603 #  else
2604
2605         if (save_locale && ! locale_is_C) {
2606             if (! setlocale(LC_MESSAGES, save_locale)) {
2607                 DEBUG_L(PerlIO_printf(Perl_debug_log,
2608                       "setlocale restore failed, errno=%d\n", errno));
2609             }
2610             Safefree(save_locale);
2611         }
2612     }
2613
2614     LOCALE_UNLOCK;
2615
2616 #  endif
2617 #endif
2618
2619     return errstr;
2620 }
2621
2622 /*
2623
2624 =head1 Locale-related functions and macros
2625
2626 =for apidoc sync_locale
2627
2628 Changing the program's locale should be avoided by XS code.  Nevertheless,
2629 certain non-Perl libraries called from XS, such as C<Gtk> do so.  When this
2630 happens, Perl needs to be told that the locale has changed.  Use this function
2631 to do so, before returning to Perl.
2632
2633 =cut
2634 */
2635
2636 void
2637 Perl_sync_locale(pTHX)
2638 {
2639
2640 #ifdef USE_LOCALE_CTYPE
2641     new_ctype(setlocale(LC_CTYPE, NULL));
2642 #endif /* USE_LOCALE_CTYPE */
2643
2644 #ifdef USE_LOCALE_COLLATE
2645     new_collate(setlocale(LC_COLLATE, NULL));
2646 #endif
2647
2648 #ifdef USE_LOCALE_NUMERIC
2649     set_numeric_local();    /* Switch from "C" to underlying LC_NUMERIC */
2650     new_numeric(setlocale(LC_NUMERIC, NULL));
2651 #endif /* USE_LOCALE_NUMERIC */
2652
2653 }
2654
2655 #if defined(DEBUGGING) && defined(USE_LOCALE)
2656
2657 char *
2658 Perl__setlocale_debug_string(const int category,        /* category number,
2659                                                            like LC_ALL */
2660                             const char* const locale,   /* locale name */
2661
2662                             /* return value from setlocale() when attempting to
2663                              * set 'category' to 'locale' */
2664                             const char* const retval)
2665 {
2666     /* Returns a pointer to a NUL-terminated string in static storage with
2667      * added text about the info passed in.  This is not thread safe and will
2668      * be overwritten by the next call, so this should be used just to
2669      * formulate a string to immediately print or savepv() on. */
2670
2671     /* initialise to a non-null value to keep it out of BSS and so keep
2672      * -DPERL_GLOBAL_STRUCT_PRIVATE happy */
2673     static char ret[128] = "x";
2674
2675     my_strlcpy(ret, "setlocale(", sizeof(ret));
2676
2677     switch (category) {
2678         default:
2679             my_snprintf(ret, sizeof(ret), "%s? %d", ret, category);
2680             break;
2681 #   ifdef LC_ALL
2682         case LC_ALL:
2683             my_strlcat(ret, "LC_ALL", sizeof(ret));
2684             break;
2685 #   endif
2686 #   ifdef LC_CTYPE
2687         case LC_CTYPE:
2688             my_strlcat(ret, "LC_CTYPE", sizeof(ret));
2689             break;
2690 #   endif
2691 #   ifdef LC_NUMERIC
2692         case LC_NUMERIC:
2693             my_strlcat(ret, "LC_NUMERIC", sizeof(ret));
2694             break;
2695 #   endif
2696 #   ifdef LC_COLLATE
2697         case LC_COLLATE:
2698             my_strlcat(ret, "LC_COLLATE", sizeof(ret));
2699             break;
2700 #   endif
2701 #   ifdef LC_TIME
2702         case LC_TIME:
2703             my_strlcat(ret, "LC_TIME", sizeof(ret));
2704             break;
2705 #   endif
2706 #   ifdef LC_MONETARY
2707         case LC_MONETARY:
2708             my_strlcat(ret, "LC_MONETARY", sizeof(ret));
2709             break;
2710 #   endif
2711 #   ifdef LC_MESSAGES
2712         case LC_MESSAGES:
2713             my_strlcat(ret, "LC_MESSAGES", sizeof(ret));
2714             break;
2715 #   endif
2716     }
2717
2718     my_strlcat(ret, ", ", sizeof(ret));
2719
2720     if (locale) {
2721         my_strlcat(ret, "\"", sizeof(ret));
2722         my_strlcat(ret, locale, sizeof(ret));
2723         my_strlcat(ret, "\"", sizeof(ret));
2724     }
2725     else {
2726         my_strlcat(ret, "NULL", sizeof(ret));
2727     }
2728
2729     my_strlcat(ret, ") returned ", sizeof(ret));
2730
2731     if (retval) {
2732         my_strlcat(ret, "\"", sizeof(ret));
2733         my_strlcat(ret, retval, sizeof(ret));
2734         my_strlcat(ret, "\"", sizeof(ret));
2735     }
2736     else {
2737         my_strlcat(ret, "NULL", sizeof(ret));
2738     }
2739
2740     assert(strlen(ret) < sizeof(ret));
2741
2742     return ret;
2743 }
2744
2745 #endif
2746
2747
2748 /*
2749  * ex: set ts=8 sts=4 sw=4 et:
2750  */