blob: e900fd789a2b472bc0360601c160b22c88a98fd6 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Rob Clark78178bb2017-09-09 06:47:40 -04002/*
3 * charset conversion utils
4 *
5 * Copyright (c) 2017 Rob Clark
Rob Clark78178bb2017-09-09 06:47:40 -04006 */
7
8#ifndef __CHARSET_H_
9#define __CHARSET_H_
10
Heinrich Schuchardtd8c28232018-08-31 21:31:27 +020011#include <linux/kernel.h>
Heinrich Schuchardtf58c5ec2017-10-18 18:13:06 +020012#include <linux/types.h>
13
Heinrich Schuchardt984f2512017-10-09 21:09:05 +020014#define MAX_UTF8_PER_UTF16 3
Rob Clark78178bb2017-09-09 06:47:40 -040015
Heinrich Schuchardt4bc47982021-03-28 11:57:31 +020016/*
Heinrich Schuchardt70616a12021-02-27 14:08:35 +010017 * codepage_437 - Unicode to codepage 437 translation table
18 */
19extern const u16 codepage_437[128];
20
21/**
Heinrich Schuchardt35cbb792018-09-12 00:05:32 +020022 * console_read_unicode() - read Unicode code point from console
23 *
24 * @code: pointer to store Unicode code point
25 * Return: 0 = success
26 */
27int console_read_unicode(s32 *code);
28
29/**
Heinrich Schuchardtd8c28232018-08-31 21:31:27 +020030 * utf8_get() - get next UTF-8 code point from buffer
31 *
32 * @src: pointer to current byte, updated to point to next byte
33 * Return: code point, or 0 for end of string, or -1 if no legal
34 * code point is found. In case of an error src points to
35 * the incorrect byte.
36 */
37s32 utf8_get(const char **src);
38
39/**
40 * utf8_put() - write UTF-8 code point to buffer
41 *
42 * @code: code point
43 * @dst: pointer to destination buffer, updated to next position
44 * Return: -1 if the input parameters are invalid
45 */
46int utf8_put(s32 code, char **dst);
47
48/**
49 * utf8_utf16_strnlen() - length of a truncated utf-8 string after conversion
50 * to utf-16
51 *
52 * @src: utf-8 string
53 * @count: maximum number of code points to convert
Heinrich Schuchardt8a4c4432019-05-08 19:34:48 +020054 * Return: length in u16 after conversion to utf-16 without the
Heinrich Schuchardtd8c28232018-08-31 21:31:27 +020055 * trailing \0. If an invalid UTF-8 sequence is hit one
Heinrich Schuchardt8a4c4432019-05-08 19:34:48 +020056 * u16 will be reserved for a replacement character.
Heinrich Schuchardtd8c28232018-08-31 21:31:27 +020057 */
58size_t utf8_utf16_strnlen(const char *src, size_t count);
59
60/**
61 * utf8_utf16_strlen() - length of a utf-8 string after conversion to utf-16
62 *
Heinrich Schuchardt311da042020-05-09 08:57:42 +020063 * @a: utf-8 string
Heinrich Schuchardt8a4c4432019-05-08 19:34:48 +020064 * Return: length in u16 after conversion to utf-16 without the
65 * trailing \0. If an invalid UTF-8 sequence is hit one
66 * u16 will be reserved for a replacement character.
Heinrich Schuchardtd8c28232018-08-31 21:31:27 +020067 */
68#define utf8_utf16_strlen(a) utf8_utf16_strnlen((a), SIZE_MAX)
69
70/**
71 * utf8_utf16_strncpy() - copy utf-8 string to utf-16 string
72 *
73 * @dst: destination buffer
74 * @src: source buffer
75 * @count: maximum number of code points to copy
76 * Return: -1 if the input parameters are invalid
77 */
78int utf8_utf16_strncpy(u16 **dst, const char *src, size_t count);
79
80/**
81 * utf8_utf16_strcpy() - copy utf-8 string to utf-16 string
82 *
Heinrich Schuchardt311da042020-05-09 08:57:42 +020083 * @d: destination buffer
84 * @s: source buffer
Heinrich Schuchardtd8c28232018-08-31 21:31:27 +020085 * Return: -1 if the input parameters are invalid
86 */
87#define utf8_utf16_strcpy(d, s) utf8_utf16_strncpy((d), (s), SIZE_MAX)
88
89/**
90 * utf16_get() - get next UTF-16 code point from buffer
91 *
92 * @src: pointer to current word, updated to point to next word
93 * Return: code point, or 0 for end of string, or -1 if no legal
94 * code point is found. In case of an error src points to
95 * the incorrect word.
96 */
97s32 utf16_get(const u16 **src);
98
99/**
100 * utf16_put() - write UTF-16 code point to buffer
101 *
102 * @code: code point
103 * @dst: pointer to destination buffer, updated to next position
104 * Return: -1 if the input parameters are invalid
105 */
106int utf16_put(s32 code, u16 **dst);
107
108/**
109 * utf16_strnlen() - length of a truncated utf-16 string
110 *
111 * @src: utf-16 string
112 * @count: maximum number of code points to convert
113 * Return: length in code points. If an invalid UTF-16 sequence is
114 * hit one position will be reserved for a replacement
115 * character.
116 */
117size_t utf16_strnlen(const u16 *src, size_t count);
118
119/**
120 * utf16_utf8_strnlen() - length of a truncated utf-16 string after conversion
121 * to utf-8
122 *
123 * @src: utf-16 string
124 * @count: maximum number of code points to convert
125 * Return: length in bytes after conversion to utf-8 without the
126 * trailing \0. If an invalid UTF-16 sequence is hit one
127 * byte will be reserved for a replacement character.
128 */
129size_t utf16_utf8_strnlen(const u16 *src, size_t count);
130
131/**
132 * utf16_utf8_strlen() - length of a utf-16 string after conversion to utf-8
133 *
Heinrich Schuchardt311da042020-05-09 08:57:42 +0200134 * @a: utf-16 string
Heinrich Schuchardtd8c28232018-08-31 21:31:27 +0200135 * Return: length in bytes after conversion to utf-8 without the
Heinrich Schuchardt8a4c4432019-05-08 19:34:48 +0200136 * trailing \0. If an invalid UTF-16 sequence is hit one
137 * byte will be reserved for a replacement character.
Heinrich Schuchardtd8c28232018-08-31 21:31:27 +0200138 */
139#define utf16_utf8_strlen(a) utf16_utf8_strnlen((a), SIZE_MAX)
140
141/**
142 * utf16_utf8_strncpy() - copy utf-16 string to utf-8 string
143 *
144 * @dst: destination buffer
145 * @src: source buffer
146 * @count: maximum number of code points to copy
147 * Return: -1 if the input parameters are invalid
148 */
149int utf16_utf8_strncpy(char **dst, const u16 *src, size_t count);
150
151/**
152 * utf16_utf8_strcpy() - copy utf-16 string to utf-8 string
153 *
Heinrich Schuchardt311da042020-05-09 08:57:42 +0200154 * @d: destination buffer
155 * @s: source buffer
Heinrich Schuchardtd8c28232018-08-31 21:31:27 +0200156 * Return: -1 if the input parameters are invalid
157 */
158#define utf16_utf8_strcpy(d, s) utf16_utf8_strncpy((d), (s), SIZE_MAX)
159
160/**
Heinrich Schuchardtb5130a82018-09-04 19:34:56 +0200161 * utf_to_lower() - convert a Unicode letter to lower case
162 *
163 * @code: letter to convert
164 * Return: lower case letter or unchanged letter
165 */
166s32 utf_to_lower(const s32 code);
167
168/**
169 * utf_to_upper() - convert a Unicode letter to upper case
170 *
171 * @code: letter to convert
172 * Return: upper case letter or unchanged letter
173 */
174s32 utf_to_upper(const s32 code);
175
Heinrich Schuchardt311da042020-05-09 08:57:42 +0200176/**
AKASHI Takahirof8062c92019-09-18 10:26:29 +0900177 * u16_strncmp() - compare two u16 string
178 *
179 * @s1: first string to compare
180 * @s2: second string to compare
181 * @n: maximum number of u16 to compare
182 * Return: 0 if the first n u16 are the same in s1 and s2
183 * < 0 if the first different u16 in s1 is less than the
184 * corresponding u16 in s2
185 * > 0 if the first different u16 in s1 is greater than the
186 * corresponding u16 in s2
187 */
188int u16_strncmp(const u16 *s1, const u16 *s2, size_t n);
Heinrich Schuchardt311da042020-05-09 08:57:42 +0200189
190/**
191 * u16_strcmp() - compare two u16 string
192 *
193 * @s1: first string to compare
194 * @s2: second string to compare
195 * Return: 0 if the first n u16 are the same in s1 and s2
196 * < 0 if the first different u16 in s1 is less than the
197 * corresponding u16 in s2
198 * > 0 if the first different u16 in s1 is greater than the
199 * corresponding u16 in s2
200 */
AKASHI Takahirof8062c92019-09-18 10:26:29 +0900201#define u16_strcmp(s1, s2) u16_strncmp((s1), (s2), SIZE_MAX)
202
Heinrich Schuchardtb5130a82018-09-04 19:34:56 +0200203/**
Sughosh Ganu4835d352020-05-06 22:12:41 +0300204 * u16_strsize() - count size of u16 string in bytes including the null
205 * character
206 *
207 * Counts the number of bytes occupied by a u16 string
208 *
209 * @in: null terminated u16 string
210 * Return: bytes in a u16 string
Sughosh Ganu4835d352020-05-06 22:12:41 +0300211 */
212size_t u16_strsize(const void *in);
213
214/**
Heinrich Schuchardt31393562020-10-30 12:14:16 +0100215 * u16_strnlen() - count non-zero words
Rob Clark78178bb2017-09-09 06:47:40 -0400216 *
Heinrich Schuchardt1dde0d52018-08-31 21:31:26 +0200217 * This function matches wscnlen_s() if the -fshort-wchar compiler flag is set.
218 * In the EFI context we explicitly need a function handling u16 strings.
Rob Clark78178bb2017-09-09 06:47:40 -0400219 *
Heinrich Schuchardt1dde0d52018-08-31 21:31:26 +0200220 * @in: null terminated u16 string
221 * @count: maximum number of words to count
Heinrich Schuchardt311da042020-05-09 08:57:42 +0200222 * Return: number of non-zero words.
Heinrich Schuchardt1dde0d52018-08-31 21:31:26 +0200223 * This is not the number of utf-16 letters!
Rob Clark78178bb2017-09-09 06:47:40 -0400224 */
Heinrich Schuchardt1dde0d52018-08-31 21:31:26 +0200225size_t u16_strnlen(const u16 *in, size_t count);
Rob Clark78178bb2017-09-09 06:47:40 -0400226
227/**
Heinrich Schuchardt01212822022-04-02 11:46:58 +0200228 * u16_strlen - count non-zero words
229 *
230 * This function matches wsclen() if the -fshort-wchar compiler flag is set.
231 * In the EFI context we explicitly need a function handling u16 strings.
232 *
233 * @in: null terminated u16 string
234 * Return: number of non-zero words.
235 * This is not the number of utf-16 letters!
236 */
237size_t u16_strlen(const void *in);
238
239#define u16_strlen(in) u16_strnlen(in, SIZE_MAX)
240
241/**
Akashi, Takahiro2a3537a2018-12-14 19:10:38 +0900242 * u16_strcpy() - copy u16 string
243 *
244 * Copy u16 string pointed to by src, including terminating null word, to
245 * the buffer pointed to by dest.
246 *
247 * @dest: destination buffer
248 * @src: source buffer (null terminated)
249 * Return: 'dest' address
250 */
251u16 *u16_strcpy(u16 *dest, const u16 *src);
252
253/**
254 * u16_strdup() - duplicate u16 string
255 *
256 * Copy u16 string pointed to by src, including terminating null word, to a
257 * newly allocated buffer.
258 *
259 * @src: source buffer (null terminated)
260 * Return: allocated new buffer on success, NULL on failure
261 */
Heinrich Schuchardt317068b2019-07-14 17:28:49 +0200262u16 *u16_strdup(const void *src);
Akashi, Takahiro2a3537a2018-12-14 19:10:38 +0900263
264/**
Masahisa Kojimaeca08ce2022-04-28 17:09:34 +0900265 * u16_strlcat() - Append a length-limited, %NUL-terminated string to another
266 *
267 * Append the source string @src to the destination string @dest, overwriting
268 * null word at the end of @dest adding a terminating null word.
269 *
270 * @dest: zero terminated u16 destination string
271 * @src: zero terminated u16 source string
272 * @count: size of buffer in u16 words including taling 0x0000
273 * Return: required size including trailing 0x0000 in u16 words
274 * If return value >= count, truncation occurred.
275 */
Masahisa Kojimaafbeedc2022-05-16 20:00:42 +0900276size_t u16_strlcat(u16 *dest, const u16 *src, size_t count);
Masahisa Kojimaeca08ce2022-04-28 17:09:34 +0900277
278/**
Rob Clark78178bb2017-09-09 06:47:40 -0400279 * utf16_to_utf8() - Convert an utf16 string to utf8
280 *
281 * Converts 'size' characters of the utf16 string 'src' to utf8
282 * written to the 'dest' buffer.
283 *
Heinrich Schuchardt984f2512017-10-09 21:09:05 +0200284 * NOTE that a single utf16 character can generate up to 3 utf8
Rob Clark78178bb2017-09-09 06:47:40 -0400285 * characters. See MAX_UTF8_PER_UTF16.
286 *
Heinrich Schuchardt311da042020-05-09 08:57:42 +0200287 * @dest: the destination buffer to write the utf8 characters
288 * @src: the source utf16 string
289 * @size: the number of utf16 characters to convert
290 * Return: the pointer to the first unwritten byte in 'dest'
Rob Clark78178bb2017-09-09 06:47:40 -0400291 */
292uint8_t *utf16_to_utf8(uint8_t *dest, const uint16_t *src, size_t size);
293
Heinrich Schuchardt73bb90c2021-02-27 14:08:36 +0100294/**
295 * utf_to_cp() - translate Unicode code point to 8bit codepage
296 *
297 * Codepoints that do not exist in the codepage are rendered as question mark.
298 *
299 * @c: pointer to Unicode code point to be translated
300 * @codepage: Unicode to codepage translation table
301 * Return: 0 on success, -ENOENT if codepoint cannot be translated
302 */
303int utf_to_cp(s32 *c, const u16 *codepage);
304
Heinrich Schuchardte91789e2021-02-27 14:08:38 +0100305/**
306 * utf8_to_cp437_stream() - convert UTF-8 stream to codepage 437
307 *
308 * @c: next UTF-8 character to convert
309 * @buffer: buffer, at least 5 characters
310 * Return: next codepage 437 character or 0
311 */
312int utf8_to_cp437_stream(u8 c, char *buffer);
313
314/**
315 * utf8_to_utf32_stream() - convert UTF-8 stream to UTF-32
316 *
317 * @c: next UTF-8 character to convert
318 * @buffer: buffer, at least 5 characters
319 * Return: next codepage 437 character or 0
320 */
321int utf8_to_utf32_stream(u8 c, char *buffer);
322
Rob Clark78178bb2017-09-09 06:47:40 -0400323#endif /* __CHARSET_H_ */