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