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