Add define guards around FSTRING_LEN.
[jra/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 /* work around broken krb5.h on sles9 */
24 #ifdef SIZEOF_LONG
25 #undef SIZEOF_LONG
26 #endif
27
28 #include "lib/replace/replace.h"
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)
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 AIX
57 #define DEFAULT_PRINTING PRINT_AIX
58 #define PRINTCAP_NAME "/etc/qconfig"
59 #endif
60
61 #ifdef HPUX
62 #define DEFAULT_PRINTING PRINT_HPUX
63 #endif
64
65 #ifdef QNX
66 #define DEFAULT_PRINTING PRINT_QNX
67 #endif
68
69 #ifdef SUNOS4
70 /* on SUNOS4 termios.h conflicts with sys/ioctl.h */
71 #undef HAVE_TERMIOS_H
72 #endif
73
74 #ifndef _PUBLIC_
75 #ifdef HAVE_VISIBILITY_ATTR
76 #  define _PUBLIC_ __attribute__((visibility("default")))
77 #else
78 #  define _PUBLIC_
79 #endif
80 #endif
81
82 #if defined(__GNUC__) && !defined(__cplusplus)
83 /** gcc attribute used on function parameters so that it does not emit
84  * warnings about them being unused. **/
85 #  define UNUSED(param) param __attribute__ ((unused))
86 #else
87 #  define UNUSED(param) param
88 /** Feel free to add definitions for other compilers here. */
89 #endif
90
91 #ifdef RELIANTUNIX
92 /*
93  * <unistd.h> has to be included before any other to get
94  * large file support on Reliant UNIX. Yes, it's broken :-).
95  */
96 #ifdef HAVE_UNISTD_H
97 #include <unistd.h>
98 #endif
99 #endif /* RELIANTUNIX */
100
101 #include "system/capability.h"
102 #include "system/dir.h"
103 #include "system/filesys.h"
104 #include "system/glob.h"
105 #include "system/iconv.h"
106 #include "system/locale.h"
107 #include "system/network.h"
108 #include "system/passwd.h"
109 #include "system/readline.h"
110 #include "system/select.h"
111 #include "system/shmem.h"
112 #include "system/syslog.h"
113 #include "system/terminal.h"
114 #include "system/time.h"
115 #include "system/wait.h"
116
117 #if defined(HAVE_RPC_RPC_H)
118 /*
119  * Check for AUTH_ERROR define conflict with rpc/rpc.h in prot.h.
120  */
121 #if defined(HAVE_SYS_SECURITY_H) && defined(HAVE_RPC_AUTH_ERROR_CONFLICT)
122 #undef AUTH_ERROR
123 #endif
124 /*
125  * HP-UX 11.X has TCP_NODELAY and TCP_MAXSEG defined in <netinet/tcp.h> which
126  * was included above.  However <rpc/rpc.h> includes <sys/xti.h> which defines
127  * them again without checking if they already exsist.  This generates
128  * two "Redefinition of macro" warnings for every single .c file that is
129  * compiled.
130  */
131 #if defined(HPUX) && defined(TCP_NODELAY)
132 #undef TCP_NODELAY
133 #endif
134 #if defined(HPUX) && defined(TCP_MAXSEG)
135 #undef TCP_MAXSEG
136 #endif
137 #include <rpc/rpc.h>
138 #endif
139
140 #if defined(HAVE_YP_GET_DEFAULT_DOMAIN) && defined(HAVE_SETNETGRENT) && defined(HAVE_ENDNETGRENT) && defined(HAVE_GETNETGRENT)
141 #define HAVE_NETGROUP 1
142 #endif
143
144 #if defined (HAVE_NETGROUP)
145 #if defined(HAVE_RPCSVC_YP_PROT_H)
146 /*
147  * HP-UX 11.X has TCP_NODELAY and TCP_MAXSEG defined in <netinet/tcp.h> which
148  * was included above.  However <rpc/rpc.h> includes <sys/xti.h> which defines
149  * them again without checking if they already exsist.  This generates
150  * two "Redefinition of macro" warnings for every single .c file that is
151  * compiled.
152  */
153 #if defined(HPUX) && defined(TCP_NODELAY)
154 #undef TCP_NODELAY
155 #endif
156 #if defined(HPUX) && defined(TCP_MAXSEG)
157 #undef TCP_MAXSEG
158 #endif
159 #include <rpcsvc/yp_prot.h>
160 #endif
161 #if defined(HAVE_RPCSVC_YPCLNT_H)
162 #include <rpcsvc/ypclnt.h>
163 #endif
164 #endif /* HAVE_NETGROUP */
165
166 #if HAVE_KRB5_H
167 #include <krb5.h>
168 #else
169 #undef HAVE_KRB5
170 #endif
171
172 #if HAVE_LBER_H
173 #include <lber.h>
174 #if defined(HPUX) && !defined(_LBER_TYPES_H)
175 /* Define ber_tag_t and ber_int_t for using
176  * HP LDAP-UX Integration products' LDAP libraries.
177 */
178 #ifndef ber_tag_t
179 typedef unsigned long ber_tag_t;
180 typedef int ber_int_t;
181 #endif
182 #endif /* defined(HPUX) && !defined(_LBER_TYPES_H) */
183 #ifndef LBER_USE_DER
184 #define LBER_USE_DER 0x01
185 #endif
186 #endif
187
188 #if HAVE_LDAP_H
189 #include <ldap.h>
190 #ifndef LDAP_CONST
191 #define LDAP_CONST const
192 #endif
193 #ifndef LDAP_OPT_SUCCESS
194 #define LDAP_OPT_SUCCESS 0
195 #endif
196 /* Solaris 8 and maybe other LDAP implementations spell this "..._INPROGRESS": */
197 #if defined(LDAP_SASL_BIND_INPROGRESS) && !defined(LDAP_SASL_BIND_IN_PROGRESS)
198 #define LDAP_SASL_BIND_IN_PROGRESS LDAP_SASL_BIND_INPROGRESS
199 #endif
200 /* Solaris 8 defines SSL_LDAP_PORT, not LDAPS_PORT and it only does so if
201    LDAP_SSL is defined - but SSL is not working. We just want the
202    port number! Let's just define LDAPS_PORT correct. */
203 #if !defined(LDAPS_PORT)
204 #define LDAPS_PORT 636
205 #endif
206 #else
207 #undef HAVE_LDAP
208 #endif
209
210 #if HAVE_GSSAPI_H
211 #include <gssapi.h>
212 #elif HAVE_GSSAPI_GSSAPI_H
213 #include <gssapi/gssapi.h>
214 #elif HAVE_GSSAPI_GSSAPI_GENERIC_H
215 #include <gssapi/gssapi_generic.h>
216 #endif
217
218 #if HAVE_COM_ERR_H
219 #include <com_err.h>
220 #endif
221
222 #if HAVE_SYS_ATTRIBUTES_H
223 #include <sys/attributes.h>
224 #endif
225
226 #ifndef ENOATTR
227 #define ENOATTR ENODATA
228 #endif
229
230 /* mutually exclusive (SuSE 8.2) */
231 #if HAVE_ATTR_XATTR_H
232 #include <attr/xattr.h>
233 #elif HAVE_SYS_XATTR_H
234 #include <sys/xattr.h>
235 #endif
236
237 #ifdef HAVE_SYS_EA_H
238 #include <sys/ea.h>
239 #endif
240
241 #ifdef HAVE_SYS_EXTATTR_H
242 #include <sys/extattr.h>
243 #endif
244
245 #ifdef HAVE_SYS_UIO_H
246 #include <sys/uio.h>
247 #endif
248
249 #if HAVE_LANGINFO_H
250 #include <langinfo.h>
251 #endif
252
253 #if defined(HAVE_AIO_H) && defined(WITH_AIO)
254 #include <aio.h>
255 #endif
256
257 /* skip valgrind headers on 64bit AMD boxes */
258 #ifndef HAVE_64BIT_LINUX
259 /* Special macros that are no-ops except when run under Valgrind on
260  * x86.  They've moved a little bit from valgrind 1.0.4 to 1.9.4 */
261 #if HAVE_VALGRIND_MEMCHECK_H
262         /* memcheck.h includes valgrind.h */
263 #include <valgrind/memcheck.h>
264 #elif HAVE_VALGRIND_H
265 #include <valgrind.h>
266 #endif
267 #endif
268
269 /* If we have --enable-developer and the valgrind header is present,
270  * then we're OK to use it.  Set a macro so this logic can be done only
271  * once. */
272 #if defined(DEVELOPER) && !defined(HAVE_64BIT_LINUX)
273 #if (HAVE_VALGRIND_H || HAVE_VALGRIND_VALGRIND_H)
274 #define VALGRIND
275 #endif
276 #endif
277
278
279 /* we support ADS if we want it and have krb5 and ldap libs */
280 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
281 #define HAVE_ADS
282 #endif
283
284 /*
285  * Define VOLATILE if needed.
286  */
287
288 #if defined(HAVE_VOLATILE)
289 #define VOLATILE volatile
290 #else
291 #define VOLATILE
292 #endif
293
294 /*
295  * Define additional missing types
296  */
297 #if defined(HAVE_SIG_ATOMIC_T_TYPE) && defined(AIX)
298 typedef sig_atomic_t SIG_ATOMIC_T;
299 #elif defined(HAVE_SIG_ATOMIC_T_TYPE) && !defined(AIX)
300 typedef sig_atomic_t VOLATILE SIG_ATOMIC_T;
301 #else
302 typedef int VOLATILE SIG_ATOMIC_T;
303 #endif
304
305 #ifndef uchar
306 #define uchar unsigned char
307 #endif
308
309 #ifdef HAVE_UNSIGNED_CHAR
310 #define schar signed char
311 #else
312 #define schar char
313 #endif
314
315 /*
316    Samba needs type definitions for int16, int32, uint16 and uint32.
317
318    Normally these are signed and unsigned 16 and 32 bit integers, but
319    they actually only need to be at least 16 and 32 bits
320    respectively. Thus if your word size is 8 bytes just defining them
321    as signed and unsigned int will work.
322 */
323
324 #ifndef uint8
325 #define uint8 unsigned char
326 #endif
327
328 #if !defined(int16) && !defined(HAVE_INT16_FROM_RPC_RPC_H)
329 #  if (SIZEOF_SHORT == 4)
330 #    define int16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
331 #  else /* SIZEOF_SHORT != 4 */
332 #    define int16 short
333 #  endif /* SIZEOF_SHORT != 4 */
334    /* needed to work around compile issue on HP-UX 11.x */
335 #  define _INT16        1
336 #endif
337
338 /*
339  * Note we duplicate the size tests in the unsigned 
340  * case as int16 may be a typedef from rpc/rpc.h
341  */
342
343 #if !defined(uint16) && !defined(HAVE_UINT16_FROM_RPC_RPC_H)
344 #if (SIZEOF_SHORT == 4)
345 #define uint16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
346 #else /* SIZEOF_SHORT != 4 */
347 #define uint16 unsigned short
348 #endif /* SIZEOF_SHORT != 4 */
349 #endif
350
351 #if !defined(int32) && !defined(HAVE_INT32_FROM_RPC_RPC_H)
352 #  if (SIZEOF_INT == 4)
353 #    define int32 int
354 #  elif (SIZEOF_LONG == 4)
355 #    define int32 long
356 #  elif (SIZEOF_SHORT == 4)
357 #    define int32 short
358 #  else
359      /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
360 #    define int32 int
361 #  endif
362    /* needed to work around compile issue on HP-UX 11.x */
363 #  define _INT32        1
364 #endif
365
366 /*
367  * Note we duplicate the size tests in the unsigned 
368  * case as int32 may be a typedef from rpc/rpc.h
369  */
370
371 #if !defined(uint32) && !defined(HAVE_UINT32_FROM_RPC_RPC_H)
372 #if (SIZEOF_INT == 4)
373 #define uint32 unsigned int
374 #elif (SIZEOF_LONG == 4)
375 #define uint32 unsigned long
376 #elif (SIZEOF_SHORT == 4)
377 #define uint32 unsigned short
378 #else
379 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
380 #define uint32 unsigned
381 #endif
382 #endif
383
384 /*
385  * check for 8 byte long long
386  */
387
388 #if !defined(uint64)
389 #if (SIZEOF_LONG == 8)
390 #define uint64 unsigned long
391 #elif (SIZEOF_LONG_LONG == 8)
392 #define uint64 unsigned long long
393 #endif  /* don't lie.  If we don't have it, then don't use it */
394 #endif
395
396 #if !defined(int64)
397 #if (SIZEOF_LONG == 8)
398 #define int64 long
399 #elif (SIZEOF_LONG_LONG == 8)
400 #define int64 long long
401 #endif  /* don't lie.  If we don't have it, then don't use it */
402 #endif
403
404
405 /*
406  * Types for devices, inodes and offsets.
407  */
408
409 #ifndef SMB_DEV_T
410 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)
411 #    define SMB_DEV_T dev64_t
412 #  else
413 #    define SMB_DEV_T dev_t
414 #  endif
415 #endif
416
417 #ifndef LARGE_SMB_DEV_T
418 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)) || (defined(SIZEOF_DEV_T) && (SIZEOF_DEV_T == 8))
419 #    define LARGE_SMB_DEV_T 1
420 #  endif
421 #endif
422
423 #ifdef LARGE_SMB_DEV_T
424 #define SDEV_T_VAL(p, ofs, v) (SIVAL((p),(ofs),(v)&0xFFFFFFFF), SIVAL((p),(ofs)+4,(v)>>32))
425 #define DEV_T_VAL(p, ofs) ((SMB_DEV_T)(((SMB_BIG_UINT)(IVAL((p),(ofs))))| (((SMB_BIG_UINT)(IVAL((p),(ofs)+4))) << 32)))
426 #else 
427 #define SDEV_T_VAL(p, ofs, v) (SIVAL((p),(ofs),v),SIVAL((p),(ofs)+4,0))
428 #define DEV_T_VAL(p, ofs) ((SMB_DEV_T)(IVAL((p),(ofs))))
429 #endif
430
431 /*
432  * Setup the correctly sized inode type.
433  */
434
435 #ifndef SMB_INO_T
436 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)
437 #    define SMB_INO_T ino64_t
438 #  else
439 #    define SMB_INO_T ino_t
440 #  endif
441 #endif
442
443 #ifndef LARGE_SMB_INO_T
444 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8))
445 #    define LARGE_SMB_INO_T 1
446 #  endif
447 #endif
448
449 #ifdef LARGE_SMB_INO_T
450 #define SINO_T_VAL(p, ofs, v) (SIVAL((p),(ofs),(v)&0xFFFFFFFF), SIVAL((p),(ofs)+4,(v)>>32))
451 #define INO_T_VAL(p, ofs) ((SMB_INO_T)(((SMB_BIG_UINT)(IVAL(p,ofs)))| (((SMB_BIG_UINT)(IVAL(p,(ofs)+4))) << 32)))
452 #else 
453 #define SINO_T_VAL(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
454 #define INO_T_VAL(p, ofs) ((SMB_INO_T)(IVAL((p),(ofs))))
455 #endif
456
457 #ifndef SMB_OFF_T
458 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)
459 #    define SMB_OFF_T off64_t
460 #  else
461 #    define SMB_OFF_T off_t
462 #  endif
463 #endif
464
465 #if defined(HAVE_LONGLONG)
466 #define SMB_BIG_UINT unsigned long long
467 #define SMB_BIG_INT long long
468 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
469 #else
470 #define SMB_BIG_UINT unsigned long
471 #define SMB_BIG_INT long
472 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
473 #endif
474
475 #define SMB_BIG_UINT_BITS (sizeof(SMB_BIG_UINT)*8)
476
477 /* this should really be a 64 bit type if possible */
478 #define br_off SMB_BIG_UINT
479
480 #define SMB_OFF_T_BITS (sizeof(SMB_OFF_T)*8)
481
482 /*
483  * Set the define that tells us if we can do 64 bit
484  * NT SMB calls.
485  */
486
487 #ifndef LARGE_SMB_OFF_T
488 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))
489 #    define LARGE_SMB_OFF_T 1
490 #  endif
491 #endif
492
493 #ifdef LARGE_SMB_OFF_T
494 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
495 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,(v)&0xFFFFFFFF), SIVAL(p,ofs,(v)>>32))
496 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF) )))
497 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF)) | \
498                 (( ((SMB_BIG_UINT)(IVAL((buf),(off+4)))) & ((SMB_BIG_UINT)0xFFFFFFFF) ) << 32 ) )
499 #else 
500 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
501 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,v),SIVAL(p,ofs,0))
502 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((uint32)(IVAL((buf),(off)))) & 0xFFFFFFFF )))
503 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF)) | \
504                                 (( ((SMB_BIG_UINT)(IVAL((buf),(off+4)))) & ((SMB_BIG_UINT)0xFFFFFFFF) ) << 32 ) )
505 #endif
506
507 /*
508  * Type for stat structure.
509  */
510
511 #ifndef SMB_STRUCT_STAT
512 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STAT64) && defined(HAVE_OFF64_T)
513 #    define SMB_STRUCT_STAT struct stat64
514 #  else
515 #    define SMB_STRUCT_STAT struct stat
516 #  endif
517 #endif
518
519 /*
520  * Type for dirent structure.
521  */
522
523 #ifndef SMB_STRUCT_DIRENT
524 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIRENT64)
525 #    define SMB_STRUCT_DIRENT struct dirent64
526 #  else
527 #    define SMB_STRUCT_DIRENT struct dirent
528 #  endif
529 #endif
530
531 /*
532  * Type for DIR structure.
533  */
534
535 #ifndef SMB_STRUCT_DIR
536 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIR64)
537 #    define SMB_STRUCT_DIR DIR64
538 #  else
539 #    define SMB_STRUCT_DIR DIR
540 #  endif
541 #endif
542
543 /*
544  * Defines for 64 bit fcntl locks.
545  */
546
547 #ifndef SMB_STRUCT_FLOCK
548 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
549 #    define SMB_STRUCT_FLOCK struct flock64
550 #  else
551 #    define SMB_STRUCT_FLOCK struct flock
552 #  endif
553 #endif
554
555 #ifndef SMB_F_SETLKW
556 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
557 #    define SMB_F_SETLKW F_SETLKW64
558 #  else
559 #    define SMB_F_SETLKW F_SETLKW
560 #  endif
561 #endif
562
563 #ifndef SMB_F_SETLK
564 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
565 #    define SMB_F_SETLK F_SETLK64
566 #  else
567 #    define SMB_F_SETLK F_SETLK
568 #  endif
569 #endif
570
571 #ifndef SMB_F_GETLK
572 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
573 #    define SMB_F_GETLK F_GETLK64
574 #  else
575 #    define SMB_F_GETLK F_GETLK
576 #  endif
577 #endif
578
579 /*
580  * Type for aiocb structure.
581  */
582
583 #ifndef SMB_STRUCT_AIOCB
584 #  if defined(WITH_AIO)
585 #    if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64)
586 #      define SMB_STRUCT_AIOCB struct aiocb64
587 #    else
588 #      define SMB_STRUCT_AIOCB struct aiocb
589 #    endif
590 #  else
591 #    define SMB_STRUCT_AIOCB int /* AIO not being used but we still need the define.... */
592 #  endif
593 #endif
594
595 #ifndef HAVE_STRUCT_TIMESPEC
596 struct timespec {
597         time_t tv_sec;            /* Seconds.  */
598         long tv_nsec;           /* Nanoseconds.  */
599 };
600 #endif
601
602 #ifndef MIN
603 #define MIN(a,b) ((a)<(b)?(a):(b))
604 #endif
605
606 #ifndef MAX
607 #define MAX(a,b) ((a)>(b)?(a):(b))
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 fstrings */
621
622 /*
623                   --------------
624                  /              \
625                 /      REST      \
626                /        IN        \
627               /       PEACE        \
628              /                      \
629              | The infamous pstring |
630              |                      |
631              |                      |
632              |      7 December      |
633              |                      |
634              |         2007         |
635             *|     *  *  *          | *
636    _________)/\\_//(\/(/\)/\//\/\///|_)_______
637 */
638
639 #ifndef FSTRING_LEN
640 #define FSTRING_LEN 256
641 typedef char fstring[FSTRING_LEN];
642 #endif
643
644 /* Lists, trees, caching, database... */
645 #include "xfile.h"
646 #include "intl.h"
647 #include "dlinklist.h"
648 #include "tdb.h"
649 #include "util_tdb.h"
650
651 #include "lib/talloc/talloc.h"
652 /* And a little extension. Abort on type mismatch */
653 #define talloc_get_type_abort(ptr, type) \
654         (type *)talloc_check_name_abort(ptr, #type)
655
656 #include "nt_status.h"
657 #include "ads.h"
658 #include "ads_dns.h"
659 #include "interfaces.h"
660 #include "trans2.h"
661 #include "nterr.h"
662 #include "ntioctl.h"
663 #include "charset.h"
664 #include "dynconfig.h"
665 #include "util_getent.h"
666 #include "debugparse.h"
667 #include "version.h"
668 #include "privileges.h"
669 #include "messages.h"
670 #include "locking.h"
671 #include "smb.h"
672 #include "ads_cldap.h"
673 #include "nameserv.h"
674 #include "secrets.h"
675 #include "byteorder.h"
676 #include "privileges.h"
677 #include "rpc_misc.h"
678 #include "rpc_dce.h"
679 #include "mapping.h"
680 #include "passdb.h"
681 #include "rpc_secdes.h"
682 #include "gpo.h"
683 #include "authdata.h"
684 #include "msdfs.h"
685 #include "rap.h"
686 #include "md5.h"
687 #include "hmacmd5.h"
688 #include "ntlmssp.h"
689 #include "auth.h"
690 #include "ntdomain.h"
691 #include "rpc_svcctl.h"
692 #include "rpc_ntsvcs.h"
693 #include "rpc_lsa.h"
694 #include "rpc_netlogon.h"
695 #include "reg_objects.h"
696 #include "reg_db.h"
697 #include "rpc_samr.h"
698 #include "rpc_srvsvc.h"
699 #include "rpc_spoolss.h"
700 #include "rpc_eventlog.h"
701 #include "rpc_ds.h"
702 #include "rpc_perfcount.h"
703 #include "rpc_perfcount_defs.h"
704 #include "librpc/gen_ndr/notify.h"
705 #include "nt_printing.h"
706 #include "idmap.h"
707 #include "client.h"
708
709 #include "session.h"
710 #include "asn_1.h"
711 #include "popt.h"
712 #include "mangle.h"
713 #include "module.h"
714 #include "nsswitch/winbind_client.h"
715 #include "spnego.h"
716 #include "rpc_client.h"
717 #include "event.h"
718 #include "dbwrap.h"
719 #include "packet.h"
720 #include "ctdbd_conn.h"
721 #include "talloc_stack.h"
722
723 /* used in net.c */
724 struct functable {
725         const char *funcname;
726         int (*fn)(int argc, const char **argv);
727 };
728
729 struct functable2 {
730         const char *funcname;
731         int (*fn)(int argc, const char **argv);
732         const char *helptext;
733 };
734
735 /* Defines for wisXXX functions. */
736 #define UNI_UPPER    0x1
737 #define UNI_LOWER    0x2
738 #define UNI_DIGIT    0x4
739 #define UNI_XDIGIT   0x8
740 #define UNI_SPACE    0x10
741
742 #include "nsswitch/winbind_nss.h"
743
744 /* forward declaration from printing.h to get around 
745    header file dependencies */
746
747 struct printjob;
748
749 /* forward declarations from smbldap.c */
750
751 #include "smbldap.h"
752
753 #include "smb_ldap.h"
754
755 /*
756  * Reasons for cache flush.
757  */
758
759 enum flush_reason_enum {
760     SEEK_FLUSH,
761     READ_FLUSH,
762     WRITE_FLUSH,
763     READRAW_FLUSH,
764     OPLOCK_RELEASE_FLUSH,
765     CLOSE_FLUSH,
766     SYNC_FLUSH,
767     SIZECHANGE_FLUSH,
768     /* NUM_FLUSH_REASONS must remain the last value in the enumeration. */
769     NUM_FLUSH_REASONS};
770
771 #include "nss_info.h"
772
773 /* generated rpc server implementation functions */
774 #include "librpc/gen_ndr/srv_echo.h"
775 #include "librpc/gen_ndr/srv_svcctl.h"
776 #include "librpc/gen_ndr/srv_lsa.h"
777 #include "librpc/gen_ndr/srv_eventlog.h"
778 #include "librpc/gen_ndr/srv_winreg.h"
779 #include "librpc/gen_ndr/srv_initshutdown.h"
780
781 /***** automatically generated prototypes *****/
782 #ifndef NO_PROTO_H
783 #include "proto.h"
784 #endif
785
786 #ifdef HAVE_LDAP
787 #include "ads_protos.h"
788 #endif
789
790 /* We need this after proto.h to reference GetTimeOfDay(). */
791 #include "smbprofile.h"
792
793 /* String routines */
794
795 #include "srvstr.h"
796 #include "safe_string.h"
797
798 #ifdef __COMPAR_FN_T
799 #define QSORT_CAST (__compar_fn_t)
800 #endif
801
802 #ifndef QSORT_CAST
803 #define QSORT_CAST (int (*)(const void *, const void *))
804 #endif
805
806 #ifndef DEFAULT_PRINTING
807 #ifdef HAVE_CUPS
808 #define DEFAULT_PRINTING PRINT_CUPS
809 #define PRINTCAP_NAME "cups"
810 #elif defined(SYSV)
811 #define DEFAULT_PRINTING PRINT_SYSV
812 #define PRINTCAP_NAME "lpstat"
813 #else
814 #define DEFAULT_PRINTING PRINT_BSD
815 #define PRINTCAP_NAME "/etc/printcap"
816 #endif
817 #endif
818
819 #ifndef PRINTCAP_NAME
820 #define PRINTCAP_NAME "/etc/printcap"
821 #endif
822
823 #ifndef SIGCLD
824 #define SIGCLD SIGCHLD
825 #endif
826
827 #ifndef SIGRTMIN
828 #define SIGRTMIN 32
829 #endif
830
831 #ifndef MAP_FILE
832 #define MAP_FILE 0
833 #endif
834
835 #if defined(HAVE_PUTPRPWNAM) && defined(AUTH_CLEARTEXT_SEG_CHARS)
836 #define OSF1_ENH_SEC 1
837 #endif
838
839 #ifndef ALLOW_CHANGE_PASSWORD
840 #if (defined(HAVE_TERMIOS_H) && defined(HAVE_DUP2) && defined(HAVE_SETSID))
841 #define ALLOW_CHANGE_PASSWORD 1
842 #endif
843 #endif
844
845 /* what is the longest significant password available on your system? 
846  Knowing this speeds up password searches a lot */
847 #ifndef PASSWORD_LENGTH
848 #define PASSWORD_LENGTH 8
849 #endif
850
851 #ifndef HAVE_PIPE
852 #define SYNC_DNS 1
853 #endif
854
855 #ifndef SEEK_SET
856 #define SEEK_SET 0
857 #endif
858
859 #ifndef INADDR_LOOPBACK
860 #define INADDR_LOOPBACK 0x7f000001
861 #endif
862
863 #ifndef INADDR_NONE
864 #define INADDR_NONE 0xffffffff
865 #endif
866
867 #ifndef HAVE_CRYPT
868 #define crypt ufc_crypt
869 #endif
870
871 #ifndef O_ACCMODE
872 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
873 #endif
874
875 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
876 #define ULTRIX_AUTH 1
877 #endif
878
879 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESUID_DECL))
880 /* stupid glibc */
881 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
882 #endif
883 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESGID_DECL))
884 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
885 #endif
886
887 /*
888  * Some older systems seem not to have MAXHOSTNAMELEN
889  * defined.
890  */
891 #ifndef MAXHOSTNAMELEN
892 #define MAXHOSTNAMELEN 255
893 #endif
894
895 /* yuck, I'd like a better way of doing this */
896 #define DIRP_SIZE (256 + 32)
897
898 /*
899  * glibc on linux doesn't seem to have MSG_WAITALL
900  * defined. I think the kernel has it though..
901  */
902
903 #ifndef MSG_WAITALL
904 #define MSG_WAITALL 0
905 #endif
906
907 /* default socket options. Dave Miller thinks we should default to TCP_NODELAY
908    given the socket IO pattern that Samba uses */
909 #ifdef TCP_NODELAY
910 #define DEFAULT_SOCKET_OPTIONS "TCP_NODELAY"
911 #else
912 #define DEFAULT_SOCKET_OPTIONS ""
913 #endif
914
915 /* dmalloc -- free heap debugger (dmalloc.org).  This should be near
916  * the *bottom* of include files so as not to conflict. */
917 #ifdef ENABLE_DMALLOC
918 #  include <dmalloc.h>
919 #endif
920
921
922 /* Some POSIX definitions for those without */
923  
924 #ifndef S_IFDIR
925 #define S_IFDIR         0x4000
926 #endif
927 #ifndef S_ISDIR
928 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
929 #endif
930 #ifndef S_IRWXU
931 #define S_IRWXU 00700           /* read, write, execute: owner */
932 #endif
933 #ifndef S_IRUSR
934 #define S_IRUSR 00400           /* read permission: owner */
935 #endif
936 #ifndef S_IWUSR
937 #define S_IWUSR 00200           /* write permission: owner */
938 #endif
939 #ifndef S_IXUSR
940 #define S_IXUSR 00100           /* execute permission: owner */
941 #endif
942 #ifndef S_IRWXG
943 #define S_IRWXG 00070           /* read, write, execute: group */
944 #endif
945 #ifndef S_IRGRP
946 #define S_IRGRP 00040           /* read permission: group */
947 #endif
948 #ifndef S_IWGRP
949 #define S_IWGRP 00020           /* write permission: group */
950 #endif
951 #ifndef S_IXGRP
952 #define S_IXGRP 00010           /* execute permission: group */
953 #endif
954 #ifndef S_IRWXO
955 #define S_IRWXO 00007           /* read, write, execute: other */
956 #endif
957 #ifndef S_IROTH
958 #define S_IROTH 00004           /* read permission: other */
959 #endif
960 #ifndef S_IWOTH
961 #define S_IWOTH 00002           /* write permission: other */
962 #endif
963 #ifndef S_IXOTH
964 #define S_IXOTH 00001           /* execute permission: other */
965 #endif
966
967 /* For sys_adminlog(). */
968 #ifndef LOG_EMERG
969 #define LOG_EMERG       0       /* system is unusable */
970 #endif
971
972 #ifndef LOG_ALERT
973 #define LOG_ALERT       1       /* action must be taken immediately */
974 #endif
975
976 #ifndef LOG_CRIT
977 #define LOG_CRIT        2       /* critical conditions */
978 #endif
979
980 #ifndef LOG_ERR
981 #define LOG_ERR         3       /* error conditions */
982 #endif
983
984 #ifndef LOG_WARNING
985 #define LOG_WARNING     4       /* warning conditions */
986 #endif
987
988 #ifndef LOG_NOTICE
989 #define LOG_NOTICE      5       /* normal but significant condition */
990 #endif
991
992 #ifndef LOG_INFO
993 #define LOG_INFO        6       /* informational */
994 #endif
995
996 #ifndef LOG_DEBUG
997 #define LOG_DEBUG       7       /* debug-level messages */
998 #endif
999
1000 #if HAVE_KERNEL_SHARE_MODES
1001 #ifndef LOCK_MAND 
1002 #define LOCK_MAND       32      /* This is a mandatory flock */
1003 #define LOCK_READ       64      /* ... Which allows concurrent read operations */
1004 #define LOCK_WRITE      128     /* ... Which allows concurrent write operations */
1005 #define LOCK_RW         192     /* ... Which allows concurrent read & write ops */
1006 #endif
1007 #endif
1008
1009 extern int DEBUGLEVEL;
1010
1011 #define MAX_SEC_CTX_DEPTH 8    /* Maximum number of security contexts */
1012
1013
1014 #ifdef GLIBC_HACK_FCNTL64
1015 /* this is a gross hack. 64 bit locking is completely screwed up on
1016    i386 Linux in glibc 2.1.95 (which ships with RedHat 7.0). This hack
1017    "fixes" the problem with the current 2.4.0test kernels 
1018 */
1019 #define fcntl fcntl64
1020 #undef F_SETLKW 
1021 #undef F_SETLK 
1022 #define F_SETLK 13
1023 #define F_SETLKW 14
1024 #endif
1025
1026
1027 /* Needed for sys_dlopen/sys_dlsym/sys_dlclose */
1028 #ifndef RTLD_GLOBAL
1029 #define RTLD_GLOBAL 0
1030 #endif
1031
1032 #ifndef RTLD_LAZY
1033 #define RTLD_LAZY 0
1034 #endif
1035
1036 #ifndef RTLD_NOW
1037 #define RTLD_NOW 0
1038 #endif
1039
1040 /* needed for some systems without iconv. Doesn't really matter
1041    what error code we use */
1042 #ifndef EILSEQ
1043 #define EILSEQ EIO
1044 #endif
1045
1046 /* add varargs prototypes with printf checking */
1047 /*PRINTFLIKE2 */
1048 int fdprintf(int , const char *, ...) PRINTF_ATTRIBUTE(2,3);
1049 /*PRINTFLIKE1 */
1050 int d_printf(const char *, ...) PRINTF_ATTRIBUTE(1,2);
1051 /*PRINTFLIKE2 */
1052 int d_fprintf(FILE *f, const char *, ...) PRINTF_ATTRIBUTE(2,3);
1053
1054 /* PRINTFLIKE2 */
1055 void sys_adminlog(int priority, const char *format_str, ...) PRINTF_ATTRIBUTE(2,3);
1056
1057 /* PRINTFLIKE2 */
1058 int fstr_sprintf(fstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
1059
1060 int d_vfprintf(FILE *f, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
1061
1062 int smb_xvasprintf(char **ptr, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
1063
1064 int asprintf_strupper_m(char **strp, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
1065 char *talloc_asprintf_strupper_m(TALLOC_CTX *t, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
1066
1067 /* we used to use these fns, but now we have good replacements
1068    for snprintf and vsnprintf */
1069 #define slprintf snprintf
1070 #define vslprintf vsnprintf
1071
1072 /* we need to use __va_copy() on some platforms */
1073 #ifdef HAVE_VA_COPY
1074 #define VA_COPY(dest, src) va_copy(dest, src)
1075 #else
1076 #ifdef HAVE___VA_COPY
1077 #define VA_COPY(dest, src) __va_copy(dest, src)
1078 #else
1079 #define VA_COPY(dest, src) (dest) = (src)
1080 #endif
1081 #endif
1082
1083 /*
1084  * Veritas File System.  Often in addition to native.
1085  * Quotas different.
1086  */
1087 #if defined(HAVE_SYS_FS_VX_QUOTA_H)
1088 #define VXFS_QUOTA
1089 #endif
1090
1091 #if defined(HAVE_KRB5)
1092
1093 krb5_error_code smb_krb5_parse_name(krb5_context context,
1094                                 const char *name, /* in unix charset */
1095                                 krb5_principal *principal);
1096
1097 krb5_error_code smb_krb5_unparse_name(krb5_context context,
1098                                 krb5_const_principal principal,
1099                                 char **unix_name);
1100
1101 #ifndef HAVE_KRB5_SET_REAL_TIME
1102 krb5_error_code krb5_set_real_time(krb5_context context, int32_t seconds, int32_t microseconds);
1103 #endif
1104
1105 krb5_error_code krb5_set_default_tgs_ktypes(krb5_context ctx, const krb5_enctype *enc);
1106
1107 #if defined(HAVE_KRB5_AUTH_CON_SETKEY) && !defined(HAVE_KRB5_AUTH_CON_SETUSERUSERKEY)
1108 krb5_error_code krb5_auth_con_setuseruserkey(krb5_context context, krb5_auth_context auth_context, krb5_keyblock *keyblock);
1109 #endif
1110
1111 #ifndef HAVE_KRB5_FREE_UNPARSED_NAME
1112 void krb5_free_unparsed_name(krb5_context ctx, char *val);
1113 #endif
1114
1115 /* Stub out initialize_krb5_error_table since it is not present in all
1116  * Kerberos implementations. If it's not present, it's not necessary to
1117  * call it.
1118  */
1119 #ifndef HAVE_INITIALIZE_KRB5_ERROR_TABLE
1120 #define initialize_krb5_error_table()
1121 #endif
1122
1123 /* Samba wrapper function for krb5 functionality. */
1124 bool setup_kaddr( krb5_address *pkaddr, struct sockaddr_storage *paddr);
1125 int create_kerberos_key_from_string(krb5_context context, krb5_principal host_princ, krb5_data *password, krb5_keyblock *key, krb5_enctype enctype);
1126 int create_kerberos_key_from_string_direct(krb5_context context, krb5_principal host_princ, krb5_data *password, krb5_keyblock *key, krb5_enctype enctype);
1127 bool get_auth_data_from_tkt(TALLOC_CTX *mem_ctx, DATA_BLOB *auth_data, krb5_ticket *tkt);
1128 krb5_const_principal get_principal_from_tkt(krb5_ticket *tkt);
1129 krb5_error_code smb_krb5_locate_kdc(krb5_context ctx, const krb5_data *realm, struct sockaddr **addr_pp, int *naddrs, int get_masters);
1130 #if defined(HAVE_KRB5_LOCATE_KDC)
1131 krb5_error_code krb5_locate_kdc(krb5_context ctx, const krb5_data *realm, struct sockaddr **addr_pp, int *naddrs, int get_masters);
1132 #endif
1133 krb5_error_code get_kerberos_allowed_etypes(krb5_context context, krb5_enctype **enctypes);
1134 bool get_krb5_smb_session_key(krb5_context context, krb5_auth_context auth_context, DATA_BLOB *session_key, bool remote);
1135 krb5_error_code smb_krb5_kt_free_entry(krb5_context context, krb5_keytab_entry *kt_entry);
1136 krb5_principal kerberos_fetch_salt_princ_for_host_princ(krb5_context context, krb5_principal host_princ, int enctype);
1137 void kerberos_set_creds_enctype(krb5_creds *pcreds, int enctype);
1138 bool kerberos_compatible_enctypes(krb5_context context, krb5_enctype enctype1, krb5_enctype enctype2);
1139 void kerberos_free_data_contents(krb5_context context, krb5_data *pdata);
1140 NTSTATUS decode_pac_data(TALLOC_CTX *mem_ctx,
1141                          DATA_BLOB *pac_data_blob,
1142                          krb5_context context, 
1143                          krb5_keyblock *service_keyblock,
1144                          krb5_const_principal client_principal,
1145                          time_t tgs_authtime,
1146                          PAC_DATA **pac_data);
1147 void smb_krb5_checksum_from_pac_sig(krb5_checksum *cksum, 
1148                                     PAC_SIGNATURE_DATA *sig);
1149 krb5_error_code smb_krb5_verify_checksum(krb5_context context,
1150                                          krb5_keyblock *keyblock,
1151                                          krb5_keyusage usage,
1152                                          krb5_checksum *cksum,
1153                                          uint8 *data,
1154                                          size_t length);
1155 time_t get_authtime_from_tkt(krb5_ticket *tkt);
1156 void smb_krb5_free_ap_req(krb5_context context, 
1157                           krb5_ap_req *ap_req);
1158 krb5_error_code smb_krb5_get_keyinfo_from_ap_req(krb5_context context, 
1159                                                  const krb5_data *inbuf, 
1160                                                  krb5_kvno *kvno, 
1161                                                  krb5_enctype *enctype);
1162 krb5_error_code krb5_rd_req_return_keyblock_from_keytab(krb5_context context,
1163                                                         krb5_auth_context *auth_context,
1164                                                         const krb5_data *inbuf,
1165                                                         krb5_const_principal server,
1166                                                         krb5_keytab keytab,
1167                                                         krb5_flags *ap_req_options,
1168                                                         krb5_ticket **ticket, 
1169                                                         krb5_keyblock **keyblock);
1170 krb5_error_code smb_krb5_parse_name_norealm(krb5_context context, 
1171                                             const char *name, 
1172                                             krb5_principal *principal);
1173 bool smb_krb5_principal_compare_any_realm(krb5_context context, 
1174                                           krb5_const_principal princ1, 
1175                                           krb5_const_principal princ2);
1176 int cli_krb5_get_ticket(const char *principal, time_t time_offset, 
1177                         DATA_BLOB *ticket, DATA_BLOB *session_key_krb5, uint32 extra_ap_opts, const char *ccname, time_t *tgs_expire);
1178 PAC_LOGON_INFO *get_logon_info_from_pac(PAC_DATA *pac_data);
1179 krb5_error_code smb_krb5_renew_ticket(const char *ccache_string, const char *client_string, const char *service_string, time_t *expire_time);
1180 krb5_error_code kpasswd_err_to_krb5_err(krb5_error_code res_code);
1181 krb5_error_code smb_krb5_gen_netbios_krb5_address(smb_krb5_addresses **kerb_addr);
1182 krb5_error_code smb_krb5_free_addresses(krb5_context context, smb_krb5_addresses *addr);
1183 NTSTATUS krb5_to_nt_status(krb5_error_code kerberos_error);
1184 krb5_error_code nt_status_to_krb5(NTSTATUS nt_status);
1185 void smb_krb5_free_error(krb5_context context, krb5_error *krberror);
1186 krb5_error_code handle_krberror_packet(krb5_context context,
1187                                          krb5_data *packet);
1188
1189 void smb_krb5_get_init_creds_opt_free(krb5_context context,
1190                                     krb5_get_init_creds_opt *opt);
1191 krb5_error_code smb_krb5_get_init_creds_opt_alloc(krb5_context context,
1192                                     krb5_get_init_creds_opt **opt);
1193 krb5_error_code smb_krb5_mk_error(krb5_context context,
1194                                         krb5_error_code error_code,
1195                                         const krb5_principal server,
1196                                         krb5_data *reply);
1197 krb5_enctype smb_get_enctype_from_kt_entry(const krb5_keytab_entry *kt_entry);
1198 krb5_error_code smb_krb5_enctype_to_string(krb5_context context, 
1199                                             krb5_enctype enctype, 
1200                                             char **etype_s);
1201 krb5_error_code smb_krb5_open_keytab(krb5_context context, 
1202                                       const char *keytab_name, 
1203                                       bool write_access, 
1204                                       krb5_keytab *keytab);
1205 #endif /* HAVE_KRB5 */
1206
1207
1208 #ifdef HAVE_LDAP
1209
1210 /* function declarations not included in proto.h */
1211 LDAP *ldap_open_with_timeout(const char *server, int port, unsigned int to);
1212
1213 #endif  /* HAVE_LDAP */
1214
1215 #if defined(HAVE_LINUX_READAHEAD) && ! defined(HAVE_READAHEAD_DECL)
1216 ssize_t readahead(int fd, off64_t offset, size_t count);
1217 #endif
1218
1219 /* TRUE and FALSE are part of the C99 standard and gcc, but
1220    unfortunately many vendor compilers don't support them.  Use True
1221    and False instead. */
1222
1223 #ifdef TRUE
1224 #undef TRUE
1225 #endif
1226 #define TRUE __ERROR__XX__DONT_USE_TRUE
1227
1228 #ifdef FALSE
1229 #undef FALSE
1230 #endif
1231 #define FALSE __ERROR__XX__DONT_USE_FALSE
1232
1233 /* If we have blacklisted mmap() try to avoid using it accidentally by
1234    undefining the HAVE_MMAP symbol. */
1235
1236 #ifdef MMAP_BLACKLIST
1237 #undef HAVE_MMAP
1238 #endif
1239
1240 #define CONST_DISCARD(type, ptr)      ((type) ((void *) (ptr)))
1241 #define CONST_ADD(type, ptr)          ((type) ((const void *) (ptr)))
1242
1243 #ifndef NORETURN_ATTRIBUTE
1244 #if (__GNUC__ >= 3)
1245 #define NORETURN_ATTRIBUTE __attribute__ ((noreturn))
1246 #else
1247 #define NORETURN_ATTRIBUTE
1248 #endif
1249 #endif
1250
1251 void smb_panic( const char *why ) NORETURN_ATTRIBUTE ;
1252 void dump_core(void) NORETURN_ATTRIBUTE ;
1253 void exit_server(const char *const reason) NORETURN_ATTRIBUTE ;
1254 void exit_server_cleanly(const char *const reason) NORETURN_ATTRIBUTE ;
1255 void exit_server_fault(void) NORETURN_ATTRIBUTE ;
1256
1257 #ifdef HAVE_LIBNSCD
1258 #include "libnscd.h"
1259 #endif
1260
1261 #endif /* _INCLUDES_H */