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