455f87aaab8f25dde66ea0ed6a35f6752a14adb1
[kai/samba.git] / source3 / lib / 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    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "includes.h"
25
26 /* Max allowable allococation - 256mb - 0x10000000 */
27 #define MAX_ALLOC_SIZE (1024*1024*256)
28
29 #if (defined(HAVE_NETGROUP) && defined (WITH_AUTOMOUNT))
30 #ifdef WITH_NISPLUS_HOME
31 #ifdef BROKEN_NISPLUS_INCLUDE_FILES
32 /*
33  * The following lines are needed due to buggy include files
34  * in Solaris 2.6 which define GROUP in both /usr/include/sys/acl.h and
35  * also in /usr/include/rpcsvc/nis.h. The definitions conflict. JRA.
36  * Also GROUP_OBJ is defined as 0x4 in /usr/include/sys/acl.h and as
37  * an enum in /usr/include/rpcsvc/nis.h.
38  */
39
40 #if defined(GROUP)
41 #undef GROUP
42 #endif
43
44 #if defined(GROUP_OBJ)
45 #undef GROUP_OBJ
46 #endif
47
48 #endif /* BROKEN_NISPLUS_INCLUDE_FILES */
49
50 #include <rpcsvc/nis.h>
51
52 #endif /* WITH_NISPLUS_HOME */
53 #endif /* HAVE_NETGROUP && WITH_AUTOMOUNT */
54
55 enum protocol_types Protocol = PROTOCOL_COREPLUS;
56
57 /* a default finfo structure to ensure all fields are sensible */
58 file_info def_finfo = {-1,0,0,0,0,0,0,"",""};
59
60 /* this is used by the chaining code */
61 int chain_size = 0;
62
63 int trans_num = 0;
64
65 static enum remote_arch_types ra_type = RA_UNKNOWN;
66 pstring user_socket_options=DEFAULT_SOCKET_OPTIONS;   
67
68 /***********************************************************************
69  Definitions for all names.
70 ***********************************************************************/
71
72 static char *smb_myname;
73 static char *smb_myworkgroup;
74 static char *smb_scope;
75 static int smb_num_netbios_names;
76 static char **smb_my_netbios_names;
77
78 /***********************************************************************
79  Allocate and set myname. Ensure upper case.
80 ***********************************************************************/
81
82 BOOL set_global_myname(const char *myname)
83 {
84         SAFE_FREE(smb_myname);
85         smb_myname = SMB_STRDUP(myname);
86         if (!smb_myname)
87                 return False;
88         strupper_m(smb_myname);
89         return True;
90 }
91
92 const char *global_myname(void)
93 {
94         return smb_myname;
95 }
96
97 /***********************************************************************
98  Allocate and set myworkgroup. Ensure upper case.
99 ***********************************************************************/
100
101 BOOL set_global_myworkgroup(const char *myworkgroup)
102 {
103         SAFE_FREE(smb_myworkgroup);
104         smb_myworkgroup = SMB_STRDUP(myworkgroup);
105         if (!smb_myworkgroup)
106                 return False;
107         strupper_m(smb_myworkgroup);
108         return True;
109 }
110
111 const char *lp_workgroup(void)
112 {
113         return smb_myworkgroup;
114 }
115
116 /***********************************************************************
117  Allocate and set scope. Ensure upper case.
118 ***********************************************************************/
119
120 BOOL set_global_scope(const char *scope)
121 {
122         SAFE_FREE(smb_scope);
123         smb_scope = SMB_STRDUP(scope);
124         if (!smb_scope)
125                 return False;
126         strupper_m(smb_scope);
127         return True;
128 }
129
130 /*********************************************************************
131  Ensure scope is never null string.
132 *********************************************************************/
133
134 const char *global_scope(void)
135 {
136         if (!smb_scope)
137                 set_global_scope("");
138         return smb_scope;
139 }
140
141 static void free_netbios_names_array(void)
142 {
143         int i;
144
145         for (i = 0; i < smb_num_netbios_names; i++)
146                 SAFE_FREE(smb_my_netbios_names[i]);
147
148         SAFE_FREE(smb_my_netbios_names);
149         smb_num_netbios_names = 0;
150 }
151
152 static BOOL allocate_my_netbios_names_array(size_t number)
153 {
154         free_netbios_names_array();
155
156         smb_num_netbios_names = number + 1;
157         smb_my_netbios_names = SMB_MALLOC_ARRAY( char *, smb_num_netbios_names );
158
159         if (!smb_my_netbios_names)
160                 return False;
161
162         memset(smb_my_netbios_names, '\0', sizeof(char *) * smb_num_netbios_names);
163         return True;
164 }
165
166 static BOOL set_my_netbios_names(const char *name, int i)
167 {
168         SAFE_FREE(smb_my_netbios_names[i]);
169
170         smb_my_netbios_names[i] = SMB_STRDUP(name);
171         if (!smb_my_netbios_names[i])
172                 return False;
173         strupper_m(smb_my_netbios_names[i]);
174         return True;
175 }
176
177 const char *my_netbios_names(int i)
178 {
179         return smb_my_netbios_names[i];
180 }
181
182 BOOL set_netbios_aliases(const char **str_array)
183 {
184         size_t namecount;
185
186         /* Work out the max number of netbios aliases that we have */
187         for( namecount=0; str_array && (str_array[namecount] != NULL); namecount++ )
188                 ;
189
190         if ( global_myname() && *global_myname())
191                 namecount++;
192
193         /* Allocate space for the netbios aliases */
194         if (!allocate_my_netbios_names_array(namecount))
195                 return False;
196
197         /* Use the global_myname string first */
198         namecount=0;
199         if ( global_myname() && *global_myname()) {
200                 set_my_netbios_names( global_myname(), namecount );
201                 namecount++;
202         }
203
204         if (str_array) {
205                 size_t i;
206                 for ( i = 0; str_array[i] != NULL; i++) {
207                         size_t n;
208                         BOOL duplicate = False;
209
210                         /* Look for duplicates */
211                         for( n=0; n<namecount; n++ ) {
212                                 if( strequal( str_array[i], my_netbios_names(n) ) ) {
213                                         duplicate = True;
214                                         break;
215                                 }
216                         }
217                         if (!duplicate) {
218                                 if (!set_my_netbios_names(str_array[i], namecount))
219                                         return False;
220                                 namecount++;
221                         }
222                 }
223         }
224         return True;
225 }
226
227 /****************************************************************************
228   Common name initialization code.
229 ****************************************************************************/
230
231 BOOL init_names(void)
232 {
233         extern fstring local_machine;
234         char *p;
235         int n;
236
237         if (global_myname() == NULL || *global_myname() == '\0') {
238                 if (!set_global_myname(myhostname())) {
239                         DEBUG( 0, ( "init_structs: malloc fail.\n" ) );
240                         return False;
241                 }
242         }
243
244         if (!set_netbios_aliases(lp_netbios_aliases())) {
245                 DEBUG( 0, ( "init_structs: malloc fail.\n" ) );
246                 return False;
247         }                       
248
249         fstrcpy( local_machine, global_myname() );
250         trim_char( local_machine, ' ', ' ' );
251         p = strchr( local_machine, ' ' );
252         if (p)
253                 *p = 0;
254         strlower_m( local_machine );
255
256         DEBUG( 5, ("Netbios name list:-\n") );
257         for( n=0; my_netbios_names(n); n++ )
258                 DEBUGADD( 5, ( "my_netbios_names[%d]=\"%s\"\n", n, my_netbios_names(n) ) );
259
260         return( True );
261 }
262
263 /**************************************************************************n
264  Find a suitable temporary directory. The result should be copied immediately
265  as it may be overwritten by a subsequent call.
266 ****************************************************************************/
267
268 const char *tmpdir(void)
269 {
270         char *p;
271         if ((p = getenv("TMPDIR")))
272                 return p;
273         return "/tmp";
274 }
275
276 /****************************************************************************
277  Determine whether we are in the specified group.
278 ****************************************************************************/
279
280 BOOL in_group(gid_t group, gid_t current_gid, int ngroups, const gid_t *groups)
281 {
282         int i;
283
284         if (group == current_gid)
285                 return(True);
286
287         for (i=0;i<ngroups;i++)
288                 if (group == groups[i])
289                         return(True);
290
291         return(False);
292 }
293
294 /****************************************************************************
295  Add a gid to an array of gids if it's not already there.
296 ****************************************************************************/
297
298 void add_gid_to_array_unique(gid_t gid, gid_t **gids, int *num)
299 {
300         int i;
301
302         for (i=0; i<*num; i++) {
303                 if ((*gids)[i] == gid)
304                         return;
305         }
306         
307         *gids = SMB_REALLOC_ARRAY(*gids, gid_t, *num+1);
308
309         if (*gids == NULL)
310                 return;
311
312         (*gids)[*num] = gid;
313         *num += 1;
314 }
315
316 /****************************************************************************
317  Like atoi but gets the value up to the separator character.
318 ****************************************************************************/
319
320 static const char *Atoic(const char *p, int *n, const char *c)
321 {
322         if (!isdigit((int)*p)) {
323                 DEBUG(5, ("Atoic: malformed number\n"));
324                 return NULL;
325         }
326
327         (*n) = atoi(p);
328
329         while ((*p) && isdigit((int)*p))
330                 p++;
331
332         if (strchr_m(c, *p) == NULL) {
333                 DEBUG(5, ("Atoic: no separator characters (%s) not found\n", c));
334                 return NULL;
335         }
336
337         return p;
338 }
339
340 /*************************************************************************
341  Reads a list of numbers.
342  *************************************************************************/
343
344 const char *get_numlist(const char *p, uint32 **num, int *count)
345 {
346         int val;
347
348         if (num == NULL || count == NULL)
349                 return NULL;
350
351         (*count) = 0;
352         (*num  ) = NULL;
353
354         while ((p = Atoic(p, &val, ":,")) != NULL && (*p) != ':') {
355                 uint32 *tn;
356                 
357                 tn = SMB_REALLOC_ARRAY((*num), uint32, (*count)+1);
358                 if (tn == NULL) {
359                         SAFE_FREE(*num);
360                         return NULL;
361                 } else
362                         (*num) = tn;
363                 (*num)[(*count)] = val;
364                 (*count)++;
365                 p++;
366         }
367
368         return p;
369 }
370
371 /*******************************************************************
372  Check if a file exists - call vfs_file_exist for samba files.
373 ********************************************************************/
374
375 BOOL file_exist(const char *fname,SMB_STRUCT_STAT *sbuf)
376 {
377         SMB_STRUCT_STAT st;
378         if (!sbuf)
379                 sbuf = &st;
380   
381         if (sys_stat(fname,sbuf) != 0) 
382                 return(False);
383
384         return((S_ISREG(sbuf->st_mode)) || (S_ISFIFO(sbuf->st_mode)));
385 }
386
387 /*******************************************************************
388  Check a files mod time.
389 ********************************************************************/
390
391 time_t file_modtime(const char *fname)
392 {
393         SMB_STRUCT_STAT st;
394   
395         if (sys_stat(fname,&st) != 0) 
396                 return(0);
397
398         return(st.st_mtime);
399 }
400
401 /*******************************************************************
402  Check if a directory exists.
403 ********************************************************************/
404
405 BOOL directory_exist(char *dname,SMB_STRUCT_STAT *st)
406 {
407         SMB_STRUCT_STAT st2;
408         BOOL ret;
409
410         if (!st)
411                 st = &st2;
412
413         if (sys_stat(dname,st) != 0) 
414                 return(False);
415
416         ret = S_ISDIR(st->st_mode);
417         if(!ret)
418                 errno = ENOTDIR;
419         return ret;
420 }
421
422 /*******************************************************************
423  Returns the size in bytes of the named file.
424 ********************************************************************/
425
426 SMB_OFF_T get_file_size(char *file_name)
427 {
428         SMB_STRUCT_STAT buf;
429         buf.st_size = 0;
430         if(sys_stat(file_name,&buf) != 0)
431                 return (SMB_OFF_T)-1;
432         return(buf.st_size);
433 }
434
435 /*******************************************************************
436  Return a string representing an attribute for a file.
437 ********************************************************************/
438
439 char *attrib_string(uint16 mode)
440 {
441         static fstring attrstr;
442
443         attrstr[0] = 0;
444
445         if (mode & aVOLID) fstrcat(attrstr,"V");
446         if (mode & aDIR) fstrcat(attrstr,"D");
447         if (mode & aARCH) fstrcat(attrstr,"A");
448         if (mode & aHIDDEN) fstrcat(attrstr,"H");
449         if (mode & aSYSTEM) fstrcat(attrstr,"S");
450         if (mode & aRONLY) fstrcat(attrstr,"R");          
451
452         return(attrstr);
453 }
454
455 /*******************************************************************
456  Show a smb message structure.
457 ********************************************************************/
458
459 void show_msg(char *buf)
460 {
461         int i;
462         int bcc=0;
463
464         if (!DEBUGLVL(5))
465                 return;
466         
467         DEBUG(5,("size=%d\nsmb_com=0x%x\nsmb_rcls=%d\nsmb_reh=%d\nsmb_err=%d\nsmb_flg=%d\nsmb_flg2=%d\n",
468                         smb_len(buf),
469                         (int)CVAL(buf,smb_com),
470                         (int)CVAL(buf,smb_rcls),
471                         (int)CVAL(buf,smb_reh),
472                         (int)SVAL(buf,smb_err),
473                         (int)CVAL(buf,smb_flg),
474                         (int)SVAL(buf,smb_flg2)));
475         DEBUGADD(5,("smb_tid=%d\nsmb_pid=%d\nsmb_uid=%d\nsmb_mid=%d\n",
476                         (int)SVAL(buf,smb_tid),
477                         (int)SVAL(buf,smb_pid),
478                         (int)SVAL(buf,smb_uid),
479                         (int)SVAL(buf,smb_mid)));
480         DEBUGADD(5,("smt_wct=%d\n",(int)CVAL(buf,smb_wct)));
481
482         for (i=0;i<(int)CVAL(buf,smb_wct);i++)
483                 DEBUGADD(5,("smb_vwv[%2d]=%5d (0x%X)\n",i,
484                         SVAL(buf,smb_vwv+2*i),SVAL(buf,smb_vwv+2*i)));
485         
486         bcc = (int)SVAL(buf,smb_vwv+2*(CVAL(buf,smb_wct)));
487
488         DEBUGADD(5,("smb_bcc=%d\n",bcc));
489
490         if (DEBUGLEVEL < 10)
491                 return;
492
493         if (DEBUGLEVEL < 50)
494                 bcc = MIN(bcc, 512);
495
496         dump_data(10, smb_buf(buf), bcc);       
497 }
498
499 /*******************************************************************
500  Set the length and marker of an smb packet.
501 ********************************************************************/
502
503 void smb_setlen(char *buf,int len)
504 {
505         _smb_setlen(buf,len);
506
507         SCVAL(buf,4,0xFF);
508         SCVAL(buf,5,'S');
509         SCVAL(buf,6,'M');
510         SCVAL(buf,7,'B');
511 }
512
513 /*******************************************************************
514  Setup the word count and byte count for a smb message.
515 ********************************************************************/
516
517 int set_message(char *buf,int num_words,int num_bytes,BOOL zero)
518 {
519         if (zero)
520                 memset(buf + smb_size,'\0',num_words*2 + num_bytes);
521         SCVAL(buf,smb_wct,num_words);
522         SSVAL(buf,smb_vwv + num_words*SIZEOFWORD,num_bytes);  
523         smb_setlen(buf,smb_size + num_words*2 + num_bytes - 4);
524         return (smb_size + num_words*2 + num_bytes);
525 }
526
527 /*******************************************************************
528  Setup only the byte count for a smb message.
529 ********************************************************************/
530
531 int set_message_bcc(char *buf,int num_bytes)
532 {
533         int num_words = CVAL(buf,smb_wct);
534         SSVAL(buf,smb_vwv + num_words*SIZEOFWORD,num_bytes);  
535         smb_setlen(buf,smb_size + num_words*2 + num_bytes - 4);
536         return (smb_size + num_words*2 + num_bytes);
537 }
538
539 /*******************************************************************
540  Setup only the byte count for a smb message, using the end of the
541  message as a marker.
542 ********************************************************************/
543
544 int set_message_end(void *outbuf,void *end_ptr)
545 {
546         return set_message_bcc((char *)outbuf,PTR_DIFF(end_ptr,smb_buf((char *)outbuf)));
547 }
548
549 /*******************************************************************
550  Reduce a file name, removing .. elements.
551 ********************************************************************/
552
553 void dos_clean_name(char *s)
554 {
555         char *p=NULL;
556
557         DEBUG(3,("dos_clean_name [%s]\n",s));
558
559         /* remove any double slashes */
560         all_string_sub(s, "\\\\", "\\", 0);
561
562         while ((p = strstr_m(s,"\\..\\")) != NULL) {
563                 pstring s1;
564
565                 *p = 0;
566                 pstrcpy(s1,p+3);
567
568                 if ((p=strrchr_m(s,'\\')) != NULL)
569                         *p = 0;
570                 else
571                         *s = 0;
572                 pstrcat(s,s1);
573         }  
574
575         trim_string(s,NULL,"\\..");
576
577         all_string_sub(s, "\\.\\", "\\", 0);
578 }
579
580 /*******************************************************************
581  Reduce a file name, removing .. elements. 
582 ********************************************************************/
583
584 void unix_clean_name(char *s)
585 {
586         char *p=NULL;
587
588         DEBUG(3,("unix_clean_name [%s]\n",s));
589
590         /* remove any double slashes */
591         all_string_sub(s, "//","/", 0);
592
593         /* Remove leading ./ characters */
594         if(strncmp(s, "./", 2) == 0) {
595                 trim_string(s, "./", NULL);
596                 if(*s == 0)
597                         pstrcpy(s,"./");
598         }
599
600         while ((p = strstr_m(s,"/../")) != NULL) {
601                 pstring s1;
602
603                 *p = 0;
604                 pstrcpy(s1,p+3);
605
606                 if ((p=strrchr_m(s,'/')) != NULL)
607                         *p = 0;
608                 else
609                         *s = 0;
610                 pstrcat(s,s1);
611         }  
612
613         trim_string(s,NULL,"/..");
614 }
615
616 /****************************************************************************
617  Make a dir struct.
618 ****************************************************************************/
619
620 void make_dir_struct(char *buf, const char *mask, const char *fname,SMB_OFF_T size,int mode,time_t date, BOOL case_sensitive)
621 {  
622         char *p;
623         pstring mask2;
624
625         pstrcpy(mask2,mask);
626
627         if ((mode & aDIR) != 0)
628                 size = 0;
629
630         memset(buf+1,' ',11);
631         if ((p = strchr_m(mask2,'.')) != NULL) {
632                 *p = 0;
633                 push_ascii(buf+1,mask2,8, 0);
634                 push_ascii(buf+9,p+1,3, 0);
635                 *p = '.';
636         } else
637                 push_ascii(buf+1,mask2,11, 0);
638
639         memset(buf+21,'\0',DIR_STRUCT_SIZE-21);
640         SCVAL(buf,21,mode);
641         put_dos_date(buf,22,date);
642         SSVAL(buf,26,size & 0xFFFF);
643         SSVAL(buf,28,(size >> 16)&0xFFFF);
644         push_ascii(buf+30,fname,12, case_sensitive ? 0 : STR_UPPER);
645         DEBUG(8,("put name [%s] from [%s] into dir struct\n",buf+30, fname));
646 }
647
648 /*******************************************************************
649  Close the low 3 fd's and open dev/null in their place.
650 ********************************************************************/
651
652 void close_low_fds(BOOL stderr_too)
653 {
654 #ifndef VALGRIND
655         int fd;
656         int i;
657
658         close(0);
659         close(1); 
660
661         if (stderr_too)
662                 close(2);
663
664         /* try and use up these file descriptors, so silly
665                 library routines writing to stdout etc won't cause havoc */
666         for (i=0;i<3;i++) {
667                 if (i == 2 && !stderr_too)
668                         continue;
669
670                 fd = sys_open("/dev/null",O_RDWR,0);
671                 if (fd < 0)
672                         fd = sys_open("/dev/null",O_WRONLY,0);
673                 if (fd < 0) {
674                         DEBUG(0,("Can't open /dev/null\n"));
675                         return;
676                 }
677                 if (fd != i) {
678                         DEBUG(0,("Didn't get file descriptor %d\n",i));
679                         return;
680                 }
681         }
682 #endif
683 }
684
685 /****************************************************************************
686  Set a fd into blocking/nonblocking mode. Uses POSIX O_NONBLOCK if available,
687  else
688   if SYSV use O_NDELAY
689   if BSD use FNDELAY
690 ****************************************************************************/
691
692 int set_blocking(int fd, BOOL set)
693 {
694         int val;
695 #ifdef O_NONBLOCK
696 #define FLAG_TO_SET O_NONBLOCK
697 #else
698 #ifdef SYSV
699 #define FLAG_TO_SET O_NDELAY
700 #else /* BSD */
701 #define FLAG_TO_SET FNDELAY
702 #endif
703 #endif
704
705         if((val = sys_fcntl_long(fd, F_GETFL, 0)) == -1)
706                 return -1;
707         if(set) /* Turn blocking on - ie. clear nonblock flag */
708                 val &= ~FLAG_TO_SET;
709         else
710                 val |= FLAG_TO_SET;
711         return sys_fcntl_long( fd, F_SETFL, val);
712 #undef FLAG_TO_SET
713 }
714
715 /****************************************************************************
716  Transfer some data between two fd's.
717 ****************************************************************************/
718
719 #ifndef TRANSFER_BUF_SIZE
720 #define TRANSFER_BUF_SIZE 65536
721 #endif
722
723 ssize_t transfer_file_internal(int infd, int outfd, size_t n, ssize_t (*read_fn)(int, void *, size_t),
724                                                 ssize_t (*write_fn)(int, const void *, size_t))
725 {
726         char *buf;
727         size_t total = 0;
728         ssize_t read_ret;
729         ssize_t write_ret;
730         size_t num_to_read_thistime;
731         size_t num_written = 0;
732
733         if ((buf = SMB_MALLOC(TRANSFER_BUF_SIZE)) == NULL)
734                 return -1;
735
736         while (total < n) {
737                 num_to_read_thistime = MIN((n - total), TRANSFER_BUF_SIZE);
738
739                 read_ret = (*read_fn)(infd, buf, num_to_read_thistime);
740                 if (read_ret == -1) {
741                         DEBUG(0,("transfer_file_internal: read failure. Error = %s\n", strerror(errno) ));
742                         SAFE_FREE(buf);
743                         return -1;
744                 }
745                 if (read_ret == 0)
746                         break;
747
748                 num_written = 0;
749  
750                 while (num_written < read_ret) {
751                         write_ret = (*write_fn)(outfd,buf + num_written, read_ret - num_written);
752  
753                         if (write_ret == -1) {
754                                 DEBUG(0,("transfer_file_internal: write failure. Error = %s\n", strerror(errno) ));
755                                 SAFE_FREE(buf);
756                                 return -1;
757                         }
758                         if (write_ret == 0)
759                                 return (ssize_t)total;
760  
761                         num_written += (size_t)write_ret;
762                 }
763
764                 total += (size_t)read_ret;
765         }
766
767         SAFE_FREE(buf);
768         return (ssize_t)total;          
769 }
770
771 SMB_OFF_T transfer_file(int infd,int outfd,SMB_OFF_T n)
772 {
773         return (SMB_OFF_T)transfer_file_internal(infd, outfd, (size_t)n, sys_read, sys_write);
774 }
775
776 /*******************************************************************
777  Sleep for a specified number of milliseconds.
778 ********************************************************************/
779
780 void smb_msleep(unsigned int t)
781 {
782 #if defined(HAVE_NANOSLEEP)
783         struct timespec tval;
784         int ret;
785
786         tval.tv_sec = t/1000;
787         tval.tv_nsec = 1000000*(t%1000);
788
789         do {
790                 errno = 0;
791                 ret = nanosleep(&tval, &tval);
792         } while (ret < 0 && errno == EINTR && (tval.tv_sec > 0 || tval.tv_nsec > 0));
793 #else
794         unsigned int tdiff=0;
795         struct timeval tval,t1,t2;  
796         fd_set fds;
797
798         GetTimeOfDay(&t1);
799         t2 = t1;
800   
801         while (tdiff < t) {
802                 tval.tv_sec = (t-tdiff)/1000;
803                 tval.tv_usec = 1000*((t-tdiff)%1000);
804
805                 /* Never wait for more than 1 sec. */
806                 if (tval.tv_sec > 1) {
807                         tval.tv_sec = 1; 
808                         tval.tv_usec = 0;
809                 }
810
811                 FD_ZERO(&fds);
812                 errno = 0;
813                 sys_select_intr(0,&fds,NULL,NULL,&tval);
814
815                 GetTimeOfDay(&t2);
816                 if (t2.tv_sec < t1.tv_sec) {
817                         /* Someone adjusted time... */
818                         t1 = t2;
819                 }
820
821                 tdiff = TvalDiff(&t1,&t2);
822         }
823 #endif
824 }
825
826 /****************************************************************************
827  Become a daemon, discarding the controlling terminal.
828 ****************************************************************************/
829
830 void become_daemon(BOOL Fork)
831 {
832         if (Fork) {
833                 if (sys_fork()) {
834                         _exit(0);
835                 }
836         }
837
838   /* detach from the terminal */
839 #ifdef HAVE_SETSID
840         setsid();
841 #elif defined(TIOCNOTTY)
842         {
843                 int i = sys_open("/dev/tty", O_RDWR, 0);
844                 if (i != -1) {
845                         ioctl(i, (int) TIOCNOTTY, (char *)0);      
846                         close(i);
847                 }
848         }
849 #endif /* HAVE_SETSID */
850
851         /* Close fd's 0,1,2. Needed if started by rsh */
852         close_low_fds(False);  /* Don't close stderr, let the debug system
853                                   attach it to the logfile */
854 }
855
856 /****************************************************************************
857  Put up a yes/no prompt.
858 ****************************************************************************/
859
860 BOOL yesno(char *p)
861 {
862         pstring ans;
863         printf("%s",p);
864
865         if (!fgets(ans,sizeof(ans)-1,stdin))
866                 return(False);
867
868         if (*ans == 'y' || *ans == 'Y')
869                 return(True);
870
871         return(False);
872 }
873
874 #if defined(PARANOID_MALLOC_CHECKER)
875
876 /****************************************************************************
877  Internal malloc wrapper. Externally visible.
878 ****************************************************************************/
879
880 void *malloc_(size_t size)
881 {
882 #undef malloc
883         return malloc(size);
884 #define malloc(s) __ERROR_DONT_USE_MALLOC_DIRECTLY
885 }
886
887 /****************************************************************************
888  Internal calloc wrapper. Not externally visible.
889 ****************************************************************************/
890
891 static void *calloc_(size_t count, size_t size)
892 {
893 #undef calloc
894         return calloc(count, size);
895 #define calloc(n,s) __ERROR_DONT_USE_CALLOC_DIRECTLY
896 }
897
898 /****************************************************************************
899  Internal realloc wrapper. Not externally visible.
900 ****************************************************************************/
901
902 static void *realloc_(void *ptr, size_t size)
903 {
904 #undef realloc
905         return realloc(ptr, size);
906 #define realloc(p,s) __ERROR_DONT_USE_RELLOC_DIRECTLY
907 }
908
909 #endif /* PARANOID_MALLOC_CHECKER */
910
911 /****************************************************************************
912  Type-safe malloc.
913 ****************************************************************************/
914
915 void *malloc_array(size_t el_size, unsigned int count)
916 {
917         if (count >= MAX_ALLOC_SIZE/el_size) {
918                 return NULL;
919         }
920
921 #if defined(PARANOID_MALLOC_CHECKER)
922         return malloc_(el_size*count);
923 #else
924         return malloc(el_size*count);
925 #endif
926 }
927
928 /****************************************************************************
929  Type-safe calloc.
930 ****************************************************************************/
931
932 void *calloc_array(size_t size, size_t nmemb)
933 {
934         if (nmemb >= MAX_ALLOC_SIZE/size) {
935                 return NULL;
936         }
937 #if defined(PARANOID_MALLOC_CHECKER)
938         return calloc_(nmemb, size);
939 #else
940         return calloc(nmemb, size);
941 #endif
942 }
943
944 /****************************************************************************
945  Expand a pointer to be a particular size.
946 ****************************************************************************/
947
948 void *Realloc(void *p,size_t size)
949 {
950         void *ret=NULL;
951
952         if (size == 0) {
953                 SAFE_FREE(p);
954                 DEBUG(5,("Realloc asked for 0 bytes\n"));
955                 return NULL;
956         }
957
958 #if defined(PARANOID_MALLOC_CHECKER)
959         if (!p)
960                 ret = (void *)malloc_(size);
961         else
962                 ret = (void *)realloc_(p,size);
963 #else
964         if (!p)
965                 ret = (void *)malloc(size);
966         else
967                 ret = (void *)realloc(p,size);
968 #endif
969
970         if (!ret)
971                 DEBUG(0,("Memory allocation error: failed to expand to %d bytes\n",(int)size));
972
973         return(ret);
974 }
975
976 /****************************************************************************
977  Type-safe realloc.
978 ****************************************************************************/
979
980 void *realloc_array(void *p,size_t el_size, unsigned int count)
981 {
982         if (count >= MAX_ALLOC_SIZE/el_size) {
983                 return NULL;
984         }
985         return Realloc(p,el_size*count);
986 }
987
988 /****************************************************************************
989  Free memory, checks for NULL.
990  Use directly SAFE_FREE()
991  Exists only because we need to pass a function pointer somewhere --SSS
992 ****************************************************************************/
993
994 void safe_free(void *p)
995 {
996         SAFE_FREE(p);
997 }
998
999 /****************************************************************************
1000  Get my own name and IP.
1001 ****************************************************************************/
1002
1003 BOOL get_myname(char *my_name)
1004 {
1005         pstring hostname;
1006
1007         *hostname = 0;
1008
1009         /* get my host name */
1010         if (gethostname(hostname, sizeof(hostname)) == -1) {
1011                 DEBUG(0,("gethostname failed\n"));
1012                 return False;
1013         } 
1014
1015         /* Ensure null termination. */
1016         hostname[sizeof(hostname)-1] = '\0';
1017
1018         if (my_name) {
1019                 /* split off any parts after an initial . */
1020                 char *p = strchr_m(hostname,'.');
1021
1022                 if (p)
1023                         *p = 0;
1024                 
1025                 fstrcpy(my_name,hostname);
1026         }
1027         
1028         return(True);
1029 }
1030
1031 /****************************************************************************
1032  Get my own canonical name, including domain.
1033 ****************************************************************************/
1034
1035 BOOL get_mydnsfullname(fstring my_dnsname)
1036 {
1037         static fstring dnshostname;
1038         struct hostent *hp;
1039
1040         if (!*dnshostname) {
1041                 /* get my host name */
1042                 if (gethostname(dnshostname, sizeof(dnshostname)) == -1) {
1043                         *dnshostname = '\0';
1044                         DEBUG(0,("gethostname failed\n"));
1045                         return False;
1046                 } 
1047
1048                 /* Ensure null termination. */
1049                 dnshostname[sizeof(dnshostname)-1] = '\0';
1050
1051                 /* Ensure we get the cannonical name. */
1052                 if (!(hp = sys_gethostbyname(dnshostname))) {
1053                         *dnshostname = '\0';
1054                         return False;
1055                 }
1056                 fstrcpy(dnshostname, hp->h_name);
1057         }
1058         fstrcpy(my_dnsname, dnshostname);
1059         return True;
1060 }
1061
1062 /****************************************************************************
1063  Get my own domain name.
1064 ****************************************************************************/
1065
1066 BOOL get_mydnsdomname(fstring my_domname)
1067 {
1068         fstring domname;
1069         char *p;
1070
1071         *my_domname = '\0';
1072         if (!get_mydnsfullname(domname)) {
1073                 return False;
1074         }       
1075         p = strchr_m(domname, '.');
1076         if (p) {
1077                 p++;
1078                 fstrcpy(my_domname, p);
1079         }
1080
1081         return False;
1082 }
1083
1084 /****************************************************************************
1085  Interpret a protocol description string, with a default.
1086 ****************************************************************************/
1087
1088 int interpret_protocol(const char *str,int def)
1089 {
1090         if (strequal(str,"NT1"))
1091                 return(PROTOCOL_NT1);
1092         if (strequal(str,"LANMAN2"))
1093                 return(PROTOCOL_LANMAN2);
1094         if (strequal(str,"LANMAN1"))
1095                 return(PROTOCOL_LANMAN1);
1096         if (strequal(str,"CORE"))
1097                 return(PROTOCOL_CORE);
1098         if (strequal(str,"COREPLUS"))
1099                 return(PROTOCOL_COREPLUS);
1100         if (strequal(str,"CORE+"))
1101                 return(PROTOCOL_COREPLUS);
1102   
1103         DEBUG(0,("Unrecognised protocol level %s\n",str));
1104   
1105         return(def);
1106 }
1107
1108 /****************************************************************************
1109  Return true if a string could be a pure IP address.
1110 ****************************************************************************/
1111
1112 BOOL is_ipaddress(const char *str)
1113 {
1114         BOOL pure_address = True;
1115         int i;
1116   
1117         for (i=0; pure_address && str[i]; i++)
1118                 if (!(isdigit((int)str[i]) || str[i] == '.'))
1119                         pure_address = False;
1120
1121         /* Check that a pure number is not misinterpreted as an IP */
1122         pure_address = pure_address && (strchr_m(str, '.') != NULL);
1123
1124         return pure_address;
1125 }
1126
1127 /****************************************************************************
1128  Interpret an internet address or name into an IP address in 4 byte form.
1129 ****************************************************************************/
1130
1131 uint32 interpret_addr(const char *str)
1132 {
1133         struct hostent *hp;
1134         uint32 res;
1135
1136         if (strcmp(str,"0.0.0.0") == 0)
1137                 return(0);
1138         if (strcmp(str,"255.255.255.255") == 0)
1139                 return(0xFFFFFFFF);
1140
1141   /* if it's in the form of an IP address then get the lib to interpret it */
1142         if (is_ipaddress(str)) {
1143                 res = inet_addr(str);
1144         } else {
1145                 /* otherwise assume it's a network name of some sort and use 
1146                         sys_gethostbyname */
1147                 if ((hp = sys_gethostbyname(str)) == 0) {
1148                         DEBUG(3,("sys_gethostbyname: Unknown host. %s\n",str));
1149                         return 0;
1150                 }
1151
1152                 if(hp->h_addr == NULL) {
1153                         DEBUG(3,("sys_gethostbyname: host address is invalid for host %s\n",str));
1154                         return 0;
1155                 }
1156                 putip((char *)&res,(char *)hp->h_addr);
1157         }
1158
1159         if (res == (uint32)-1)
1160                 return(0);
1161
1162         return(res);
1163 }
1164
1165 /*******************************************************************
1166  A convenient addition to interpret_addr().
1167 ******************************************************************/
1168
1169 struct in_addr *interpret_addr2(const char *str)
1170 {
1171         static struct in_addr ret;
1172         uint32 a = interpret_addr(str);
1173         ret.s_addr = a;
1174         return(&ret);
1175 }
1176
1177 /*******************************************************************
1178  Check if an IP is the 0.0.0.0.
1179 ******************************************************************/
1180
1181 BOOL is_zero_ip(struct in_addr ip)
1182 {
1183         uint32 a;
1184         putip((char *)&a,(char *)&ip);
1185         return(a == 0);
1186 }
1187
1188 /*******************************************************************
1189  Set an IP to 0.0.0.0.
1190 ******************************************************************/
1191
1192 void zero_ip(struct in_addr *ip)
1193 {
1194         static BOOL init;
1195         static struct in_addr ipzero;
1196
1197         if (!init) {
1198                 ipzero = *interpret_addr2("0.0.0.0");
1199                 init = True;
1200         }
1201
1202         *ip = ipzero;
1203 }
1204
1205 #if (defined(HAVE_NETGROUP) && defined(WITH_AUTOMOUNT))
1206 /******************************************************************
1207  Remove any mount options such as -rsize=2048,wsize=2048 etc.
1208  Based on a fix from <Thomas.Hepper@icem.de>.
1209 *******************************************************************/
1210
1211 static void strip_mount_options( pstring *str)
1212 {
1213         if (**str == '-') { 
1214                 char *p = *str;
1215                 while(*p && !isspace(*p))
1216                         p++;
1217                 while(*p && isspace(*p))
1218                         p++;
1219                 if(*p) {
1220                         pstring tmp_str;
1221
1222                         pstrcpy(tmp_str, p);
1223                         pstrcpy(*str, tmp_str);
1224                 }
1225         }
1226 }
1227
1228 /*******************************************************************
1229  Patch from jkf@soton.ac.uk
1230  Split Luke's automount_server into YP lookup and string splitter
1231  so can easily implement automount_path(). 
1232  As we may end up doing both, cache the last YP result. 
1233 *******************************************************************/
1234
1235 #ifdef WITH_NISPLUS_HOME
1236 char *automount_lookup( char *user_name)
1237 {
1238         static fstring last_key = "";
1239         static pstring last_value = "";
1240  
1241         char *nis_map = (char *)lp_nis_home_map_name();
1242  
1243         char buffer[NIS_MAXATTRVAL + 1];
1244         nis_result *result;
1245         nis_object *object;
1246         entry_obj  *entry;
1247  
1248         if (strcmp(user_name, last_key)) {
1249                 slprintf(buffer, sizeof(buffer)-1, "[key=%s],%s", user_name, nis_map);
1250                 DEBUG(5, ("NIS+ querystring: %s\n", buffer));
1251  
1252                 if (result = nis_list(buffer, FOLLOW_PATH|EXPAND_NAME|HARD_LOOKUP, NULL, NULL)) {
1253                         if (result->status != NIS_SUCCESS) {
1254                                 DEBUG(3, ("NIS+ query failed: %s\n", nis_sperrno(result->status)));
1255                                 fstrcpy(last_key, ""); pstrcpy(last_value, "");
1256                         } else {
1257                                 object = result->objects.objects_val;
1258                                 if (object->zo_data.zo_type == ENTRY_OBJ) {
1259                                         entry = &object->zo_data.objdata_u.en_data;
1260                                         DEBUG(5, ("NIS+ entry type: %s\n", entry->en_type));
1261                                         DEBUG(3, ("NIS+ result: %s\n", entry->en_cols.en_cols_val[1].ec_value.ec_value_val));
1262  
1263                                         pstrcpy(last_value, entry->en_cols.en_cols_val[1].ec_value.ec_value_val);
1264                                         pstring_sub(last_value, "&", user_name);
1265                                         fstrcpy(last_key, user_name);
1266                                 }
1267                         }
1268                 }
1269                 nis_freeresult(result);
1270         }
1271
1272         strip_mount_options(&last_value);
1273
1274         DEBUG(4, ("NIS+ Lookup: %s resulted in %s\n", user_name, last_value));
1275         return last_value;
1276 }
1277 #else /* WITH_NISPLUS_HOME */
1278
1279 char *automount_lookup( char *user_name)
1280 {
1281         static fstring last_key = "";
1282         static pstring last_value = "";
1283
1284         int nis_error;        /* returned by yp all functions */
1285         char *nis_result;     /* yp_match inits this */
1286         int nis_result_len;  /* and set this */
1287         char *nis_domain;     /* yp_get_default_domain inits this */
1288         char *nis_map = (char *)lp_nis_home_map_name();
1289
1290         if ((nis_error = yp_get_default_domain(&nis_domain)) != 0) {
1291                 DEBUG(3, ("YP Error: %s\n", yperr_string(nis_error)));
1292                 return last_value;
1293         }
1294
1295         DEBUG(5, ("NIS Domain: %s\n", nis_domain));
1296
1297         if (!strcmp(user_name, last_key)) {
1298                 nis_result = last_value;
1299                 nis_result_len = strlen(last_value);
1300                 nis_error = 0;
1301         } else {
1302                 if ((nis_error = yp_match(nis_domain, nis_map, user_name, strlen(user_name),
1303                                 &nis_result, &nis_result_len)) == 0) {
1304                         if (!nis_error && nis_result_len >= sizeof(pstring)) {
1305                                 nis_result_len = sizeof(pstring)-1;
1306                         }
1307                         fstrcpy(last_key, user_name);
1308                         strncpy(last_value, nis_result, nis_result_len);
1309                         last_value[nis_result_len] = '\0';
1310                         strip_mount_options(&last_value);
1311
1312                 } else if(nis_error == YPERR_KEY) {
1313
1314                         /* If Key lookup fails user home server is not in nis_map 
1315                                 use default information for server, and home directory */
1316                         last_value[0] = 0;
1317                         DEBUG(3, ("YP Key not found:  while looking up \"%s\" in map \"%s\"\n", 
1318                                         user_name, nis_map));
1319                         DEBUG(3, ("using defaults for server and home directory\n"));
1320                 } else {
1321                         DEBUG(3, ("YP Error: \"%s\" while looking up \"%s\" in map \"%s\"\n", 
1322                                         yperr_string(nis_error), user_name, nis_map));
1323                 }
1324         }
1325
1326         DEBUG(4, ("YP Lookup: %s resulted in %s\n", user_name, last_value));
1327         return last_value;
1328 }
1329 #endif /* WITH_NISPLUS_HOME */
1330 #endif
1331
1332 /*******************************************************************
1333  Are two IPs on the same subnet?
1334 ********************************************************************/
1335
1336 BOOL same_net(struct in_addr ip1,struct in_addr ip2,struct in_addr mask)
1337 {
1338         uint32 net1,net2,nmask;
1339
1340         nmask = ntohl(mask.s_addr);
1341         net1  = ntohl(ip1.s_addr);
1342         net2  = ntohl(ip2.s_addr);
1343             
1344         return((net1 & nmask) == (net2 & nmask));
1345 }
1346
1347
1348 /****************************************************************************
1349  Check if a process exists. Does this work on all unixes?
1350 ****************************************************************************/
1351
1352 BOOL process_exists(pid_t pid)
1353 {
1354         /* Doing kill with a non-positive pid causes messages to be
1355          * sent to places we don't want. */
1356         SMB_ASSERT(pid > 0);
1357         return(kill(pid,0) == 0 || errno != ESRCH);
1358 }
1359
1360 /*******************************************************************
1361  Convert a uid into a user name.
1362 ********************************************************************/
1363
1364 const char *uidtoname(uid_t uid)
1365 {
1366         static fstring name;
1367         struct passwd *pass;
1368
1369         pass = getpwuid_alloc(uid);
1370         if (pass) {
1371                 fstrcpy(name, pass->pw_name);
1372                 passwd_free(&pass);
1373         } else {
1374                 slprintf(name, sizeof(name) - 1, "%ld",(long int)uid);
1375         }
1376         return name;
1377 }
1378
1379
1380 /*******************************************************************
1381  Convert a gid into a group name.
1382 ********************************************************************/
1383
1384 char *gidtoname(gid_t gid)
1385 {
1386         static fstring name;
1387         struct group *grp;
1388
1389         grp = getgrgid(gid);
1390         if (grp)
1391                 return(grp->gr_name);
1392         slprintf(name,sizeof(name) - 1, "%d",(int)gid);
1393         return(name);
1394 }
1395
1396 /*******************************************************************
1397  Convert a user name into a uid. 
1398 ********************************************************************/
1399
1400 uid_t nametouid(const char *name)
1401 {
1402         struct passwd *pass;
1403         char *p;
1404         uid_t u;
1405
1406         pass = getpwnam_alloc(name);
1407         if (pass) {
1408                 u = pass->pw_uid;
1409                 passwd_free(&pass);
1410                 return u;
1411         }
1412
1413         u = (uid_t)strtol(name, &p, 0);
1414         if ((p != name) && (*p == '\0'))
1415                 return u;
1416
1417         return (uid_t)-1;
1418 }
1419
1420 /*******************************************************************
1421  Convert a name to a gid_t if possible. Return -1 if not a group. 
1422 ********************************************************************/
1423
1424 gid_t nametogid(const char *name)
1425 {
1426         struct group *grp;
1427         char *p;
1428         gid_t g;
1429
1430         g = (gid_t)strtol(name, &p, 0);
1431         if ((p != name) && (*p == '\0'))
1432                 return g;
1433
1434         grp = sys_getgrnam(name);
1435         if (grp)
1436                 return(grp->gr_gid);
1437         return (gid_t)-1;
1438 }
1439
1440 /*******************************************************************
1441  legacy wrapper for smb_panic2()
1442 ********************************************************************/
1443 void smb_panic( const char *why )
1444 {
1445         smb_panic2( why, True );
1446 }
1447
1448 /*******************************************************************
1449  Something really nasty happened - panic !
1450 ********************************************************************/
1451
1452 #ifdef HAVE_LIBEXC_H
1453 #include <libexc.h>
1454 #endif
1455
1456 void smb_panic2(const char *why, BOOL decrement_pid_count )
1457 {
1458         char *cmd;
1459         int result;
1460 #ifdef HAVE_BACKTRACE_SYMBOLS
1461         void *backtrace_stack[BACKTRACE_STACK_SIZE];
1462         size_t backtrace_size;
1463         char **backtrace_strings;
1464 #endif
1465
1466 #ifdef DEVELOPER
1467         {
1468                 extern char *global_clobber_region_function;
1469                 extern unsigned int global_clobber_region_line;
1470
1471                 if (global_clobber_region_function) {
1472                         DEBUG(0,("smb_panic: clobber_region() last called from [%s(%u)]\n",
1473                                          global_clobber_region_function,
1474                                          global_clobber_region_line));
1475                 } 
1476         }
1477 #endif
1478
1479         /* only smbd needs to decrement the smbd counter in connections.tdb */
1480         if ( decrement_pid_count )
1481                 decrement_smbd_process_count();
1482
1483         cmd = lp_panic_action();
1484         if (cmd && *cmd) {
1485                 DEBUG(0, ("smb_panic(): calling panic action [%s]\n", cmd));
1486                 result = system(cmd);
1487
1488                 if (result == -1)
1489                         DEBUG(0, ("smb_panic(): fork failed in panic action: %s\n",
1490                                           strerror(errno)));
1491                 else
1492                         DEBUG(0, ("smb_panic(): action returned status %d\n",
1493                                           WEXITSTATUS(result)));
1494         }
1495         DEBUG(0,("PANIC: %s\n", why));
1496
1497 #ifdef HAVE_BACKTRACE_SYMBOLS
1498         /* get the backtrace (stack frames) */
1499         backtrace_size = backtrace(backtrace_stack,BACKTRACE_STACK_SIZE);
1500         backtrace_strings = backtrace_symbols(backtrace_stack, backtrace_size);
1501
1502         DEBUG(0, ("BACKTRACE: %lu stack frames:\n", 
1503                   (unsigned long)backtrace_size));
1504         
1505         if (backtrace_strings) {
1506                 int i;
1507
1508                 for (i = 0; i < backtrace_size; i++)
1509                         DEBUGADD(0, (" #%u %s\n", i, backtrace_strings[i]));
1510
1511                 /* Leak the backtrace_strings, rather than risk what free() might do */
1512         }
1513
1514 #elif HAVE_LIBEXC
1515
1516 #define NAMESIZE 32 /* Arbitrary */
1517
1518         /* The IRIX libexc library provides an API for unwinding the stack. See
1519          * libexc(3) for details. Apparantly trace_back_stack leaks memory, but
1520          * since we are about to abort anyway, it hardly matters.
1521          *
1522          * Note that if we paniced due to a SIGSEGV or SIGBUS (or similar) this
1523          * will fail with a nasty message upon failing to open the /proc entry.
1524          */
1525         {
1526                 __uint64_t      addrs[BACKTRACE_STACK_SIZE];
1527                 char *          names[BACKTRACE_STACK_SIZE];
1528                 char            namebuf[BACKTRACE_STACK_SIZE * NAMESIZE];
1529
1530                 int             i;
1531                 int             levels;
1532
1533                 ZERO_ARRAY(addrs);
1534                 ZERO_ARRAY(names);
1535                 ZERO_ARRAY(namebuf);
1536
1537                 for (i = 0; i < BACKTRACE_STACK_SIZE; i++) {
1538                         names[i] = namebuf + (i * NAMESIZE);
1539                 }
1540
1541                 levels = trace_back_stack(0, addrs, names,
1542                                 BACKTRACE_STACK_SIZE, NAMESIZE);
1543
1544                 DEBUG(0, ("BACKTRACE: %d stack frames:\n", levels));
1545                 for (i = 0; i < levels; i++) {
1546                         DEBUGADD(0, (" #%d 0x%llx %s\n", i, addrs[i], names[i]));
1547                 }
1548      }
1549 #undef NAMESIZE
1550 #endif
1551
1552         dbgflush();
1553 #ifdef SIGABRT
1554         CatchSignal(SIGABRT,SIGNAL_CAST SIG_DFL);
1555 #endif
1556         abort();
1557 }
1558
1559 /*******************************************************************
1560   A readdir wrapper which just returns the file name.
1561  ********************************************************************/
1562
1563 const char *readdirname(DIR *p)
1564 {
1565         SMB_STRUCT_DIRENT *ptr;
1566         char *dname;
1567
1568         if (!p)
1569                 return(NULL);
1570   
1571         ptr = (SMB_STRUCT_DIRENT *)sys_readdir(p);
1572         if (!ptr)
1573                 return(NULL);
1574
1575         dname = ptr->d_name;
1576
1577 #ifdef NEXT2
1578         if (telldir(p) < 0)
1579                 return(NULL);
1580 #endif
1581
1582 #ifdef HAVE_BROKEN_READDIR
1583         /* using /usr/ucb/cc is BAD */
1584         dname = dname - 2;
1585 #endif
1586
1587         {
1588                 static pstring buf;
1589                 int len = NAMLEN(ptr);
1590                 memcpy(buf, dname, len);
1591                 buf[len] = 0;
1592                 dname = buf;
1593         }
1594
1595         return(dname);
1596 }
1597
1598 /*******************************************************************
1599  Utility function used to decide if the last component 
1600  of a path matches a (possibly wildcarded) entry in a namelist.
1601 ********************************************************************/
1602
1603 BOOL is_in_path(const char *name, name_compare_entry *namelist, BOOL case_sensitive)
1604 {
1605         pstring last_component;
1606         char *p;
1607
1608         /* if we have no list it's obviously not in the path */
1609         if((namelist == NULL ) || ((namelist != NULL) && (namelist[0].name == NULL))) {
1610                 return False;
1611         }
1612
1613         DEBUG(8, ("is_in_path: %s\n", name));
1614
1615         /* Get the last component of the unix name. */
1616         p = strrchr_m(name, '/');
1617         strncpy(last_component, p ? ++p : name, sizeof(last_component)-1);
1618         last_component[sizeof(last_component)-1] = '\0'; 
1619
1620         for(; namelist->name != NULL; namelist++) {
1621                 if(namelist->is_wild) {
1622                         if (mask_match(last_component, namelist->name, case_sensitive)) {
1623                                 DEBUG(8,("is_in_path: mask match succeeded\n"));
1624                                 return True;
1625                         }
1626                 } else {
1627                         if((case_sensitive && (strcmp(last_component, namelist->name) == 0))||
1628                                                 (!case_sensitive && (StrCaseCmp(last_component, namelist->name) == 0))) {
1629                                 DEBUG(8,("is_in_path: match succeeded\n"));
1630                                 return True;
1631                         }
1632                 }
1633         }
1634         DEBUG(8,("is_in_path: match not found\n"));
1635  
1636         return False;
1637 }
1638
1639 /*******************************************************************
1640  Strip a '/' separated list into an array of 
1641  name_compare_enties structures suitable for 
1642  passing to is_in_path(). We do this for
1643  speed so we can pre-parse all the names in the list 
1644  and don't do it for each call to is_in_path().
1645  namelist is modified here and is assumed to be 
1646  a copy owned by the caller.
1647  We also check if the entry contains a wildcard to
1648  remove a potentially expensive call to mask_match
1649  if possible.
1650 ********************************************************************/
1651  
1652 void set_namearray(name_compare_entry **ppname_array, char *namelist)
1653 {
1654         char *name_end;
1655         char *nameptr = namelist;
1656         int num_entries = 0;
1657         int i;
1658
1659         (*ppname_array) = NULL;
1660
1661         if((nameptr == NULL ) || ((nameptr != NULL) && (*nameptr == '\0'))) 
1662                 return;
1663
1664         /* We need to make two passes over the string. The
1665                 first to count the number of elements, the second
1666                 to split it.
1667         */
1668
1669         while(*nameptr) {
1670                 if ( *nameptr == '/' ) {
1671                         /* cope with multiple (useless) /s) */
1672                         nameptr++;
1673                         continue;
1674                 }
1675                 /* find the next / */
1676                 name_end = strchr_m(nameptr, '/');
1677
1678                 /* oops - the last check for a / didn't find one. */
1679                 if (name_end == NULL)
1680                         break;
1681
1682                 /* next segment please */
1683                 nameptr = name_end + 1;
1684                 num_entries++;
1685         }
1686
1687         if(num_entries == 0)
1688                 return;
1689
1690         if(( (*ppname_array) = SMB_MALLOC_ARRAY(name_compare_entry, num_entries + 1)) == NULL) {
1691                 DEBUG(0,("set_namearray: malloc fail\n"));
1692                 return;
1693         }
1694
1695         /* Now copy out the names */
1696         nameptr = namelist;
1697         i = 0;
1698         while(*nameptr) {
1699                 if ( *nameptr == '/' ) {
1700                         /* cope with multiple (useless) /s) */
1701                         nameptr++;
1702                         continue;
1703                 }
1704                 /* find the next / */
1705                 if ((name_end = strchr_m(nameptr, '/')) != NULL)
1706                         *name_end = 0;
1707
1708                 /* oops - the last check for a / didn't find one. */
1709                 if(name_end == NULL) 
1710                         break;
1711
1712                 (*ppname_array)[i].is_wild = ms_has_wild(nameptr);
1713                 if(((*ppname_array)[i].name = SMB_STRDUP(nameptr)) == NULL) {
1714                         DEBUG(0,("set_namearray: malloc fail (1)\n"));
1715                         return;
1716                 }
1717
1718                 /* next segment please */
1719                 nameptr = name_end + 1;
1720                 i++;
1721         }
1722   
1723         (*ppname_array)[i].name = NULL;
1724
1725         return;
1726 }
1727
1728 /****************************************************************************
1729  Routine to free a namearray.
1730 ****************************************************************************/
1731
1732 void free_namearray(name_compare_entry *name_array)
1733 {
1734         int i;
1735
1736         if(name_array == NULL)
1737                 return;
1738
1739         for(i=0; name_array[i].name!=NULL; i++)
1740                 SAFE_FREE(name_array[i].name);
1741         SAFE_FREE(name_array);
1742 }
1743
1744 /****************************************************************************
1745  Simple routine to do POSIX file locking. Cruft in NFS and 64->32 bit mapping
1746  is dealt with in posix.c
1747 ****************************************************************************/
1748
1749 BOOL fcntl_lock(int fd, int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
1750 {
1751         SMB_STRUCT_FLOCK lock;
1752         int ret;
1753
1754         DEBUG(8,("fcntl_lock %d %d %.0f %.0f %d\n",fd,op,(double)offset,(double)count,type));
1755
1756         lock.l_type = type;
1757         lock.l_whence = SEEK_SET;
1758         lock.l_start = offset;
1759         lock.l_len = count;
1760         lock.l_pid = 0;
1761
1762         ret = sys_fcntl_ptr(fd,op,&lock);
1763
1764         if (ret == -1 && errno != 0)
1765                 DEBUG(3,("fcntl_lock: fcntl lock gave errno %d (%s)\n",errno,strerror(errno)));
1766
1767         /* a lock query */
1768         if (op == SMB_F_GETLK) {
1769                 if ((ret != -1) &&
1770                                 (lock.l_type != F_UNLCK) && 
1771                                 (lock.l_pid != 0) && 
1772                                 (lock.l_pid != sys_getpid())) {
1773                         DEBUG(3,("fcntl_lock: fd %d is locked by pid %d\n",fd,(int)lock.l_pid));
1774                         return(True);
1775                 }
1776
1777                 /* it must be not locked or locked by me */
1778                 return(False);
1779         }
1780
1781         /* a lock set or unset */
1782         if (ret == -1) {
1783                 DEBUG(3,("fcntl_lock: lock failed at offset %.0f count %.0f op %d type %d (%s)\n",
1784                         (double)offset,(double)count,op,type,strerror(errno)));
1785                 return(False);
1786         }
1787
1788         /* everything went OK */
1789         DEBUG(8,("fcntl_lock: Lock call successful\n"));
1790
1791         return(True);
1792 }
1793
1794 /*******************************************************************
1795  Is the name specified one of my netbios names.
1796  Returns true if it is equal, false otherwise.
1797 ********************************************************************/
1798
1799 BOOL is_myname(const char *s)
1800 {
1801         int n;
1802         BOOL ret = False;
1803
1804         for (n=0; my_netbios_names(n); n++) {
1805                 if (strequal(my_netbios_names(n), s)) {
1806                         ret=True;
1807                         break;
1808                 }
1809         }
1810         DEBUG(8, ("is_myname(\"%s\") returns %d\n", s, ret));
1811         return(ret);
1812 }
1813
1814 BOOL is_myname_or_ipaddr(const char *s)
1815 {
1816         fstring name, dnsname;
1817         char *servername;
1818
1819         if ( !s )
1820                 return False;
1821
1822         /* santize the string from '\\name' */
1823
1824         fstrcpy( name, s );
1825
1826         servername = strrchr_m( name, '\\' );
1827         if ( !servername )
1828                 servername = name;
1829         else
1830                 servername++;
1831
1832         /* optimize for the common case */
1833
1834         if (strequal(servername, global_myname())) 
1835                 return True;
1836
1837         /* check for an alias */
1838
1839         if (is_myname(servername))
1840                 return True;
1841
1842         /* check for loopback */
1843
1844         if (strequal(servername, "localhost")) 
1845                 return True;
1846
1847         /* maybe it's my dns name */
1848
1849         if ( get_mydnsfullname( dnsname ) )
1850                 if ( strequal( servername, dnsname ) )
1851                         return True;
1852                 
1853         /* handle possible CNAME records */
1854
1855         if ( !is_ipaddress( servername ) ) {
1856                 /* use DNS to resolve the name, but only the first address */
1857                 struct hostent *hp;
1858
1859                 if (((hp = sys_gethostbyname(name)) != NULL) && (hp->h_addr != NULL)) {
1860                         struct in_addr return_ip;
1861                         putip( (char*)&return_ip, (char*)hp->h_addr );
1862                         fstrcpy( name, inet_ntoa( return_ip ) );
1863                         servername = name;
1864                 }       
1865         }
1866                 
1867         /* maybe its an IP address? */
1868         if (is_ipaddress(servername)) {
1869                 struct iface_struct nics[MAX_INTERFACES];
1870                 int i, n;
1871                 uint32 ip;
1872                 
1873                 ip = interpret_addr(servername);
1874                 if ((ip==0) || (ip==0xffffffff))
1875                         return False;
1876                         
1877                 n = get_interfaces(nics, MAX_INTERFACES);
1878                 for (i=0; i<n; i++) {
1879                         if (ip == nics[i].ip.s_addr)
1880                                 return True;
1881                 }
1882         }       
1883
1884         /* no match */
1885         return False;
1886 }
1887
1888 /*******************************************************************
1889  Is the name specified our workgroup/domain.
1890  Returns true if it is equal, false otherwise.
1891 ********************************************************************/
1892
1893 BOOL is_myworkgroup(const char *s)
1894 {
1895         BOOL ret = False;
1896
1897         if (strequal(s, lp_workgroup())) {
1898                 ret=True;
1899         }
1900
1901         DEBUG(8, ("is_myworkgroup(\"%s\") returns %d\n", s, ret));
1902         return(ret);
1903 }
1904
1905 /*******************************************************************
1906  we distinguish between 2K and XP by the "Native Lan Manager" string
1907    WinXP => "Windows 2002 5.1"
1908    Win2k => "Windows 2000 5.0"
1909    NT4   => "Windows NT 4.0" 
1910    Win9x => "Windows 4.0"
1911  Windows 2003 doesn't set the native lan manager string but 
1912  they do set the domain to "Windows 2003 5.2" (probably a bug).
1913 ********************************************************************/
1914
1915 void ra_lanman_string( const char *native_lanman )
1916 {                
1917         if ( strcmp( native_lanman, "Windows 2002 5.1" ) == 0 )
1918                 set_remote_arch( RA_WINXP );
1919         else if ( strcmp( native_lanman, "Windows Server 2003 5.2" ) == 0 )
1920                 set_remote_arch( RA_WIN2K3 );
1921 }
1922
1923 /*******************************************************************
1924  Set the horrid remote_arch string based on an enum.
1925 ********************************************************************/
1926
1927 void set_remote_arch(enum remote_arch_types type)
1928 {
1929         extern fstring remote_arch;
1930         ra_type = type;
1931         switch( type ) {
1932         case RA_WFWG:
1933                 fstrcpy(remote_arch, "WfWg");
1934                 break;
1935         case RA_OS2:
1936                 fstrcpy(remote_arch, "OS2");
1937                 break;
1938         case RA_WIN95:
1939                 fstrcpy(remote_arch, "Win95");
1940                 break;
1941         case RA_WINNT:
1942                 fstrcpy(remote_arch, "WinNT");
1943                 break;
1944         case RA_WIN2K:
1945                 fstrcpy(remote_arch, "Win2K");
1946                 break;
1947         case RA_WINXP:
1948                 fstrcpy(remote_arch, "WinXP");
1949                 break;
1950         case RA_WIN2K3:
1951                 fstrcpy(remote_arch, "Win2K3");
1952                 break;
1953         case RA_SAMBA:
1954                 fstrcpy(remote_arch,"Samba");
1955                 break;
1956         case RA_CIFSFS:
1957                 fstrcpy(remote_arch,"CIFSFS");
1958                 break;
1959         default:
1960                 ra_type = RA_UNKNOWN;
1961                 fstrcpy(remote_arch, "UNKNOWN");
1962                 break;
1963         }
1964
1965         DEBUG(10,("set_remote_arch: Client arch is \'%s\'\n", remote_arch));
1966 }
1967
1968 /*******************************************************************
1969  Get the remote_arch type.
1970 ********************************************************************/
1971
1972 enum remote_arch_types get_remote_arch(void)
1973 {
1974         return ra_type;
1975 }
1976
1977 void print_asc(int level, const unsigned char *buf,int len)
1978 {
1979         int i;
1980         for (i=0;i<len;i++)
1981                 DEBUG(level,("%c", isprint(buf[i])?buf[i]:'.'));
1982 }
1983
1984 void dump_data(int level, const char *buf1,int len)
1985 {
1986         const unsigned char *buf = (const unsigned char *)buf1;
1987         int i=0;
1988         if (len<=0) return;
1989
1990         if (!DEBUGLVL(level)) return;
1991         
1992         DEBUGADD(level,("[%03X] ",i));
1993         for (i=0;i<len;) {
1994                 DEBUGADD(level,("%02X ",(int)buf[i]));
1995                 i++;
1996                 if (i%8 == 0) DEBUGADD(level,(" "));
1997                 if (i%16 == 0) {      
1998                         print_asc(level,&buf[i-16],8); DEBUGADD(level,(" "));
1999                         print_asc(level,&buf[i-8],8); DEBUGADD(level,("\n"));
2000                         if (i<len) DEBUGADD(level,("[%03X] ",i));
2001                 }
2002         }
2003         if (i%16) {
2004                 int n;
2005                 n = 16 - (i%16);
2006                 DEBUGADD(level,(" "));
2007                 if (n>8) DEBUGADD(level,(" "));
2008                 while (n--) DEBUGADD(level,("   "));
2009                 n = MIN(8,i%16);
2010                 print_asc(level,&buf[i-(i%16)],n); DEBUGADD(level,( " " ));
2011                 n = (i%16) - n;
2012                 if (n>0) print_asc(level,&buf[i-n],n); 
2013                 DEBUGADD(level,("\n"));    
2014         }       
2015 }
2016
2017 void dump_data_pw(const char *msg, const uchar * data, size_t len)
2018 {
2019 #ifdef DEBUG_PASSWORD
2020         DEBUG(11, ("%s", msg));
2021         if (data != NULL && len > 0)
2022         {
2023                 dump_data(11, data, len);
2024         }
2025 #endif
2026 }
2027
2028 char *tab_depth(int depth)
2029 {
2030         static pstring spaces;
2031         memset(spaces, ' ', depth * 4);
2032         spaces[depth * 4] = 0;
2033         return spaces;
2034 }
2035
2036 /*****************************************************************************
2037  Provide a checksum on a string
2038
2039  Input:  s - the null-terminated character string for which the checksum
2040              will be calculated.
2041
2042   Output: The checksum value calculated for s.
2043 *****************************************************************************/
2044
2045 int str_checksum(const char *s)
2046 {
2047         int res = 0;
2048         int c;
2049         int i=0;
2050         
2051         while(*s) {
2052                 c = *s;
2053                 res ^= (c << (i % 15)) ^ (c >> (15-(i%15)));
2054                 s++;
2055                 i++;
2056         }
2057         return(res);
2058 }
2059
2060 /*****************************************************************
2061  Zero a memory area then free it. Used to catch bugs faster.
2062 *****************************************************************/  
2063
2064 void zero_free(void *p, size_t size)
2065 {
2066         memset(p, 0, size);
2067         SAFE_FREE(p);
2068 }
2069
2070 /*****************************************************************
2071  Set our open file limit to a requested max and return the limit.
2072 *****************************************************************/  
2073
2074 int set_maxfiles(int requested_max)
2075 {
2076 #if (defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE))
2077         struct rlimit rlp;
2078         int saved_current_limit;
2079
2080         if(getrlimit(RLIMIT_NOFILE, &rlp)) {
2081                 DEBUG(0,("set_maxfiles: getrlimit (1) for RLIMIT_NOFILE failed with error %s\n",
2082                         strerror(errno) ));
2083                 /* just guess... */
2084                 return requested_max;
2085         }
2086
2087         /* 
2088          * Set the fd limit to be real_max_open_files + MAX_OPEN_FUDGEFACTOR to
2089          * account for the extra fd we need 
2090          * as well as the log files and standard
2091          * handles etc. Save the limit we want to set in case
2092          * we are running on an OS that doesn't support this limit (AIX)
2093          * which always returns RLIM_INFINITY for rlp.rlim_max.
2094          */
2095
2096         /* Try raising the hard (max) limit to the requested amount. */
2097
2098 #if defined(RLIM_INFINITY)
2099         if (rlp.rlim_max != RLIM_INFINITY) {
2100                 int orig_max = rlp.rlim_max;
2101
2102                 if ( rlp.rlim_max < requested_max )
2103                         rlp.rlim_max = requested_max;
2104
2105                 /* This failing is not an error - many systems (Linux) don't
2106                         support our default request of 10,000 open files. JRA. */
2107
2108                 if(setrlimit(RLIMIT_NOFILE, &rlp)) {
2109                         DEBUG(3,("set_maxfiles: setrlimit for RLIMIT_NOFILE for %d max files failed with error %s\n", 
2110                                 (int)rlp.rlim_max, strerror(errno) ));
2111
2112                         /* Set failed - restore original value from get. */
2113                         rlp.rlim_max = orig_max;
2114                 }
2115         }
2116 #endif
2117
2118         /* Now try setting the soft (current) limit. */
2119
2120         saved_current_limit = rlp.rlim_cur = MIN(requested_max,rlp.rlim_max);
2121
2122         if(setrlimit(RLIMIT_NOFILE, &rlp)) {
2123                 DEBUG(0,("set_maxfiles: setrlimit for RLIMIT_NOFILE for %d files failed with error %s\n", 
2124                         (int)rlp.rlim_cur, strerror(errno) ));
2125                 /* just guess... */
2126                 return saved_current_limit;
2127         }
2128
2129         if(getrlimit(RLIMIT_NOFILE, &rlp)) {
2130                 DEBUG(0,("set_maxfiles: getrlimit (2) for RLIMIT_NOFILE failed with error %s\n",
2131                         strerror(errno) ));
2132                 /* just guess... */
2133                 return saved_current_limit;
2134     }
2135
2136 #if defined(RLIM_INFINITY)
2137         if(rlp.rlim_cur == RLIM_INFINITY)
2138                 return saved_current_limit;
2139 #endif
2140
2141         if((int)rlp.rlim_cur > saved_current_limit)
2142                 return saved_current_limit;
2143
2144         return rlp.rlim_cur;
2145 #else /* !defined(HAVE_GETRLIMIT) || !defined(RLIMIT_NOFILE) */
2146         /*
2147          * No way to know - just guess...
2148          */
2149         return requested_max;
2150 #endif
2151 }
2152
2153 /*****************************************************************
2154  Splits out the start of the key (HKLM or HKU) and the rest of the key.
2155 *****************************************************************/  
2156
2157 BOOL reg_split_key(const char *full_keyname, uint32 *reg_type, char *key_name)
2158 {
2159         pstring tmp;
2160
2161         if (!next_token(&full_keyname, tmp, "\\", sizeof(tmp)))
2162                 return False;
2163
2164         (*reg_type) = 0;
2165
2166         DEBUG(10, ("reg_split_key: hive %s\n", tmp));
2167
2168         if (strequal(tmp, "HKLM") || strequal(tmp, "HKEY_LOCAL_MACHINE"))
2169                 (*reg_type) = HKEY_LOCAL_MACHINE;
2170         else if (strequal(tmp, "HKU") || strequal(tmp, "HKEY_USERS"))
2171                 (*reg_type) = HKEY_USERS;
2172         else {
2173                 DEBUG(10,("reg_split_key: unrecognised hive key %s\n", tmp));
2174                 return False;
2175         }
2176         
2177         if (next_token(&full_keyname, tmp, "\n\r", sizeof(tmp)))
2178                 fstrcpy(key_name, tmp);
2179         else
2180                 key_name[0] = 0;
2181
2182         DEBUG(10, ("reg_split_key: name %s\n", key_name));
2183
2184         return True;
2185 }
2186
2187 /*****************************************************************
2188  Possibly replace mkstemp if it is broken.
2189 *****************************************************************/  
2190
2191 int smb_mkstemp(char *template)
2192 {
2193 #if HAVE_SECURE_MKSTEMP
2194         return mkstemp(template);
2195 #else
2196         /* have a reasonable go at emulating it. Hope that
2197            the system mktemp() isn't completly hopeless */
2198         char *p = mktemp(template);
2199         if (!p)
2200                 return -1;
2201         return open(p, O_CREAT|O_EXCL|O_RDWR, 0600);
2202 #endif
2203 }
2204
2205 /*****************************************************************
2206  malloc that aborts with smb_panic on fail or zero size.
2207  *****************************************************************/  
2208
2209 void *smb_xmalloc_array(size_t size, unsigned int count)
2210 {
2211         void *p;
2212         if (size == 0)
2213                 smb_panic("smb_xmalloc_array: called with zero size.\n");
2214         if (count >= MAX_ALLOC_SIZE/size) {
2215                 smb_panic("smb_xmalloc: alloc size too large.\n");
2216         }
2217         if ((p = SMB_MALLOC(size*count)) == NULL) {
2218                 DEBUG(0, ("smb_xmalloc_array failed to allocate %lu * %lu bytes\n",
2219                         (unsigned long)size, (unsigned long)count));
2220                 smb_panic("smb_xmalloc_array: malloc fail.\n");
2221         }
2222         return p;
2223 }
2224
2225 /**
2226  Memdup with smb_panic on fail.
2227 **/
2228
2229 void *smb_xmemdup(const void *p, size_t size)
2230 {
2231         void *p2;
2232         p2 = SMB_XMALLOC_ARRAY(unsigned char,size);
2233         memcpy(p2, p, size);
2234         return p2;
2235 }
2236
2237 /**
2238  strdup that aborts on malloc fail.
2239 **/
2240
2241 char *smb_xstrdup(const char *s)
2242 {
2243 #if defined(PARANOID_MALLOC_CHECKER)
2244 #ifdef strdup
2245 #undef strdup
2246 #endif
2247 #endif
2248         char *s1 = strdup(s);
2249 #if defined(PARANOID_MALLOC_CHECKER)
2250 #define strdup(s) __ERROR_DONT_USE_STRDUP_DIRECTLY
2251 #endif
2252         if (!s1)
2253                 smb_panic("smb_xstrdup: malloc fail\n");
2254         return s1;
2255
2256 }
2257
2258 /**
2259  strndup that aborts on malloc fail.
2260 **/
2261
2262 char *smb_xstrndup(const char *s, size_t n)
2263 {
2264 #if defined(PARANOID_MALLOC_CHECKER)
2265 #ifdef strndup
2266 #undef strndup
2267 #endif
2268 #endif
2269         char *s1 = strndup(s, n);
2270 #if defined(PARANOID_MALLOC_CHECKER)
2271 #define strndup(s,n) __ERROR_DONT_USE_STRNDUP_DIRECTLY
2272 #endif
2273         if (!s1)
2274                 smb_panic("smb_xstrndup: malloc fail\n");
2275         return s1;
2276 }
2277
2278 /*
2279   vasprintf that aborts on malloc fail
2280 */
2281
2282  int smb_xvasprintf(char **ptr, const char *format, va_list ap)
2283 {
2284         int n;
2285         va_list ap2;
2286
2287         VA_COPY(ap2, ap);
2288
2289         n = vasprintf(ptr, format, ap2);
2290         if (n == -1 || ! *ptr)
2291                 smb_panic("smb_xvasprintf: out of memory");
2292         return n;
2293 }
2294
2295 /*****************************************************************
2296  Like strdup but for memory.
2297 *****************************************************************/  
2298
2299 void *memdup(const void *p, size_t size)
2300 {
2301         void *p2;
2302         if (size == 0)
2303                 return NULL;
2304         p2 = SMB_MALLOC(size);
2305         if (!p2)
2306                 return NULL;
2307         memcpy(p2, p, size);
2308         return p2;
2309 }
2310
2311 /*****************************************************************
2312  Get local hostname and cache result.
2313 *****************************************************************/  
2314
2315 char *myhostname(void)
2316 {
2317         static pstring ret;
2318         if (ret[0] == 0)
2319                 get_myname(ret);
2320         return ret;
2321 }
2322
2323 /*****************************************************************
2324  A useful function for returning a path in the Samba lock directory.
2325 *****************************************************************/  
2326
2327 char *lock_path(const char *name)
2328 {
2329         static pstring fname;
2330
2331         pstrcpy(fname,lp_lockdir());
2332         trim_char(fname,'\0','/');
2333         
2334         if (!directory_exist(fname,NULL))
2335                 mkdir(fname,0755);
2336         
2337         pstrcat(fname,"/");
2338         pstrcat(fname,name);
2339
2340         return fname;
2341 }
2342
2343 /*****************************************************************
2344  A useful function for returning a path in the Samba pid directory.
2345 *****************************************************************/
2346
2347 char *pid_path(const char *name)
2348 {
2349         static pstring fname;
2350
2351         pstrcpy(fname,lp_piddir());
2352         trim_char(fname,'\0','/');
2353
2354         if (!directory_exist(fname,NULL))
2355                 mkdir(fname,0755);
2356
2357         pstrcat(fname,"/");
2358         pstrcat(fname,name);
2359
2360         return fname;
2361 }
2362
2363 /**
2364  * @brief Returns an absolute path to a file in the Samba lib directory.
2365  *
2366  * @param name File to find, relative to LIBDIR.
2367  *
2368  * @retval Pointer to a static #pstring containing the full path.
2369  **/
2370
2371 char *lib_path(const char *name)
2372 {
2373         static pstring fname;
2374         fstr_sprintf(fname, "%s/%s", dyn_LIBDIR, name);
2375         return fname;
2376 }
2377
2378 /**
2379  * @brief Returns the platform specific shared library extension.
2380  *
2381  * @retval Pointer to a static #fstring containing the extension.
2382  **/
2383
2384 const char *shlib_ext(void)
2385 {
2386   return dyn_SHLIBEXT;
2387 }
2388
2389 /*******************************************************************
2390  Given a filename - get its directory name
2391  NB: Returned in static storage.  Caveats:
2392  o  Not safe in thread environment.
2393  o  Caller must not free.
2394  o  If caller wishes to preserve, they should copy.
2395 ********************************************************************/
2396
2397 char *parent_dirname(const char *path)
2398 {
2399         static pstring dirpath;
2400         char *p;
2401
2402         if (!path)
2403                 return(NULL);
2404
2405         pstrcpy(dirpath, path);
2406         p = strrchr_m(dirpath, '/');  /* Find final '/', if any */
2407         if (!p) {
2408                 pstrcpy(dirpath, ".");    /* No final "/", so dir is "." */
2409         } else {
2410                 if (p == dirpath)
2411                         ++p;    /* For root "/", leave "/" in place */
2412                 *p = '\0';
2413         }
2414         return dirpath;
2415 }
2416
2417
2418 /*******************************************************************
2419  Determine if a pattern contains any Microsoft wildcard characters.
2420 *******************************************************************/
2421
2422 BOOL ms_has_wild(const char *s)
2423 {
2424         char c;
2425         while ((c = *s++)) {
2426                 switch (c) {
2427                 case '*':
2428                 case '?':
2429                 case '<':
2430                 case '>':
2431                 case '"':
2432                         return True;
2433                 }
2434         }
2435         return False;
2436 }
2437
2438 BOOL ms_has_wild_w(const smb_ucs2_t *s)
2439 {
2440         smb_ucs2_t c;
2441         if (!s) return False;
2442         while ((c = *s++)) {
2443                 switch (c) {
2444                 case UCS2_CHAR('*'):
2445                 case UCS2_CHAR('?'):
2446                 case UCS2_CHAR('<'):
2447                 case UCS2_CHAR('>'):
2448                 case UCS2_CHAR('"'):
2449                         return True;
2450                 }
2451         }
2452         return False;
2453 }
2454
2455 /*******************************************************************
2456  A wrapper that handles case sensitivity and the special handling
2457  of the ".." name.
2458 *******************************************************************/
2459
2460 BOOL mask_match(const char *string, char *pattern, BOOL is_case_sensitive)
2461 {
2462         if (strcmp(string,"..") == 0)
2463                 string = ".";
2464         if (strcmp(pattern,".") == 0)
2465                 return False;
2466         
2467         return ms_fnmatch(pattern, string, Protocol, is_case_sensitive) == 0;
2468 }
2469
2470 /*******************************************************************
2471  A wrapper that handles a list of patters and calls mask_match()
2472  on each.  Returns True if any of the patterns match.
2473 *******************************************************************/
2474
2475 BOOL mask_match_list(const char *string, char **list, int listLen, BOOL is_case_sensitive)
2476 {
2477        while (listLen-- > 0) {
2478                if (mask_match(string, *list++, is_case_sensitive))
2479                        return True;
2480        }
2481        return False;
2482 }
2483
2484 /*********************************************************
2485  Recursive routine that is called by unix_wild_match.
2486 *********************************************************/
2487
2488 static BOOL unix_do_match(const char *regexp, const char *str)
2489 {
2490         const char *p;
2491
2492         for( p = regexp; *p && *str; ) {
2493
2494                 switch(*p) {
2495                         case '?':
2496                                 str++;
2497                                 p++;
2498                                 break;
2499
2500                         case '*':
2501
2502                                 /*
2503                                  * Look for a character matching 
2504                                  * the one after the '*'.
2505                                  */
2506                                 p++;
2507                                 if(!*p)
2508                                         return True; /* Automatic match */
2509                                 while(*str) {
2510
2511                                         while(*str && (*p != *str))
2512                                                 str++;
2513
2514                                         /*
2515                                          * Patch from weidel@multichart.de. In the case of the regexp
2516                                          * '*XX*' we want to ensure there are at least 2 'X' characters
2517                                          * in the string after the '*' for a match to be made.
2518                                          */
2519
2520                                         {
2521                                                 int matchcount=0;
2522
2523                                                 /*
2524                                                  * Eat all the characters that match, but count how many there were.
2525                                                  */
2526
2527                                                 while(*str && (*p == *str)) {
2528                                                         str++;
2529                                                         matchcount++;
2530                                                 }
2531
2532                                                 /*
2533                                                  * Now check that if the regexp had n identical characters that
2534                                                  * matchcount had at least that many matches.
2535                                                  */
2536
2537                                                 while ( *(p+1) && (*(p+1) == *p)) {
2538                                                         p++;
2539                                                         matchcount--;
2540                                                 }
2541
2542                                                 if ( matchcount <= 0 )
2543                                                         return False;
2544                                         }
2545
2546                                         str--; /* We've eaten the match char after the '*' */
2547
2548                                         if(unix_do_match(p, str))
2549                                                 return True;
2550
2551                                         if(!*str)
2552                                                 return False;
2553                                         else
2554                                                 str++;
2555                                 }
2556                                 return False;
2557
2558                         default:
2559                                 if(*str != *p)
2560                                         return False;
2561                                 str++;
2562                                 p++;
2563                                 break;
2564                 }
2565         }
2566
2567         if(!*p && !*str)
2568                 return True;
2569
2570         if (!*p && str[0] == '.' && str[1] == 0)
2571                 return(True);
2572   
2573         if (!*str && *p == '?') {
2574                 while (*p == '?')
2575                         p++;
2576                 return(!*p);
2577         }
2578
2579         if(!*str && (*p == '*' && p[1] == '\0'))
2580                 return True;
2581
2582         return False;
2583 }
2584
2585 /*******************************************************************
2586  Simple case insensitive interface to a UNIX wildcard matcher.
2587 *******************************************************************/
2588
2589 BOOL unix_wild_match(const char *pattern, const char *string)
2590 {
2591         pstring p2, s2;
2592         char *p;
2593
2594         pstrcpy(p2, pattern);
2595         pstrcpy(s2, string);
2596         strlower_m(p2);
2597         strlower_m(s2);
2598
2599         /* Remove any *? and ** from the pattern as they are meaningless */
2600         for(p = p2; *p; p++)
2601                 while( *p == '*' && (p[1] == '?' ||p[1] == '*'))
2602                         pstrcpy( &p[1], &p[2]);
2603  
2604         if (strequal(p2,"*"))
2605                 return True;
2606
2607         return unix_do_match(p2, s2) == 0;      
2608 }
2609
2610 /**********************************************************************
2611  Converts a name to a fully qalified domain name.
2612 ***********************************************************************/
2613                                                                                                                                                    
2614 void name_to_fqdn(fstring fqdn, const char *name)
2615 {
2616         struct hostent *hp = sys_gethostbyname(name);
2617         if ( hp && hp->h_name && *hp->h_name ) {
2618                 DEBUG(10,("name_to_fqdn: lookup for %s -> %s.\n", name, hp->h_name));
2619                 fstrcpy(fqdn,hp->h_name);
2620         } else {
2621                 DEBUG(10,("name_to_fqdn: lookup for %s failed.\n", name));
2622                 fstrcpy(fqdn, name);
2623         }
2624 }
2625
2626 #ifdef __INSURE__
2627
2628 /*******************************************************************
2629 This routine is a trick to immediately catch errors when debugging
2630 with insure. A xterm with a gdb is popped up when insure catches
2631 a error. It is Linux specific.
2632 ********************************************************************/
2633
2634 int _Insure_trap_error(int a1, int a2, int a3, int a4, int a5, int a6)
2635 {
2636         static int (*fn)();
2637         int ret;
2638         char pidstr[10];
2639         /* you can get /usr/bin/backtrace from 
2640            http://samba.org/ftp/unpacked/junkcode/backtrace */
2641         pstring cmd = "/usr/bin/backtrace %d";
2642
2643         slprintf(pidstr, sizeof(pidstr)-1, "%d", sys_getpid());
2644         pstring_sub(cmd, "%d", pidstr);
2645
2646         if (!fn) {
2647                 static void *h;
2648                 h = dlopen("/usr/local/parasoft/insure++lite/lib.linux2/libinsure.so", RTLD_LAZY);
2649                 fn = dlsym(h, "_Insure_trap_error");
2650
2651                 if (!h || h == _Insure_trap_error) {
2652                         h = dlopen("/usr/local/parasoft/lib.linux2/libinsure.so", RTLD_LAZY);
2653                         fn = dlsym(h, "_Insure_trap_error");
2654                 }               
2655         }
2656
2657         ret = fn(a1, a2, a3, a4, a5, a6);
2658
2659         system(cmd);
2660
2661         return ret;
2662 }
2663 #endif