1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Some of the source code in this file came from fs/cifs/cifs_unicode.c
5 * Copyright (c) International Business Machines Corp., 2000,2009
10 #include <linux/slab.h>
11 #include <linux/unaligned.h>
14 #include "smb_common.h"
17 * cifs_mapchar() - convert a host-endian char to proper char in codepage
18 * @target: where converted character should be copied
19 * @from: host-endian source string
20 * @cp: codepage to which character should be converted
21 * @mapchar: should character be mapped according to mapchars mount option?
23 * This function handles the conversion of a single character. It is the
24 * responsibility of the caller to ensure that the target buffer is large
25 * enough to hold the result of the conversion (at least NLS_MAX_CHARSET_SIZE).
27 * Return: string length after conversion
30 cifs_mapchar(char *target, const __u16 *from, const struct nls_table *cp,
42 * BB: Cannot handle remapping UNI_SLASH until all the calls to
43 * build_path_from_dentry are modified, as they use slash as
73 len = cp->uni2char(src_char, target, NLS_MAX_CHARSET_SIZE);
80 /* convert SURROGATE_PAIR and IVS */
81 if (strcmp(cp->charset, "utf8"))
83 len = utf16s_to_utf8s(from, 3, UTF16_LITTLE_ENDIAN, target, 6);
95 * smb_utf16_bytes() - compute converted string length
96 * @from: pointer to input string
97 * @maxbytes: input string length
98 * @codepage: destination codepage
100 * Walk a utf16le string and return the number of bytes that the string will
101 * be after being converted to the given charset, not including any null
102 * termination required. Don't walk past maxbytes in the source buffer.
104 * Return: string length after conversion
106 static int smb_utf16_bytes(const __le16 *from, int maxbytes,
107 const struct nls_table *codepage)
110 int charlen, outlen = 0;
111 int maxwords = maxbytes / 2;
112 char tmp[NLS_MAX_CHARSET_SIZE];
115 for (i = 0; i < maxwords; i++) {
116 ftmp[0] = get_unaligned_le16(&from[i]);
119 for (j = 1; j <= 2; j++) {
120 if (i + j < maxwords)
121 ftmp[j] = get_unaligned_le16(&from[i + j]);
126 charlen = cifs_mapchar(tmp, ftmp, codepage, 0);
137 * smb_from_utf16() - convert utf16le string to local charset
138 * @to: destination buffer
139 * @from: source buffer
140 * @tolen: destination buffer size (in bytes)
141 * @fromlen: source buffer size (in bytes)
142 * @codepage: codepage to which characters should be converted
143 * @mapchar: should characters be remapped according to the mapchars option?
145 * Convert a little-endian utf16le string (as sent by the server) to a string
146 * in the provided codepage. The tolen and fromlen parameters are to ensure
147 * that the code doesn't walk off of the end of the buffer (which is always
148 * a danger if the alignment of the source buffer is off). The destination
149 * string is always properly null terminated and fits in the destination
150 * buffer. Returns the length of the destination string in bytes (including
153 * Note that some windows versions actually send multiword UTF-16 characters
154 * instead of straight UTF16-2. The linux nls routines however aren't able to
155 * deal with those characters properly. In the event that we get some of
156 * those characters, they won't be translated properly.
158 * Return: string length after conversion
160 static int smb_from_utf16(char *to, const __le16 *from, int tolen, int fromlen,
161 const struct nls_table *codepage, bool mapchar)
163 int i, j, charlen, safelen;
165 int nullsize = nls_nullsize(codepage);
166 int fromwords = fromlen / 2;
167 char tmp[NLS_MAX_CHARSET_SIZE];
168 __u16 ftmp[3]; /* ftmp[3] = 3array x 2bytes = 6bytes UTF-16 */
171 * because the chars can be of varying widths, we need to take care
172 * not to overflow the destination buffer when we get close to the
173 * end of it. Until we get to this offset, we don't need to check
174 * for overflow however.
176 safelen = tolen - (NLS_MAX_CHARSET_SIZE + nullsize);
178 for (i = 0; i < fromwords; i++) {
179 ftmp[0] = get_unaligned_le16(&from[i]);
182 for (j = 1; j <= 2; j++) {
183 if (i + j < fromwords)
184 ftmp[j] = get_unaligned_le16(&from[i + j]);
190 * check to see if converting this character might make the
191 * conversion bleed into the null terminator
193 if (outlen >= safelen) {
194 charlen = cifs_mapchar(tmp, ftmp, codepage, mapchar);
195 if ((outlen + charlen) > (tolen - nullsize))
199 /* put converted char into 'to' buffer */
200 charlen = cifs_mapchar(&to[outlen], ftmp, codepage, mapchar);
204 * charlen (=bytes of UTF-8 for 1 character)
205 * 4bytes UTF-8(surrogate pair) is charlen=4
206 * (4bytes UTF-16 code)
207 * 7-8bytes UTF-8(IVS) is charlen=3+4 or 4+4
208 * (2 UTF-8 pairs divided to 2 UTF-16 pairs)
212 else if (charlen >= 5)
217 /* properly null-terminate string */
218 for (i = 0; i < nullsize; i++)
225 * smb_strtoUTF16() - Convert character string to unicode string
226 * @to: destination buffer
227 * @from: source buffer
228 * @len: destination buffer size (in bytes)
229 * @codepage: codepage to which characters should be converted
231 * Return: string length after conversion
233 int smb_strtoUTF16(__le16 *to, const char *from, int len,
234 const struct nls_table *codepage)
238 wchar_t wchar_to; /* needed to quiet sparse */
240 /* special case for utf8 to handle no plane0 chars */
241 if (!strcmp(codepage->charset, "utf8")) {
243 * convert utf8 -> utf16, we assume we have enough space
244 * as caller should have assumed conversion does not overflow
245 * in destination len is length in wchar_t units (16bits)
247 i = utf8s_to_utf16s(from, len, UTF16_LITTLE_ENDIAN,
250 /* if success terminate and exit */
254 * if fails fall back to UCS encoding as this
255 * function should not return negative values
256 * currently can fail only if source contains
257 * invalid encoded characters
261 for (i = 0; len > 0 && *from; i++, from += charlen, len -= charlen) {
262 charlen = codepage->char2uni(from, len, &wchar_to);
264 /* A question mark */
268 put_unaligned_le16(wchar_to, &to[i]);
272 put_unaligned_le16(0, &to[i]);
277 * smb_strndup_from_utf16() - copy a string from wire format to the local
279 * @src: source string
280 * @maxlen: don't walk past this many bytes in the source string
281 * @is_unicode: is this a unicode string?
282 * @codepage: destination codepage
284 * Take a string given by the server, convert it to the local codepage and
285 * put it in a new buffer. Returns a pointer to the new string or NULL on
288 * Return: destination string buffer or error ptr
290 char *smb_strndup_from_utf16(const char *src, const int maxlen,
291 const bool is_unicode,
292 const struct nls_table *codepage)
298 len = smb_utf16_bytes((__le16 *)src, maxlen, codepage);
299 len += nls_nullsize(codepage);
300 dst = kmalloc(len, KSMBD_DEFAULT_GFP);
302 return ERR_PTR(-ENOMEM);
303 ret = smb_from_utf16(dst, (__le16 *)src, len, maxlen, codepage,
307 return ERR_PTR(-EINVAL);
310 len = strnlen(src, maxlen);
312 dst = kmalloc(len, KSMBD_DEFAULT_GFP);
314 return ERR_PTR(-ENOMEM);
315 strscpy(dst, src, len);
322 * Convert 16 bit Unicode pathname to wire format from string in current code
323 * page. Conversion may involve remapping up the six characters that are
324 * only legal in POSIX-like OS (if they are present in the string). Path
325 * names are little endian 16 bit Unicode on the wire
328 * smbConvertToUTF16() - convert string from local charset to utf16
329 * @target: destination buffer
330 * @source: source buffer
331 * @srclen: source buffer size (in bytes)
332 * @cp: codepage to which characters should be converted
333 * @mapchar: should characters be remapped according to the mapchars option?
335 * Convert 16 bit Unicode pathname to wire format from string in current code
336 * page. Conversion may involve remapping up the six characters that are
337 * only legal in POSIX-like OS (if they are present in the string). Path
338 * names are little endian 16 bit Unicode on the wire
340 * Return: char length after conversion
342 int smbConvertToUTF16(__le16 *target, const char *source, int srclen,
343 const struct nls_table *cp, int mapchars)
349 wchar_t wchar_to[6]; /* UTF-16 */
354 return smb_strtoUTF16(target, source, srclen, cp);
356 for (i = 0, j = 0; i < srclen; j++) {
357 src_char = source[i];
361 put_unaligned(0, &target[j]);
364 dst_char = cpu_to_le16(UNI_COLON);
367 dst_char = cpu_to_le16(UNI_ASTERISK);
370 dst_char = cpu_to_le16(UNI_QUESTION);
373 dst_char = cpu_to_le16(UNI_LESSTHAN);
376 dst_char = cpu_to_le16(UNI_GRTRTHAN);
379 dst_char = cpu_to_le16(UNI_PIPE);
382 * FIXME: We can not handle remapping backslash (UNI_SLASH)
383 * until all the calls to build_path_from_dentry are modified,
384 * as they use backslash as separator.
387 charlen = cp->char2uni(source + i, srclen - i, &tmp);
388 dst_char = cpu_to_le16(tmp);
391 * if no match, use question mark, which at least in
392 * some cases serves as wild card
397 /* convert SURROGATE_PAIR */
398 if (strcmp(cp->charset, "utf8"))
400 if (*(source + i) & 0x80) {
401 charlen = utf8_to_utf32(source + i, 6, &u);
406 ret = utf8s_to_utf16s(source + i, charlen,
413 dst_char = cpu_to_le16(*wchar_to);
415 /* 1-3bytes UTF-8 to 2bytes UTF-16 */
416 put_unaligned(dst_char, &target[j]);
417 else if (charlen == 4) {
419 * 4bytes UTF-8(surrogate pair) to 4bytes UTF-16
420 * 7-8bytes UTF-8(IVS) divided to 2 UTF-16
421 * (charlen=3+4 or 4+4)
423 put_unaligned(dst_char, &target[j]);
424 dst_char = cpu_to_le16(*(wchar_to + 1));
426 put_unaligned(dst_char, &target[j]);
427 } else if (charlen >= 5) {
428 /* 5-6bytes UTF-8 to 6bytes UTF-16 */
429 put_unaligned(dst_char, &target[j]);
430 dst_char = cpu_to_le16(*(wchar_to + 1));
432 put_unaligned(dst_char, &target[j]);
433 dst_char = cpu_to_le16(*(wchar_to + 2));
435 put_unaligned(dst_char, &target[j]);
440 dst_char = cpu_to_le16(0x003f);
446 * character may take more than one byte in the source string,
447 * but will take exactly two bytes in the target string
450 put_unaligned(dst_char, &target[j]);