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>
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.
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.
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.
24 #ifndef NO_CONFIG_H /* for some tests */
31 #define DEFAULT_PRINTING PRINT_AIX
32 #define PRINTCAP_NAME "/etc/qconfig"
36 #define DEFAULT_PRINTING PRINT_HPUX
40 #define DEFAULT_PRINTING PRINT_QNX
44 /* on SUNOS4 termios.h conflicts with sys/ioctl.h */
49 /** Use gcc attribute to check printf fns. a1 is the 1-based index of
50 * the parameter containing the format, and a2 the index of the first
52 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
54 #define PRINTF_ATTRIBUTE(a1, a2)
58 /** gcc attribute used on function parameters so that it does not emit
59 * warnings about them being unused. **/
60 # define UNUSED(param) param __attribute__ ((unused))
62 # define UNUSED(param) param
63 /** Feel free to add definitions for other compilers here. */
68 * <unistd.h> has to be included before any other to get
69 * large file support on Reliant UNIX. Yes, it's broken :-).
74 #endif /* RELIANTUNIX */
76 #include <sys/types.h>
78 #ifdef TIME_WITH_SYS_TIME
82 #ifdef HAVE_SYS_TIME_H
89 #ifdef HAVE_SYS_RESOURCE_H
90 #include <sys/resource.h>
100 #ifdef HAVE_SYS_PARAM_H
101 #include <sys/param.h>
108 #ifdef HAVE_SYS_SOCKET_H
109 #include <sys/socket.h>
112 #ifdef HAVE_UNIXSOCKET
116 #ifdef HAVE_SYS_SYSCALL_H
117 #include <sys/syscall.h>
126 #ifdef HAVE_STRINGS_H
141 #ifdef HAVE_SYS_FCNTL_H
142 #include <sys/fcntl.h>
146 #include <sys/stat.h>
152 #ifdef HAVE_SYS_IOCTL_H
153 #include <sys/ioctl.h>
156 #ifdef HAVE_SYS_FILIO_H
157 #include <sys/filio.h>
162 #ifdef HAVE_SYS_WAIT_H
163 #include <sys/wait.h>
171 #ifdef HAVE_SYS_PRIV_H
172 #include <sys/priv.h>
184 #ifdef HAVE_SYS_SELECT_H
185 #include <sys/select.h>
188 #ifdef HAVE_SYS_MODE_H
189 /* apparently AIX needs this for S_ISLNK */
191 #include <sys/mode.h>
207 #include <netinet/in.h>
208 #include <arpa/inet.h>
214 #ifdef HAVE_SYS_SYSLOG_H
215 #include <sys/syslog.h>
219 #include <sys/file.h>
221 #ifdef HAVE_NETINET_TCP_H
222 #include <netinet/tcp.h>
226 * The next three defines are needed to access the IPTOS_* options
230 #ifdef HAVE_NETINET_IN_SYSTM_H
231 #include <netinet/in_systm.h>
234 #ifdef HAVE_NETINET_IN_IP_H
235 #include <netinet/in_ip.h>
238 #ifdef HAVE_NETINET_IP_H
239 #include <netinet/ip.h>
242 #if defined(HAVE_TERMIOS_H)
243 /* POSIX terminal handling. */
245 #elif defined(HAVE_TERMIO_H)
246 /* Older SYSV terminal handling - don't use if we can avoid it. */
248 #elif defined(HAVE_SYS_TERMIO_H)
249 /* Older SYSV terminal handling - don't use if we can avoid it. */
250 #include <sys/termio.h>
255 # define NAMLEN(dirent) strlen((dirent)->d_name)
257 # define dirent direct
258 # define NAMLEN(dirent) (dirent)->d_namlen
260 # include <sys/ndir.h>
263 # include <sys/dir.h>
270 #ifdef HAVE_SYS_MMAN_H
271 #include <sys/mman.h>
279 #ifdef HAVE_SYS_MOUNT_H
280 #include <sys/mount.h>
283 #ifdef HAVE_SYS_VFS_H
287 #ifdef HAVE_SYS_ACL_H
291 #ifdef HAVE_SYS_FS_S5PARAM_H
292 #include <sys/fs/s5param.h>
295 #if defined (HAVE_SYS_FILSYS_H) && !defined (_CRAY)
296 #include <sys/filsys.h>
299 #ifdef HAVE_SYS_STATFS_H
300 # include <sys/statfs.h>
304 #include <sys/dustat.h>
307 #ifdef HAVE_SYS_STATVFS_H
308 #include <sys/statvfs.h>
315 #ifdef HAVE_GETPWANAM
316 #include <sys/label.h>
317 #include <sys/audit.h>
321 #ifdef HAVE_SYS_SECURITY_H
322 #include <sys/security.h>
324 #define PASSWORD_LENGTH 16
325 #endif /* HAVE_SYS_SECURITY_H */
327 #ifdef HAVE_STROPTS_H
335 #ifdef HAVE_EXECINFO_H
336 #include <execinfo.h>
339 #ifdef HAVE_SYS_CAPABILITY_H
341 #if defined(BROKEN_REDHAT_7_SYSTEM_HEADERS) && !defined(_I386_STATFS_H) && !defined(_PPC_STATFS_H)
342 #define _I386_STATFS_H
343 #define _PPC_STATFS_H
344 #define BROKEN_REDHAT_7_STATFS_WORKAROUND
347 #include <sys/capability.h>
349 #ifdef BROKEN_REDHAT_7_STATFS_WORKAROUND
350 #undef _I386_STATFS_H
352 #undef BROKEN_REDHAT_7_STATFS_WORKAROUND
357 #if defined(HAVE_RPC_RPC_H)
359 * Check for AUTH_ERROR define conflict with rpc/rpc.h in prot.h.
361 #if defined(HAVE_SYS_SECURITY_H) && defined(HAVE_RPC_AUTH_ERROR_CONFLICT)
367 #if defined(HAVE_YP_GET_DEFAULT_DOMAIN) && defined(HAVE_SETNETGRENT) && defined(HAVE_ENDNETGRENT) && defined(HAVE_GETNETGRENT)
368 #define HAVE_NETGROUP 1
371 #if defined (HAVE_NETGROUP)
372 #if defined(HAVE_RPCSVC_YP_PROT_H)
373 #include <rpcsvc/yp_prot.h>
375 #if defined(HAVE_RPCSVC_YPCLNT_H)
376 #include <rpcsvc/ypclnt.h>
378 #endif /* HAVE_NETGROUP */
380 #if defined(HAVE_SYS_IPC_H)
382 #endif /* HAVE_SYS_IPC_H */
384 #if defined(HAVE_SYS_SHM_H)
386 #endif /* HAVE_SYS_SHM_H */
388 #ifdef HAVE_NATIVE_ICONV
417 #if HAVE_GSSAPI_GSSAPI_H
418 #include <gssapi/gssapi.h>
421 #if HAVE_GSSAPI_GSSAPI_GENERIC_H
422 #include <gssapi/gssapi_generic.h>
429 #if HAVE_SYS_ATTRIBUTES_H
430 #include <sys/attributes.h>
433 /* mutually exclusive (SuSE 8.2) */
434 #if HAVE_ATTR_XATTR_H
435 #include <attr/xattr.h>
436 #elif HAVE_SYS_XATTR_H
437 #include <sys/xattr.h>
445 #include <langinfo.h>
448 /* Special macros that are no-ops except when run under Valgrind on
449 * x86. They've moved a little bit from valgrind 1.0.4 to 1.9.4 */
450 #if HAVE_VALGRIND_MEMCHECK_H
451 /* memcheck.h includes valgrind.h */
452 #include <valgrind/memcheck.h>
453 #elif HAVE_VALGRIND_H
454 #include <valgrind.h>
457 /* If we have --enable-developer and the valgrind header is present,
458 * then we're OK to use it. Set a macro so this logic can be done only
460 #if defined(DEVELOPER) && (HAVE_VALGRIND_H || HAVE_VALGRIND_VALGRIND_H)
465 /* we support ADS if we want it and have krb5 and ldap libs */
466 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
471 * Define VOLATILE if needed.
474 #if defined(HAVE_VOLATILE)
475 #define VOLATILE volatile
481 * Define additional missing types
483 #if defined(HAVE_SIG_ATOMIC_T_TYPE) && defined(AIX)
484 typedef sig_atomic_t SIG_ATOMIC_T
;
485 #elif defined(HAVE_SIG_ATOMIC_T_TYPE) && !defined(AIX)
486 typedef sig_atomic_t VOLATILE SIG_ATOMIC_T
;
488 typedef int VOLATILE SIG_ATOMIC_T
;
491 #ifndef HAVE_SOCKLEN_T_TYPE
492 typedef int socklen_t
;
497 #define uchar unsigned char
500 #ifdef HAVE_UNSIGNED_CHAR
501 #define schar signed char
507 Samba needs type definitions for int16, int32, uint16 and uint32.
509 Normally these are signed and unsigned 16 and 32 bit integers, but
510 they actually only need to be at least 16 and 32 bits
511 respectively. Thus if your word size is 8 bytes just defining them
512 as signed and unsigned int will work.
516 #define uint8 unsigned char
519 #if !defined(int16) && !defined(HAVE_INT16_FROM_RPC_RPC_H)
520 #if (SIZEOF_SHORT == 4)
521 #define int16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
522 #else /* SIZEOF_SHORT != 4 */
524 #endif /* SIZEOF_SHORT != 4 */
528 * Note we duplicate the size tests in the unsigned
529 * case as int16 may be a typedef from rpc/rpc.h
532 #if !defined(uint16) && !defined(HAVE_UINT16_FROM_RPC_RPC_H)
533 #if (SIZEOF_SHORT == 4)
534 #define uint16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
535 #else /* SIZEOF_SHORT != 4 */
536 #define uint16 unsigned short
537 #endif /* SIZEOF_SHORT != 4 */
540 #if !defined(int32) && !defined(HAVE_INT32_FROM_RPC_RPC_H)
541 #if (SIZEOF_INT == 4)
543 #elif (SIZEOF_LONG == 4)
545 #elif (SIZEOF_SHORT == 4)
548 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
554 * Note we duplicate the size tests in the unsigned
555 * case as int32 may be a typedef from rpc/rpc.h
558 #if !defined(uint32) && !defined(HAVE_UINT32_FROM_RPC_RPC_H)
559 #if (SIZEOF_INT == 4)
560 #define uint32 unsigned int
561 #elif (SIZEOF_LONG == 4)
562 #define uint32 unsigned long
563 #elif (SIZEOF_SHORT == 4)
564 #define uint32 unsigned short
566 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
567 #define uint32 unsigned
572 * Types for devices, inodes and offsets.
576 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)
577 # define SMB_DEV_T dev64_t
579 # define SMB_DEV_T dev_t
584 * Setup the correctly sized inode type.
588 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)
589 # define SMB_INO_T ino64_t
591 # define SMB_INO_T ino_t
595 #ifndef LARGE_SMB_INO_T
596 # if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8))
597 # define LARGE_SMB_INO_T 1
601 #ifdef LARGE_SMB_INO_T
602 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
604 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
608 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)
609 # define SMB_OFF_T off64_t
611 # define SMB_OFF_T off_t
615 #if defined(HAVE_LONGLONG)
616 #define SMB_BIG_UINT unsigned long long
617 #define SMB_BIG_INT long long
618 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
620 #define SMB_BIG_UINT unsigned long
621 #define SMB_BIG_INT long
622 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
625 #define SMB_BIG_UINT_BITS (sizeof(SMB_BIG_UINT)*8)
627 /* this should really be a 64 bit type if possible */
628 #define br_off SMB_BIG_UINT
630 #define SMB_OFF_T_BITS (sizeof(SMB_OFF_T)*8)
633 * Set the define that tells us if we can do 64 bit
637 #ifndef LARGE_SMB_OFF_T
638 # if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))
639 # define LARGE_SMB_OFF_T 1
643 #ifdef LARGE_SMB_OFF_T
644 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
645 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,(v)&0xFFFFFFFF), SIVAL(p,ofs,(v)>>32))
646 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF) )))
647 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF)) | \
648 (( ((SMB_BIG_UINT)(IVAL((buf),(off+4)))) & ((SMB_BIG_UINT)0xFFFFFFFF) ) << 32 ) )
650 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
651 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,v),SIVAL(p,ofs,0))
652 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((uint32)(IVAL((buf),(off)))) & 0xFFFFFFFF )))
653 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF)) | \
654 (( ((SMB_BIG_UINT)(IVAL((buf),(off+4)))) & ((SMB_BIG_UINT)0xFFFFFFFF) ) << 32 ) )
658 * Type for stat structure.
661 #ifndef SMB_STRUCT_STAT
662 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STAT64) && defined(HAVE_OFF64_T)
663 # define SMB_STRUCT_STAT struct stat64
665 # define SMB_STRUCT_STAT struct stat
670 * Type for dirent structure.
673 #ifndef SMB_STRUCT_DIRENT
674 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIRENT64)
675 # define SMB_STRUCT_DIRENT struct dirent64
677 # define SMB_STRUCT_DIRENT struct dirent
682 * Defines for 64 bit fcntl locks.
685 #ifndef SMB_STRUCT_FLOCK
686 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
687 # define SMB_STRUCT_FLOCK struct flock64
689 # define SMB_STRUCT_FLOCK struct flock
694 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
695 # define SMB_F_SETLKW F_SETLKW64
697 # define SMB_F_SETLKW F_SETLKW
702 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
703 # define SMB_F_SETLK F_SETLK64
705 # define SMB_F_SETLK F_SETLK
710 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
711 # define SMB_F_GETLK F_GETLK64
713 # define SMB_F_GETLK F_GETLK
718 #define MIN(a,b) ((a)<(b)?(a):(b))
722 #define MAX(a,b) ((a)>(b)?(a):(b))
725 #ifndef HAVE_STRERROR
726 extern char *sys_errlist
[];
727 #define strerror(i) sys_errlist[i]
730 #ifndef HAVE_ERRNO_DECL
734 #ifdef HAVE_BROKEN_GETGROUPS
741 #define NGROUPS_MAX 32 /* Guess... */
744 /* Our own pstrings and fstrings */
747 /* Lists, trees, caching, database... */
750 #include "ubi_sLinkList.h"
751 #include "ubi_dLinkList.h"
752 #include "dlinklist.h"
753 #include "../tdb/tdb.h"
754 #include "../tdb/spinlock.h"
755 #include "../tdb/tdbutil.h"
757 #include "nt_status.h"
759 #include "interfaces.h"
764 #include "messages.h"
766 #include "dynconfig.h"
767 #include "adt_tree.h"
769 #include "util_getent.h"
771 #ifndef UBI_BINTREE_H
772 #include "ubi_Cache.h"
773 #endif /* UBI_BINTREE_H */
775 #include "debugparse.h"
781 #include "nameserv.h"
785 #include "byteorder.h"
787 #include "privileges.h"
789 #include "rpc_creds.h"
795 #include "ntdomain.h"
797 #include "rpc_misc.h"
799 #include "rpc_secdes.h"
801 #include "nt_printing.h"
805 #include "smbprofile.h"
832 #include "nsswitch/winbind_client.h"
837 * Type for wide character dirent structure.
838 * Only d_name is defined by POSIX.
841 typedef struct smb_wdirent
{
843 } SMB_STRUCT_WDIRENT
;
846 * Type for wide character passwd structure.
849 typedef struct smb_wpasswd
{
857 } SMB_STRUCT_WPASSWD
;
861 const char *funcname
;
862 int (*fn
)(int argc
, const char **argv
);
866 /* Defines for wisXXX functions. */
867 #define UNI_UPPER 0x1
868 #define UNI_LOWER 0x2
869 #define UNI_DIGIT 0x4
870 #define UNI_XDIGIT 0x8
871 #define UNI_SPACE 0x10
873 #include "nsswitch/winbind_nss.h"
875 /* forward declaration from printing.h to get around
876 header file dependencies */
880 struct smb_ldap_privates
;
882 /* forward declarations from smbldap.c */
886 /***** automatically generated prototypes *****/
891 /* String routines */
894 #include "safe_string.h"
897 #define QSORT_CAST (__compar_fn_t)
901 #define QSORT_CAST (int (*)(const void *, const void *))
904 #ifndef DEFAULT_PRINTING
906 #define DEFAULT_PRINTING PRINT_CUPS
907 #define PRINTCAP_NAME "cups"
909 #define DEFAULT_PRINTING PRINT_SYSV
910 #define PRINTCAP_NAME "lpstat"
912 #define DEFAULT_PRINTING PRINT_BSD
913 #define PRINTCAP_NAME "/etc/printcap"
917 #ifndef PRINTCAP_NAME
918 #define PRINTCAP_NAME "/etc/printcap"
922 #define SIGCLD SIGCHLD
933 #if defined(HAVE_PUTPRPWNAM) && defined(AUTH_CLEARTEXT_SEG_CHARS)
934 #define OSF1_ENH_SEC 1
937 #ifndef ALLOW_CHANGE_PASSWORD
938 #if (defined(HAVE_TERMIOS_H) && defined(HAVE_DUP2) && defined(HAVE_SETSID))
939 #define ALLOW_CHANGE_PASSWORD 1
943 /* what is the longest significant password available on your system?
944 Knowing this speeds up password searches a lot */
945 #ifndef PASSWORD_LENGTH
946 #define PASSWORD_LENGTH 8
949 #ifdef REPLACE_INET_NTOA
950 #define inet_ntoa rep_inet_ntoa
961 #ifndef INADDR_LOOPBACK
962 #define INADDR_LOOPBACK 0x7f000001
966 #define INADDR_NONE 0xffffffff
970 #define crypt ufc_crypt
974 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
977 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
978 #define ULTRIX_AUTH 1
982 char *strdup(const char *s
);
986 char *strndup(const char *s
, size_t size
);
990 void *memmove(void *dest
,const void *src
,int size
);
993 #ifndef HAVE_INITGROUPS
994 int initgroups(char *name
,gid_t id
);
998 int rename(const char *zfrom
, const char *zto
);
1002 time_t mktime(struct tm
*t
);
1005 #ifndef HAVE_STRLCPY
1006 size_t strlcpy(char *d
, const char *s
, size_t bufsize
);
1009 #ifndef HAVE_STRLCAT
1010 size_t strlcat(char *d
, const char *s
, size_t bufsize
);
1013 #ifndef HAVE_FTRUNCATE
1014 int ftruncate(int f
,long l
);
1017 #ifndef HAVE_STRNDUP
1018 char *strndup(const char *s
, size_t n
);
1021 #ifndef HAVE_STRNLEN
1022 size_t strnlen(const char *s
, size_t n
);
1025 #ifndef HAVE_STRTOUL
1026 unsigned long strtoul(const char *nptr
, char **endptr
, int base
);
1030 int setenv(const char *name
, const char *value
, int overwrite
);
1033 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESUID_DECL))
1035 int setresuid(uid_t ruid
, uid_t euid
, uid_t suid
);
1037 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESGID_DECL))
1038 int setresgid(gid_t rgid
, gid_t egid
, gid_t sgid
);
1040 #ifndef HAVE_VASPRINTF_DECL
1041 int vasprintf(char **ptr
, const char *format
, va_list ap
);
1044 #ifdef REPLACE_GETPASS
1045 #define getpass(prompt) getsmbpass((prompt))
1049 * Some older systems seem not to have MAXHOSTNAMELEN
1052 #ifndef MAXHOSTNAMELEN
1053 #define MAXHOSTNAMELEN 254
1056 /* yuck, I'd like a better way of doing this */
1057 #define DIRP_SIZE (256 + 32)
1060 * glibc on linux doesn't seem to have MSG_WAITALL
1061 * defined. I think the kernel has it though..
1065 #define MSG_WAITALL 0
1068 /* default socket options. Dave Miller thinks we should default to TCP_NODELAY
1069 given the socket IO pattern that Samba uses */
1071 #define DEFAULT_SOCKET_OPTIONS "TCP_NODELAY"
1073 #define DEFAULT_SOCKET_OPTIONS ""
1076 /* Load header file for dynamic linking stuff */
1082 /* dmalloc -- free heap debugger (dmalloc.org). This should be near
1083 * the *bottom* of include files so as not to conflict. */
1084 #ifdef ENABLE_DMALLOC
1085 # include <dmalloc.h>
1089 /* Some POSIX definitions for those without */
1092 #define S_IFDIR 0x4000
1095 #define S_ISDIR(mode) ((mode & 0xF000) == S_IFDIR)
1098 #define S_IRWXU 00700 /* read, write, execute: owner */
1101 #define S_IRUSR 00400 /* read permission: owner */
1104 #define S_IWUSR 00200 /* write permission: owner */
1107 #define S_IXUSR 00100 /* execute permission: owner */
1110 #define S_IRWXG 00070 /* read, write, execute: group */
1113 #define S_IRGRP 00040 /* read permission: group */
1116 #define S_IWGRP 00020 /* write permission: group */
1119 #define S_IXGRP 00010 /* execute permission: group */
1122 #define S_IRWXO 00007 /* read, write, execute: other */
1125 #define S_IROTH 00004 /* read permission: other */
1128 #define S_IWOTH 00002 /* write permission: other */
1131 #define S_IXOTH 00001 /* execute permission: other */
1134 /* For sys_adminlog(). */
1136 #define LOG_EMERG 0 /* system is unusable */
1140 #define LOG_ALERT 1 /* action must be taken immediately */
1144 #define LOG_CRIT 2 /* critical conditions */
1148 #define LOG_ERR 3 /* error conditions */
1152 #define LOG_WARNING 4 /* warning conditions */
1156 #define LOG_NOTICE 5 /* normal but significant condition */
1160 #define LOG_INFO 6 /* informational */
1164 #define LOG_DEBUG 7 /* debug-level messages */
1167 /* NetBSD doesn't have these */
1176 #if HAVE_KERNEL_SHARE_MODES
1178 #define LOCK_MAND 32 /* This is a mandatory flock */
1179 #define LOCK_READ 64 /* ... Which allows concurrent read operations */
1180 #define LOCK_WRITE 128 /* ... Which allows concurrent write operations */
1181 #define LOCK_RW 192 /* ... Which allows concurrent read & write ops */
1185 extern int DEBUGLEVEL
;
1187 #define MAX_SEC_CTX_DEPTH 8 /* Maximum number of security contexts */
1190 #ifdef GLIBC_HACK_FCNTL64
1191 /* this is a gross hack. 64 bit locking is completely screwed up on
1192 i386 Linux in glibc 2.1.95 (which ships with RedHat 7.0). This hack
1193 "fixes" the problem with the current 2.4.0test kernels
1195 #define fcntl fcntl64
1203 /* Needed for sys_dlopen/sys_dlsym/sys_dlclose */
1205 #define RTLD_GLOBAL 0
1216 /* needed for some systems without iconv. Doesn't really matter
1217 what error code we use */
1222 /* add varargs prototypes with printf checking */
1223 int fdprintf(int , const char *, ...) PRINTF_ATTRIBUTE(2,3);
1224 int d_printf(const char *, ...) PRINTF_ATTRIBUTE(1,2);
1225 int d_fprintf(FILE *f
, const char *, ...) PRINTF_ATTRIBUTE(2,3);
1226 #ifndef HAVE_SNPRINTF_DECL
1227 int snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
1229 #ifndef HAVE_ASPRINTF_DECL
1230 int asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
1233 /* Fix prototype problem with non-C99 compliant snprintf implementations, esp
1234 HPUX 11. Don't change the sense of this #if statement. Read the comments
1235 in lib/snprint.c if you think you need to. See also bugzilla bug 174. */
1237 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
1238 #define snprintf smb_snprintf
1241 void sys_adminlog(int priority
, const char *format_str
, ...) PRINTF_ATTRIBUTE(2,3);
1243 int pstr_sprintf(pstring s
, const char *fmt
, ...) PRINTF_ATTRIBUTE(2,3);
1244 int fstr_sprintf(fstring s
, const char *fmt
, ...) PRINTF_ATTRIBUTE(2,3);
1246 int d_vfprintf(FILE *f
, const char *format
, va_list ap
) PRINTF_ATTRIBUTE(2,0);
1248 int smb_xvasprintf(char **ptr
, const char *format
, va_list ap
) PRINTF_ATTRIBUTE(2,0);
1250 /* we used to use these fns, but now we have good replacements
1251 for snprintf and vsnprintf */
1252 #define slprintf snprintf
1253 #define vslprintf vsnprintf
1256 /* we need to use __va_copy() on some platforms */
1258 #define VA_COPY(dest, src) va_copy(dest, src)
1260 #ifdef HAVE___VA_COPY
1261 #define VA_COPY(dest, src) __va_copy(dest, src)
1263 #define VA_COPY(dest, src) (dest) = (src)
1268 time_t timegm(struct tm
*tm
);
1272 * Veritas File System. Often in addition to native.
1275 #if defined(HAVE_SYS_FS_VX_QUOTA_H)
1279 #if defined(HAVE_KRB5)
1281 #ifndef HAVE_KRB5_SET_REAL_TIME
1282 krb5_error_code
krb5_set_real_time(krb5_context context
, int32_t seconds
, int32_t microseconds
);
1285 #ifndef HAVE_KRB5_SET_DEFAULT_TGS_KTYPES
1286 krb5_error_code
krb5_set_default_tgs_ktypes(krb5_context ctx
, const krb5_enctype
*enc
);
1289 #if defined(HAVE_KRB5_AUTH_CON_SETKEY) && !defined(HAVE_KRB5_AUTH_CON_SETUSERUSERKEY)
1290 krb5_error_code
krb5_auth_con_setuseruserkey(krb5_context context
, krb5_auth_context auth_context
, krb5_keyblock
*keyblock
);
1293 /* Samba wrapper function for krb5 functionality. */
1294 void setup_kaddr( krb5_address
*pkaddr
, struct sockaddr
*paddr
);
1295 int create_kerberos_key_from_string(krb5_context context
, krb5_principal host_princ
, krb5_data
*password
, krb5_keyblock
*key
, krb5_enctype enctype
);
1296 void get_auth_data_from_tkt(DATA_BLOB
*auth_data
, krb5_ticket
*tkt
);
1297 krb5_const_principal
get_principal_from_tkt(krb5_ticket
*tkt
);
1298 krb5_error_code
krb5_locate_kdc(krb5_context ctx
, const krb5_data
*realm
, struct sockaddr
**addr_pp
, int *naddrs
, int get_masters
);
1299 krb5_error_code
get_kerberos_allowed_etypes(krb5_context context
, krb5_enctype
**enctypes
);
1300 void free_kerberos_etypes(krb5_context context
, krb5_enctype
*enctypes
);
1301 BOOL
get_krb5_smb_session_key(krb5_context context
, krb5_auth_context auth_context
, DATA_BLOB
*session_key
, BOOL remote
);
1302 #endif /* HAVE_KRB5 */
1304 /* TRUE and FALSE are part of the C99 standard and gcc, but
1305 unfortunately many vendor compilers don't support them. Use True
1306 and False instead. */
1311 #define TRUE __ERROR__XX__DONT_USE_TRUE
1316 #define FALSE __ERROR__XX__DONT_USE_FALSE
1318 /* If we have blacklisted mmap() try to avoid using it accidentally by
1319 undefining the HAVE_MMAP symbol. */
1321 #ifdef MMAP_BLACKLIST
1325 #endif /* _INCLUDES_H */