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