blob: cf41eb5e5fb290eb3d50520ac4e037a820524751 [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Rob Clark0d138cf2017-09-09 06:47:40 -04002/*
3 * charset conversion utils
4 *
5 * Copyright (c) 2017 Rob Clark
Rob Clark0d138cf2017-09-09 06:47:40 -04006 */
7
8#ifndef __CHARSET_H_
9#define __CHARSET_H_
10
Heinrich Schuchardt97494ea2018-08-31 21:31:27 +020011#include <linux/kernel.h>
Heinrich Schuchardtd0faa9e2017-10-18 18:13:06 +020012#include <linux/types.h>
13
Heinrich Schuchardt1636c9e2017-10-09 21:09:05 +020014#define MAX_UTF8_PER_UTF16 3
Rob Clark0d138cf2017-09-09 06:47:40 -040015
16/**
Heinrich Schuchardt97494ea2018-08-31 21:31:27 +020017 * utf8_get() - get next UTF-8 code point from buffer
18 *
19 * @src: pointer to current byte, updated to point to next byte
20 * Return: code point, or 0 for end of string, or -1 if no legal
21 * code point is found. In case of an error src points to
22 * the incorrect byte.
23 */
24s32 utf8_get(const char **src);
25
26/**
27 * utf8_put() - write UTF-8 code point to buffer
28 *
29 * @code: code point
30 * @dst: pointer to destination buffer, updated to next position
31 * Return: -1 if the input parameters are invalid
32 */
33int utf8_put(s32 code, char **dst);
34
35/**
36 * utf8_utf16_strnlen() - length of a truncated utf-8 string after conversion
37 * to utf-16
38 *
39 * @src: utf-8 string
40 * @count: maximum number of code points to convert
41 * Return: length in bytes after conversion to utf-16 without the
42 * trailing \0. If an invalid UTF-8 sequence is hit one
43 * word will be reserved for a replacement character.
44 */
45size_t utf8_utf16_strnlen(const char *src, size_t count);
46
47/**
48 * utf8_utf16_strlen() - length of a utf-8 string after conversion to utf-16
49 *
50 * @src: utf-8 string
51 * Return: length in bytes after conversion to utf-16 without the
52 * trailing \0. -1 if the utf-8 string is not valid.
53 */
54#define utf8_utf16_strlen(a) utf8_utf16_strnlen((a), SIZE_MAX)
55
56/**
57 * utf8_utf16_strncpy() - copy utf-8 string to utf-16 string
58 *
59 * @dst: destination buffer
60 * @src: source buffer
61 * @count: maximum number of code points to copy
62 * Return: -1 if the input parameters are invalid
63 */
64int utf8_utf16_strncpy(u16 **dst, const char *src, size_t count);
65
66/**
67 * utf8_utf16_strcpy() - copy utf-8 string to utf-16 string
68 *
69 * @dst: destination buffer
70 * @src: source buffer
71 * Return: -1 if the input parameters are invalid
72 */
73#define utf8_utf16_strcpy(d, s) utf8_utf16_strncpy((d), (s), SIZE_MAX)
74
75/**
76 * utf16_get() - get next UTF-16 code point from buffer
77 *
78 * @src: pointer to current word, updated to point to next word
79 * Return: code point, or 0 for end of string, or -1 if no legal
80 * code point is found. In case of an error src points to
81 * the incorrect word.
82 */
83s32 utf16_get(const u16 **src);
84
85/**
86 * utf16_put() - write UTF-16 code point to buffer
87 *
88 * @code: code point
89 * @dst: pointer to destination buffer, updated to next position
90 * Return: -1 if the input parameters are invalid
91 */
92int utf16_put(s32 code, u16 **dst);
93
94/**
95 * utf16_strnlen() - length of a truncated utf-16 string
96 *
97 * @src: utf-16 string
98 * @count: maximum number of code points to convert
99 * Return: length in code points. If an invalid UTF-16 sequence is
100 * hit one position will be reserved for a replacement
101 * character.
102 */
103size_t utf16_strnlen(const u16 *src, size_t count);
104
105/**
106 * utf16_utf8_strnlen() - length of a truncated utf-16 string after conversion
107 * to utf-8
108 *
109 * @src: utf-16 string
110 * @count: maximum number of code points to convert
111 * Return: length in bytes after conversion to utf-8 without the
112 * trailing \0. If an invalid UTF-16 sequence is hit one
113 * byte will be reserved for a replacement character.
114 */
115size_t utf16_utf8_strnlen(const u16 *src, size_t count);
116
117/**
118 * utf16_utf8_strlen() - length of a utf-16 string after conversion to utf-8
119 *
120 * @src: utf-16 string
121 * Return: length in bytes after conversion to utf-8 without the
122 * trailing \0. -1 if the utf-16 string is not valid.
123 */
124#define utf16_utf8_strlen(a) utf16_utf8_strnlen((a), SIZE_MAX)
125
126/**
127 * utf16_utf8_strncpy() - copy utf-16 string to utf-8 string
128 *
129 * @dst: destination buffer
130 * @src: source buffer
131 * @count: maximum number of code points to copy
132 * Return: -1 if the input parameters are invalid
133 */
134int utf16_utf8_strncpy(char **dst, const u16 *src, size_t count);
135
136/**
137 * utf16_utf8_strcpy() - copy utf-16 string to utf-8 string
138 *
139 * @dst: destination buffer
140 * @src: source buffer
141 * Return: -1 if the input parameters are invalid
142 */
143#define utf16_utf8_strcpy(d, s) utf16_utf8_strncpy((d), (s), SIZE_MAX)
144
145/**
Heinrich Schuchardt597f8f72018-08-31 21:31:26 +0200146 * u16_strlen - count non-zero words
Rob Clark0d138cf2017-09-09 06:47:40 -0400147 *
Heinrich Schuchardt597f8f72018-08-31 21:31:26 +0200148 * This function matches wsclen() if the -fshort-wchar compiler flag is set.
149 * In the EFI context we explicitly need a function handling u16 strings.
Rob Clark0d138cf2017-09-09 06:47:40 -0400150 *
Heinrich Schuchardt597f8f72018-08-31 21:31:26 +0200151 * @in: null terminated u16 string
152 * ReturnValue: number of non-zero words.
153 * This is not the number of utf-16 letters!
Rob Clark0d138cf2017-09-09 06:47:40 -0400154 */
Heinrich Schuchardt597f8f72018-08-31 21:31:26 +0200155size_t u16_strlen(const u16 *in);
Rob Clark0d138cf2017-09-09 06:47:40 -0400156
157/**
Heinrich Schuchardt597f8f72018-08-31 21:31:26 +0200158 * u16_strlen - count non-zero words
Rob Clark0d138cf2017-09-09 06:47:40 -0400159 *
Heinrich Schuchardt597f8f72018-08-31 21:31:26 +0200160 * This function matches wscnlen_s() if the -fshort-wchar compiler flag is set.
161 * In the EFI context we explicitly need a function handling u16 strings.
Rob Clark0d138cf2017-09-09 06:47:40 -0400162 *
Heinrich Schuchardt597f8f72018-08-31 21:31:26 +0200163 * @in: null terminated u16 string
164 * @count: maximum number of words to count
165 * ReturnValue: number of non-zero words.
166 * This is not the number of utf-16 letters!
Rob Clark0d138cf2017-09-09 06:47:40 -0400167 */
Heinrich Schuchardt597f8f72018-08-31 21:31:26 +0200168size_t u16_strnlen(const u16 *in, size_t count);
Rob Clark0d138cf2017-09-09 06:47:40 -0400169
170/**
171 * utf16_strcpy() - UTF16 equivalent of strcpy()
172 */
173uint16_t *utf16_strcpy(uint16_t *dest, const uint16_t *src);
174
175/**
176 * utf16_strdup() - UTF16 equivalent of strdup()
177 */
178uint16_t *utf16_strdup(const uint16_t *s);
179
180/**
181 * utf16_to_utf8() - Convert an utf16 string to utf8
182 *
183 * Converts 'size' characters of the utf16 string 'src' to utf8
184 * written to the 'dest' buffer.
185 *
Heinrich Schuchardt1636c9e2017-10-09 21:09:05 +0200186 * NOTE that a single utf16 character can generate up to 3 utf8
Rob Clark0d138cf2017-09-09 06:47:40 -0400187 * characters. See MAX_UTF8_PER_UTF16.
188 *
189 * @dest the destination buffer to write the utf8 characters
190 * @src the source utf16 string
191 * @size the number of utf16 characters to convert
192 * @return the pointer to the first unwritten byte in 'dest'
193 */
194uint8_t *utf16_to_utf8(uint8_t *dest, const uint16_t *src, size_t size);
195
Heinrich Schuchardtd0faa9e2017-10-18 18:13:06 +0200196/**
197 * utf8_to_utf16() - Convert an utf8 string to utf16
198 *
199 * Converts up to 'size' characters of the utf16 string 'src' to utf8
200 * written to the 'dest' buffer. Stops at 0x00.
201 *
202 * @dest the destination buffer to write the utf8 characters
203 * @src the source utf16 string
204 * @size maximum number of utf16 characters to convert
205 * @return the pointer to the first unwritten byte in 'dest'
206 */
207uint16_t *utf8_to_utf16(uint16_t *dest, const uint8_t *src, size_t size);
208
Rob Clark0d138cf2017-09-09 06:47:40 -0400209#endif /* __CHARSET_H_ */