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 3 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, see <http://www.gnu.org/licenses/>.
23 /* work around broken krb5.h on sles9 */
28 #include "../replace/replace.h"
30 /* make sure we have included the correct config.h */
31 #ifndef NO_CONFIG_H /* for some tests */
32 #ifndef CONFIG_H_IS_FROM_SAMBA
33 #error "make sure you have removed all config.h files from standalone builds!"
34 #error "the included config.h isn't from samba!"
36 #endif /* NO_CONFIG_H */
38 /* only do the C++ reserved word check when we compile
39 to include --with-developer since too many systems
40 still have comflicts with their header files (e.g. IRIX 6.4) */
42 #if !defined(__cplusplus) && defined(DEVELOPER)
43 #define class #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
44 #define private #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
45 #define public #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
46 #define protected #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
47 #define template #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
48 #define this #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
49 #define new #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
50 #define delete #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
51 #define friend #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
57 #define DEFAULT_PRINTING PRINT_AIX
58 #define PRINTCAP_NAME "/etc/qconfig"
62 #define DEFAULT_PRINTING PRINT_HPUX
66 #define DEFAULT_PRINTING PRINT_QNX
70 /* on SUNOS4 termios.h conflicts with sys/ioctl.h */
76 * <unistd.h> has to be included before any other to get
77 * large file support on Reliant UNIX. Yes, it's broken :-).
82 #endif /* RELIANTUNIX */
84 #include "system/capability.h"
85 #include "system/dir.h"
86 #include "system/filesys.h"
87 #include "system/glob.h"
88 #include "system/iconv.h"
89 #include "system/locale.h"
90 #include "system/network.h"
91 #include "system/passwd.h"
92 #include "system/readline.h"
93 #include "system/select.h"
94 #include "system/shmem.h"
95 #include "system/syslog.h"
96 #include "system/terminal.h"
97 #include "system/time.h"
98 #include "system/wait.h"
100 #if defined(HAVE_RPC_RPC_H)
102 * Check for AUTH_ERROR define conflict with rpc/rpc.h in prot.h.
104 #if defined(HAVE_SYS_SECURITY_H) && defined(HAVE_RPC_AUTH_ERROR_CONFLICT)
108 * HP-UX 11.X has TCP_NODELAY and TCP_MAXSEG defined in <netinet/tcp.h> which
109 * was included above. However <rpc/rpc.h> includes <sys/xti.h> which defines
110 * them again without checking if they already exsist. This generates
111 * two "Redefinition of macro" warnings for every single .c file that is
114 #if defined(HPUX) && defined(TCP_NODELAY)
117 #if defined(HPUX) && defined(TCP_MAXSEG)
123 #if defined(HAVE_YP_GET_DEFAULT_DOMAIN) && defined(HAVE_SETNETGRENT) && defined(HAVE_ENDNETGRENT) && defined(HAVE_GETNETGRENT)
124 #define HAVE_NETGROUP 1
127 #if defined (HAVE_NETGROUP)
128 #if defined(HAVE_RPCSVC_YP_PROT_H)
130 * HP-UX 11.X has TCP_NODELAY and TCP_MAXSEG defined in <netinet/tcp.h> which
131 * was included above. However <rpc/rpc.h> includes <sys/xti.h> which defines
132 * them again without checking if they already exsist. This generates
133 * two "Redefinition of macro" warnings for every single .c file that is
136 #if defined(HPUX) && defined(TCP_NODELAY)
139 #if defined(HPUX) && defined(TCP_MAXSEG)
142 #include <rpcsvc/yp_prot.h>
144 #if defined(HAVE_RPCSVC_YPCLNT_H)
145 #include <rpcsvc/ypclnt.h>
147 #endif /* HAVE_NETGROUP */
157 #if defined(HPUX) && !defined(_LBER_TYPES_H)
158 /* Define ber_tag_t and ber_int_t for using
159 * HP LDAP-UX Integration products' LDAP libraries.
162 typedef unsigned long ber_tag_t;
163 typedef int ber_int_t;
165 #endif /* defined(HPUX) && !defined(_LBER_TYPES_H) */
167 #define LBER_USE_DER 0x01
174 #define LDAP_CONST const
176 #ifndef LDAP_OPT_SUCCESS
177 #define LDAP_OPT_SUCCESS 0
179 /* Solaris 8 and maybe other LDAP implementations spell this "..._INPROGRESS": */
180 #if defined(LDAP_SASL_BIND_INPROGRESS) && !defined(LDAP_SASL_BIND_IN_PROGRESS)
181 #define LDAP_SASL_BIND_IN_PROGRESS LDAP_SASL_BIND_INPROGRESS
183 /* Solaris 8 defines SSL_LDAP_PORT, not LDAPS_PORT and it only does so if
184 LDAP_SSL is defined - but SSL is not working. We just want the
185 port number! Let's just define LDAPS_PORT correct. */
186 #if !defined(LDAPS_PORT)
187 #define LDAPS_PORT 636
195 #elif HAVE_GSSAPI_GSSAPI_H
196 #include <gssapi/gssapi.h>
197 #elif HAVE_GSSAPI_GSSAPI_GENERIC_H
198 #include <gssapi/gssapi_generic.h>
205 #if HAVE_SYS_ATTRIBUTES_H
206 #include <sys/attributes.h>
210 #define ENOATTR ENODATA
213 /* mutually exclusive (SuSE 8.2) */
214 #if HAVE_ATTR_XATTR_H
215 #include <attr/xattr.h>
216 #elif HAVE_SYS_XATTR_H
217 #include <sys/xattr.h>
224 #ifdef HAVE_SYS_EXTATTR_H
225 #include <sys/extattr.h>
228 #ifdef HAVE_SYS_UIO_H
233 #include <langinfo.h>
237 #include <netgroup.h>
240 #if defined(HAVE_AIO_H) && defined(WITH_AIO)
244 /* skip valgrind headers on 64bit AMD boxes */
245 #ifndef HAVE_64BIT_LINUX
246 /* Special macros that are no-ops except when run under Valgrind on
247 * x86. They've moved a little bit from valgrind 1.0.4 to 1.9.4 */
248 #if HAVE_VALGRIND_MEMCHECK_H
249 /* memcheck.h includes valgrind.h */
250 #include <valgrind/memcheck.h>
251 #elif HAVE_VALGRIND_H
252 #include <valgrind.h>
256 /* If we have --enable-developer and the valgrind header is present,
257 * then we're OK to use it. Set a macro so this logic can be done only
259 #if defined(DEVELOPER) && !defined(HAVE_64BIT_LINUX)
260 #if (HAVE_VALGRIND_H || HAVE_VALGRIND_VALGRIND_H)
266 /* we support ADS if we want it and have krb5 and ldap libs */
267 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
272 * Define additional missing types
275 typedef sig_atomic_t SIG_ATOMIC_T;
277 typedef sig_atomic_t volatile SIG_ATOMIC_T;
281 #define uchar unsigned char
285 Samba needs type definitions for int16, int32, uint16 and uint32.
287 Normally these are signed and unsigned 16 and 32 bit integers, but
288 they actually only need to be at least 16 and 32 bits
289 respectively. Thus if your word size is 8 bytes just defining them
290 as signed and unsigned int will work.
294 #define uint8 uint8_t
297 #if !defined(int16) && !defined(HAVE_INT16_FROM_RPC_RPC_H)
298 # define int16 int16_t
299 /* needed to work around compile issue on HP-UX 11.x */
304 * Note we duplicate the size tests in the unsigned
305 * case as int16 may be a typedef from rpc/rpc.h
309 #if !defined(uint16) && !defined(HAVE_UINT16_FROM_RPC_RPC_H)
310 # define uint16 uint16_t
313 #if !defined(int32) && !defined(HAVE_INT32_FROM_RPC_RPC_H)
314 # define int32 int32_t
315 /* needed to work around compile issue on HP-UX 11.x */
320 * Note we duplicate the size tests in the unsigned
321 * case as int32 may be a typedef from rpc/rpc.h
324 #if !defined(uint32) && !defined(HAVE_UINT32_FROM_RPC_RPC_H)
325 # define uint32 uint32_t
329 * check for 8 byte long long
333 # define uint64 uint64_t
337 # define int64 int64_t
342 * Types for devices, inodes and offsets.
346 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)
347 # define SMB_DEV_T dev64_t
349 # define SMB_DEV_T dev_t
353 #ifndef LARGE_SMB_DEV_T
354 # if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)) || (defined(SIZEOF_DEV_T) && (SIZEOF_DEV_T == 8))
355 # define LARGE_SMB_DEV_T 1
359 #ifdef LARGE_SMB_DEV_T
360 #define SDEV_T_VAL(p, ofs, v) (SIVAL((p),(ofs),(v)&0xFFFFFFFF), SIVAL((p),(ofs)+4,(v)>>32))
361 #define DEV_T_VAL(p, ofs) ((SMB_DEV_T)(((uint64_t)(IVAL((p),(ofs))))| (((uint64_t)(IVAL((p),(ofs)+4))) << 32)))
363 #define SDEV_T_VAL(p, ofs, v) (SIVAL((p),(ofs),v),SIVAL((p),(ofs)+4,0))
364 #define DEV_T_VAL(p, ofs) ((SMB_DEV_T)(IVAL((p),(ofs))))
368 * Setup the correctly sized inode type.
372 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)
373 # define SMB_INO_T ino64_t
375 # define SMB_INO_T ino_t
379 #ifndef LARGE_SMB_INO_T
380 # if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8))
381 # define LARGE_SMB_INO_T 1
385 #ifdef LARGE_SMB_INO_T
386 #define SINO_T_VAL(p, ofs, v) (SIVAL((p),(ofs),(v)&0xFFFFFFFF), SIVAL((p),(ofs)+4,(v)>>32))
387 #define INO_T_VAL(p, ofs) ((SMB_INO_T)(((uint64_t)(IVAL(p,ofs)))| (((uint64_t)(IVAL(p,(ofs)+4))) << 32)))
389 #define SINO_T_VAL(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
390 #define INO_T_VAL(p, ofs) ((SMB_INO_T)(IVAL((p),(ofs))))
394 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)
395 # define SMB_OFF_T off64_t
397 # define SMB_OFF_T off_t
401 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
402 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((uint64_t)(IVAL((buf),(off)))) & ((uint64_t)0xFFFFFFFF)) | \
403 (( ((uint64_t)(IVAL((buf),(off+4)))) & ((uint64_t)0xFFFFFFFF) ) << 32 ) )
406 /* this should really be a 64 bit type if possible */
407 typedef uint64_t br_off;
409 #define SMB_OFF_T_BITS (sizeof(SMB_OFF_T)*8)
412 * Set the define that tells us if we can do 64 bit
416 #ifndef LARGE_SMB_OFF_T
417 # if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))
418 # define LARGE_SMB_OFF_T 1
422 #ifdef LARGE_SMB_OFF_T
423 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
424 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,(v)&0xFFFFFFFF), SIVAL(p,ofs,(v)>>32))
425 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((uint64_t)(IVAL((buf),(off)))) & ((uint64_t)0xFFFFFFFF) )))
427 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
428 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,v),SIVAL(p,ofs,0))
429 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((uint32)(IVAL((buf),(off)))) & 0xFFFFFFFF )))
433 * Type for stat structure.
436 #ifndef SMB_STRUCT_STAT
437 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STAT64) && defined(HAVE_OFF64_T)
438 # define SMB_STRUCT_STAT struct stat64
440 # define SMB_STRUCT_STAT struct stat
445 * Type for dirent structure.
448 #ifndef SMB_STRUCT_DIRENT
449 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIRENT64)
450 # define SMB_STRUCT_DIRENT struct dirent64
452 # define SMB_STRUCT_DIRENT struct dirent
457 * Type for DIR structure.
460 #ifndef SMB_STRUCT_DIR
461 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIR64)
462 # define SMB_STRUCT_DIR DIR64
464 # define SMB_STRUCT_DIR DIR
469 * Defines for 64 bit fcntl locks.
472 #ifndef SMB_STRUCT_FLOCK
473 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
474 # define SMB_STRUCT_FLOCK struct flock64
476 # define SMB_STRUCT_FLOCK struct flock
481 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
482 # define SMB_F_SETLKW F_SETLKW64
484 # define SMB_F_SETLKW F_SETLKW
489 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
490 # define SMB_F_SETLK F_SETLK64
492 # define SMB_F_SETLK F_SETLK
497 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
498 # define SMB_F_GETLK F_GETLK64
500 # define SMB_F_GETLK F_GETLK
505 * Type for aiocb structure.
508 #ifndef SMB_STRUCT_AIOCB
509 # if defined(WITH_AIO)
510 # if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64)
511 # define SMB_STRUCT_AIOCB struct aiocb64
513 # define SMB_STRUCT_AIOCB struct aiocb
516 # define SMB_STRUCT_AIOCB int /* AIO not being used but we still need the define.... */
520 #ifndef HAVE_STRUCT_TIMESPEC
522 time_t tv_sec; /* Seconds. */
523 long tv_nsec; /* Nanoseconds. */
528 #define MIN(a,b) ((a)<(b)?(a):(b))
532 #define MAX(a,b) ((a)>(b)?(a):(b))
535 #ifdef HAVE_BROKEN_GETGROUPS
542 #define NGROUPS_MAX 32 /* Guess... */
545 /* Our own fstrings */
554 | The infamous pstring |
561 _________)/\\_//(\/(/\)/\//\/\///|_)_______
565 #define FSTRING_LEN 256
566 typedef char fstring[FSTRING_LEN];
569 /* Samba 3 doesn't use iconv_convenience: */
570 extern void *global_loadparm;
571 extern void *cmdline_lp_ctx;
572 struct smb_iconv_convenience *lp_iconv_convenience(void *lp_ctx);
574 /* Lists, trees, caching, database... */
575 #include "../lib/util/xfile.h"
576 #include "../lib/util/memory.h"
577 #include "../lib/util/attr.h"
579 #include "../lib/util/dlinklist.h"
581 #include "util_tdb.h"
583 #include "../talloc/talloc.h"
585 #include "../lib/util/data_blob.h"
586 #include "../lib/util/time.h"
587 /* And a little extension. Abort on type mismatch */
588 #define talloc_get_type_abort(ptr, type) \
589 (type *)talloc_check_name_abort(ptr, #type)
591 #include "nt_status.h"
594 #include "interfaces.h"
599 #include "dynconfig.h"
600 #include "util_getent.h"
601 #include "debugparse.h"
603 #include "privileges.h"
604 #include "messages.h"
607 #include "nameserv.h"
609 #include "../lib/util/byteorder.h"
610 #include "privileges.h"
611 #include "rpc_misc.h"
615 #include "rpc_secdes.h"
617 #include "authdata.h"
620 #include "../lib/crypto/md5.h"
621 #include "../lib/crypto/arcfour.h"
622 #include "../lib/crypto/crc32.h"
623 #include "../lib/crypto/hmacmd5.h"
626 #include "ntdomain.h"
627 #include "rpc_svcctl.h"
628 #include "rpc_ntsvcs.h"
630 #include "reg_objects.h"
632 #include "rpc_spoolss.h"
633 #include "rpc_eventlog.h"
634 #include "rpc_perfcount.h"
635 #include "rpc_perfcount_defs.h"
636 #include "librpc/gen_ndr/notify.h"
637 #include "librpc/gen_ndr/xattr.h"
638 #include "librpc/gen_ndr/messaging.h"
639 #include "librpc/gen_ndr/ndr_nbt.h"
640 #include "librpc/rpc/dcerpc.h"
641 #include "nt_printing.h"
650 #include "nsswitch/winbind_client.h"
652 #include "rpc_client.h"
656 #include "ctdbd_conn.h"
657 #include "talloc_stack.h"
658 #include "memcache.h"
659 #include "async_req.h"
660 #include "async_smb.h"
661 #include "async_sock.h"
663 #include "lib/smbconf/smbconf.h"
665 /* Defines for wisXXX functions. */
666 #define UNI_UPPER 0x1
667 #define UNI_LOWER 0x2
668 #define UNI_DIGIT 0x4
669 #define UNI_XDIGIT 0x8
670 #define UNI_SPACE 0x10
672 #include "nsswitch/winbind_nss.h"
674 /* forward declaration from printing.h to get around
675 header file dependencies */
679 /* forward declarations from smbldap.c */
683 #include "smb_ldap.h"
685 struct dns_reg_state;
687 void dns_register_smbd(struct dns_reg_state ** dns_state_ptr,
691 struct timeval *timeout);
693 void dns_register_close(struct dns_reg_state ** dns_state_ptr);
696 bool dns_register_smbd_reply(struct dns_reg_state *dns_state,
697 fd_set *lfds, struct timeval *timeout);
700 * Reasons for cache flush.
703 enum flush_reason_enum {
708 OPLOCK_RELEASE_FLUSH,
712 /* NUM_FLUSH_REASONS must remain the last value in the enumeration. */
715 #include "nss_info.h"
716 #include "modules/nfs4_acls.h"
717 #include "nsswitch/libwbclient/wbclient.h"
719 /* generated rpc server implementation functions */
720 #include "librpc/gen_ndr/srv_echo.h"
721 #include "librpc/gen_ndr/srv_svcctl.h"
722 #include "librpc/gen_ndr/srv_lsa.h"
723 #include "librpc/gen_ndr/srv_eventlog.h"
724 #include "librpc/gen_ndr/srv_winreg.h"
725 #include "librpc/gen_ndr/srv_initshutdown.h"
727 /***** automatically generated prototypes *****/
732 #if defined(HAVE_POSIX_ACLS)
733 #include "modules/vfs_posixacl.h"
736 #if defined(HAVE_TRU64_ACLS)
737 #include "modules/vfs_tru64acl.h"
740 #if defined(HAVE_SOLARIS_ACLS) || defined(HAVE_UNIXWARE_ACLS)
741 #include "modules/vfs_solarisacl.h"
744 #if defined(HAVE_HPUX_ACLS)
745 #include "modules/vfs_hpuxacl.h"
748 #if defined(HAVE_IRIX_ACLS)
749 #include "modules/vfs_irixacl.h"
753 #include "ads_protos.h"
756 /* We need this after proto.h to reference GetTimeOfDay(). */
757 #include "smbprofile.h"
759 /* String routines */
762 #include "safe_string.h"
764 /* prototypes from lib/util_transfer_file.c */
765 #include "transfer_file.h"
767 #ifndef DEFAULT_PRINTING
769 #define DEFAULT_PRINTING PRINT_CUPS
770 #define PRINTCAP_NAME "cups"
772 #define DEFAULT_PRINTING PRINT_SYSV
773 #define PRINTCAP_NAME "lpstat"
775 #define DEFAULT_PRINTING PRINT_BSD
776 #define PRINTCAP_NAME "/etc/printcap"
780 #ifndef PRINTCAP_NAME
781 #define PRINTCAP_NAME "/etc/printcap"
785 #define SIGCLD SIGCHLD
796 #if defined(HAVE_PUTPRPWNAM) && defined(AUTH_CLEARTEXT_SEG_CHARS)
797 #define OSF1_ENH_SEC 1
800 #ifndef ALLOW_CHANGE_PASSWORD
801 #if (defined(HAVE_TERMIOS_H) && defined(HAVE_DUP2) && defined(HAVE_SETSID))
802 #define ALLOW_CHANGE_PASSWORD 1
806 /* what is the longest significant password available on your system?
807 Knowing this speeds up password searches a lot */
808 #ifndef PASSWORD_LENGTH
809 #define PASSWORD_LENGTH 8
817 #define crypt ufc_crypt
820 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
821 #define ULTRIX_AUTH 1
824 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESUID_DECL))
826 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
828 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESGID_DECL))
829 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
832 /* yuck, I'd like a better way of doing this */
833 #define DIRP_SIZE (256 + 32)
835 /* default socket options. Dave Miller thinks we should default to TCP_NODELAY
836 given the socket IO pattern that Samba uses */
838 #define DEFAULT_SOCKET_OPTIONS "TCP_NODELAY"
840 #define DEFAULT_SOCKET_OPTIONS ""
843 /* dmalloc -- free heap debugger (dmalloc.org). This should be near
844 * the *bottom* of include files so as not to conflict. */
845 #ifdef ENABLE_DMALLOC
846 # include <dmalloc.h>
850 #if HAVE_KERNEL_SHARE_MODES
852 #define LOCK_MAND 32 /* This is a mandatory flock */
853 #define LOCK_READ 64 /* ... Which allows concurrent read operations */
854 #define LOCK_WRITE 128 /* ... Which allows concurrent write operations */
855 #define LOCK_RW 192 /* ... Which allows concurrent read & write ops */
859 extern int DEBUGLEVEL;
861 #define MAX_SEC_CTX_DEPTH 8 /* Maximum number of security contexts */
864 #ifdef GLIBC_HACK_FCNTL64
865 /* this is a gross hack. 64 bit locking is completely screwed up on
866 i386 Linux in glibc 2.1.95 (which ships with RedHat 7.0). This hack
867 "fixes" the problem with the current 2.4.0test kernels
869 #define fcntl fcntl64
877 /* needed for some systems without iconv. Doesn't really matter
878 what error code we use */
883 /* add varargs prototypes with printf checking */
885 int fdprintf(int , const char *, ...) PRINTF_ATTRIBUTE(2,3);
887 int d_printf(const char *, ...) PRINTF_ATTRIBUTE(1,2);
889 int d_fprintf(FILE *f, const char *, ...) PRINTF_ATTRIBUTE(2,3);
892 void sys_adminlog(int priority, const char *format_str, ...) PRINTF_ATTRIBUTE(2,3);
895 int fstr_sprintf(fstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
897 int d_vfprintf(FILE *f, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
899 int smb_xvasprintf(char **ptr, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
901 int asprintf_strupper_m(char **strp, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
902 char *talloc_asprintf_strupper_m(TALLOC_CTX *t, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
904 /* we used to use these fns, but now we have good replacements
905 for snprintf and vsnprintf */
906 #define slprintf snprintf
907 #define vslprintf vsnprintf
910 * Veritas File System. Often in addition to native.
913 #if defined(HAVE_SYS_FS_VX_QUOTA_H)
918 #define XATTR_CREATE 0x1 /* set value, fail if attr already exists */
921 #ifndef XATTR_REPLACE
922 #define XATTR_REPLACE 0x2 /* set value, fail if attr does not exist */
925 #if defined(HAVE_KRB5)
927 krb5_error_code smb_krb5_parse_name(krb5_context context,
928 const char *name, /* in unix charset */
929 krb5_principal *principal);
931 krb5_error_code smb_krb5_unparse_name(krb5_context context,
932 krb5_const_principal principal,
935 #ifndef HAVE_KRB5_SET_REAL_TIME
936 krb5_error_code krb5_set_real_time(krb5_context context, int32_t seconds, int32_t microseconds);
939 krb5_error_code krb5_set_default_tgs_ktypes(krb5_context ctx, const krb5_enctype *enc);
941 #if defined(HAVE_KRB5_AUTH_CON_SETKEY) && !defined(HAVE_KRB5_AUTH_CON_SETUSERUSERKEY)
942 krb5_error_code krb5_auth_con_setuseruserkey(krb5_context context, krb5_auth_context auth_context, krb5_keyblock *keyblock);
945 #ifndef HAVE_KRB5_FREE_UNPARSED_NAME
946 void krb5_free_unparsed_name(krb5_context ctx, char *val);
949 /* Stub out initialize_krb5_error_table since it is not present in all
950 * Kerberos implementations. If it's not present, it's not necessary to
953 #ifndef HAVE_INITIALIZE_KRB5_ERROR_TABLE
954 #define initialize_krb5_error_table()
957 /* Samba wrapper function for krb5 functionality. */
958 bool setup_kaddr( krb5_address *pkaddr, struct sockaddr_storage *paddr);
959 int create_kerberos_key_from_string(krb5_context context, krb5_principal host_princ, krb5_data *password, krb5_keyblock *key, krb5_enctype enctype, bool no_salt);
960 bool get_auth_data_from_tkt(TALLOC_CTX *mem_ctx, DATA_BLOB *auth_data, krb5_ticket *tkt);
961 krb5_const_principal get_principal_from_tkt(krb5_ticket *tkt);
962 krb5_error_code smb_krb5_locate_kdc(krb5_context ctx, const krb5_data *realm, struct sockaddr **addr_pp, int *naddrs, int get_masters);
963 #if defined(HAVE_KRB5_LOCATE_KDC)
964 krb5_error_code krb5_locate_kdc(krb5_context ctx, const krb5_data *realm, struct sockaddr **addr_pp, int *naddrs, int get_masters);
966 krb5_error_code get_kerberos_allowed_etypes(krb5_context context, krb5_enctype **enctypes);
967 bool get_krb5_smb_session_key(krb5_context context, krb5_auth_context auth_context, DATA_BLOB *session_key, bool remote);
968 krb5_error_code smb_krb5_kt_free_entry(krb5_context context, krb5_keytab_entry *kt_entry);
969 krb5_principal kerberos_fetch_salt_princ_for_host_princ(krb5_context context, krb5_principal host_princ, int enctype);
970 void kerberos_set_creds_enctype(krb5_creds *pcreds, int enctype);
971 bool kerberos_compatible_enctypes(krb5_context context, krb5_enctype enctype1, krb5_enctype enctype2);
972 void kerberos_free_data_contents(krb5_context context, krb5_data *pdata);
973 NTSTATUS decode_pac_data(TALLOC_CTX *mem_ctx,
974 DATA_BLOB *pac_data_blob,
975 krb5_context context,
976 krb5_keyblock *service_keyblock,
977 krb5_const_principal client_principal,
979 struct PAC_DATA **pac_data_out);
980 void smb_krb5_checksum_from_pac_sig(krb5_checksum *cksum,
981 struct PAC_SIGNATURE_DATA *sig);
982 krb5_error_code smb_krb5_verify_checksum(krb5_context context,
983 const krb5_keyblock *keyblock,
985 krb5_checksum *cksum,
988 time_t get_authtime_from_tkt(krb5_ticket *tkt);
989 void smb_krb5_free_ap_req(krb5_context context,
990 krb5_ap_req *ap_req);
991 krb5_error_code smb_krb5_get_keyinfo_from_ap_req(krb5_context context,
992 const krb5_data *inbuf,
994 krb5_enctype *enctype);
995 krb5_error_code krb5_rd_req_return_keyblock_from_keytab(krb5_context context,
996 krb5_auth_context *auth_context,
997 const krb5_data *inbuf,
998 krb5_const_principal server,
1000 krb5_flags *ap_req_options,
1001 krb5_ticket **ticket,
1002 krb5_keyblock **keyblock);
1003 krb5_error_code smb_krb5_parse_name_norealm(krb5_context context,
1005 krb5_principal *principal);
1006 bool smb_krb5_principal_compare_any_realm(krb5_context context,
1007 krb5_const_principal princ1,
1008 krb5_const_principal princ2);
1009 int cli_krb5_get_ticket(const char *principal, time_t time_offset,
1010 DATA_BLOB *ticket, DATA_BLOB *session_key_krb5, uint32 extra_ap_opts, const char *ccname, time_t *tgs_expire);
1011 krb5_error_code smb_krb5_renew_ticket(const char *ccache_string, const char *client_string, const char *service_string, time_t *expire_time);
1012 krb5_error_code kpasswd_err_to_krb5_err(krb5_error_code res_code);
1013 krb5_error_code smb_krb5_gen_netbios_krb5_address(smb_krb5_addresses **kerb_addr);
1014 krb5_error_code smb_krb5_free_addresses(krb5_context context, smb_krb5_addresses *addr);
1015 NTSTATUS krb5_to_nt_status(krb5_error_code kerberos_error);
1016 krb5_error_code nt_status_to_krb5(NTSTATUS nt_status);
1017 void smb_krb5_free_error(krb5_context context, krb5_error *krberror);
1018 krb5_error_code handle_krberror_packet(krb5_context context,
1021 void smb_krb5_get_init_creds_opt_free(krb5_context context,
1022 krb5_get_init_creds_opt *opt);
1023 krb5_error_code smb_krb5_get_init_creds_opt_alloc(krb5_context context,
1024 krb5_get_init_creds_opt **opt);
1025 krb5_error_code smb_krb5_mk_error(krb5_context context,
1026 krb5_error_code error_code,
1027 const krb5_principal server,
1029 krb5_enctype smb_get_enctype_from_kt_entry(krb5_keytab_entry *kt_entry);
1030 krb5_error_code smb_krb5_enctype_to_string(krb5_context context,
1031 krb5_enctype enctype,
1033 krb5_error_code smb_krb5_open_keytab(krb5_context context,
1034 const char *keytab_name,
1036 krb5_keytab *keytab);
1037 krb5_error_code smb_krb5_keytab_name(TALLOC_CTX *mem_ctx,
1038 krb5_context context,
1040 const char **keytab_name);
1041 int smb_krb5_kt_add_entry_ext(krb5_context context,
1044 const char *princ_s,
1045 krb5_enctype *enctypes,
1048 bool keep_old_entries);
1050 #endif /* HAVE_KRB5 */
1055 /* function declarations not included in proto.h */
1056 LDAP *ldap_open_with_timeout(const char *server, int port, unsigned int to);
1058 #endif /* HAVE_LDAP */
1060 #if defined(HAVE_LINUX_READAHEAD) && ! defined(HAVE_READAHEAD_DECL)
1061 ssize_t readahead(int fd, off64_t offset, size_t count);
1067 #define TRUE __ERROR__XX__DONT_USE_TRUE
1072 #define FALSE __ERROR__XX__DONT_USE_FALSE
1074 /* If we have blacklisted mmap() try to avoid using it accidentally by
1075 undefining the HAVE_MMAP symbol. */
1077 #ifdef MMAP_BLACKLIST
1081 #define CONST_DISCARD(type, ptr) ((type) ((void *) (ptr)))
1082 #define CONST_ADD(type, ptr) ((type) ((const void *) (ptr)))
1084 void smb_panic( const char *why ) _NORETURN_;
1085 void dump_core(void) _NORETURN_;
1086 void exit_server(const char *const reason) _NORETURN_;
1087 void exit_server_cleanly(const char *const reason) _NORETURN_;
1088 void exit_server_fault(void) _NORETURN_;
1091 #include "libnscd.h"
1094 #if defined(HAVE_IPV6)
1095 void in6_addr_to_sockaddr_storage(struct sockaddr_storage *ss,
1096 struct in6_addr ip);
1099 #endif /* _INCLUDES_H */