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