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