xref: /freebsd/stand/efi/libefi/efichar.c (revision 27d95c1a0311d2d1b181df222cd531b67a61802e)
1 /*-
2  * Copyright (c) 2010 Marcel Moolenaar
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26 
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29 
30 #include <sys/types.h>
31 #include <errno.h>
32 #ifdef _STANDALONE
33 #include <stand.h>
34 #else
35 #include <stddef.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <unistd.h>
39 #include <sys/efi.h>
40 #include <machine/efi.h>
41 #endif
42 
43 #include "efichar.h"
44 
45 int
46 ucs2len(const efi_char *str)
47 {
48 	int i;
49 
50 	i = 0;
51 	while (*str++)
52 		i++;
53 	return (i);
54 }
55 
56 /*
57  * If nm were converted to utf8, what what would strlen
58  * return on the resulting string?
59  */
60 static size_t
61 utf8_len_of_ucs2(const efi_char *nm)
62 {
63 	size_t len;
64 	efi_char c;
65 
66 	len = 0;
67 	while (*nm) {
68 		c = *nm++;
69 		if (c > 0x7ff)
70 			len += 3;
71 		else if (c > 0x7f)
72 			len += 2;
73 		else
74 			len++;
75 	}
76 
77 	return (len);
78 }
79 
80 int
81 ucs2_to_utf8(const efi_char *nm, char **name)
82 {
83 	size_t len, sz;
84 	efi_char c;
85 	char *cp;
86 	int freeit = *name == NULL;
87 
88 	sz = utf8_len_of_ucs2(nm) + 1;
89 	len = 0;
90 	if (*name != NULL)
91 		cp = *name;
92 	else
93 		cp = *name = malloc(sz);
94 	if (*name == NULL)
95 		return (ENOMEM);
96 
97 	while (*nm) {
98 		c = *nm++;
99 		if (c > 0x7ff) {
100 			if (len++ < sz)
101 				*cp++ = (char)(0xE0 | (c >> 12));
102 			if (len++ < sz)
103 				*cp++ = (char)(0x80 | ((c >> 6) & 0x3f));
104 			if (len++ < sz)
105 				*cp++ = (char)(0x80 | (c & 0x3f));
106 		} else if (c > 0x7f) {
107 			if (len++ < sz)
108 				*cp++ = (char)(0xC0 | ((c >> 6) & 0x1f));
109 			if (len++ < sz)
110 				*cp++ = (char)(0x80 | (c & 0x3f));
111 		} else {
112 			if (len++ < sz)
113 				*cp++ = (char)(c & 0x7f);
114 		}
115 	}
116 
117 	if (len >= sz) {
118 		/* Absent bugs, we'll never return EOVERFLOW */
119 		if (freeit) {
120 			free(*name);
121 			*name = NULL;
122 		}
123 		return (EOVERFLOW);
124 	}
125 	*cp++ = '\0';
126 
127 	return (0);
128 }
129 
130 int
131 utf8_to_ucs2(const char *name, efi_char **nmp, size_t *len)
132 {
133 	efi_char *nm;
134 	size_t sz;
135 	uint32_t ucs4;
136 	int c, bytes;
137 	int freeit = *nmp == NULL;
138 
139 	sz = strlen(name) * 2 + 2;
140 	if (*nmp == NULL)
141 		*nmp = malloc(sz);
142 	nm = *nmp;
143 	*len = sz;
144 
145 	ucs4 = 0;
146 	bytes = 0;
147 	while (sz > 1 && *name != '\0') {
148 		c = *name++;
149 		/*
150 		 * Conditionalize on the two major character types:
151 		 * initial and followup characters.
152 		 */
153 		if ((c & 0xc0) != 0x80) {
154 			/* Initial characters. */
155 			if (bytes != 0)
156 				goto ilseq;
157 			if ((c & 0xf8) == 0xf0) {
158 				ucs4 = c & 0x07;
159 				bytes = 3;
160 			} else if ((c & 0xf0) == 0xe0) {
161 				ucs4 = c & 0x0f;
162 				bytes = 2;
163 			} else if ((c & 0xe0) == 0xc0) {
164 				ucs4 = c & 0x1f;
165 				bytes = 1;
166 			} else {
167 				ucs4 = c & 0x7f;
168 				bytes = 0;
169 			}
170 		} else {
171 			/* Followup characters. */
172 			if (bytes > 0) {
173 				ucs4 = (ucs4 << 6) + (c & 0x3f);
174 				bytes--;
175 			} else if (bytes == 0)
176 				goto ilseq;
177 		}
178 		if (bytes == 0) {
179 			if (ucs4 > 0xffff)
180 				goto ilseq;
181 			*nm++ = (efi_char)ucs4;
182 			sz -= 2;
183 		}
184 	}
185 	if (sz < 2) {
186 		if (freeit) {
187 			free(nm);
188 			*nmp = NULL;
189 		}
190 		return (EDOOFUS);
191 	}
192 	sz -= 2;
193 	*nm = 0;
194 	*len -= sz;
195 	return (0);
196 ilseq:
197 	if (freeit) {
198 		free(nm);
199 		*nmp = NULL;
200 	}
201 	return (EILSEQ);
202 }
203