]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/locale-util.c
01af759a7dc6a7334a3f7edf880dac8b2a4b6b52
[thirdparty/systemd.git] / src / basic / locale-util.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <errno.h>
4 #include <fcntl.h>
5 #include <ftw.h>
6 #include <langinfo.h>
7 #include <libintl.h>
8 #include <stddef.h>
9 #include <stdint.h>
10 #include <stdlib.h>
11 #include <sys/mman.h>
12 #include <sys/stat.h>
13
14 #include "def.h"
15 #include "dirent-util.h"
16 #include "env-util.h"
17 #include "fd-util.h"
18 #include "hashmap.h"
19 #include "locale-util.h"
20 #include "path-util.h"
21 #include "set.h"
22 #include "string-table.h"
23 #include "string-util.h"
24 #include "strv.h"
25 #include "utf8.h"
26
27 static char *normalize_locale(const char *name) {
28 const char *e;
29
30 /* Locale names are weird: glibc has some magic rules when looking for the charset name on disk: it
31 * lowercases everything, and removes most special chars. This means the official .UTF-8 suffix
32 * becomes .utf8 when looking things up on disk. When enumerating locales, let's do the reverse
33 * operation, and go back to ".UTF-8" which appears to be the more commonly accepted name. We only do
34 * that for UTF-8 however, since it's kinda the only charset that matters. */
35
36 e = endswith(name, ".utf8");
37 if (e) {
38 _cleanup_free_ char *prefix = NULL;
39
40 prefix = strndup(name, e - name);
41 if (!prefix)
42 return NULL;
43
44 return strjoin(prefix, ".UTF-8");
45 }
46
47 e = strstr(name, ".utf8@");
48 if (e) {
49 _cleanup_free_ char *prefix = NULL;
50
51 prefix = strndup(name, e - name);
52 if (!prefix)
53 return NULL;
54
55 return strjoin(prefix, ".UTF-8@", e + 6);
56 }
57
58 return strdup(name);
59 }
60
61 static int add_locales_from_archive(Set *locales) {
62 /* Stolen from glibc... */
63
64 struct locarhead {
65 uint32_t magic;
66 /* Serial number. */
67 uint32_t serial;
68 /* Name hash table. */
69 uint32_t namehash_offset;
70 uint32_t namehash_used;
71 uint32_t namehash_size;
72 /* String table. */
73 uint32_t string_offset;
74 uint32_t string_used;
75 uint32_t string_size;
76 /* Table with locale records. */
77 uint32_t locrectab_offset;
78 uint32_t locrectab_used;
79 uint32_t locrectab_size;
80 /* MD5 sum hash table. */
81 uint32_t sumhash_offset;
82 uint32_t sumhash_used;
83 uint32_t sumhash_size;
84 };
85
86 struct namehashent {
87 /* Hash value of the name. */
88 uint32_t hashval;
89 /* Offset of the name in the string table. */
90 uint32_t name_offset;
91 /* Offset of the locale record. */
92 uint32_t locrec_offset;
93 };
94
95 const struct locarhead *h;
96 const struct namehashent *e;
97 const void *p = MAP_FAILED;
98 _cleanup_close_ int fd = -1;
99 size_t sz = 0;
100 struct stat st;
101 size_t i;
102 int r;
103
104 fd = open("/usr/lib/locale/locale-archive", O_RDONLY|O_NOCTTY|O_CLOEXEC);
105 if (fd < 0)
106 return errno == ENOENT ? 0 : -errno;
107
108 if (fstat(fd, &st) < 0)
109 return -errno;
110
111 if (!S_ISREG(st.st_mode))
112 return -EBADMSG;
113
114 if (st.st_size < (off_t) sizeof(struct locarhead))
115 return -EBADMSG;
116
117 p = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
118 if (p == MAP_FAILED)
119 return -errno;
120
121 h = (const struct locarhead *) p;
122 if (h->magic != 0xde020109 ||
123 h->namehash_offset + h->namehash_size > st.st_size ||
124 h->string_offset + h->string_size > st.st_size ||
125 h->locrectab_offset + h->locrectab_size > st.st_size ||
126 h->sumhash_offset + h->sumhash_size > st.st_size) {
127 r = -EBADMSG;
128 goto finish;
129 }
130
131 e = (const struct namehashent*) ((const uint8_t*) p + h->namehash_offset);
132 for (i = 0; i < h->namehash_size; i++) {
133 char *z;
134
135 if (e[i].locrec_offset == 0)
136 continue;
137
138 if (!utf8_is_valid((char*) p + e[i].name_offset))
139 continue;
140
141 z = normalize_locale((char*) p + e[i].name_offset);
142 if (!z) {
143 r = -ENOMEM;
144 goto finish;
145 }
146
147 r = set_consume(locales, z);
148 if (r < 0)
149 goto finish;
150 }
151
152 r = 0;
153
154 finish:
155 if (p != MAP_FAILED)
156 munmap((void*) p, sz);
157
158 return r;
159 }
160
161 static int add_locales_from_libdir (Set *locales) {
162 _cleanup_closedir_ DIR *dir = NULL;
163 struct dirent *entry;
164 int r;
165
166 dir = opendir("/usr/lib/locale");
167 if (!dir)
168 return errno == ENOENT ? 0 : -errno;
169
170 FOREACH_DIRENT(entry, dir, return -errno) {
171 char *z;
172
173 dirent_ensure_type(dir, entry);
174
175 if (entry->d_type != DT_DIR)
176 continue;
177
178 z = normalize_locale(entry->d_name);
179 if (!z)
180 return -ENOMEM;
181
182 r = set_consume(locales, z);
183 if (r < 0 && r != -EEXIST)
184 return r;
185 }
186
187 return 0;
188 }
189
190 int get_locales(char ***ret) {
191 _cleanup_set_free_ Set *locales = NULL;
192 _cleanup_strv_free_ char **l = NULL;
193 int r;
194
195 locales = set_new(&string_hash_ops);
196 if (!locales)
197 return -ENOMEM;
198
199 r = add_locales_from_archive(locales);
200 if (r < 0 && r != -ENOENT)
201 return r;
202
203 r = add_locales_from_libdir(locales);
204 if (r < 0)
205 return r;
206
207 l = set_get_strv(locales);
208 if (!l)
209 return -ENOMEM;
210
211 r = getenv_bool("SYSTEMD_LIST_NON_UTF8_LOCALES");
212 if (r == -ENXIO || r == 0) {
213 char **a, **b;
214
215 /* Filter out non-UTF-8 locales, because it's 2019, by default */
216 for (a = b = l; *a; a++) {
217
218 if (endswith(*a, "UTF-8") ||
219 strstr(*a, ".UTF-8@"))
220 *(b++) = *a;
221 else
222 free(*a);
223 }
224
225 *b = NULL;
226
227 } else if (r < 0)
228 log_debug_errno(r, "Failed to parse $SYSTEMD_LIST_NON_UTF8_LOCALES as boolean");
229
230 strv_sort(l);
231
232 *ret = TAKE_PTR(l);
233
234 return 0;
235 }
236
237 bool locale_is_valid(const char *name) {
238
239 if (isempty(name))
240 return false;
241
242 if (strlen(name) >= 128)
243 return false;
244
245 if (!utf8_is_valid(name))
246 return false;
247
248 if (!filename_is_valid(name))
249 return false;
250
251 if (!string_is_safe(name))
252 return false;
253
254 return true;
255 }
256
257 int locale_is_installed(const char *name) {
258 if (!locale_is_valid(name))
259 return false;
260
261 if (STR_IN_SET(name, "C", "POSIX")) /* These ones are always OK */
262 return true;
263
264 _cleanup_(freelocalep) locale_t loc =
265 newlocale(LC_ALL_MASK, name, 0);
266 if (loc == (locale_t) 0)
267 return errno == ENOMEM ? -ENOMEM : false;
268
269 return true;
270 }
271
272 void init_gettext(void) {
273 setlocale(LC_ALL, "");
274 textdomain(GETTEXT_PACKAGE);
275 }
276
277 bool is_locale_utf8(void) {
278 const char *set;
279 static int cached_answer = -1;
280
281 /* Note that we default to 'true' here, since today UTF8 is
282 * pretty much supported everywhere. */
283
284 if (cached_answer >= 0)
285 goto out;
286
287 if (!setlocale(LC_ALL, "")) {
288 cached_answer = true;
289 goto out;
290 }
291
292 set = nl_langinfo(CODESET);
293 if (!set) {
294 cached_answer = true;
295 goto out;
296 }
297
298 if (streq(set, "UTF-8")) {
299 cached_answer = true;
300 goto out;
301 }
302
303 /* For LC_CTYPE=="C" return true, because CTYPE is effectively
304 * unset and everything can do to UTF-8 nowadays. */
305 set = setlocale(LC_CTYPE, NULL);
306 if (!set) {
307 cached_answer = true;
308 goto out;
309 }
310
311 /* Check result, but ignore the result if C was set
312 * explicitly. */
313 cached_answer =
314 STR_IN_SET(set, "C", "POSIX") &&
315 !getenv("LC_ALL") &&
316 !getenv("LC_CTYPE") &&
317 !getenv("LANG");
318
319 out:
320 return (bool) cached_answer;
321 }
322
323 bool emoji_enabled(void) {
324 static int cached_emoji_enabled = -1;
325
326 if (cached_emoji_enabled < 0) {
327 int val;
328
329 val = getenv_bool("SYSTEMD_EMOJI");
330 if (val < 0)
331 cached_emoji_enabled =
332 is_locale_utf8() &&
333 !STRPTR_IN_SET(getenv("TERM"), "dumb", "linux");
334 else
335 cached_emoji_enabled = val;
336 }
337
338 return cached_emoji_enabled;
339 }
340
341 const char *special_glyph(SpecialGlyph code) {
342
343 /* A list of a number of interesting unicode glyphs we can use to decorate our output. It's probably wise to be
344 * conservative here, and primarily stick to the glyphs defined in the eurlatgr font, so that display still
345 * works reasonably well on the Linux console. For details see:
346 *
347 * http://git.altlinux.org/people/legion/packages/kbd.git?p=kbd.git;a=blob;f=data/consolefonts/README.eurlatgr
348 */
349
350 static const char* const draw_table[2][_SPECIAL_GLYPH_MAX] = {
351 /* ASCII fallback */
352 [false] = {
353 [SPECIAL_GLYPH_TREE_VERTICAL] = "| ",
354 [SPECIAL_GLYPH_TREE_BRANCH] = "|-",
355 [SPECIAL_GLYPH_TREE_RIGHT] = "`-",
356 [SPECIAL_GLYPH_TREE_SPACE] = " ",
357 [SPECIAL_GLYPH_TRIANGULAR_BULLET] = ">",
358 [SPECIAL_GLYPH_BLACK_CIRCLE] = "*",
359 [SPECIAL_GLYPH_BULLET] = "*",
360 [SPECIAL_GLYPH_MU] = "u",
361 [SPECIAL_GLYPH_CHECK_MARK] = "+",
362 [SPECIAL_GLYPH_CROSS_MARK] = "-",
363 [SPECIAL_GLYPH_LIGHT_SHADE] = "-",
364 [SPECIAL_GLYPH_DARK_SHADE] = "X",
365 [SPECIAL_GLYPH_SIGMA] = "S",
366 [SPECIAL_GLYPH_ARROW] = "->",
367 [SPECIAL_GLYPH_ELLIPSIS] = "...",
368 [SPECIAL_GLYPH_EXTERNAL_LINK] = "[LNK]",
369 [SPECIAL_GLYPH_ECSTATIC_SMILEY] = ":-]",
370 [SPECIAL_GLYPH_HAPPY_SMILEY] = ":-}",
371 [SPECIAL_GLYPH_SLIGHTLY_HAPPY_SMILEY] = ":-)",
372 [SPECIAL_GLYPH_NEUTRAL_SMILEY] = ":-|",
373 [SPECIAL_GLYPH_SLIGHTLY_UNHAPPY_SMILEY] = ":-(",
374 [SPECIAL_GLYPH_UNHAPPY_SMILEY] = ":-{",
375 [SPECIAL_GLYPH_DEPRESSED_SMILEY] = ":-[",
376 [SPECIAL_GLYPH_LOCK_AND_KEY] = "o-,"
377 },
378
379 /* UTF-8 */
380 [true] = {
381 /* The following are multiple glyphs in both ASCII and in UNICODE */
382 [SPECIAL_GLYPH_TREE_VERTICAL] = "\342\224\202 ", /* │ */
383 [SPECIAL_GLYPH_TREE_BRANCH] = "\342\224\234\342\224\200", /* ├─ */
384 [SPECIAL_GLYPH_TREE_RIGHT] = "\342\224\224\342\224\200", /* └─ */
385 [SPECIAL_GLYPH_TREE_SPACE] = " ", /* */
386
387 /* Single glyphs in both cases */
388 [SPECIAL_GLYPH_TRIANGULAR_BULLET] = "\342\200\243", /* ‣ */
389 [SPECIAL_GLYPH_BLACK_CIRCLE] = "\342\227\217", /* ● */
390 [SPECIAL_GLYPH_BULLET] = "\342\200\242", /* • */
391 [SPECIAL_GLYPH_MU] = "\316\274", /* μ (actually called: GREEK SMALL LETTER MU) */
392 [SPECIAL_GLYPH_CHECK_MARK] = "\342\234\223", /* ✓ */
393 [SPECIAL_GLYPH_CROSS_MARK] = "\342\234\227", /* ✗ (actually called: BALLOT X) */
394 [SPECIAL_GLYPH_LIGHT_SHADE] = "\342\226\221", /* ░ */
395 [SPECIAL_GLYPH_DARK_SHADE] = "\342\226\223", /* ▒ */
396 [SPECIAL_GLYPH_SIGMA] = "\316\243", /* Σ */
397
398 /* Single glyph in Unicode, two in ASCII */
399 [SPECIAL_GLYPH_ARROW] = "\342\206\222", /* → (actually called: RIGHTWARDS ARROW) */
400
401 /* Single glyph in Unicode, three in ASCII */
402 [SPECIAL_GLYPH_ELLIPSIS] = "\342\200\246", /* … (actually called: HORIZONTAL ELLIPSIS) */
403
404 /* Three glyphs in Unicode, five in ASCII */
405 [SPECIAL_GLYPH_EXTERNAL_LINK] = "[\360\237\241\225]", /* 🡕 (actually called: NORTH EAST SANS-SERIF ARROW, enclosed in []) */
406
407 /* These smileys are a single glyph in Unicode, and three in ASCII */
408 [SPECIAL_GLYPH_ECSTATIC_SMILEY] = "\360\237\230\207", /* 😇 (actually called: SMILING FACE WITH HALO) */
409 [SPECIAL_GLYPH_HAPPY_SMILEY] = "\360\237\230\200", /* 😀 (actually called: GRINNING FACE) */
410 [SPECIAL_GLYPH_SLIGHTLY_HAPPY_SMILEY] = "\360\237\231\202", /* 🙂 (actually called: SLIGHTLY SMILING FACE) */
411 [SPECIAL_GLYPH_NEUTRAL_SMILEY] = "\360\237\230\220", /* 😐 (actually called: NEUTRAL FACE) */
412 [SPECIAL_GLYPH_SLIGHTLY_UNHAPPY_SMILEY] = "\360\237\231\201", /* 🙁 (actually called: SLIGHTLY FROWNING FACE) */
413 [SPECIAL_GLYPH_UNHAPPY_SMILEY] = "\360\237\230\250", /* 😨 (actually called: FEARFUL FACE) */
414 [SPECIAL_GLYPH_DEPRESSED_SMILEY] = "\360\237\244\242", /* 🤢 (actually called: NAUSEATED FACE) */
415
416 /* This emoji is a single character cell glyph in Unicode, and three in ASCII */
417 [SPECIAL_GLYPH_LOCK_AND_KEY] = "\360\237\224\220", /* 🔐 (actually called: CLOSED LOCK WITH KEY) */
418 },
419 };
420
421 assert(code < _SPECIAL_GLYPH_MAX);
422
423 return draw_table[code >= _SPECIAL_GLYPH_FIRST_EMOJI ? emoji_enabled() : is_locale_utf8()][code];
424 }
425
426 void locale_variables_free(char *l[_VARIABLE_LC_MAX]) {
427 LocaleVariable i;
428
429 if (!l)
430 return;
431
432 for (i = 0; i < _VARIABLE_LC_MAX; i++)
433 l[i] = mfree(l[i]);
434 }
435
436 static const char * const locale_variable_table[_VARIABLE_LC_MAX] = {
437 [VARIABLE_LANG] = "LANG",
438 [VARIABLE_LANGUAGE] = "LANGUAGE",
439 [VARIABLE_LC_CTYPE] = "LC_CTYPE",
440 [VARIABLE_LC_NUMERIC] = "LC_NUMERIC",
441 [VARIABLE_LC_TIME] = "LC_TIME",
442 [VARIABLE_LC_COLLATE] = "LC_COLLATE",
443 [VARIABLE_LC_MONETARY] = "LC_MONETARY",
444 [VARIABLE_LC_MESSAGES] = "LC_MESSAGES",
445 [VARIABLE_LC_PAPER] = "LC_PAPER",
446 [VARIABLE_LC_NAME] = "LC_NAME",
447 [VARIABLE_LC_ADDRESS] = "LC_ADDRESS",
448 [VARIABLE_LC_TELEPHONE] = "LC_TELEPHONE",
449 [VARIABLE_LC_MEASUREMENT] = "LC_MEASUREMENT",
450 [VARIABLE_LC_IDENTIFICATION] = "LC_IDENTIFICATION"
451 };
452
453 DEFINE_STRING_TABLE_LOOKUP(locale_variable, LocaleVariable);