GNU Linux-libre 4.9.315-gnu1
[releases.git] / fs / cifs / cifs_unicode.c
1 /*
2  *   fs/cifs/cifs_unicode.c
3  *
4  *   Copyright (c) International Business Machines  Corp., 2000,2009
5  *   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
9  *   the Free Software Foundation; either version 2 of the License, or
10  *   (at your option) any later version.
11  *
12  *   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
18  *   along with this program;  if not, write to the Free Software
19  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  */
21 #include <linux/fs.h>
22 #include <linux/slab.h>
23 #include "cifs_fs_sb.h"
24 #include "cifs_unicode.h"
25 #include "cifs_uniupr.h"
26 #include "cifspdu.h"
27 #include "cifsglob.h"
28 #include "cifs_debug.h"
29
30 int 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
44 /* Convert character using the SFU - "Services for Unix" remapping range */
45 static bool
46 convert_sfu_char(const __u16 src_char, char *target)
47 {
48         /*
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          */
53         switch (src_char) {
54         case UNI_COLON:
55                 *target = ':';
56                 break;
57         case UNI_ASTERISK:
58                 *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:
73                 return false;
74         }
75         return true;
76 }
77
78 /* Convert character using the SFM - "Services for Mac" remapping range */
79 static bool
80 convert_sfm_char(const __u16 src_char, char *target)
81 {
82         switch (src_char) {
83         case SFM_COLON:
84                 *target = ':';
85                 break;
86         case SFM_DOUBLEQUOTE:
87                 *target = '"';
88                 break;
89         case SFM_ASTERISK:
90                 *target = '*';
91                 break;
92         case SFM_QUESTION:
93                 *target = '?';
94                 break;
95         case SFM_PIPE:
96                 *target = '|';
97                 break;
98         case SFM_GRTRTHAN:
99                 *target = '>';
100                 break;
101         case SFM_LESSTHAN:
102                 *target = '<';
103                 break;
104         case SFM_SPACE:
105                 *target = ' ';
106                 break;
107         case SFM_PERIOD:
108                 *target = '.';
109                 break;
110         default:
111                 return false;
112         }
113         return true;
114 }
115
116
117 /*
118  * cifs_mapchar - convert a host-endian char to proper char in codepage
119  * @target - where converted character should be copied
120  * @src_char - 2 byte host-endian source character
121  * @cp - codepage to which character should be converted
122  * @map_type - How should the 7 NTFS/SMB reserved characters be mapped to UCS2?
123  *
124  * This function handles the conversion of a single character. It is the
125  * responsibility of the caller to ensure that the target buffer is large
126  * enough to hold the result of the conversion (at least NLS_MAX_CHARSET_SIZE).
127  */
128 static int
129 cifs_mapchar(char *target, const __u16 *from, const struct nls_table *cp,
130              int maptype)
131 {
132         int len = 1;
133         __u16 src_char;
134
135         src_char = *from;
136
137         if ((maptype == SFM_MAP_UNI_RSVD) && convert_sfm_char(src_char, target))
138                 return len;
139         else if ((maptype == SFU_MAP_UNI_RSVD) &&
140                   convert_sfu_char(src_char, target))
141                 return len;
142
143         /* if character not one of seven in special remap set */
144         len = cp->uni2char(src_char, target, NLS_MAX_CHARSET_SIZE);
145         if (len <= 0)
146                 goto surrogate_pair;
147
148         return len;
149
150 surrogate_pair:
151         /* convert SURROGATE_PAIR and IVS */
152         if (strcmp(cp->charset, "utf8"))
153                 goto unknown;
154         len = utf16s_to_utf8s(from, 3, UTF16_LITTLE_ENDIAN, target, 6);
155         if (len <= 0)
156                 goto unknown;
157         return len;
158
159 unknown:
160         *target = '?';
161         len = 1;
162         return len;
163 }
164
165 /*
166  * cifs_from_utf16 - convert utf16le string to local charset
167  * @to - destination buffer
168  * @from - source buffer
169  * @tolen - destination buffer size (in bytes)
170  * @fromlen - source buffer size (in bytes)
171  * @codepage - codepage to which characters should be converted
172  * @mapchar - should characters be remapped according to the mapchars option?
173  *
174  * Convert a little-endian utf16le string (as sent by the server) to a string
175  * in the provided codepage. The tolen and fromlen parameters are to ensure
176  * that the code doesn't walk off of the end of the buffer (which is always
177  * a danger if the alignment of the source buffer is off). The destination
178  * string is always properly null terminated and fits in the destination
179  * buffer. Returns the length of the destination string in bytes (including
180  * null terminator).
181  *
182  * Note that some windows versions actually send multiword UTF-16 characters
183  * instead of straight UTF16-2. The linux nls routines however aren't able to
184  * deal with those characters properly. In the event that we get some of
185  * those characters, they won't be translated properly.
186  */
187 int
188 cifs_from_utf16(char *to, const __le16 *from, int tolen, int fromlen,
189                 const struct nls_table *codepage, int map_type)
190 {
191         int i, charlen, safelen;
192         int outlen = 0;
193         int nullsize = nls_nullsize(codepage);
194         int fromwords = fromlen / 2;
195         char tmp[NLS_MAX_CHARSET_SIZE];
196         __u16 ftmp[3];          /* ftmp[3] = 3array x 2bytes = 6bytes UTF-16 */
197
198         /*
199          * because the chars can be of varying widths, we need to take care
200          * not to overflow the destination buffer when we get close to the
201          * end of it. Until we get to this offset, we don't need to check
202          * for overflow however.
203          */
204         safelen = tolen - (NLS_MAX_CHARSET_SIZE + nullsize);
205
206         for (i = 0; i < fromwords; i++) {
207                 ftmp[0] = get_unaligned_le16(&from[i]);
208                 if (ftmp[0] == 0)
209                         break;
210                 if (i + 1 < fromwords)
211                         ftmp[1] = get_unaligned_le16(&from[i + 1]);
212                 else
213                         ftmp[1] = 0;
214                 if (i + 2 < fromwords)
215                         ftmp[2] = get_unaligned_le16(&from[i + 2]);
216                 else
217                         ftmp[2] = 0;
218
219                 /*
220                  * check to see if converting this character might make the
221                  * conversion bleed into the null terminator
222                  */
223                 if (outlen >= safelen) {
224                         charlen = cifs_mapchar(tmp, ftmp, codepage, map_type);
225                         if ((outlen + charlen) > (tolen - nullsize))
226                                 break;
227                 }
228
229                 /* put converted char into 'to' buffer */
230                 charlen = cifs_mapchar(&to[outlen], ftmp, codepage, map_type);
231                 outlen += charlen;
232
233                 /* charlen (=bytes of UTF-8 for 1 character)
234                  * 4bytes UTF-8(surrogate pair) is charlen=4
235                  *   (4bytes UTF-16 code)
236                  * 7-8bytes UTF-8(IVS) is charlen=3+4 or 4+4
237                  *   (2 UTF-8 pairs divided to 2 UTF-16 pairs) */
238                 if (charlen == 4)
239                         i++;
240                 else if (charlen >= 5)
241                         /* 5-6bytes UTF-8 */
242                         i += 2;
243         }
244
245         /* properly null-terminate string */
246         for (i = 0; i < nullsize; i++)
247                 to[outlen++] = 0;
248
249         return outlen;
250 }
251
252 /*
253  * NAME:        cifs_strtoUTF16()
254  *
255  * FUNCTION:    Convert character string to unicode string
256  *
257  */
258 int
259 cifs_strtoUTF16(__le16 *to, const char *from, int len,
260               const struct nls_table *codepage)
261 {
262         int charlen;
263         int i;
264         wchar_t wchar_to; /* needed to quiet sparse */
265
266         /* special case for utf8 to handle no plane0 chars */
267         if (!strcmp(codepage->charset, "utf8")) {
268                 /*
269                  * convert utf8 -> utf16, we assume we have enough space
270                  * as caller should have assumed conversion does not overflow
271                  * in destination len is length in wchar_t units (16bits)
272                  */
273                 i  = utf8s_to_utf16s(from, len, UTF16_LITTLE_ENDIAN,
274                                        (wchar_t *) to, len);
275
276                 /* if success terminate and exit */
277                 if (i >= 0)
278                         goto success;
279                 /*
280                  * if fails fall back to UCS encoding as this
281                  * function should not return negative values
282                  * currently can fail only if source contains
283                  * invalid encoded characters
284                  */
285         }
286
287         for (i = 0; len && *from; i++, from += charlen, len -= charlen) {
288                 charlen = codepage->char2uni(from, len, &wchar_to);
289                 if (charlen < 1) {
290                         cifs_dbg(VFS, "strtoUTF16: char2uni of 0x%x returned %d\n",
291                                  *from, charlen);
292                         /* A question mark */
293                         wchar_to = 0x003f;
294                         charlen = 1;
295                 }
296                 put_unaligned_le16(wchar_to, &to[i]);
297         }
298
299 success:
300         put_unaligned_le16(0, &to[i]);
301         return i;
302 }
303
304 /*
305  * cifs_utf16_bytes - how long will a string be after conversion?
306  * @utf16 - pointer to input string
307  * @maxbytes - don't go past this many bytes of input string
308  * @codepage - destination codepage
309  *
310  * Walk a utf16le string and return the number of bytes that the string will
311  * be after being converted to the given charset, not including any null
312  * termination required. Don't walk past maxbytes in the source buffer.
313  */
314 int
315 cifs_utf16_bytes(const __le16 *from, int maxbytes,
316                 const struct nls_table *codepage)
317 {
318         int i;
319         int charlen, outlen = 0;
320         int maxwords = maxbytes / 2;
321         char tmp[NLS_MAX_CHARSET_SIZE];
322         __u16 ftmp[3];
323
324         for (i = 0; i < maxwords; i++) {
325                 ftmp[0] = get_unaligned_le16(&from[i]);
326                 if (ftmp[0] == 0)
327                         break;
328                 if (i + 1 < maxwords)
329                         ftmp[1] = get_unaligned_le16(&from[i + 1]);
330                 else
331                         ftmp[1] = 0;
332                 if (i + 2 < maxwords)
333                         ftmp[2] = get_unaligned_le16(&from[i + 2]);
334                 else
335                         ftmp[2] = 0;
336
337                 charlen = cifs_mapchar(tmp, ftmp, codepage, NO_MAP_UNI_RSVD);
338                 outlen += charlen;
339         }
340
341         return outlen;
342 }
343
344 /*
345  * cifs_strndup_from_utf16 - copy a string from wire format to the local
346  * codepage
347  * @src - source string
348  * @maxlen - don't walk past this many bytes in the source string
349  * @is_unicode - is this a unicode string?
350  * @codepage - destination codepage
351  *
352  * Take a string given by the server, convert it to the local codepage and
353  * put it in a new buffer. Returns a pointer to the new string or NULL on
354  * error.
355  */
356 char *
357 cifs_strndup_from_utf16(const char *src, const int maxlen,
358                         const bool is_unicode, const struct nls_table *codepage)
359 {
360         int len;
361         char *dst;
362
363         if (is_unicode) {
364                 len = cifs_utf16_bytes((__le16 *) src, maxlen, codepage);
365                 len += nls_nullsize(codepage);
366                 dst = kmalloc(len, GFP_KERNEL);
367                 if (!dst)
368                         return NULL;
369                 cifs_from_utf16(dst, (__le16 *) src, len, maxlen, codepage,
370                                 NO_MAP_UNI_RSVD);
371         } else {
372                 dst = kstrndup(src, maxlen, GFP_KERNEL);
373         }
374
375         return dst;
376 }
377
378 static __le16 convert_to_sfu_char(char src_char)
379 {
380         __le16 dest_char;
381
382         switch (src_char) {
383         case ':':
384                 dest_char = cpu_to_le16(UNI_COLON);
385                 break;
386         case '*':
387                 dest_char = cpu_to_le16(UNI_ASTERISK);
388                 break;
389         case '?':
390                 dest_char = cpu_to_le16(UNI_QUESTION);
391                 break;
392         case '<':
393                 dest_char = cpu_to_le16(UNI_LESSTHAN);
394                 break;
395         case '>':
396                 dest_char = cpu_to_le16(UNI_GRTRTHAN);
397                 break;
398         case '|':
399                 dest_char = cpu_to_le16(UNI_PIPE);
400                 break;
401         default:
402                 dest_char = 0;
403         }
404
405         return dest_char;
406 }
407
408 static __le16 convert_to_sfm_char(char src_char, bool end_of_string)
409 {
410         __le16 dest_char;
411
412         switch (src_char) {
413         case ':':
414                 dest_char = cpu_to_le16(SFM_COLON);
415                 break;
416         case '"':
417                 dest_char = cpu_to_le16(SFM_DOUBLEQUOTE);
418                 break;
419         case '*':
420                 dest_char = cpu_to_le16(SFM_ASTERISK);
421                 break;
422         case '?':
423                 dest_char = cpu_to_le16(SFM_QUESTION);
424                 break;
425         case '<':
426                 dest_char = cpu_to_le16(SFM_LESSTHAN);
427                 break;
428         case '>':
429                 dest_char = cpu_to_le16(SFM_GRTRTHAN);
430                 break;
431         case '|':
432                 dest_char = cpu_to_le16(SFM_PIPE);
433                 break;
434         case '.':
435                 if (end_of_string)
436                         dest_char = cpu_to_le16(SFM_PERIOD);
437                 else
438                         dest_char = 0;
439                 break;
440         case ' ':
441                 if (end_of_string)
442                         dest_char = cpu_to_le16(SFM_SPACE);
443                 else
444                         dest_char = 0;
445                 break;
446         default:
447                 dest_char = 0;
448         }
449
450         return dest_char;
451 }
452
453 /*
454  * Convert 16 bit Unicode pathname to wire format from string in current code
455  * page. Conversion may involve remapping up the six characters that are
456  * only legal in POSIX-like OS (if they are present in the string). Path
457  * names are little endian 16 bit Unicode on the wire
458  */
459 int
460 cifsConvertToUTF16(__le16 *target, const char *source, int srclen,
461                  const struct nls_table *cp, int map_chars)
462 {
463         int i, charlen;
464         int j = 0;
465         char src_char;
466         __le16 dst_char;
467         wchar_t tmp;
468         wchar_t *wchar_to;      /* UTF-16 */
469         int ret;
470         unicode_t u;
471
472         if (map_chars == NO_MAP_UNI_RSVD)
473                 return cifs_strtoUTF16(target, source, PATH_MAX, cp);
474
475         wchar_to = kzalloc(6, GFP_KERNEL);
476
477         for (i = 0; i < srclen; j++) {
478                 src_char = source[i];
479                 charlen = 1;
480
481                 /* check if end of string */
482                 if (src_char == 0)
483                         goto ctoUTF16_out;
484
485                 /* see if we must remap this char */
486                 if (map_chars == SFU_MAP_UNI_RSVD)
487                         dst_char = convert_to_sfu_char(src_char);
488                 else if (map_chars == SFM_MAP_UNI_RSVD) {
489                         bool end_of_string;
490
491                         /**
492                          * Remap spaces and periods found at the end of every
493                          * component of the path. The special cases of '.' and
494                          * '..' do not need to be dealt with explicitly because
495                          * they are addressed in namei.c:link_path_walk().
496                          **/
497                         if ((i == srclen - 1) || (source[i+1] == '\\'))
498                                 end_of_string = true;
499                         else
500                                 end_of_string = false;
501
502                         dst_char = convert_to_sfm_char(src_char, end_of_string);
503                 } else
504                         dst_char = 0;
505                 /*
506                  * FIXME: We can not handle remapping backslash (UNI_SLASH)
507                  * until all the calls to build_path_from_dentry are modified,
508                  * as they use backslash as separator.
509                  */
510                 if (dst_char == 0) {
511                         charlen = cp->char2uni(source + i, srclen - i, &tmp);
512                         dst_char = cpu_to_le16(tmp);
513
514                         /*
515                          * if no match, use question mark, which at least in
516                          * some cases serves as wild card
517                          */
518                         if (charlen > 0)
519                                 goto ctoUTF16;
520
521                         /* convert SURROGATE_PAIR */
522                         if (strcmp(cp->charset, "utf8") || !wchar_to)
523                                 goto unknown;
524                         if (*(source + i) & 0x80) {
525                                 charlen = utf8_to_utf32(source + i, 6, &u);
526                                 if (charlen < 0)
527                                         goto unknown;
528                         } else
529                                 goto unknown;
530                         ret  = utf8s_to_utf16s(source + i, charlen,
531                                                UTF16_LITTLE_ENDIAN,
532                                                wchar_to, 6);
533                         if (ret < 0)
534                                 goto unknown;
535
536                         i += charlen;
537                         dst_char = cpu_to_le16(*wchar_to);
538                         if (charlen <= 3)
539                                 /* 1-3bytes UTF-8 to 2bytes UTF-16 */
540                                 put_unaligned(dst_char, &target[j]);
541                         else if (charlen == 4) {
542                                 /* 4bytes UTF-8(surrogate pair) to 4bytes UTF-16
543                                  * 7-8bytes UTF-8(IVS) divided to 2 UTF-16
544                                  *   (charlen=3+4 or 4+4) */
545                                 put_unaligned(dst_char, &target[j]);
546                                 dst_char = cpu_to_le16(*(wchar_to + 1));
547                                 j++;
548                                 put_unaligned(dst_char, &target[j]);
549                         } else if (charlen >= 5) {
550                                 /* 5-6bytes UTF-8 to 6bytes UTF-16 */
551                                 put_unaligned(dst_char, &target[j]);
552                                 dst_char = cpu_to_le16(*(wchar_to + 1));
553                                 j++;
554                                 put_unaligned(dst_char, &target[j]);
555                                 dst_char = cpu_to_le16(*(wchar_to + 2));
556                                 j++;
557                                 put_unaligned(dst_char, &target[j]);
558                         }
559                         continue;
560
561 unknown:
562                         dst_char = cpu_to_le16(0x003f);
563                         charlen = 1;
564                 }
565
566 ctoUTF16:
567                 /*
568                  * character may take more than one byte in the source string,
569                  * but will take exactly two bytes in the target string
570                  */
571                 i += charlen;
572                 put_unaligned(dst_char, &target[j]);
573         }
574
575 ctoUTF16_out:
576         put_unaligned(0, &target[j]); /* Null terminate target unicode string */
577         kfree(wchar_to);
578         return j;
579 }
580
581 #ifdef CONFIG_CIFS_SMB2
582 /*
583  * cifs_local_to_utf16_bytes - how long will a string be after conversion?
584  * @from - pointer to input string
585  * @maxbytes - don't go past this many bytes of input string
586  * @codepage - source codepage
587  *
588  * Walk a string and return the number of bytes that the string will
589  * be after being converted to the given charset, not including any null
590  * termination required. Don't walk past maxbytes in the source buffer.
591  */
592
593 static int
594 cifs_local_to_utf16_bytes(const char *from, int len,
595                           const struct nls_table *codepage)
596 {
597         int charlen;
598         int i;
599         wchar_t wchar_to;
600
601         for (i = 0; len && *from; i++, from += charlen, len -= charlen) {
602                 charlen = codepage->char2uni(from, len, &wchar_to);
603                 /* Failed conversion defaults to a question mark */
604                 if (charlen < 1)
605                         charlen = 1;
606         }
607         return 2 * i; /* UTF16 characters are two bytes */
608 }
609
610 /*
611  * cifs_strndup_to_utf16 - copy a string to wire format from the local codepage
612  * @src - source string
613  * @maxlen - don't walk past this many bytes in the source string
614  * @utf16_len - the length of the allocated string in bytes (including null)
615  * @cp - source codepage
616  * @remap - map special chars
617  *
618  * Take a string convert it from the local codepage to UTF16 and
619  * put it in a new buffer. Returns a pointer to the new string or NULL on
620  * error.
621  */
622 __le16 *
623 cifs_strndup_to_utf16(const char *src, const int maxlen, int *utf16_len,
624                       const struct nls_table *cp, int remap)
625 {
626         int len;
627         __le16 *dst;
628
629         len = cifs_local_to_utf16_bytes(src, maxlen, cp);
630         len += 2; /* NULL */
631         dst = kmalloc(len, GFP_KERNEL);
632         if (!dst) {
633                 *utf16_len = 0;
634                 return NULL;
635         }
636         cifsConvertToUTF16(dst, src, strlen(src), cp, remap);
637         *utf16_len = len;
638         return dst;
639 }
640 #endif /* CONFIG_CIFS_SMB2 */