BIG merge from trunk. Features not copied over
[metze/old/v3-2-winbind-ndr.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 #ifndef NO_CONFIG_H /* for some tests */
25 #include "config.h"
26 #endif
27
28 #ifndef __cplusplus
29 #define class #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
30 /* allow to build with newer heimdal releases */
31 /* #define private #error DONT_USE_CPLUSPLUS_RESERVED_NAMES */
32 #define public #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
33 #define protected #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
34 #define template #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
35 #define this #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
36 #define new #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
37 #define delete #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
38 #define friend #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
39 #endif
40
41 #include "local.h"
42
43 #ifdef AIX
44 #define DEFAULT_PRINTING PRINT_AIX
45 #define PRINTCAP_NAME "/etc/qconfig"
46 #endif
47
48 #ifdef HPUX
49 #define DEFAULT_PRINTING PRINT_HPUX
50 #endif
51
52 #ifdef QNX
53 #define DEFAULT_PRINTING PRINT_QNX
54 #endif
55
56 #ifdef SUNOS4
57 /* on SUNOS4 termios.h conflicts with sys/ioctl.h */
58 #undef HAVE_TERMIOS_H
59 #endif
60
61 #if (__GNUC__ >= 3 ) && (__GNUC_MINOR__ >= 1 )
62 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
63  * the parameter containing the format, and a2 the index of the first
64  * argument. Note that some gcc 2.x versions don't handle this
65  * properly **/
66 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
67 #else
68 #define PRINTF_ATTRIBUTE(a1, a2)
69 #endif
70
71 #if defined(__GNUC__) && !defined(__cplusplus)
72 /** gcc attribute used on function parameters so that it does not emit
73  * warnings about them being unused. **/
74 #  define UNUSED(param) param __attribute__ ((unused))
75 #else
76 #  define UNUSED(param) param
77 /** Feel free to add definitions for other compilers here. */
78 #endif
79
80 #ifdef RELIANTUNIX
81 /*
82  * <unistd.h> has to be included before any other to get
83  * large file support on Reliant UNIX. Yes, it's broken :-).
84  */
85 #ifdef HAVE_UNISTD_H
86 #include <unistd.h>
87 #endif
88 #endif /* RELIANTUNIX */
89
90 #include <sys/types.h>
91
92 #ifdef TIME_WITH_SYS_TIME
93 #include <sys/time.h>
94 #include <time.h>
95 #else
96 #ifdef HAVE_SYS_TIME_H
97 #include <sys/time.h>
98 #else
99 #include <time.h>
100 #endif
101 #endif
102
103 #ifdef HAVE_SYS_RESOURCE_H
104 #include <sys/resource.h>
105 #endif
106
107 #ifdef HAVE_UNISTD_H
108 #include <unistd.h>
109 #endif
110
111 #include <stdio.h>
112 #include <stddef.h>
113
114 #ifdef HAVE_SYS_PARAM_H
115 #include <sys/param.h>
116 #endif
117
118 #ifdef HAVE_STDLIB_H
119 #include <stdlib.h>
120 #endif
121
122 #ifdef HAVE_SYS_SOCKET_H
123 #include <sys/socket.h>
124 #endif
125
126 #ifdef HAVE_UNIXSOCKET
127 #include <sys/un.h>
128 #endif
129
130 #ifdef HAVE_SYS_SYSCALL_H
131 #include <sys/syscall.h>
132 #elif HAVE_SYSCALL_H
133 #include <syscall.h>
134 #endif
135
136 #ifdef HAVE_STRING_H
137 #include <string.h>
138 #endif
139
140 #ifdef HAVE_STRINGS_H
141 #include <strings.h>
142 #endif
143
144 #ifdef HAVE_MEMORY_H
145 #include <memory.h>
146 #endif
147
148 #ifdef HAVE_MALLOC_H
149 #include <malloc.h>
150 #endif
151
152 #ifdef HAVE_FCNTL_H
153 #include <fcntl.h>
154 #else
155 #ifdef HAVE_SYS_FCNTL_H
156 #include <sys/fcntl.h>
157 #endif
158 #endif
159
160 #include <sys/stat.h>
161
162 #ifdef HAVE_LIMITS_H
163 #include <limits.h>
164 #endif
165
166 #ifdef HAVE_SYS_IOCTL_H
167 #include <sys/ioctl.h>
168 #endif
169
170 #ifdef HAVE_SYS_FILIO_H
171 #include <sys/filio.h>
172 #endif
173
174 #include <signal.h>
175
176 #ifdef HAVE_SYS_WAIT_H
177 #include <sys/wait.h>
178 #endif
179 #ifdef HAVE_CTYPE_H
180 #include <ctype.h>
181 #endif
182 #ifdef HAVE_GRP_H
183 #include <grp.h>
184 #endif
185 #ifdef HAVE_SYS_PRIV_H
186 #include <sys/priv.h>
187 #endif
188 #ifdef HAVE_SYS_ID_H
189 #include <sys/id.h>
190 #endif
191
192 #include <errno.h>
193
194 #ifdef HAVE_UTIME_H
195 #include <utime.h>
196 #endif
197
198 #ifdef HAVE_SYS_SELECT_H
199 #include <sys/select.h>
200 #endif
201
202 #ifdef HAVE_SYS_MODE_H
203 /* apparently AIX needs this for S_ISLNK */
204 #ifndef S_ISLNK
205 #include <sys/mode.h>
206 #endif
207 #endif
208
209 #ifdef HAVE_GLOB_H
210 #include <glob.h>
211 #endif
212
213 #include <pwd.h>
214
215 #ifdef HAVE_STDARG_H
216 #include <stdarg.h>
217 #else
218 #include <varargs.h>
219 #endif
220
221 #include <netinet/in.h>
222 #include <arpa/inet.h>
223 #include <netdb.h>
224
225 #ifdef HAVE_SYSLOG_H
226 #include <syslog.h>
227 #else
228 #ifdef HAVE_SYS_SYSLOG_H
229 #include <sys/syslog.h>
230 #endif
231 #endif
232
233 #include <sys/file.h>
234
235 #ifdef HAVE_NETINET_TCP_H
236 #include <netinet/tcp.h>
237 #endif
238
239 /*
240  * The next three defines are needed to access the IPTOS_* options
241  * on some systems.
242  */
243
244 #ifdef HAVE_NETINET_IN_SYSTM_H
245 #include <netinet/in_systm.h>
246 #endif
247
248 #ifdef HAVE_NETINET_IN_IP_H
249 #include <netinet/in_ip.h>
250 #endif
251
252 #ifdef HAVE_NETINET_IP_H
253 #include <netinet/ip.h>
254 #endif
255
256 #if defined(HAVE_TERMIOS_H)
257 /* POSIX terminal handling. */
258 #include <termios.h>
259 #elif defined(HAVE_TERMIO_H)
260 /* Older SYSV terminal handling - don't use if we can avoid it. */
261 #include <termio.h>
262 #elif defined(HAVE_SYS_TERMIO_H)
263 /* Older SYSV terminal handling - don't use if we can avoid it. */
264 #include <sys/termio.h>
265 #endif
266
267 #if HAVE_DIRENT_H
268 # include <dirent.h>
269 # define NAMLEN(dirent) strlen((dirent)->d_name)
270 #else
271 # define dirent direct
272 # define NAMLEN(dirent) (dirent)->d_namlen
273 # if HAVE_SYS_NDIR_H
274 #  include <sys/ndir.h>
275 # endif
276 # if HAVE_SYS_DIR_H
277 #  include <sys/dir.h>
278 # endif
279 # if HAVE_NDIR_H
280 #  include <ndir.h>
281 # endif
282 #endif
283
284 #ifdef HAVE_SYS_MMAN_H
285 #include <sys/mman.h>
286 #endif
287
288 #ifdef HAVE_NET_IF_H
289 #include <net/if.h>
290 #endif
291
292
293 #ifdef HAVE_SYS_MOUNT_H
294 #include <sys/mount.h>
295 #endif
296
297 #ifdef HAVE_SYS_VFS_H
298 #include <sys/vfs.h>
299 #endif
300
301 #ifdef HAVE_SYS_ACL_H
302 #include <sys/acl.h>
303 #endif
304
305 #ifdef HAVE_SYS_FS_S5PARAM_H 
306 #include <sys/fs/s5param.h>
307 #endif
308
309 #if defined (HAVE_SYS_FILSYS_H) && !defined (_CRAY)
310 #include <sys/filsys.h> 
311 #endif
312
313 #ifdef HAVE_SYS_STATFS_H
314 # include <sys/statfs.h>
315 #endif
316
317 #ifdef HAVE_DUSTAT_H              
318 #include <sys/dustat.h>
319 #endif
320
321 #ifdef HAVE_SYS_STATVFS_H          
322 #include <sys/statvfs.h>
323 #endif
324
325 #ifdef HAVE_SHADOW_H
326 /*
327  * HP-UX 11.X has TCP_NODELAY and TCP_MAXSEG defined in <netinet/tcp.h> which
328  * was included above.  However <rpc/rpc.h> includes <sys/xti.h> which defines
329  * them again without checking if they already exsist.  This generates
330  * two "Redefinition of macro" warnings for every single .c file that is
331  * compiled.
332  */
333 #if defined(HPUX) && defined(TCP_NODELAY)
334 #undef TCP_NODELAY
335 #endif
336 #if defined(HPUX) && defined(TCP_MAXSEG)
337 #undef TCP_MAXSEG
338 #endif
339 #include <shadow.h>
340 #endif
341
342 #ifdef HAVE_GETPWANAM
343 #include <sys/label.h>
344 #include <sys/audit.h>
345 #include <pwdadj.h>
346 #endif
347
348 #ifdef HAVE_SYS_SECURITY_H
349 #include <sys/security.h>
350 #include <prot.h>
351 #define PASSWORD_LENGTH 16
352 #endif  /* HAVE_SYS_SECURITY_H */
353
354 #ifdef HAVE_STROPTS_H
355 #include <stropts.h>
356 #endif
357
358 #ifdef HAVE_POLL_H
359 #include <poll.h>
360 #endif
361
362 #ifdef HAVE_EXECINFO_H
363 #include <execinfo.h>
364 #endif
365
366 #ifdef HAVE_SYS_CAPABILITY_H
367
368 #if defined(BROKEN_REDHAT_7_SYSTEM_HEADERS) && !defined(_I386_STATFS_H) && !defined(_PPC_STATFS_H)
369 #define _I386_STATFS_H
370 #define _PPC_STATFS_H
371 #define BROKEN_REDHAT_7_STATFS_WORKAROUND
372 #endif
373
374 #include <sys/capability.h>
375
376 #ifdef BROKEN_REDHAT_7_STATFS_WORKAROUND
377 #undef _I386_STATFS_H
378 #undef _PPC_STATFS_H
379 #undef BROKEN_REDHAT_7_STATFS_WORKAROUND
380 #endif
381
382 #endif
383
384 #if defined(HAVE_RPC_RPC_H)
385 /*
386  * Check for AUTH_ERROR define conflict with rpc/rpc.h in prot.h.
387  */
388 #if defined(HAVE_SYS_SECURITY_H) && defined(HAVE_RPC_AUTH_ERROR_CONFLICT)
389 #undef AUTH_ERROR
390 #endif
391 /*
392  * HP-UX 11.X has TCP_NODELAY and TCP_MAXSEG defined in <netinet/tcp.h> which
393  * was included above.  However <rpc/rpc.h> includes <sys/xti.h> which defines
394  * them again without checking if they already exsist.  This generates
395  * two "Redefinition of macro" warnings for every single .c file that is
396  * compiled.
397  */
398 #if defined(HPUX) && defined(TCP_NODELAY)
399 #undef TCP_NODELAY
400 #endif
401 #if defined(HPUX) && defined(TCP_MAXSEG)
402 #undef TCP_MAXSEG
403 #endif
404 #include <rpc/rpc.h>
405 #endif
406
407 #if defined(HAVE_YP_GET_DEFAULT_DOMAIN) && defined(HAVE_SETNETGRENT) && defined(HAVE_ENDNETGRENT) && defined(HAVE_GETNETGRENT)
408 #define HAVE_NETGROUP 1
409 #endif
410
411 #if defined (HAVE_NETGROUP)
412 #if defined(HAVE_RPCSVC_YP_PROT_H)
413 /*
414  * HP-UX 11.X has TCP_NODELAY and TCP_MAXSEG defined in <netinet/tcp.h> which
415  * was included above.  However <rpc/rpc.h> includes <sys/xti.h> which defines
416  * them again without checking if they already exsist.  This generates
417  * two "Redefinition of macro" warnings for every single .c file that is
418  * compiled.
419  */
420 #if defined(HPUX) && defined(TCP_NODELAY)
421 #undef TCP_NODELAY
422 #endif
423 #if defined(HPUX) && defined(TCP_MAXSEG)
424 #undef TCP_MAXSEG
425 #endif
426 #include <rpcsvc/yp_prot.h>
427 #endif
428 #if defined(HAVE_RPCSVC_YPCLNT_H)
429 #include <rpcsvc/ypclnt.h>
430 #endif
431 #endif /* HAVE_NETGROUP */
432
433 #if defined(HAVE_SYS_IPC_H)
434 #include <sys/ipc.h>
435 #endif /* HAVE_SYS_IPC_H */
436
437 #if defined(HAVE_SYS_SHM_H)
438 #include <sys/shm.h>
439 #endif /* HAVE_SYS_SHM_H */
440
441 #ifdef HAVE_NATIVE_ICONV
442 #ifdef HAVE_ICONV
443 #include <iconv.h>
444 #endif
445 #ifdef HAVE_GICONV
446 #include <giconv.h>
447 #endif
448 #ifdef HAVE_BICONV
449 #include <biconv.h>
450 #endif
451 #endif
452
453 #if HAVE_KRB5_H
454 #include <krb5.h>
455 #else
456 #undef HAVE_KRB5
457 #endif
458
459 #if HAVE_LBER_H
460 #include <lber.h>
461 #endif
462
463 #if HAVE_LDAP_H
464 #include <ldap.h>
465 #else
466 #undef HAVE_LDAP
467 #endif
468
469 #if HAVE_GSSAPI_H
470 #include <gssapi.h>
471 #elif HAVE_GSSAPI_GSSAPI_H
472 #include <gssapi/gssapi.h>
473 #elif HAVE_GSSAPI_GSSAPI_GENERIC_H
474 #include <gssapi/gssapi_generic.h>
475 #endif
476
477 #if HAVE_COM_ERR_H
478 #include <com_err.h>
479 #endif
480
481 #if HAVE_SYS_ATTRIBUTES_H
482 #include <sys/attributes.h>
483 #endif
484
485 /* mutually exclusive (SuSE 8.2) */
486 #if HAVE_ATTR_XATTR_H
487 #include <attr/xattr.h>
488 #elif HAVE_SYS_XATTR_H
489 #include <sys/xattr.h>
490 #endif
491
492 #ifdef HAVE_SYS_EXTATTR_H
493 #include <sys/extattr.h>
494 #endif
495
496 #ifdef HAVE_SYS_UIO_H
497 #include <sys/uio.h>
498 #endif
499
500 #if HAVE_LOCALE_H
501 #include <locale.h>
502 #endif
503
504 #if HAVE_LANGINFO_H
505 #include <langinfo.h>
506 #endif
507
508 #ifdef HAVE_AIO_H
509 #include <aio.h>
510 #endif
511
512 /* skip valgrind headers on 64bit AMD boxes */
513 #ifndef HAVE_64BIT_LINUX
514 /* Special macros that are no-ops except when run under Valgrind on
515  * x86.  They've moved a little bit from valgrind 1.0.4 to 1.9.4 */
516 #if HAVE_VALGRIND_MEMCHECK_H
517         /* memcheck.h includes valgrind.h */
518 #include <valgrind/memcheck.h>
519 #elif HAVE_VALGRIND_H
520 #include <valgrind.h>
521 #endif
522 #endif
523
524 /* If we have --enable-developer and the valgrind header is present,
525  * then we're OK to use it.  Set a macro so this logic can be done only
526  * once. */
527 #if defined(DEVELOPER) && (HAVE_VALGRIND_H || HAVE_VALGRIND_VALGRIND_H)
528 #define VALGRIND
529 #endif
530
531
532 /* we support ADS if we want it and have krb5 and ldap libs */
533 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
534 #define HAVE_ADS
535 #endif
536
537 /*
538  * Define VOLATILE if needed.
539  */
540
541 #if defined(HAVE_VOLATILE)
542 #define VOLATILE volatile
543 #else
544 #define VOLATILE
545 #endif
546
547 /*
548  * Define additional missing types
549  */
550 #if defined(HAVE_SIG_ATOMIC_T_TYPE) && defined(AIX)
551 typedef sig_atomic_t SIG_ATOMIC_T;
552 #elif defined(HAVE_SIG_ATOMIC_T_TYPE) && !defined(AIX)
553 typedef sig_atomic_t VOLATILE SIG_ATOMIC_T;
554 #else
555 typedef int VOLATILE SIG_ATOMIC_T;
556 #endif
557
558 #ifndef HAVE_SOCKLEN_T_TYPE
559 typedef int socklen_t;
560 #endif
561
562
563 #ifndef uchar
564 #define uchar unsigned char
565 #endif
566
567 #ifdef HAVE_UNSIGNED_CHAR
568 #define schar signed char
569 #else
570 #define schar char
571 #endif
572
573 /*
574    Samba needs type definitions for int16, int32, uint16 and uint32.
575
576    Normally these are signed and unsigned 16 and 32 bit integers, but
577    they actually only need to be at least 16 and 32 bits
578    respectively. Thus if your word size is 8 bytes just defining them
579    as signed and unsigned int will work.
580 */
581
582 #ifndef uint8
583 #define uint8 unsigned char
584 #endif
585
586 #if !defined(int16) && !defined(HAVE_INT16_FROM_RPC_RPC_H)
587 #if (SIZEOF_SHORT == 4)
588 #define int16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
589 #else /* SIZEOF_SHORT != 4 */
590 #define int16 short
591 #endif /* SIZEOF_SHORT != 4 */
592 #endif
593
594 /*
595  * Note we duplicate the size tests in the unsigned 
596  * case as int16 may be a typedef from rpc/rpc.h
597  */
598
599 #if !defined(uint16) && !defined(HAVE_UINT16_FROM_RPC_RPC_H)
600 #if (SIZEOF_SHORT == 4)
601 #define uint16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
602 #else /* SIZEOF_SHORT != 4 */
603 #define uint16 unsigned short
604 #endif /* SIZEOF_SHORT != 4 */
605 #endif
606
607 #if !defined(int32) && !defined(HAVE_INT32_FROM_RPC_RPC_H)
608 #if (SIZEOF_INT == 4)
609 #define int32 int
610 #elif (SIZEOF_LONG == 4)
611 #define int32 long
612 #elif (SIZEOF_SHORT == 4)
613 #define int32 short
614 #else
615 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
616 #define int32 int
617 #endif
618 #endif
619
620 /*
621  * Note we duplicate the size tests in the unsigned 
622  * case as int32 may be a typedef from rpc/rpc.h
623  */
624
625 #if !defined(uint32) && !defined(HAVE_UINT32_FROM_RPC_RPC_H)
626 #if (SIZEOF_INT == 4)
627 #define uint32 unsigned int
628 #elif (SIZEOF_LONG == 4)
629 #define uint32 unsigned long
630 #elif (SIZEOF_SHORT == 4)
631 #define uint32 unsigned short
632 #else
633 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
634 #define uint32 unsigned
635 #endif
636 #endif
637
638 /*
639  * Types for devices, inodes and offsets.
640  */
641
642 #ifndef SMB_DEV_T
643 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)
644 #    define SMB_DEV_T dev64_t
645 #  else
646 #    define SMB_DEV_T dev_t
647 #  endif
648 #endif
649
650 /*
651  * Setup the correctly sized inode type.
652  */
653
654 #ifndef SMB_INO_T
655 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)
656 #    define SMB_INO_T ino64_t
657 #  else
658 #    define SMB_INO_T ino_t
659 #  endif
660 #endif
661
662 #ifndef LARGE_SMB_INO_T
663 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8))
664 #    define LARGE_SMB_INO_T 1
665 #  endif
666 #endif
667
668 #ifdef LARGE_SMB_INO_T
669 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
670 #else 
671 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
672 #endif
673
674 #ifndef SMB_OFF_T
675 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)
676 #    define SMB_OFF_T off64_t
677 #  else
678 #    define SMB_OFF_T off_t
679 #  endif
680 #endif
681
682 #if defined(HAVE_LONGLONG)
683 #define SMB_BIG_UINT unsigned long long
684 #define SMB_BIG_INT long long
685 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
686 #else
687 #define SMB_BIG_UINT unsigned long
688 #define SMB_BIG_INT long
689 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
690 #endif
691
692 #define SMB_BIG_UINT_BITS (sizeof(SMB_BIG_UINT)*8)
693
694 /* this should really be a 64 bit type if possible */
695 #define br_off SMB_BIG_UINT
696
697 #define SMB_OFF_T_BITS (sizeof(SMB_OFF_T)*8)
698
699 /*
700  * Set the define that tells us if we can do 64 bit
701  * NT SMB calls.
702  */
703
704 #ifndef LARGE_SMB_OFF_T
705 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))
706 #    define LARGE_SMB_OFF_T 1
707 #  endif
708 #endif
709
710 #ifdef LARGE_SMB_OFF_T
711 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
712 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,(v)&0xFFFFFFFF), SIVAL(p,ofs,(v)>>32))
713 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF) )))
714 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF)) | \
715                 (( ((SMB_BIG_UINT)(IVAL((buf),(off+4)))) & ((SMB_BIG_UINT)0xFFFFFFFF) ) << 32 ) )
716 #else 
717 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
718 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,v),SIVAL(p,ofs,0))
719 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((uint32)(IVAL((buf),(off)))) & 0xFFFFFFFF )))
720 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF)) | \
721                                 (( ((SMB_BIG_UINT)(IVAL((buf),(off+4)))) & ((SMB_BIG_UINT)0xFFFFFFFF) ) << 32 ) )
722 #endif
723
724 /*
725  * Type for stat structure.
726  */
727
728 #ifndef SMB_STRUCT_STAT
729 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STAT64) && defined(HAVE_OFF64_T)
730 #    define SMB_STRUCT_STAT struct stat64
731 #  else
732 #    define SMB_STRUCT_STAT struct stat
733 #  endif
734 #endif
735
736 /*
737  * Type for dirent structure.
738  */
739
740 #ifndef SMB_STRUCT_DIRENT
741 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIRENT64)
742 #    define SMB_STRUCT_DIRENT struct dirent64
743 #  else
744 #    define SMB_STRUCT_DIRENT struct dirent
745 #  endif
746 #endif
747
748 /*
749  * Type for DIR structure.
750  */
751
752 #ifndef SMB_STRUCT_DIR
753 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIR64)
754 #    define SMB_STRUCT_DIR DIR64
755 #  else
756 #    define SMB_STRUCT_DIR DIR
757 #  endif
758 #endif
759
760 /*
761  * Defines for 64 bit fcntl locks.
762  */
763
764 #ifndef SMB_STRUCT_FLOCK
765 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
766 #    define SMB_STRUCT_FLOCK struct flock64
767 #  else
768 #    define SMB_STRUCT_FLOCK struct flock
769 #  endif
770 #endif
771
772 #ifndef SMB_F_SETLKW
773 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
774 #    define SMB_F_SETLKW F_SETLKW64
775 #  else
776 #    define SMB_F_SETLKW F_SETLKW
777 #  endif
778 #endif
779
780 #ifndef SMB_F_SETLK
781 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
782 #    define SMB_F_SETLK F_SETLK64
783 #  else
784 #    define SMB_F_SETLK F_SETLK
785 #  endif
786 #endif
787
788 #ifndef SMB_F_GETLK
789 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
790 #    define SMB_F_GETLK F_GETLK64
791 #  else
792 #    define SMB_F_GETLK F_GETLK
793 #  endif
794 #endif
795
796 /*
797  * Type for aiocb structure.
798  */
799
800 #ifndef SMB_STRUCT_AIOCB
801 #  if defined(WITH_AIO)
802 #    if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64)
803 #      define SMB_STRUCT_AIOCB struct aiocb64
804 #    else
805 #      define SMB_STRUCT_AIOCB struct aiocb
806 #    endif
807 #  else
808 #    define SMB_STRUCT_AIOCB int /* AIO not being used but we still need the define.... */
809 #  endif
810 #endif
811
812 #ifndef HAVE_STRUCT_TIMESPEC
813 struct timespec {
814         time_t tv_sec;            /* Seconds.  */
815         long tv_nsec;           /* Nanoseconds.  */
816 };
817 #endif
818
819 #ifndef MIN
820 #define MIN(a,b) ((a)<(b)?(a):(b))
821 #endif
822
823 #ifndef MAX
824 #define MAX(a,b) ((a)>(b)?(a):(b))
825 #endif
826
827 #ifndef HAVE_STRERROR
828 extern char *sys_errlist[];
829 #define strerror(i) sys_errlist[i]
830 #endif
831
832 #ifndef HAVE_ERRNO_DECL
833 extern int errno;
834 #endif
835
836 #ifdef HAVE_BROKEN_GETGROUPS
837 #define GID_T int
838 #else
839 #define GID_T gid_t
840 #endif
841
842 #ifndef NGROUPS_MAX
843 #define NGROUPS_MAX 32 /* Guess... */
844 #endif
845
846 #ifdef SOCKET_WRAPPER
847 #define SOCKET_WRAPPER_REPLACE
848 #include "include/socket_wrapper.h"
849 #endif
850
851 /* Our own pstrings and fstrings */
852 #include "pstring.h"
853
854 /* Lists, trees, caching, database... */
855 #include "xfile.h"
856 #include "intl.h"
857 #include "ubi_sLinkList.h"
858 #include "ubi_dLinkList.h"
859 #include "dlinklist.h"
860 #include "tdb/tdb.h"
861 #include "tdb/spinlock.h"
862 #include "tdb/tdbutil.h"
863
864 #include "talloc.h"
865 /* And a little extension. Abort on type mismatch */
866 #define talloc_get_type_abort(ptr, type) \
867         (type *)talloc_check_name_abort(ptr, #type)
868
869 #include "nt_status.h"
870 #include "ads.h"
871 #include "interfaces.h"
872 #include "trans2.h"
873 #include "nterr.h"
874 #include "ntioctl.h"
875 #include "messages.h"
876 #include "charset.h"
877 #include "dynconfig.h"
878
879 #include "util_getent.h"
880
881 #ifndef UBI_BINTREE_H
882 #include "ubi_Cache.h"
883 #endif /* UBI_BINTREE_H */
884
885 #include "debugparse.h"
886
887 #include "version.h"
888
889 #include "privileges.h"
890
891 #include "smb.h"
892
893 #include "nameserv.h"
894
895 #include "secrets.h"
896
897 #include "byteorder.h"
898
899 #include "privileges.h"
900
901 #include "rpc_misc.h"
902
903 #include "rpc_dce.h"
904
905 #include "mapping.h"
906
907 #include "passdb.h"
908
909 #include "rpc_secdes.h"
910
911 #include "authdata.h"
912
913 #include "msdfs.h"
914
915 #include "smbprofile.h"
916
917 #include "rap.h"
918
919 #include "md5.h"
920 #include "hmacmd5.h"
921
922 #include "ntlmssp.h"
923
924 #include "auth.h"
925
926 #include "ntdomain.h"
927
928 #include "rpc_svcctl.h"
929 #include "rpc_ntsvcs.h"
930 #include "rpc_lsa.h"
931 #include "rpc_netlogon.h"
932 #include "reg_objects.h"
933 #include "rpc_reg.h"
934 #include "rpc_samr.h"
935 #include "rpc_srvsvc.h"
936 #include "rpc_wkssvc.h"
937 #include "rpc_spoolss.h"
938 #include "rpc_eventlog.h"
939 #include "rpc_dfs.h"
940 #include "rpc_ds.h"
941 #include "rpc_echo.h"
942 #include "rpc_shutdown.h"
943 #include "rpc_unixinfo.h"
944 #include "rpc_perfcount.h"
945 #include "rpc_perfcount_defs.h"
946
947 #include "nt_printing.h"
948
949 #include "idmap.h"
950
951 #include "client.h"
952
953 #ifdef WITH_SMBWRAPPER
954 #include "smbw.h"
955 #endif
956
957 #include "session.h"
958
959 #include "asn_1.h"
960
961 #include "popt.h"
962
963 #include "mangle.h"
964
965 #include "module.h"
966
967 #include "nsswitch/winbind_client.h"
968
969 #include "spnego.h"
970
971 #include "rpc_client.h"
972
973 /*
974  * Type for wide character dirent structure.
975  * Only d_name is defined by POSIX.
976  */
977
978 typedef struct smb_wdirent {
979         wpstring        d_name;
980 } SMB_STRUCT_WDIRENT;
981
982 /*
983  * Type for wide character passwd structure.
984  */
985
986 typedef struct smb_wpasswd {
987         wfstring       pw_name;
988         char           *pw_passwd;
989         uid_t          pw_uid;
990         gid_t          pw_gid;
991         wpstring       pw_gecos;
992         wpstring       pw_dir;
993         wpstring       pw_shell;
994 } SMB_STRUCT_WPASSWD;
995
996 /* used in net.c */
997 struct functable {
998         const char *funcname;
999         int (*fn)(int argc, const char **argv);
1000 };
1001
1002
1003 /* Defines for wisXXX functions. */
1004 #define UNI_UPPER    0x1
1005 #define UNI_LOWER    0x2
1006 #define UNI_DIGIT    0x4
1007 #define UNI_XDIGIT   0x8
1008 #define UNI_SPACE    0x10
1009
1010 #include "nsswitch/winbind_nss.h"
1011
1012 /* forward declaration from printing.h to get around 
1013    header file dependencies */
1014
1015 struct printjob;
1016
1017 struct smb_ldap_privates;
1018
1019 /* forward declarations from smbldap.c */
1020
1021 #include "smbldap.h"
1022
1023 #include "smb_ldap.h"
1024
1025 /***** automatically generated prototypes *****/
1026 #ifndef NO_PROTO_H
1027 #include "proto.h"
1028 #endif
1029
1030 /* String routines */
1031
1032 #include "srvstr.h"
1033 #include "safe_string.h"
1034
1035 #ifdef __COMPAR_FN_T
1036 #define QSORT_CAST (__compar_fn_t)
1037 #endif
1038
1039 #ifndef QSORT_CAST
1040 #define QSORT_CAST (int (*)(const void *, const void *))
1041 #endif
1042
1043 #ifndef DEFAULT_PRINTING
1044 #ifdef HAVE_CUPS
1045 #define DEFAULT_PRINTING PRINT_CUPS
1046 #define PRINTCAP_NAME "cups"
1047 #elif defined(SYSV)
1048 #define DEFAULT_PRINTING PRINT_SYSV
1049 #define PRINTCAP_NAME "lpstat"
1050 #else
1051 #define DEFAULT_PRINTING PRINT_BSD
1052 #define PRINTCAP_NAME "/etc/printcap"
1053 #endif
1054 #endif
1055
1056 #ifndef PRINTCAP_NAME
1057 #define PRINTCAP_NAME "/etc/printcap"
1058 #endif
1059
1060 #ifndef SIGCLD
1061 #define SIGCLD SIGCHLD
1062 #endif
1063
1064 #ifndef SIGRTMIN
1065 #define SIGRTMIN 32
1066 #endif
1067
1068 #ifndef MAP_FILE
1069 #define MAP_FILE 0
1070 #endif
1071
1072 #if defined(HAVE_PUTPRPWNAM) && defined(AUTH_CLEARTEXT_SEG_CHARS)
1073 #define OSF1_ENH_SEC 1
1074 #endif
1075
1076 #ifndef ALLOW_CHANGE_PASSWORD
1077 #if (defined(HAVE_TERMIOS_H) && defined(HAVE_DUP2) && defined(HAVE_SETSID))
1078 #define ALLOW_CHANGE_PASSWORD 1
1079 #endif
1080 #endif
1081
1082 /* what is the longest significant password available on your system? 
1083  Knowing this speeds up password searches a lot */
1084 #ifndef PASSWORD_LENGTH
1085 #define PASSWORD_LENGTH 8
1086 #endif
1087
1088 #ifdef REPLACE_INET_NTOA
1089 #define inet_ntoa rep_inet_ntoa
1090 #endif
1091
1092 #ifndef HAVE_PIPE
1093 #define SYNC_DNS 1
1094 #endif
1095
1096 #ifndef SEEK_SET
1097 #define SEEK_SET 0
1098 #endif
1099
1100 #ifndef INADDR_LOOPBACK
1101 #define INADDR_LOOPBACK 0x7f000001
1102 #endif
1103
1104 #ifndef INADDR_NONE
1105 #define INADDR_NONE 0xffffffff
1106 #endif
1107
1108 #ifndef HAVE_CRYPT
1109 #define crypt ufc_crypt
1110 #endif
1111
1112 #ifndef O_ACCMODE
1113 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
1114 #endif
1115
1116 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
1117 #define ULTRIX_AUTH 1
1118 #endif
1119
1120 #ifndef HAVE_STRDUP
1121 char *strdup(const char *s);
1122 #endif
1123
1124 #ifndef HAVE_STRNDUP
1125 char *strndup(const char *s, size_t size);
1126 #endif
1127
1128 #ifndef HAVE_MEMMOVE
1129 void *memmove(void *dest,const void *src,int size);
1130 #endif
1131
1132 #ifndef HAVE_INITGROUPS
1133 int initgroups(char *name,gid_t id);
1134 #endif
1135
1136 #ifndef HAVE_RENAME
1137 int rename(const char *zfrom, const char *zto);
1138 #endif
1139
1140 #ifndef HAVE_MKTIME
1141 time_t mktime(struct tm *t);
1142 #endif
1143
1144 #ifndef HAVE_STRLCPY
1145 size_t strlcpy(char *d, const char *s, size_t bufsize);
1146 #endif
1147
1148 #ifndef HAVE_STRLCAT
1149 size_t strlcat(char *d, const char *s, size_t bufsize);
1150 #endif
1151
1152 #ifndef HAVE_FTRUNCATE
1153 int ftruncate(int f,long l);
1154 #endif
1155
1156 #ifndef HAVE_STRNDUP
1157 char *strndup(const char *s, size_t n);
1158 #endif
1159
1160 #ifndef HAVE_STRNLEN
1161 size_t strnlen(const char *s, size_t n);
1162 #endif
1163
1164 #ifndef HAVE_STRTOUL
1165 unsigned long strtoul(const char *nptr, char **endptr, int base);
1166 #endif
1167
1168 #ifndef HAVE_SETENV
1169 int setenv(const char *name, const char *value, int overwrite); 
1170 #endif
1171
1172 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESUID_DECL))
1173 /* stupid glibc */
1174 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
1175 #endif
1176 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESGID_DECL))
1177 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
1178 #endif
1179 #ifndef HAVE_VASPRINTF_DECL
1180 int vasprintf(char **ptr, const char *format, va_list ap);
1181 #endif
1182
1183 #ifdef REPLACE_GETPASS
1184 #define getpass(prompt) getsmbpass((prompt))
1185 #endif
1186
1187 /*
1188  * Some older systems seem not to have MAXHOSTNAMELEN
1189  * defined.
1190  */
1191 #ifndef MAXHOSTNAMELEN
1192 #define MAXHOSTNAMELEN 254
1193 #endif
1194
1195 /* yuck, I'd like a better way of doing this */
1196 #define DIRP_SIZE (256 + 32)
1197
1198 /*
1199  * glibc on linux doesn't seem to have MSG_WAITALL
1200  * defined. I think the kernel has it though..
1201  */
1202
1203 #ifndef MSG_WAITALL
1204 #define MSG_WAITALL 0
1205 #endif
1206
1207 /* default socket options. Dave Miller thinks we should default to TCP_NODELAY
1208    given the socket IO pattern that Samba uses */
1209 #ifdef TCP_NODELAY
1210 #define DEFAULT_SOCKET_OPTIONS "TCP_NODELAY"
1211 #else
1212 #define DEFAULT_SOCKET_OPTIONS ""
1213 #endif
1214
1215 /* Load header file for dynamic linking stuff */
1216
1217 #ifdef HAVE_DLFCN_H
1218 #include <dlfcn.h>
1219 #endif
1220
1221 /* dmalloc -- free heap debugger (dmalloc.org).  This should be near
1222  * the *bottom* of include files so as not to conflict. */
1223 #ifdef ENABLE_DMALLOC
1224 #  include <dmalloc.h>
1225 #endif
1226
1227
1228 /* Some POSIX definitions for those without */
1229  
1230 #ifndef S_IFDIR
1231 #define S_IFDIR         0x4000
1232 #endif
1233 #ifndef S_ISDIR
1234 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
1235 #endif
1236 #ifndef S_IRWXU
1237 #define S_IRWXU 00700           /* read, write, execute: owner */
1238 #endif
1239 #ifndef S_IRUSR
1240 #define S_IRUSR 00400           /* read permission: owner */
1241 #endif
1242 #ifndef S_IWUSR
1243 #define S_IWUSR 00200           /* write permission: owner */
1244 #endif
1245 #ifndef S_IXUSR
1246 #define S_IXUSR 00100           /* execute permission: owner */
1247 #endif
1248 #ifndef S_IRWXG
1249 #define S_IRWXG 00070           /* read, write, execute: group */
1250 #endif
1251 #ifndef S_IRGRP
1252 #define S_IRGRP 00040           /* read permission: group */
1253 #endif
1254 #ifndef S_IWGRP
1255 #define S_IWGRP 00020           /* write permission: group */
1256 #endif
1257 #ifndef S_IXGRP
1258 #define S_IXGRP 00010           /* execute permission: group */
1259 #endif
1260 #ifndef S_IRWXO
1261 #define S_IRWXO 00007           /* read, write, execute: other */
1262 #endif
1263 #ifndef S_IROTH
1264 #define S_IROTH 00004           /* read permission: other */
1265 #endif
1266 #ifndef S_IWOTH
1267 #define S_IWOTH 00002           /* write permission: other */
1268 #endif
1269 #ifndef S_IXOTH
1270 #define S_IXOTH 00001           /* execute permission: other */
1271 #endif
1272
1273 /* For sys_adminlog(). */
1274 #ifndef LOG_EMERG
1275 #define LOG_EMERG       0       /* system is unusable */
1276 #endif
1277
1278 #ifndef LOG_ALERT
1279 #define LOG_ALERT       1       /* action must be taken immediately */
1280 #endif
1281
1282 #ifndef LOG_CRIT
1283 #define LOG_CRIT        2       /* critical conditions */
1284 #endif
1285
1286 #ifndef LOG_ERR
1287 #define LOG_ERR         3       /* error conditions */
1288 #endif
1289
1290 #ifndef LOG_WARNING
1291 #define LOG_WARNING     4       /* warning conditions */
1292 #endif
1293
1294 #ifndef LOG_NOTICE
1295 #define LOG_NOTICE      5       /* normal but significant condition */
1296 #endif
1297
1298 #ifndef LOG_INFO
1299 #define LOG_INFO        6       /* informational */
1300 #endif
1301
1302 #ifndef LOG_DEBUG
1303 #define LOG_DEBUG       7       /* debug-level messages */
1304 #endif
1305
1306 #if HAVE_KERNEL_SHARE_MODES
1307 #ifndef LOCK_MAND 
1308 #define LOCK_MAND       32      /* This is a mandatory flock */
1309 #define LOCK_READ       64      /* ... Which allows concurrent read operations */
1310 #define LOCK_WRITE      128     /* ... Which allows concurrent write operations */
1311 #define LOCK_RW         192     /* ... Which allows concurrent read & write ops */
1312 #endif
1313 #endif
1314
1315 extern int DEBUGLEVEL;
1316
1317 #define MAX_SEC_CTX_DEPTH 8    /* Maximum number of security contexts */
1318
1319
1320 #ifdef GLIBC_HACK_FCNTL64
1321 /* this is a gross hack. 64 bit locking is completely screwed up on
1322    i386 Linux in glibc 2.1.95 (which ships with RedHat 7.0). This hack
1323    "fixes" the problem with the current 2.4.0test kernels 
1324 */
1325 #define fcntl fcntl64
1326 #undef F_SETLKW 
1327 #undef F_SETLK 
1328 #define F_SETLK 13
1329 #define F_SETLKW 14
1330 #endif
1331
1332
1333 /* Needed for sys_dlopen/sys_dlsym/sys_dlclose */
1334 #ifndef RTLD_GLOBAL
1335 #define RTLD_GLOBAL 0
1336 #endif
1337
1338 #ifndef RTLD_LAZY
1339 #define RTLD_LAZY 0
1340 #endif
1341
1342 #ifndef RTLD_NOW
1343 #define RTLD_NOW 0
1344 #endif
1345
1346 /* needed for some systems without iconv. Doesn't really matter
1347    what error code we use */
1348 #ifndef EILSEQ
1349 #define EILSEQ EIO
1350 #endif
1351
1352 /* add varargs prototypes with printf checking */
1353 /*PRINTFLIKE2 */
1354 int fdprintf(int , const char *, ...) PRINTF_ATTRIBUTE(2,3);
1355 /*PRINTFLIKE1 */
1356 int d_printf(const char *, ...) PRINTF_ATTRIBUTE(1,2);
1357 /*PRINTFLIKE2 */
1358 int d_fprintf(FILE *f, const char *, ...) PRINTF_ATTRIBUTE(2,3);
1359 #ifndef HAVE_SNPRINTF_DECL
1360 /*PRINTFLIKE3 */
1361 int snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
1362 #endif
1363 #ifndef HAVE_ASPRINTF_DECL
1364 /*PRINTFLIKE2 */
1365 int asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
1366 #endif
1367
1368 /* Fix prototype problem with non-C99 compliant snprintf implementations, esp
1369    HPUX 11.  Don't change the sense of this #if statement.  Read the comments
1370    in lib/snprint.c if you think you need to.  See also bugzilla bug 174. */
1371
1372 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
1373 #define snprintf smb_snprintf
1374 #define vsnprintf smb_vsnprintf
1375
1376 /* PRINTFLIKE3 */
1377 int smb_snprintf(char *str,size_t count,const char *fmt,...);
1378 int smb_vsnprintf (char *str, size_t count, const char *fmt, va_list args);
1379
1380 #endif
1381
1382 /* PRINTFLIKE2 */
1383 void sys_adminlog(int priority, const char *format_str, ...) PRINTF_ATTRIBUTE(2,3);
1384
1385 /* PRINTFLIKE2 */
1386 int pstr_sprintf(pstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
1387 /* PRINTFLIKE2 */
1388 int fstr_sprintf(fstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
1389
1390 int d_vfprintf(FILE *f, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
1391
1392 int smb_xvasprintf(char **ptr, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
1393
1394 /* we used to use these fns, but now we have good replacements
1395    for snprintf and vsnprintf */
1396 #define slprintf snprintf
1397 #define vslprintf vsnprintf
1398
1399 /* we need to use __va_copy() on some platforms */
1400 #ifdef HAVE_VA_COPY
1401 #define VA_COPY(dest, src) va_copy(dest, src)
1402 #else
1403 #ifdef HAVE___VA_COPY
1404 #define VA_COPY(dest, src) __va_copy(dest, src)
1405 #else
1406 #define VA_COPY(dest, src) (dest) = (src)
1407 #endif
1408 #endif
1409
1410 #ifndef HAVE_TIMEGM
1411 time_t timegm(struct tm *tm);
1412 #endif
1413
1414 /*
1415  * Veritas File System.  Often in addition to native.
1416  * Quotas different.
1417  */
1418 #if defined(HAVE_SYS_FS_VX_QUOTA_H)
1419 #define VXFS_QUOTA
1420 #endif
1421
1422 #if defined(HAVE_KRB5)
1423
1424 #ifndef HAVE_KRB5_SET_REAL_TIME
1425 krb5_error_code krb5_set_real_time(krb5_context context, int32_t seconds, int32_t microseconds);
1426 #endif
1427
1428 #ifndef HAVE_KRB5_SET_DEFAULT_TGS_KTYPES
1429 krb5_error_code krb5_set_default_tgs_ktypes(krb5_context ctx, const krb5_enctype *enc);
1430 #endif
1431
1432 #if defined(HAVE_KRB5_AUTH_CON_SETKEY) && !defined(HAVE_KRB5_AUTH_CON_SETUSERUSERKEY)
1433 krb5_error_code krb5_auth_con_setuseruserkey(krb5_context context, krb5_auth_context auth_context, krb5_keyblock *keyblock);
1434 #endif
1435
1436 #ifndef HAVE_KRB5_FREE_UNPARSED_NAME
1437 void krb5_free_unparsed_name(krb5_context ctx, char *val);
1438 #endif
1439
1440 /* Samba wrapper function for krb5 functionality. */
1441 void setup_kaddr( krb5_address *pkaddr, struct sockaddr *paddr);
1442 int create_kerberos_key_from_string(krb5_context context, krb5_principal host_princ, krb5_data *password, krb5_keyblock *key, krb5_enctype enctype);
1443 int create_kerberos_key_from_string_direct(krb5_context context, krb5_principal host_princ, krb5_data *password, krb5_keyblock *key, krb5_enctype enctype);
1444 BOOL get_auth_data_from_tkt(TALLOC_CTX *mem_ctx, DATA_BLOB *auth_data, krb5_ticket *tkt);
1445 krb5_const_principal get_principal_from_tkt(krb5_ticket *tkt);
1446 krb5_error_code krb5_locate_kdc(krb5_context ctx, const krb5_data *realm, struct sockaddr **addr_pp, int *naddrs, int get_masters);
1447 krb5_error_code get_kerberos_allowed_etypes(krb5_context context, krb5_enctype **enctypes);
1448 void free_kerberos_etypes(krb5_context context, krb5_enctype *enctypes);
1449 BOOL get_krb5_smb_session_key(krb5_context context, krb5_auth_context auth_context, DATA_BLOB *session_key, BOOL remote);
1450 krb5_error_code smb_krb5_kt_free_entry(krb5_context context, krb5_keytab_entry *kt_entry);
1451 krb5_principal kerberos_fetch_salt_princ_for_host_princ(krb5_context context, krb5_principal host_princ, int enctype);
1452 void kerberos_set_creds_enctype(krb5_creds *pcreds, int enctype);
1453 BOOL kerberos_compatible_enctypes(krb5_context context, krb5_enctype enctype1, krb5_enctype enctype2);
1454 void kerberos_free_data_contents(krb5_context context, krb5_data *pdata);
1455 #endif /* HAVE_KRB5 */
1456
1457
1458 #ifdef HAVE_LDAP
1459
1460 /* function declarations not included in proto.h */
1461 LDAP *ldap_open_with_timeout(const char *server, int port, unsigned int to);
1462
1463 #endif  /* HAVE_LDAP */
1464
1465
1466 /* TRUE and FALSE are part of the C99 standard and gcc, but
1467    unfortunately many vendor compilers don't support them.  Use True
1468    and False instead. */
1469
1470 #ifdef TRUE
1471 #undef TRUE
1472 #endif
1473 #define TRUE __ERROR__XX__DONT_USE_TRUE
1474
1475 #ifdef FALSE
1476 #undef FALSE
1477 #endif
1478 #define FALSE __ERROR__XX__DONT_USE_FALSE
1479
1480 /* If we have blacklisted mmap() try to avoid using it accidentally by
1481    undefining the HAVE_MMAP symbol. */
1482
1483 #ifdef MMAP_BLACKLIST
1484 #undef HAVE_MMAP
1485 #endif
1486
1487 #define CONST_DISCARD(type, ptr)      ((type) ((void *) (ptr)))
1488 #define CONST_ADD(type, ptr)          ((type) ((const void *) (ptr)))
1489
1490 #endif /* _INCLUDES_H */