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