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