summaryrefslogtreecommitdiff
path: root/src/locale/__setlocalecat.c
blob: 44385e02c6584e10a393b5ee916db513023529cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#include <locale.h>
#include <string.h>
#include "locale_impl.h"
#include "libc.h"
#include "atomic.h"

const char *__lctrans_impl(const char *msg, const struct __locale_map *lm)
{
	const char *trans = 0;
	if (lm) trans = __mo_lookup(lm->map, lm->map_size, msg);
	return trans ? trans : msg;
}

const unsigned char *__map_file(const char *, size_t *);
int __munmap(void *, size_t);
char *__strchrnul(const char *, int);

static struct __locale_map *findlocale(const char *name, size_t n)
{
	static void *loc_head;
	struct __locale_map *p, *new, *old_head;
	const char *path = 0, *z;
	char buf[256];
	size_t l;
	const void *map;
	size_t map_size;

	for (p=loc_head; p; p=p->next)
		if (!strcmp(name, p->name)) return p;

	if (strchr(name, '/')) return 0;

	if (!libc.secure) path = getenv("MUSL_LOCPATH");
	/* FIXME: add a default path? */
	if (!path) return 0;

	for (; *path; path=z+!!*z) {
		z = __strchrnul(path, ':');
		l = z - path - !!*z;
		if (l >= sizeof buf - n - 2) continue;
		memcpy(buf, path, l);
		buf[l] = '/';
		memcpy(buf+l+1, name, n);
		buf[l+1+n] = 0;
		map = __map_file(buf, &map_size);
		if (map) {
			new = malloc(sizeof *new);
			if (!new) {
				__munmap((void *)map, map_size);
				return 0;
			}
			new->map = map;
			new->map_size = map_size;
			memcpy(new->name, name, n);
			new->name[n] = 0;
			do {
				old_head = loc_head;
				new->next = old_head;
			} while (a_cas_p(&loc_head, old_head, new) != old_head);
			return new;
		}
	}
	return 0;
}

static const char envvars[][12] = {
	"LC_CTYPE",
	"LC_NUMERIC",
	"LC_TIME",
	"LC_COLLATE",
	"LC_MONETARY",
	"LC_MESSAGES",
};

int __setlocalecat(locale_t loc, int cat, const char *val)
{
	if (!*val) {
		(val = getenv("LC_ALL")) && *val ||
		(val = getenv(envvars[cat])) && *val ||
		(val = getenv("LANG")) && *val ||
		(val = "C.UTF-8");
	}

	size_t n = strnlen(val, LOCALE_NAME_MAX);
	int builtin = (val[0]=='C' && !val[1])
		|| !strcmp(val, "C.UTF-8")
		|| !strcmp(val, "POSIX");
	struct __locale_map *data, *old;

	switch (cat) {
	case LC_CTYPE:
		a_store(&loc->ctype_utf8, !builtin || val[1]=='.');
		break;
	case LC_MESSAGES:
		if (builtin) {
			loc->messages_name[0] = 0;
		} else {
			memcpy(loc->messages_name, val, n);
			loc->messages_name[n] = 0;
		}
		/* fall through */
	default:
		data = builtin ? 0 : findlocale(val, n);
		if (data == loc->cat[cat-2]) break;
		do old = loc->cat[cat-2];
		while (a_cas_p(&loc->cat[cat-2], old, data) != old);
	case LC_NUMERIC:
		break;
	}
	return 0;
}