94084c
commit f5117c6504888fab5423282a4607c552b90fd3f9
94084c
Author: Carlos O'Donell <carlos@redhat.com>
94084c
Date:   Thu Jul 29 22:45:39 2021 -0400
94084c
94084c
    Add 'codepoint_collation' support for LC_COLLATE.
94084c
    
94084c
    Support a new directive 'codepoint_collation' in the LC_COLLATE
94084c
    section of a locale source file. This new directive causes all
94084c
    collation rules to be dropped and instead STRCMP (strcmp or
94084c
    wcscmp) is used for collation of the input character set. This
94084c
    is required to allow for a C.UTF-8 that contains zero collation
94084c
    rules (minimal size) and sorts using code point sorting.
94084c
    
94084c
    To date the only implementation of a locale with zero collation
94084c
    rules is the C/POSIX locale. The C/POSIX locale provides
94084c
    identity tables for _NL_COLLATE_COLLSEQMB and
94084c
    _NL_COLLATE_COLLSEQWC that map to ASCII even though it has zero
94084c
    rules. This has lead to existing fnmatch, regexec, and regcomp
94084c
    implementations that require these tables. It is not correct
94084c
    to use these tables when nrules == 0, but the conservative fix
94084c
    is to provide these tables when nrules == 0. This assures that
94084c
    existing static applications using a new C.UTF-8 locale with
94084c
    'codepoint_collation' at least have functional range expressions
94084c
    with ASCII e.g. [0-9] or [a-z]. Such static applications would
94084c
    not have the fixes to fnmatch, regexec and regcomp that avoid
94084c
    the use of the tables when nrules == 0. Future fixes to fnmatch,
94084c
    regexec, and regcomp would allow range expressions to use the
94084c
    full set of code points for such ranges.
94084c
    
94084c
    Tested on x86_64 and i686 without regression.
94084c
    
94084c
    Reviewed-by: Florian Weimer <fweimer@redhat.com>
94084c
94084c
diff --git a/locale/C-collate-seq.c b/locale/C-collate-seq.c
94084c
new file mode 100644
94084c
index 0000000000000000..4fb82cb8357936b6
94084c
--- /dev/null
94084c
+++ b/locale/C-collate-seq.c
94084c
@@ -0,0 +1,100 @@
94084c
+/* Copyright (C) 1995-2021 Free Software Foundation, Inc.
94084c
+   This file is part of the GNU C Library.
94084c
+
94084c
+   The GNU C Library is free software; you can redistribute it and/or
94084c
+   modify it under the terms of the GNU Lesser General Public
94084c
+   License as published by the Free Software Foundation; either
94084c
+   version 2.1 of the License, or (at your option) any later version.
94084c
+
94084c
+   The GNU C Library is distributed in the hope that it will be useful,
94084c
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
94084c
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
94084c
+   Lesser General Public License for more details.
94084c
+
94084c
+   You should have received a copy of the GNU Lesser General Public
94084c
+   License along with the GNU C Library; if not, see
94084c
+   <https://www.gnu.org/licenses/>.  */
94084c
+
94084c
+#include <stdint.h>
94084c
+
94084c
+static const char collseqmb[] =
94084c
+{
94084c
+  '\x00', '\x01', '\x02', '\x03', '\x04', '\x05', '\x06', '\x07',
94084c
+  '\x08', '\x09', '\x0a', '\x0b', '\x0c', '\x0d', '\x0e', '\x0f',
94084c
+  '\x10', '\x11', '\x12', '\x13', '\x14', '\x15', '\x16', '\x17',
94084c
+  '\x18', '\x19', '\x1a', '\x1b', '\x1c', '\x1d', '\x1e', '\x1f',
94084c
+  '\x20', '\x21', '\x22', '\x23', '\x24', '\x25', '\x26', '\x27',
94084c
+  '\x28', '\x29', '\x2a', '\x2b', '\x2c', '\x2d', '\x2e', '\x2f',
94084c
+  '\x30', '\x31', '\x32', '\x33', '\x34', '\x35', '\x36', '\x37',
94084c
+  '\x38', '\x39', '\x3a', '\x3b', '\x3c', '\x3d', '\x3e', '\x3f',
94084c
+  '\x40', '\x41', '\x42', '\x43', '\x44', '\x45', '\x46', '\x47',
94084c
+  '\x48', '\x49', '\x4a', '\x4b', '\x4c', '\x4d', '\x4e', '\x4f',
94084c
+  '\x50', '\x51', '\x52', '\x53', '\x54', '\x55', '\x56', '\x57',
94084c
+  '\x58', '\x59', '\x5a', '\x5b', '\x5c', '\x5d', '\x5e', '\x5f',
94084c
+  '\x60', '\x61', '\x62', '\x63', '\x64', '\x65', '\x66', '\x67',
94084c
+  '\x68', '\x69', '\x6a', '\x6b', '\x6c', '\x6d', '\x6e', '\x6f',
94084c
+  '\x70', '\x71', '\x72', '\x73', '\x74', '\x75', '\x76', '\x77',
94084c
+  '\x78', '\x79', '\x7a', '\x7b', '\x7c', '\x7d', '\x7e', '\x7f',
94084c
+  '\x80', '\x81', '\x82', '\x83', '\x84', '\x85', '\x86', '\x87',
94084c
+  '\x88', '\x89', '\x8a', '\x8b', '\x8c', '\x8d', '\x8e', '\x8f',
94084c
+  '\x90', '\x91', '\x92', '\x93', '\x94', '\x95', '\x96', '\x97',
94084c
+  '\x98', '\x99', '\x9a', '\x9b', '\x9c', '\x9d', '\x9e', '\x9f',
94084c
+  '\xa0', '\xa1', '\xa2', '\xa3', '\xa4', '\xa5', '\xa6', '\xa7',
94084c
+  '\xa8', '\xa9', '\xaa', '\xab', '\xac', '\xad', '\xae', '\xaf',
94084c
+  '\xb0', '\xb1', '\xb2', '\xb3', '\xb4', '\xb5', '\xb6', '\xb7',
94084c
+  '\xb8', '\xb9', '\xba', '\xbb', '\xbc', '\xbd', '\xbe', '\xbf',
94084c
+  '\xc0', '\xc1', '\xc2', '\xc3', '\xc4', '\xc5', '\xc6', '\xc7',
94084c
+  '\xc8', '\xc9', '\xca', '\xcb', '\xcc', '\xcd', '\xce', '\xcf',
94084c
+  '\xd0', '\xd1', '\xd2', '\xd3', '\xd4', '\xd5', '\xd6', '\xd7',
94084c
+  '\xd8', '\xd9', '\xda', '\xdb', '\xdc', '\xdd', '\xde', '\xdf',
94084c
+  '\xe0', '\xe1', '\xe2', '\xe3', '\xe4', '\xe5', '\xe6', '\xe7',
94084c
+  '\xe8', '\xe9', '\xea', '\xeb', '\xec', '\xed', '\xee', '\xef',
94084c
+  '\xf0', '\xf1', '\xf2', '\xf3', '\xf4', '\xf5', '\xf6', '\xf7',
94084c
+  '\xf8', '\xf9', '\xfa', '\xfb', '\xfc', '\xfd', '\xfe', '\xff'
94084c
+};
94084c
+
94084c
+/* This table must be 256 bytes in size. We index bytes into the
94084c
+   table to find the collation sequence.  */
94084c
+_Static_assert (sizeof (collseqmb) == 256);
94084c
+
94084c
+static const uint32_t collseqwc[] =
94084c
+{
94084c
+  8, 1, 8, 0x0, 0xff,
94084c
+  /* 1st-level table */
94084c
+  6 * sizeof (uint32_t),
94084c
+  /* 2nd-level table */
94084c
+  7 * sizeof (uint32_t),
94084c
+  /* 3rd-level table */
94084c
+  L'\x00', L'\x01', L'\x02', L'\x03', L'\x04', L'\x05', L'\x06', L'\x07',
94084c
+  L'\x08', L'\x09', L'\x0a', L'\x0b', L'\x0c', L'\x0d', L'\x0e', L'\x0f',
94084c
+  L'\x10', L'\x11', L'\x12', L'\x13', L'\x14', L'\x15', L'\x16', L'\x17',
94084c
+  L'\x18', L'\x19', L'\x1a', L'\x1b', L'\x1c', L'\x1d', L'\x1e', L'\x1f',
94084c
+  L'\x20', L'\x21', L'\x22', L'\x23', L'\x24', L'\x25', L'\x26', L'\x27',
94084c
+  L'\x28', L'\x29', L'\x2a', L'\x2b', L'\x2c', L'\x2d', L'\x2e', L'\x2f',
94084c
+  L'\x30', L'\x31', L'\x32', L'\x33', L'\x34', L'\x35', L'\x36', L'\x37',
94084c
+  L'\x38', L'\x39', L'\x3a', L'\x3b', L'\x3c', L'\x3d', L'\x3e', L'\x3f',
94084c
+  L'\x40', L'\x41', L'\x42', L'\x43', L'\x44', L'\x45', L'\x46', L'\x47',
94084c
+  L'\x48', L'\x49', L'\x4a', L'\x4b', L'\x4c', L'\x4d', L'\x4e', L'\x4f',
94084c
+  L'\x50', L'\x51', L'\x52', L'\x53', L'\x54', L'\x55', L'\x56', L'\x57',
94084c
+  L'\x58', L'\x59', L'\x5a', L'\x5b', L'\x5c', L'\x5d', L'\x5e', L'\x5f',
94084c
+  L'\x60', L'\x61', L'\x62', L'\x63', L'\x64', L'\x65', L'\x66', L'\x67',
94084c
+  L'\x68', L'\x69', L'\x6a', L'\x6b', L'\x6c', L'\x6d', L'\x6e', L'\x6f',
94084c
+  L'\x70', L'\x71', L'\x72', L'\x73', L'\x74', L'\x75', L'\x76', L'\x77',
94084c
+  L'\x78', L'\x79', L'\x7a', L'\x7b', L'\x7c', L'\x7d', L'\x7e', L'\x7f',
94084c
+  L'\x80', L'\x81', L'\x82', L'\x83', L'\x84', L'\x85', L'\x86', L'\x87',
94084c
+  L'\x88', L'\x89', L'\x8a', L'\x8b', L'\x8c', L'\x8d', L'\x8e', L'\x8f',
94084c
+  L'\x90', L'\x91', L'\x92', L'\x93', L'\x94', L'\x95', L'\x96', L'\x97',
94084c
+  L'\x98', L'\x99', L'\x9a', L'\x9b', L'\x9c', L'\x9d', L'\x9e', L'\x9f',
94084c
+  L'\xa0', L'\xa1', L'\xa2', L'\xa3', L'\xa4', L'\xa5', L'\xa6', L'\xa7',
94084c
+  L'\xa8', L'\xa9', L'\xaa', L'\xab', L'\xac', L'\xad', L'\xae', L'\xaf',
94084c
+  L'\xb0', L'\xb1', L'\xb2', L'\xb3', L'\xb4', L'\xb5', L'\xb6', L'\xb7',
94084c
+  L'\xb8', L'\xb9', L'\xba', L'\xbb', L'\xbc', L'\xbd', L'\xbe', L'\xbf',
94084c
+  L'\xc0', L'\xc1', L'\xc2', L'\xc3', L'\xc4', L'\xc5', L'\xc6', L'\xc7',
94084c
+  L'\xc8', L'\xc9', L'\xca', L'\xcb', L'\xcc', L'\xcd', L'\xce', L'\xcf',
94084c
+  L'\xd0', L'\xd1', L'\xd2', L'\xd3', L'\xd4', L'\xd5', L'\xd6', L'\xd7',
94084c
+  L'\xd8', L'\xd9', L'\xda', L'\xdb', L'\xdc', L'\xdd', L'\xde', L'\xdf',
94084c
+  L'\xe0', L'\xe1', L'\xe2', L'\xe3', L'\xe4', L'\xe5', L'\xe6', L'\xe7',
94084c
+  L'\xe8', L'\xe9', L'\xea', L'\xeb', L'\xec', L'\xed', L'\xee', L'\xef',
94084c
+  L'\xf0', L'\xf1', L'\xf2', L'\xf3', L'\xf4', L'\xf5', L'\xf6', L'\xf7',
94084c
+  L'\xf8', L'\xf9', L'\xfa', L'\xfb', L'\xfc', L'\xfd', L'\xfe', L'\xff'
94084c
+};
94084c
diff --git a/locale/C-collate.c b/locale/C-collate.c
94084c
index 76d9373683314943..120ce0a40aeb9a0f 100644
94084c
--- a/locale/C-collate.c
94084c
+++ b/locale/C-collate.c
94084c
@@ -20,83 +20,7 @@
94084c
 #include <stdint.h>
94084c
 #include "localeinfo.h"
94084c
 
94084c
-static const char collseqmb[] =
94084c
-{
94084c
-  '\x00', '\x01', '\x02', '\x03', '\x04', '\x05', '\x06', '\x07',
94084c
-  '\x08', '\x09', '\x0a', '\x0b', '\x0c', '\x0d', '\x0e', '\x0f',
94084c
-  '\x10', '\x11', '\x12', '\x13', '\x14', '\x15', '\x16', '\x17',
94084c
-  '\x18', '\x19', '\x1a', '\x1b', '\x1c', '\x1d', '\x1e', '\x1f',
94084c
-  '\x20', '\x21', '\x22', '\x23', '\x24', '\x25', '\x26', '\x27',
94084c
-  '\x28', '\x29', '\x2a', '\x2b', '\x2c', '\x2d', '\x2e', '\x2f',
94084c
-  '\x30', '\x31', '\x32', '\x33', '\x34', '\x35', '\x36', '\x37',
94084c
-  '\x38', '\x39', '\x3a', '\x3b', '\x3c', '\x3d', '\x3e', '\x3f',
94084c
-  '\x40', '\x41', '\x42', '\x43', '\x44', '\x45', '\x46', '\x47',
94084c
-  '\x48', '\x49', '\x4a', '\x4b', '\x4c', '\x4d', '\x4e', '\x4f',
94084c
-  '\x50', '\x51', '\x52', '\x53', '\x54', '\x55', '\x56', '\x57',
94084c
-  '\x58', '\x59', '\x5a', '\x5b', '\x5c', '\x5d', '\x5e', '\x5f',
94084c
-  '\x60', '\x61', '\x62', '\x63', '\x64', '\x65', '\x66', '\x67',
94084c
-  '\x68', '\x69', '\x6a', '\x6b', '\x6c', '\x6d', '\x6e', '\x6f',
94084c
-  '\x70', '\x71', '\x72', '\x73', '\x74', '\x75', '\x76', '\x77',
94084c
-  '\x78', '\x79', '\x7a', '\x7b', '\x7c', '\x7d', '\x7e', '\x7f',
94084c
-  '\x80', '\x81', '\x82', '\x83', '\x84', '\x85', '\x86', '\x87',
94084c
-  '\x88', '\x89', '\x8a', '\x8b', '\x8c', '\x8d', '\x8e', '\x8f',
94084c
-  '\x90', '\x91', '\x92', '\x93', '\x94', '\x95', '\x96', '\x97',
94084c
-  '\x98', '\x99', '\x9a', '\x9b', '\x9c', '\x9d', '\x9e', '\x9f',
94084c
-  '\xa0', '\xa1', '\xa2', '\xa3', '\xa4', '\xa5', '\xa6', '\xa7',
94084c
-  '\xa8', '\xa9', '\xaa', '\xab', '\xac', '\xad', '\xae', '\xaf',
94084c
-  '\xb0', '\xb1', '\xb2', '\xb3', '\xb4', '\xb5', '\xb6', '\xb7',
94084c
-  '\xb8', '\xb9', '\xba', '\xbb', '\xbc', '\xbd', '\xbe', '\xbf',
94084c
-  '\xc0', '\xc1', '\xc2', '\xc3', '\xc4', '\xc5', '\xc6', '\xc7',
94084c
-  '\xc8', '\xc9', '\xca', '\xcb', '\xcc', '\xcd', '\xce', '\xcf',
94084c
-  '\xd0', '\xd1', '\xd2', '\xd3', '\xd4', '\xd5', '\xd6', '\xd7',
94084c
-  '\xd8', '\xd9', '\xda', '\xdb', '\xdc', '\xdd', '\xde', '\xdf',
94084c
-  '\xe0', '\xe1', '\xe2', '\xe3', '\xe4', '\xe5', '\xe6', '\xe7',
94084c
-  '\xe8', '\xe9', '\xea', '\xeb', '\xec', '\xed', '\xee', '\xef',
94084c
-  '\xf0', '\xf1', '\xf2', '\xf3', '\xf4', '\xf5', '\xf6', '\xf7',
94084c
-  '\xf8', '\xf9', '\xfa', '\xfb', '\xfc', '\xfd', '\xfe', '\xff'
94084c
-};
94084c
-
94084c
-static const uint32_t collseqwc[] =
94084c
-{
94084c
-  8, 1, 8, 0x0, 0xff,
94084c
-  /* 1st-level table */
94084c
-  6 * sizeof (uint32_t),
94084c
-  /* 2nd-level table */
94084c
-  7 * sizeof (uint32_t),
94084c
-  /* 3rd-level table */
94084c
-  L'\x00', L'\x01', L'\x02', L'\x03', L'\x04', L'\x05', L'\x06', L'\x07',
94084c
-  L'\x08', L'\x09', L'\x0a', L'\x0b', L'\x0c', L'\x0d', L'\x0e', L'\x0f',
94084c
-  L'\x10', L'\x11', L'\x12', L'\x13', L'\x14', L'\x15', L'\x16', L'\x17',
94084c
-  L'\x18', L'\x19', L'\x1a', L'\x1b', L'\x1c', L'\x1d', L'\x1e', L'\x1f',
94084c
-  L'\x20', L'\x21', L'\x22', L'\x23', L'\x24', L'\x25', L'\x26', L'\x27',
94084c
-  L'\x28', L'\x29', L'\x2a', L'\x2b', L'\x2c', L'\x2d', L'\x2e', L'\x2f',
94084c
-  L'\x30', L'\x31', L'\x32', L'\x33', L'\x34', L'\x35', L'\x36', L'\x37',
94084c
-  L'\x38', L'\x39', L'\x3a', L'\x3b', L'\x3c', L'\x3d', L'\x3e', L'\x3f',
94084c
-  L'\x40', L'\x41', L'\x42', L'\x43', L'\x44', L'\x45', L'\x46', L'\x47',
94084c
-  L'\x48', L'\x49', L'\x4a', L'\x4b', L'\x4c', L'\x4d', L'\x4e', L'\x4f',
94084c
-  L'\x50', L'\x51', L'\x52', L'\x53', L'\x54', L'\x55', L'\x56', L'\x57',
94084c
-  L'\x58', L'\x59', L'\x5a', L'\x5b', L'\x5c', L'\x5d', L'\x5e', L'\x5f',
94084c
-  L'\x60', L'\x61', L'\x62', L'\x63', L'\x64', L'\x65', L'\x66', L'\x67',
94084c
-  L'\x68', L'\x69', L'\x6a', L'\x6b', L'\x6c', L'\x6d', L'\x6e', L'\x6f',
94084c
-  L'\x70', L'\x71', L'\x72', L'\x73', L'\x74', L'\x75', L'\x76', L'\x77',
94084c
-  L'\x78', L'\x79', L'\x7a', L'\x7b', L'\x7c', L'\x7d', L'\x7e', L'\x7f',
94084c
-  L'\x80', L'\x81', L'\x82', L'\x83', L'\x84', L'\x85', L'\x86', L'\x87',
94084c
-  L'\x88', L'\x89', L'\x8a', L'\x8b', L'\x8c', L'\x8d', L'\x8e', L'\x8f',
94084c
-  L'\x90', L'\x91', L'\x92', L'\x93', L'\x94', L'\x95', L'\x96', L'\x97',
94084c
-  L'\x98', L'\x99', L'\x9a', L'\x9b', L'\x9c', L'\x9d', L'\x9e', L'\x9f',
94084c
-  L'\xa0', L'\xa1', L'\xa2', L'\xa3', L'\xa4', L'\xa5', L'\xa6', L'\xa7',
94084c
-  L'\xa8', L'\xa9', L'\xaa', L'\xab', L'\xac', L'\xad', L'\xae', L'\xaf',
94084c
-  L'\xb0', L'\xb1', L'\xb2', L'\xb3', L'\xb4', L'\xb5', L'\xb6', L'\xb7',
94084c
-  L'\xb8', L'\xb9', L'\xba', L'\xbb', L'\xbc', L'\xbd', L'\xbe', L'\xbf',
94084c
-  L'\xc0', L'\xc1', L'\xc2', L'\xc3', L'\xc4', L'\xc5', L'\xc6', L'\xc7',
94084c
-  L'\xc8', L'\xc9', L'\xca', L'\xcb', L'\xcc', L'\xcd', L'\xce', L'\xcf',
94084c
-  L'\xd0', L'\xd1', L'\xd2', L'\xd3', L'\xd4', L'\xd5', L'\xd6', L'\xd7',
94084c
-  L'\xd8', L'\xd9', L'\xda', L'\xdb', L'\xdc', L'\xdd', L'\xde', L'\xdf',
94084c
-  L'\xe0', L'\xe1', L'\xe2', L'\xe3', L'\xe4', L'\xe5', L'\xe6', L'\xe7',
94084c
-  L'\xe8', L'\xe9', L'\xea', L'\xeb', L'\xec', L'\xed', L'\xee', L'\xef',
94084c
-  L'\xf0', L'\xf1', L'\xf2', L'\xf3', L'\xf4', L'\xf5', L'\xf6', L'\xf7',
94084c
-  L'\xf8', L'\xf9', L'\xfa', L'\xfb', L'\xfc', L'\xfd', L'\xfe', L'\xff'
94084c
-};
94084c
+#include "C-collate-seq.c"
94084c
 
94084c
 const struct __locale_data _nl_C_LC_COLLATE attribute_hidden =
94084c
 {
94084c
diff --git a/locale/programs/ld-collate.c b/locale/programs/ld-collate.c
94084c
index b6406b775d3a81ad..0f314e40c4305dea 100644
94084c
--- a/locale/programs/ld-collate.c
94084c
+++ b/locale/programs/ld-collate.c
94084c
@@ -24,6 +24,7 @@
94084c
 #include <wchar.h>
94084c
 #include <stdint.h>
94084c
 #include <sys/param.h>
94084c
+#include <array_length.h>
94084c
 
94084c
 #include "localedef.h"
94084c
 #include "charmap.h"
94084c
@@ -195,6 +196,9 @@ struct name_list
94084c
 /* The real definition of the struct for the LC_COLLATE locale.  */
94084c
 struct locale_collate_t
94084c
 {
94084c
+  /* Does the locale use code points to compare the encoding?  */
94084c
+  bool codepoint_collation;
94084c
+
94084c
   int col_weight_max;
94084c
   int cur_weight_max;
94084c
 
94084c
@@ -1510,6 +1514,7 @@ collate_startup (struct linereader *ldfile, struct localedef_t *locale,
94084c
 	  obstack_init (&collate->mempool);
94084c
 
94084c
 	  collate->col_weight_max = -1;
94084c
+	  collate->codepoint_collation = false;
94084c
 	}
94084c
       else
94084c
 	/* Reuse the copy_locale's data structures.  */
94084c
@@ -1568,6 +1573,10 @@ collate_finish (struct localedef_t *locale, const struct charmap_t *charmap)
94084c
       return;
94084c
     }
94084c
 
94084c
+  /* No data required.  */
94084c
+  if (collate->codepoint_collation)
94084c
+    return;
94084c
+
94084c
   /* If this assertion is hit change the type in `element_t'.  */
94084c
   assert (nrules <= sizeof (runp->used_in_level) * 8);
94084c
 
94084c
@@ -2092,6 +2101,10 @@ add_to_tablewc (uint32_t ch, struct element_t *runp)
94084c
     }
94084c
 }
94084c
 
94084c
+/* Include the C locale identity tables for _NL_COLLATE_COLLSEQMB and
94084c
+   _NL_COLLATE_COLLSEQWC.  */
94084c
+#include "C-collate-seq.c"
94084c
+
94084c
 void
94084c
 collate_output (struct localedef_t *locale, const struct charmap_t *charmap,
94084c
 		const char *output_path)
94084c
@@ -2115,7 +2128,7 @@ collate_output (struct localedef_t *locale, const struct charmap_t *charmap,
94084c
   add_locale_uint32 (&file, nrules);
94084c
 
94084c
   /* If we have no LC_COLLATE data emit only the number of rules as zero.  */
94084c
-  if (collate == NULL)
94084c
+  if (collate == NULL || collate->codepoint_collation)
94084c
     {
94084c
       size_t idx;
94084c
       for (idx = 1; idx < nelems; idx++)
94084c
@@ -2123,6 +2136,17 @@ collate_output (struct localedef_t *locale, const struct charmap_t *charmap,
94084c
 	  /* The words have to be handled specially.  */
94084c
 	  if (idx == _NL_ITEM_INDEX (_NL_COLLATE_SYMB_HASH_SIZEMB))
94084c
 	    add_locale_uint32 (&file, 0);
94084c
+	  else if (idx == _NL_ITEM_INDEX (_NL_COLLATE_CODESET)
94084c
+		   && collate != NULL)
94084c
+	    /* A valid LC_COLLATE must have a code set name.  */
94084c
+	    add_locale_string (&file, charmap->code_set_name);
94084c
+	  else if (idx == _NL_ITEM_INDEX (_NL_COLLATE_COLLSEQMB)
94084c
+		   && collate != NULL)
94084c
+	    add_locale_raw_data (&file, collseqmb, sizeof (collseqmb));
94084c
+	  else if (idx == _NL_ITEM_INDEX (_NL_COLLATE_COLLSEQWC)
94084c
+		   && collate != NULL)
94084c
+	    add_locale_uint32_array (&file, collseqwc,
94084c
+				     array_length (collseqwc));
94084c
 	  else
94084c
 	    add_locale_empty (&file;;
94084c
 	}
94084c
@@ -2672,6 +2696,10 @@ collate_read (struct linereader *ldfile, struct localedef_t *result,
94084c
 
94084c
       switch (nowtok)
94084c
 	{
94084c
+	case tok_codepoint_collation:
94084c
+	  collate->codepoint_collation = true;
94084c
+	  break;
94084c
+
94084c
 	case tok_copy:
94084c
 	  /* Allow copying other locales.  */
94084c
 	  now = lr_token (ldfile, charmap, result, NULL, verbose);
94084c
@@ -3742,9 +3770,11 @@ error while adding equivalent collating symbol"));
94084c
 	  /* Next we assume `LC_COLLATE'.  */
94084c
 	  if (!ignore_content)
94084c
 	    {
94084c
-	      if (state == 0 && copy_locale == NULL)
94084c
+	      if (state == 0
94084c
+		  && copy_locale == NULL
94084c
+		  && !collate->codepoint_collation)
94084c
 		/* We must either see a copy statement or have
94084c
-		   ordering values.  */
94084c
+		   ordering values, or codepoint_collation.  */
94084c
 		lr_error (ldfile,
94084c
 			  _("%s: empty category description not allowed"),
94084c
 			  "LC_COLLATE");
94084c
diff --git a/locale/programs/locfile-kw.gperf b/locale/programs/locfile-kw.gperf
94084c
index bcded15ddb4c44bb..2e59eb9ac014134b 100644
94084c
--- a/locale/programs/locfile-kw.gperf
94084c
+++ b/locale/programs/locfile-kw.gperf
94084c
@@ -54,6 +54,7 @@ translit_end,           tok_translit_end,           0
94084c
 translit_ignore,        tok_translit_ignore,        0
94084c
 default_missing,        tok_default_missing,        0
94084c
 LC_COLLATE,             tok_lc_collate,             0
94084c
+codepoint_collation,    tok_codepoint_collation,    0
94084c
 coll_weight_max,        tok_coll_weight_max,        0
94084c
 section-symbol,         tok_section_symbol,         0
94084c
 collating-element,      tok_collating_element,      0
94084c
diff --git a/locale/programs/locfile-kw.h b/locale/programs/locfile-kw.h
94084c
index bc1cb8f0845852ad..fe6335692bd422cd 100644
94084c
--- a/locale/programs/locfile-kw.h
94084c
+++ b/locale/programs/locfile-kw.h
94084c
@@ -54,7 +54,7 @@
94084c
 #line 24 "locfile-kw.gperf"
94084c
 struct keyword_t ;
94084c
 
94084c
-#define TOTAL_KEYWORDS 178
94084c
+#define TOTAL_KEYWORDS 179
94084c
 #define MIN_WORD_LENGTH 3
94084c
 #define MAX_WORD_LENGTH 22
94084c
 #define MIN_HASH_VALUE 3
94084c
@@ -134,92 +134,92 @@ locfile_hash (register const char *str, register size_t len)
94084c
 #line 31 "locfile-kw.gperf"
94084c
       {"END",                    tok_end,                    0},
94084c
       {""}, {""},
94084c
-#line 70 "locfile-kw.gperf"
94084c
+#line 71 "locfile-kw.gperf"
94084c
       {"IGNORE",                 tok_ignore,                 0},
94084c
-#line 129 "locfile-kw.gperf"
94084c
+#line 130 "locfile-kw.gperf"
94084c
       {"LC_TIME",                tok_lc_time,                0},
94084c
 #line 30 "locfile-kw.gperf"
94084c
       {"LC_CTYPE",               tok_lc_ctype,               0},
94084c
       {""},
94084c
-#line 168 "locfile-kw.gperf"
94084c
+#line 169 "locfile-kw.gperf"
94084c
       {"LC_ADDRESS",             tok_lc_address,             0},
94084c
-#line 153 "locfile-kw.gperf"
94084c
+#line 154 "locfile-kw.gperf"
94084c
       {"LC_MESSAGES",            tok_lc_messages,            0},
94084c
-#line 161 "locfile-kw.gperf"
94084c
+#line 162 "locfile-kw.gperf"
94084c
       {"LC_NAME",                tok_lc_name,                0},
94084c
-#line 158 "locfile-kw.gperf"
94084c
+#line 159 "locfile-kw.gperf"
94084c
       {"LC_PAPER",               tok_lc_paper,               0},
94084c
-#line 186 "locfile-kw.gperf"
94084c
+#line 187 "locfile-kw.gperf"
94084c
       {"LC_MEASUREMENT",         tok_lc_measurement,         0},
94084c
 #line 56 "locfile-kw.gperf"
94084c
       {"LC_COLLATE",             tok_lc_collate,             0},
94084c
       {""},
94084c
-#line 188 "locfile-kw.gperf"
94084c
+#line 189 "locfile-kw.gperf"
94084c
       {"LC_IDENTIFICATION",      tok_lc_identification,      0},
94084c
-#line 201 "locfile-kw.gperf"
94084c
+#line 202 "locfile-kw.gperf"
94084c
       {"revision",               tok_revision,               0},
94084c
-#line 69 "locfile-kw.gperf"
94084c
+#line 70 "locfile-kw.gperf"
94084c
       {"UNDEFINED",              tok_undefined,              0},
94084c
-#line 125 "locfile-kw.gperf"
94084c
+#line 126 "locfile-kw.gperf"
94084c
       {"LC_NUMERIC",             tok_lc_numeric,             0},
94084c
-#line 82 "locfile-kw.gperf"
94084c
+#line 83 "locfile-kw.gperf"
94084c
       {"LC_MONETARY",            tok_lc_monetary,            0},
94084c
-#line 181 "locfile-kw.gperf"
94084c
+#line 182 "locfile-kw.gperf"
94084c
       {"LC_TELEPHONE",           tok_lc_telephone,           0},
94084c
       {""}, {""}, {""},
94084c
-#line 75 "locfile-kw.gperf"
94084c
+#line 76 "locfile-kw.gperf"
94084c
       {"define",                 tok_define,                 0},
94084c
-#line 154 "locfile-kw.gperf"
94084c
+#line 155 "locfile-kw.gperf"
94084c
       {"yesexpr",                tok_yesexpr,                0},
94084c
-#line 141 "locfile-kw.gperf"
94084c
+#line 142 "locfile-kw.gperf"
94084c
       {"era_year",               tok_era_year,               0},
94084c
       {""},
94084c
 #line 54 "locfile-kw.gperf"
94084c
       {"translit_ignore",        tok_translit_ignore,        0},
94084c
-#line 156 "locfile-kw.gperf"
94084c
+#line 157 "locfile-kw.gperf"
94084c
       {"yesstr",                 tok_yesstr,                 0},
94084c
       {""},
94084c
-#line 89 "locfile-kw.gperf"
94084c
+#line 90 "locfile-kw.gperf"
94084c
       {"negative_sign",          tok_negative_sign,          0},
94084c
       {""},
94084c
-#line 137 "locfile-kw.gperf"
94084c
+#line 138 "locfile-kw.gperf"
94084c
       {"t_fmt",                  tok_t_fmt,                  0},
94084c
-#line 159 "locfile-kw.gperf"
94084c
+#line 160 "locfile-kw.gperf"
94084c
       {"height",                 tok_height,                 0},
94084c
       {""}, {""},
94084c
 #line 52 "locfile-kw.gperf"
94084c
       {"translit_start",         tok_translit_start,         0},
94084c
-#line 136 "locfile-kw.gperf"
94084c
+#line 137 "locfile-kw.gperf"
94084c
       {"d_fmt",                  tok_d_fmt,                  0},
94084c
       {""},
94084c
 #line 53 "locfile-kw.gperf"
94084c
       {"translit_end",           tok_translit_end,           0},
94084c
-#line 94 "locfile-kw.gperf"
94084c
+#line 95 "locfile-kw.gperf"
94084c
       {"n_cs_precedes",          tok_n_cs_precedes,          0},
94084c
-#line 144 "locfile-kw.gperf"
94084c
+#line 145 "locfile-kw.gperf"
94084c
       {"era_t_fmt",              tok_era_t_fmt,              0},
94084c
 #line 39 "locfile-kw.gperf"
94084c
       {"space",                  tok_space,                  0},
94084c
-#line 72 "locfile-kw.gperf"
94084c
-      {"reorder-end",            tok_reorder_end,            0},
94084c
 #line 73 "locfile-kw.gperf"
94084c
+      {"reorder-end",            tok_reorder_end,            0},
94084c
+#line 74 "locfile-kw.gperf"
94084c
       {"reorder-sections-after", tok_reorder_sections_after, 0},
94084c
       {""},
94084c
-#line 142 "locfile-kw.gperf"
94084c
+#line 143 "locfile-kw.gperf"
94084c
       {"era_d_fmt",              tok_era_d_fmt,              0},
94084c
-#line 189 "locfile-kw.gperf"
94084c
+#line 190 "locfile-kw.gperf"
94084c
       {"title",                  tok_title,                  0},
94084c
       {""}, {""},
94084c
-#line 149 "locfile-kw.gperf"
94084c
+#line 150 "locfile-kw.gperf"
94084c
       {"timezone",               tok_timezone,               0},
94084c
       {""},
94084c
-#line 74 "locfile-kw.gperf"
94084c
+#line 75 "locfile-kw.gperf"
94084c
       {"reorder-sections-end",   tok_reorder_sections_end,   0},
94084c
       {""}, {""}, {""},
94084c
-#line 95 "locfile-kw.gperf"
94084c
+#line 96 "locfile-kw.gperf"
94084c
       {"n_sep_by_space",         tok_n_sep_by_space,         0},
94084c
       {""}, {""},
94084c
-#line 100 "locfile-kw.gperf"
94084c
+#line 101 "locfile-kw.gperf"
94084c
       {"int_n_cs_precedes",      tok_int_n_cs_precedes,      0},
94084c
       {""}, {""}, {""},
94084c
 #line 26 "locfile-kw.gperf"
94084c
@@ -233,147 +233,147 @@ locfile_hash (register const char *str, register size_t len)
94084c
       {"print",                  tok_print,                  0},
94084c
 #line 44 "locfile-kw.gperf"
94084c
       {"xdigit",                 tok_xdigit,                 0},
94084c
-#line 110 "locfile-kw.gperf"
94084c
+#line 111 "locfile-kw.gperf"
94084c
       {"duo_n_cs_precedes",      tok_duo_n_cs_precedes,      0},
94084c
-#line 127 "locfile-kw.gperf"
94084c
+#line 128 "locfile-kw.gperf"
94084c
       {"thousands_sep",          tok_thousands_sep,          0},
94084c
-#line 197 "locfile-kw.gperf"
94084c
+#line 198 "locfile-kw.gperf"
94084c
       {"territory",              tok_territory,              0},
94084c
 #line 36 "locfile-kw.gperf"
94084c
       {"digit",                  tok_digit,                  0},
94084c
       {""}, {""},
94084c
-#line 92 "locfile-kw.gperf"
94084c
+#line 93 "locfile-kw.gperf"
94084c
       {"p_cs_precedes",          tok_p_cs_precedes,          0},
94084c
       {""}, {""},
94084c
-#line 62 "locfile-kw.gperf"
94084c
+#line 63 "locfile-kw.gperf"
94084c
       {"script",                 tok_script,                 0},
94084c
 #line 29 "locfile-kw.gperf"
94084c
       {"include",                tok_include,                0},
94084c
       {""},
94084c
-#line 78 "locfile-kw.gperf"
94084c
+#line 79 "locfile-kw.gperf"
94084c
       {"else",                   tok_else,                   0},
94084c
-#line 184 "locfile-kw.gperf"
94084c
+#line 185 "locfile-kw.gperf"
94084c
       {"int_select",             tok_int_select,             0},
94084c
       {""}, {""}, {""},
94084c
-#line 132 "locfile-kw.gperf"
94084c
+#line 133 "locfile-kw.gperf"
94084c
       {"week",                   tok_week,                   0},
94084c
 #line 33 "locfile-kw.gperf"
94084c
       {"upper",                  tok_upper,                  0},
94084c
       {""}, {""},
94084c
-#line 194 "locfile-kw.gperf"
94084c
+#line 195 "locfile-kw.gperf"
94084c
       {"tel",                    tok_tel,                    0},
94084c
-#line 93 "locfile-kw.gperf"
94084c
+#line 94 "locfile-kw.gperf"
94084c
       {"p_sep_by_space",         tok_p_sep_by_space,         0},
94084c
-#line 160 "locfile-kw.gperf"
94084c
+#line 161 "locfile-kw.gperf"
94084c
       {"width",                  tok_width,                  0},
94084c
       {""},
94084c
-#line 98 "locfile-kw.gperf"
94084c
+#line 99 "locfile-kw.gperf"
94084c
       {"int_p_cs_precedes",      tok_int_p_cs_precedes,      0},
94084c
       {""}, {""},
94084c
 #line 41 "locfile-kw.gperf"
94084c
       {"punct",                  tok_punct,                  0},
94084c
       {""}, {""},
94084c
-#line 101 "locfile-kw.gperf"
94084c
+#line 102 "locfile-kw.gperf"
94084c
       {"int_n_sep_by_space",     tok_int_n_sep_by_space,     0},
94084c
       {""}, {""}, {""},
94084c
-#line 108 "locfile-kw.gperf"
94084c
+#line 109 "locfile-kw.gperf"
94084c
       {"duo_p_cs_precedes",      tok_duo_p_cs_precedes,      0},
94084c
 #line 48 "locfile-kw.gperf"
94084c
       {"charconv",               tok_charconv,               0},
94084c
       {""},
94084c
 #line 47 "locfile-kw.gperf"
94084c
       {"class",                  tok_class,                  0},
94084c
-#line 114 "locfile-kw.gperf"
94084c
-      {"duo_int_n_cs_precedes",  tok_duo_int_n_cs_precedes,  0},
94084c
 #line 115 "locfile-kw.gperf"
94084c
+      {"duo_int_n_cs_precedes",  tok_duo_int_n_cs_precedes,  0},
94084c
+#line 116 "locfile-kw.gperf"
94084c
       {"duo_int_n_sep_by_space", tok_duo_int_n_sep_by_space, 0},
94084c
-#line 111 "locfile-kw.gperf"
94084c
+#line 112 "locfile-kw.gperf"
94084c
       {"duo_n_sep_by_space",     tok_duo_n_sep_by_space,     0},
94084c
-#line 119 "locfile-kw.gperf"
94084c
+#line 120 "locfile-kw.gperf"
94084c
       {"duo_int_n_sign_posn",    tok_duo_int_n_sign_posn,    0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""},
94084c
-#line 58 "locfile-kw.gperf"
94084c
+#line 59 "locfile-kw.gperf"
94084c
       {"section-symbol",         tok_section_symbol,         0},
94084c
-#line 185 "locfile-kw.gperf"
94084c
+#line 186 "locfile-kw.gperf"
94084c
       {"int_prefix",             tok_int_prefix,             0},
94084c
       {""}, {""}, {""}, {""},
94084c
 #line 42 "locfile-kw.gperf"
94084c
       {"graph",                  tok_graph,                  0},
94084c
       {""}, {""},
94084c
-#line 99 "locfile-kw.gperf"
94084c
+#line 100 "locfile-kw.gperf"
94084c
       {"int_p_sep_by_space",     tok_int_p_sep_by_space,     0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
-#line 112 "locfile-kw.gperf"
94084c
-      {"duo_int_p_cs_precedes",  tok_duo_int_p_cs_precedes,  0},
94084c
 #line 113 "locfile-kw.gperf"
94084c
+      {"duo_int_p_cs_precedes",  tok_duo_int_p_cs_precedes,  0},
94084c
+#line 114 "locfile-kw.gperf"
94084c
       {"duo_int_p_sep_by_space", tok_duo_int_p_sep_by_space, 0},
94084c
-#line 109 "locfile-kw.gperf"
94084c
+#line 110 "locfile-kw.gperf"
94084c
       {"duo_p_sep_by_space",     tok_duo_p_sep_by_space,     0},
94084c
-#line 118 "locfile-kw.gperf"
94084c
+#line 119 "locfile-kw.gperf"
94084c
       {"duo_int_p_sign_posn",    tok_duo_int_p_sign_posn,    0},
94084c
-#line 157 "locfile-kw.gperf"
94084c
+#line 158 "locfile-kw.gperf"
94084c
       {"nostr",                  tok_nostr,                  0},
94084c
       {""}, {""},
94084c
-#line 140 "locfile-kw.gperf"
94084c
+#line 141 "locfile-kw.gperf"
94084c
       {"era",                    tok_era,                    0},
94084c
       {""},
94084c
-#line 84 "locfile-kw.gperf"
94084c
+#line 85 "locfile-kw.gperf"
94084c
       {"currency_symbol",        tok_currency_symbol,        0},
94084c
       {""},
94084c
-#line 167 "locfile-kw.gperf"
94084c
+#line 168 "locfile-kw.gperf"
94084c
       {"name_ms",                tok_name_ms,                0},
94084c
-#line 165 "locfile-kw.gperf"
94084c
-      {"name_mrs",               tok_name_mrs,               0},
94084c
 #line 166 "locfile-kw.gperf"
94084c
+      {"name_mrs",               tok_name_mrs,               0},
94084c
+#line 167 "locfile-kw.gperf"
94084c
       {"name_miss",              tok_name_miss,              0},
94084c
-#line 83 "locfile-kw.gperf"
94084c
+#line 84 "locfile-kw.gperf"
94084c
       {"int_curr_symbol",        tok_int_curr_symbol,        0},
94084c
-#line 190 "locfile-kw.gperf"
94084c
+#line 191 "locfile-kw.gperf"
94084c
       {"source",                 tok_source,                 0},
94084c
-#line 164 "locfile-kw.gperf"
94084c
+#line 165 "locfile-kw.gperf"
94084c
       {"name_mr",                tok_name_mr,                0},
94084c
-#line 163 "locfile-kw.gperf"
94084c
+#line 164 "locfile-kw.gperf"
94084c
       {"name_gen",               tok_name_gen,               0},
94084c
-#line 202 "locfile-kw.gperf"
94084c
+#line 203 "locfile-kw.gperf"
94084c
       {"date",                   tok_date,                   0},
94084c
       {""}, {""},
94084c
-#line 191 "locfile-kw.gperf"
94084c
+#line 192 "locfile-kw.gperf"
94084c
       {"address",                tok_address,                0},
94084c
-#line 162 "locfile-kw.gperf"
94084c
+#line 163 "locfile-kw.gperf"
94084c
       {"name_fmt",               tok_name_fmt,               0},
94084c
 #line 32 "locfile-kw.gperf"
94084c
       {"copy",                   tok_copy,                   0},
94084c
-#line 103 "locfile-kw.gperf"
94084c
+#line 104 "locfile-kw.gperf"
94084c
       {"int_n_sign_posn",        tok_int_n_sign_posn,        0},
94084c
       {""}, {""},
94084c
-#line 131 "locfile-kw.gperf"
94084c
+#line 132 "locfile-kw.gperf"
94084c
       {"day",                    tok_day,                    0},
94084c
-#line 105 "locfile-kw.gperf"
94084c
+#line 106 "locfile-kw.gperf"
94084c
       {"duo_currency_symbol",    tok_duo_currency_symbol,    0},
94084c
       {""}, {""}, {""},
94084c
-#line 150 "locfile-kw.gperf"
94084c
+#line 151 "locfile-kw.gperf"
94084c
       {"date_fmt",               tok_date_fmt,               0},
94084c
-#line 64 "locfile-kw.gperf"
94084c
+#line 65 "locfile-kw.gperf"
94084c
       {"order_end",              tok_order_end,              0},
94084c
-#line 117 "locfile-kw.gperf"
94084c
+#line 118 "locfile-kw.gperf"
94084c
       {"duo_n_sign_posn",        tok_duo_n_sign_posn,        0},
94084c
       {""},
94084c
-#line 170 "locfile-kw.gperf"
94084c
+#line 171 "locfile-kw.gperf"
94084c
       {"country_name",           tok_country_name,           0},
94084c
-#line 71 "locfile-kw.gperf"
94084c
+#line 72 "locfile-kw.gperf"
94084c
       {"reorder-after",          tok_reorder_after,          0},
94084c
       {""}, {""},
94084c
-#line 155 "locfile-kw.gperf"
94084c
+#line 156 "locfile-kw.gperf"
94084c
       {"noexpr",                 tok_noexpr,                 0},
94084c
 #line 50 "locfile-kw.gperf"
94084c
       {"tolower",                tok_tolower,                0},
94084c
-#line 198 "locfile-kw.gperf"
94084c
+#line 199 "locfile-kw.gperf"
94084c
       {"audience",               tok_audience,               0},
94084c
       {""}, {""}, {""},
94084c
 #line 49 "locfile-kw.gperf"
94084c
       {"toupper",                tok_toupper,                0},
94084c
-#line 68 "locfile-kw.gperf"
94084c
+#line 69 "locfile-kw.gperf"
94084c
       {"position",               tok_position,               0},
94084c
       {""},
94084c
 #line 40 "locfile-kw.gperf"
94084c
@@ -381,196 +381,197 @@ locfile_hash (register const char *str, register size_t len)
94084c
       {""},
94084c
 #line 27 "locfile-kw.gperf"
94084c
       {"comment_char",           tok_comment_char,           0},
94084c
-#line 88 "locfile-kw.gperf"
94084c
+#line 89 "locfile-kw.gperf"
94084c
       {"positive_sign",          tok_positive_sign,          0},
94084c
       {""}, {""}, {""}, {""},
94084c
-#line 61 "locfile-kw.gperf"
94084c
+#line 62 "locfile-kw.gperf"
94084c
       {"symbol-equivalence",     tok_symbol_equivalence,     0},
94084c
       {""},
94084c
-#line 102 "locfile-kw.gperf"
94084c
+#line 103 "locfile-kw.gperf"
94084c
       {"int_p_sign_posn",        tok_int_p_sign_posn,        0},
94084c
-#line 175 "locfile-kw.gperf"
94084c
+#line 176 "locfile-kw.gperf"
94084c
       {"country_car",            tok_country_car,            0},
94084c
       {""}, {""},
94084c
-#line 104 "locfile-kw.gperf"
94084c
+#line 105 "locfile-kw.gperf"
94084c
       {"duo_int_curr_symbol",    tok_duo_int_curr_symbol,    0},
94084c
       {""}, {""},
94084c
-#line 135 "locfile-kw.gperf"
94084c
+#line 136 "locfile-kw.gperf"
94084c
       {"d_t_fmt",                tok_d_t_fmt,                0},
94084c
       {""}, {""},
94084c
-#line 116 "locfile-kw.gperf"
94084c
+#line 117 "locfile-kw.gperf"
94084c
       {"duo_p_sign_posn",        tok_duo_p_sign_posn,        0},
94084c
-#line 187 "locfile-kw.gperf"
94084c
+#line 188 "locfile-kw.gperf"
94084c
       {"measurement",            tok_measurement,            0},
94084c
-#line 176 "locfile-kw.gperf"
94084c
+#line 177 "locfile-kw.gperf"
94084c
       {"country_isbn",           tok_country_isbn,           0},
94084c
 #line 37 "locfile-kw.gperf"
94084c
       {"outdigit",               tok_outdigit,               0},
94084c
       {""}, {""},
94084c
-#line 143 "locfile-kw.gperf"
94084c
+#line 144 "locfile-kw.gperf"
94084c
       {"era_d_t_fmt",            tok_era_d_t_fmt,            0},
94084c
       {""}, {""}, {""},
94084c
 #line 34 "locfile-kw.gperf"
94084c
       {"lower",                  tok_lower,                  0},
94084c
-#line 183 "locfile-kw.gperf"
94084c
+#line 184 "locfile-kw.gperf"
94084c
       {"tel_dom_fmt",            tok_tel_dom_fmt,            0},
94084c
-#line 171 "locfile-kw.gperf"
94084c
+#line 172 "locfile-kw.gperf"
94084c
       {"country_post",           tok_country_post,           0},
94084c
-#line 148 "locfile-kw.gperf"
94084c
+#line 149 "locfile-kw.gperf"
94084c
       {"cal_direction",          tok_cal_direction,          0},
94084c
-      {""},
94084c
-#line 139 "locfile-kw.gperf"
94084c
+#line 57 "locfile-kw.gperf"
94084c
+      {"codepoint_collation",    tok_codepoint_collation,    0},
94084c
+#line 140 "locfile-kw.gperf"
94084c
       {"t_fmt_ampm",             tok_t_fmt_ampm,             0},
94084c
-#line 91 "locfile-kw.gperf"
94084c
+#line 92 "locfile-kw.gperf"
94084c
       {"frac_digits",            tok_frac_digits,            0},
94084c
       {""}, {""},
94084c
-#line 177 "locfile-kw.gperf"
94084c
+#line 178 "locfile-kw.gperf"
94084c
       {"lang_name",              tok_lang_name,              0},
94084c
-#line 90 "locfile-kw.gperf"
94084c
+#line 91 "locfile-kw.gperf"
94084c
       {"int_frac_digits",        tok_int_frac_digits,        0},
94084c
       {""},
94084c
-#line 121 "locfile-kw.gperf"
94084c
+#line 122 "locfile-kw.gperf"
94084c
       {"uno_valid_to",           tok_uno_valid_to,           0},
94084c
-#line 126 "locfile-kw.gperf"
94084c
+#line 127 "locfile-kw.gperf"
94084c
       {"decimal_point",          tok_decimal_point,          0},
94084c
       {""},
94084c
-#line 133 "locfile-kw.gperf"
94084c
+#line 134 "locfile-kw.gperf"
94084c
       {"abmon",                  tok_abmon,                  0},
94084c
       {""}, {""}, {""}, {""},
94084c
-#line 107 "locfile-kw.gperf"
94084c
+#line 108 "locfile-kw.gperf"
94084c
       {"duo_frac_digits",        tok_duo_frac_digits,        0},
94084c
-#line 182 "locfile-kw.gperf"
94084c
+#line 183 "locfile-kw.gperf"
94084c
       {"tel_int_fmt",            tok_tel_int_fmt,            0},
94084c
-#line 123 "locfile-kw.gperf"
94084c
+#line 124 "locfile-kw.gperf"
94084c
       {"duo_valid_to",           tok_duo_valid_to,           0},
94084c
-#line 146 "locfile-kw.gperf"
94084c
+#line 147 "locfile-kw.gperf"
94084c
       {"first_weekday",          tok_first_weekday,          0},
94084c
       {""},
94084c
-#line 130 "locfile-kw.gperf"
94084c
+#line 131 "locfile-kw.gperf"
94084c
       {"abday",                  tok_abday,                  0},
94084c
       {""},
94084c
-#line 200 "locfile-kw.gperf"
94084c
+#line 201 "locfile-kw.gperf"
94084c
       {"abbreviation",           tok_abbreviation,           0},
94084c
-#line 147 "locfile-kw.gperf"
94084c
+#line 148 "locfile-kw.gperf"
94084c
       {"first_workday",          tok_first_workday,          0},
94084c
       {""}, {""},
94084c
-#line 97 "locfile-kw.gperf"
94084c
+#line 98 "locfile-kw.gperf"
94084c
       {"n_sign_posn",            tok_n_sign_posn,            0},
94084c
       {""}, {""}, {""},
94084c
-#line 145 "locfile-kw.gperf"
94084c
+#line 146 "locfile-kw.gperf"
94084c
       {"alt_digits",             tok_alt_digits,             0},
94084c
       {""}, {""},
94084c
-#line 128 "locfile-kw.gperf"
94084c
+#line 129 "locfile-kw.gperf"
94084c
       {"grouping",               tok_grouping,               0},
94084c
       {""},
94084c
 #line 45 "locfile-kw.gperf"
94084c
       {"blank",                  tok_blank,                  0},
94084c
       {""}, {""},
94084c
-#line 196 "locfile-kw.gperf"
94084c
+#line 197 "locfile-kw.gperf"
94084c
       {"language",               tok_language,               0},
94084c
-#line 120 "locfile-kw.gperf"
94084c
+#line 121 "locfile-kw.gperf"
94084c
       {"uno_valid_from",         tok_uno_valid_from,         0},
94084c
       {""},
94084c
-#line 199 "locfile-kw.gperf"
94084c
+#line 200 "locfile-kw.gperf"
94084c
       {"application",            tok_application,            0},
94084c
       {""},
94084c
-#line 80 "locfile-kw.gperf"
94084c
+#line 81 "locfile-kw.gperf"
94084c
       {"elifndef",               tok_elifndef,               0},
94084c
       {""}, {""}, {""}, {""}, {""},
94084c
-#line 122 "locfile-kw.gperf"
94084c
+#line 123 "locfile-kw.gperf"
94084c
       {"duo_valid_from",         tok_duo_valid_from,         0},
94084c
-#line 57 "locfile-kw.gperf"
94084c
+#line 58 "locfile-kw.gperf"
94084c
       {"coll_weight_max",        tok_coll_weight_max,        0},
94084c
       {""},
94084c
-#line 79 "locfile-kw.gperf"
94084c
+#line 80 "locfile-kw.gperf"
94084c
       {"elifdef",                tok_elifdef,                0},
94084c
-#line 67 "locfile-kw.gperf"
94084c
+#line 68 "locfile-kw.gperf"
94084c
       {"backward",               tok_backward,               0},
94084c
-#line 106 "locfile-kw.gperf"
94084c
+#line 107 "locfile-kw.gperf"
94084c
       {"duo_int_frac_digits",    tok_duo_int_frac_digits,    0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""},
94084c
-#line 96 "locfile-kw.gperf"
94084c
+#line 97 "locfile-kw.gperf"
94084c
       {"p_sign_posn",            tok_p_sign_posn,            0},
94084c
       {""},
94084c
-#line 203 "locfile-kw.gperf"
94084c
+#line 204 "locfile-kw.gperf"
94084c
       {"category",               tok_category,               0},
94084c
       {""}, {""}, {""}, {""},
94084c
-#line 134 "locfile-kw.gperf"
94084c
+#line 135 "locfile-kw.gperf"
94084c
       {"mon",                    tok_mon,                    0},
94084c
       {""},
94084c
-#line 124 "locfile-kw.gperf"
94084c
+#line 125 "locfile-kw.gperf"
94084c
       {"conversion_rate",        tok_conversion_rate,        0},
94084c
       {""}, {""}, {""}, {""}, {""},
94084c
-#line 63 "locfile-kw.gperf"
94084c
+#line 64 "locfile-kw.gperf"
94084c
       {"order_start",            tok_order_start,            0},
94084c
       {""}, {""}, {""}, {""}, {""},
94084c
-#line 178 "locfile-kw.gperf"
94084c
+#line 179 "locfile-kw.gperf"
94084c
       {"lang_ab",                tok_lang_ab,                0},
94084c
-#line 180 "locfile-kw.gperf"
94084c
+#line 181 "locfile-kw.gperf"
94084c
       {"lang_lib",               tok_lang_lib,               0},
94084c
       {""}, {""}, {""},
94084c
-#line 192 "locfile-kw.gperf"
94084c
+#line 193 "locfile-kw.gperf"
94084c
       {"contact",                tok_contact,                0},
94084c
       {""}, {""}, {""},
94084c
-#line 173 "locfile-kw.gperf"
94084c
+#line 174 "locfile-kw.gperf"
94084c
       {"country_ab3",            tok_country_ab3,            0},
94084c
       {""}, {""}, {""},
94084c
-#line 193 "locfile-kw.gperf"
94084c
+#line 194 "locfile-kw.gperf"
94084c
       {"email",                  tok_email,                  0},
94084c
-#line 172 "locfile-kw.gperf"
94084c
+#line 173 "locfile-kw.gperf"
94084c
       {"country_ab2",            tok_country_ab2,            0},
94084c
       {""}, {""}, {""},
94084c
 #line 55 "locfile-kw.gperf"
94084c
       {"default_missing",        tok_default_missing,        0},
94084c
       {""}, {""},
94084c
-#line 195 "locfile-kw.gperf"
94084c
+#line 196 "locfile-kw.gperf"
94084c
       {"fax",                    tok_fax,                    0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
-#line 174 "locfile-kw.gperf"
94084c
+#line 175 "locfile-kw.gperf"
94084c
       {"country_num",            tok_country_num,            0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""},
94084c
 #line 51 "locfile-kw.gperf"
94084c
       {"map",                    tok_map,                    0},
94084c
-#line 65 "locfile-kw.gperf"
94084c
+#line 66 "locfile-kw.gperf"
94084c
       {"from",                   tok_from,                   0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
-#line 86 "locfile-kw.gperf"
94084c
+#line 87 "locfile-kw.gperf"
94084c
       {"mon_thousands_sep",      tok_mon_thousands_sep,      0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""},
94084c
-#line 81 "locfile-kw.gperf"
94084c
+#line 82 "locfile-kw.gperf"
94084c
       {"endif",                  tok_endif,                  0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
-#line 151 "locfile-kw.gperf"
94084c
+#line 152 "locfile-kw.gperf"
94084c
       {"alt_mon",                tok_alt_mon,                0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
-#line 76 "locfile-kw.gperf"
94084c
+#line 77 "locfile-kw.gperf"
94084c
       {"undef",                  tok_undef,                  0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
-#line 59 "locfile-kw.gperf"
94084c
+#line 60 "locfile-kw.gperf"
94084c
       {"collating-element",      tok_collating_element,      0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
-#line 152 "locfile-kw.gperf"
94084c
+#line 153 "locfile-kw.gperf"
94084c
       {"ab_alt_mon",             tok_ab_alt_mon,             0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
-#line 66 "locfile-kw.gperf"
94084c
+#line 67 "locfile-kw.gperf"
94084c
       {"forward",                tok_forward,                0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""},
94084c
-#line 85 "locfile-kw.gperf"
94084c
+#line 86 "locfile-kw.gperf"
94084c
       {"mon_decimal_point",      tok_mon_decimal_point,      0},
94084c
       {""}, {""},
94084c
-#line 169 "locfile-kw.gperf"
94084c
+#line 170 "locfile-kw.gperf"
94084c
       {"postal_fmt",             tok_postal_fmt,             0},
94084c
       {""}, {""}, {""}, {""}, {""},
94084c
-#line 60 "locfile-kw.gperf"
94084c
+#line 61 "locfile-kw.gperf"
94084c
       {"collating-symbol",       tok_collating_symbol,       0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
@@ -583,15 +584,15 @@ locfile_hash (register const char *str, register size_t len)
94084c
 #line 38 "locfile-kw.gperf"
94084c
       {"alnum",                  tok_alnum,                  0},
94084c
       {""},
94084c
-#line 87 "locfile-kw.gperf"
94084c
+#line 88 "locfile-kw.gperf"
94084c
       {"mon_grouping",           tok_mon_grouping,           0},
94084c
       {""},
94084c
-#line 179 "locfile-kw.gperf"
94084c
+#line 180 "locfile-kw.gperf"
94084c
       {"lang_term",              tok_lang_term,              0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
-#line 77 "locfile-kw.gperf"
94084c
+#line 78 "locfile-kw.gperf"
94084c
       {"ifdef",                  tok_ifdef,                  0},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
@@ -599,7 +600,7 @@ locfile_hash (register const char *str, register size_t len)
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
94084c
       {""}, {""}, {""}, {""},
94084c
-#line 138 "locfile-kw.gperf"
94084c
+#line 139 "locfile-kw.gperf"
94084c
       {"am_pm",                  tok_am_pm,                  0}
94084c
     };
94084c
 
94084c
diff --git a/locale/programs/locfile-token.h b/locale/programs/locfile-token.h
94084c
index 414ad3076223e971..f57d594e8d25c06f 100644
94084c
--- a/locale/programs/locfile-token.h
94084c
+++ b/locale/programs/locfile-token.h
94084c
@@ -91,6 +91,7 @@ enum token_t
94084c
   tok_translit_ignore,
94084c
   tok_default_missing,
94084c
   tok_lc_collate,
94084c
+  tok_codepoint_collation,
94084c
   tok_coll_weight_max,
94084c
   tok_section_symbol,
94084c
   tok_collating_element,