r1486: commit the start of the generic server infastructure
[sfrench/samba-autobuild/.git] / source4 / include / includes.h
1 #ifndef _INCLUDES_H
2 #define _INCLUDES_H
3 /* 
4    Unix SMB/CIFS implementation.
5    Machine customisation and include handling
6    Copyright (C) Andrew Tridgell 1994-1998
7    Copyright (C) 2002 by Martin Pool <mbp@samba.org>
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 #ifndef NO_CONFIG_H /* for some tests */
25 #include "config.h"
26 #include "smb_build.h"
27 #endif
28
29 #include "local.h"
30
31 #ifdef AIX
32 #define DEFAULT_PRINTING PRINT_AIX
33 #define PRINTCAP_NAME "/etc/qconfig"
34 #endif
35
36 #ifdef HPUX
37 #define DEFAULT_PRINTING PRINT_HPUX
38 #endif
39
40 #ifdef QNX
41 #define DEFAULT_PRINTING PRINT_QNX
42 #endif
43
44 #ifdef SUNOS4
45 /* on SUNOS4 termios.h conflicts with sys/ioctl.h */
46 #undef HAVE_TERMIOS_H
47 #endif
48
49 #ifndef DEFAULT_PRINTING
50 #define DEFAULT_PRINTING PRINT_BSD
51 #endif
52 #ifndef PRINTCAP_NAME
53 #define PRINTCAP_NAME "/etc/printcap"
54 #endif
55
56 #ifdef __GNUC__
57 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
58  * the parameter containing the format, and a2 the index of the first
59  * argument.  **/
60 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
61 #else
62 #define PRINTF_ATTRIBUTE(a1, a2)
63 #endif
64
65 #ifdef __GNUC__
66 /** gcc attribute used on function parameters so that it does not emit
67  * warnings about them being unused. **/
68 #  define UNUSED(param) param __attribute__ ((unused))
69 #else
70 #  define UNUSED(param) param
71 /** Feel free to add definitions for other compilers here. */
72 #endif
73
74 #ifdef RELIANTUNIX
75 /*
76  * <unistd.h> has to be included before any other to get
77  * large file support on Reliant UNIX. Yes, it's broken :-).
78  */
79 #ifdef HAVE_UNISTD_H
80 #include <unistd.h>
81 #endif
82 #endif /* RELIANTUNIX */
83
84 #include <sys/types.h>
85
86 #ifdef TIME_WITH_SYS_TIME
87 #include <sys/time.h>
88 #include <time.h>
89 #else
90 #ifdef HAVE_SYS_TIME_H
91 #include <sys/time.h>
92 #else
93 #include <time.h>
94 #endif
95 #endif
96
97 #ifdef HAVE_SYS_RESOURCE_H
98 #include <sys/resource.h>
99 #endif
100
101 #ifdef HAVE_UNISTD_H
102 #include <unistd.h>
103 #endif
104
105 #include <stdio.h>
106 #include <stddef.h>
107
108 #ifdef HAVE_SYS_PARAM_H
109 #include <sys/param.h>
110 #endif
111
112 #ifdef HAVE_STDLIB_H
113 #include <stdlib.h>
114 #endif
115
116 #ifdef HAVE_SYS_SOCKET_H
117 #include <sys/socket.h>
118 #endif
119
120 #ifdef HAVE_UNIXSOCKET
121 #include <sys/un.h>
122 #endif
123
124 #ifdef HAVE_SYS_SYSCALL_H
125 #include <sys/syscall.h>
126 #elif HAVE_SYSCALL_H
127 #include <syscall.h>
128 #endif
129
130 #ifdef HAVE_STRING_H
131 #include <string.h>
132 #endif
133
134 #ifdef HAVE_STRINGS_H
135 #include <strings.h>
136 #endif
137
138 #ifdef HAVE_MEMORY_H
139 #include <memory.h>
140 #endif
141
142 #ifdef HAVE_MALLOC_H
143 #include <malloc.h>
144 #endif
145
146 #ifdef HAVE_FCNTL_H
147 #include <fcntl.h>
148 #else
149 #ifdef HAVE_SYS_FCNTL_H
150 #include <sys/fcntl.h>
151 #endif
152 #endif
153
154 #include <sys/stat.h>
155
156 #ifdef HAVE_LIMITS_H
157 #include <limits.h>
158 #endif
159
160 #ifdef HAVE_SYS_IOCTL_H
161 #include <sys/ioctl.h>
162 #endif
163
164 #ifdef HAVE_SYS_FILIO_H
165 #include <sys/filio.h>
166 #endif
167
168 #include <signal.h>
169
170 #ifdef HAVE_SYS_WAIT_H
171 #include <sys/wait.h>
172 #endif
173 #ifdef HAVE_CTYPE_H
174 #include <ctype.h>
175 #endif
176 #ifdef HAVE_GRP_H
177 #include <grp.h>
178 #endif
179 #ifdef HAVE_SYS_PRIV_H
180 #include <sys/priv.h>
181 #endif
182 #ifdef HAVE_SYS_ID_H
183 #include <sys/id.h>
184 #endif
185
186 #include <errno.h>
187
188 #ifdef HAVE_UTIME_H
189 #include <utime.h>
190 #endif
191
192 #ifdef HAVE_SYS_SELECT_H
193 #include <sys/select.h>
194 #endif
195
196 #ifdef HAVE_SYS_MODE_H
197 /* apparently AIX needs this for S_ISLNK */
198 #ifndef S_ISLNK
199 #include <sys/mode.h>
200 #endif
201 #endif
202
203 #ifdef HAVE_GLOB_H
204 #include <glob.h>
205 #endif
206
207 #include <pwd.h>
208
209 #ifdef HAVE_STDARG_H
210 #include <stdarg.h>
211 #else
212 #include <varargs.h>
213 #endif
214
215 #include <netinet/in.h>
216 #include <arpa/inet.h>
217 #include <netdb.h>
218
219 #ifdef HAVE_SYSLOG_H
220 #include <syslog.h>
221 #else
222 #ifdef HAVE_SYS_SYSLOG_H
223 #include <sys/syslog.h>
224 #endif
225 #endif
226
227 #include <sys/file.h>
228
229 #ifdef HAVE_NETINET_TCP_H
230 #include <netinet/tcp.h>
231 #endif
232
233 /*
234  * The next three defines are needed to access the IPTOS_* options
235  * on some systems.
236  */
237
238 #ifdef HAVE_NETINET_IN_SYSTM_H
239 #include <netinet/in_systm.h>
240 #endif
241
242 #ifdef HAVE_NETINET_IN_IP_H
243 #include <netinet/in_ip.h>
244 #endif
245
246 #ifdef HAVE_NETINET_IP_H
247 #include <netinet/ip.h>
248 #endif
249
250 #if defined(HAVE_TERMIOS_H)
251 /* POSIX terminal handling. */
252 #include <termios.h>
253 #elif defined(HAVE_TERMIO_H)
254 /* Older SYSV terminal handling - don't use if we can avoid it. */
255 #include <termio.h>
256 #elif defined(HAVE_SYS_TERMIO_H)
257 /* Older SYSV terminal handling - don't use if we can avoid it. */
258 #include <sys/termio.h>
259 #endif
260
261 #if HAVE_DIRENT_H
262 # include <dirent.h>
263 # define NAMLEN(dirent) strlen((dirent)->d_name)
264 #else
265 # define dirent direct
266 # define NAMLEN(dirent) (dirent)->d_namlen
267 # if HAVE_SYS_NDIR_H
268 #  include <sys/ndir.h>
269 # endif
270 # if HAVE_SYS_DIR_H
271 #  include <sys/dir.h>
272 # endif
273 # if HAVE_NDIR_H
274 #  include <ndir.h>
275 # endif
276 #endif
277
278 #ifdef HAVE_SYS_MMAN_H
279 #include <sys/mman.h>
280 #endif
281
282 #ifdef HAVE_NET_IF_H
283 #include <net/if.h>
284 #endif
285
286
287 #ifdef HAVE_SYS_MOUNT_H
288 #include <sys/mount.h>
289 #endif
290
291 #ifdef HAVE_SYS_VFS_H
292 #include <sys/vfs.h>
293 #endif
294
295 #ifdef HAVE_SYS_ACL_H
296 #include <sys/acl.h>
297 #endif
298
299 #ifdef HAVE_SYS_FS_S5PARAM_H 
300 #include <sys/fs/s5param.h>
301 #endif
302
303 #if defined (HAVE_SYS_FILSYS_H) && !defined (_CRAY)
304 #include <sys/filsys.h> 
305 #endif
306
307 #ifdef HAVE_SYS_STATFS_H
308 # include <sys/statfs.h>
309 #endif
310
311 #ifdef HAVE_DUSTAT_H              
312 #include <sys/dustat.h>
313 #endif
314
315 #ifdef HAVE_SYS_STATVFS_H          
316 #include <sys/statvfs.h>
317 #endif
318
319 #ifdef HAVE_SHADOW_H
320 #include <shadow.h>
321 #endif
322
323 #ifdef HAVE_GETPWANAM
324 #include <sys/label.h>
325 #include <sys/audit.h>
326 #include <pwdadj.h>
327 #endif
328
329 #ifdef HAVE_SYS_SECURITY_H
330 #include <sys/security.h>
331 #include <prot.h>
332 #define PASSWORD_LENGTH 16
333 #endif  /* HAVE_SYS_SECURITY_H */
334
335 #ifdef HAVE_COMPAT_H
336 #include <compat.h>
337 #endif
338
339 #ifdef HAVE_STROPTS_H
340 #include <stropts.h>
341 #endif
342
343 #ifdef HAVE_SYS_CAPABILITY_H
344
345 #if defined(BROKEN_REDHAT_7_SYSTEM_HEADERS) && !defined(_I386_STATFS_H)
346 #define _I386_STATFS_H
347 #define BROKEN_REDHAT_7_STATFS_WORKAROUND
348 #endif
349
350 #include <sys/capability.h>
351
352 #ifdef BROKEN_REDHAT_7_STATFS_WORKAROUND
353 #undef _I386_STATFS_H
354 #undef BROKEN_REDHAT_7_STATFS_WORKAROUND
355 #endif
356
357 #endif
358
359 #if defined(HAVE_SYS_IPC_H)
360 #include <sys/ipc.h>
361 #endif /* HAVE_SYS_IPC_H */
362
363 #if defined(HAVE_SYS_SHM_H)
364 #include <sys/shm.h>
365 #endif /* HAVE_SYS_SHM_H */
366
367 #ifdef HAVE_NATIVE_ICONV
368 #ifdef HAVE_ICONV
369 #include <iconv.h>
370 #endif
371 #ifdef HAVE_GICONV
372 #include <giconv.h>
373 #endif
374 #endif
375
376 #if HAVE_KRB5_H
377 #include <krb5.h>
378 #else
379 #undef HAVE_KRB5
380 #endif
381
382 #if HAVE_LBER_H
383 #include <lber.h>
384 #endif
385
386 #if HAVE_LDAP_H
387 #include <ldap.h>
388 #else
389 #undef HAVE_LDAP
390 #endif
391
392 #if HAVE_GSSAPI_H
393 #include <gssapi.h>
394 #endif
395
396 #if HAVE_GSSAPI_GSSAPI_H
397 #include <gssapi/gssapi.h>
398 #endif
399
400 #if HAVE_GSSAPI_GSSAPI_GENERIC_H
401 #include <gssapi/gssapi_generic.h>
402 #endif
403
404 #if HAVE_COM_ERR_H
405 #include <com_err.h>
406 #endif
407
408 /* we support ADS if we want it and have krb5 and ldap libs */
409 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
410 #define HAVE_ADS
411 #endif
412
413 /*
414  * Define VOLATILE if needed.
415  */
416
417 #if defined(HAVE_VOLATILE)
418 #define VOLATILE volatile
419 #else
420 #define VOLATILE
421 #endif
422
423 /*
424  * Define additional missing types
425  */
426 #ifndef HAVE_SIG_ATOMIC_T_TYPE
427 typedef int sig_atomic_t;
428 #endif
429
430 #ifndef HAVE_SOCKLEN_T_TYPE
431 typedef int socklen_t;
432 #endif
433
434
435 /*
436    Samba needs type definitions for 
437    int8_t,  int16_t,  int32_t, int64_t 
438    uint8_t, uint16_t, uint32_t and uint64_t.
439
440    Normally these are signed and unsigned 8, 16, 32 and 64 bit integers, but
441    they actually only need to be at least 8, 16, 32 and 64 bits
442    respectively. Thus if your word size is 8 bytes just defining them
443    as signed and unsigned int will work.
444 */
445
446 #if !defined(int8)
447 #define int8 int8_t
448 #endif
449
450 #if !defined(uint8)
451 #define uint8 uint8_t
452 #endif
453
454 #if !defined(int16)
455 #define int16 int16_t
456 #endif
457
458 #if !defined(uint16)
459 #define uint16 uint16_t
460 #endif
461
462 #if !defined(int32)
463 #define int32 int32_t
464 #endif
465
466 #if !defined(uint32)
467 #define uint32 uint32_t
468 #endif
469
470 #if !defined(int64)
471 #define int64 int64_t
472 #endif
473
474 #if !defined(uint64)
475 #define uint64 uint64_t
476 #endif
477
478 /*
479  * Types for devices, inodes and offsets.
480  */
481
482 #ifndef SMB_DEV_T
483 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)
484 #    define SMB_DEV_T dev64_t
485 #  else
486 #    define SMB_DEV_T dev_t
487 #  endif
488 #endif
489
490 /*
491  * Setup the correctly sized inode type.
492  */
493
494 #ifndef SMB_INO_T
495 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)
496 #    define SMB_INO_T ino64_t
497 #  else
498 #    define SMB_INO_T ino_t
499 #  endif
500 #endif
501
502 #ifndef LARGE_SMB_INO_T
503 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8))
504 #    define LARGE_SMB_INO_T 1
505 #  endif
506 #endif
507
508 #ifdef LARGE_SMB_INO_T
509 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
510 #else 
511 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
512 #endif
513
514 #ifndef SMB_OFF_T
515 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)
516 #    define SMB_OFF_T off64_t
517 #  else
518 #    define SMB_OFF_T off_t
519 #  endif
520 #endif
521
522 /*
523  * Set the define that tells us if we can do 64 bit
524  * NT SMB calls.
525  */
526
527 #ifndef LARGE_SMB_OFF_T
528 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))
529 #    define LARGE_SMB_OFF_T 1
530 #  endif
531 #endif
532
533 /*
534  * Type for stat structure.
535  */
536
537 #ifndef SMB_STRUCT_STAT
538 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STAT64) && defined(HAVE_OFF64_T)
539 #    define SMB_STRUCT_STAT struct stat64
540 #  else
541 #    define SMB_STRUCT_STAT struct stat
542 #  endif
543 #endif
544
545 /*
546  * Type for dirent structure.
547  */
548
549 #ifndef SMB_STRUCT_DIRENT
550 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIRENT64)
551 #    define smb_dirent dirent64
552 #  else
553 #    define smb_dirent dirent
554 #  endif
555 #endif
556
557 /*
558  * Defines for 64 bit fcntl locks.
559  */
560
561 #ifndef SMB_STRUCT_FLOCK
562 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
563 #    define SMB_STRUCT_FLOCK struct flock64
564 #  else
565 #    define SMB_STRUCT_FLOCK struct flock
566 #  endif
567 #endif
568
569 #ifndef SMB_F_SETLKW
570 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
571 #    define SMB_F_SETLKW F_SETLKW64
572 #  else
573 #    define SMB_F_SETLKW F_SETLKW
574 #  endif
575 #endif
576
577 #ifndef SMB_F_SETLK
578 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
579 #    define SMB_F_SETLK F_SETLK64
580 #  else
581 #    define SMB_F_SETLK F_SETLK
582 #  endif
583 #endif
584
585 #ifndef SMB_F_GETLK
586 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
587 #    define SMB_F_GETLK F_GETLK64
588 #  else
589 #    define SMB_F_GETLK F_GETLK
590 #  endif
591 #endif
592
593 #ifndef MIN
594 #define MIN(a,b) ((a)<(b)?(a):(b))
595 #endif
596
597 #ifndef MAX
598 #define MAX(a,b) ((a)>(b)?(a):(b))
599 #endif
600
601 #ifndef HAVE_STRERROR
602 extern char *sys_errlist[];
603 #define strerror(i) sys_errlist[i]
604 #endif
605
606 #ifndef HAVE_ERRNO_DECL
607 extern int errno;
608 #endif
609
610 #ifdef HAVE_BROKEN_GETGROUPS
611 #define GID_T int
612 #else
613 #define GID_T gid_t
614 #endif
615
616 #ifndef NGROUPS_MAX
617 #define NGROUPS_MAX 32 /* Guess... */
618 #endif
619
620 /* Our own pstrings and fstrings */
621 #include "pstring.h"
622
623 /* Lists, trees, caching, database... */
624 #include "xfile.h"
625 #include "dlinklist.h"
626 #include "lib/ldb/include/ldb.h"
627 #include "lib/tdb/include/tdb.h"
628 #include "lib/tdb/include/spinlock.h"
629 #include "lib/tdb/include/tdbutil.h"
630 #include "talloc.h"
631 #include "nt_status.h"
632 #include "interfaces.h"
633 #include "trans2.h"
634 #include "ioctl.h"
635 #include "nterr.h"
636 #include "messages.h"
637 #include "charset.h"
638 #include "dynconfig.h"
639
640 #include "version.h"
641 #include "rewrite.h"
642 #include "smb.h"
643 #include "ads.h"
644 #include "nameserv.h"
645 #include "secrets.h"
646
647 #include "byteorder.h"
648
649 #include "md5.h"
650 #include "hmacmd5.h"
651
652 #include "libcli/auth/ntlmssp.h"
653 #include "libcli/auth/credentials.h"
654 #include "libcli/auth/schannel.h"
655 #include "libcli/auth/kerberos.h"
656 #include "libcli/auth/gensec.h"
657 #include "libcli/auth/spnego.h"
658
659 #include "auth/auth.h"
660
661 #include "module.h"
662
663 #include "asn_1.h"
664
665 #include "popt.h"
666
667 #include "mutex.h"
668
669 #include "librpc/rpc/dcerpc.h"
670
671 #include "smbd/server.h"
672 #include "smbd/service.h"
673 #include "rpc_server/dcerpc_server.h"
674 #include "smb_server/smb_server.h"
675 #include "ntvfs/ntvfs.h"
676 #include "cli_context.h"
677 #include "registry.h"
678 #include "rap.h"
679 #include "gtk/common/gtk-smb.h"
680 #include "gtk/common/select.h"
681
682 #define malloc_p(type) (type *)malloc(sizeof(type))
683 #define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count)
684 #define realloc_p(p, type, count) (type *)realloc_array(p, sizeof(type), count)
685
686 #ifndef HAVE_COMPARISON_FN_T
687 typedef int (*comparison_fn_t)(const void *, const void *);
688 #endif
689
690 /***** automatically generated prototypes *****/
691 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
692 #include "proto.h"
693 #undef _PRINTF_ATTRIBUTE
694 #define _PRINTF_ATTRIBUTE(a1, a2)
695
696 /* String routines */
697
698 #include "safe_string.h"
699
700 #ifdef __COMPAR_FN_T
701 #define QSORT_CAST (__compar_fn_t)
702 #endif
703
704 #ifndef QSORT_CAST
705 #define QSORT_CAST (int (*)(const void *, const void *))
706 #endif
707
708 #ifndef SIGCLD
709 #define SIGCLD SIGCHLD
710 #endif
711
712 #ifndef MAP_FILE
713 #define MAP_FILE 0
714 #endif
715
716 #if defined(HAVE_PUTPRPWNAM) && defined(AUTH_CLEARTEXT_SEG_CHARS)
717 #define OSF1_ENH_SEC 1
718 #endif
719
720 #ifndef ALLOW_CHANGE_PASSWORD
721 #if (defined(HAVE_TERMIOS_H) && defined(HAVE_DUP2) && defined(HAVE_SETSID))
722 #define ALLOW_CHANGE_PASSWORD 1
723 #endif
724 #endif
725
726 /* what is the longest significant password available on your system? 
727  Knowing this speeds up password searches a lot */
728 #ifndef PASSWORD_LENGTH
729 #define PASSWORD_LENGTH 8
730 #endif
731
732 #ifdef REPLACE_INET_NTOA
733 #define inet_ntoa rep_inet_ntoa
734 #endif
735
736 #ifndef HAVE_PIPE
737 #define SYNC_DNS 1
738 #endif
739
740 #ifndef MAXPATHLEN
741 #define MAXPATHLEN 256
742 #endif
743
744 #ifndef SEEK_SET
745 #define SEEK_SET 0
746 #endif
747
748 #ifndef INADDR_LOOPBACK
749 #define INADDR_LOOPBACK 0x7f000001
750 #endif
751
752 #ifndef INADDR_NONE
753 #define INADDR_NONE 0xffffffff
754 #endif
755
756 #ifndef HAVE_CRYPT
757 #define crypt ufc_crypt
758 #endif
759
760 #ifndef O_ACCMODE
761 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
762 #endif
763
764 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
765 #define ULTRIX_AUTH 1
766 #endif
767
768 #ifndef HAVE_STRDUP
769 char *strdup(const char *s);
770 #endif
771
772 #ifndef HAVE_MEMMOVE
773 void *memmove(void *dest,const void *src,int size);
774 #endif
775
776 #ifndef HAVE_INITGROUPS
777 int initgroups(char *name,gid_t id);
778 #endif
779
780 #ifndef HAVE_RENAME
781 int rename(const char *zfrom, const char *zto);
782 #endif
783
784 #ifndef HAVE_MKTIME
785 time_t mktime(struct tm *t);
786 #endif
787
788 #ifndef HAVE_STRLCPY
789 size_t strlcpy(char *d, const char *s, size_t bufsize);
790 #endif
791
792 #ifndef HAVE_STRLCAT
793 size_t strlcat(char *d, const char *s, size_t bufsize);
794 #endif
795
796 #ifndef HAVE_FTRUNCATE
797 int ftruncate(int f,long l);
798 #endif
799
800 #ifndef HAVE_STRNDUP
801 char *strndup(const char *s, size_t n);
802 #endif
803
804 #ifndef HAVE_STRNLEN
805 size_t strnlen(const char *s, size_t n);
806 #endif
807
808 #ifndef HAVE_STRTOUL
809 unsigned long strtoul(const char *nptr, char **endptr, int base);
810 #endif
811
812 #ifndef HAVE_SETENV
813 int setenv(const char *name, const char *value, int overwrite); 
814 #endif
815
816 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESUID_DECL))
817 /* stupid glibc */
818 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
819 #endif
820 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESGID_DECL))
821 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
822 #endif
823 #ifndef HAVE_VASPRINTF_DECL
824 int vasprintf(char **ptr, const char *format, va_list ap);
825 #endif
826
827 #if !defined(HAVE_BZERO) && defined(HAVE_MEMSET)
828 #define bzero(a,b) memset((a),'\0',(b))
829 #endif
830
831 #ifdef REPLACE_GETPASS
832 #define getpass(prompt) getsmbpass((prompt))
833 #endif
834
835 /*
836  * Some older systems seem not to have MAXHOSTNAMELEN
837  * defined.
838  */
839 #ifndef MAXHOSTNAMELEN
840 #define MAXHOSTNAMELEN 254
841 #endif
842
843 /* yuck, I'd like a better way of doing this */
844 #define DIRP_SIZE (256 + 32)
845
846 /*
847  * glibc on linux doesn't seem to have MSG_WAITALL
848  * defined. I think the kernel has it though..
849  */
850
851 #ifndef MSG_WAITALL
852 #define MSG_WAITALL 0
853 #endif
854
855 /* default socket options. Dave Miller thinks we should default to TCP_NODELAY
856    given the socket IO pattern that Samba uses */
857 #ifdef TCP_NODELAY
858 #define DEFAULT_SOCKET_OPTIONS "TCP_NODELAY"
859 #else
860 #define DEFAULT_SOCKET_OPTIONS ""
861 #endif
862
863 /* Load header file for dynamic linking stuff */
864
865 #ifdef HAVE_DLFCN_H
866 #include <dlfcn.h>
867 #endif
868
869 /* dmalloc -- free heap debugger (dmalloc.org).  This should be near
870  * the *bottom* of include files so as not to conflict. */
871 #ifdef ENABLE_DMALLOC
872 #  include <dmalloc.h>
873 #endif
874
875
876 /* Some POSIX definitions for those without */
877  
878 #ifndef S_IFDIR
879 #define S_IFDIR         0x4000
880 #endif
881 #ifndef S_ISDIR
882 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
883 #endif
884 #ifndef S_IRWXU
885 #define S_IRWXU 00700           /* read, write, execute: owner */
886 #endif
887 #ifndef S_IRUSR
888 #define S_IRUSR 00400           /* read permission: owner */
889 #endif
890 #ifndef S_IWUSR
891 #define S_IWUSR 00200           /* write permission: owner */
892 #endif
893 #ifndef S_IXUSR
894 #define S_IXUSR 00100           /* execute permission: owner */
895 #endif
896 #ifndef S_IRWXG
897 #define S_IRWXG 00070           /* read, write, execute: group */
898 #endif
899 #ifndef S_IRGRP
900 #define S_IRGRP 00040           /* read permission: group */
901 #endif
902 #ifndef S_IWGRP
903 #define S_IWGRP 00020           /* write permission: group */
904 #endif
905 #ifndef S_IXGRP
906 #define S_IXGRP 00010           /* execute permission: group */
907 #endif
908 #ifndef S_IRWXO
909 #define S_IRWXO 00007           /* read, write, execute: other */
910 #endif
911 #ifndef S_IROTH
912 #define S_IROTH 00004           /* read permission: other */
913 #endif
914 #ifndef S_IWOTH
915 #define S_IWOTH 00002           /* write permission: other */
916 #endif
917 #ifndef S_IXOTH
918 #define S_IXOTH 00001           /* execute permission: other */
919 #endif
920
921 /* For sys_adminlog(). */
922 #ifndef LOG_EMERG
923 #define LOG_EMERG       0       /* system is unusable */
924 #endif
925
926 #ifndef LOG_ALERT
927 #define LOG_ALERT       1       /* action must be taken immediately */
928 #endif
929
930 #ifndef LOG_CRIT
931 #define LOG_CRIT        2       /* critical conditions */
932 #endif
933
934 #ifndef LOG_ERR
935 #define LOG_ERR         3       /* error conditions */
936 #endif
937
938 #ifndef LOG_WARNING
939 #define LOG_WARNING     4       /* warning conditions */
940 #endif
941
942 #ifndef LOG_NOTICE
943 #define LOG_NOTICE      5       /* normal but significant condition */
944 #endif
945
946 #ifndef LOG_INFO
947 #define LOG_INFO        6       /* informational */
948 #endif
949
950 #ifndef LOG_DEBUG
951 #define LOG_DEBUG       7       /* debug-level messages */
952 #endif
953
954 /* NetBSD doesn't have these */
955 #ifndef SHM_R
956 #define SHM_R 0400
957 #endif
958
959 #ifndef SHM_W
960 #define SHM_W 0200
961 #endif
962
963 #if HAVE_KERNEL_SHARE_MODES
964 #ifndef LOCK_MAND 
965 #define LOCK_MAND       32      /* This is a mandatory flock */
966 #define LOCK_READ       64      /* ... Which allows concurrent read operations */
967 #define LOCK_WRITE      128     /* ... Which allows concurrent write operations */
968 #define LOCK_RW         192     /* ... Which allows concurrent read & write ops */
969 #endif
970 #endif
971
972 extern int DEBUGLEVEL;
973
974 #define MAX_SEC_CTX_DEPTH 8    /* Maximum number of security contexts */
975
976
977 #ifdef GLIBC_HACK_FCNTL64
978 /* this is a gross hack. 64 bit locking is completely screwed up on
979    i386 Linux in glibc 2.1.95 (which ships with RedHat 7.0). This hack
980    "fixes" the problem with the current 2.4.0test kernels 
981 */
982 #define fcntl fcntl64
983 #undef F_SETLKW 
984 #undef F_SETLK 
985 #define F_SETLK 13
986 #define F_SETLKW 14
987 #endif
988
989
990 /* Needed for sys_dlopen/sys_dlsym/sys_dlclose */
991 #ifndef RTLD_GLOBAL
992 #define RTLD_GLOBAL 0
993 #endif
994
995 #ifndef RTLD_LAZY
996 #define RTLD_LAZY 0
997 #endif
998
999 #ifndef RTLD_NOW
1000 #define RTLD_NOW 0
1001 #endif
1002
1003 /* needed for some systems without iconv. Doesn't really matter
1004    what error code we use */
1005 #ifndef EILSEQ
1006 #define EILSEQ EIO
1007 #endif
1008
1009 /* add varargs prototypes with printf checking */
1010 int fdprintf(int , const char *, ...) PRINTF_ATTRIBUTE(2,3);
1011 int d_printf(const char *, ...) PRINTF_ATTRIBUTE(1,2);
1012 int d_fprintf(FILE *f, const char *, ...) PRINTF_ATTRIBUTE(2,3);
1013 #ifndef HAVE_SNPRINTF_DECL
1014 int snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
1015 #endif
1016 #ifndef HAVE_ASPRINTF_DECL
1017 int asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
1018 #endif
1019
1020 void sys_adminlog(int priority, const char *format_str, ...) PRINTF_ATTRIBUTE(2,3);
1021
1022 int pstr_sprintf(pstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
1023 int fstr_sprintf(fstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
1024
1025 int d_vfprintf(FILE *f, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
1026
1027 int smb_xvasprintf(char **ptr, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
1028
1029 /* we used to use these fns, but now we have good replacements
1030    for snprintf and vsnprintf */
1031 #define slprintf snprintf
1032 #define vslprintf vsnprintf
1033
1034
1035 /* we need to use __va_copy() on some platforms */
1036 #ifdef HAVE_VA_COPY
1037 #define VA_COPY(dest, src) __va_copy(dest, src)
1038 #else
1039 #define VA_COPY(dest, src) (dest) = (src)
1040 #endif
1041
1042 #ifndef HAVE_TIMEGM
1043 time_t timegm(struct tm *tm);
1044 #endif
1045
1046 #if defined(VALGRIND)
1047 #define strlen(x) valgrind_strlen(x)
1048 #endif
1049
1050 /*
1051  * Veritas File System.  Often in addition to native.
1052  * Quotas different.
1053  */
1054 #if defined(HAVE_SYS_FS_VX_QUOTA_H)
1055 #define VXFS_QUOTA
1056 #endif
1057
1058 #endif /* _INCLUDES_H */
1059