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