2 * cifs_unicode: Unicode kernel case support
5 * Convert a unicode character to upper or lower case using
8 * Copyright (c) International Business Machines Corp., 2000,2009
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
18 * the GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 * These APIs are based on the C library functions. The semantics
27 * should match the C functions but with expanded size operands.
29 * The upper/lower functions are based on a table created by mkupr.
30 * This is a compressed table of upper and lower case conversion.
34 #include <asm/byteorder.h>
35 #include <linux/types.h>
36 #include <linux/nls.h>
38 #define UNIUPR_NOLOWER /* Example to not expand lower case tables */
41 * Windows maps these to the user defined 16 bit Unicode range since they are
42 * reserved symbols (along with \ and /), otherwise illegal to store
43 * in filenames in NTFS
45 #define UNI_ASTERIK (__u16) ('*' + 0xF000)
46 #define UNI_QUESTION (__u16) ('?' + 0xF000)
47 #define UNI_COLON (__u16) (':' + 0xF000)
48 #define UNI_GRTRTHAN (__u16) ('>' + 0xF000)
49 #define UNI_LESSTHAN (__u16) ('<' + 0xF000)
50 #define UNI_PIPE (__u16) ('|' + 0xF000)
51 #define UNI_SLASH (__u16) ('\\' + 0xF000)
53 /* Just define what we want from uniupr.h. We don't want to define the tables
54 * in each source file.
56 #ifndef UNICASERANGE_DEFINED
62 #endif /* UNICASERANGE_DEFINED */
64 #ifndef UNIUPR_NOUPPER
65 extern signed char CifsUniUpperTable
[512];
66 extern const struct UniCaseRange CifsUniUpperRange
[];
67 #endif /* UNIUPR_NOUPPER */
69 #ifndef UNIUPR_NOLOWER
70 extern signed char UniLowerTable
[512];
71 extern struct UniCaseRange UniLowerRange
[];
72 #endif /* UNIUPR_NOLOWER */
75 int cifs_from_ucs2(char *to
, const __le16
*from
, int tolen
, int fromlen
,
76 const struct nls_table
*codepage
, bool mapchar
);
77 int cifs_ucs2_bytes(const __le16
*from
, int maxbytes
,
78 const struct nls_table
*codepage
);
79 int cifs_strtoUCS(__le16
*, const char *, int, const struct nls_table
*);
80 char *cifs_strndup_from_ucs(const char *src
, const int maxlen
,
81 const bool is_unicode
,
82 const struct nls_table
*codepage
);
86 * UniStrcat: Concatenate the second string to the first
89 * Address of the first string
91 static inline wchar_t *
92 UniStrcat(wchar_t *ucs1
, const wchar_t *ucs2
)
94 wchar_t *anchor
= ucs1
; /* save a pointer to start of ucs1 */
96 while (*ucs1
++) ; /* To end of first string */
97 ucs1
--; /* Return to the null */
98 while ((*ucs1
++ = *ucs2
++)) ; /* copy string 2 over */
103 * UniStrchr: Find a character in a string
106 * Address of first occurrence of character in string
107 * or NULL if the character is not in the string
109 static inline wchar_t *
110 UniStrchr(const wchar_t *ucs
, wchar_t uc
)
112 while ((*ucs
!= uc
) && *ucs
)
116 return (wchar_t *) ucs
;
121 * UniStrcmp: Compare two strings
124 * < 0: First string is less than second
125 * = 0: Strings are equal
126 * > 0: First string is greater than second
129 UniStrcmp(const wchar_t *ucs1
, const wchar_t *ucs2
)
131 while ((*ucs1
== *ucs2
) && *ucs1
) {
135 return (int) *ucs1
- (int) *ucs2
;
139 * UniStrcpy: Copy a string
141 static inline wchar_t *
142 UniStrcpy(wchar_t *ucs1
, const wchar_t *ucs2
)
144 wchar_t *anchor
= ucs1
; /* save the start of result string */
146 while ((*ucs1
++ = *ucs2
++)) ;
151 * UniStrlen: Return the length of a string (in 16 bit Unicode chars not bytes)
154 UniStrlen(const wchar_t *ucs1
)
164 * UniStrnlen: Return the length (in 16 bit Unicode chars not bytes) of a
165 * string (length limited)
168 UniStrnlen(const wchar_t *ucs1
, int maxlen
)
181 * UniStrncat: Concatenate length limited string
183 static inline wchar_t *
184 UniStrncat(wchar_t *ucs1
, const wchar_t *ucs2
, size_t n
)
186 wchar_t *anchor
= ucs1
; /* save pointer to string 1 */
189 ucs1
--; /* point to null terminator of s1 */
190 while (n
-- && (*ucs1
= *ucs2
)) { /* copy s2 after s1 */
194 *ucs1
= 0; /* Null terminate the result */
199 * UniStrncmp: Compare length limited string
202 UniStrncmp(const wchar_t *ucs1
, const wchar_t *ucs2
, size_t n
)
205 return 0; /* Null strings are equal */
206 while ((*ucs1
== *ucs2
) && *ucs1
&& --n
) {
210 return (int) *ucs1
- (int) *ucs2
;
214 * UniStrncmp_le: Compare length limited string - native to little-endian
217 UniStrncmp_le(const wchar_t *ucs1
, const wchar_t *ucs2
, size_t n
)
220 return 0; /* Null strings are equal */
221 while ((*ucs1
== __le16_to_cpu(*ucs2
)) && *ucs1
&& --n
) {
225 return (int) *ucs1
- (int) __le16_to_cpu(*ucs2
);
229 * UniStrncpy: Copy length limited string with pad
231 static inline wchar_t *
232 UniStrncpy(wchar_t *ucs1
, const wchar_t *ucs2
, size_t n
)
234 wchar_t *anchor
= ucs1
;
236 while (n
-- && *ucs2
) /* Copy the strings */
240 while (n
--) /* Pad with nulls */
246 * UniStrncpy_le: Copy length limited string with pad to little-endian
248 static inline wchar_t *
249 UniStrncpy_le(wchar_t *ucs1
, const wchar_t *ucs2
, size_t n
)
251 wchar_t *anchor
= ucs1
;
253 while (n
-- && *ucs2
) /* Copy the strings */
254 *ucs1
++ = __le16_to_cpu(*ucs2
++);
257 while (n
--) /* Pad with nulls */
263 * UniStrstr: Find a string in a string
266 * Address of first match found
267 * NULL if no matching string is found
269 static inline wchar_t *
270 UniStrstr(const wchar_t *ucs1
, const wchar_t *ucs2
)
272 const wchar_t *anchor1
= ucs1
;
273 const wchar_t *anchor2
= ucs2
;
276 if (*ucs1
== *ucs2
) {
277 /* Partial match found */
281 if (!*ucs2
) /* Match found */
282 return (wchar_t *) anchor1
;
283 ucs1
= ++anchor1
; /* No match */
288 if (!*ucs2
) /* Both end together */
289 return (wchar_t *) anchor1
; /* Match found */
290 return NULL
; /* No match */
293 #ifndef UNIUPR_NOUPPER
295 * UniToupper: Convert a unicode character to upper case
297 static inline wchar_t
298 UniToupper(register wchar_t uc
)
300 register const struct UniCaseRange
*rp
;
302 if (uc
< sizeof(CifsUniUpperTable
)) {
303 /* Latin characters */
304 return uc
+ CifsUniUpperTable
[uc
]; /* Use base tables */
306 rp
= CifsUniUpperRange
; /* Use range tables */
308 if (uc
< rp
->start
) /* Before start of range */
309 return uc
; /* Uppercase = input */
310 if (uc
<= rp
->end
) /* In range */
311 return uc
+ rp
->table
[uc
- rp
->start
];
312 rp
++; /* Try next range */
315 return uc
; /* Past last range */
319 * UniStrupr: Upper case a unicode string
321 static inline wchar_t *
322 UniStrupr(register wchar_t *upin
)
324 register wchar_t *up
;
327 while (*up
) { /* For all characters */
328 *up
= UniToupper(*up
);
331 return upin
; /* Return input pointer */
333 #endif /* UNIUPR_NOUPPER */
335 #ifndef UNIUPR_NOLOWER
337 * UniTolower: Convert a unicode character to lower case
339 static inline wchar_t
340 UniTolower(wchar_t uc
)
342 register struct UniCaseRange
*rp
;
344 if (uc
< sizeof(UniLowerTable
)) {
345 /* Latin characters */
346 return uc
+ UniLowerTable
[uc
]; /* Use base tables */
348 rp
= UniLowerRange
; /* Use range tables */
350 if (uc
< rp
->start
) /* Before start of range */
351 return uc
; /* Uppercase = input */
352 if (uc
<= rp
->end
) /* In range */
353 return uc
+ rp
->table
[uc
- rp
->start
];
354 rp
++; /* Try next range */
357 return uc
; /* Past last range */
361 * UniStrlwr: Lower case a unicode string
363 static inline wchar_t *
364 UniStrlwr(register wchar_t *upin
)
366 register wchar_t *up
;
369 while (*up
) { /* For all characters */
370 *up
= UniTolower(*up
);
373 return upin
; /* Return input pointer */