blob: a2b2355e7f019c3bac02da2a6ffc3c9786c39f57 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/cifs_unicode.c
3 *
Steve Frenchd185cda2009-04-30 17:45:10 +00004 * Copyright (c) International Business Machines Corp., 2000,2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Modified by Steve French (sfrench@us.ibm.com)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
Steve French221601c2007-06-05 20:35:06 +00009 * the Free Software Foundation; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * (at your option) any later version.
Steve French221601c2007-06-05 20:35:06 +000011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 * the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
Steve French221601c2007-06-05 20:35:06 +000018 * along with this program; if not, write to the Free Software
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Steve French2baa2682014-09-27 02:19:01 -050023#include "cifs_fs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "cifs_unicode.h"
25#include "cifs_uniupr.h"
26#include "cifspdu.h"
Steve French39798772006-05-31 22:40:51 +000027#include "cifsglob.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "cifs_debug.h"
29
Steve French2baa2682014-09-27 02:19:01 -050030int cifs_remap(struct cifs_sb_info *cifs_sb)
31{
32 int map_type;
33
34 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR)
35 map_type = SFM_MAP_UNI_RSVD;
36 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR)
37 map_type = SFU_MAP_UNI_RSVD;
38 else
39 map_type = NO_MAP_UNI_RSVD;
40
41 return map_type;
42}
43
Steve Frenchb6938552014-09-25 13:20:05 -050044/* Convert character using the SFU - "Services for Unix" remapping range */
45static bool
46convert_sfu_char(const __u16 src_char, char *target)
Jeff Layton7fabf0c2009-04-30 06:46:15 -040047{
Jeff Layton7fabf0c2009-04-30 06:46:15 -040048 /*
49 * BB: Cannot handle remapping UNI_SLASH until all the calls to
50 * build_path_from_dentry are modified, as they use slash as
51 * separator.
52 */
Jeff Laytonba2dbf32011-01-20 13:36:51 -050053 switch (src_char) {
Jeff Layton7fabf0c2009-04-30 06:46:15 -040054 case UNI_COLON:
55 *target = ':';
56 break;
Jeff Layton581ade42011-04-05 15:02:37 -040057 case UNI_ASTERISK:
Jeff Layton7fabf0c2009-04-30 06:46:15 -040058 *target = '*';
59 break;
60 case UNI_QUESTION:
61 *target = '?';
62 break;
63 case UNI_PIPE:
64 *target = '|';
65 break;
66 case UNI_GRTRTHAN:
67 *target = '>';
68 break;
69 case UNI_LESSTHAN:
70 *target = '<';
71 break;
72 default:
Steve Frenchb6938552014-09-25 13:20:05 -050073 return false;
Jeff Layton7fabf0c2009-04-30 06:46:15 -040074 }
Steve Frenchb6938552014-09-25 13:20:05 -050075 return true;
76}
Jeff Layton7fabf0c2009-04-30 06:46:15 -040077
Steve Frenchb6938552014-09-25 13:20:05 -050078/* Convert character using the SFM - "Services for Mac" remapping range */
79static bool
80convert_sfm_char(const __u16 src_char, char *target)
81{
Björn JACKE7e46f092017-06-01 11:00:06 +020082 if (src_char >= 0xF001 && src_char <= 0xF01F) {
83 *target = src_char - 0xF000;
84 return true;
85 }
Steve Frenchb6938552014-09-25 13:20:05 -050086 switch (src_char) {
87 case SFM_COLON:
88 *target = ':';
89 break;
Björn Jacke85435d72017-05-05 04:36:16 +020090 case SFM_DOUBLEQUOTE:
91 *target = '"';
92 break;
Steve Frenchb6938552014-09-25 13:20:05 -050093 case SFM_ASTERISK:
94 *target = '*';
95 break;
96 case SFM_QUESTION:
97 *target = '?';
98 break;
99 case SFM_PIPE:
100 *target = '|';
101 break;
102 case SFM_GRTRTHAN:
103 *target = '>';
104 break;
105 case SFM_LESSTHAN:
106 *target = '<';
107 break;
Steve French45e8a252016-06-22 21:07:32 -0500108 case SFM_SPACE:
109 *target = ' ';
110 break;
111 case SFM_PERIOD:
112 *target = '.';
113 break;
Steve Frenchb6938552014-09-25 13:20:05 -0500114 default:
115 return false;
116 }
117 return true;
118}
Jeff Layton7fabf0c2009-04-30 06:46:15 -0400119
Steve Frenchb6938552014-09-25 13:20:05 -0500120
121/*
122 * cifs_mapchar - convert a host-endian char to proper char in codepage
123 * @target - where converted character should be copied
124 * @src_char - 2 byte host-endian source character
125 * @cp - codepage to which character should be converted
126 * @map_type - How should the 7 NTFS/SMB reserved characters be mapped to UCS2?
127 *
128 * This function handles the conversion of a single character. It is the
129 * responsibility of the caller to ensure that the target buffer is large
130 * enough to hold the result of the conversion (at least NLS_MAX_CHARSET_SIZE).
131 */
132static int
Nakajima Akirab2910302015-04-09 17:27:39 +0900133cifs_mapchar(char *target, const __u16 *from, const struct nls_table *cp,
Steve Frenchb6938552014-09-25 13:20:05 -0500134 int maptype)
135{
136 int len = 1;
Nakajima Akirab2910302015-04-09 17:27:39 +0900137 __u16 src_char;
138
139 src_char = *from;
Steve Frenchb6938552014-09-25 13:20:05 -0500140
141 if ((maptype == SFM_MAP_UNI_RSVD) && convert_sfm_char(src_char, target))
142 return len;
143 else if ((maptype == SFU_MAP_UNI_RSVD) &&
144 convert_sfu_char(src_char, target))
145 return len;
146
147 /* if character not one of seven in special remap set */
Jeff Laytonba2dbf32011-01-20 13:36:51 -0500148 len = cp->uni2char(src_char, target, NLS_MAX_CHARSET_SIZE);
Nakajima Akirab2910302015-04-09 17:27:39 +0900149 if (len <= 0)
150 goto surrogate_pair;
151
152 return len;
153
154surrogate_pair:
155 /* convert SURROGATE_PAIR and IVS */
156 if (strcmp(cp->charset, "utf8"))
157 goto unknown;
158 len = utf16s_to_utf8s(from, 3, UTF16_LITTLE_ENDIAN, target, 6);
159 if (len <= 0)
160 goto unknown;
161 return len;
162
163unknown:
164 *target = '?';
165 len = 1;
Steve Frenchb6938552014-09-25 13:20:05 -0500166 return len;
Jeff Layton7fabf0c2009-04-30 06:46:15 -0400167}
168
169/*
Steve Frenchacbbb762012-01-18 22:32:33 -0600170 * cifs_from_utf16 - convert utf16le string to local charset
Jeff Layton7fabf0c2009-04-30 06:46:15 -0400171 * @to - destination buffer
172 * @from - source buffer
173 * @tolen - destination buffer size (in bytes)
174 * @fromlen - source buffer size (in bytes)
175 * @codepage - codepage to which characters should be converted
176 * @mapchar - should characters be remapped according to the mapchars option?
177 *
Steve Frenchacbbb762012-01-18 22:32:33 -0600178 * Convert a little-endian utf16le string (as sent by the server) to a string
Jeff Layton7fabf0c2009-04-30 06:46:15 -0400179 * in the provided codepage. The tolen and fromlen parameters are to ensure
180 * that the code doesn't walk off of the end of the buffer (which is always
181 * a danger if the alignment of the source buffer is off). The destination
182 * string is always properly null terminated and fits in the destination
183 * buffer. Returns the length of the destination string in bytes (including
184 * null terminator).
185 *
186 * Note that some windows versions actually send multiword UTF-16 characters
Steve Frenchacbbb762012-01-18 22:32:33 -0600187 * instead of straight UTF16-2. The linux nls routines however aren't able to
Jeff Layton7fabf0c2009-04-30 06:46:15 -0400188 * deal with those characters properly. In the event that we get some of
189 * those characters, they won't be translated properly.
190 */
191int
Steve Frenchacbbb762012-01-18 22:32:33 -0600192cifs_from_utf16(char *to, const __le16 *from, int tolen, int fromlen,
Steve Frenchb6938552014-09-25 13:20:05 -0500193 const struct nls_table *codepage, int map_type)
Jeff Layton7fabf0c2009-04-30 06:46:15 -0400194{
195 int i, charlen, safelen;
196 int outlen = 0;
197 int nullsize = nls_nullsize(codepage);
198 int fromwords = fromlen / 2;
199 char tmp[NLS_MAX_CHARSET_SIZE];
Nakajima Akirab2910302015-04-09 17:27:39 +0900200 __u16 ftmp[3]; /* ftmp[3] = 3array x 2bytes = 6bytes UTF-16 */
Jeff Layton7fabf0c2009-04-30 06:46:15 -0400201
202 /*
203 * because the chars can be of varying widths, we need to take care
204 * not to overflow the destination buffer when we get close to the
205 * end of it. Until we get to this offset, we don't need to check
206 * for overflow however.
207 */
208 safelen = tolen - (NLS_MAX_CHARSET_SIZE + nullsize);
209
Jeff Laytonba2dbf32011-01-20 13:36:51 -0500210 for (i = 0; i < fromwords; i++) {
Nakajima Akirab2910302015-04-09 17:27:39 +0900211 ftmp[0] = get_unaligned_le16(&from[i]);
212 if (ftmp[0] == 0)
Jeff Laytonba2dbf32011-01-20 13:36:51 -0500213 break;
Nakajima Akirab2910302015-04-09 17:27:39 +0900214 if (i + 1 < fromwords)
215 ftmp[1] = get_unaligned_le16(&from[i + 1]);
216 else
217 ftmp[1] = 0;
218 if (i + 2 < fromwords)
219 ftmp[2] = get_unaligned_le16(&from[i + 2]);
220 else
221 ftmp[2] = 0;
Jeff Laytonba2dbf32011-01-20 13:36:51 -0500222
Jeff Layton7fabf0c2009-04-30 06:46:15 -0400223 /*
224 * check to see if converting this character might make the
225 * conversion bleed into the null terminator
226 */
227 if (outlen >= safelen) {
Steve Frenchb6938552014-09-25 13:20:05 -0500228 charlen = cifs_mapchar(tmp, ftmp, codepage, map_type);
Jeff Layton7fabf0c2009-04-30 06:46:15 -0400229 if ((outlen + charlen) > (tolen - nullsize))
230 break;
231 }
232
233 /* put converted char into 'to' buffer */
Steve Frenchb6938552014-09-25 13:20:05 -0500234 charlen = cifs_mapchar(&to[outlen], ftmp, codepage, map_type);
Jeff Layton7fabf0c2009-04-30 06:46:15 -0400235 outlen += charlen;
Nakajima Akirab2910302015-04-09 17:27:39 +0900236
237 /* charlen (=bytes of UTF-8 for 1 character)
238 * 4bytes UTF-8(surrogate pair) is charlen=4
239 * (4bytes UTF-16 code)
240 * 7-8bytes UTF-8(IVS) is charlen=3+4 or 4+4
241 * (2 UTF-8 pairs divided to 2 UTF-16 pairs) */
242 if (charlen == 4)
243 i++;
244 else if (charlen >= 5)
245 /* 5-6bytes UTF-8 */
246 i += 2;
Jeff Layton7fabf0c2009-04-30 06:46:15 -0400247 }
248
249 /* properly null-terminate string */
250 for (i = 0; i < nullsize; i++)
251 to[outlen++] = 0;
252
253 return outlen;
254}
255
256/*
Steve Frenchacbbb762012-01-18 22:32:33 -0600257 * NAME: cifs_strtoUTF16()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 *
259 * FUNCTION: Convert character string to unicode string
260 *
261 */
262int
Steve Frenchacbbb762012-01-18 22:32:33 -0600263cifs_strtoUTF16(__le16 *to, const char *from, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 const struct nls_table *codepage)
265{
266 int charlen;
267 int i;
Jeff Laytonba2dbf32011-01-20 13:36:51 -0500268 wchar_t wchar_to; /* needed to quiet sparse */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Frediano Zigliofd3ba422012-08-07 04:33:03 -0500270 /* special case for utf8 to handle no plane0 chars */
271 if (!strcmp(codepage->charset, "utf8")) {
272 /*
273 * convert utf8 -> utf16, we assume we have enough space
274 * as caller should have assumed conversion does not overflow
275 * in destination len is length in wchar_t units (16bits)
276 */
277 i = utf8s_to_utf16s(from, len, UTF16_LITTLE_ENDIAN,
278 (wchar_t *) to, len);
279
280 /* if success terminate and exit */
281 if (i >= 0)
282 goto success;
283 /*
284 * if fails fall back to UCS encoding as this
285 * function should not return negative values
286 * currently can fail only if source contains
287 * invalid encoded characters
288 */
289 }
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 for (i = 0; len && *from; i++, from += charlen, len -= charlen) {
Jeff Laytonba2dbf32011-01-20 13:36:51 -0500292 charlen = codepage->char2uni(from, len, &wchar_to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (charlen < 1) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500294 cifs_dbg(VFS, "strtoUTF16: char2uni of 0x%x returned %d\n",
295 *from, charlen);
Steve French69114082005-11-10 19:28:44 -0800296 /* A question mark */
Jeff Laytonba2dbf32011-01-20 13:36:51 -0500297 wchar_to = 0x003f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 charlen = 1;
Jeff Laytonba2dbf32011-01-20 13:36:51 -0500299 }
300 put_unaligned_le16(wchar_to, &to[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302
Frediano Zigliofd3ba422012-08-07 04:33:03 -0500303success:
Jeff Laytonba2dbf32011-01-20 13:36:51 -0500304 put_unaligned_le16(0, &to[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return i;
306}
307
Jeff Layton066ce682009-04-30 07:16:14 -0400308/*
Nakajima Akirab2910302015-04-09 17:27:39 +0900309 * cifs_utf16_bytes - how long will a string be after conversion?
310 * @utf16 - pointer to input string
311 * @maxbytes - don't go past this many bytes of input string
312 * @codepage - destination codepage
313 *
314 * Walk a utf16le string and return the number of bytes that the string will
315 * be after being converted to the given charset, not including any null
316 * termination required. Don't walk past maxbytes in the source buffer.
317 */
318int
319cifs_utf16_bytes(const __le16 *from, int maxbytes,
320 const struct nls_table *codepage)
321{
322 int i;
323 int charlen, outlen = 0;
324 int maxwords = maxbytes / 2;
325 char tmp[NLS_MAX_CHARSET_SIZE];
326 __u16 ftmp[3];
327
328 for (i = 0; i < maxwords; i++) {
329 ftmp[0] = get_unaligned_le16(&from[i]);
330 if (ftmp[0] == 0)
331 break;
332 if (i + 1 < maxwords)
333 ftmp[1] = get_unaligned_le16(&from[i + 1]);
334 else
335 ftmp[1] = 0;
336 if (i + 2 < maxwords)
337 ftmp[2] = get_unaligned_le16(&from[i + 2]);
338 else
339 ftmp[2] = 0;
340
341 charlen = cifs_mapchar(tmp, ftmp, codepage, NO_MAP_UNI_RSVD);
342 outlen += charlen;
343 }
344
345 return outlen;
346}
347
348/*
Steve Frenchacbbb762012-01-18 22:32:33 -0600349 * cifs_strndup_from_utf16 - copy a string from wire format to the local
350 * codepage
Jeff Layton066ce682009-04-30 07:16:14 -0400351 * @src - source string
352 * @maxlen - don't walk past this many bytes in the source string
353 * @is_unicode - is this a unicode string?
354 * @codepage - destination codepage
355 *
356 * Take a string given by the server, convert it to the local codepage and
357 * put it in a new buffer. Returns a pointer to the new string or NULL on
358 * error.
359 */
360char *
Steve Frenchacbbb762012-01-18 22:32:33 -0600361cifs_strndup_from_utf16(const char *src, const int maxlen,
362 const bool is_unicode, const struct nls_table *codepage)
Jeff Layton066ce682009-04-30 07:16:14 -0400363{
364 int len;
365 char *dst;
366
367 if (is_unicode) {
Steve Frenchacbbb762012-01-18 22:32:33 -0600368 len = cifs_utf16_bytes((__le16 *) src, maxlen, codepage);
Jeff Layton066ce682009-04-30 07:16:14 -0400369 len += nls_nullsize(codepage);
370 dst = kmalloc(len, GFP_KERNEL);
371 if (!dst)
372 return NULL;
Steve Frenchacbbb762012-01-18 22:32:33 -0600373 cifs_from_utf16(dst, (__le16 *) src, len, maxlen, codepage,
Steve Frenchb6938552014-09-25 13:20:05 -0500374 NO_MAP_UNI_RSVD);
Jeff Layton066ce682009-04-30 07:16:14 -0400375 } else {
376 len = strnlen(src, maxlen);
377 len++;
378 dst = kmalloc(len, GFP_KERNEL);
379 if (!dst)
380 return NULL;
381 strlcpy(dst, src, len);
382 }
383
384 return dst;
385}
386
Steve Frencha4153cb2014-09-25 14:01:34 -0500387static __le16 convert_to_sfu_char(char src_char)
388{
389 __le16 dest_char;
390
391 switch (src_char) {
392 case ':':
393 dest_char = cpu_to_le16(UNI_COLON);
394 break;
395 case '*':
396 dest_char = cpu_to_le16(UNI_ASTERISK);
397 break;
398 case '?':
399 dest_char = cpu_to_le16(UNI_QUESTION);
400 break;
401 case '<':
402 dest_char = cpu_to_le16(UNI_LESSTHAN);
403 break;
404 case '>':
405 dest_char = cpu_to_le16(UNI_GRTRTHAN);
406 break;
407 case '|':
408 dest_char = cpu_to_le16(UNI_PIPE);
409 break;
410 default:
411 dest_char = 0;
412 }
413
414 return dest_char;
415}
416
Steve French45e8a252016-06-22 21:07:32 -0500417static __le16 convert_to_sfm_char(char src_char, bool end_of_string)
Steve Frencha4153cb2014-09-25 14:01:34 -0500418{
419 __le16 dest_char;
420
Björn JACKE7e46f092017-06-01 11:00:06 +0200421 if (src_char >= 0x01 && src_char <= 0x1F) {
422 dest_char = cpu_to_le16(src_char + 0xF000);
423 return dest_char;
424 }
Steve Frencha4153cb2014-09-25 14:01:34 -0500425 switch (src_char) {
426 case ':':
427 dest_char = cpu_to_le16(SFM_COLON);
428 break;
Björn Jacke85435d72017-05-05 04:36:16 +0200429 case '"':
430 dest_char = cpu_to_le16(SFM_DOUBLEQUOTE);
431 break;
Steve Frencha4153cb2014-09-25 14:01:34 -0500432 case '*':
433 dest_char = cpu_to_le16(SFM_ASTERISK);
434 break;
435 case '?':
436 dest_char = cpu_to_le16(SFM_QUESTION);
437 break;
438 case '<':
439 dest_char = cpu_to_le16(SFM_LESSTHAN);
440 break;
441 case '>':
442 dest_char = cpu_to_le16(SFM_GRTRTHAN);
443 break;
444 case '|':
445 dest_char = cpu_to_le16(SFM_PIPE);
446 break;
Steve French45e8a252016-06-22 21:07:32 -0500447 case '.':
448 if (end_of_string)
449 dest_char = cpu_to_le16(SFM_PERIOD);
450 else
451 dest_char = 0;
452 break;
453 case ' ':
454 if (end_of_string)
455 dest_char = cpu_to_le16(SFM_SPACE);
456 else
457 dest_char = 0;
458 break;
Steve Frencha4153cb2014-09-25 14:01:34 -0500459 default:
460 dest_char = 0;
461 }
462
463 return dest_char;
464}
465
Jeff Layton84cdf742011-01-20 13:36:51 -0500466/*
467 * Convert 16 bit Unicode pathname to wire format from string in current code
468 * page. Conversion may involve remapping up the six characters that are
469 * only legal in POSIX-like OS (if they are present in the string). Path
470 * names are little endian 16 bit Unicode on the wire
471 */
472int
Steve Frenchacbbb762012-01-18 22:32:33 -0600473cifsConvertToUTF16(__le16 *target, const char *source, int srclen,
Steve Frencha4153cb2014-09-25 14:01:34 -0500474 const struct nls_table *cp, int map_chars)
Jeff Layton84cdf742011-01-20 13:36:51 -0500475{
Steve Frenchce36d9a2014-06-22 20:38:49 -0500476 int i, charlen;
477 int j = 0;
Jeff Layton84cdf742011-01-20 13:36:51 -0500478 char src_char;
Jeff Layton581ade42011-04-05 15:02:37 -0400479 __le16 dst_char;
480 wchar_t tmp;
Nakajima Akirab2910302015-04-09 17:27:39 +0900481 wchar_t *wchar_to; /* UTF-16 */
482 int ret;
483 unicode_t u;
Jeff Layton84cdf742011-01-20 13:36:51 -0500484
Steve Frencha4153cb2014-09-25 14:01:34 -0500485 if (map_chars == NO_MAP_UNI_RSVD)
Steve Frenchacbbb762012-01-18 22:32:33 -0600486 return cifs_strtoUTF16(target, source, PATH_MAX, cp);
Jeff Layton84cdf742011-01-20 13:36:51 -0500487
Nakajima Akirab2910302015-04-09 17:27:39 +0900488 wchar_to = kzalloc(6, GFP_KERNEL);
489
Steve Frenchce36d9a2014-06-22 20:38:49 -0500490 for (i = 0; i < srclen; j++) {
Jeff Layton84cdf742011-01-20 13:36:51 -0500491 src_char = source[i];
Jeff Layton11379b52011-05-17 15:28:21 -0400492 charlen = 1;
Steve Frencha4153cb2014-09-25 14:01:34 -0500493
494 /* check if end of string */
495 if (src_char == 0)
Steve Frenchacbbb762012-01-18 22:32:33 -0600496 goto ctoUTF16_out;
Steve Frencha4153cb2014-09-25 14:01:34 -0500497
498 /* see if we must remap this char */
499 if (map_chars == SFU_MAP_UNI_RSVD)
500 dst_char = convert_to_sfu_char(src_char);
Steve French45e8a252016-06-22 21:07:32 -0500501 else if (map_chars == SFM_MAP_UNI_RSVD) {
502 bool end_of_string;
503
504 if (i == srclen - 1)
505 end_of_string = true;
506 else
507 end_of_string = false;
508
509 dst_char = convert_to_sfm_char(src_char, end_of_string);
510 } else
Steve Frencha4153cb2014-09-25 14:01:34 -0500511 dst_char = 0;
Jeff Layton84cdf742011-01-20 13:36:51 -0500512 /*
513 * FIXME: We can not handle remapping backslash (UNI_SLASH)
514 * until all the calls to build_path_from_dentry are modified,
515 * as they use backslash as separator.
516 */
Steve Frencha4153cb2014-09-25 14:01:34 -0500517 if (dst_char == 0) {
Jeff Layton581ade42011-04-05 15:02:37 -0400518 charlen = cp->char2uni(source + i, srclen - i, &tmp);
519 dst_char = cpu_to_le16(tmp);
520
Jeff Layton84cdf742011-01-20 13:36:51 -0500521 /*
522 * if no match, use question mark, which at least in
523 * some cases serves as wild card
524 */
Nakajima Akirab2910302015-04-09 17:27:39 +0900525 if (charlen > 0)
526 goto ctoUTF16;
527
528 /* convert SURROGATE_PAIR */
529 if (strcmp(cp->charset, "utf8") || !wchar_to)
530 goto unknown;
531 if (*(source + i) & 0x80) {
532 charlen = utf8_to_utf32(source + i, 6, &u);
533 if (charlen < 0)
534 goto unknown;
535 } else
536 goto unknown;
537 ret = utf8s_to_utf16s(source + i, charlen,
538 UTF16_LITTLE_ENDIAN,
539 wchar_to, 6);
540 if (ret < 0)
541 goto unknown;
542
543 i += charlen;
544 dst_char = cpu_to_le16(*wchar_to);
545 if (charlen <= 3)
546 /* 1-3bytes UTF-8 to 2bytes UTF-16 */
547 put_unaligned(dst_char, &target[j]);
548 else if (charlen == 4) {
549 /* 4bytes UTF-8(surrogate pair) to 4bytes UTF-16
550 * 7-8bytes UTF-8(IVS) divided to 2 UTF-16
551 * (charlen=3+4 or 4+4) */
552 put_unaligned(dst_char, &target[j]);
553 dst_char = cpu_to_le16(*(wchar_to + 1));
554 j++;
555 put_unaligned(dst_char, &target[j]);
556 } else if (charlen >= 5) {
557 /* 5-6bytes UTF-8 to 6bytes UTF-16 */
558 put_unaligned(dst_char, &target[j]);
559 dst_char = cpu_to_le16(*(wchar_to + 1));
560 j++;
561 put_unaligned(dst_char, &target[j]);
562 dst_char = cpu_to_le16(*(wchar_to + 2));
563 j++;
564 put_unaligned(dst_char, &target[j]);
Jeff Layton84cdf742011-01-20 13:36:51 -0500565 }
Nakajima Akirab2910302015-04-09 17:27:39 +0900566 continue;
567
568unknown:
569 dst_char = cpu_to_le16(0x003f);
570 charlen = 1;
Jeff Layton84cdf742011-01-20 13:36:51 -0500571 }
Nakajima Akirab2910302015-04-09 17:27:39 +0900572
573ctoUTF16:
Jeff Layton11379b52011-05-17 15:28:21 -0400574 /*
575 * character may take more than one byte in the source string,
576 * but will take exactly two bytes in the target string
577 */
578 i += charlen;
Jeff Layton581ade42011-04-05 15:02:37 -0400579 put_unaligned(dst_char, &target[j]);
Jeff Layton84cdf742011-01-20 13:36:51 -0500580 }
581
Steve Frenchacbbb762012-01-18 22:32:33 -0600582ctoUTF16_out:
Steve Frenchce36d9a2014-06-22 20:38:49 -0500583 put_unaligned(0, &target[j]); /* Null terminate target unicode string */
Nakajima Akirab2910302015-04-09 17:27:39 +0900584 kfree(wchar_to);
Jeff Laytonc73f6932012-09-18 14:21:01 -0400585 return j;
Jeff Layton84cdf742011-01-20 13:36:51 -0500586}
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400587
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400588/*
589 * cifs_local_to_utf16_bytes - how long will a string be after conversion?
590 * @from - pointer to input string
591 * @maxbytes - don't go past this many bytes of input string
592 * @codepage - source codepage
593 *
594 * Walk a string and return the number of bytes that the string will
595 * be after being converted to the given charset, not including any null
596 * termination required. Don't walk past maxbytes in the source buffer.
597 */
598
599static int
600cifs_local_to_utf16_bytes(const char *from, int len,
601 const struct nls_table *codepage)
602{
603 int charlen;
604 int i;
605 wchar_t wchar_to;
606
607 for (i = 0; len && *from; i++, from += charlen, len -= charlen) {
608 charlen = codepage->char2uni(from, len, &wchar_to);
609 /* Failed conversion defaults to a question mark */
610 if (charlen < 1)
611 charlen = 1;
612 }
613 return 2 * i; /* UTF16 characters are two bytes */
614}
615
616/*
617 * cifs_strndup_to_utf16 - copy a string to wire format from the local codepage
618 * @src - source string
619 * @maxlen - don't walk past this many bytes in the source string
620 * @utf16_len - the length of the allocated string in bytes (including null)
621 * @cp - source codepage
622 * @remap - map special chars
623 *
624 * Take a string convert it from the local codepage to UTF16 and
625 * put it in a new buffer. Returns a pointer to the new string or NULL on
626 * error.
627 */
628__le16 *
629cifs_strndup_to_utf16(const char *src, const int maxlen, int *utf16_len,
630 const struct nls_table *cp, int remap)
631{
632 int len;
633 __le16 *dst;
634
635 len = cifs_local_to_utf16_bytes(src, maxlen, cp);
636 len += 2; /* NULL */
637 dst = kmalloc(len, GFP_KERNEL);
638 if (!dst) {
639 *utf16_len = 0;
640 return NULL;
641 }
642 cifsConvertToUTF16(dst, src, strlen(src), cp, remap);
643 *utf16_len = len;
644 return dst;
645}