s3-includes: only include system/glob.h when needed.
[samba.git] / source3 / 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 3 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, see <http://www.gnu.org/licenses/>.
21 */
22
23 #include "../replace/replace.h"
24
25 #if _SAMBA_BUILD_ == 4
26 # undef _SAMBA_BUILD_
27 # define _SAMBA_BUILD_ 3
28 #endif
29
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!"
35 #endif
36 #endif /* NO_CONFIG_H */
37
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) */
41
42 #if !defined(__cplusplus) && defined(DEVELOPER) && defined(__linux__)
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
52 #endif
53
54 #include "local.h"
55
56 #ifdef SUNOS4
57 /* on SUNOS4 termios.h conflicts with sys/ioctl.h */
58 #undef HAVE_TERMIOS_H
59 #endif
60
61 #ifdef RELIANTUNIX
62 /*
63  * <unistd.h> has to be included before any other to get
64  * large file support on Reliant UNIX. Yes, it's broken :-).
65  */
66 #ifdef HAVE_UNISTD_H
67 #include <unistd.h>
68 #endif
69 #endif /* RELIANTUNIX */
70
71 #include "system/capability.h"
72 #include "system/dir.h"
73 #include "system/filesys.h"
74 #include "system/locale.h"
75 #include "system/network.h"
76 #include "system/passwd.h"
77 #include "system/select.h"
78 #include "system/shmem.h"
79 #include "system/terminal.h"
80 #include "system/time.h"
81 #include "system/wait.h"
82
83 #if defined(HAVE_RPC_RPC_H)
84 /*
85  * Check for AUTH_ERROR define conflict with rpc/rpc.h in prot.h.
86  */
87 #if defined(HAVE_SYS_SECURITY_H) && defined(HAVE_RPC_AUTH_ERROR_CONFLICT)
88 #undef AUTH_ERROR
89 #endif
90 /*
91  * HP-UX 11.X has TCP_NODELAY and TCP_MAXSEG defined in <netinet/tcp.h> which
92  * was included above.  However <rpc/rpc.h> includes <sys/xti.h> which defines
93  * them again without checking if they already exsist.  This generates
94  * two "Redefinition of macro" warnings for every single .c file that is
95  * compiled.
96  */
97 #if defined(HPUX) && defined(TCP_NODELAY)
98 #undef TCP_NODELAY
99 #endif
100 #if defined(HPUX) && defined(TCP_MAXSEG)
101 #undef TCP_MAXSEG
102 #endif
103 #include <rpc/rpc.h>
104 #endif
105
106 #if defined(HAVE_YP_GET_DEFAULT_DOMAIN) && defined(HAVE_SETNETGRENT) && defined(HAVE_ENDNETGRENT) && defined(HAVE_GETNETGRENT)
107 #define HAVE_NETGROUP 1
108 #endif
109
110 #if defined (HAVE_NETGROUP)
111 #if defined(HAVE_RPCSVC_YP_PROT_H)
112 /*
113  * HP-UX 11.X has TCP_NODELAY and TCP_MAXSEG defined in <netinet/tcp.h> which
114  * was included above.  However <rpc/rpc.h> includes <sys/xti.h> which defines
115  * them again without checking if they already exsist.  This generates
116  * two "Redefinition of macro" warnings for every single .c file that is
117  * compiled.
118  */
119 #if defined(HPUX) && defined(TCP_NODELAY)
120 #undef TCP_NODELAY
121 #endif
122 #if defined(HPUX) && defined(TCP_MAXSEG)
123 #undef TCP_MAXSEG
124 #endif
125 #include <rpcsvc/yp_prot.h>
126 #endif
127 #if defined(HAVE_RPCSVC_YPCLNT_H)
128 #include <rpcsvc/ypclnt.h>
129 #endif
130 #endif /* HAVE_NETGROUP */
131
132 #ifndef HAVE_KRB5_H
133 #undef HAVE_KRB5
134 #endif
135
136 #ifndef HAVE_LDAP_H
137 #undef HAVE_LDAP
138 #endif
139
140 #if HAVE_SYS_ATTRIBUTES_H
141 #include <sys/attributes.h>
142 #endif
143
144 #ifndef ENOATTR
145 #if defined(ENODATA)
146 #define ENOATTR ENODATA
147 #else
148 #define ENOATTR ENOENT
149 #endif
150 #endif
151
152 /* mutually exclusive (SuSE 8.2) */
153 #if HAVE_ATTR_XATTR_H
154 #include <attr/xattr.h>
155 #elif HAVE_SYS_XATTR_H
156 #include <sys/xattr.h>
157 #endif
158
159 #ifdef HAVE_SYS_EA_H
160 #include <sys/ea.h>
161 #endif
162
163 #ifdef HAVE_SYS_EXTATTR_H
164 #include <sys/extattr.h>
165 #endif
166
167 #ifdef HAVE_SYS_UIO_H
168 #include <sys/uio.h>
169 #endif
170
171 #if HAVE_LANGINFO_H
172 #include <langinfo.h>
173 #endif
174
175 #if HAVE_NETGROUP_H
176 #include <netgroup.h>
177 #endif
178
179 #if defined(HAVE_AIO_H) && defined(WITH_AIO)
180 #include <aio.h>
181 #endif
182
183 #ifdef WITH_MADVISE_PROTECTED
184 #include <sys/mman.h>
185 #endif
186
187 /* Special macros that are no-ops except when run under Valgrind on
188  * x86.  They've moved a little bit from valgrind 1.0.4 to 1.9.4 */
189 #if HAVE_VALGRIND_MEMCHECK_H
190         /* memcheck.h includes valgrind.h */
191 #include <valgrind/memcheck.h>
192 #elif HAVE_VALGRIND_H
193 #include <valgrind.h>
194 #endif
195
196 /* we support ADS if we want it and have krb5 and ldap libs */
197 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
198 #define HAVE_ADS
199 #endif
200
201 /*
202  * Define additional missing types
203  */
204 #if defined(AIX)
205 typedef sig_atomic_t SIG_ATOMIC_T;
206 #else
207 typedef sig_atomic_t volatile SIG_ATOMIC_T;
208 #endif
209
210 #ifndef uchar
211 #define uchar unsigned char
212 #endif
213
214 /*
215    Samba needs type definitions for int16, int32, uint16 and uint32.
216
217    Normally these are signed and unsigned 16 and 32 bit integers, but
218    they actually only need to be at least 16 and 32 bits
219    respectively. Thus if your word size is 8 bytes just defining them
220    as signed and unsigned int will work.
221 */
222
223 #ifndef uint8
224 #define uint8 uint8_t
225 #endif
226
227 #if !defined(int16) && !defined(HAVE_INT16_FROM_RPC_RPC_H)
228 #  define int16 int16_t
229    /* needed to work around compile issue on HP-UX 11.x */
230 #  define _INT16        1
231 #endif
232
233 /*
234  * Note we duplicate the size tests in the unsigned 
235  * case as int16 may be a typedef from rpc/rpc.h
236  */
237
238
239 #if !defined(uint16) && !defined(HAVE_UINT16_FROM_RPC_RPC_H)
240 #  define uint16 uint16_t
241 #endif
242
243 #if !defined(int32) && !defined(HAVE_INT32_FROM_RPC_RPC_H)
244 #  define int32 int32_t
245 #  ifndef _INT32
246      /* needed to work around compile issue on HP-UX 11.x */
247 #    define _INT32      1
248 #  endif
249 #endif
250
251 /*
252  * Note we duplicate the size tests in the unsigned 
253  * case as int32 may be a typedef from rpc/rpc.h
254  */
255
256 #if !defined(uint32) && !defined(HAVE_UINT32_FROM_RPC_RPC_H)
257 #  define uint32 uint32_t
258 #endif
259
260 /*
261  * check for 8 byte long long
262  */
263
264 #if !defined(uint64)
265 #  define uint64 uint64_t
266 #endif
267
268 #if !defined(int64)
269 #  define int64 int64_t
270 #endif
271
272
273 /*
274  * Types for devices, inodes and offsets.
275  */
276
277 #ifndef SMB_DEV_T
278 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)
279 #    define SMB_DEV_T dev64_t
280 #  else
281 #    define SMB_DEV_T dev_t
282 #  endif
283 #endif
284
285 #ifndef LARGE_SMB_DEV_T
286 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)) || (defined(SIZEOF_DEV_T) && (SIZEOF_DEV_T == 8))
287 #    define LARGE_SMB_DEV_T 1
288 #  endif
289 #endif
290
291 #ifdef LARGE_SMB_DEV_T
292 #define SDEV_T_VAL(p, ofs, v) (SIVAL((p),(ofs),(v)&0xFFFFFFFF), SIVAL((p),(ofs)+4,(v)>>32))
293 #define DEV_T_VAL(p, ofs) ((SMB_DEV_T)(((uint64_t)(IVAL((p),(ofs))))| (((uint64_t)(IVAL((p),(ofs)+4))) << 32)))
294 #else 
295 #define SDEV_T_VAL(p, ofs, v) (SIVAL((p),(ofs),v),SIVAL((p),(ofs)+4,0))
296 #define DEV_T_VAL(p, ofs) ((SMB_DEV_T)(IVAL((p),(ofs))))
297 #endif
298
299 /*
300  * Setup the correctly sized inode type.
301  */
302
303 #ifndef SMB_INO_T
304 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)
305 #    define SMB_INO_T ino64_t
306 #  else
307 #    define SMB_INO_T ino_t
308 #  endif
309 #endif
310
311 #ifndef LARGE_SMB_INO_T
312 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8))
313 #    define LARGE_SMB_INO_T 1
314 #  endif
315 #endif
316
317 #ifdef LARGE_SMB_INO_T
318 #define SINO_T_VAL(p, ofs, v) (SIVAL((p),(ofs),(v)&0xFFFFFFFF), SIVAL((p),(ofs)+4,(v)>>32))
319 #define INO_T_VAL(p, ofs) ((SMB_INO_T)(((uint64_t)(IVAL(p,ofs)))| (((uint64_t)(IVAL(p,(ofs)+4))) << 32)))
320 #else 
321 #define SINO_T_VAL(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
322 #define INO_T_VAL(p, ofs) ((SMB_INO_T)(IVAL((p),(ofs))))
323 #endif
324
325 #ifndef SMB_OFF_T
326 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)
327 #    define SMB_OFF_T off64_t
328 #  else
329 #    define SMB_OFF_T off_t
330 #  endif
331 #endif
332
333 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
334 #define BIG_UINT(p, ofs) ((((uint64_t) IVAL(p,(ofs)+4))<<32)|IVAL(p,ofs))
335 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((uint64_t)(IVAL((buf),(off)))) & ((uint64_t)0xFFFFFFFF)) | \
336                 (( ((uint64_t)(IVAL((buf),(off+4)))) & ((uint64_t)0xFFFFFFFF) ) << 32 ) )
337
338
339 /* this should really be a 64 bit type if possible */
340 typedef uint64_t br_off;
341
342 #define SMB_OFF_T_BITS (sizeof(SMB_OFF_T)*8)
343
344 /*
345  * Set the define that tells us if we can do 64 bit
346  * NT SMB calls.
347  */
348
349 #ifndef LARGE_SMB_OFF_T
350 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))
351 #    define LARGE_SMB_OFF_T 1
352 #  endif
353 #endif
354
355 #ifdef LARGE_SMB_OFF_T
356 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
357 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,(v)&0xFFFFFFFF), SIVAL(p,ofs,(v)>>32))
358 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((uint64_t)(IVAL((buf),(off)))) & ((uint64_t)0xFFFFFFFF) )))
359 #else 
360 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
361 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,v),SIVAL(p,ofs,0))
362 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((uint32)(IVAL((buf),(off)))) & 0xFFFFFFFF )))
363 #endif
364
365 #ifndef HAVE_BLKSIZE_T
366 /* This is mainly for HP/UX which defines st_blksize as long */
367 typedef long blksize_t;
368 #endif
369
370 #ifndef HAVE_BLKCNT_T
371 /* This is mainly for HP/UX which doesn't have blkcnt_t */
372 typedef long blkcnt_t;
373 #endif
374
375 /*
376  * Type for stat structure.
377  */
378
379 struct stat_ex {
380         dev_t           st_ex_dev;
381         ino_t           st_ex_ino;
382         mode_t          st_ex_mode;
383         nlink_t         st_ex_nlink;
384         uid_t           st_ex_uid;
385         gid_t           st_ex_gid;
386         dev_t           st_ex_rdev;
387         off_t           st_ex_size;
388         struct timespec st_ex_atime;
389         struct timespec st_ex_mtime;
390         struct timespec st_ex_ctime;
391         struct timespec st_ex_btime; /* birthtime */
392         /* Is birthtime real, or was it calculated ? */
393         bool            st_ex_calculated_birthtime;
394         blksize_t       st_ex_blksize;
395         blkcnt_t        st_ex_blocks;
396
397         uint32_t        st_ex_flags;
398         uint32_t        st_ex_mask;
399
400         /*
401          * Add space for VFS internal extensions. The initial user of this
402          * would be the onefs modules, passing the snapid from the stat calls
403          * to the file_id_create call. Maybe we'll have to expand this later,
404          * but the core of Samba should never look at this field.
405          */
406         uint64_t vfs_private;
407 };
408
409 typedef struct stat_ex SMB_STRUCT_STAT;
410
411 /*
412  * Type for dirent structure.
413  */
414
415 #ifndef SMB_STRUCT_DIRENT
416 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIRENT64)
417 #    define SMB_STRUCT_DIRENT struct dirent64
418 #  else
419 #    define SMB_STRUCT_DIRENT struct dirent
420 #  endif
421 #endif
422
423 /*
424  * Type for DIR structure.
425  */
426
427 #ifndef SMB_STRUCT_DIR
428 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIR64)
429 #    define SMB_STRUCT_DIR DIR64
430 #  else
431 #    define SMB_STRUCT_DIR DIR
432 #  endif
433 #endif
434
435 /*
436  * Defines for 64 bit fcntl locks.
437  */
438
439 #ifndef SMB_STRUCT_FLOCK
440 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
441 #    define SMB_STRUCT_FLOCK struct flock64
442 #  else
443 #    define SMB_STRUCT_FLOCK struct flock
444 #  endif
445 #endif
446
447 #ifndef SMB_F_SETLKW
448 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
449 #    define SMB_F_SETLKW F_SETLKW64
450 #  else
451 #    define SMB_F_SETLKW F_SETLKW
452 #  endif
453 #endif
454
455 #ifndef SMB_F_SETLK
456 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
457 #    define SMB_F_SETLK F_SETLK64
458 #  else
459 #    define SMB_F_SETLK F_SETLK
460 #  endif
461 #endif
462
463 #ifndef SMB_F_GETLK
464 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
465 #    define SMB_F_GETLK F_GETLK64
466 #  else
467 #    define SMB_F_GETLK F_GETLK
468 #  endif
469 #endif
470
471 /*
472  * Type for aiocb structure.
473  */
474
475 #ifndef SMB_STRUCT_AIOCB
476 #  if defined(WITH_AIO)
477 #    if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64)
478 #      define SMB_STRUCT_AIOCB struct aiocb64
479 #    else
480 #      define SMB_STRUCT_AIOCB struct aiocb
481 #    endif
482 #  else
483 #    define SMB_STRUCT_AIOCB int /* AIO not being used but we still need the define.... */
484 #  endif
485 #endif
486
487 enum timestamp_set_resolution {
488         TIMESTAMP_SET_SECONDS = 0,
489         TIMESTAMP_SET_MSEC,
490         TIMESTAMP_SET_NT_OR_BETTER
491 };
492
493 /* Our own fstrings */
494
495 /*
496                   --------------
497                  /              \
498                 /      REST      \
499                /        IN        \
500               /       PEACE        \
501              /                      \
502              | The infamous pstring |
503              |                      |
504              |                      |
505              |      7 December      |
506              |                      |
507              |         2007         |
508             *|     *  *  *          | *
509    _________)/\\_//(\/(/\)/\//\/\///|_)_______
510 */
511
512 #ifndef FSTRING_LEN
513 #define FSTRING_LEN 256
514 typedef char fstring[FSTRING_LEN];
515 #endif
516
517 /* Lists, trees, caching, database... */
518 #include "../lib/util/util.h"
519 #include "../lib/util/util_net.h"
520 #include "../lib/util/xfile.h"
521 #include "../lib/util/memory.h"
522 #include "../lib/util/attr.h"
523 #include "../lib/util/tsort.h"
524 #include "../lib/util/dlinklist.h"
525 #include "tdb.h"
526 #include "util_tdb.h"
527
528 #include "talloc.h"
529
530 #include "event.h"
531 #include "../lib/util/tevent_unix.h"
532 #include "../lib/util/tevent_ntstatus.h"
533 #include "../lib/tsocket/tsocket.h"
534
535 #include "../lib/util/data_blob.h"
536 #include "../lib/util/time.h"
537
538 #include "libads/ads_status.h"
539 #include "../libcli/util/error.h"
540 #include "ntioctl.h"
541 #include "../lib/util/charset/charset.h"
542 #include "dynconfig.h"
543 #include "debugparse.h"
544 #include "../libcli/security/privileges.h"
545 #include "messages.h"
546 #include "locking.h"
547 #include "smb_perfcount.h"
548 #include "smb.h"
549 #include "nameserv.h"
550 #include "../lib/util/byteorder.h"
551 #include "mapping.h"
552 #include "passdb.h"
553
554 #include "auth.h"
555 #include "librpc/rpc/dcerpc.h"
556 #include "ntdomain.h"
557 #include "client.h"
558
559 #include "module.h"
560 #include "../lib/util/talloc_stack.h"
561 #include "../lib/util/smb_threads.h"
562 #include "../lib/util/smb_threads_internal.h"
563
564 /*
565  * Reasons for cache flush.
566  */
567
568 enum flush_reason_enum {
569     SEEK_FLUSH,
570     READ_FLUSH,
571     WRITE_FLUSH,
572     READRAW_FLUSH,
573     OPLOCK_RELEASE_FLUSH,
574     CLOSE_FLUSH,
575     SYNC_FLUSH,
576     SIZECHANGE_FLUSH,
577     /* NUM_FLUSH_REASONS must remain the last value in the enumeration. */
578     NUM_FLUSH_REASONS};
579
580 #include "modules/nfs4_acls.h"
581
582 /***** prototypes *****/
583 #ifndef NO_PROTO_H
584 #include "proto.h"
585 #endif
586 #include "libcli/security/secace.h"
587 #include "libcli/security/secacl.h"
588 #include "libcli/security/security_descriptor.h"
589 #include "libcli/security/sddl.h"
590
591 #if defined(HAVE_POSIX_ACLS)
592 #include "modules/vfs_posixacl.h"
593 #endif
594
595 #if defined(HAVE_TRU64_ACLS)
596 #include "modules/vfs_tru64acl.h"
597 #endif
598
599 #if defined(HAVE_SOLARIS_ACLS) || defined(HAVE_UNIXWARE_ACLS)
600 #include "modules/vfs_solarisacl.h"
601 #endif
602
603 #if defined(HAVE_HPUX_ACLS)
604 #include "modules/vfs_hpuxacl.h"
605 #endif
606
607 #if defined(HAVE_IRIX_ACLS)
608 #include "modules/vfs_irixacl.h"
609 #endif
610
611 /* We need this after proto.h to reference GetTimeOfDay(). */
612 #include "smbprofile.h"
613
614 /* String routines */
615
616 #include "srvstr.h"
617 #include "safe_string.h"
618
619 /* prototypes from lib/util_transfer_file.c */
620 #include "transfer_file.h"
621
622 #ifndef SIGCLD
623 #define SIGCLD SIGCHLD
624 #endif
625
626 #ifndef SIGRTMIN
627 #define SIGRTMIN NSIG
628 #endif
629
630 #ifndef MAP_FILE
631 #define MAP_FILE 0
632 #endif
633
634 #if defined(HAVE_PUTPRPWNAM) && defined(AUTH_CLEARTEXT_SEG_CHARS)
635 #define OSF1_ENH_SEC 1
636 #endif
637
638 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
639 #define ULTRIX_AUTH 1
640 #endif
641
642 /* yuck, I'd like a better way of doing this */
643 #define DIRP_SIZE (256 + 32)
644
645 /* default socket options. Dave Miller thinks we should default to TCP_NODELAY
646    given the socket IO pattern that Samba uses */
647 #ifdef TCP_NODELAY
648 #define DEFAULT_SOCKET_OPTIONS "TCP_NODELAY"
649 #else
650 #define DEFAULT_SOCKET_OPTIONS ""
651 #endif
652
653 /* dmalloc -- free heap debugger (dmalloc.org).  This should be near
654  * the *bottom* of include files so as not to conflict. */
655 #ifdef ENABLE_DMALLOC
656 #  include <dmalloc.h>
657 #endif
658
659
660 #if HAVE_KERNEL_SHARE_MODES
661 #ifndef LOCK_MAND 
662 #define LOCK_MAND       32      /* This is a mandatory flock */
663 #define LOCK_READ       64      /* ... Which allows concurrent read operations */
664 #define LOCK_WRITE      128     /* ... Which allows concurrent write operations */
665 #define LOCK_RW         192     /* ... Which allows concurrent read & write ops */
666 #endif
667 #endif
668
669 #define MAX_SEC_CTX_DEPTH 8    /* Maximum number of security contexts */
670
671
672 #ifdef GLIBC_HACK_FCNTL64
673 /* this is a gross hack. 64 bit locking is completely screwed up on
674    i386 Linux in glibc 2.1.95 (which ships with RedHat 7.0). This hack
675    "fixes" the problem with the current 2.4.0test kernels 
676 */
677 #define fcntl fcntl64
678 #undef F_SETLKW 
679 #undef F_SETLK 
680 #define F_SETLK 13
681 #define F_SETLKW 14
682 #endif
683
684
685 /* needed for some systems without iconv. Doesn't really matter
686    what error code we use */
687 #ifndef EILSEQ
688 #define EILSEQ EIO
689 #endif
690
691 /* add varargs prototypes with printf checking */
692 /*PRINTFLIKE2 */
693 int fdprintf(int , const char *, ...) PRINTF_ATTRIBUTE(2,3);
694 /*PRINTFLIKE1 */
695 int d_printf(const char *, ...) PRINTF_ATTRIBUTE(1,2);
696 /*PRINTFLIKE2 */
697 int d_fprintf(FILE *f, const char *, ...) PRINTF_ATTRIBUTE(2,3);
698
699 /* PRINTFLIKE2 */
700 void sys_adminlog(int priority, const char *format_str, ...) PRINTF_ATTRIBUTE(2,3);
701
702 /* PRINTFLIKE2 */
703 int fstr_sprintf(fstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
704
705 int d_vfprintf(FILE *f, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
706
707 int smb_xvasprintf(char **ptr, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
708
709 int asprintf_strupper_m(char **strp, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
710 char *talloc_asprintf_strupper_m(TALLOC_CTX *t, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
711
712 /*
713  * Veritas File System.  Often in addition to native.
714  * Quotas different.
715  */
716 #if defined(HAVE_SYS_FS_VX_QUOTA_H)
717 #define VXFS_QUOTA
718 #endif
719
720 #ifndef XATTR_CREATE
721 #define XATTR_CREATE  0x1       /* set value, fail if attr already exists */
722 #endif
723
724 #ifndef XATTR_REPLACE
725 #define XATTR_REPLACE 0x2       /* set value, fail if attr does not exist */
726 #endif
727
728 #if defined(HAVE_LINUX_READAHEAD) && ! defined(HAVE_READAHEAD_DECL)
729 ssize_t readahead(int fd, off64_t offset, size_t count);
730 #endif
731
732 #ifdef TRUE
733 #undef TRUE
734 #endif
735 #define TRUE __ERROR__XX__DONT_USE_TRUE
736
737 #ifdef FALSE
738 #undef FALSE
739 #endif
740 #define FALSE __ERROR__XX__DONT_USE_FALSE
741
742 /* If we have blacklisted mmap() try to avoid using it accidentally by
743    undefining the HAVE_MMAP symbol. */
744
745 #ifdef MMAP_BLACKLIST
746 #undef HAVE_MMAP
747 #endif
748
749 #ifndef CONST_DISCARD
750 #define CONST_DISCARD(type, ptr)      ((type) ((void *) (ptr)))
751 #endif
752
753 void dump_core(void) _NORETURN_;
754 void exit_server(const char *const reason) _NORETURN_;
755 void exit_server_cleanly(const char *const reason) _NORETURN_;
756 void exit_server_fault(void) _NORETURN_;
757
758 #if defined(HAVE_IPV6)
759 void in6_addr_to_sockaddr_storage(struct sockaddr_storage *ss,
760                                   struct in6_addr ip);
761 #endif
762
763 /* samba3 doesn't use uwrap yet */
764 #define uwrap_enabled() 0
765
766 #define BASE_RID (0x000003E8L)
767
768 #endif /* _INCLUDES_H */