Tom Rini | f739fcd | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Rob Clark | 78178bb | 2017-09-09 06:47:40 -0400 | [diff] [blame] | 2 | /* |
| 3 | * charset conversion utils |
| 4 | * |
| 5 | * Copyright (c) 2017 Rob Clark |
Rob Clark | 78178bb | 2017-09-09 06:47:40 -0400 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __CHARSET_H_ |
| 9 | #define __CHARSET_H_ |
| 10 | |
Heinrich Schuchardt | d8c2823 | 2018-08-31 21:31:27 +0200 | [diff] [blame] | 11 | #include <linux/kernel.h> |
Heinrich Schuchardt | f58c5ec | 2017-10-18 18:13:06 +0200 | [diff] [blame] | 12 | #include <linux/types.h> |
| 13 | |
Heinrich Schuchardt | 984f251 | 2017-10-09 21:09:05 +0200 | [diff] [blame] | 14 | #define MAX_UTF8_PER_UTF16 3 |
Rob Clark | 78178bb | 2017-09-09 06:47:40 -0400 | [diff] [blame] | 15 | |
Heinrich Schuchardt | 4bc4798 | 2021-03-28 11:57:31 +0200 | [diff] [blame] | 16 | /* |
Heinrich Schuchardt | 70616a1 | 2021-02-27 14:08:35 +0100 | [diff] [blame] | 17 | * codepage_437 - Unicode to codepage 437 translation table |
| 18 | */ |
| 19 | extern const u16 codepage_437[128]; |
| 20 | |
| 21 | /** |
Heinrich Schuchardt | 35cbb79 | 2018-09-12 00:05:32 +0200 | [diff] [blame] | 22 | * console_read_unicode() - read Unicode code point from console |
| 23 | * |
| 24 | * @code: pointer to store Unicode code point |
| 25 | * Return: 0 = success |
| 26 | */ |
| 27 | int console_read_unicode(s32 *code); |
| 28 | |
| 29 | /** |
Heinrich Schuchardt | d8c2823 | 2018-08-31 21:31:27 +0200 | [diff] [blame] | 30 | * 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 | */ |
| 37 | s32 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 | */ |
| 46 | int 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 Schuchardt | 8a4c443 | 2019-05-08 19:34:48 +0200 | [diff] [blame] | 54 | * Return: length in u16 after conversion to utf-16 without the |
Heinrich Schuchardt | d8c2823 | 2018-08-31 21:31:27 +0200 | [diff] [blame] | 55 | * trailing \0. If an invalid UTF-8 sequence is hit one |
Heinrich Schuchardt | 8a4c443 | 2019-05-08 19:34:48 +0200 | [diff] [blame] | 56 | * u16 will be reserved for a replacement character. |
Heinrich Schuchardt | d8c2823 | 2018-08-31 21:31:27 +0200 | [diff] [blame] | 57 | */ |
| 58 | size_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 Schuchardt | 311da04 | 2020-05-09 08:57:42 +0200 | [diff] [blame] | 63 | * @a: utf-8 string |
Heinrich Schuchardt | 8a4c443 | 2019-05-08 19:34:48 +0200 | [diff] [blame] | 64 | * 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 Schuchardt | d8c2823 | 2018-08-31 21:31:27 +0200 | [diff] [blame] | 67 | */ |
| 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 | */ |
| 78 | int 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 Schuchardt | 311da04 | 2020-05-09 08:57:42 +0200 | [diff] [blame] | 83 | * @d: destination buffer |
| 84 | * @s: source buffer |
Heinrich Schuchardt | d8c2823 | 2018-08-31 21:31:27 +0200 | [diff] [blame] | 85 | * 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 | */ |
| 97 | s32 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 | */ |
| 106 | int 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 | */ |
| 117 | size_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 | */ |
| 129 | size_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 Schuchardt | 311da04 | 2020-05-09 08:57:42 +0200 | [diff] [blame] | 134 | * @a: utf-16 string |
Heinrich Schuchardt | d8c2823 | 2018-08-31 21:31:27 +0200 | [diff] [blame] | 135 | * Return: length in bytes after conversion to utf-8 without the |
Heinrich Schuchardt | 8a4c443 | 2019-05-08 19:34:48 +0200 | [diff] [blame] | 136 | * trailing \0. If an invalid UTF-16 sequence is hit one |
| 137 | * byte will be reserved for a replacement character. |
Heinrich Schuchardt | d8c2823 | 2018-08-31 21:31:27 +0200 | [diff] [blame] | 138 | */ |
| 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 | */ |
| 149 | int 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 Schuchardt | 311da04 | 2020-05-09 08:57:42 +0200 | [diff] [blame] | 154 | * @d: destination buffer |
| 155 | * @s: source buffer |
Heinrich Schuchardt | d8c2823 | 2018-08-31 21:31:27 +0200 | [diff] [blame] | 156 | * 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 Schuchardt | b5130a8 | 2018-09-04 19:34:56 +0200 | [diff] [blame] | 161 | * 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 | */ |
| 166 | s32 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 | */ |
| 174 | s32 utf_to_upper(const s32 code); |
| 175 | |
Heinrich Schuchardt | 311da04 | 2020-05-09 08:57:42 +0200 | [diff] [blame] | 176 | /** |
AKASHI Takahiro | f8062c9 | 2019-09-18 10:26:29 +0900 | [diff] [blame] | 177 | * 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 | */ |
| 188 | int u16_strncmp(const u16 *s1, const u16 *s2, size_t n); |
Heinrich Schuchardt | 311da04 | 2020-05-09 08:57:42 +0200 | [diff] [blame] | 189 | |
| 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 Takahiro | f8062c9 | 2019-09-18 10:26:29 +0900 | [diff] [blame] | 201 | #define u16_strcmp(s1, s2) u16_strncmp((s1), (s2), SIZE_MAX) |
| 202 | |
Heinrich Schuchardt | b5130a8 | 2018-09-04 19:34:56 +0200 | [diff] [blame] | 203 | /** |
Sughosh Ganu | 4835d35 | 2020-05-06 22:12:41 +0300 | [diff] [blame] | 204 | * 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 Ganu | 4835d35 | 2020-05-06 22:12:41 +0300 | [diff] [blame] | 211 | */ |
| 212 | size_t u16_strsize(const void *in); |
| 213 | |
| 214 | /** |
Heinrich Schuchardt | 3139356 | 2020-10-30 12:14:16 +0100 | [diff] [blame] | 215 | * u16_strnlen() - count non-zero words |
Rob Clark | 78178bb | 2017-09-09 06:47:40 -0400 | [diff] [blame] | 216 | * |
Heinrich Schuchardt | 1dde0d5 | 2018-08-31 21:31:26 +0200 | [diff] [blame] | 217 | * 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 Clark | 78178bb | 2017-09-09 06:47:40 -0400 | [diff] [blame] | 219 | * |
Heinrich Schuchardt | 1dde0d5 | 2018-08-31 21:31:26 +0200 | [diff] [blame] | 220 | * @in: null terminated u16 string |
| 221 | * @count: maximum number of words to count |
Heinrich Schuchardt | 311da04 | 2020-05-09 08:57:42 +0200 | [diff] [blame] | 222 | * Return: number of non-zero words. |
Heinrich Schuchardt | 1dde0d5 | 2018-08-31 21:31:26 +0200 | [diff] [blame] | 223 | * This is not the number of utf-16 letters! |
Rob Clark | 78178bb | 2017-09-09 06:47:40 -0400 | [diff] [blame] | 224 | */ |
Heinrich Schuchardt | 1dde0d5 | 2018-08-31 21:31:26 +0200 | [diff] [blame] | 225 | size_t u16_strnlen(const u16 *in, size_t count); |
Rob Clark | 78178bb | 2017-09-09 06:47:40 -0400 | [diff] [blame] | 226 | |
| 227 | /** |
Heinrich Schuchardt | 0121282 | 2022-04-02 11:46:58 +0200 | [diff] [blame] | 228 | * 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 | */ |
| 237 | size_t u16_strlen(const void *in); |
| 238 | |
| 239 | #define u16_strlen(in) u16_strnlen(in, SIZE_MAX) |
| 240 | |
| 241 | /** |
Akashi, Takahiro | 2a3537a | 2018-12-14 19:10:38 +0900 | [diff] [blame] | 242 | * 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 | */ |
| 251 | u16 *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 Schuchardt | 317068b | 2019-07-14 17:28:49 +0200 | [diff] [blame] | 262 | u16 *u16_strdup(const void *src); |
Akashi, Takahiro | 2a3537a | 2018-12-14 19:10:38 +0900 | [diff] [blame] | 263 | |
| 264 | /** |
Masahisa Kojima | eca08ce | 2022-04-28 17:09:34 +0900 | [diff] [blame] | 265 | * 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 Kojima | afbeedc | 2022-05-16 20:00:42 +0900 | [diff] [blame] | 276 | size_t u16_strlcat(u16 *dest, const u16 *src, size_t count); |
Masahisa Kojima | eca08ce | 2022-04-28 17:09:34 +0900 | [diff] [blame] | 277 | |
| 278 | /** |
Rob Clark | 78178bb | 2017-09-09 06:47:40 -0400 | [diff] [blame] | 279 | * 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 Schuchardt | 984f251 | 2017-10-09 21:09:05 +0200 | [diff] [blame] | 284 | * NOTE that a single utf16 character can generate up to 3 utf8 |
Rob Clark | 78178bb | 2017-09-09 06:47:40 -0400 | [diff] [blame] | 285 | * characters. See MAX_UTF8_PER_UTF16. |
| 286 | * |
Heinrich Schuchardt | 311da04 | 2020-05-09 08:57:42 +0200 | [diff] [blame] | 287 | * @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 Clark | 78178bb | 2017-09-09 06:47:40 -0400 | [diff] [blame] | 291 | */ |
| 292 | uint8_t *utf16_to_utf8(uint8_t *dest, const uint16_t *src, size_t size); |
| 293 | |
Heinrich Schuchardt | 73bb90c | 2021-02-27 14:08:36 +0100 | [diff] [blame] | 294 | /** |
| 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 | */ |
| 303 | int utf_to_cp(s32 *c, const u16 *codepage); |
| 304 | |
Heinrich Schuchardt | e91789e | 2021-02-27 14:08:38 +0100 | [diff] [blame] | 305 | /** |
| 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 | */ |
| 312 | int 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 | */ |
| 321 | int utf8_to_utf32_stream(u8 c, char *buffer); |
| 322 | |
Rob Clark | 78178bb | 2017-09-09 06:47:40 -0400 | [diff] [blame] | 323 | #endif /* __CHARSET_H_ */ |