Initialize the file descriptor in the files_struct before trying to close it. Otherwi...
[Samba/gebeck_regimport.git] / lib / util / util.c
blobf0ed7f645b2062354c02dbaf9e477d01c17b46ab
1 /*
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/>.
25 #include "includes.h"
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"
32 #undef malloc
33 #undef strcasecmp
34 #undef strncasecmp
35 #undef strdup
36 #undef realloc
37 #undef calloc
39 /**
40 * @file
41 * @brief Misc utility functions
44 /**
45 Find a suitable temporary directory. The result should be copied immediately
46 as it may be overwritten by a subsequent call.
47 **/
48 _PUBLIC_ const char *tmpdir(void)
50 char *p;
51 if ((p = getenv("TMPDIR")))
52 return p;
53 return "/tmp";
57 /**
58 Create a tmp file, open it and immediately unlink it.
59 If dir is NULL uses tmpdir()
60 Returns the file descriptor or -1 on error.
61 **/
62 int create_unlink_tmp(const char *dir)
64 char *fname;
65 int fd;
66 mode_t mask;
68 if (!dir) {
69 dir = tmpdir();
72 fname = talloc_asprintf(talloc_tos(), "%s/listenerlock_XXXXXX", dir);
73 if (fname == NULL) {
74 errno = ENOMEM;
75 return -1;
77 mask = umask(S_IRWXO | S_IRWXG);
78 fd = mkstemp(fname);
79 umask(mask);
80 if (fd == -1) {
81 TALLOC_FREE(fname);
82 return -1;
84 if (unlink(fname) == -1) {
85 int sys_errno = errno;
86 close(fd);
87 TALLOC_FREE(fname);
88 errno = sys_errno;
89 return -1;
91 TALLOC_FREE(fname);
92 return fd;
96 /**
97 Check if a file exists - call vfs_file_exist for samba files.
98 **/
99 _PUBLIC_ bool file_exist(const char *fname)
101 struct stat st;
103 if (stat(fname, &st) != 0) {
104 return false;
107 return ((S_ISREG(st.st_mode)) || (S_ISFIFO(st.st_mode)));
111 Check a files mod time.
114 _PUBLIC_ time_t file_modtime(const char *fname)
116 struct stat st;
118 if (stat(fname,&st) != 0)
119 return(0);
121 return(st.st_mtime);
125 Check if a directory exists.
128 _PUBLIC_ bool directory_exist(const char *dname)
130 struct stat st;
131 bool ret;
133 if (stat(dname,&st) != 0) {
134 return false;
137 ret = S_ISDIR(st.st_mode);
138 if(!ret)
139 errno = ENOTDIR;
140 return ret;
144 * Try to create the specified directory if it didn't exist.
146 * @retval true if the directory already existed and has the right permissions
147 * or was successfully created.
149 _PUBLIC_ bool directory_create_or_exist(const char *dname,
150 uid_t uid,
151 mode_t dir_perms)
153 int ret;
154 struct stat st;
156 ret = lstat(dname, &st);
157 if (ret == -1) {
158 mode_t old_umask;
160 if (errno != ENOENT) {
161 DEBUG(0, ("lstat failed on directory %s: %s\n",
162 dname, strerror(errno)));
163 return false;
166 /* Create directory */
167 old_umask = umask(0);
168 ret = mkdir(dname, dir_perms);
169 if (ret == -1 && errno != EEXIST) {
170 DEBUG(0, ("mkdir failed on directory "
171 "%s: %s\n", dname,
172 strerror(errno)));
173 umask(old_umask);
174 return false;
176 umask(old_umask);
178 ret = lstat(dname, &st);
179 if (ret == -1) {
180 DEBUG(0, ("lstat failed on created directory %s: %s\n",
181 dname, strerror(errno)));
182 return false;
186 return true;
190 * @brief Try to create a specified directory if it doesn't exist.
192 * The function creates a directory with the given uid and permissions if it
193 * doesn't exixt. If it exists it makes sure the uid and permissions are
194 * correct and it will fail if they are different.
196 * @param[in] dname The directory to create.
198 * @param[in] uid The uid the directory needs to belong too.
200 * @param[in] dir_perms The expected permissions of the directory.
202 * @return True on success, false on error.
204 _PUBLIC_ bool directory_create_or_exist_strict(const char *dname,
205 uid_t uid,
206 mode_t dir_perms)
208 struct stat st;
209 bool ok;
210 int rc;
212 ok = directory_create_or_exist(dname, uid, dir_perms);
213 if (!ok) {
214 return false;
217 rc = lstat(dname, &st);
218 if (rc == -1) {
219 DEBUG(0, ("lstat failed on created directory %s: %s\n",
220 dname, strerror(errno)));
221 return false;
224 /* Check ownership and permission on existing directory */
225 if (!S_ISDIR(st.st_mode)) {
226 DEBUG(0, ("directory %s isn't a directory\n",
227 dname));
228 return false;
230 if (st.st_uid != uid && !uwrap_enabled()) {
231 DEBUG(0, ("invalid ownership on directory "
232 "%s\n", dname));
233 return false;
235 if ((st.st_mode & 0777) != dir_perms) {
236 DEBUG(0, ("invalid permissions on directory "
237 "'%s': has 0%o should be 0%o\n", dname,
238 (unsigned int)(st.st_mode & 0777), (unsigned int)dir_perms));
239 return false;
242 return true;
247 Sleep for a specified number of milliseconds.
250 _PUBLIC_ void smb_msleep(unsigned int t)
252 #if defined(HAVE_NANOSLEEP)
253 struct timespec ts;
254 int ret;
256 ts.tv_sec = t/1000;
257 ts.tv_nsec = 1000000*(t%1000);
259 do {
260 errno = 0;
261 ret = nanosleep(&ts, &ts);
262 } while (ret < 0 && errno == EINTR && (ts.tv_sec > 0 || ts.tv_nsec > 0));
263 #else
264 unsigned int tdiff=0;
265 struct timeval tval,t1,t2;
266 fd_set fds;
268 GetTimeOfDay(&t1);
269 t2 = t1;
271 while (tdiff < t) {
272 tval.tv_sec = (t-tdiff)/1000;
273 tval.tv_usec = 1000*((t-tdiff)%1000);
275 /* Never wait for more than 1 sec. */
276 if (tval.tv_sec > 1) {
277 tval.tv_sec = 1;
278 tval.tv_usec = 0;
281 FD_ZERO(&fds);
282 errno = 0;
283 select(0,&fds,NULL,NULL,&tval);
285 GetTimeOfDay(&t2);
286 if (t2.tv_sec < t1.tv_sec) {
287 /* Someone adjusted time... */
288 t1 = t2;
291 tdiff = usec_time_diff(&t2,&t1)/1000;
293 #endif
297 Get my own name, return in talloc'ed storage.
300 _PUBLIC_ char *get_myname(TALLOC_CTX *ctx)
302 char *p;
303 char hostname[HOST_NAME_MAX];
305 /* get my host name */
306 if (gethostname(hostname, sizeof(hostname)) == -1) {
307 DEBUG(0,("gethostname failed\n"));
308 return NULL;
311 /* Ensure null termination. */
312 hostname[sizeof(hostname)-1] = '\0';
314 /* split off any parts after an initial . */
315 p = strchr_m(hostname, '.');
316 if (p) {
317 *p = 0;
320 return talloc_strdup(ctx, hostname);
324 Check if a process exists. Does this work on all unixes?
327 _PUBLIC_ bool process_exists_by_pid(pid_t pid)
329 /* Doing kill with a non-positive pid causes messages to be
330 * sent to places we don't want. */
331 if (pid <= 0) {
332 return false;
334 return(kill(pid,0) == 0 || errno != ESRCH);
338 Simple routine to do POSIX file locking. Cruft in NFS and 64->32 bit mapping
339 is dealt with in posix.c
342 _PUBLIC_ bool fcntl_lock(int fd, int op, off_t offset, off_t count, int type)
344 struct flock lock;
345 int ret;
347 DEBUG(8,("fcntl_lock %d %d %.0f %.0f %d\n",fd,op,(double)offset,(double)count,type));
349 lock.l_type = type;
350 lock.l_whence = SEEK_SET;
351 lock.l_start = offset;
352 lock.l_len = count;
353 lock.l_pid = 0;
355 ret = fcntl(fd,op,&lock);
357 if (ret == -1 && errno != 0)
358 DEBUG(3,("fcntl_lock: fcntl lock gave errno %d (%s)\n",errno,strerror(errno)));
360 /* a lock query */
361 if (op == F_GETLK) {
362 if ((ret != -1) &&
363 (lock.l_type != F_UNLCK) &&
364 (lock.l_pid != 0) &&
365 (lock.l_pid != getpid())) {
366 DEBUG(3,("fcntl_lock: fd %d is locked by pid %d\n",fd,(int)lock.l_pid));
367 return true;
370 /* it must be not locked or locked by me */
371 return false;
374 /* a lock set or unset */
375 if (ret == -1) {
376 DEBUG(3,("fcntl_lock: lock failed at offset %.0f count %.0f op %d type %d (%s)\n",
377 (double)offset,(double)count,op,type,strerror(errno)));
378 return false;
381 /* everything went OK */
382 DEBUG(8,("fcntl_lock: Lock call successful\n"));
384 return true;
387 struct debug_channel_level {
388 int channel;
389 int level;
392 static void debugadd_channel_cb(const char *buf, void *private_data)
394 struct debug_channel_level *dcl =
395 (struct debug_channel_level *)private_data;
397 DEBUGADDC(dcl->channel, dcl->level,("%s", buf));
400 static void debugadd_cb(const char *buf, void *private_data)
402 int *plevel = (int *)private_data;
403 DEBUGADD(*plevel, ("%s", buf));
406 void print_asc_cb(const uint8_t *buf, int len,
407 void (*cb)(const char *buf, void *private_data),
408 void *private_data)
410 int i;
411 char s[2];
412 s[1] = 0;
414 for (i=0; i<len; i++) {
415 s[0] = isprint(buf[i]) ? buf[i] : '.';
416 cb(s, private_data);
420 void print_asc(int level, const uint8_t *buf,int len)
422 print_asc_cb(buf, len, debugadd_cb, &level);
426 * Write dump of binary data to a callback
428 void dump_data_cb(const uint8_t *buf, int len,
429 bool omit_zero_bytes,
430 void (*cb)(const char *buf, void *private_data),
431 void *private_data)
433 int i=0;
434 static const uint8_t empty[16] = { 0, };
435 bool skipped = false;
436 char tmp[16];
438 if (len<=0) return;
440 for (i=0;i<len;) {
442 if (i%16 == 0) {
443 if ((omit_zero_bytes == true) &&
444 (i > 0) &&
445 (len > i+16) &&
446 (memcmp(&buf[i], &empty, 16) == 0))
448 i +=16;
449 continue;
452 if (i<len) {
453 snprintf(tmp, sizeof(tmp), "[%04X] ", i);
454 cb(tmp, private_data);
458 snprintf(tmp, sizeof(tmp), "%02X ", (int)buf[i]);
459 cb(tmp, private_data);
460 i++;
461 if (i%8 == 0) {
462 cb(" ", private_data);
464 if (i%16 == 0) {
466 print_asc_cb(&buf[i-16], 8, cb, private_data);
467 cb(" ", private_data);
468 print_asc_cb(&buf[i-8], 8, cb, private_data);
469 cb("\n", private_data);
471 if ((omit_zero_bytes == true) &&
472 (len > i+16) &&
473 (memcmp(&buf[i], &empty, 16) == 0)) {
474 if (!skipped) {
475 cb("skipping zero buffer bytes\n",
476 private_data);
477 skipped = true;
483 if (i%16) {
484 int n;
485 n = 16 - (i%16);
486 cb(" ", private_data);
487 if (n>8) {
488 cb(" ", private_data);
490 while (n--) {
491 cb(" ", private_data);
493 n = MIN(8,i%16);
494 print_asc_cb(&buf[i-(i%16)], n, cb, private_data);
495 cb(" ", private_data);
496 n = (i%16) - n;
497 if (n>0) {
498 print_asc_cb(&buf[i-n], n, cb, private_data);
500 cb("\n", private_data);
506 * Write dump of binary data to the log file.
508 * The data is only written if the log level is at least level.
510 _PUBLIC_ void dump_data(int level, const uint8_t *buf, int len)
512 if (!DEBUGLVL(level)) {
513 return;
515 dump_data_cb(buf, len, false, debugadd_cb, &level);
519 * Write dump of binary data to the log file.
521 * The data is only written if the log level is at least level for
522 * debug class dbgc_class.
524 _PUBLIC_ void dump_data_dbgc(int dbgc_class, int level, const uint8_t *buf, int len)
526 struct debug_channel_level dcl = { dbgc_class, level };
528 if (!DEBUGLVLC(dbgc_class, level)) {
529 return;
531 dump_data_cb(buf, len, false, debugadd_channel_cb, &dcl);
535 * Write dump of binary data to the log file.
537 * The data is only written if the log level is at least level.
538 * 16 zero bytes in a row are omitted
540 _PUBLIC_ void dump_data_skip_zeros(int level, const uint8_t *buf, int len)
542 if (!DEBUGLVL(level)) {
543 return;
545 dump_data_cb(buf, len, true, debugadd_cb, &level);
548 static void fprintf_cb(const char *buf, void *private_data)
550 FILE *f = (FILE *)private_data;
551 fprintf(f, "%s", buf);
554 void dump_data_file(const uint8_t *buf, int len, bool omit_zero_bytes,
555 FILE *f)
557 dump_data_cb(buf, len, omit_zero_bytes, fprintf_cb, f);
561 malloc that aborts with smb_panic on fail or zero size.
564 _PUBLIC_ void *smb_xmalloc(size_t size)
566 void *p;
567 if (size == 0)
568 smb_panic("smb_xmalloc: called with zero size.\n");
569 if ((p = malloc(size)) == NULL)
570 smb_panic("smb_xmalloc: malloc fail.\n");
571 return p;
575 Memdup with smb_panic on fail.
578 _PUBLIC_ void *smb_xmemdup(const void *p, size_t size)
580 void *p2;
581 p2 = smb_xmalloc(size);
582 memcpy(p2, p, size);
583 return p2;
587 strdup that aborts on malloc fail.
590 char *smb_xstrdup(const char *s)
592 #if defined(PARANOID_MALLOC_CHECKER)
593 #ifdef strdup
594 #undef strdup
595 #endif
596 #endif
598 #ifndef HAVE_STRDUP
599 #define strdup rep_strdup
600 #endif
602 char *s1 = strdup(s);
603 #if defined(PARANOID_MALLOC_CHECKER)
604 #ifdef strdup
605 #undef strdup
606 #endif
607 #define strdup(s) __ERROR_DONT_USE_STRDUP_DIRECTLY
608 #endif
609 if (!s1) {
610 smb_panic("smb_xstrdup: malloc failed");
612 return s1;
617 strndup that aborts on malloc fail.
620 char *smb_xstrndup(const char *s, size_t n)
622 #if defined(PARANOID_MALLOC_CHECKER)
623 #ifdef strndup
624 #undef strndup
625 #endif
626 #endif
628 #if (defined(BROKEN_STRNDUP) || !defined(HAVE_STRNDUP))
629 #undef HAVE_STRNDUP
630 #define strndup rep_strndup
631 #endif
633 char *s1 = strndup(s, n);
634 #if defined(PARANOID_MALLOC_CHECKER)
635 #ifdef strndup
636 #undef strndup
637 #endif
638 #define strndup(s,n) __ERROR_DONT_USE_STRNDUP_DIRECTLY
639 #endif
640 if (!s1) {
641 smb_panic("smb_xstrndup: malloc failed");
643 return s1;
649 Like strdup but for memory.
652 _PUBLIC_ void *memdup(const void *p, size_t size)
654 void *p2;
655 if (size == 0)
656 return NULL;
657 p2 = malloc(size);
658 if (!p2)
659 return NULL;
660 memcpy(p2, p, size);
661 return p2;
665 * Write a password to the log file.
667 * @note Only actually does something if DEBUG_PASSWORD was defined during
668 * compile-time.
670 _PUBLIC_ void dump_data_pw(const char *msg, const uint8_t * data, size_t len)
672 #ifdef DEBUG_PASSWORD
673 DEBUG(11, ("%s", msg));
674 if (data != NULL && len > 0)
676 dump_data(11, data, len);
678 #endif
683 * see if a range of memory is all zero. A NULL pointer is considered
684 * to be all zero
686 _PUBLIC_ bool all_zero(const uint8_t *ptr, size_t size)
688 int i;
689 if (!ptr) return true;
690 for (i=0;i<size;i++) {
691 if (ptr[i]) return false;
693 return true;
697 realloc an array, checking for integer overflow in the array size
699 _PUBLIC_ void *realloc_array(void *ptr, size_t el_size, unsigned count, bool free_on_fail)
701 #define MAX_MALLOC_SIZE 0x7fffffff
702 if (count == 0 ||
703 count >= MAX_MALLOC_SIZE/el_size) {
704 if (free_on_fail)
705 SAFE_FREE(ptr);
706 return NULL;
708 if (!ptr) {
709 return malloc(el_size * count);
711 return realloc(ptr, el_size * count);
714 /****************************************************************************
715 Type-safe malloc.
716 ****************************************************************************/
718 void *malloc_array(size_t el_size, unsigned int count)
720 return realloc_array(NULL, el_size, count, false);
723 /****************************************************************************
724 Type-safe memalign
725 ****************************************************************************/
727 void *memalign_array(size_t el_size, size_t align, unsigned int count)
729 if (count*el_size >= MAX_MALLOC_SIZE) {
730 return NULL;
733 return memalign(align, el_size*count);
736 /****************************************************************************
737 Type-safe calloc.
738 ****************************************************************************/
740 void *calloc_array(size_t size, size_t nmemb)
742 if (nmemb >= MAX_MALLOC_SIZE/size) {
743 return NULL;
745 if (size == 0 || nmemb == 0) {
746 return NULL;
748 return calloc(nmemb, size);
752 Trim the specified elements off the front and back of a string.
754 _PUBLIC_ bool trim_string(char *s, const char *front, const char *back)
756 bool ret = false;
757 size_t front_len;
758 size_t back_len;
759 size_t len;
761 /* Ignore null or empty strings. */
762 if (!s || (s[0] == '\0'))
763 return false;
765 front_len = front? strlen(front) : 0;
766 back_len = back? strlen(back) : 0;
768 len = strlen(s);
770 if (front_len) {
771 while (len && strncmp(s, front, front_len)==0) {
772 /* Must use memmove here as src & dest can
773 * easily overlap. Found by valgrind. JRA. */
774 memmove(s, s+front_len, (len-front_len)+1);
775 len -= front_len;
776 ret=true;
780 if (back_len) {
781 while ((len >= back_len) && strncmp(s+len-back_len,back,back_len)==0) {
782 s[len-back_len]='\0';
783 len -= back_len;
784 ret=true;
787 return ret;
791 Find the number of 'c' chars in a string
793 _PUBLIC_ _PURE_ size_t count_chars(const char *s, char c)
795 size_t count = 0;
797 while (*s) {
798 if (*s == c) count++;
799 s ++;
802 return count;
806 * Routine to get hex characters and turn them into a byte array.
807 * the array can be variable length.
808 * - "0xnn" or "0Xnn" is specially catered for.
809 * - The first non-hex-digit character (apart from possibly leading "0x"
810 * finishes the conversion and skips the rest of the input.
811 * - A single hex-digit character at the end of the string is skipped.
813 * valid examples: "0A5D15"; "0x123456"
815 _PUBLIC_ size_t strhex_to_str(char *p, size_t p_len, const char *strhex, size_t strhex_len)
817 size_t i = 0;
818 size_t num_chars = 0;
819 uint8_t lonybble, hinybble;
820 const char *hexchars = "0123456789ABCDEF";
821 char *p1 = NULL, *p2 = NULL;
823 /* skip leading 0x prefix */
824 if (strncasecmp(strhex, "0x", 2) == 0) {
825 i += 2; /* skip two chars */
828 for (; i+1 < strhex_len && strhex[i] != 0 && strhex[i+1] != 0; i++) {
829 p1 = strchr(hexchars, toupper((unsigned char)strhex[i]));
830 if (p1 == NULL) {
831 break;
834 i++; /* next hex digit */
836 p2 = strchr(hexchars, toupper((unsigned char)strhex[i]));
837 if (p2 == NULL) {
838 break;
841 /* get the two nybbles */
842 hinybble = PTR_DIFF(p1, hexchars);
843 lonybble = PTR_DIFF(p2, hexchars);
845 if (num_chars >= p_len) {
846 break;
849 p[num_chars] = (hinybble << 4) | lonybble;
850 num_chars++;
852 p1 = NULL;
853 p2 = NULL;
855 return num_chars;
858 /**
859 * Parse a hex string and return a data blob.
861 _PUBLIC_ _PURE_ DATA_BLOB strhex_to_data_blob(TALLOC_CTX *mem_ctx, const char *strhex)
863 DATA_BLOB ret_blob = data_blob_talloc(mem_ctx, NULL, strlen(strhex)/2+1);
865 ret_blob.length = strhex_to_str((char *)ret_blob.data, ret_blob.length,
866 strhex,
867 strlen(strhex));
869 return ret_blob;
873 * Print a buf in hex. Assumes dst is at least (srclen*2)+1 large.
875 _PUBLIC_ void hex_encode_buf(char *dst, const uint8_t *src, size_t srclen)
877 size_t i;
878 for (i=0; i<srclen; i++) {
879 snprintf(dst + i*2, 3, "%02X", src[i]);
882 * Ensure 0-termination for 0-length buffers
884 dst[srclen*2] = '\0';
888 * Routine to print a buffer as HEX digits, into an allocated string.
890 _PUBLIC_ void hex_encode(const unsigned char *buff_in, size_t len, char **out_hex_buffer)
892 char *hex_buffer;
894 *out_hex_buffer = malloc_array_p(char, (len*2)+1);
895 hex_buffer = *out_hex_buffer;
896 hex_encode_buf(hex_buffer, buff_in, len);
900 * talloc version of hex_encode()
902 _PUBLIC_ char *hex_encode_talloc(TALLOC_CTX *mem_ctx, const unsigned char *buff_in, size_t len)
904 char *hex_buffer;
906 hex_buffer = talloc_array(mem_ctx, char, (len*2)+1);
907 if (!hex_buffer) {
908 return NULL;
910 hex_encode_buf(hex_buffer, buff_in, len);
911 talloc_set_name_const(hex_buffer, hex_buffer);
912 return hex_buffer;
916 varient of strcmp() that handles NULL ptrs
918 _PUBLIC_ int strcmp_safe(const char *s1, const char *s2)
920 if (s1 == s2) {
921 return 0;
923 if (s1 == NULL || s2 == NULL) {
924 return s1?-1:1;
926 return strcmp(s1, s2);
931 return the number of bytes occupied by a buffer in ASCII format
932 the result includes the null termination
933 limited by 'n' bytes
935 _PUBLIC_ size_t ascii_len_n(const char *src, size_t n)
937 size_t len;
939 len = strnlen(src, n);
940 if (len+1 <= n) {
941 len += 1;
944 return len;
948 Set a boolean variable from the text value stored in the passed string.
949 Returns true in success, false if the passed string does not correctly
950 represent a boolean.
953 _PUBLIC_ bool set_boolean(const char *boolean_string, bool *boolean)
955 if (strwicmp(boolean_string, "yes") == 0 ||
956 strwicmp(boolean_string, "true") == 0 ||
957 strwicmp(boolean_string, "on") == 0 ||
958 strwicmp(boolean_string, "1") == 0) {
959 *boolean = true;
960 return true;
961 } else if (strwicmp(boolean_string, "no") == 0 ||
962 strwicmp(boolean_string, "false") == 0 ||
963 strwicmp(boolean_string, "off") == 0 ||
964 strwicmp(boolean_string, "0") == 0) {
965 *boolean = false;
966 return true;
968 return false;
972 return the number of bytes occupied by a buffer in CH_UTF16 format
973 the result includes the null termination
975 _PUBLIC_ size_t utf16_len(const void *buf)
977 size_t len;
979 for (len = 0; SVAL(buf,len); len += 2) ;
981 return len + 2;
985 return the number of bytes occupied by a buffer in CH_UTF16 format
986 the result includes the null termination
987 limited by 'n' bytes
989 _PUBLIC_ size_t utf16_len_n(const void *src, size_t n)
991 size_t len;
993 for (len = 0; (len+2 < n) && SVAL(src, len); len += 2) ;
995 if (len+2 <= n) {
996 len += 2;
999 return len;
1003 * @file
1004 * @brief String utilities.
1007 static bool next_token_internal_talloc(TALLOC_CTX *ctx,
1008 const char **ptr,
1009 char **pp_buff,
1010 const char *sep,
1011 bool ltrim)
1013 const char *s;
1014 const char *saved_s;
1015 char *pbuf;
1016 bool quoted;
1017 size_t len=1;
1019 *pp_buff = NULL;
1020 if (!ptr) {
1021 return(false);
1024 s = *ptr;
1026 /* default to simple separators */
1027 if (!sep) {
1028 sep = " \t\n\r";
1031 /* find the first non sep char, if left-trimming is requested */
1032 if (ltrim) {
1033 while (*s && strchr_m(sep,*s)) {
1034 s++;
1038 /* nothing left? */
1039 if (!*s) {
1040 return false;
1043 /* When restarting we need to go from here. */
1044 saved_s = s;
1046 /* Work out the length needed. */
1047 for (quoted = false; *s &&
1048 (quoted || !strchr_m(sep,*s)); s++) {
1049 if (*s == '\"') {
1050 quoted = !quoted;
1051 } else {
1052 len++;
1056 /* We started with len = 1 so we have space for the nul. */
1057 *pp_buff = talloc_array(ctx, char, len);
1058 if (!*pp_buff) {
1059 return false;
1062 /* copy over the token */
1063 pbuf = *pp_buff;
1064 s = saved_s;
1065 for (quoted = false; *s &&
1066 (quoted || !strchr_m(sep,*s)); s++) {
1067 if ( *s == '\"' ) {
1068 quoted = !quoted;
1069 } else {
1070 *pbuf++ = *s;
1074 *ptr = (*s) ? s+1 : s;
1075 *pbuf = 0;
1077 return true;
1080 bool next_token_talloc(TALLOC_CTX *ctx,
1081 const char **ptr,
1082 char **pp_buff,
1083 const char *sep)
1085 return next_token_internal_talloc(ctx, ptr, pp_buff, sep, true);
1089 * Get the next token from a string, return false if none found. Handles
1090 * double-quotes. This version does not trim leading separator characters
1091 * before looking for a token.
1094 bool next_token_no_ltrim_talloc(TALLOC_CTX *ctx,
1095 const char **ptr,
1096 char **pp_buff,
1097 const char *sep)
1099 return next_token_internal_talloc(ctx, ptr, pp_buff, sep, false);
1103 * Get the next token from a string, return False if none found.
1104 * Handles double-quotes.
1106 * Based on a routine by GJC@VILLAGE.COM.
1107 * Extensively modified by Andrew.Tridgell@anu.edu.au
1109 _PUBLIC_ bool next_token(const char **ptr,char *buff, const char *sep, size_t bufsize)
1111 const char *s;
1112 bool quoted;
1113 size_t len=1;
1115 if (!ptr)
1116 return false;
1118 s = *ptr;
1120 /* default to simple separators */
1121 if (!sep)
1122 sep = " \t\n\r";
1124 /* find the first non sep char */
1125 while (*s && strchr_m(sep,*s))
1126 s++;
1128 /* nothing left? */
1129 if (!*s)
1130 return false;
1132 /* copy over the token */
1133 for (quoted = false; len < bufsize && *s && (quoted || !strchr_m(sep,*s)); s++) {
1134 if (*s == '\"') {
1135 quoted = !quoted;
1136 } else {
1137 len++;
1138 *buff++ = *s;
1142 *ptr = (*s) ? s+1 : s;
1143 *buff = 0;
1145 return true;
1148 struct anonymous_shared_header {
1149 union {
1150 size_t length;
1151 uint8_t pad[16];
1152 } u;
1155 /* Map a shared memory buffer of at least nelem counters. */
1156 void *anonymous_shared_allocate(size_t orig_bufsz)
1158 void *ptr;
1159 void *buf;
1160 size_t pagesz = getpagesize();
1161 size_t pagecnt;
1162 size_t bufsz = orig_bufsz;
1163 struct anonymous_shared_header *hdr;
1165 bufsz += sizeof(*hdr);
1167 /* round up to full pages */
1168 pagecnt = bufsz / pagesz;
1169 if (bufsz % pagesz) {
1170 pagecnt += 1;
1172 bufsz = pagesz * pagecnt;
1174 if (orig_bufsz >= bufsz) {
1175 /* integer wrap */
1176 errno = ENOMEM;
1177 return NULL;
1180 #ifdef MAP_ANON
1181 /* BSD */
1182 buf = mmap(NULL, bufsz, PROT_READ|PROT_WRITE, MAP_ANON|MAP_SHARED,
1183 -1 /* fd */, 0 /* offset */);
1184 #else
1186 int saved_errno;
1187 int fd;
1189 fd = open("/dev/zero", O_RDWR);
1190 if (fd == -1) {
1191 return NULL;
1194 buf = mmap(NULL, bufsz, PROT_READ|PROT_WRITE, MAP_FILE|MAP_SHARED,
1195 fd, 0 /* offset */);
1196 saved_errno = errno;
1197 close(fd);
1198 errno = saved_errno;
1200 #endif
1202 if (buf == MAP_FAILED) {
1203 return NULL;
1206 hdr = (struct anonymous_shared_header *)buf;
1207 hdr->u.length = bufsz;
1209 ptr = (void *)(&hdr[1]);
1211 return ptr;
1214 void *anonymous_shared_resize(void *ptr, size_t new_size, bool maymove)
1216 #ifdef HAVE_MREMAP
1217 void *buf;
1218 size_t pagesz = getpagesize();
1219 size_t pagecnt;
1220 size_t bufsz;
1221 struct anonymous_shared_header *hdr;
1222 int flags = 0;
1224 if (ptr == NULL) {
1225 errno = EINVAL;
1226 return NULL;
1229 hdr = (struct anonymous_shared_header *)ptr;
1230 hdr--;
1231 if (hdr->u.length > (new_size + sizeof(*hdr))) {
1232 errno = EINVAL;
1233 return NULL;
1236 bufsz = new_size + sizeof(*hdr);
1238 /* round up to full pages */
1239 pagecnt = bufsz / pagesz;
1240 if (bufsz % pagesz) {
1241 pagecnt += 1;
1243 bufsz = pagesz * pagecnt;
1245 if (new_size >= bufsz) {
1246 /* integer wrap */
1247 errno = ENOSPC;
1248 return NULL;
1251 if (bufsz <= hdr->u.length) {
1252 return ptr;
1255 if (maymove) {
1256 flags = MREMAP_MAYMOVE;
1259 buf = mremap(hdr, hdr->u.length, bufsz, flags);
1261 if (buf == MAP_FAILED) {
1262 errno = ENOSPC;
1263 return NULL;
1266 hdr = (struct anonymous_shared_header *)buf;
1267 hdr->u.length = bufsz;
1269 ptr = (void *)(&hdr[1]);
1271 return ptr;
1272 #else
1273 errno = ENOSPC;
1274 return NULL;
1275 #endif
1278 void anonymous_shared_free(void *ptr)
1280 struct anonymous_shared_header *hdr;
1282 if (ptr == NULL) {
1283 return;
1286 hdr = (struct anonymous_shared_header *)ptr;
1288 hdr--;
1290 munmap(hdr, hdr->u.length);
1293 #ifdef DEVELOPER
1294 /* used when you want a debugger started at a particular point in the
1295 code. Mostly useful in code that runs as a child process, where
1296 normal gdb attach is harder to organise.
1298 void samba_start_debugger(void)
1300 char *cmd = NULL;
1301 if (asprintf(&cmd, "xterm -e \"gdb --pid %u\"&", getpid()) == -1) {
1302 return;
1304 if (system(cmd) == -1) {
1305 free(cmd);
1306 return;
1308 free(cmd);
1309 sleep(2);
1311 #endif