2 Unix SMB/CIFS implementation.
3 Samba utility functions
5 Copyright (C) Andrew Tridgell 1992-2001
6 Copyright (C) Simo Sorce 2001-2002
7 Copyright (C) Martin Pool 2003
8 Copyright (C) James Peach 2006
9 Copyright (C) Jeremy Allison 1992-2007
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 "lib/param/loadparm.h"
27 #include "lib/util/smb_strtox.h"
29 static const char toupper_ascii_fast_table
[128] = {
30 0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf,
31 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
32 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
33 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
34 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
35 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,
36 0x60, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
37 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f
41 * Compare 2 strings up to and including the nth char.
43 * @note The comparison is case-insensitive.
45 bool strnequal(const char *s1
,const char *s2
,size_t n
)
52 return(strncasecmp_m(s1
,s2
,n
)==0);
56 Skip past a string in a buffer. Buffer may not be
57 null terminated. end_ptr points to the first byte after
58 then end of the buffer.
61 char *skip_string(const char *base
, size_t len
, char *buf
)
63 const char *end_ptr
= base
+ len
;
65 if (end_ptr
< base
|| !base
|| !buf
|| buf
>= end_ptr
) {
82 Count the number of characters in a string. Normally this will
83 be the same as the number of bytes in a string for single byte strings,
84 but will be different for multibyte.
87 size_t str_charnum(const char *s
)
89 size_t ret
, converted_size
;
90 smb_ucs2_t
*tmpbuf2
= NULL
;
91 if (!push_ucs2_talloc(talloc_tos(), &tmpbuf2
, s
, &converted_size
)) {
94 ret
= strlen_w(tmpbuf2
);
99 bool trim_char(char *s
,char cfront
,char cback
)
105 /* Ignore null or empty strings. */
106 if (!s
|| (s
[0] == '\0'))
110 while (*fp
&& *fp
== cfront
)
113 /* We ate the string. */
121 ep
= fp
+ strlen(fp
) - 1;
123 /* Attempt ascii only. Bail for mb strings. */
124 while ((ep
>= fp
) && (*ep
== cback
)) {
126 if ((ep
> fp
) && (((unsigned char)ep
[-1]) & 0x80)) {
127 /* Could be mb... bail back to trim_string. */
135 return trim_string(s
, cfront
? fs
: NULL
, bs
);
141 /* We ate the string. */
148 memmove(s
, fp
, ep
-fp
+2);
153 Check if a string is part of a list.
156 bool in_list(const char *s
, const char *list
, bool casesensitive
)
166 frame
= talloc_stackframe();
167 while (next_token_talloc(frame
, &list
, &tok
,LIST_SEP
)) {
169 if (strcmp(tok
,s
) == 0) {
174 if (strcasecmp_m(tok
,s
) == 0) {
185 Truncate a string at a specified length.
188 char *string_truncate(char *s
, unsigned int length
)
190 if (s
&& strlen(s
) > length
)
195 static bool unix_strlower(const char *src
, size_t srclen
, char *dest
, size_t destlen
)
198 smb_ucs2_t
*buffer
= NULL
;
201 if (!convert_string_talloc(talloc_tos(), CH_UNIX
, CH_UTF16LE
, src
, srclen
,
202 (void **)(void *)&buffer
, &size
))
206 if (!strlower_w(buffer
) && (dest
== src
)) {
210 ret
= convert_string(CH_UTF16LE
, CH_UNIX
, buffer
, size
, dest
, destlen
, &size
);
215 #if 0 /* Alternate function that avoid talloc calls for ASCII and non ASCII */
218 Convert a string to lower case.
220 _PUBLIC_
void strlower_m(char *s
)
223 struct smb_iconv_handle
*iconv_handle
;
225 iconv_handle
= get_iconv_handle();
230 size_t c_size
, c_size2
;
231 codepoint_t c
= next_codepoint_handle(iconv_handle
, s
, &c_size
);
232 c_size2
= push_codepoint_handle(iconv_handle
, d
, tolower_m(c
));
233 if (c_size2
> c_size
) {
234 DEBUG(0,("FATAL: codepoint 0x%x (0x%x) expanded from %d to %d bytes in strlower_m\n",
235 c
, tolower_m(c
), (int)c_size
, (int)c_size2
));
236 smb_panic("codepoint expansion in strlower_m\n");
247 Convert a string to lower case.
250 bool strlower_m(char *s
)
256 /* this is quite a common operation, so we want it to be
257 fast. We optimise for the ascii case, knowing that all our
258 supported multi-byte character sets are ascii-compatible
259 (ie. they match for the first 128 chars) */
261 while (*s
&& !(((unsigned char)s
[0]) & 0x80)) {
262 *s
= tolower_m((unsigned char)*s
);
269 /* I assume that lowercased string takes the same number of bytes
270 * as source string even in UTF-8 encoding. (VIV) */
274 ret
= unix_strlower(s
,len
,s
,len
);
275 /* Catch mb conversion errors that may not terminate. */
283 static bool unix_strupper(const char *src
, size_t srclen
, char *dest
, size_t destlen
)
289 if (!push_ucs2_talloc(talloc_tos(), &buffer
, src
, &size
)) {
293 if (!strupper_w(buffer
) && (dest
== src
)) {
298 ret
= convert_string(CH_UTF16LE
, CH_UNIX
, buffer
, size
, dest
, destlen
, &size
);
303 #if 0 /* Alternate function that avoid talloc calls for ASCII and non ASCII */
306 Convert a string to UPPER case.
308 _PUBLIC_
void strupper_m(char *s
)
311 struct smb_iconv_handle
*iconv_handle
;
313 iconv_handle
= get_iconv_handle();
318 size_t c_size
, c_size2
;
319 codepoint_t c
= next_codepoint_handle(iconv_handle
, s
, &c_size
);
320 c_size2
= push_codepoint_handle(iconv_handle
, d
, toupper_m(c
));
321 if (c_size2
> c_size
) {
322 DEBUG(0,("FATAL: codepoint 0x%x (0x%x) expanded from %d to %d bytes in strupper_m\n",
323 c
, toupper_m(c
), (int)c_size
, (int)c_size2
));
324 smb_panic("codepoint expansion in strupper_m\n");
335 Convert a string to upper case.
338 bool strupper_m(char *s
)
343 /* this is quite a common operation, so we want it to be
344 fast. We optimise for the ascii case, knowing that all our
345 supported multi-byte character sets are ascii-compatible
346 (ie. they match for the first 128 chars) */
348 while (*s
&& !(((unsigned char)s
[0]) & 0x80)) {
349 *s
= toupper_ascii_fast_table
[(unsigned char)s
[0]];
356 /* I assume that uppercased string takes the same number of bytes
357 * as source string even in multibyte encoding. (VIV) */
359 ret
= unix_strupper(s
,len
,s
,len
);
360 /* Catch mb conversion errors that may not terminate. */
368 Just a typesafety wrapper for snprintf into a fstring.
371 int fstr_sprintf(fstring s
, const char *fmt
, ...)
377 ret
= vsnprintf(s
, FSTRING_LEN
, fmt
, ap
);
382 /* read a SMB_BIG_UINT from a string */
383 uint64_t STR_TO_SMB_BIG_UINT(const char *nptr
, const char **entptr
)
386 uint64_t val
= (uint64_t)-1;
387 const char *p
= nptr
;
396 while (*p
&& isspace(*p
))
399 sscanf(p
,"%"SCNu64
,&val
);
401 while (*p
&& isdigit(*p
))
409 /* Convert a size specification to a count of bytes. We accept the following
411 * bytes if there is no suffix
416 * pP whatever the ISO name for petabytes is
418 * Returns 0 if the string can't be converted.
420 uint64_t conv_str_size(const char * str
)
426 if (str
== NULL
|| *str
== '\0') {
430 lval
= smb_strtoull(str
, &end
, 10, &error
, SMB_STR_STANDARD
);
440 if (strwicmp(end
, "K") == 0) {
442 } else if (strwicmp(end
, "M") == 0) {
443 lval
*= (1024ULL * 1024ULL);
444 } else if (strwicmp(end
, "G") == 0) {
445 lval
*= (1024ULL * 1024ULL *
447 } else if (strwicmp(end
, "T") == 0) {
448 lval
*= (1024ULL * 1024ULL *
450 } else if (strwicmp(end
, "P") == 0) {
451 lval
*= (1024ULL * 1024ULL *
461 char *talloc_asprintf_strupper_m(TALLOC_CTX
*t
, const char *fmt
, ...)
467 ret
= talloc_vasprintf(t
, fmt
, ap
);
473 if (!strupper_m(ret
)) {
480 char *talloc_asprintf_strlower_m(TALLOC_CTX
*t
, const char *fmt
, ...)
486 ret
= talloc_vasprintf(t
, fmt
, ap
);
492 if (!strlower_m(ret
)) {
500 /********************************************************************
501 Check a string for any occurrences of a specified list of invalid
503 ********************************************************************/
505 bool validate_net_name( const char *name
,
506 const char *invalid_chars
,
515 for ( i
=0; i
<max_len
&& name
[i
]; i
++ ) {
516 /* fail if strchr_m() finds one of the invalid characters */
517 if ( name
[i
] && strchr_m( invalid_chars
, name
[i
] ) ) {
526 /*******************************************************************
527 Add a shell escape character '\' to any character not in a known list
528 of characters. UNIX charset format.
529 *******************************************************************/
531 #define INCLUDE_LIST "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_/ \t.,"
532 #define INSIDE_DQUOTE_LIST "$`\n\"\\"
534 char *escape_shell_string(const char *src
)
536 size_t srclen
= strlen(src
);
537 char *ret
= SMB_MALLOC_ARRAY(char, (srclen
* 2) + 1);
539 bool in_s_quote
= false;
540 bool in_d_quote
= false;
541 bool next_escaped
= false;
549 codepoint_t c
= next_codepoint(src
, &c_size
);
551 if (c
== INVALID_CODEPOINT
) {
557 memcpy(dest
, src
, c_size
);
560 next_escaped
= false;
565 * Deal with backslash escaped state.
566 * This only lasts for one character.
571 next_escaped
= false;
576 * Deal with single quote state. The
577 * only thing we care about is exiting
590 * Deal with double quote state. The most
591 * complex state. We must cope with \, meaning
592 * possibly escape next char (depending what it
593 * is), ", meaning exit this state, and possibly
594 * add an \ escape to any unprotected character
595 * (listed in INSIDE_DQUOTE_LIST).
601 * Next character might be escaped.
602 * We have to peek. Inside double
603 * quotes only INSIDE_DQUOTE_LIST
604 * characters are escaped by a \.
609 c
= next_codepoint(&src
[1], &c_size
);
610 if (c
== INVALID_CODEPOINT
) {
616 * Don't escape the next char.
625 if (nextchar
&& strchr(INSIDE_DQUOTE_LIST
,
634 /* Exit double quote state. */
641 * We know the character isn't \ or ",
642 * so escape it if it's any of the other
643 * possible unprotected characters.
646 if (strchr(INSIDE_DQUOTE_LIST
, (int)*src
)) {
654 * From here to the end of the loop we're
655 * not in the single or double quote state.
659 /* Next character must be escaped. */
666 /* Go into single quote state. */
673 /* Go into double quote state. */
679 /* Check if we need to escape the character. */
681 if (!strchr(INCLUDE_LIST
, (int)*src
)) {
691 * This routine improves performance for operations temporarily acting on a
692 * full path. It is equivalent to the much more expensive
694 * talloc_asprintf(talloc_tos(), "%s/%s", dir, name)
696 * This actually does make a difference in metadata-heavy workloads (i.e. the
697 * "standard" client.txt nbench run.
700 ssize_t
full_path_tos(const char *dir
, const char *name
,
701 char *tmpbuf
, size_t tmpbuf_len
,
702 char **pdst
, char **to_free
)
704 size_t dirlen
, namelen
, len
;
707 dirlen
= strlen(dir
);
708 namelen
= strlen(name
);
709 len
= dirlen
+ namelen
+ 1;
711 if (len
< tmpbuf_len
) {
715 dst
= talloc_array(talloc_tos(), char, len
+1);
722 memcpy(dst
, dir
, dirlen
);
724 memcpy(dst
+dirlen
+1, name
, namelen
+1);