123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421 |
- #ifndef _CIFS_UNICODE_H
- #define _CIFS_UNICODE_H
- #include <asm/byteorder.h>
- #include <linux/types.h>
- #include <linux/nls.h>
- #define UNIUPR_NOLOWER
- #define UNI_ASTERISK (__u16) ('*' + 0xF000)
- #define UNI_QUESTION (__u16) ('?' + 0xF000)
- #define UNI_COLON (__u16) (':' + 0xF000)
- #define UNI_GRTRTHAN (__u16) ('>' + 0xF000)
- #define UNI_LESSTHAN (__u16) ('<' + 0xF000)
- #define UNI_PIPE (__u16) ('|' + 0xF000)
- #define UNI_SLASH (__u16) ('\\' + 0xF000)
- #define SFM_DOUBLEQUOTE ((__u16) 0xF020)
- #define SFM_ASTERISK ((__u16) 0xF021)
- #define SFM_QUESTION ((__u16) 0xF025)
- #define SFM_COLON ((__u16) 0xF022)
- #define SFM_GRTRTHAN ((__u16) 0xF024)
- #define SFM_LESSTHAN ((__u16) 0xF023)
- #define SFM_PIPE ((__u16) 0xF027)
- #define SFM_SLASH ((__u16) 0xF026)
- #define SFM_SPACE ((__u16) 0xF028)
- #define SFM_PERIOD ((__u16) 0xF029)
- #define NO_MAP_UNI_RSVD 0
- #define SFM_MAP_UNI_RSVD 1
- #define SFU_MAP_UNI_RSVD 2
- #ifndef UNICASERANGE_DEFINED
- struct UniCaseRange {
- wchar_t start;
- wchar_t end;
- signed char *table;
- };
- #endif
- #ifndef UNIUPR_NOUPPER
- extern signed char CifsUniUpperTable[512];
- extern const struct UniCaseRange CifsUniUpperRange[];
- #endif
- #ifndef UNIUPR_NOLOWER
- extern signed char CifsUniLowerTable[512];
- extern const struct UniCaseRange CifsUniLowerRange[];
- #endif
- #ifdef __KERNEL__
- int cifs_from_utf16(char *to, const __le16 *from, int tolen, int fromlen,
- const struct nls_table *cp, int map_type);
- int cifs_utf16_bytes(const __le16 *from, int maxbytes,
- const struct nls_table *codepage);
- int cifs_strtoUTF16(__le16 *, const char *, int, const struct nls_table *);
- char *cifs_strndup_from_utf16(const char *src, const int maxlen,
- const bool is_unicode,
- const struct nls_table *codepage);
- extern int cifsConvertToUTF16(__le16 *target, const char *source, int maxlen,
- const struct nls_table *cp, int mapChars);
- extern int cifs_remap(struct cifs_sb_info *cifs_sb);
- #ifdef CONFIG_CIFS_SMB2
- extern __le16 *cifs_strndup_to_utf16(const char *src, const int maxlen,
- int *utf16_len, const struct nls_table *cp,
- int remap);
- #endif
- #endif
- wchar_t cifs_toupper(wchar_t in);
- static inline wchar_t *
- UniStrcat(wchar_t *ucs1, const wchar_t *ucs2)
- {
- wchar_t *anchor = ucs1;
- while (*ucs1++) ;
- ucs1--;
- while ((*ucs1++ = *ucs2++)) ;
- return anchor;
- }
- static inline wchar_t *
- UniStrchr(const wchar_t *ucs, wchar_t uc)
- {
- while ((*ucs != uc) && *ucs)
- ucs++;
- if (*ucs == uc)
- return (wchar_t *) ucs;
- return NULL;
- }
- static inline int
- UniStrcmp(const wchar_t *ucs1, const wchar_t *ucs2)
- {
- while ((*ucs1 == *ucs2) && *ucs1) {
- ucs1++;
- ucs2++;
- }
- return (int) *ucs1 - (int) *ucs2;
- }
- static inline wchar_t *
- UniStrcpy(wchar_t *ucs1, const wchar_t *ucs2)
- {
- wchar_t *anchor = ucs1;
- while ((*ucs1++ = *ucs2++)) ;
- return anchor;
- }
- static inline size_t
- UniStrlen(const wchar_t *ucs1)
- {
- int i = 0;
- while (*ucs1++)
- i++;
- return i;
- }
- static inline size_t
- UniStrnlen(const wchar_t *ucs1, int maxlen)
- {
- int i = 0;
- while (*ucs1++) {
- i++;
- if (i >= maxlen)
- break;
- }
- return i;
- }
- static inline wchar_t *
- UniStrncat(wchar_t *ucs1, const wchar_t *ucs2, size_t n)
- {
- wchar_t *anchor = ucs1;
- while (*ucs1++) ;
- ucs1--;
- while (n-- && (*ucs1 = *ucs2)) {
- ucs1++;
- ucs2++;
- }
- *ucs1 = 0;
- return (anchor);
- }
- static inline int
- UniStrncmp(const wchar_t *ucs1, const wchar_t *ucs2, size_t n)
- {
- if (!n)
- return 0;
- while ((*ucs1 == *ucs2) && *ucs1 && --n) {
- ucs1++;
- ucs2++;
- }
- return (int) *ucs1 - (int) *ucs2;
- }
- static inline int
- UniStrncmp_le(const wchar_t *ucs1, const wchar_t *ucs2, size_t n)
- {
- if (!n)
- return 0;
- while ((*ucs1 == __le16_to_cpu(*ucs2)) && *ucs1 && --n) {
- ucs1++;
- ucs2++;
- }
- return (int) *ucs1 - (int) __le16_to_cpu(*ucs2);
- }
- static inline wchar_t *
- UniStrncpy(wchar_t *ucs1, const wchar_t *ucs2, size_t n)
- {
- wchar_t *anchor = ucs1;
- while (n-- && *ucs2)
- *ucs1++ = *ucs2++;
- n++;
- while (n--)
- *ucs1++ = 0;
- return anchor;
- }
- static inline wchar_t *
- UniStrncpy_le(wchar_t *ucs1, const wchar_t *ucs2, size_t n)
- {
- wchar_t *anchor = ucs1;
- while (n-- && *ucs2)
- *ucs1++ = __le16_to_cpu(*ucs2++);
- n++;
- while (n--)
- *ucs1++ = 0;
- return anchor;
- }
- static inline wchar_t *
- UniStrstr(const wchar_t *ucs1, const wchar_t *ucs2)
- {
- const wchar_t *anchor1 = ucs1;
- const wchar_t *anchor2 = ucs2;
- while (*ucs1) {
- if (*ucs1 == *ucs2) {
-
- ucs1++;
- ucs2++;
- } else {
- if (!*ucs2)
- return (wchar_t *) anchor1;
- ucs1 = ++anchor1;
- ucs2 = anchor2;
- }
- }
- if (!*ucs2)
- return (wchar_t *) anchor1;
- return NULL;
- }
- #ifndef UNIUPR_NOUPPER
- static inline wchar_t
- UniToupper(register wchar_t uc)
- {
- register const struct UniCaseRange *rp;
- if (uc < sizeof(CifsUniUpperTable)) {
-
- return uc + CifsUniUpperTable[uc];
- } else {
- rp = CifsUniUpperRange;
- while (rp->start) {
- if (uc < rp->start)
- return uc;
- if (uc <= rp->end)
- return uc + rp->table[uc - rp->start];
- rp++;
- }
- }
- return uc;
- }
- static inline __le16 *
- UniStrupr(register __le16 *upin)
- {
- register __le16 *up;
- up = upin;
- while (*up) {
- *up = cpu_to_le16(UniToupper(le16_to_cpu(*up)));
- up++;
- }
- return upin;
- }
- #endif
- #ifndef UNIUPR_NOLOWER
- static inline wchar_t
- UniTolower(register wchar_t uc)
- {
- register const struct UniCaseRange *rp;
- if (uc < sizeof(CifsUniLowerTable)) {
-
- return uc + CifsUniLowerTable[uc];
- } else {
- rp = CifsUniLowerRange;
- while (rp->start) {
- if (uc < rp->start)
- return uc;
- if (uc <= rp->end)
- return uc + rp->table[uc - rp->start];
- rp++;
- }
- }
- return uc;
- }
- static inline wchar_t *
- UniStrlwr(register wchar_t *upin)
- {
- register wchar_t *up;
- up = upin;
- while (*up) {
- *up = UniTolower(*up);
- up++;
- }
- return upin;
- }
- #endif
- #endif
|