1e7991dbf13cbbe6dd86be6497864027c52da51e
[ira/wip.git] / lib / util / util.c
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
7    Copyright (C) Jim McDonough (jmcd@us.ibm.com)  2003.
8    Copyright (C) James J Myers 2003
9    
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14    
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19    
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "includes.h"
25 #include "system/network.h"
26 #include "system/filesys.h"
27 #include "system/locale.h"
28 #undef malloc
29 #undef strcasecmp
30 #undef strncasecmp
31 #undef strdup
32 #undef realloc
33
34 /**
35  * @file
36  * @brief Misc utility functions
37  */
38
39 /**
40  Find a suitable temporary directory. The result should be copied immediately
41  as it may be overwritten by a subsequent call.
42 **/
43 _PUBLIC_ const char *tmpdir(void)
44 {
45         char *p;
46         if ((p = getenv("TMPDIR")))
47                 return p;
48         return "/tmp";
49 }
50
51
52 /**
53  Check if a file exists - call vfs_file_exist for samba files.
54 **/
55 _PUBLIC_ bool file_exist(const char *fname)
56 {
57         struct stat st;
58
59         if (stat(fname, &st) != 0) {
60                 return false;
61         }
62
63         return ((S_ISREG(st.st_mode)) || (S_ISFIFO(st.st_mode)));
64 }
65
66 /**
67  Check a files mod time.
68 **/
69
70 _PUBLIC_ time_t file_modtime(const char *fname)
71 {
72         struct stat st;
73   
74         if (stat(fname,&st) != 0) 
75                 return(0);
76
77         return(st.st_mtime);
78 }
79
80 /**
81  Check if a directory exists.
82 **/
83
84 _PUBLIC_ bool directory_exist(const char *dname)
85 {
86         struct stat st;
87         bool ret;
88
89         if (stat(dname,&st) != 0) {
90                 return false;
91         }
92
93         ret = S_ISDIR(st.st_mode);
94         if(!ret)
95                 errno = ENOTDIR;
96         return ret;
97 }
98
99 /**
100  * Try to create the specified directory if it didn't exist.
101  *
102  * @retval true if the directory already existed and has the right permissions 
103  * or was successfully created.
104  */
105 _PUBLIC_ bool directory_create_or_exist(const char *dname, uid_t uid, 
106                                mode_t dir_perms)
107 {
108         mode_t old_umask;
109         struct stat st;
110       
111         old_umask = umask(0);
112         if (lstat(dname, &st) == -1) {
113                 if (errno == ENOENT) {
114                         /* Create directory */
115                         if (mkdir(dname, dir_perms) == -1) {
116                                 DEBUG(0, ("error creating directory "
117                                           "%s: %s\n", dname, 
118                                           strerror(errno)));
119                                 umask(old_umask);
120                                 return false;
121                         }
122                 } else {
123                         DEBUG(0, ("lstat failed on directory %s: %s\n",
124                                   dname, strerror(errno)));
125                         umask(old_umask);
126                         return false;
127                 }
128         } else {
129                 /* Check ownership and permission on existing directory */
130                 if (!S_ISDIR(st.st_mode)) {
131                         DEBUG(0, ("directory %s isn't a directory\n",
132                                 dname));
133                         umask(old_umask);
134                         return false;
135                 }
136                 if ((st.st_uid != uid) || 
137                     ((st.st_mode & 0777) != dir_perms)) {
138                         DEBUG(0, ("invalid permissions on directory "
139                                   "%s\n", dname));
140                         umask(old_umask);
141                         return false;
142                 }
143         }
144         return true;
145 }       
146
147
148 /**
149  Set a fd into blocking/nonblocking mode. Uses POSIX O_NONBLOCK if available,
150  else
151   if SYSV use O_NDELAY
152   if BSD use FNDELAY
153 **/
154
155 _PUBLIC_ int set_blocking(int fd, bool set)
156 {
157         int val;
158 #ifdef O_NONBLOCK
159 #define FLAG_TO_SET O_NONBLOCK
160 #else
161 #ifdef SYSV
162 #define FLAG_TO_SET O_NDELAY
163 #else /* BSD */
164 #define FLAG_TO_SET FNDELAY
165 #endif
166 #endif
167
168         if((val = fcntl(fd, F_GETFL, 0)) == -1)
169                 return -1;
170         if(set) /* Turn blocking on - ie. clear nonblock flag */
171                 val &= ~FLAG_TO_SET;
172         else
173                 val |= FLAG_TO_SET;
174         return fcntl( fd, F_SETFL, val);
175 #undef FLAG_TO_SET
176 }
177
178
179 /**
180  Sleep for a specified number of milliseconds.
181 **/
182
183 _PUBLIC_ void msleep(unsigned int t)
184 {
185         struct timeval tval;  
186
187         tval.tv_sec = t/1000;
188         tval.tv_usec = 1000*(t%1000);
189         /* this should be the real select - do NOT replace
190            with sys_select() */
191         select(0,NULL,NULL,NULL,&tval);
192 }
193
194 /**
195  Get my own name, return in malloc'ed storage.
196 **/
197
198 _PUBLIC_ char *get_myname(void)
199 {
200         char *hostname;
201         char *p;
202
203         hostname = (char *)malloc(MAXHOSTNAMELEN+1);
204         *hostname = 0;
205
206         /* get my host name */
207         if (gethostname(hostname, MAXHOSTNAMELEN+1) == -1) {
208                 DEBUG(0,("gethostname failed\n"));
209                 return NULL;
210         } 
211
212         /* Ensure null termination. */
213         hostname[MAXHOSTNAMELEN] = '\0';
214
215         /* split off any parts after an initial . */
216         p = strchr(hostname, '.');
217
218         if (p != NULL)
219                 *p = 0;
220         
221         return hostname;
222 }
223
224 /**
225  Check if a process exists. Does this work on all unixes?
226 **/
227
228 _PUBLIC_ bool process_exists_by_pid(pid_t pid)
229 {
230         /* Doing kill with a non-positive pid causes messages to be
231          * sent to places we don't want. */
232         SMB_ASSERT(pid > 0);
233         return(kill(pid,0) == 0 || errno != ESRCH);
234 }
235
236 /**
237  Simple routine to do POSIX file locking. Cruft in NFS and 64->32 bit mapping
238  is dealt with in posix.c
239 **/
240
241 _PUBLIC_ bool fcntl_lock(int fd, int op, off_t offset, off_t count, int type)
242 {
243         struct flock lock;
244         int ret;
245
246         DEBUG(8,("fcntl_lock %d %d %.0f %.0f %d\n",fd,op,(double)offset,(double)count,type));
247
248         lock.l_type = type;
249         lock.l_whence = SEEK_SET;
250         lock.l_start = offset;
251         lock.l_len = count;
252         lock.l_pid = 0;
253
254         ret = fcntl(fd,op,&lock);
255
256         if (ret == -1 && errno != 0)
257                 DEBUG(3,("fcntl_lock: fcntl lock gave errno %d (%s)\n",errno,strerror(errno)));
258
259         /* a lock query */
260         if (op == F_GETLK) {
261                 if ((ret != -1) &&
262                                 (lock.l_type != F_UNLCK) && 
263                                 (lock.l_pid != 0) && 
264                                 (lock.l_pid != getpid())) {
265                         DEBUG(3,("fcntl_lock: fd %d is locked by pid %d\n",fd,(int)lock.l_pid));
266                         return true;
267                 }
268
269                 /* it must be not locked or locked by me */
270                 return false;
271         }
272
273         /* a lock set or unset */
274         if (ret == -1) {
275                 DEBUG(3,("fcntl_lock: lock failed at offset %.0f count %.0f op %d type %d (%s)\n",
276                         (double)offset,(double)count,op,type,strerror(errno)));
277                 return false;
278         }
279
280         /* everything went OK */
281         DEBUG(8,("fcntl_lock: Lock call successful\n"));
282
283         return true;
284 }
285
286
287 void print_asc(int level, const uint8_t *buf,int len)
288 {
289         int i;
290         for (i=0;i<len;i++)
291                 DEBUGADD(level,("%c", isprint(buf[i])?buf[i]:'.'));
292 }
293
294 /**
295  * Write dump of binary data to the log file.
296  *
297  * The data is only written if the log level is at least level.
298  */
299 static void _dump_data(int level, const uint8_t *buf, int len,
300                        bool omit_zero_bytes)
301 {
302         int i=0;
303         const uint8_t empty[16];
304         bool skipped = false;
305
306         if (len<=0) return;
307
308         if (!DEBUGLVL(level)) return;
309
310         memset(&empty, '\0', 16);
311
312         for (i=0;i<len;) {
313
314                 if (i%16 == 0) {
315                         if ((omit_zero_bytes == true) &&
316                             (i > 0) &&
317                             (len > i+16) &&
318                             (memcmp(&buf[i], &empty, 16) == 0))
319                         {
320                                 i +=16;
321                                 continue;
322                         }
323
324                         if (i<len)  {
325                                 DEBUGADD(level,("[%04X] ",i));
326                         }
327                 }
328
329                 DEBUGADD(level,("%02X ",(int)buf[i]));
330                 i++;
331                 if (i%8 == 0) DEBUGADD(level,("  "));
332                 if (i%16 == 0) {
333
334                         print_asc(level,&buf[i-16],8); DEBUGADD(level,(" "));
335                         print_asc(level,&buf[i-8],8); DEBUGADD(level,("\n"));
336
337                         if ((omit_zero_bytes == true) &&
338                             (len > i+16) &&
339                             (memcmp(&buf[i], &empty, 16) == 0)) {
340                                 if (!skipped) {
341                                         DEBUGADD(level,("skipping zero buffer bytes\n"));
342                                         skipped = true;
343                                 }
344                         }
345                 }
346         }
347
348         if (i%16) {
349                 int n;
350                 n = 16 - (i%16);
351                 DEBUGADD(level,(" "));
352                 if (n>8) DEBUGADD(level,(" "));
353                 while (n--) DEBUGADD(level,("   "));
354                 n = MIN(8,i%16);
355                 print_asc(level,&buf[i-(i%16)],n); DEBUGADD(level,( " " ));
356                 n = (i%16) - n;
357                 if (n>0) print_asc(level,&buf[i-n],n);
358                 DEBUGADD(level,("\n"));
359         }
360
361 }
362
363 /**
364  * Write dump of binary data to the log file.
365  *
366  * The data is only written if the log level is at least level.
367  */
368 _PUBLIC_ void dump_data(int level, const uint8_t *buf, int len)
369 {
370         _dump_data(level, buf, len, false);
371 }
372
373 /**
374  * Write dump of binary data to the log file.
375  *
376  * The data is only written if the log level is at least level.
377  * 16 zero bytes in a row are ommited
378  */
379 _PUBLIC_ void dump_data_skip_zeros(int level, const uint8_t *buf, int len)
380 {
381         _dump_data(level, buf, len, true);
382 }
383
384
385 /**
386  malloc that aborts with smb_panic on fail or zero size.
387 **/
388
389 _PUBLIC_ void *smb_xmalloc(size_t size)
390 {
391         void *p;
392         if (size == 0)
393                 smb_panic("smb_xmalloc: called with zero size.\n");
394         if ((p = malloc(size)) == NULL)
395                 smb_panic("smb_xmalloc: malloc fail.\n");
396         return p;
397 }
398
399 /**
400  Memdup with smb_panic on fail.
401 **/
402
403 _PUBLIC_ void *smb_xmemdup(const void *p, size_t size)
404 {
405         void *p2;
406         p2 = smb_xmalloc(size);
407         memcpy(p2, p, size);
408         return p2;
409 }
410
411 /**
412  strdup that aborts on malloc fail.
413 **/
414
415 char *smb_xstrdup(const char *s)
416 {
417 #if defined(PARANOID_MALLOC_CHECKER)
418 #ifdef strdup
419 #undef strdup
420 #endif
421 #endif
422
423 #ifndef HAVE_STRDUP
424 #define strdup rep_strdup
425 #endif
426
427         char *s1 = strdup(s);
428 #if defined(PARANOID_MALLOC_CHECKER)
429 #ifdef strdup
430 #undef strdup
431 #endif
432 #define strdup(s) __ERROR_DONT_USE_STRDUP_DIRECTLY
433 #endif
434         if (!s1) {
435                 smb_panic("smb_xstrdup: malloc failed");
436         }
437         return s1;
438
439 }
440
441 /**
442  strndup that aborts on malloc fail.
443 **/
444
445 char *smb_xstrndup(const char *s, size_t n)
446 {
447 #if defined(PARANOID_MALLOC_CHECKER)
448 #ifdef strndup
449 #undef strndup
450 #endif
451 #endif
452
453 #if (defined(BROKEN_STRNDUP) || !defined(HAVE_STRNDUP))
454 #undef HAVE_STRNDUP
455 #define strndup rep_strndup
456 #endif
457
458         char *s1 = strndup(s, n);
459 #if defined(PARANOID_MALLOC_CHECKER)
460 #ifdef strndup
461 #undef strndup
462 #endif
463 #define strndup(s,n) __ERROR_DONT_USE_STRNDUP_DIRECTLY
464 #endif
465         if (!s1) {
466                 smb_panic("smb_xstrndup: malloc failed");
467         }
468         return s1;
469 }
470
471
472
473 /**
474  Like strdup but for memory.
475 **/
476
477 _PUBLIC_ void *memdup(const void *p, size_t size)
478 {
479         void *p2;
480         if (size == 0)
481                 return NULL;
482         p2 = malloc(size);
483         if (!p2)
484                 return NULL;
485         memcpy(p2, p, size);
486         return p2;
487 }
488
489 /**
490  * Write a password to the log file.
491  *
492  * @note Only actually does something if DEBUG_PASSWORD was defined during 
493  * compile-time.
494  */
495 _PUBLIC_ void dump_data_pw(const char *msg, const uint8_t * data, size_t len)
496 {
497 #ifdef DEBUG_PASSWORD
498         DEBUG(11, ("%s", msg));
499         if (data != NULL && len > 0)
500         {
501                 dump_data(11, data, len);
502         }
503 #endif
504 }
505
506
507 /**
508  * see if a range of memory is all zero. A NULL pointer is considered
509  * to be all zero 
510  */
511 _PUBLIC_ bool all_zero(const uint8_t *ptr, size_t size)
512 {
513         int i;
514         if (!ptr) return true;
515         for (i=0;i<size;i++) {
516                 if (ptr[i]) return false;
517         }
518         return true;
519 }
520
521 /**
522   realloc an array, checking for integer overflow in the array size
523 */
524 _PUBLIC_ void *realloc_array(void *ptr, size_t el_size, unsigned count, bool free_on_fail)
525 {
526 #define MAX_MALLOC_SIZE 0x7fffffff
527         if (count == 0 ||
528             count >= MAX_MALLOC_SIZE/el_size) {
529                 if (free_on_fail)
530                         SAFE_FREE(ptr);
531                 return NULL;
532         }
533         if (!ptr) {
534                 return malloc(el_size * count);
535         }
536         return realloc(ptr, el_size * count);
537 }
538
539 /****************************************************************************
540  Type-safe malloc.
541 ****************************************************************************/
542
543 void *malloc_array(size_t el_size, unsigned int count)
544 {
545         return realloc_array(NULL, el_size, count, false);
546 }
547
548 _PUBLIC_ void *talloc_check_name_abort(const void *ptr, const char *name)
549 {
550         void *result;
551
552         result = talloc_check_name(ptr, name);
553         if (result != NULL)
554                 return result;
555
556         DEBUG(0, ("Talloc type mismatch, expected %s, got %s\n",
557                   name, talloc_get_name(ptr)));
558         smb_panic("talloc type mismatch");
559         /* Keep the compiler happy */
560         return NULL;
561 }
562
563 /**
564  Trim the specified elements off the front and back of a string.
565 **/
566 _PUBLIC_ bool trim_string(char *s, const char *front, const char *back)
567 {
568         bool ret = false;
569         size_t front_len;
570         size_t back_len;
571         size_t len;
572
573         /* Ignore null or empty strings. */
574         if (!s || (s[0] == '\0'))
575                 return false;
576
577         front_len       = front? strlen(front) : 0;
578         back_len        = back? strlen(back) : 0;
579
580         len = strlen(s);
581
582         if (front_len) {
583                 while (len && strncmp(s, front, front_len)==0) {
584                         /* Must use memmove here as src & dest can
585                          * easily overlap. Found by valgrind. JRA. */
586                         memmove(s, s+front_len, (len-front_len)+1);
587                         len -= front_len;
588                         ret=true;
589                 }
590         }
591         
592         if (back_len) {
593                 while ((len >= back_len) && strncmp(s+len-back_len,back,back_len)==0) {
594                         s[len-back_len]='\0';
595                         len -= back_len;
596                         ret=true;
597                 }
598         }
599         return ret;
600 }
601
602 /**
603  Find the number of 'c' chars in a string
604 **/
605 _PUBLIC_ _PURE_ size_t count_chars(const char *s, char c)
606 {
607         size_t count = 0;
608
609         while (*s) {
610                 if (*s == c) count++;
611                 s ++;
612         }
613
614         return count;
615 }
616
617 /**
618  Routine to get hex characters and turn them into a 16 byte array.
619  the array can be variable length, and any non-hex-numeric
620  characters are skipped.  "0xnn" or "0Xnn" is specially catered
621  for.
622
623  valid examples: "0A5D15"; "0x15, 0x49, 0xa2"; "59\ta9\te3\n"
624
625
626 **/
627 _PUBLIC_ size_t strhex_to_str(char *p, size_t p_len, const char *strhex, size_t strhex_len)
628 {
629         size_t i;
630         size_t num_chars = 0;
631         uint8_t   lonybble, hinybble;
632         const char     *hexchars = "0123456789ABCDEF";
633         char           *p1 = NULL, *p2 = NULL;
634
635         for (i = 0; i < strhex_len && strhex[i] != 0; i++) {
636                 if (strncasecmp(hexchars, "0x", 2) == 0) {
637                         i++; /* skip two chars */
638                         continue;
639                 }
640
641                 if (!(p1 = strchr(hexchars, toupper((unsigned char)strhex[i]))))
642                         break;
643
644                 i++; /* next hex digit */
645
646                 if (!(p2 = strchr(hexchars, toupper((unsigned char)strhex[i]))))
647                         break;
648
649                 /* get the two nybbles */
650                 hinybble = PTR_DIFF(p1, hexchars);
651                 lonybble = PTR_DIFF(p2, hexchars);
652
653                 if (num_chars >= p_len) {
654                         break;
655                 }
656
657                 p[num_chars] = (hinybble << 4) | lonybble;
658                 num_chars++;
659
660                 p1 = NULL;
661                 p2 = NULL;
662         }
663         return num_chars;
664 }
665
666 /** 
667  * Parse a hex string and return a data blob. 
668  */
669 _PUBLIC_ _PURE_ DATA_BLOB strhex_to_data_blob(TALLOC_CTX *mem_ctx, const char *strhex) 
670 {
671         DATA_BLOB ret_blob = data_blob_talloc(mem_ctx, NULL, strlen(strhex)/2+1);
672
673         ret_blob.length = strhex_to_str((char *)ret_blob.data, ret_blob.length,
674                                         strhex,
675                                         strlen(strhex));
676
677         return ret_blob;
678 }
679
680
681 /**
682  * Routine to print a buffer as HEX digits, into an allocated string.
683  */
684 _PUBLIC_ void hex_encode(const unsigned char *buff_in, size_t len, char **out_hex_buffer)
685 {
686         int i;
687         char *hex_buffer;
688
689         *out_hex_buffer = malloc_array_p(char, (len*2)+1);
690         hex_buffer = *out_hex_buffer;
691
692         for (i = 0; i < len; i++)
693                 slprintf(&hex_buffer[i*2], 3, "%02X", buff_in[i]);
694 }
695
696 /**
697  * talloc version of hex_encode()
698  */
699 _PUBLIC_ char *hex_encode_talloc(TALLOC_CTX *mem_ctx, const unsigned char *buff_in, size_t len)
700 {
701         int i;
702         char *hex_buffer;
703
704         hex_buffer = talloc_array(mem_ctx, char, (len*2)+1);
705
706         for (i = 0; i < len; i++)
707                 slprintf(&hex_buffer[i*2], 3, "%02X", buff_in[i]);
708
709         return hex_buffer;
710 }
711
712 /**
713  Unescape a URL encoded string, in place.
714 **/
715
716 _PUBLIC_ void rfc1738_unescape(char *buf)
717 {
718         char *p=buf;
719
720         while ((p=strchr(p,'+')))
721                 *p = ' ';
722
723         p = buf;
724
725         while (p && *p && (p=strchr(p,'%'))) {
726                 int c1 = p[1];
727                 int c2 = p[2];
728
729                 if (c1 >= '0' && c1 <= '9')
730                         c1 = c1 - '0';
731                 else if (c1 >= 'A' && c1 <= 'F')
732                         c1 = 10 + c1 - 'A';
733                 else if (c1 >= 'a' && c1 <= 'f')
734                         c1 = 10 + c1 - 'a';
735                 else {p++; continue;}
736
737                 if (c2 >= '0' && c2 <= '9')
738                         c2 = c2 - '0';
739                 else if (c2 >= 'A' && c2 <= 'F')
740                         c2 = 10 + c2 - 'A';
741                 else if (c2 >= 'a' && c2 <= 'f')
742                         c2 = 10 + c2 - 'a';
743                 else {p++; continue;}
744                         
745                 *p = (c1<<4) | c2;
746
747                 memmove(p+1, p+3, strlen(p+3)+1);
748                 p++;
749         }
750 }
751
752 /**
753   varient of strcmp() that handles NULL ptrs
754 **/
755 _PUBLIC_ int strcmp_safe(const char *s1, const char *s2)
756 {
757         if (s1 == s2) {
758                 return 0;
759         }
760         if (s1 == NULL || s2 == NULL) {
761                 return s1?-1:1;
762         }
763         return strcmp(s1, s2);
764 }
765
766
767 /**
768 return the number of bytes occupied by a buffer in ASCII format
769 the result includes the null termination
770 limited by 'n' bytes
771 **/
772 _PUBLIC_ size_t ascii_len_n(const char *src, size_t n)
773 {
774         size_t len;
775
776         len = strnlen(src, n);
777         if (len+1 <= n) {
778                 len += 1;
779         }
780
781         return len;
782 }
783
784 /**
785  Set a boolean variable from the text value stored in the passed string.
786  Returns true in success, false if the passed string does not correctly 
787  represent a boolean.
788 **/
789
790 _PUBLIC_ bool set_boolean(const char *boolean_string, bool *boolean)
791 {
792         if (strwicmp(boolean_string, "yes") == 0 ||
793             strwicmp(boolean_string, "true") == 0 ||
794             strwicmp(boolean_string, "on") == 0 ||
795             strwicmp(boolean_string, "1") == 0) {
796                 *boolean = true;
797                 return true;
798         } else if (strwicmp(boolean_string, "no") == 0 ||
799                    strwicmp(boolean_string, "false") == 0 ||
800                    strwicmp(boolean_string, "off") == 0 ||
801                    strwicmp(boolean_string, "0") == 0) {
802                 *boolean = false;
803                 return true;
804         }
805         return false;
806 }
807
808 /**
809 return the number of bytes occupied by a buffer in CH_UTF16 format
810 the result includes the null termination
811 **/
812 _PUBLIC_ size_t utf16_len(const void *buf)
813 {
814         size_t len;
815
816         for (len = 0; SVAL(buf,len); len += 2) ;
817
818         return len + 2;
819 }
820
821 /**
822 return the number of bytes occupied by a buffer in CH_UTF16 format
823 the result includes the null termination
824 limited by 'n' bytes
825 **/
826 _PUBLIC_ size_t utf16_len_n(const void *src, size_t n)
827 {
828         size_t len;
829
830         for (len = 0; (len+2 < n) && SVAL(src, len); len += 2) ;
831
832         if (len+2 <= n) {
833                 len += 2;
834         }
835
836         return len;
837 }
838
839