2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Jeremy Allison 2001-2002
6 Copyright (C) Simo Sorce 2001-2011
7 Copyright (C) Jim McDonough (jmcd@us.ibm.com) 2003.
8 Copyright (C) James J Myers 2003
9 Copyright (C) Volker Lendecke 2010
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/network.h"
27 #include "system/filesys.h"
28 #include "system/locale.h"
29 #include "system/shmem.h"
30 #include "system/passwd.h"
40 * @brief Misc utility functions
44 Find a suitable temporary directory. The result should be copied immediately
45 as it may be overwritten by a subsequent call.
47 _PUBLIC_
const char *tmpdir(void)
50 if ((p
= getenv("TMPDIR")))
57 Create a tmp file, open it and immediately unlink it.
58 If dir is NULL uses tmpdir()
59 Returns the file descriptor or -1 on error.
61 int create_unlink_tmp(const char *dir
)
70 fname
= talloc_asprintf(talloc_tos(), "%s/listenerlock_XXXXXX", dir
);
80 if (unlink(fname
) == -1) {
81 int sys_errno
= errno
;
93 Check if a file exists - call vfs_file_exist for samba files.
95 _PUBLIC_
bool file_exist(const char *fname
)
99 if (stat(fname
, &st
) != 0) {
103 return ((S_ISREG(st
.st_mode
)) || (S_ISFIFO(st
.st_mode
)));
107 Check a files mod time.
110 _PUBLIC_
time_t file_modtime(const char *fname
)
114 if (stat(fname
,&st
) != 0)
121 Check if a directory exists.
124 _PUBLIC_
bool directory_exist(const char *dname
)
129 if (stat(dname
,&st
) != 0) {
133 ret
= S_ISDIR(st
.st_mode
);
140 * Try to create the specified directory if it didn't exist.
142 * @retval true if the directory already existed and has the right permissions
143 * or was successfully created.
145 _PUBLIC_
bool directory_create_or_exist(const char *dname
, uid_t uid
,
151 old_umask
= umask(0);
152 if (lstat(dname
, &st
) == -1) {
153 if (errno
!= ENOENT
) {
154 DEBUG(0, ("lstat failed on directory %s: %s\n",
155 dname
, strerror(errno
)));
160 /* Create directory */
161 if (mkdir(dname
, dir_perms
) == -1) {
162 DEBUG(0, ("mkdir failed on directory "
172 /* Check ownership and permission on existing directory */
173 if (!S_ISDIR(st
.st_mode
)) {
174 DEBUG(0, ("directory %s isn't a directory\n",
179 if (st
.st_uid
!= uid
&& !uwrap_enabled()) {
180 DEBUG(0, ("invalid ownership on directory "
185 if ((st
.st_mode
& 0777) != dir_perms
) {
186 DEBUG(0, ("invalid permissions on directory "
187 "'%s': has 0%o should be 0%o\n", dname
,
188 (st
.st_mode
& 0777), dir_perms
));
198 Sleep for a specified number of milliseconds.
201 _PUBLIC_
void smb_msleep(unsigned int t
)
203 #if defined(HAVE_NANOSLEEP)
208 ts
.tv_nsec
= 1000000*(t
%1000);
212 ret
= nanosleep(&ts
, &ts
);
213 } while (ret
< 0 && errno
== EINTR
&& (ts
.tv_sec
> 0 || ts
.tv_nsec
> 0));
215 unsigned int tdiff
=0;
216 struct timeval tval
,t1
,t2
;
223 tval
.tv_sec
= (t
-tdiff
)/1000;
224 tval
.tv_usec
= 1000*((t
-tdiff
)%1000);
226 /* Never wait for more than 1 sec. */
227 if (tval
.tv_sec
> 1) {
234 select(0,&fds
,NULL
,NULL
,&tval
);
237 if (t2
.tv_sec
< t1
.tv_sec
) {
238 /* Someone adjusted time... */
242 tdiff
= usec_time_diff(&t2
,&t1
)/1000;
248 Get my own name, return in talloc'ed storage.
251 _PUBLIC_
char *get_myname(TALLOC_CTX
*ctx
)
254 char hostname
[HOST_NAME_MAX
];
256 /* get my host name */
257 if (gethostname(hostname
, sizeof(hostname
)) == -1) {
258 DEBUG(0,("gethostname failed\n"));
262 /* Ensure null termination. */
263 hostname
[sizeof(hostname
)-1] = '\0';
265 /* split off any parts after an initial . */
266 p
= strchr_m(hostname
, '.');
271 return talloc_strdup(ctx
, hostname
);
275 Check if a process exists. Does this work on all unixes?
278 _PUBLIC_
bool process_exists_by_pid(pid_t pid
)
280 /* Doing kill with a non-positive pid causes messages to be
281 * sent to places we don't want. */
283 return(kill(pid
,0) == 0 || errno
!= ESRCH
);
287 Simple routine to do POSIX file locking. Cruft in NFS and 64->32 bit mapping
288 is dealt with in posix.c
291 _PUBLIC_
bool fcntl_lock(int fd
, int op
, off_t offset
, off_t count
, int type
)
296 DEBUG(8,("fcntl_lock %d %d %.0f %.0f %d\n",fd
,op
,(double)offset
,(double)count
,type
));
299 lock
.l_whence
= SEEK_SET
;
300 lock
.l_start
= offset
;
304 ret
= fcntl(fd
,op
,&lock
);
306 if (ret
== -1 && errno
!= 0)
307 DEBUG(3,("fcntl_lock: fcntl lock gave errno %d (%s)\n",errno
,strerror(errno
)));
312 (lock
.l_type
!= F_UNLCK
) &&
314 (lock
.l_pid
!= getpid())) {
315 DEBUG(3,("fcntl_lock: fd %d is locked by pid %d\n",fd
,(int)lock
.l_pid
));
319 /* it must be not locked or locked by me */
323 /* a lock set or unset */
325 DEBUG(3,("fcntl_lock: lock failed at offset %.0f count %.0f op %d type %d (%s)\n",
326 (double)offset
,(double)count
,op
,type
,strerror(errno
)));
330 /* everything went OK */
331 DEBUG(8,("fcntl_lock: Lock call successful\n"));
336 static void debugadd_cb(const char *buf
, void *private_data
)
338 int *plevel
= (int *)private_data
;
339 DEBUGADD(*plevel
, ("%s", buf
));
342 void print_asc_cb(const uint8_t *buf
, int len
,
343 void (*cb
)(const char *buf
, void *private_data
),
350 for (i
=0; i
<len
; i
++) {
351 s
[0] = isprint(buf
[i
]) ? buf
[i
] : '.';
356 void print_asc(int level
, const uint8_t *buf
,int len
)
358 print_asc_cb(buf
, len
, debugadd_cb
, &level
);
362 * Write dump of binary data to a callback
364 void dump_data_cb(const uint8_t *buf
, int len
,
365 bool omit_zero_bytes
,
366 void (*cb
)(const char *buf
, void *private_data
),
370 static const uint8_t empty
[16] = { 0, };
371 bool skipped
= false;
379 if ((omit_zero_bytes
== true) &&
382 (memcmp(&buf
[i
], &empty
, 16) == 0))
389 snprintf(tmp
, sizeof(tmp
), "[%04X] ", i
);
390 cb(tmp
, private_data
);
394 snprintf(tmp
, sizeof(tmp
), "%02X ", (int)buf
[i
]);
395 cb(tmp
, private_data
);
398 cb(" ", private_data
);
402 print_asc_cb(&buf
[i
-16], 8, cb
, private_data
);
403 cb(" ", private_data
);
404 print_asc_cb(&buf
[i
-8], 8, cb
, private_data
);
405 cb("\n", private_data
);
407 if ((omit_zero_bytes
== true) &&
409 (memcmp(&buf
[i
], &empty
, 16) == 0)) {
411 cb("skipping zero buffer bytes\n",
422 cb(" ", private_data
);
424 cb(" ", private_data
);
427 cb(" ", private_data
);
430 print_asc_cb(&buf
[i
-(i
%16)], n
, cb
, private_data
);
431 cb(" ", private_data
);
434 print_asc_cb(&buf
[i
-n
], n
, cb
, private_data
);
436 cb("\n", private_data
);
442 * Write dump of binary data to the log file.
444 * The data is only written if the log level is at least level.
446 _PUBLIC_
void dump_data(int level
, const uint8_t *buf
, int len
)
448 if (!DEBUGLVL(level
)) {
451 dump_data_cb(buf
, len
, false, debugadd_cb
, &level
);
455 * Write dump of binary data to the log file.
457 * The data is only written if the log level is at least level.
458 * 16 zero bytes in a row are omitted
460 _PUBLIC_
void dump_data_skip_zeros(int level
, const uint8_t *buf
, int len
)
462 if (!DEBUGLVL(level
)) {
465 dump_data_cb(buf
, len
, true, debugadd_cb
, &level
);
468 static void fprintf_cb(const char *buf
, void *private_data
)
470 FILE *f
= (FILE *)private_data
;
471 fprintf(f
, "%s", buf
);
474 void dump_data_file(const uint8_t *buf
, int len
, bool omit_zero_bytes
,
477 dump_data_cb(buf
, len
, omit_zero_bytes
, fprintf_cb
, f
);
481 malloc that aborts with smb_panic on fail or zero size.
484 _PUBLIC_
void *smb_xmalloc(size_t size
)
488 smb_panic("smb_xmalloc: called with zero size.\n");
489 if ((p
= malloc(size
)) == NULL
)
490 smb_panic("smb_xmalloc: malloc fail.\n");
495 Memdup with smb_panic on fail.
498 _PUBLIC_
void *smb_xmemdup(const void *p
, size_t size
)
501 p2
= smb_xmalloc(size
);
507 strdup that aborts on malloc fail.
510 char *smb_xstrdup(const char *s
)
512 #if defined(PARANOID_MALLOC_CHECKER)
519 #define strdup rep_strdup
522 char *s1
= strdup(s
);
523 #if defined(PARANOID_MALLOC_CHECKER)
527 #define strdup(s) __ERROR_DONT_USE_STRDUP_DIRECTLY
530 smb_panic("smb_xstrdup: malloc failed");
537 strndup that aborts on malloc fail.
540 char *smb_xstrndup(const char *s
, size_t n
)
542 #if defined(PARANOID_MALLOC_CHECKER)
548 #if (defined(BROKEN_STRNDUP) || !defined(HAVE_STRNDUP))
550 #define strndup rep_strndup
553 char *s1
= strndup(s
, n
);
554 #if defined(PARANOID_MALLOC_CHECKER)
558 #define strndup(s,n) __ERROR_DONT_USE_STRNDUP_DIRECTLY
561 smb_panic("smb_xstrndup: malloc failed");
569 Like strdup but for memory.
572 _PUBLIC_
void *memdup(const void *p
, size_t size
)
585 * Write a password to the log file.
587 * @note Only actually does something if DEBUG_PASSWORD was defined during
590 _PUBLIC_
void dump_data_pw(const char *msg
, const uint8_t * data
, size_t len
)
592 #ifdef DEBUG_PASSWORD
593 DEBUG(11, ("%s", msg
));
594 if (data
!= NULL
&& len
> 0)
596 dump_data(11, data
, len
);
603 * see if a range of memory is all zero. A NULL pointer is considered
606 _PUBLIC_
bool all_zero(const uint8_t *ptr
, size_t size
)
609 if (!ptr
) return true;
610 for (i
=0;i
<size
;i
++) {
611 if (ptr
[i
]) return false;
617 realloc an array, checking for integer overflow in the array size
619 _PUBLIC_
void *realloc_array(void *ptr
, size_t el_size
, unsigned count
, bool free_on_fail
)
621 #define MAX_MALLOC_SIZE 0x7fffffff
623 count
>= MAX_MALLOC_SIZE
/el_size
) {
629 return malloc(el_size
* count
);
631 return realloc(ptr
, el_size
* count
);
634 /****************************************************************************
636 ****************************************************************************/
638 void *malloc_array(size_t el_size
, unsigned int count
)
640 return realloc_array(NULL
, el_size
, count
, false);
644 Trim the specified elements off the front and back of a string.
646 _PUBLIC_
bool trim_string(char *s
, const char *front
, const char *back
)
653 /* Ignore null or empty strings. */
654 if (!s
|| (s
[0] == '\0'))
657 front_len
= front
? strlen(front
) : 0;
658 back_len
= back
? strlen(back
) : 0;
663 while (len
&& strncmp(s
, front
, front_len
)==0) {
664 /* Must use memmove here as src & dest can
665 * easily overlap. Found by valgrind. JRA. */
666 memmove(s
, s
+front_len
, (len
-front_len
)+1);
673 while ((len
>= back_len
) && strncmp(s
+len
-back_len
,back
,back_len
)==0) {
674 s
[len
-back_len
]='\0';
683 Find the number of 'c' chars in a string
685 _PUBLIC_ _PURE_
size_t count_chars(const char *s
, char c
)
690 if (*s
== c
) count
++;
698 * Routine to get hex characters and turn them into a byte array.
699 * the array can be variable length.
700 * - "0xnn" or "0Xnn" is specially catered for.
701 * - The first non-hex-digit character (apart from possibly leading "0x"
702 * finishes the conversion and skips the rest of the input.
703 * - A single hex-digit character at the end of the string is skipped.
705 * valid examples: "0A5D15"; "0x123456"
707 _PUBLIC_
size_t strhex_to_str(char *p
, size_t p_len
, const char *strhex
, size_t strhex_len
)
710 size_t num_chars
= 0;
711 uint8_t lonybble
, hinybble
;
712 const char *hexchars
= "0123456789ABCDEF";
713 char *p1
= NULL
, *p2
= NULL
;
715 /* skip leading 0x prefix */
716 if (strncasecmp(strhex
, "0x", 2) == 0) {
717 i
+= 2; /* skip two chars */
720 for (; i
+1 < strhex_len
&& strhex
[i
] != 0 && strhex
[i
+1] != 0; i
++) {
721 p1
= strchr(hexchars
, toupper((unsigned char)strhex
[i
]));
726 i
++; /* next hex digit */
728 p2
= strchr(hexchars
, toupper((unsigned char)strhex
[i
]));
733 /* get the two nybbles */
734 hinybble
= PTR_DIFF(p1
, hexchars
);
735 lonybble
= PTR_DIFF(p2
, hexchars
);
737 if (num_chars
>= p_len
) {
741 p
[num_chars
] = (hinybble
<< 4) | lonybble
;
751 * Parse a hex string and return a data blob.
753 _PUBLIC_ _PURE_ DATA_BLOB
strhex_to_data_blob(TALLOC_CTX
*mem_ctx
, const char *strhex
)
755 DATA_BLOB ret_blob
= data_blob_talloc(mem_ctx
, NULL
, strlen(strhex
)/2+1);
757 ret_blob
.length
= strhex_to_str((char *)ret_blob
.data
, ret_blob
.length
,
765 * Print a buf in hex. Assumes dst is at least (srclen*2)+1 large.
767 _PUBLIC_
void hex_encode_buf(char *dst
, const uint8_t *src
, size_t srclen
)
770 for (i
=0; i
<srclen
; i
++) {
771 snprintf(dst
+ i
*2, 3, "%02X", src
[i
]);
774 * Ensure 0-termination for 0-length buffers
776 dst
[srclen
*2] = '\0';
780 * Routine to print a buffer as HEX digits, into an allocated string.
782 _PUBLIC_
void hex_encode(const unsigned char *buff_in
, size_t len
, char **out_hex_buffer
)
786 *out_hex_buffer
= malloc_array_p(char, (len
*2)+1);
787 hex_buffer
= *out_hex_buffer
;
788 hex_encode_buf(hex_buffer
, buff_in
, len
);
792 * talloc version of hex_encode()
794 _PUBLIC_
char *hex_encode_talloc(TALLOC_CTX
*mem_ctx
, const unsigned char *buff_in
, size_t len
)
798 hex_buffer
= talloc_array(mem_ctx
, char, (len
*2)+1);
802 hex_encode_buf(hex_buffer
, buff_in
, len
);
803 talloc_set_name_const(hex_buffer
, hex_buffer
);
808 varient of strcmp() that handles NULL ptrs
810 _PUBLIC_
int strcmp_safe(const char *s1
, const char *s2
)
815 if (s1
== NULL
|| s2
== NULL
) {
818 return strcmp(s1
, s2
);
823 return the number of bytes occupied by a buffer in ASCII format
824 the result includes the null termination
827 _PUBLIC_
size_t ascii_len_n(const char *src
, size_t n
)
831 len
= strnlen(src
, n
);
840 Set a boolean variable from the text value stored in the passed string.
841 Returns true in success, false if the passed string does not correctly
845 _PUBLIC_
bool set_boolean(const char *boolean_string
, bool *boolean
)
847 if (strwicmp(boolean_string
, "yes") == 0 ||
848 strwicmp(boolean_string
, "true") == 0 ||
849 strwicmp(boolean_string
, "on") == 0 ||
850 strwicmp(boolean_string
, "1") == 0) {
853 } else if (strwicmp(boolean_string
, "no") == 0 ||
854 strwicmp(boolean_string
, "false") == 0 ||
855 strwicmp(boolean_string
, "off") == 0 ||
856 strwicmp(boolean_string
, "0") == 0) {
864 return the number of bytes occupied by a buffer in CH_UTF16 format
865 the result includes the null termination
867 _PUBLIC_
size_t utf16_len(const void *buf
)
871 for (len
= 0; SVAL(buf
,len
); len
+= 2) ;
877 return the number of bytes occupied by a buffer in CH_UTF16 format
878 the result includes the null termination
881 _PUBLIC_
size_t utf16_len_n(const void *src
, size_t n
)
885 for (len
= 0; (len
+2 < n
) && SVAL(src
, len
); len
+= 2) ;
896 * @brief String utilities.
899 static bool next_token_internal_talloc(TALLOC_CTX
*ctx
,
918 /* default to simple separators */
923 /* find the first non sep char, if left-trimming is requested */
925 while (*s
&& strchr_m(sep
,*s
)) {
935 /* When restarting we need to go from here. */
938 /* Work out the length needed. */
939 for (quoted
= false; *s
&&
940 (quoted
|| !strchr_m(sep
,*s
)); s
++) {
948 /* We started with len = 1 so we have space for the nul. */
949 *pp_buff
= talloc_array(ctx
, char, len
);
954 /* copy over the token */
957 for (quoted
= false; *s
&&
958 (quoted
|| !strchr_m(sep
,*s
)); s
++) {
966 *ptr
= (*s
) ? s
+1 : s
;
972 bool next_token_talloc(TALLOC_CTX
*ctx
,
977 return next_token_internal_talloc(ctx
, ptr
, pp_buff
, sep
, true);
981 * Get the next token from a string, return false if none found. Handles
982 * double-quotes. This version does not trim leading separator characters
983 * before looking for a token.
986 bool next_token_no_ltrim_talloc(TALLOC_CTX
*ctx
,
991 return next_token_internal_talloc(ctx
, ptr
, pp_buff
, sep
, false);
995 * Get the next token from a string, return False if none found.
996 * Handles double-quotes.
998 * Based on a routine by GJC@VILLAGE.COM.
999 * Extensively modified by Andrew.Tridgell@anu.edu.au
1001 _PUBLIC_
bool next_token(const char **ptr
,char *buff
, const char *sep
, size_t bufsize
)
1012 /* default to simple separators */
1016 /* find the first non sep char */
1017 while (*s
&& strchr_m(sep
,*s
))
1024 /* copy over the token */
1025 for (quoted
= false; len
< bufsize
&& *s
&& (quoted
|| !strchr_m(sep
,*s
)); s
++) {
1034 *ptr
= (*s
) ? s
+1 : s
;
1040 struct anonymous_shared_header
{
1047 /* Map a shared memory buffer of at least nelem counters. */
1048 void *anonymous_shared_allocate(size_t orig_bufsz
)
1052 size_t pagesz
= getpagesize();
1054 size_t bufsz
= orig_bufsz
;
1055 struct anonymous_shared_header
*hdr
;
1057 bufsz
+= sizeof(*hdr
);
1059 /* round up to full pages */
1060 pagecnt
= bufsz
/ pagesz
;
1061 if (bufsz
% pagesz
) {
1064 bufsz
= pagesz
* pagecnt
;
1066 if (orig_bufsz
>= bufsz
) {
1074 buf
= mmap(NULL
, bufsz
, PROT_READ
|PROT_WRITE
, MAP_ANON
|MAP_SHARED
,
1075 -1 /* fd */, 0 /* offset */);
1077 buf
= mmap(NULL
, bufsz
, PROT_READ
|PROT_WRITE
, MAP_FILE
|MAP_SHARED
,
1078 open("/dev/zero", O_RDWR
), 0 /* offset */);
1081 if (buf
== MAP_FAILED
) {
1085 hdr
= (struct anonymous_shared_header
*)buf
;
1086 hdr
->u
.length
= bufsz
;
1088 ptr
= (void *)(&hdr
[1]);
1093 void *anonymous_shared_resize(void *ptr
, size_t new_size
, bool maymove
)
1097 size_t pagesz
= getpagesize();
1100 struct anonymous_shared_header
*hdr
;
1108 hdr
= (struct anonymous_shared_header
*)ptr
;
1110 if (hdr
->u
.length
> (new_size
+ sizeof(*hdr
))) {
1115 bufsz
= new_size
+ sizeof(*hdr
);
1117 /* round up to full pages */
1118 pagecnt
= bufsz
/ pagesz
;
1119 if (bufsz
% pagesz
) {
1122 bufsz
= pagesz
* pagecnt
;
1124 if (new_size
>= bufsz
) {
1130 if (bufsz
<= hdr
->u
.length
) {
1135 flags
= MREMAP_MAYMOVE
;
1138 buf
= mremap(hdr
, hdr
->u
.length
, bufsz
, flags
);
1140 if (buf
== MAP_FAILED
) {
1145 hdr
= (struct anonymous_shared_header
*)buf
;
1146 hdr
->u
.length
= bufsz
;
1148 ptr
= (void *)(&hdr
[1]);
1157 void anonymous_shared_free(void *ptr
)
1159 struct anonymous_shared_header
*hdr
;
1165 hdr
= (struct anonymous_shared_header
*)ptr
;
1169 munmap(hdr
, hdr
->u
.length
);
1173 /* used when you want a debugger started at a particular point in the
1174 code. Mostly useful in code that runs as a child process, where
1175 normal gdb attach is harder to organise.
1177 void samba_start_debugger(void)
1180 if (asprintf(&cmd
, "xterm -e \"gdb --pid %u\"&", getpid()) == -1) {
1183 if (system(cmd
) == -1) {