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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "cifs_unicode.h" |
| 24 | #include "cifs_uniupr.h" |
| 25 | #include "cifspdu.h" |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 26 | #include "cifsglob.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include "cifs_debug.h" |
| 28 | |
| 29 | /* |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 30 | * cifs_utf16_bytes - how long will a string be after conversion? |
| 31 | * @utf16 - pointer to input string |
Jeff Layton | 69f801f | 2009-04-30 06:46:32 -0400 | [diff] [blame] | 32 | * @maxbytes - don't go past this many bytes of input string |
| 33 | * @codepage - destination codepage |
| 34 | * |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 35 | * Walk a utf16le string and return the number of bytes that the string will |
Jeff Layton | 69f801f | 2009-04-30 06:46:32 -0400 | [diff] [blame] | 36 | * be after being converted to the given charset, not including any null |
| 37 | * termination required. Don't walk past maxbytes in the source buffer. |
| 38 | */ |
| 39 | int |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 40 | cifs_utf16_bytes(const __le16 *from, int maxbytes, |
Jeff Layton | 69f801f | 2009-04-30 06:46:32 -0400 | [diff] [blame] | 41 | const struct nls_table *codepage) |
| 42 | { |
| 43 | int i; |
| 44 | int charlen, outlen = 0; |
| 45 | int maxwords = maxbytes / 2; |
| 46 | char tmp[NLS_MAX_CHARSET_SIZE]; |
Jeff Layton | ba2dbf3 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 47 | __u16 ftmp; |
Jeff Layton | 69f801f | 2009-04-30 06:46:32 -0400 | [diff] [blame] | 48 | |
Jeff Layton | ba2dbf3 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 49 | for (i = 0; i < maxwords; i++) { |
| 50 | ftmp = get_unaligned_le16(&from[i]); |
| 51 | if (ftmp == 0) |
| 52 | break; |
| 53 | |
| 54 | charlen = codepage->uni2char(ftmp, tmp, NLS_MAX_CHARSET_SIZE); |
Jeff Layton | 69f801f | 2009-04-30 06:46:32 -0400 | [diff] [blame] | 55 | if (charlen > 0) |
| 56 | outlen += charlen; |
| 57 | else |
| 58 | outlen++; |
| 59 | } |
| 60 | |
| 61 | return outlen; |
| 62 | } |
| 63 | |
Steve French | b693855 | 2014-09-25 13:20:05 -0500 | [diff] [blame^] | 64 | /* Convert character using the SFU - "Services for Unix" remapping range */ |
| 65 | static bool |
| 66 | convert_sfu_char(const __u16 src_char, char *target) |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 67 | { |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 68 | /* |
| 69 | * BB: Cannot handle remapping UNI_SLASH until all the calls to |
| 70 | * build_path_from_dentry are modified, as they use slash as |
| 71 | * separator. |
| 72 | */ |
Jeff Layton | ba2dbf3 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 73 | switch (src_char) { |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 74 | case UNI_COLON: |
| 75 | *target = ':'; |
| 76 | break; |
Jeff Layton | 581ade4 | 2011-04-05 15:02:37 -0400 | [diff] [blame] | 77 | case UNI_ASTERISK: |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 78 | *target = '*'; |
| 79 | break; |
| 80 | case UNI_QUESTION: |
| 81 | *target = '?'; |
| 82 | break; |
| 83 | case UNI_PIPE: |
| 84 | *target = '|'; |
| 85 | break; |
| 86 | case UNI_GRTRTHAN: |
| 87 | *target = '>'; |
| 88 | break; |
| 89 | case UNI_LESSTHAN: |
| 90 | *target = '<'; |
| 91 | break; |
| 92 | default: |
Steve French | b693855 | 2014-09-25 13:20:05 -0500 | [diff] [blame^] | 93 | return false; |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 94 | } |
Steve French | b693855 | 2014-09-25 13:20:05 -0500 | [diff] [blame^] | 95 | return true; |
| 96 | } |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 97 | |
Steve French | b693855 | 2014-09-25 13:20:05 -0500 | [diff] [blame^] | 98 | /* Convert character using the SFM - "Services for Mac" remapping range */ |
| 99 | static bool |
| 100 | convert_sfm_char(const __u16 src_char, char *target) |
| 101 | { |
| 102 | switch (src_char) { |
| 103 | case SFM_COLON: |
| 104 | *target = ':'; |
| 105 | break; |
| 106 | case SFM_ASTERISK: |
| 107 | *target = '*'; |
| 108 | break; |
| 109 | case SFM_QUESTION: |
| 110 | *target = '?'; |
| 111 | break; |
| 112 | case SFM_PIPE: |
| 113 | *target = '|'; |
| 114 | break; |
| 115 | case SFM_GRTRTHAN: |
| 116 | *target = '>'; |
| 117 | break; |
| 118 | case SFM_LESSTHAN: |
| 119 | *target = '<'; |
| 120 | break; |
| 121 | case SFM_SLASH: |
| 122 | *target = '\\'; |
| 123 | break; |
| 124 | default: |
| 125 | return false; |
| 126 | } |
| 127 | return true; |
| 128 | } |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 129 | |
Steve French | b693855 | 2014-09-25 13:20:05 -0500 | [diff] [blame^] | 130 | |
| 131 | /* |
| 132 | * cifs_mapchar - convert a host-endian char to proper char in codepage |
| 133 | * @target - where converted character should be copied |
| 134 | * @src_char - 2 byte host-endian source character |
| 135 | * @cp - codepage to which character should be converted |
| 136 | * @map_type - How should the 7 NTFS/SMB reserved characters be mapped to UCS2? |
| 137 | * |
| 138 | * This function handles the conversion of a single character. It is the |
| 139 | * responsibility of the caller to ensure that the target buffer is large |
| 140 | * enough to hold the result of the conversion (at least NLS_MAX_CHARSET_SIZE). |
| 141 | */ |
| 142 | static int |
| 143 | cifs_mapchar(char *target, const __u16 src_char, const struct nls_table *cp, |
| 144 | int maptype) |
| 145 | { |
| 146 | int len = 1; |
| 147 | |
| 148 | if ((maptype == SFM_MAP_UNI_RSVD) && convert_sfm_char(src_char, target)) |
| 149 | return len; |
| 150 | else if ((maptype == SFU_MAP_UNI_RSVD) && |
| 151 | convert_sfu_char(src_char, target)) |
| 152 | return len; |
| 153 | |
| 154 | /* if character not one of seven in special remap set */ |
Jeff Layton | ba2dbf3 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 155 | len = cp->uni2char(src_char, target, NLS_MAX_CHARSET_SIZE); |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 156 | if (len <= 0) { |
| 157 | *target = '?'; |
| 158 | len = 1; |
| 159 | } |
Steve French | b693855 | 2014-09-25 13:20:05 -0500 | [diff] [blame^] | 160 | return len; |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | /* |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 164 | * cifs_from_utf16 - convert utf16le string to local charset |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 165 | * @to - destination buffer |
| 166 | * @from - source buffer |
| 167 | * @tolen - destination buffer size (in bytes) |
| 168 | * @fromlen - source buffer size (in bytes) |
| 169 | * @codepage - codepage to which characters should be converted |
| 170 | * @mapchar - should characters be remapped according to the mapchars option? |
| 171 | * |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 172 | * 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] | 173 | * in the provided codepage. The tolen and fromlen parameters are to ensure |
| 174 | * that the code doesn't walk off of the end of the buffer (which is always |
| 175 | * a danger if the alignment of the source buffer is off). The destination |
| 176 | * string is always properly null terminated and fits in the destination |
| 177 | * buffer. Returns the length of the destination string in bytes (including |
| 178 | * null terminator). |
| 179 | * |
| 180 | * Note that some windows versions actually send multiword UTF-16 characters |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 181 | * 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] | 182 | * deal with those characters properly. In the event that we get some of |
| 183 | * those characters, they won't be translated properly. |
| 184 | */ |
| 185 | int |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 186 | cifs_from_utf16(char *to, const __le16 *from, int tolen, int fromlen, |
Steve French | b693855 | 2014-09-25 13:20:05 -0500 | [diff] [blame^] | 187 | const struct nls_table *codepage, int map_type) |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 188 | { |
| 189 | int i, charlen, safelen; |
| 190 | int outlen = 0; |
| 191 | int nullsize = nls_nullsize(codepage); |
| 192 | int fromwords = fromlen / 2; |
| 193 | char tmp[NLS_MAX_CHARSET_SIZE]; |
Jeff Layton | ba2dbf3 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 194 | __u16 ftmp; |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 195 | |
| 196 | /* |
| 197 | * because the chars can be of varying widths, we need to take care |
| 198 | * not to overflow the destination buffer when we get close to the |
| 199 | * end of it. Until we get to this offset, we don't need to check |
| 200 | * for overflow however. |
| 201 | */ |
| 202 | safelen = tolen - (NLS_MAX_CHARSET_SIZE + nullsize); |
| 203 | |
Jeff Layton | ba2dbf3 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 204 | for (i = 0; i < fromwords; i++) { |
| 205 | ftmp = get_unaligned_le16(&from[i]); |
| 206 | if (ftmp == 0) |
| 207 | break; |
| 208 | |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 209 | /* |
| 210 | * check to see if converting this character might make the |
| 211 | * conversion bleed into the null terminator |
| 212 | */ |
| 213 | if (outlen >= safelen) { |
Steve French | b693855 | 2014-09-25 13:20:05 -0500 | [diff] [blame^] | 214 | charlen = cifs_mapchar(tmp, ftmp, codepage, map_type); |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 215 | if ((outlen + charlen) > (tolen - nullsize)) |
| 216 | break; |
| 217 | } |
| 218 | |
| 219 | /* put converted char into 'to' buffer */ |
Steve French | b693855 | 2014-09-25 13:20:05 -0500 | [diff] [blame^] | 220 | charlen = cifs_mapchar(&to[outlen], ftmp, codepage, map_type); |
Jeff Layton | 7fabf0c | 2009-04-30 06:46:15 -0400 | [diff] [blame] | 221 | outlen += charlen; |
| 222 | } |
| 223 | |
| 224 | /* properly null-terminate string */ |
| 225 | for (i = 0; i < nullsize; i++) |
| 226 | to[outlen++] = 0; |
| 227 | |
| 228 | return outlen; |
| 229 | } |
| 230 | |
| 231 | /* |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 232 | * NAME: cifs_strtoUTF16() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | * |
| 234 | * FUNCTION: Convert character string to unicode string |
| 235 | * |
| 236 | */ |
| 237 | int |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 238 | cifs_strtoUTF16(__le16 *to, const char *from, int len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | const struct nls_table *codepage) |
| 240 | { |
| 241 | int charlen; |
| 242 | int i; |
Jeff Layton | ba2dbf3 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 243 | wchar_t wchar_to; /* needed to quiet sparse */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Frediano Ziglio | fd3ba42 | 2012-08-07 04:33:03 -0500 | [diff] [blame] | 245 | /* special case for utf8 to handle no plane0 chars */ |
| 246 | if (!strcmp(codepage->charset, "utf8")) { |
| 247 | /* |
| 248 | * convert utf8 -> utf16, we assume we have enough space |
| 249 | * as caller should have assumed conversion does not overflow |
| 250 | * in destination len is length in wchar_t units (16bits) |
| 251 | */ |
| 252 | i = utf8s_to_utf16s(from, len, UTF16_LITTLE_ENDIAN, |
| 253 | (wchar_t *) to, len); |
| 254 | |
| 255 | /* if success terminate and exit */ |
| 256 | if (i >= 0) |
| 257 | goto success; |
| 258 | /* |
| 259 | * if fails fall back to UCS encoding as this |
| 260 | * function should not return negative values |
| 261 | * currently can fail only if source contains |
| 262 | * invalid encoded characters |
| 263 | */ |
| 264 | } |
| 265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | for (i = 0; len && *from; i++, from += charlen, len -= charlen) { |
Jeff Layton | ba2dbf3 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 267 | charlen = codepage->char2uni(from, len, &wchar_to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | if (charlen < 1) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 269 | cifs_dbg(VFS, "strtoUTF16: char2uni of 0x%x returned %d\n", |
| 270 | *from, charlen); |
Steve French | 6911408 | 2005-11-10 19:28:44 -0800 | [diff] [blame] | 271 | /* A question mark */ |
Jeff Layton | ba2dbf3 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 272 | wchar_to = 0x003f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | charlen = 1; |
Jeff Layton | ba2dbf3 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 274 | } |
| 275 | put_unaligned_le16(wchar_to, &to[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | } |
| 277 | |
Frediano Ziglio | fd3ba42 | 2012-08-07 04:33:03 -0500 | [diff] [blame] | 278 | success: |
Jeff Layton | ba2dbf3 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 279 | put_unaligned_le16(0, &to[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | return i; |
| 281 | } |
| 282 | |
Jeff Layton | 066ce68 | 2009-04-30 07:16:14 -0400 | [diff] [blame] | 283 | /* |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 284 | * cifs_strndup_from_utf16 - copy a string from wire format to the local |
| 285 | * codepage |
Jeff Layton | 066ce68 | 2009-04-30 07:16:14 -0400 | [diff] [blame] | 286 | * @src - source string |
| 287 | * @maxlen - don't walk past this many bytes in the source string |
| 288 | * @is_unicode - is this a unicode string? |
| 289 | * @codepage - destination codepage |
| 290 | * |
| 291 | * Take a string given by the server, convert it to the local codepage and |
| 292 | * put it in a new buffer. Returns a pointer to the new string or NULL on |
| 293 | * error. |
| 294 | */ |
| 295 | char * |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 296 | cifs_strndup_from_utf16(const char *src, const int maxlen, |
| 297 | const bool is_unicode, const struct nls_table *codepage) |
Jeff Layton | 066ce68 | 2009-04-30 07:16:14 -0400 | [diff] [blame] | 298 | { |
| 299 | int len; |
| 300 | char *dst; |
| 301 | |
| 302 | if (is_unicode) { |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 303 | len = cifs_utf16_bytes((__le16 *) src, maxlen, codepage); |
Jeff Layton | 066ce68 | 2009-04-30 07:16:14 -0400 | [diff] [blame] | 304 | len += nls_nullsize(codepage); |
| 305 | dst = kmalloc(len, GFP_KERNEL); |
| 306 | if (!dst) |
| 307 | return NULL; |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 308 | cifs_from_utf16(dst, (__le16 *) src, len, maxlen, codepage, |
Steve French | b693855 | 2014-09-25 13:20:05 -0500 | [diff] [blame^] | 309 | NO_MAP_UNI_RSVD); |
Jeff Layton | 066ce68 | 2009-04-30 07:16:14 -0400 | [diff] [blame] | 310 | } else { |
| 311 | len = strnlen(src, maxlen); |
| 312 | len++; |
| 313 | dst = kmalloc(len, GFP_KERNEL); |
| 314 | if (!dst) |
| 315 | return NULL; |
| 316 | strlcpy(dst, src, len); |
| 317 | } |
| 318 | |
| 319 | return dst; |
| 320 | } |
| 321 | |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 322 | /* |
| 323 | * Convert 16 bit Unicode pathname to wire format from string in current code |
| 324 | * page. Conversion may involve remapping up the six characters that are |
| 325 | * only legal in POSIX-like OS (if they are present in the string). Path |
| 326 | * names are little endian 16 bit Unicode on the wire |
| 327 | */ |
| 328 | int |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 329 | cifsConvertToUTF16(__le16 *target, const char *source, int srclen, |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 330 | const struct nls_table *cp, int mapChars) |
| 331 | { |
Steve French | ce36d9a | 2014-06-22 20:38:49 -0500 | [diff] [blame] | 332 | int i, charlen; |
| 333 | int j = 0; |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 334 | char src_char; |
Jeff Layton | 581ade4 | 2011-04-05 15:02:37 -0400 | [diff] [blame] | 335 | __le16 dst_char; |
| 336 | wchar_t tmp; |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 337 | |
| 338 | if (!mapChars) |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 339 | return cifs_strtoUTF16(target, source, PATH_MAX, cp); |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 340 | |
Steve French | ce36d9a | 2014-06-22 20:38:49 -0500 | [diff] [blame] | 341 | for (i = 0; i < srclen; j++) { |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 342 | src_char = source[i]; |
Jeff Layton | 11379b5 | 2011-05-17 15:28:21 -0400 | [diff] [blame] | 343 | charlen = 1; |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 344 | switch (src_char) { |
| 345 | case 0: |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 346 | goto ctoUTF16_out; |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 347 | case ':': |
Jeff Layton | 581ade4 | 2011-04-05 15:02:37 -0400 | [diff] [blame] | 348 | dst_char = cpu_to_le16(UNI_COLON); |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 349 | break; |
| 350 | case '*': |
Jeff Layton | 581ade4 | 2011-04-05 15:02:37 -0400 | [diff] [blame] | 351 | dst_char = cpu_to_le16(UNI_ASTERISK); |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 352 | break; |
| 353 | case '?': |
Jeff Layton | 581ade4 | 2011-04-05 15:02:37 -0400 | [diff] [blame] | 354 | dst_char = cpu_to_le16(UNI_QUESTION); |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 355 | break; |
| 356 | case '<': |
Jeff Layton | 581ade4 | 2011-04-05 15:02:37 -0400 | [diff] [blame] | 357 | dst_char = cpu_to_le16(UNI_LESSTHAN); |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 358 | break; |
| 359 | case '>': |
Jeff Layton | 581ade4 | 2011-04-05 15:02:37 -0400 | [diff] [blame] | 360 | dst_char = cpu_to_le16(UNI_GRTRTHAN); |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 361 | break; |
| 362 | case '|': |
Jeff Layton | 581ade4 | 2011-04-05 15:02:37 -0400 | [diff] [blame] | 363 | dst_char = cpu_to_le16(UNI_PIPE); |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 364 | break; |
| 365 | /* |
| 366 | * FIXME: We can not handle remapping backslash (UNI_SLASH) |
| 367 | * until all the calls to build_path_from_dentry are modified, |
| 368 | * as they use backslash as separator. |
| 369 | */ |
| 370 | default: |
Jeff Layton | 581ade4 | 2011-04-05 15:02:37 -0400 | [diff] [blame] | 371 | charlen = cp->char2uni(source + i, srclen - i, &tmp); |
| 372 | dst_char = cpu_to_le16(tmp); |
| 373 | |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 374 | /* |
| 375 | * if no match, use question mark, which at least in |
| 376 | * some cases serves as wild card |
| 377 | */ |
| 378 | if (charlen < 1) { |
Jeff Layton | 581ade4 | 2011-04-05 15:02:37 -0400 | [diff] [blame] | 379 | dst_char = cpu_to_le16(0x003f); |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 380 | charlen = 1; |
| 381 | } |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 382 | } |
Jeff Layton | 11379b5 | 2011-05-17 15:28:21 -0400 | [diff] [blame] | 383 | /* |
| 384 | * character may take more than one byte in the source string, |
| 385 | * but will take exactly two bytes in the target string |
| 386 | */ |
| 387 | i += charlen; |
Jeff Layton | 581ade4 | 2011-04-05 15:02:37 -0400 | [diff] [blame] | 388 | put_unaligned(dst_char, &target[j]); |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 389 | } |
| 390 | |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 391 | ctoUTF16_out: |
Steve French | ce36d9a | 2014-06-22 20:38:49 -0500 | [diff] [blame] | 392 | put_unaligned(0, &target[j]); /* Null terminate target unicode string */ |
Jeff Layton | c73f693 | 2012-09-18 14:21:01 -0400 | [diff] [blame] | 393 | return j; |
Jeff Layton | 84cdf74 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 394 | } |
Pavel Shilovsky | 2503a0d | 2011-12-26 22:58:46 +0400 | [diff] [blame] | 395 | |
| 396 | #ifdef CONFIG_CIFS_SMB2 |
| 397 | /* |
| 398 | * cifs_local_to_utf16_bytes - how long will a string be after conversion? |
| 399 | * @from - pointer to input string |
| 400 | * @maxbytes - don't go past this many bytes of input string |
| 401 | * @codepage - source codepage |
| 402 | * |
| 403 | * Walk a string and return the number of bytes that the string will |
| 404 | * be after being converted to the given charset, not including any null |
| 405 | * termination required. Don't walk past maxbytes in the source buffer. |
| 406 | */ |
| 407 | |
| 408 | static int |
| 409 | cifs_local_to_utf16_bytes(const char *from, int len, |
| 410 | const struct nls_table *codepage) |
| 411 | { |
| 412 | int charlen; |
| 413 | int i; |
| 414 | wchar_t wchar_to; |
| 415 | |
| 416 | for (i = 0; len && *from; i++, from += charlen, len -= charlen) { |
| 417 | charlen = codepage->char2uni(from, len, &wchar_to); |
| 418 | /* Failed conversion defaults to a question mark */ |
| 419 | if (charlen < 1) |
| 420 | charlen = 1; |
| 421 | } |
| 422 | return 2 * i; /* UTF16 characters are two bytes */ |
| 423 | } |
| 424 | |
| 425 | /* |
| 426 | * cifs_strndup_to_utf16 - copy a string to wire format from the local codepage |
| 427 | * @src - source string |
| 428 | * @maxlen - don't walk past this many bytes in the source string |
| 429 | * @utf16_len - the length of the allocated string in bytes (including null) |
| 430 | * @cp - source codepage |
| 431 | * @remap - map special chars |
| 432 | * |
| 433 | * Take a string convert it from the local codepage to UTF16 and |
| 434 | * put it in a new buffer. Returns a pointer to the new string or NULL on |
| 435 | * error. |
| 436 | */ |
| 437 | __le16 * |
| 438 | cifs_strndup_to_utf16(const char *src, const int maxlen, int *utf16_len, |
| 439 | const struct nls_table *cp, int remap) |
| 440 | { |
| 441 | int len; |
| 442 | __le16 *dst; |
| 443 | |
| 444 | len = cifs_local_to_utf16_bytes(src, maxlen, cp); |
| 445 | len += 2; /* NULL */ |
| 446 | dst = kmalloc(len, GFP_KERNEL); |
| 447 | if (!dst) { |
| 448 | *utf16_len = 0; |
| 449 | return NULL; |
| 450 | } |
| 451 | cifsConvertToUTF16(dst, src, strlen(src), cp, remap); |
| 452 | *utf16_len = len; |
| 453 | return dst; |
| 454 | } |
| 455 | #endif /* CONFIG_CIFS_SMB2 */ |