LIBDIR and LOCKDIR are dynamically configured too.
[tprouty/samba.git] / source / lib / util.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    Samba utility functions
5    Copyright (C) Andrew Tridgell 1992-1998
6    Copyright (C) Jeremy Allison 2001
7    Copyright (C) Simo Sorce 2001
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 #if (defined(HAVE_NETGROUP) && defined (WITH_AUTOMOUNT))
27 #ifdef WITH_NISPLUS_HOME
28 #ifdef BROKEN_NISPLUS_INCLUDE_FILES
29 /*
30  * The following lines are needed due to buggy include files
31  * in Solaris 2.6 which define GROUP in both /usr/include/sys/acl.h and
32  * also in /usr/include/rpcsvc/nis.h. The definitions conflict. JRA.
33  * Also GROUP_OBJ is defined as 0x4 in /usr/include/sys/acl.h and as
34  * an enum in /usr/include/rpcsvc/nis.h.
35  */
36
37 #if defined(GROUP)
38 #undef GROUP
39 #endif
40
41 #if defined(GROUP_OBJ)
42 #undef GROUP_OBJ
43 #endif
44
45 #endif /* BROKEN_NISPLUS_INCLUDE_FILES */
46
47 #include <rpcsvc/nis.h>
48
49 #else /* !WITH_NISPLUS_HOME */
50
51 #include "rpcsvc/ypclnt.h"
52
53 #endif /* WITH_NISPLUS_HOME */
54 #endif /* HAVE_NETGROUP && WITH_AUTOMOUNT */
55
56 #ifdef WITH_SSL
57 #include <openssl/ssl.h>
58 #undef Realloc  /* SSLeay defines this and samba has a function of this name */
59 extern SSL  *ssl;
60 extern int  sslFd;
61 #endif  /* WITH_SSL */
62
63 int Protocol = PROTOCOL_COREPLUS;
64
65 /* a default finfo structure to ensure all fields are sensible */
66 file_info def_finfo = {-1,0,0,0,0,0,0,"",""};
67
68 /* this is used by the chaining code */
69 int chain_size = 0;
70
71 int trans_num = 0;
72
73 /*
74    case handling on filenames 
75 */
76 int case_default = CASE_LOWER;
77
78 /* the following control case operations - they are put here so the
79    client can link easily */
80 BOOL case_sensitive;
81 BOOL case_preserve;
82 BOOL use_mangled_map = False;
83 BOOL short_case_preserve;
84 BOOL case_mangle;
85
86 static enum remote_arch_types ra_type = RA_UNKNOWN;
87 pstring user_socket_options=DEFAULT_SOCKET_OPTIONS;   
88
89 pstring global_myname = "";
90 fstring global_myworkgroup = "";
91 char **my_netbios_names;
92
93
94 /****************************************************************************
95   find a suitable temporary directory. The result should be copied immediately
96  as it may be overwritten by a subsequent call.
97   ****************************************************************************/
98 char *tmpdir(void)
99 {
100   char *p;
101         if ((p = getenv("TMPDIR")))
102     return p;
103   return "/tmp";
104 }
105
106 /****************************************************************************
107  Determine whether we are in the specified group.
108 ****************************************************************************/
109
110 BOOL in_group(gid_t group, gid_t current_gid, int ngroups, gid_t *groups)
111 {
112         int i;
113
114         if (group == current_gid)
115                 return(True);
116
117         for (i=0;i<ngroups;i++)
118                 if (group == groups[i])
119                         return(True);
120
121         return(False);
122 }
123
124 /****************************************************************************
125  Like atoi but gets the value up to the separater character.
126 ****************************************************************************/
127
128 char *Atoic(char *p, int *n, char *c)
129 {
130         if (!isdigit((int)*p)) {
131                 DEBUG(5, ("Atoic: malformed number\n"));
132                 return NULL;
133         }
134
135         (*n) = atoi(p);
136
137         while ((*p) && isdigit((int)*p))
138                 p++;
139
140         if (strchr_m(c, *p) == NULL)
141         {
142                 DEBUG(5, ("Atoic: no separator characters (%s) not found\n", c));
143                 return NULL;
144         }
145
146         return p;
147 }
148
149 /*************************************************************************
150  Reads a list of numbers.
151  *************************************************************************/
152
153 char *get_numlist(char *p, uint32 **num, int *count)
154 {
155         int val;
156
157         if (num == NULL || count == NULL)
158                 return NULL;
159
160         (*count) = 0;
161         (*num  ) = NULL;
162
163         while ((p = Atoic(p, &val, ":,")) != NULL && (*p) != ':') {
164                 uint32 *tn;
165                 
166                 tn = Realloc((*num), ((*count)+1) * sizeof(uint32));
167                 if (tn == NULL)
168                 {
169                         SAFE_FREE(*num);
170                         return NULL;
171                 } else
172                         (*num) = tn;
173                 (*num)[(*count)] = val;
174                 (*count)++;
175                 p++;
176         }
177
178         return p;
179 }
180
181 /*******************************************************************
182  Check if a file exists - call vfs_file_exist for samba files.
183 ********************************************************************/
184
185 BOOL file_exist(char *fname,SMB_STRUCT_STAT *sbuf)
186 {
187   SMB_STRUCT_STAT st;
188         if (!sbuf)
189                 sbuf = &st;
190   
191   if (sys_stat(fname,sbuf) != 0) 
192     return(False);
193
194   return(S_ISREG(sbuf->st_mode));
195 }
196
197 /*******************************************************************
198  Check a files mod time.
199 ********************************************************************/
200
201 time_t file_modtime(char *fname)
202 {
203   SMB_STRUCT_STAT st;
204   
205   if (sys_stat(fname,&st) != 0) 
206     return(0);
207
208   return(st.st_mtime);
209 }
210
211 /*******************************************************************
212  Check if a directory exists.
213 ********************************************************************/
214
215 BOOL directory_exist(char *dname,SMB_STRUCT_STAT *st)
216 {
217   SMB_STRUCT_STAT st2;
218   BOOL ret;
219
220   if (!st) st = &st2;
221
222   if (sys_stat(dname,st) != 0) 
223     return(False);
224
225   ret = S_ISDIR(st->st_mode);
226   if(!ret)
227     errno = ENOTDIR;
228   return ret;
229 }
230
231 /*******************************************************************
232 returns the size in bytes of the named file
233 ********************************************************************/
234 SMB_OFF_T get_file_size(char *file_name)
235 {
236   SMB_STRUCT_STAT buf;
237   buf.st_size = 0;
238   if(sys_stat(file_name,&buf) != 0)
239     return (SMB_OFF_T)-1;
240   return(buf.st_size);
241 }
242
243 /*******************************************************************
244 return a string representing an attribute for a file
245 ********************************************************************/
246 char *attrib_string(uint16 mode)
247 {
248   static fstring attrstr;
249
250   attrstr[0] = 0;
251
252   if (mode & aVOLID) fstrcat(attrstr,"V");
253   if (mode & aDIR) fstrcat(attrstr,"D");
254   if (mode & aARCH) fstrcat(attrstr,"A");
255   if (mode & aHIDDEN) fstrcat(attrstr,"H");
256   if (mode & aSYSTEM) fstrcat(attrstr,"S");
257   if (mode & aRONLY) fstrcat(attrstr,"R");        
258
259   return(attrstr);
260 }
261
262 /*******************************************************************
263   show a smb message structure
264 ********************************************************************/
265 void show_msg(char *buf)
266 {
267         int i;
268         int bcc=0;
269
270         if (DEBUGLEVEL < 5) return;
271
272         DEBUG(5,("size=%d\nsmb_com=0x%x\nsmb_rcls=%d\nsmb_reh=%d\nsmb_err=%d\nsmb_flg=%d\nsmb_flg2=%d\n",
273                         smb_len(buf),
274                         (int)CVAL(buf,smb_com),
275                         (int)CVAL(buf,smb_rcls),
276                         (int)CVAL(buf,smb_reh),
277                         (int)SVAL(buf,smb_err),
278                         (int)CVAL(buf,smb_flg),
279                         (int)SVAL(buf,smb_flg2)));
280         DEBUG(5,("smb_tid=%d\nsmb_pid=%d\nsmb_uid=%d\nsmb_mid=%d\nsmt_wct=%d\n",
281                         (int)SVAL(buf,smb_tid),
282                         (int)SVAL(buf,smb_pid),
283                         (int)SVAL(buf,smb_uid),
284                         (int)SVAL(buf,smb_mid),
285                         (int)CVAL(buf,smb_wct)));
286
287         for (i=0;i<(int)CVAL(buf,smb_wct);i++)
288         {
289                 DEBUG(5,("smb_vwv[%d]=%d (0x%X)\n",i,
290                         SVAL(buf,smb_vwv+2*i),SVAL(buf,smb_vwv+2*i)));
291         }
292
293         bcc = (int)SVAL(buf,smb_vwv+2*(CVAL(buf,smb_wct)));
294
295         DEBUG(5,("smb_bcc=%d\n",bcc));
296
297         if (DEBUGLEVEL < 10) return;
298
299         if (DEBUGLEVEL < 50)
300         {
301                 bcc = MIN(bcc, 512);
302         }
303
304         dump_data(10, smb_buf(buf), bcc);
305 }
306
307 /*******************************************************************
308   set the length and marker of an smb packet
309 ********************************************************************/
310 void smb_setlen(char *buf,int len)
311 {
312   _smb_setlen(buf,len);
313
314   CVAL(buf,4) = 0xFF;
315   CVAL(buf,5) = 'S';
316   CVAL(buf,6) = 'M';
317   CVAL(buf,7) = 'B';
318 }
319
320 /*******************************************************************
321   setup the word count and byte count for a smb message
322 ********************************************************************/
323 int set_message(char *buf,int num_words,int num_bytes,BOOL zero)
324 {
325         if (zero)
326                 memset(buf + smb_size,'\0',num_words*2 + num_bytes);
327         CVAL(buf,smb_wct) = num_words;
328         SSVAL(buf,smb_vwv + num_words*SIZEOFWORD,num_bytes);  
329         smb_setlen(buf,smb_size + num_words*2 + num_bytes - 4);
330         return (smb_size + num_words*2 + num_bytes);
331 }
332
333 /*******************************************************************
334   setup only the byte count for a smb message
335 ********************************************************************/
336 int set_message_bcc(char *buf,int num_bytes)
337 {
338         int num_words = CVAL(buf,smb_wct);
339         SSVAL(buf,smb_vwv + num_words*SIZEOFWORD,num_bytes);  
340         smb_setlen(buf,smb_size + num_words*2 + num_bytes - 4);
341         return (smb_size + num_words*2 + num_bytes);
342 }
343
344 /*******************************************************************
345   setup only the byte count for a smb message, using the end of the
346   message as a marker
347 ********************************************************************/
348 int set_message_end(void *outbuf,void *end_ptr)
349 {
350         return set_message_bcc((char *)outbuf,PTR_DIFF(end_ptr,smb_buf((char *)outbuf)));
351 }
352
353 /*******************************************************************
354 reduce a file name, removing .. elements.
355 ********************************************************************/
356 void dos_clean_name(char *s)
357 {
358   char *p=NULL;
359
360   DEBUG(3,("dos_clean_name [%s]\n",s));
361
362   /* remove any double slashes */
363   all_string_sub(s, "\\\\", "\\", 0);
364
365   while ((p = strstr(s,"\\..\\")) != NULL)
366     {
367       pstring s1;
368
369       *p = 0;
370       pstrcpy(s1,p+3);
371
372       if ((p=strrchr_m(s,'\\')) != NULL)
373         *p = 0;
374       else
375         *s = 0;
376       pstrcat(s,s1);
377     }  
378
379   trim_string(s,NULL,"\\..");
380
381   all_string_sub(s, "\\.\\", "\\", 0);
382 }
383
384 /*******************************************************************
385 reduce a file name, removing .. elements. 
386 ********************************************************************/
387 void unix_clean_name(char *s)
388 {
389   char *p=NULL;
390
391   DEBUG(3,("unix_clean_name [%s]\n",s));
392
393   /* remove any double slashes */
394   all_string_sub(s, "//","/", 0);
395
396   /* Remove leading ./ characters */
397   if(strncmp(s, "./", 2) == 0) {
398     trim_string(s, "./", NULL);
399     if(*s == 0)
400       pstrcpy(s,"./");
401   }
402
403   while ((p = strstr(s,"/../")) != NULL)
404     {
405       pstring s1;
406
407       *p = 0;
408       pstrcpy(s1,p+3);
409
410       if ((p=strrchr_m(s,'/')) != NULL)
411         *p = 0;
412       else
413         *s = 0;
414       pstrcat(s,s1);
415     }  
416
417   trim_string(s,NULL,"/..");
418 }
419
420 /*******************************************************************
421 convert '\' to '/'
422 reduce a file name, removing or reducing /../ , /./ , // elements.
423 remove also any trailing . and /
424 return a new allocated string.
425 ********************************************************************/
426 smb_ucs2_t *unix_clean_path(const smb_ucs2_t *s)
427 {
428         smb_ucs2_t *ns;
429         smb_ucs2_t *p, *r, *t;
430
431         DEBUG(3, ("unix_clean_path\n")); /*  [%unicode]\n")); */
432
433         /* convert '\' to '/' */
434         ns = strdup_w(s);
435         if (!ns) return NULL;
436         unix_format_w(ns);
437
438         /* remove all double slashes */
439         p = ns;
440         ns = all_string_sub_wa(p, "//", "/");
441         SAFE_FREE(p);
442         if (!ns) return NULL;
443
444         /* remove any /./ */
445         p = ns;
446         ns = all_string_sub_wa(p, "/./", "/");
447         SAFE_FREE(p);
448         if (!ns) return NULL;
449
450         /* reduce any /../ */
451         t = ns;
452         while ((r = strstr_wa(t, "/.."))) {
453                 t = &(r[3]);
454                 if (*t == UCS2_CHAR('/') || *t == 0) {
455                         *r = 0;
456                         p = strrchr_w(ns, UCS2_CHAR('/'));
457                         if (!p) p = ns;
458                         memmove(p, t, (strlen_w(t) + 1) * sizeof(smb_ucs2_t));
459                         t = p;
460                 }
461         }
462
463         /* remove any trailing /. */
464         trim_string_wa(ns, NULL, "/.");
465
466         /* remove any leading and trailing / */
467         trim_string_wa(ns, "/", "/");
468
469         return ns;
470 }
471
472 /****************************************************************************
473   make a dir struct
474 ****************************************************************************/
475 void make_dir_struct(char *buf,char *mask,char *fname,SMB_OFF_T size,int mode,time_t date)
476 {  
477   char *p;
478   pstring mask2;
479
480   pstrcpy(mask2,mask);
481
482   if ((mode & aDIR) != 0)
483     size = 0;
484
485   memset(buf+1,' ',11);
486   if ((p = strchr_m(mask2,'.')) != NULL)
487     {
488       *p = 0;
489       push_ascii(buf+1,mask2,8, 0);
490       push_ascii(buf+9,p+1,3, 0);
491       *p = '.';
492     }
493   else
494       push_ascii(buf+1,mask2,11, 0);
495
496   memset(buf+21,'\0',DIR_STRUCT_SIZE-21);
497   CVAL(buf,21) = mode;
498   put_dos_date(buf,22,date);
499   SSVAL(buf,26,size & 0xFFFF);
500   SSVAL(buf,28,(size >> 16)&0xFFFF);
501   push_ascii(buf+30,fname,12, 0);
502   if (!case_sensitive)
503     strupper(buf+30);
504   DEBUG(8,("put name [%s] from [%s] into dir struct\n",buf+30, fname));
505 }
506
507
508 /*******************************************************************
509 close the low 3 fd's and open dev/null in their place
510 ********************************************************************/
511 void close_low_fds(void)
512 {
513   int fd;
514   int i;
515   close(0); close(1); 
516 #ifndef __INSURE__
517   close(2);
518 #endif
519   /* try and use up these file descriptors, so silly
520      library routines writing to stdout etc won't cause havoc */
521   for (i=0;i<3;i++) {
522     fd = sys_open("/dev/null",O_RDWR,0);
523     if (fd < 0) fd = sys_open("/dev/null",O_WRONLY,0);
524     if (fd < 0) {
525       DEBUG(0,("Can't open /dev/null\n"));
526       return;
527     }
528     if (fd != i) {
529       DEBUG(0,("Didn't get file descriptor %d\n",i));
530       return;
531     }
532   }
533 }
534
535 /****************************************************************************
536 Set a fd into blocking/nonblocking mode. Uses POSIX O_NONBLOCK if available,
537 else
538 if SYSV use O_NDELAY
539 if BSD use FNDELAY
540 ****************************************************************************/
541 int set_blocking(int fd, BOOL set)
542 {
543   int val;
544 #ifdef O_NONBLOCK
545 #define FLAG_TO_SET O_NONBLOCK
546 #else
547 #ifdef SYSV
548 #define FLAG_TO_SET O_NDELAY
549 #else /* BSD */
550 #define FLAG_TO_SET FNDELAY
551 #endif
552 #endif
553
554   if((val = fcntl(fd, F_GETFL, 0)) == -1)
555         return -1;
556   if(set) /* Turn blocking on - ie. clear nonblock flag */
557         val &= ~FLAG_TO_SET;
558   else
559     val |= FLAG_TO_SET;
560   return fcntl( fd, F_SETFL, val);
561 #undef FLAG_TO_SET
562 }
563
564 /****************************************************************************
565  Transfer some data between two fd's.
566 ****************************************************************************/
567
568 ssize_t transfer_file_internal(int infd, int outfd, size_t n, ssize_t (*read_fn)(int, void *, size_t),
569                                                 ssize_t (*write_fn)(int, const void *, size_t))
570 {
571         static char buf[16384];
572         size_t total = 0;
573         ssize_t read_ret;
574         size_t write_total = 0;
575     ssize_t write_ret;
576
577         while (total < n) {
578                 size_t num_to_read_thistime = MIN((n - total), sizeof(buf));
579
580                 read_ret = (*read_fn)(infd, buf + total, num_to_read_thistime);
581                 if (read_ret == -1) {
582                         DEBUG(0,("transfer_file_internal: read failure. Error = %s\n", strerror(errno) ));
583                         return -1;
584                 }
585                 if (read_ret == 0)
586                         break;
587
588                 write_total = 0;
589  
590                 while (write_total < read_ret) {
591                         write_ret = (*write_fn)(outfd,buf + total, read_ret);
592  
593                         if (write_ret == -1) {
594                                 DEBUG(0,("transfer_file_internal: write failure. Error = %s\n", strerror(errno) ));
595                                 return -1;
596                         }
597                         if (write_ret == 0)
598                                 return (ssize_t)total;
599  
600                         write_total += (size_t)write_ret;
601                 }
602
603                 total += (size_t)read_ret;
604         }
605
606         return (ssize_t)total;          
607 }
608
609 SMB_OFF_T transfer_file(int infd,int outfd,SMB_OFF_T n)
610 {
611         return (SMB_OFF_T)transfer_file_internal(infd, outfd, (size_t)n, read, write);
612 }
613
614 /*******************************************************************
615  Sleep for a specified number of milliseconds.
616 ********************************************************************/
617
618 void msleep(int t)
619 {
620   int tdiff=0;
621   struct timeval tval,t1,t2;  
622   fd_set fds;
623
624   GetTimeOfDay(&t1);
625   GetTimeOfDay(&t2);
626   
627   while (tdiff < t) {
628     tval.tv_sec = (t-tdiff)/1000;
629     tval.tv_usec = 1000*((t-tdiff)%1000);
630  
631     FD_ZERO(&fds);
632     errno = 0;
633     sys_select_intr(0,&fds,&tval);
634
635     GetTimeOfDay(&t2);
636     tdiff = TvalDiff(&t1,&t2);
637   }
638 }
639
640 /****************************************************************************
641  Become a daemon, discarding the controlling terminal.
642 ****************************************************************************/
643
644 void become_daemon(void)
645 {
646         if (sys_fork()) {
647                 _exit(0);
648         }
649
650   /* detach from the terminal */
651 #ifdef HAVE_SETSID
652         setsid();
653 #elif defined(TIOCNOTTY)
654         {
655                 int i = sys_open("/dev/tty", O_RDWR, 0);
656                 if (i != -1) {
657                         ioctl(i, (int) TIOCNOTTY, (char *)0);      
658                         close(i);
659                 }
660         }
661 #endif /* HAVE_SETSID */
662
663         /* Close fd's 0,1,2. Needed if started by rsh */
664         close_low_fds();
665 }
666
667
668 /****************************************************************************
669 put up a yes/no prompt
670 ****************************************************************************/
671 BOOL yesno(char *p)
672 {
673   pstring ans;
674   printf("%s",p);
675
676   if (!fgets(ans,sizeof(ans)-1,stdin))
677     return(False);
678
679   if (*ans == 'y' || *ans == 'Y')
680     return(True);
681
682   return(False);
683 }
684
685 /****************************************************************************
686  Expand a pointer to be a particular size.
687 ****************************************************************************/
688
689 void *Realloc(void *p,size_t size)
690 {
691   void *ret=NULL;
692
693   if (size == 0) {
694     SAFE_FREE(p);
695     DEBUG(5,("Realloc asked for 0 bytes\n"));
696     return NULL;
697   }
698
699   if (!p)
700     ret = (void *)malloc(size);
701   else
702     ret = (void *)realloc(p,size);
703
704   if (!ret)
705     DEBUG(0,("Memory allocation error: failed to expand to %d bytes\n",(int)size));
706
707   return(ret);
708 }
709
710 /****************************************************************************
711  Free memory, checks for NULL.
712 use directly SAFE_FREE()
713 exist only because we need to pass a function pointer somewhere --SSS
714 ****************************************************************************/
715
716 void safe_free(void *p)
717 {
718         SAFE_FREE(p);
719 }
720
721 /****************************************************************************
722  Get my own name and IP.
723 ****************************************************************************/
724
725 BOOL get_myname(char *my_name)
726 {
727         pstring hostname;
728
729         *hostname = 0;
730
731         /* get my host name */
732         if (gethostname(hostname, sizeof(hostname)) == -1) {
733                 DEBUG(0,("gethostname failed\n"));
734                 return False;
735         } 
736
737         /* Ensure null termination. */
738         hostname[sizeof(hostname)-1] = '\0';
739
740         if (my_name) {
741                 /* split off any parts after an initial . */
742                 char *p = strchr_m(hostname,'.');
743
744                 if (p)
745                         *p = 0;
746                 
747                 fstrcpy(my_name,hostname);
748         }
749         
750         return(True);
751 }
752
753 /****************************************************************************
754  Interpret a protocol description string, with a default.
755 ****************************************************************************/
756
757 int interpret_protocol(char *str,int def)
758 {
759   if (strequal(str,"NT1"))
760     return(PROTOCOL_NT1);
761   if (strequal(str,"LANMAN2"))
762     return(PROTOCOL_LANMAN2);
763   if (strequal(str,"LANMAN1"))
764     return(PROTOCOL_LANMAN1);
765   if (strequal(str,"CORE"))
766     return(PROTOCOL_CORE);
767   if (strequal(str,"COREPLUS"))
768     return(PROTOCOL_COREPLUS);
769   if (strequal(str,"CORE+"))
770     return(PROTOCOL_COREPLUS);
771   
772   DEBUG(0,("Unrecognised protocol level %s\n",str));
773   
774   return(def);
775 }
776
777 /****************************************************************************
778  Return true if a string could be a pure IP address.
779 ****************************************************************************/
780
781 BOOL is_ipaddress(const char *str)
782 {
783   BOOL pure_address = True;
784   int i;
785   
786   for (i=0; pure_address && str[i]; i++)
787     if (!(isdigit((int)str[i]) || str[i] == '.'))
788       pure_address = False;
789
790   /* Check that a pure number is not misinterpreted as an IP */
791   pure_address = pure_address && (strchr_m(str, '.') != NULL);
792
793   return pure_address;
794 }
795
796 /****************************************************************************
797 interpret an internet address or name into an IP address in 4 byte form
798 ****************************************************************************/
799
800 uint32 interpret_addr(const char *str)
801 {
802   struct hostent *hp;
803   uint32 res;
804
805   if (strcmp(str,"0.0.0.0") == 0) return(0);
806   if (strcmp(str,"255.255.255.255") == 0) return(0xFFFFFFFF);
807
808   /* if it's in the form of an IP address then get the lib to interpret it */
809   if (is_ipaddress(str)) {
810     res = inet_addr(str);
811   } else {
812     /* otherwise assume it's a network name of some sort and use 
813        sys_gethostbyname */
814     if ((hp = sys_gethostbyname(str)) == 0) {
815       DEBUG(3,("sys_gethostbyname: Unknown host. %s\n",str));
816       return 0;
817     }
818     if(hp->h_addr == NULL) {
819       DEBUG(3,("sys_gethostbyname: host address is invalid for host %s\n",str));
820       return 0;
821     }
822     putip((char *)&res,(char *)hp->h_addr);
823   }
824
825   if (res == (uint32)-1) return(0);
826
827   return(res);
828 }
829
830 /*******************************************************************
831   a convenient addition to interpret_addr()
832   ******************************************************************/
833 struct in_addr *interpret_addr2(const char *str)
834 {
835   static struct in_addr ret;
836   uint32 a = interpret_addr(str);
837   ret.s_addr = a;
838   return(&ret);
839 }
840
841 /*******************************************************************
842   check if an IP is the 0.0.0.0
843   ******************************************************************/
844 BOOL zero_ip(struct in_addr ip)
845 {
846   uint32 a;
847   putip((char *)&a,(char *)&ip);
848   return(a == 0);
849 }
850
851
852 #if (defined(HAVE_NETGROUP) && defined(WITH_AUTOMOUNT))
853 /******************************************************************
854  Remove any mount options such as -rsize=2048,wsize=2048 etc.
855  Based on a fix from <Thomas.Hepper@icem.de>.
856 *******************************************************************/
857
858 static void strip_mount_options( pstring *str)
859 {
860   if (**str == '-')
861   { 
862     char *p = *str;
863     while(*p && !isspace(*p))
864       p++;
865     while(*p && isspace(*p))
866       p++;
867     if(*p) {
868       pstring tmp_str;
869
870       pstrcpy(tmp_str, p);
871       pstrcpy(*str, tmp_str);
872     }
873   }
874 }
875
876 /*******************************************************************
877  Patch from jkf@soton.ac.uk
878  Split Luke's automount_server into YP lookup and string splitter
879  so can easily implement automount_path(). 
880  As we may end up doing both, cache the last YP result. 
881 *******************************************************************/
882
883 #ifdef WITH_NISPLUS_HOME
884 char *automount_lookup(const char *user_name)
885 {
886   static fstring last_key = "";
887   static pstring last_value = "";
888  
889   char *nis_map = (char *)lp_nis_home_map_name();
890  
891   char buffer[NIS_MAXATTRVAL + 1];
892   nis_result *result;
893   nis_object *object;
894   entry_obj  *entry;
895  
896   if (strcmp(user_name, last_key))
897   {
898     slprintf(buffer, sizeof(buffer)-1, "[key=%s],%s", user_name, nis_map);
899     DEBUG(5, ("NIS+ querystring: %s\n", buffer));
900  
901     if (result = nis_list(buffer, FOLLOW_PATH|EXPAND_NAME|HARD_LOOKUP, NULL, NULL))
902     {
903        if (result->status != NIS_SUCCESS)
904       {
905         DEBUG(3, ("NIS+ query failed: %s\n", nis_sperrno(result->status)));
906         fstrcpy(last_key, ""); pstrcpy(last_value, "");
907       }
908       else
909       {
910         object = result->objects.objects_val;
911         if (object->zo_data.zo_type == ENTRY_OBJ)
912         {
913            entry = &object->zo_data.objdata_u.en_data;
914            DEBUG(5, ("NIS+ entry type: %s\n", entry->en_type));
915            DEBUG(3, ("NIS+ result: %s\n", entry->en_cols.en_cols_val[1].ec_value.ec_value_val));
916  
917            pstrcpy(last_value, entry->en_cols.en_cols_val[1].ec_value.ec_value_val);
918            pstring_sub(last_value, "&", user_name);
919            fstrcpy(last_key, user_name);
920         }
921       }
922     }
923     nis_freeresult(result);
924   }
925
926   strip_mount_options(&last_value);
927
928   DEBUG(4, ("NIS+ Lookup: %s resulted in %s\n", user_name, last_value));
929   return last_value;
930 }
931 #else /* WITH_NISPLUS_HOME */
932 char *automount_lookup(const char *user_name)
933 {
934   static fstring last_key = "";
935   static pstring last_value = "";
936
937   int nis_error;        /* returned by yp all functions */
938   char *nis_result;     /* yp_match inits this */
939   int nis_result_len;  /* and set this */
940   char *nis_domain;     /* yp_get_default_domain inits this */
941   char *nis_map = (char *)lp_nis_home_map_name();
942
943   if ((nis_error = yp_get_default_domain(&nis_domain)) != 0) {
944     DEBUG(3, ("YP Error: %s\n", yperr_string(nis_error)));
945     return last_value;
946   }
947
948   DEBUG(5, ("NIS Domain: %s\n", nis_domain));
949
950   if (!strcmp(user_name, last_key)) {
951         nis_result = last_value;
952     nis_result_len = strlen(last_value);
953     nis_error = 0;
954
955   } else {
956
957     if ((nis_error = yp_match(nis_domain, nis_map,
958                               user_name, strlen(user_name),
959                               &nis_result, &nis_result_len)) == 0) {
960        if (!nis_error && nis_result_len >= sizeof(pstring)) {
961                nis_result_len = sizeof(pstring)-1;
962        }
963        fstrcpy(last_key, user_name);
964        strncpy(last_value, nis_result, nis_result_len);
965        last_value[nis_result_len] = '\0';
966         strip_mount_options(&last_value);
967
968     } else if(nis_error == YPERR_KEY) {
969
970     /* If Key lookup fails user home server is not in nis_map 
971        use default information for server, and home directory */
972        last_value[0] = 0;
973        DEBUG(3, ("YP Key not found:  while looking up \"%s\" in map \"%s\"\n", 
974                 user_name, nis_map));
975        DEBUG(3, ("using defaults for server and home directory\n"));
976     } else {
977        DEBUG(3, ("YP Error: \"%s\" while looking up \"%s\" in map \"%s\"\n", 
978                yperr_string(nis_error), user_name, nis_map));
979     }
980   }
981
982
983   DEBUG(4, ("YP Lookup: %s resulted in %s\n", user_name, last_value));
984   return last_value;
985 }
986 #endif /* WITH_NISPLUS_HOME */
987 #endif
988
989
990 /*******************************************************************
991 are two IPs on the same subnet?
992 ********************************************************************/
993 BOOL same_net(struct in_addr ip1,struct in_addr ip2,struct in_addr mask)
994 {
995   uint32 net1,net2,nmask;
996
997   nmask = ntohl(mask.s_addr);
998   net1  = ntohl(ip1.s_addr);
999   net2  = ntohl(ip2.s_addr);
1000             
1001   return((net1 & nmask) == (net2 & nmask));
1002 }
1003
1004
1005 /****************************************************************************
1006 check if a process exists. Does this work on all unixes?
1007 ****************************************************************************/
1008
1009 BOOL process_exists(pid_t pid)
1010 {
1011         return(kill(pid,0) == 0 || errno != ESRCH);
1012 }
1013
1014
1015 /*******************************************************************
1016  Convert a uid into a user name.
1017 ********************************************************************/
1018
1019 char *uidtoname(uid_t uid)
1020 {
1021         static fstring name;
1022         struct passwd *pass;
1023
1024         if (winbind_uidtoname(name, uid))
1025                 return name;
1026
1027         pass = sys_getpwuid(uid);
1028         if (pass) return(pass->pw_name);
1029         slprintf(name, sizeof(name) - 1, "%d",(int)uid);
1030         return(name);
1031 }
1032
1033
1034 /*******************************************************************
1035  Convert a gid into a group name.
1036 ********************************************************************/
1037
1038 char *gidtoname(gid_t gid)
1039 {
1040         static fstring name;
1041         struct group *grp;
1042
1043         if (winbind_gidtoname(name, gid))
1044                 return name;
1045
1046         grp = getgrgid(gid);
1047         if (grp) return(grp->gr_name);
1048         slprintf(name,sizeof(name) - 1, "%d",(int)gid);
1049         return(name);
1050 }
1051
1052 /*******************************************************************
1053  Convert a user name into a uid. If winbindd is present uses this.
1054 ********************************************************************/
1055
1056 uid_t nametouid(char *name)
1057 {
1058         struct passwd *pass;
1059         char *p;
1060         uid_t u;
1061
1062         u = (uid_t)strtol(name, &p, 0);
1063         if ((p != name) && (*p == '\0'))
1064                 return u;
1065
1066         if (winbind_nametouid(&u, name))
1067                 return u;
1068
1069         pass = sys_getpwnam(name);
1070         if (pass)
1071                 return(pass->pw_uid);
1072         return (uid_t)-1;
1073 }
1074
1075 /*******************************************************************
1076  Convert a name to a gid_t if possible. Return -1 if not a group. If winbindd
1077  is present does a shortcut lookup...
1078 ********************************************************************/
1079
1080 gid_t nametogid(const char *name)
1081 {
1082         struct group *grp;
1083         char *p;
1084         gid_t g;
1085
1086         g = (gid_t)strtol(name, &p, 0);
1087         if ((p != name) && (*p == '\0'))
1088                 return g;
1089
1090         if (winbind_nametogid(&g, name))
1091                 return g;
1092
1093         grp = getgrnam(name);
1094         if (grp)
1095                 return(grp->gr_gid);
1096         return (gid_t)-1;
1097 }
1098
1099 /*******************************************************************
1100 something really nasty happened - panic!
1101 ********************************************************************/
1102 void smb_panic(char *why)
1103 {
1104         char *cmd = lp_panic_action();
1105         if (cmd && *cmd) {
1106                 system(cmd);
1107         }
1108         DEBUG(0,("PANIC: %s\n", why));
1109         dbgflush();
1110         abort();
1111 }
1112
1113
1114 /*******************************************************************
1115 a readdir wrapper which just returns the file name
1116 ********************************************************************/
1117 char *readdirname(DIR *p)
1118 {
1119         SMB_STRUCT_DIRENT *ptr;
1120         char *dname;
1121
1122         if (!p) return(NULL);
1123   
1124         ptr = (SMB_STRUCT_DIRENT *)sys_readdir(p);
1125         if (!ptr) return(NULL);
1126
1127         dname = ptr->d_name;
1128
1129 #ifdef NEXT2
1130         if (telldir(p) < 0) return(NULL);
1131 #endif
1132
1133 #ifdef HAVE_BROKEN_READDIR
1134         /* using /usr/ucb/cc is BAD */
1135         dname = dname - 2;
1136 #endif
1137
1138         {
1139                 static pstring buf;
1140                 int len = NAMLEN(ptr);
1141                 memcpy(buf, dname, len);
1142                 buf[len] = 0;
1143                 dname = buf;
1144         }
1145
1146         return(dname);
1147 }
1148
1149 /*******************************************************************
1150  Utility function used to decide if the last component 
1151  of a path matches a (possibly wildcarded) entry in a namelist.
1152 ********************************************************************/
1153
1154 BOOL is_in_path(char *name, name_compare_entry *namelist)
1155 {
1156   pstring last_component;
1157   char *p;
1158
1159   DEBUG(8, ("is_in_path: %s\n", name));
1160
1161   /* if we have no list it's obviously not in the path */
1162   if((namelist == NULL ) || ((namelist != NULL) && (namelist[0].name == NULL))) 
1163   {
1164     DEBUG(8,("is_in_path: no name list.\n"));
1165     return False;
1166   }
1167
1168   /* Get the last component of the unix name. */
1169   p = strrchr_m(name, '/');
1170   strncpy(last_component, p ? ++p : name, sizeof(last_component)-1);
1171   last_component[sizeof(last_component)-1] = '\0'; 
1172
1173   for(; namelist->name != NULL; namelist++)
1174   {
1175     if(namelist->is_wild)
1176     {
1177       if (mask_match(last_component, namelist->name, case_sensitive))
1178       {
1179          DEBUG(8,("is_in_path: mask match succeeded\n"));
1180          return True;
1181       }
1182     }
1183     else
1184     {
1185       if((case_sensitive && (strcmp(last_component, namelist->name) == 0))||
1186        (!case_sensitive && (StrCaseCmp(last_component, namelist->name) == 0)))
1187         {
1188          DEBUG(8,("is_in_path: match succeeded\n"));
1189          return True;
1190         }
1191     }
1192   }
1193   DEBUG(8,("is_in_path: match not found\n"));
1194  
1195   return False;
1196 }
1197
1198 /*******************************************************************
1199  Strip a '/' separated list into an array of 
1200  name_compare_enties structures suitable for 
1201  passing to is_in_path(). We do this for
1202  speed so we can pre-parse all the names in the list 
1203  and don't do it for each call to is_in_path().
1204  namelist is modified here and is assumed to be 
1205  a copy owned by the caller.
1206  We also check if the entry contains a wildcard to
1207  remove a potentially expensive call to mask_match
1208  if possible.
1209 ********************************************************************/
1210  
1211 void set_namearray(name_compare_entry **ppname_array, char *namelist)
1212 {
1213   char *name_end;
1214   char *nameptr = namelist;
1215   int num_entries = 0;
1216   int i;
1217
1218   (*ppname_array) = NULL;
1219
1220   if((nameptr == NULL ) || ((nameptr != NULL) && (*nameptr == '\0'))) 
1221     return;
1222
1223   /* We need to make two passes over the string. The
1224      first to count the number of elements, the second
1225      to split it.
1226    */
1227   while(*nameptr) 
1228     {
1229       if ( *nameptr == '/' ) 
1230         {
1231           /* cope with multiple (useless) /s) */
1232           nameptr++;
1233           continue;
1234         }
1235       /* find the next / */
1236       name_end = strchr_m(nameptr, '/');
1237
1238       /* oops - the last check for a / didn't find one. */
1239       if (name_end == NULL)
1240         break;
1241
1242       /* next segment please */
1243       nameptr = name_end + 1;
1244       num_entries++;
1245     }
1246
1247   if(num_entries == 0)
1248     return;
1249
1250   if(( (*ppname_array) = (name_compare_entry *)malloc( 
1251            (num_entries + 1) * sizeof(name_compare_entry))) == NULL)
1252         {
1253     DEBUG(0,("set_namearray: malloc fail\n"));
1254     return;
1255         }
1256
1257   /* Now copy out the names */
1258   nameptr = namelist;
1259   i = 0;
1260   while(*nameptr)
1261              {
1262       if ( *nameptr == '/' ) 
1263       {
1264           /* cope with multiple (useless) /s) */
1265           nameptr++;
1266           continue;
1267       }
1268       /* find the next / */
1269       if ((name_end = strchr_m(nameptr, '/')) != NULL) 
1270       {
1271           *name_end = 0;
1272          }
1273
1274       /* oops - the last check for a / didn't find one. */
1275       if(name_end == NULL) 
1276         break;
1277
1278       (*ppname_array)[i].is_wild = ms_has_wild(nameptr);
1279       if(((*ppname_array)[i].name = strdup(nameptr)) == NULL)
1280       {
1281         DEBUG(0,("set_namearray: malloc fail (1)\n"));
1282         return;
1283       }
1284
1285       /* next segment please */
1286       nameptr = name_end + 1;
1287       i++;
1288     }
1289   
1290   (*ppname_array)[i].name = NULL;
1291
1292   return;
1293 }
1294
1295 /****************************************************************************
1296 routine to free a namearray.
1297 ****************************************************************************/
1298
1299 void free_namearray(name_compare_entry *name_array)
1300 {
1301   if(name_array == NULL)
1302     return;
1303
1304   SAFE_FREE(name_array->name);
1305   SAFE_FREE(name_array);
1306 }
1307
1308 /****************************************************************************
1309  Simple routine to do POSIX file locking. Cruft in NFS and 64->32 bit mapping
1310  is dealt with in posix.c
1311 ****************************************************************************/
1312
1313 BOOL fcntl_lock(int fd, int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
1314 {
1315   SMB_STRUCT_FLOCK lock;
1316   int ret;
1317
1318   DEBUG(8,("fcntl_lock %d %d %.0f %.0f %d\n",fd,op,(double)offset,(double)count,type));
1319
1320   lock.l_type = type;
1321   lock.l_whence = SEEK_SET;
1322   lock.l_start = offset;
1323   lock.l_len = count;
1324   lock.l_pid = 0;
1325
1326   errno = 0;
1327
1328   ret = fcntl(fd,op,&lock);
1329
1330   if (errno != 0)
1331     DEBUG(3,("fcntl_lock: fcntl lock gave errno %d (%s)\n",errno,strerror(errno)));
1332
1333   /* a lock query */
1334   if (op == SMB_F_GETLK)
1335   {
1336     if ((ret != -1) &&
1337         (lock.l_type != F_UNLCK) && 
1338         (lock.l_pid != 0) && 
1339         (lock.l_pid != sys_getpid()))
1340     {
1341       DEBUG(3,("fcntl_lock: fd %d is locked by pid %d\n",fd,(int)lock.l_pid));
1342       return(True);
1343     }
1344
1345     /* it must be not locked or locked by me */
1346     return(False);
1347   }
1348
1349   /* a lock set or unset */
1350   if (ret == -1)
1351   {
1352     DEBUG(3,("fcntl_lock: lock failed at offset %.0f count %.0f op %d type %d (%s)\n",
1353           (double)offset,(double)count,op,type,strerror(errno)));
1354     return(False);
1355   }
1356
1357   /* everything went OK */
1358   DEBUG(8,("fcntl_lock: Lock call successful\n"));
1359
1360   return(True);
1361 }
1362
1363 /*******************************************************************
1364 is the name specified one of my netbios names
1365 returns true is it is equal, false otherwise
1366 ********************************************************************/
1367 BOOL is_myname(char *s)
1368 {
1369   int n;
1370   BOOL ret = False;
1371
1372   for (n=0; my_netbios_names[n]; n++) {
1373     if (strequal(my_netbios_names[n], s))
1374       ret=True;
1375   }
1376   DEBUG(8, ("is_myname(\"%s\") returns %d\n", s, ret));
1377   return(ret);
1378 }
1379
1380 /*******************************************************************
1381 set the horrid remote_arch string based on an enum.
1382 ********************************************************************/
1383 void set_remote_arch(enum remote_arch_types type)
1384 {
1385   extern fstring remote_arch;
1386   ra_type = type;
1387   switch( type )
1388   {
1389   case RA_WFWG:
1390     fstrcpy(remote_arch, "WfWg");
1391     return;
1392   case RA_OS2:
1393     fstrcpy(remote_arch, "OS2");
1394     return;
1395   case RA_WIN95:
1396     fstrcpy(remote_arch, "Win95");
1397     return;
1398   case RA_WINNT:
1399     fstrcpy(remote_arch, "WinNT");
1400     return;
1401   case RA_WIN2K:
1402     fstrcpy(remote_arch, "Win2K");
1403     return;
1404   case RA_SAMBA:
1405     fstrcpy(remote_arch,"Samba");
1406     return;
1407   default:
1408     ra_type = RA_UNKNOWN;
1409     fstrcpy(remote_arch, "UNKNOWN");
1410     break;
1411   }
1412 }
1413
1414 /*******************************************************************
1415  Get the remote_arch type.
1416 ********************************************************************/
1417 enum remote_arch_types get_remote_arch(void)
1418 {
1419   return ra_type;
1420 }
1421
1422
1423 void out_ascii(FILE *f, unsigned char *buf,int len)
1424 {
1425         int i;
1426         for (i=0;i<len;i++)
1427         {
1428                 fprintf(f, "%c", isprint(buf[i])?buf[i]:'.');
1429         }
1430 }
1431
1432 void out_data(FILE *f,char *buf1,int len, int per_line)
1433 {
1434         unsigned char *buf = (unsigned char *)buf1;
1435         int i=0;
1436         if (len<=0)
1437         {
1438                 return;
1439         }
1440
1441         fprintf(f, "[%03X] ",i);
1442         for (i=0;i<len;)
1443         {
1444                 fprintf(f, "%02X ",(int)buf[i]);
1445                 i++;
1446                 if (i%(per_line/2) == 0) fprintf(f, " ");
1447                 if (i%per_line == 0)
1448                 {      
1449                         out_ascii(f,&buf[i-per_line  ],per_line/2); fprintf(f, " ");
1450                         out_ascii(f,&buf[i-per_line/2],per_line/2); fprintf(f, "\n");
1451                         if (i<len) fprintf(f, "[%03X] ",i);
1452                 }
1453         }
1454         if ((i%per_line) != 0)
1455         {
1456                 int n;
1457
1458                 n = per_line - (i%per_line);
1459                 fprintf(f, " ");
1460                 if (n>(per_line/2)) fprintf(f, " ");
1461                 while (n--)
1462                 {
1463                         fprintf(f, "   ");
1464                 }
1465                 n = MIN(per_line/2,i%per_line);
1466                 out_ascii(f,&buf[i-(i%per_line)],n); fprintf(f, " ");
1467                 n = (i%per_line) - n;
1468                 if (n>0) out_ascii(f,&buf[i-n],n); 
1469                 fprintf(f, "\n");    
1470         }
1471 }
1472
1473 void print_asc(int level, const unsigned char *buf,int len)
1474 {
1475         int i;
1476         for (i=0;i<len;i++)
1477                 DEBUG(level,("%c", isprint(buf[i])?buf[i]:'.'));
1478 }
1479
1480 void dump_data(int level, const char *buf1,int len)
1481 {
1482   const unsigned char *buf = (const unsigned char *)buf1;
1483   int i=0;
1484   if (len<=0) return;
1485
1486   DEBUG(level,("[%03X] ",i));
1487   for (i=0;i<len;) {
1488     DEBUG(level,("%02X ",(int)buf[i]));
1489     i++;
1490     if (i%8 == 0) DEBUG(level,(" "));
1491     if (i%16 == 0) {      
1492       print_asc(level,&buf[i-16],8); DEBUG(level,(" "));
1493       print_asc(level,&buf[i-8],8); DEBUG(level,("\n"));
1494       if (i<len) DEBUG(level,("[%03X] ",i));
1495     }
1496   }
1497   if (i%16) {
1498     int n;
1499
1500     n = 16 - (i%16);
1501     DEBUG(level,(" "));
1502     if (n>8) DEBUG(level,(" "));
1503     while (n--) DEBUG(level,("   "));
1504
1505     n = MIN(8,i%16);
1506     print_asc(level,&buf[i-(i%16)],n); DEBUG(level,(" "));
1507     n = (i%16) - n;
1508     if (n>0) print_asc(level,&buf[i-n],n); 
1509     DEBUG(level,("\n"));    
1510   }
1511 }
1512
1513 char *tab_depth(int depth)
1514 {
1515         static pstring spaces;
1516         memset(spaces, ' ', depth * 4);
1517         spaces[depth * 4] = 0;
1518         return spaces;
1519 }
1520
1521 /*****************************************************************************
1522  * Provide a checksum on a string
1523  *
1524  *  Input:  s - the null-terminated character string for which the checksum
1525  *              will be calculated.
1526  *
1527  *  Output: The checksum value calculated for s.
1528  *
1529  * ****************************************************************************
1530  */
1531 int str_checksum(const char *s)
1532 {
1533         int res = 0;
1534         int c;
1535         int i=0;
1536         
1537         while(*s) {
1538                 c = *s;
1539                 res ^= (c << (i % 15)) ^ (c >> (15-(i%15)));
1540                 s++;
1541                 i++;
1542         }
1543         return(res);
1544 } /* str_checksum */
1545
1546
1547
1548 /*****************************************************************
1549 zero a memory area then free it. Used to catch bugs faster
1550 *****************************************************************/  
1551 void zero_free(void *p, size_t size)
1552 {
1553         memset(p, 0, size);
1554         SAFE_FREE(p);
1555 }
1556
1557
1558 /*****************************************************************
1559 set our open file limit to a requested max and return the limit
1560 *****************************************************************/  
1561 int set_maxfiles(int requested_max)
1562 {
1563 #if (defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE))
1564         struct rlimit rlp;
1565         int saved_current_limit;
1566
1567         if(getrlimit(RLIMIT_NOFILE, &rlp)) {
1568                 DEBUG(0,("set_maxfiles: getrlimit (1) for RLIMIT_NOFILE failed with error %s\n",
1569                         strerror(errno) ));
1570                 /* just guess... */
1571                 return requested_max;
1572         }
1573
1574         /* 
1575      * Set the fd limit to be real_max_open_files + MAX_OPEN_FUDGEFACTOR to
1576          * account for the extra fd we need 
1577          * as well as the log files and standard
1578          * handles etc. Save the limit we want to set in case
1579          * we are running on an OS that doesn't support this limit (AIX)
1580          * which always returns RLIM_INFINITY for rlp.rlim_max.
1581          */
1582
1583         /* Try raising the hard (max) limit to the requested amount. */
1584
1585 #if defined(RLIM_INFINITY)
1586         if (rlp.rlim_max != RLIM_INFINITY) {
1587                 int orig_max = rlp.rlim_max;
1588
1589                 if ( rlp.rlim_max < requested_max )
1590                         rlp.rlim_max = requested_max;
1591
1592                 /* This failing is not an error - many systems (Linux) don't
1593                         support our default request of 10,000 open files. JRA. */
1594
1595                 if(setrlimit(RLIMIT_NOFILE, &rlp)) {
1596                         DEBUG(3,("set_maxfiles: setrlimit for RLIMIT_NOFILE for %d max files failed with error %s\n", 
1597                                 (int)rlp.rlim_max, strerror(errno) ));
1598
1599                         /* Set failed - restore original value from get. */
1600                         rlp.rlim_max = orig_max;
1601                 }
1602         }
1603 #endif
1604
1605         /* Now try setting the soft (current) limit. */
1606
1607         saved_current_limit = rlp.rlim_cur = MIN(requested_max,rlp.rlim_max);
1608
1609         if(setrlimit(RLIMIT_NOFILE, &rlp)) {
1610                 DEBUG(0,("set_maxfiles: setrlimit for RLIMIT_NOFILE for %d files failed with error %s\n", 
1611                         (int)rlp.rlim_cur, strerror(errno) ));
1612                 /* just guess... */
1613                 return saved_current_limit;
1614         }
1615
1616         if(getrlimit(RLIMIT_NOFILE, &rlp)) {
1617                 DEBUG(0,("set_maxfiles: getrlimit (2) for RLIMIT_NOFILE failed with error %s\n",
1618                         strerror(errno) ));
1619                 /* just guess... */
1620                 return saved_current_limit;
1621     }
1622
1623 #if defined(RLIM_INFINITY)
1624         if(rlp.rlim_cur == RLIM_INFINITY)
1625                 return saved_current_limit;
1626 #endif
1627
1628     if((int)rlp.rlim_cur > saved_current_limit)
1629                 return saved_current_limit;
1630
1631         return rlp.rlim_cur;
1632 #else /* !defined(HAVE_GETRLIMIT) || !defined(RLIMIT_NOFILE) */
1633         /*
1634          * No way to know - just guess...
1635          */
1636         return requested_max;
1637 #endif
1638 }
1639
1640 /*****************************************************************
1641  splits out the start of the key (HKLM or HKU) and the rest of the key
1642  *****************************************************************/  
1643 BOOL reg_split_key(char *full_keyname, uint32 *reg_type, char *key_name)
1644 {
1645         pstring tmp;
1646
1647         if (!next_token(&full_keyname, tmp, "\\", sizeof(tmp)))
1648         {
1649                 return False;
1650         }
1651
1652         (*reg_type) = 0;
1653
1654         DEBUG(10, ("reg_split_key: hive %s\n", tmp));
1655
1656         if (strequal(tmp, "HKLM") || strequal(tmp, "HKEY_LOCAL_MACHINE"))
1657         {
1658                 (*reg_type) = HKEY_LOCAL_MACHINE;
1659         }
1660         else if (strequal(tmp, "HKU") || strequal(tmp, "HKEY_USERS"))
1661         {
1662                 (*reg_type) = HKEY_USERS;
1663         }
1664         else
1665         {
1666                 DEBUG(10,("reg_split_key: unrecognised hive key %s\n", tmp));
1667                 return False;
1668         }
1669         
1670         if (next_token(&full_keyname, tmp, "\n\r", sizeof(tmp)))
1671         {
1672                 fstrcpy(key_name, tmp);
1673         }
1674         else
1675         {
1676                 key_name[0] = 0;
1677         }
1678
1679         DEBUG(10, ("reg_split_key: name %s\n", key_name));
1680
1681         return True;
1682 }
1683
1684
1685 /*****************************************************************
1686 possibly replace mkstemp if it is broken
1687 *****************************************************************/  
1688 int smb_mkstemp(char *template)
1689 {
1690 #if HAVE_SECURE_MKSTEMP
1691         return mkstemp(template);
1692 #else
1693         /* have a reasonable go at emulating it. Hope that
1694            the system mktemp() isn't completly hopeless */
1695         char *p = mktemp(template);
1696         if (!p) return -1;
1697         return open(p, O_CREAT|O_EXCL|O_RDWR, 0600);
1698 #endif
1699 }
1700
1701 /*****************************************************************
1702  malloc that aborts with smb_panic on fail or zero size.
1703  *****************************************************************/  
1704
1705 void *xmalloc(size_t size)
1706 {
1707         void *p;
1708         if (size == 0)
1709                 smb_panic("xmalloc: called with zero size.\n");
1710         if ((p = malloc(size)) == NULL)
1711                 smb_panic("xmalloc: malloc fail.\n");
1712         return p;
1713 }
1714
1715 /*****************************************************************
1716  Memdup with smb_panic on fail.
1717  *****************************************************************/  
1718
1719 void *xmemdup(const void *p, size_t size)
1720 {
1721         void *p2;
1722         p2 = xmalloc(size);
1723         memcpy(p2, p, size);
1724         return p2;
1725 }
1726
1727 /*****************************************************************
1728  strdup that aborts on malloc fail.
1729  *****************************************************************/  
1730
1731 char *xstrdup(const char *s)
1732 {
1733         char *s1 = strdup(s);
1734         if (!s1)
1735                 smb_panic("xstrdup: malloc fail\n");
1736         return s1;
1737 }
1738
1739 /*****************************************************************
1740 like strdup but for memory
1741  *****************************************************************/  
1742 void *memdup(const void *p, size_t size)
1743 {
1744         void *p2;
1745         if (size == 0) return NULL;
1746         p2 = malloc(size);
1747         if (!p2) return NULL;
1748         memcpy(p2, p, size);
1749         return p2;
1750 }
1751
1752 /*****************************************************************
1753 get local hostname and cache result
1754  *****************************************************************/  
1755 char *myhostname(void)
1756 {
1757         static pstring ret;
1758         if (ret[0] == 0) {
1759                 get_myname(ret);
1760         }
1761         return ret;
1762 }
1763
1764
1765 /*****************************************************************
1766 a useful function for returning a path in the Samba lock directory
1767  *****************************************************************/  
1768 char *lock_path(char *name)
1769 {
1770         static pstring fname;
1771
1772         pstrcpy(fname,lp_lockdir());
1773         trim_string(fname,"","/");
1774         
1775         if (!directory_exist(fname,NULL)) {
1776                 mkdir(fname,0755);
1777         }
1778         
1779         pstrcat(fname,"/");
1780         pstrcat(fname,name);
1781
1782         return fname;
1783 }
1784
1785
1786 /**
1787  * @brief Returns an absolute path to a file in the Samba lib directory.
1788  *
1789  * @param name File to find, relative to LIBDIR.
1790  *
1791  * @retval Pointer to a static #pstring containing the full path.
1792  **/
1793 char *lib_path(char *name)
1794 {
1795         static pstring fname;
1796         snprintf(fname, sizeof(fname), "%s/%s", dyn_LIBDIR, name);
1797         return fname;
1798 }
1799
1800 /*******************************************************************
1801  Given a filename - get its directory name
1802  NB: Returned in static storage.  Caveats:
1803  o  Not safe in thread environment.
1804  o  Caller must not free.
1805  o  If caller wishes to preserve, they should copy.
1806 ********************************************************************/
1807
1808 char *parent_dirname(const char *path)
1809 {
1810         static pstring dirpath;
1811         char *p;
1812
1813         if (!path)
1814                 return(NULL);
1815
1816         pstrcpy(dirpath, path);
1817         p = strrchr_m(dirpath, '/');  /* Find final '/', if any */
1818         if (!p) {
1819                 pstrcpy(dirpath, ".");    /* No final "/", so dir is "." */
1820         } else {
1821                 if (p == dirpath)
1822                         ++p;    /* For root "/", leave "/" in place */
1823                 *p = '\0';
1824         }
1825         return dirpath;
1826 }
1827
1828
1829 /*******************************************************************
1830 determine if a pattern contains any Microsoft wildcard characters
1831  *******************************************************************/
1832 BOOL ms_has_wild(char *s)
1833 {
1834         char c;
1835         while ((c = *s++)) {
1836                 switch (c) {
1837                 case '*':
1838                 case '?':
1839                 case '<':
1840                 case '>':
1841                 case '"':
1842                         return True;
1843                 }
1844         }
1845         return False;
1846 }
1847
1848 BOOL ms_has_wild_w(const smb_ucs2_t *s)
1849 {
1850         smb_ucs2_t c;
1851         while ((c = *s++)) {
1852                 switch (c) {
1853                 case UCS2_CHAR('*'):
1854                 case UCS2_CHAR('?'):
1855                 case UCS2_CHAR('<'):
1856                 case UCS2_CHAR('>'):
1857                 case UCS2_CHAR('"'):
1858                         return True;
1859                 }
1860         }
1861         return False;
1862 }
1863
1864 /*******************************************************************
1865  a wrapper that handles case sensitivity and the special handling
1866    of the ".." name
1867  *******************************************************************/
1868 BOOL mask_match(char *string, char *pattern, BOOL is_case_sensitive)
1869 {
1870         fstring p2, s2;
1871
1872         if (strcmp(string,"..") == 0) string = ".";
1873         if (strcmp(pattern,".") == 0) return False;
1874         
1875         if (is_case_sensitive) {
1876                 return ms_fnmatch(pattern, string, Protocol) == 0;
1877         }
1878
1879         fstrcpy(p2, pattern);
1880         fstrcpy(s2, string);
1881         strlower(p2); 
1882         strlower(s2);
1883         return ms_fnmatch(p2, s2, Protocol) == 0;
1884 }
1885
1886 /*********************************************************
1887  Recursive routine that is called by unix_wild_match.
1888 *********************************************************/
1889
1890 static BOOL unix_do_match(char *regexp, char *str)
1891 {
1892         char *p;
1893
1894         for( p = regexp; *p && *str; ) {
1895
1896                 switch(*p) {
1897                         case '?':
1898                                 str++;
1899                                 p++;
1900                                 break;
1901
1902                         case '*':
1903
1904                                 /*
1905                                  * Look for a character matching 
1906                                  * the one after the '*'.
1907                                  */
1908                                 p++;
1909                                 if(!*p)
1910                                         return True; /* Automatic match */
1911                                 while(*str) {
1912
1913                                         while(*str && (*p != *str))
1914                                                 str++;
1915
1916                                         /*
1917                                          * Patch from weidel@multichart.de. In the case of the regexp
1918                                          * '*XX*' we want to ensure there are at least 2 'X' characters
1919                                          * in the string after the '*' for a match to be made.
1920                                          */
1921
1922                                         {
1923                                                 int matchcount=0;
1924
1925                                                 /*
1926                                                  * Eat all the characters that match, but count how many there were.
1927                                                  */
1928
1929                                                 while(*str && (*p == *str)) {
1930                                                         str++;
1931                                                         matchcount++;
1932                                                 }
1933
1934                                                 /*
1935                                                  * Now check that if the regexp had n identical characters that
1936                                                  * matchcount had at least that many matches.
1937                                                  */
1938
1939                                                 while ( *(p+1) && (*(p+1) == *p)) {
1940                                                         p++;
1941                                                         matchcount--;
1942                                                 }
1943
1944                                                 if ( matchcount <= 0 )
1945                                                         return False;
1946                                         }
1947
1948                                         str--; /* We've eaten the match char after the '*' */
1949
1950                                         if(unix_do_match(p, str))
1951                                                 return True;
1952
1953                                         if(!*str)
1954                                                 return False;
1955                                         else
1956                                                 str++;
1957                                 }
1958                                 return False;
1959
1960                         default:
1961                                 if(*str != *p)
1962                                         return False;
1963                                 str++;
1964                                 p++;
1965                                 break;
1966                 }
1967         }
1968
1969         if(!*p && !*str)
1970                 return True;
1971
1972         if (!*p && str[0] == '.' && str[1] == 0)
1973                 return(True);
1974   
1975         if (!*str && *p == '?') {
1976                 while (*p == '?')
1977                         p++;
1978                 return(!*p);
1979         }
1980
1981         if(!*str && (*p == '*' && p[1] == '\0'))
1982                 return True;
1983
1984         return False;
1985 }
1986
1987 /*******************************************************************
1988  Simple case insensitive interface to a UNIX wildcard matcher.
1989 *******************************************************************/
1990
1991 BOOL unix_wild_match(char *pattern, char *string)
1992 {
1993         pstring p2, s2;
1994         char *p;
1995
1996         pstrcpy(p2, pattern);
1997         pstrcpy(s2, string);
1998         strlower(p2);
1999         strlower(s2);
2000
2001         /* Remove any *? and ** from the pattern as they are meaningless */
2002         for(p = p2; *p; p++)
2003                 while( *p == '*' && (p[1] == '?' ||p[1] == '*'))
2004                         pstrcpy( &p[1], &p[2]);
2005  
2006         if (strequal(p2,"*"))
2007                 return True;
2008
2009         return unix_do_match(p2, s2) == 0;      
2010 }
2011
2012 /*******************************************************************
2013  construct a data blob, must be freed with data_blob_free()
2014 *******************************************************************/
2015 DATA_BLOB data_blob(const void *p, size_t length)
2016 {
2017         DATA_BLOB ret;
2018
2019         if (!p || !length) {
2020                 ZERO_STRUCT(ret);
2021                 return ret;
2022         }
2023
2024         ret.data = xmemdup(p, length);
2025         ret.length = length;
2026         return ret;
2027 }
2028
2029 /*******************************************************************
2030 free a data blob
2031 *******************************************************************/
2032 void data_blob_free(DATA_BLOB *d)
2033 {
2034         SAFE_FREE(d->data);
2035 }
2036
2037 /*******************************************************************
2038 free a data blob and clear its contents
2039 *******************************************************************/
2040 void data_blob_clear_free(DATA_BLOB *d)
2041 {
2042         if (d->data) {
2043                 memset(d->data, 0, d->length);
2044         }
2045         data_blob_free(d);
2046 }
2047
2048 #ifdef __INSURE__
2049
2050 /*******************************************************************
2051 This routine is a trick to immediately catch errors when debugging
2052 with insure. A xterm with a gdb is popped up when insure catches
2053 a error. It is Linux specific.
2054 ********************************************************************/
2055 int _Insure_trap_error(int a1, int a2, int a3, int a4, int a5, int a6)
2056 {
2057         static int (*fn)();
2058         int ret;
2059         char pidstr[10];
2060         pstring cmd = "/usr/X11R6/bin/xterm -display :0 -T Panic -n Panic -e /bin/sh -c 'cat /tmp/ierrs.*.%d ; gdb /proc/%d/exe %d'";
2061
2062         slprintf(pidstr, sizeof(pidstr)-1, "%d", sys_getpid());
2063         pstring_sub(cmd, "%d", pidstr);
2064
2065         if (!fn) {
2066                 static void *h;
2067                 h = dlopen("/usr/local/parasoft/insure++lite/lib.linux2/libinsure.so", RTLD_LAZY);
2068                 fn = dlsym(h, "_Insure_trap_error");
2069         }
2070
2071         ret = fn(a1, a2, a3, a4, a5, a6);
2072
2073         system(cmd);
2074
2075         return ret;
2076 }
2077 #endif