2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Andrew Tridgell 1992-2001
5 Copyright (C) Simo Sorce 2001
6 Copyright (C) Andrew Bartlett 2011
7 Copyright (C) Jeremy Allison 1992-2007
8 Copyright (C) Martin Pool 2003
9 Copyright (C) James Peach 2006
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "system/locale.h"
28 #include "lib/util/fault.h"
29 #include "lib/util/tsort.h"
40 Case insensitive string comparison, handle specified for testing
42 _PUBLIC_
int strcasecmp_m_handle(struct smb_iconv_handle
*iconv_handle
,
43 const char *s1
, const char *s2
)
45 codepoint_t c1
=0, c2
=0;
46 codepoint_t u1
=0, u2
=0;
47 codepoint_t l1
=0, l2
=0;
50 /* handle null ptr comparisons to simplify the use in qsort */
51 if (s1
== s2
) return 0;
52 if (s1
== NULL
) return -1;
53 if (s2
== NULL
) return 1;
56 c1
= next_codepoint_handle(iconv_handle
, s1
, &size1
);
57 c2
= next_codepoint_handle(iconv_handle
, s2
, &size2
);
59 if (c1
== INVALID_CODEPOINT
||
60 c2
== INVALID_CODEPOINT
) {
61 return strcasecmp(s1
, s2
);
83 return NUMERIC_CMP(l1
, l2
);
86 return NUMERIC_CMP(*s1
, *s2
);
90 Case insensitive string comparison
92 _PUBLIC_
int strcasecmp_m(const char *s1
, const char *s2
)
94 struct smb_iconv_handle
*iconv_handle
= get_iconv_handle();
95 return strcasecmp_m_handle(iconv_handle
, s1
, s2
);
99 Case insensitive string comparison, length limited, handle specified for
102 _PUBLIC_
int strncasecmp_m_handle(struct smb_iconv_handle
*iconv_handle
,
103 const char *s1
, const char *s2
, size_t n
)
105 codepoint_t c1
=0, c2
=0;
106 codepoint_t u1
=0, u2
=0;
107 codepoint_t l1
=0, l2
=0;
110 /* handle null ptr comparisons to simplify the use in qsort */
111 if (s1
== s2
) return 0;
112 if (s1
== NULL
) return -1;
113 if (s2
== NULL
) return 1;
115 while (*s1
&& *s2
&& n
) {
118 c1
= next_codepoint_handle(iconv_handle
, s1
, &size1
);
119 c2
= next_codepoint_handle(iconv_handle
, s2
, &size2
);
121 if (c1
== INVALID_CODEPOINT
||
122 c2
== INVALID_CODEPOINT
) {
124 * n was specified in characters,
125 * now we must convert it to bytes.
126 * As bytes are the smallest
127 * character unit, the following
128 * increment and strncasecmp is always
131 * The source string was already known
132 * to be n characters long, so we are
133 * guaranteed to be able to look at the
134 * (n remaining + size1) bytes from the
138 return strncasecmp(s1
, s2
, n
);
160 return NUMERIC_CMP(l1
, l2
);
167 return NUMERIC_CMP(*s1
, *s2
);
171 Case insensitive string comparison, length limited
173 _PUBLIC_
int strncasecmp_m(const char *s1
, const char *s2
, size_t n
)
175 struct smb_iconv_handle
*iconv_handle
= get_iconv_handle();
176 return strncasecmp_m_handle(iconv_handle
, s1
, s2
, n
);
182 * @note The comparison is case-insensitive.
184 _PUBLIC_
bool strequal_m(const char *s1
, const char *s2
)
186 return strcasecmp_m(s1
,s2
) == 0;
190 Compare 2 strings (case sensitive).
192 _PUBLIC_
bool strcsequal(const char *s1
,const char *s2
)
199 return strcmp(s1
,s2
) == 0;
203 * Calculate the number of units (8 or 16-bit, depending on the
204 * destination charset) that would be needed to convert the input
205 * string, which is expected to be in src_charset encoding, to the
206 * destination charset (which should be a unicode charset).
208 _PUBLIC_
size_t strlen_m_ext_handle(struct smb_iconv_handle
*ic
,
209 const char *s
, charset_t src_charset
, charset_t dst_charset
)
214 switch (dst_charset
) {
217 smb_panic("cannot call strlen_m_ext() with a variable dest charset (must be UTF16* or UTF8)");
222 switch (src_charset
) {
225 smb_panic("cannot call strlen_m_ext() with a UTF16 src charset (must be DOS, UNIX, DISPLAY or UTF8)");
234 while (*s
&& !(((uint8_t)*s
) & 0x80)) {
245 codepoint_t c
= next_codepoint_handle_ext(ic
, s
, strnlen(s
, 5),
246 src_charset
, &c_size
);
249 switch (dst_charset
) {
254 /* Unicode char fits into 16 bits. */
257 /* Double-width unicode char - 32 bits. */
263 * this only checks ranges, and does not
264 * check for invalid codepoints
268 } else if (c
< 0x800) {
270 } else if (c
< 0x10000) {
278 * non-unicode encoding:
279 * assume that each codepoint fits into
280 * one unit in the destination encoding.
290 * Calculate the number of units (8 or 16-bit, depending on the
291 * destination charset) that would be needed to convert the input
292 * string, which is expected to be in src_charset encoding, to the
293 * destination charset (which should be a unicode charset).
295 _PUBLIC_
size_t strlen_m_ext(const char *s
, charset_t src_charset
, charset_t dst_charset
)
297 struct smb_iconv_handle
*ic
= get_iconv_handle();
298 return strlen_m_ext_handle(ic
, s
, src_charset
, dst_charset
);
301 _PUBLIC_
size_t strlen_m_ext_term(const char *s
, const charset_t src_charset
,
302 const charset_t dst_charset
)
307 return strlen_m_ext(s
, src_charset
, dst_charset
) + 1;
310 _PUBLIC_
size_t strlen_m_ext_term_null(const char *s
,
311 const charset_t src_charset
,
312 const charset_t dst_charset
)
318 len
= strlen_m_ext(s
, src_charset
, dst_charset
);
327 * Calculate the number of 16-bit units that would be needed to convert
328 * the input string, which is expected to be in CH_UNIX encoding, to UTF16.
330 * This will be the same as the number of bytes in a string for single
331 * byte strings, but will be different for multibyte.
333 _PUBLIC_
size_t strlen_m(const char *s
)
335 return strlen_m_ext(s
, CH_UNIX
, CH_UTF16LE
);
339 Work out the number of multibyte chars in a string, including the NULL
342 _PUBLIC_
size_t strlen_m_term(const char *s
)
344 return strlen_m_ext_term(s
, CH_UNIX
, CH_UTF16LE
);
348 * Weird helper routine for the winreg pipe: If nothing is around, return 0,
349 * if a string is there, include the terminator.
352 _PUBLIC_
size_t strlen_m_term_null(const char *s
)
354 return strlen_m_ext_term_null(s
, CH_UNIX
, CH_UTF16LE
);
358 Strchr and strrchr_m are a bit complex on general multi-byte strings.
360 _PUBLIC_
char *strchr_m(const char *src
, char c
)
363 struct smb_iconv_handle
*ic
= get_iconv_handle();
367 /* characters below 0x3F are guaranteed to not appear in
368 non-initial position in multi-byte charsets */
369 if ((c
& 0xC0) == 0) {
370 return strchr(src
, c
);
373 /* this is quite a common operation, so we want it to be
374 fast. We optimise for the ascii case, knowing that all our
375 supported multi-byte character sets are ascii-compatible
376 (ie. they match for the first 128 chars) */
378 for (s
= src
; *s
&& !(((unsigned char)s
[0]) & 0x80); s
++) {
380 return discard_const_p(char, s
);
386 #ifdef BROKEN_UNICODE_COMPOSE_CHARACTERS
387 /* With compose characters we must restart from the beginning. JRA. */
393 codepoint_t c2
= next_codepoint_handle(ic
, s
, &size
);
395 return discard_const_p(char, s
);
404 * Multibyte-character version of strrchr
406 _PUBLIC_
char *strrchr_m(const char *s
, char c
)
408 struct smb_iconv_handle
*ic
;
415 /* characters below 0x3F are guaranteed to not appear in
416 non-initial position in multi-byte charsets */
417 if ((c
& 0xC0) == 0) {
418 return strrchr(s
, c
);
421 /* this is quite a common operation, so we want it to be
422 fast. We optimise for the ascii case, knowing that all our
423 supported multi-byte character sets are ascii-compatible
424 (ie. they match for the first 128 chars). Also, in Samba
425 we only search for ascii characters in 'c' and that
426 in all mb character sets with a compound character
427 containing c, if 'c' is not a match at position
428 p, then p[-1] > 0x7f. JRA. */
431 size_t len
= strlen(s
);
440 /* Could be a match. Part of a multibyte ? */
442 (((unsigned char)cp
[-1]) & 0x80)) {
443 /* Yep - go slow :-( */
447 /* No - we have a match ! */
448 return discard_const_p(char , cp
);
455 ic
= get_iconv_handle();
459 codepoint_t c2
= next_codepoint_handle(ic
, s
, &size
);
461 ret
= discard_const_p(char, s
);
470 return True if any (multi-byte) character is lower case
472 _PUBLIC_
bool strhaslower_handle(struct smb_iconv_handle
*ic
,
480 s
= next_codepoint_handle(ic
, string
, &c_size
);
486 return true; /* that means it has lower case chars */
493 _PUBLIC_
bool strhaslower(const char *string
)
495 struct smb_iconv_handle
*ic
= get_iconv_handle();
496 return strhaslower_handle(ic
, string
);
500 return True if any (multi-byte) character is upper case
502 _PUBLIC_
bool strhasupper_handle(struct smb_iconv_handle
*ic
,
510 s
= next_codepoint_handle(ic
, string
, &c_size
);
516 return true; /* that means it has upper case chars */
523 _PUBLIC_
bool strhasupper(const char *string
)
525 struct smb_iconv_handle
*ic
= get_iconv_handle();
526 return strhasupper_handle(ic
, string
);
529 /***********************************************************************
530 strstr_m - We convert via ucs2 for now.
531 ***********************************************************************/
533 char *strstr_m(const char *src
, const char *findstr
)
535 TALLOC_CTX
*mem_ctx
= NULL
;
537 smb_ucs2_t
*src_w
, *find_w
;
541 size_t converted_size
, findstr_len
= 0;
543 /* for correctness */
545 return discard_const_p(char, src
);
548 /* Samba does single character findstr calls a *lot*. */
549 if (findstr
[1] == '\0')
550 return strchr_m(src
, *findstr
);
552 /* We optimise for the ascii case, knowing that all our
553 supported multi-byte character sets are ascii-compatible
554 (ie. they match for the first 128 chars) */
556 for (s
= src
; *s
&& !(((unsigned char)s
[0]) & 0x80); s
++) {
557 if (*s
== *findstr
) {
559 findstr_len
= strlen(findstr
);
561 if (strncmp(s
, findstr
, findstr_len
) == 0) {
562 return discard_const_p(char, s
);
570 #if 1 /* def BROKEN_UNICODE_COMPOSE_CHARACTERS */
571 /* 'make check' fails unless we do this */
573 /* With compose characters we must restart from the beginning. JRA. */
578 * Use get_iconv_handle() just as a non-NULL talloc ctx. In
579 * case we leak memory, this should then be more obvious in
582 mem_ctx
= talloc_new(get_iconv_handle());
583 if (mem_ctx
== NULL
) {
587 if (!push_ucs2_talloc(mem_ctx
, &src_w
, src
, &converted_size
)) {
591 if (!push_ucs2_talloc(mem_ctx
, &find_w
, findstr
, &converted_size
)) {
595 p
= strstr_w(src_w
, find_w
);
602 if (!pull_ucs2_talloc(mem_ctx
, &s2
, src_w
, &converted_size
)) {
605 retp
= discard_const_p(char, (s
+strlen(s2
)));
607 TALLOC_FREE(mem_ctx
);