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