r12107: Move to a tdb-based wins database. At the moment we still
[tprouty/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 #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 #ifndef LBER_USE_DER
462 #define LBER_USE_DER 0x01
463 #endif
464 #endif
465
466 #if HAVE_LDAP_H
467 #include <ldap.h>
468 #ifndef LDAP_CONST
469 #define LDAP_CONST const
470 #endif
471 #ifndef LDAP_OPT_SUCCESS
472 #define LDAP_OPT_SUCCESS 0
473 #endif
474 #else
475 #undef HAVE_LDAP
476 #endif
477
478 #if HAVE_GSSAPI_H
479 #include <gssapi.h>
480 #elif HAVE_GSSAPI_GSSAPI_H
481 #include <gssapi/gssapi.h>
482 #elif HAVE_GSSAPI_GSSAPI_GENERIC_H
483 #include <gssapi/gssapi_generic.h>
484 #endif
485
486 #if HAVE_COM_ERR_H
487 #include <com_err.h>
488 #endif
489
490 #if HAVE_SYS_ATTRIBUTES_H
491 #include <sys/attributes.h>
492 #endif
493
494 /* mutually exclusive (SuSE 8.2) */
495 #if HAVE_ATTR_XATTR_H
496 #include <attr/xattr.h>
497 #elif HAVE_SYS_XATTR_H
498 #include <sys/xattr.h>
499 #endif
500
501 #ifdef HAVE_SYS_EXTATTR_H
502 #include <sys/extattr.h>
503 #endif
504
505 #ifdef HAVE_SYS_UIO_H
506 #include <sys/uio.h>
507 #endif
508
509 #if HAVE_LOCALE_H
510 #include <locale.h>
511 #endif
512
513 #if HAVE_LANGINFO_H
514 #include <langinfo.h>
515 #endif
516
517 #ifdef HAVE_AIO_H
518 #include <aio.h>
519 #endif
520
521 /* skip valgrind headers on 64bit AMD boxes */
522 #ifndef HAVE_64BIT_LINUX
523 /* Special macros that are no-ops except when run under Valgrind on
524  * x86.  They've moved a little bit from valgrind 1.0.4 to 1.9.4 */
525 #if HAVE_VALGRIND_MEMCHECK_H
526         /* memcheck.h includes valgrind.h */
527 #include <valgrind/memcheck.h>
528 #elif HAVE_VALGRIND_H
529 #include <valgrind.h>
530 #endif
531 #endif
532
533 /* If we have --enable-developer and the valgrind header is present,
534  * then we're OK to use it.  Set a macro so this logic can be done only
535  * once. */
536 #if defined(DEVELOPER) && (HAVE_VALGRIND_H || HAVE_VALGRIND_VALGRIND_H)
537 #define VALGRIND
538 #endif
539
540
541 /* we support ADS if we want it and have krb5 and ldap libs */
542 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
543 #define HAVE_ADS
544 #endif
545
546 /*
547  * Define VOLATILE if needed.
548  */
549
550 #if defined(HAVE_VOLATILE)
551 #define VOLATILE volatile
552 #else
553 #define VOLATILE
554 #endif
555
556 /*
557  * Define additional missing types
558  */
559 #if defined(HAVE_SIG_ATOMIC_T_TYPE) && defined(AIX)
560 typedef sig_atomic_t SIG_ATOMIC_T;
561 #elif defined(HAVE_SIG_ATOMIC_T_TYPE) && !defined(AIX)
562 typedef sig_atomic_t VOLATILE SIG_ATOMIC_T;
563 #else
564 typedef int VOLATILE SIG_ATOMIC_T;
565 #endif
566
567 #ifndef HAVE_SOCKLEN_T_TYPE
568 typedef int socklen_t;
569 #endif
570
571
572 #ifndef uchar
573 #define uchar unsigned char
574 #endif
575
576 #ifdef HAVE_UNSIGNED_CHAR
577 #define schar signed char
578 #else
579 #define schar char
580 #endif
581
582 /*
583    Samba needs type definitions for int16, int32, uint16 and uint32.
584
585    Normally these are signed and unsigned 16 and 32 bit integers, but
586    they actually only need to be at least 16 and 32 bits
587    respectively. Thus if your word size is 8 bytes just defining them
588    as signed and unsigned int will work.
589 */
590
591 #ifndef uint8
592 #define uint8 unsigned char
593 #endif
594
595 #if !defined(int16) && !defined(HAVE_INT16_FROM_RPC_RPC_H)
596 #if (SIZEOF_SHORT == 4)
597 #define int16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
598 #else /* SIZEOF_SHORT != 4 */
599 #define int16 short
600 #endif /* SIZEOF_SHORT != 4 */
601 #endif
602
603 /*
604  * Note we duplicate the size tests in the unsigned 
605  * case as int16 may be a typedef from rpc/rpc.h
606  */
607
608 #if !defined(uint16) && !defined(HAVE_UINT16_FROM_RPC_RPC_H)
609 #if (SIZEOF_SHORT == 4)
610 #define uint16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
611 #else /* SIZEOF_SHORT != 4 */
612 #define uint16 unsigned short
613 #endif /* SIZEOF_SHORT != 4 */
614 #endif
615
616 #if !defined(int32) && !defined(HAVE_INT32_FROM_RPC_RPC_H)
617 #if (SIZEOF_INT == 4)
618 #define int32 int
619 #elif (SIZEOF_LONG == 4)
620 #define int32 long
621 #elif (SIZEOF_SHORT == 4)
622 #define int32 short
623 #else
624 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
625 #define int32 int
626 #endif
627 #endif
628
629 /*
630  * Note we duplicate the size tests in the unsigned 
631  * case as int32 may be a typedef from rpc/rpc.h
632  */
633
634 #if !defined(uint32) && !defined(HAVE_UINT32_FROM_RPC_RPC_H)
635 #if (SIZEOF_INT == 4)
636 #define uint32 unsigned int
637 #elif (SIZEOF_LONG == 4)
638 #define uint32 unsigned long
639 #elif (SIZEOF_SHORT == 4)
640 #define uint32 unsigned short
641 #else
642 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
643 #define uint32 unsigned
644 #endif
645 #endif
646
647 /*
648  * Types for devices, inodes and offsets.
649  */
650
651 #ifndef SMB_DEV_T
652 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)
653 #    define SMB_DEV_T dev64_t
654 #  else
655 #    define SMB_DEV_T dev_t
656 #  endif
657 #endif
658
659 /*
660  * Setup the correctly sized inode type.
661  */
662
663 #ifndef SMB_INO_T
664 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)
665 #    define SMB_INO_T ino64_t
666 #  else
667 #    define SMB_INO_T ino_t
668 #  endif
669 #endif
670
671 #ifndef LARGE_SMB_INO_T
672 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8))
673 #    define LARGE_SMB_INO_T 1
674 #  endif
675 #endif
676
677 #ifdef LARGE_SMB_INO_T
678 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
679 #else 
680 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
681 #endif
682
683 #ifndef SMB_OFF_T
684 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)
685 #    define SMB_OFF_T off64_t
686 #  else
687 #    define SMB_OFF_T off_t
688 #  endif
689 #endif
690
691 #if defined(HAVE_LONGLONG)
692 #define SMB_BIG_UINT unsigned long long
693 #define SMB_BIG_INT long long
694 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
695 #else
696 #define SMB_BIG_UINT unsigned long
697 #define SMB_BIG_INT long
698 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
699 #endif
700
701 #define SMB_BIG_UINT_BITS (sizeof(SMB_BIG_UINT)*8)
702
703 /* this should really be a 64 bit type if possible */
704 #define br_off SMB_BIG_UINT
705
706 #define SMB_OFF_T_BITS (sizeof(SMB_OFF_T)*8)
707
708 /*
709  * Set the define that tells us if we can do 64 bit
710  * NT SMB calls.
711  */
712
713 #ifndef LARGE_SMB_OFF_T
714 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))
715 #    define LARGE_SMB_OFF_T 1
716 #  endif
717 #endif
718
719 #ifdef LARGE_SMB_OFF_T
720 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
721 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,(v)&0xFFFFFFFF), SIVAL(p,ofs,(v)>>32))
722 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF) )))
723 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF)) | \
724                 (( ((SMB_BIG_UINT)(IVAL((buf),(off+4)))) & ((SMB_BIG_UINT)0xFFFFFFFF) ) << 32 ) )
725 #else 
726 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
727 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,v),SIVAL(p,ofs,0))
728 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((uint32)(IVAL((buf),(off)))) & 0xFFFFFFFF )))
729 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF)) | \
730                                 (( ((SMB_BIG_UINT)(IVAL((buf),(off+4)))) & ((SMB_BIG_UINT)0xFFFFFFFF) ) << 32 ) )
731 #endif
732
733 /*
734  * Type for stat structure.
735  */
736
737 #ifndef SMB_STRUCT_STAT
738 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STAT64) && defined(HAVE_OFF64_T)
739 #    define SMB_STRUCT_STAT struct stat64
740 #  else
741 #    define SMB_STRUCT_STAT struct stat
742 #  endif
743 #endif
744
745 /*
746  * Type for dirent structure.
747  */
748
749 #ifndef SMB_STRUCT_DIRENT
750 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIRENT64)
751 #    define SMB_STRUCT_DIRENT struct dirent64
752 #  else
753 #    define SMB_STRUCT_DIRENT struct dirent
754 #  endif
755 #endif
756
757 /*
758  * Type for DIR structure.
759  */
760
761 #ifndef SMB_STRUCT_DIR
762 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIR64)
763 #    define SMB_STRUCT_DIR DIR64
764 #  else
765 #    define SMB_STRUCT_DIR DIR
766 #  endif
767 #endif
768
769 /*
770  * Defines for 64 bit fcntl locks.
771  */
772
773 #ifndef SMB_STRUCT_FLOCK
774 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
775 #    define SMB_STRUCT_FLOCK struct flock64
776 #  else
777 #    define SMB_STRUCT_FLOCK struct flock
778 #  endif
779 #endif
780
781 #ifndef SMB_F_SETLKW
782 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
783 #    define SMB_F_SETLKW F_SETLKW64
784 #  else
785 #    define SMB_F_SETLKW F_SETLKW
786 #  endif
787 #endif
788
789 #ifndef SMB_F_SETLK
790 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
791 #    define SMB_F_SETLK F_SETLK64
792 #  else
793 #    define SMB_F_SETLK F_SETLK
794 #  endif
795 #endif
796
797 #ifndef SMB_F_GETLK
798 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
799 #    define SMB_F_GETLK F_GETLK64
800 #  else
801 #    define SMB_F_GETLK F_GETLK
802 #  endif
803 #endif
804
805 /*
806  * Type for aiocb structure.
807  */
808
809 #ifndef SMB_STRUCT_AIOCB
810 #  if defined(WITH_AIO)
811 #    if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64)
812 #      define SMB_STRUCT_AIOCB struct aiocb64
813 #    else
814 #      define SMB_STRUCT_AIOCB struct aiocb
815 #    endif
816 #  else
817 #    define SMB_STRUCT_AIOCB int /* AIO not being used but we still need the define.... */
818 #  endif
819 #endif
820
821 #ifndef HAVE_STRUCT_TIMESPEC
822 struct timespec {
823         time_t tv_sec;            /* Seconds.  */
824         long tv_nsec;           /* Nanoseconds.  */
825 };
826 #endif
827
828 #ifndef MIN
829 #define MIN(a,b) ((a)<(b)?(a):(b))
830 #endif
831
832 #ifndef MAX
833 #define MAX(a,b) ((a)>(b)?(a):(b))
834 #endif
835
836 #ifndef HAVE_STRERROR
837 extern char *sys_errlist[];
838 #define strerror(i) sys_errlist[i]
839 #endif
840
841 #ifndef HAVE_ERRNO_DECL
842 extern int errno;
843 #endif
844
845 #ifdef HAVE_BROKEN_GETGROUPS
846 #define GID_T int
847 #else
848 #define GID_T gid_t
849 #endif
850
851 #ifndef NGROUPS_MAX
852 #define NGROUPS_MAX 32 /* Guess... */
853 #endif
854
855 #ifdef SOCKET_WRAPPER
856 #define SOCKET_WRAPPER_REPLACE
857 #include "include/socket_wrapper.h"
858 #endif
859
860 /* Our own pstrings and fstrings */
861 #include "pstring.h"
862
863 /* Lists, trees, caching, database... */
864 #include "xfile.h"
865 #include "intl.h"
866 #include "dlinklist.h"
867 #include "tdb/tdb.h"
868 #include "tdb/spinlock.h"
869 #include "tdb/tdbutil.h"
870
871 #include "talloc.h"
872 /* And a little extension. Abort on type mismatch */
873 #define talloc_get_type_abort(ptr, type) \
874         (type *)talloc_check_name_abort(ptr, #type)
875
876 #include "nt_status.h"
877 #include "ads.h"
878 #include "interfaces.h"
879 #include "trans2.h"
880 #include "nterr.h"
881 #include "ntioctl.h"
882 #include "messages.h"
883 #include "charset.h"
884 #include "dynconfig.h"
885
886 #include "util_getent.h"
887
888 #include "debugparse.h"
889
890 #include "version.h"
891
892 #include "privileges.h"
893
894 #include "smb.h"
895
896 #include "nameserv.h"
897
898 #include "secrets.h"
899
900 #include "byteorder.h"
901
902 #include "privileges.h"
903
904 #include "rpc_misc.h"
905
906 #include "rpc_dce.h"
907
908 #include "mapping.h"
909
910 #include "passdb.h"
911
912 #include "rpc_secdes.h"
913
914 #include "authdata.h"
915
916 #include "msdfs.h"
917
918 #include "smbprofile.h"
919
920 #include "rap.h"
921
922 #include "md5.h"
923 #include "hmacmd5.h"
924
925 #include "ntlmssp.h"
926
927 #include "auth.h"
928
929 #include "ntdomain.h"
930
931 #include "rpc_svcctl.h"
932 #include "rpc_ntsvcs.h"
933 #include "rpc_lsa.h"
934 #include "rpc_netlogon.h"
935 #include "reg_objects.h"
936 #include "rpc_reg.h"
937 #include "rpc_samr.h"
938 #include "rpc_srvsvc.h"
939 #include "rpc_wkssvc.h"
940 #include "rpc_spoolss.h"
941 #include "rpc_eventlog.h"
942 #include "rpc_dfs.h"
943 #include "rpc_ds.h"
944 #include "rpc_echo.h"
945 #include "rpc_shutdown.h"
946 #include "rpc_perfcount.h"
947 #include "rpc_perfcount_defs.h"
948
949 #include "nt_printing.h"
950
951 #include "idmap.h"
952
953 #include "client.h"
954
955 #ifdef WITH_SMBWRAPPER
956 #include "smbw.h"
957 #endif
958
959 #include "session.h"
960
961 #include "asn_1.h"
962
963 #include "popt.h"
964
965 #include "mangle.h"
966
967 #include "module.h"
968
969 #include "nsswitch/winbind_client.h"
970
971 #include "spnego.h"
972
973 #include "rpc_client.h"
974
975 /*
976  * Type for wide character dirent structure.
977  * Only d_name is defined by POSIX.
978  */
979
980 typedef struct smb_wdirent {
981         wpstring        d_name;
982 } SMB_STRUCT_WDIRENT;
983
984 /*
985  * Type for wide character passwd structure.
986  */
987
988 typedef struct smb_wpasswd {
989         wfstring       pw_name;
990         char           *pw_passwd;
991         uid_t          pw_uid;
992         gid_t          pw_gid;
993         wpstring       pw_gecos;
994         wpstring       pw_dir;
995         wpstring       pw_shell;
996 } SMB_STRUCT_WPASSWD;
997
998 /* used in net.c */
999 struct functable {
1000         const char *funcname;
1001         int (*fn)(int argc, const char **argv);
1002 };
1003
1004
1005 /* Defines for wisXXX functions. */
1006 #define UNI_UPPER    0x1
1007 #define UNI_LOWER    0x2
1008 #define UNI_DIGIT    0x4
1009 #define UNI_XDIGIT   0x8
1010 #define UNI_SPACE    0x10
1011
1012 #include "nsswitch/winbind_nss.h"
1013
1014 /* forward declaration from printing.h to get around 
1015    header file dependencies */
1016
1017 struct printjob;
1018
1019 struct smb_ldap_privates;
1020
1021 /* forward declarations from smbldap.c */
1022
1023 #include "smbldap.h"
1024
1025 #include "smb_ldap.h"
1026
1027 /***** automatically generated prototypes *****/
1028 #ifndef NO_PROTO_H
1029 #include "proto.h"
1030 #endif
1031
1032 /* String routines */
1033
1034 #include "srvstr.h"
1035 #include "safe_string.h"
1036
1037 #ifdef __COMPAR_FN_T
1038 #define QSORT_CAST (__compar_fn_t)
1039 #endif
1040
1041 #ifndef QSORT_CAST
1042 #define QSORT_CAST (int (*)(const void *, const void *))
1043 #endif
1044
1045 #ifndef DEFAULT_PRINTING
1046 #ifdef HAVE_CUPS
1047 #define DEFAULT_PRINTING PRINT_CUPS
1048 #define PRINTCAP_NAME "cups"
1049 #elif defined(SYSV)
1050 #define DEFAULT_PRINTING PRINT_SYSV
1051 #define PRINTCAP_NAME "lpstat"
1052 #else
1053 #define DEFAULT_PRINTING PRINT_BSD
1054 #define PRINTCAP_NAME "/etc/printcap"
1055 #endif
1056 #endif
1057
1058 #ifndef PRINTCAP_NAME
1059 #define PRINTCAP_NAME "/etc/printcap"
1060 #endif
1061
1062 #ifndef SIGCLD
1063 #define SIGCLD SIGCHLD
1064 #endif
1065
1066 #ifndef SIGRTMIN
1067 #define SIGRTMIN 32
1068 #endif
1069
1070 #ifndef MAP_FILE
1071 #define MAP_FILE 0
1072 #endif
1073
1074 #if defined(HAVE_PUTPRPWNAM) && defined(AUTH_CLEARTEXT_SEG_CHARS)
1075 #define OSF1_ENH_SEC 1
1076 #endif
1077
1078 #ifndef ALLOW_CHANGE_PASSWORD
1079 #if (defined(HAVE_TERMIOS_H) && defined(HAVE_DUP2) && defined(HAVE_SETSID))
1080 #define ALLOW_CHANGE_PASSWORD 1
1081 #endif
1082 #endif
1083
1084 /* what is the longest significant password available on your system? 
1085  Knowing this speeds up password searches a lot */
1086 #ifndef PASSWORD_LENGTH
1087 #define PASSWORD_LENGTH 8
1088 #endif
1089
1090 #ifdef REPLACE_INET_NTOA
1091 #define inet_ntoa rep_inet_ntoa
1092 #endif
1093
1094 #ifndef HAVE_PIPE
1095 #define SYNC_DNS 1
1096 #endif
1097
1098 #ifndef SEEK_SET
1099 #define SEEK_SET 0
1100 #endif
1101
1102 #ifndef INADDR_LOOPBACK
1103 #define INADDR_LOOPBACK 0x7f000001
1104 #endif
1105
1106 #ifndef INADDR_NONE
1107 #define INADDR_NONE 0xffffffff
1108 #endif
1109
1110 #ifndef HAVE_CRYPT
1111 #define crypt ufc_crypt
1112 #endif
1113
1114 #ifndef O_ACCMODE
1115 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
1116 #endif
1117
1118 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
1119 #define ULTRIX_AUTH 1
1120 #endif
1121
1122 #ifndef HAVE_STRDUP
1123 char *strdup(const char *s);
1124 #endif
1125
1126 #ifndef HAVE_STRNDUP
1127 char *strndup(const char *s, size_t size);
1128 #endif
1129
1130 #ifndef HAVE_MEMMOVE
1131 void *memmove(void *dest,const void *src,int size);
1132 #endif
1133
1134 #ifndef HAVE_INITGROUPS
1135 int initgroups(char *name,gid_t id);
1136 #endif
1137
1138 #ifndef HAVE_RENAME
1139 int rename(const char *zfrom, const char *zto);
1140 #endif
1141
1142 #ifndef HAVE_MKTIME
1143 time_t mktime(struct tm *t);
1144 #endif
1145
1146 #ifndef HAVE_STRLCPY
1147 size_t strlcpy(char *d, const char *s, size_t bufsize);
1148 #endif
1149
1150 #ifndef HAVE_STRLCAT
1151 size_t strlcat(char *d, const char *s, size_t bufsize);
1152 #endif
1153
1154 #ifndef HAVE_FTRUNCATE
1155 int ftruncate(int f,long l);
1156 #endif
1157
1158 #ifndef HAVE_STRNDUP
1159 char *strndup(const char *s, size_t n);
1160 #endif
1161
1162 #ifndef HAVE_STRNLEN
1163 size_t strnlen(const char *s, size_t n);
1164 #endif
1165
1166 #ifndef HAVE_STRTOUL
1167 unsigned long strtoul(const char *nptr, char **endptr, int base);
1168 #endif
1169
1170 #ifndef HAVE_SETENV
1171 int setenv(const char *name, const char *value, int overwrite); 
1172 #endif
1173
1174 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESUID_DECL))
1175 /* stupid glibc */
1176 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
1177 #endif
1178 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESGID_DECL))
1179 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
1180 #endif
1181 #ifndef HAVE_VASPRINTF_DECL
1182 int vasprintf(char **ptr, const char *format, va_list ap);
1183 #endif
1184
1185 #ifdef REPLACE_GETPASS
1186 #define getpass(prompt) getsmbpass((prompt))
1187 #endif
1188
1189 /*
1190  * Some older systems seem not to have MAXHOSTNAMELEN
1191  * defined.
1192  */
1193 #ifndef MAXHOSTNAMELEN
1194 #define MAXHOSTNAMELEN 254
1195 #endif
1196
1197 /* yuck, I'd like a better way of doing this */
1198 #define DIRP_SIZE (256 + 32)
1199
1200 /*
1201  * glibc on linux doesn't seem to have MSG_WAITALL
1202  * defined. I think the kernel has it though..
1203  */
1204
1205 #ifndef MSG_WAITALL
1206 #define MSG_WAITALL 0
1207 #endif
1208
1209 /* default socket options. Dave Miller thinks we should default to TCP_NODELAY
1210    given the socket IO pattern that Samba uses */
1211 #ifdef TCP_NODELAY
1212 #define DEFAULT_SOCKET_OPTIONS "TCP_NODELAY"
1213 #else
1214 #define DEFAULT_SOCKET_OPTIONS ""
1215 #endif
1216
1217 /* Load header file for dynamic linking stuff */
1218
1219 #ifdef HAVE_DLFCN_H
1220 #include <dlfcn.h>
1221 #endif
1222
1223 /* dmalloc -- free heap debugger (dmalloc.org).  This should be near
1224  * the *bottom* of include files so as not to conflict. */
1225 #ifdef ENABLE_DMALLOC
1226 #  include <dmalloc.h>
1227 #endif
1228
1229
1230 /* Some POSIX definitions for those without */
1231  
1232 #ifndef S_IFDIR
1233 #define S_IFDIR         0x4000
1234 #endif
1235 #ifndef S_ISDIR
1236 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
1237 #endif
1238 #ifndef S_IRWXU
1239 #define S_IRWXU 00700           /* read, write, execute: owner */
1240 #endif
1241 #ifndef S_IRUSR
1242 #define S_IRUSR 00400           /* read permission: owner */
1243 #endif
1244 #ifndef S_IWUSR
1245 #define S_IWUSR 00200           /* write permission: owner */
1246 #endif
1247 #ifndef S_IXUSR
1248 #define S_IXUSR 00100           /* execute permission: owner */
1249 #endif
1250 #ifndef S_IRWXG
1251 #define S_IRWXG 00070           /* read, write, execute: group */
1252 #endif
1253 #ifndef S_IRGRP
1254 #define S_IRGRP 00040           /* read permission: group */
1255 #endif
1256 #ifndef S_IWGRP
1257 #define S_IWGRP 00020           /* write permission: group */
1258 #endif
1259 #ifndef S_IXGRP
1260 #define S_IXGRP 00010           /* execute permission: group */
1261 #endif
1262 #ifndef S_IRWXO
1263 #define S_IRWXO 00007           /* read, write, execute: other */
1264 #endif
1265 #ifndef S_IROTH
1266 #define S_IROTH 00004           /* read permission: other */
1267 #endif
1268 #ifndef S_IWOTH
1269 #define S_IWOTH 00002           /* write permission: other */
1270 #endif
1271 #ifndef S_IXOTH
1272 #define S_IXOTH 00001           /* execute permission: other */
1273 #endif
1274
1275 /* For sys_adminlog(). */
1276 #ifndef LOG_EMERG
1277 #define LOG_EMERG       0       /* system is unusable */
1278 #endif
1279
1280 #ifndef LOG_ALERT
1281 #define LOG_ALERT       1       /* action must be taken immediately */
1282 #endif
1283
1284 #ifndef LOG_CRIT
1285 #define LOG_CRIT        2       /* critical conditions */
1286 #endif
1287
1288 #ifndef LOG_ERR
1289 #define LOG_ERR         3       /* error conditions */
1290 #endif
1291
1292 #ifndef LOG_WARNING
1293 #define LOG_WARNING     4       /* warning conditions */
1294 #endif
1295
1296 #ifndef LOG_NOTICE
1297 #define LOG_NOTICE      5       /* normal but significant condition */
1298 #endif
1299
1300 #ifndef LOG_INFO
1301 #define LOG_INFO        6       /* informational */
1302 #endif
1303
1304 #ifndef LOG_DEBUG
1305 #define LOG_DEBUG       7       /* debug-level messages */
1306 #endif
1307
1308 #if HAVE_KERNEL_SHARE_MODES
1309 #ifndef LOCK_MAND 
1310 #define LOCK_MAND       32      /* This is a mandatory flock */
1311 #define LOCK_READ       64      /* ... Which allows concurrent read operations */
1312 #define LOCK_WRITE      128     /* ... Which allows concurrent write operations */
1313 #define LOCK_RW         192     /* ... Which allows concurrent read & write ops */
1314 #endif
1315 #endif
1316
1317 extern int DEBUGLEVEL;
1318
1319 #define MAX_SEC_CTX_DEPTH 8    /* Maximum number of security contexts */
1320
1321
1322 #ifdef GLIBC_HACK_FCNTL64
1323 /* this is a gross hack. 64 bit locking is completely screwed up on
1324    i386 Linux in glibc 2.1.95 (which ships with RedHat 7.0). This hack
1325    "fixes" the problem with the current 2.4.0test kernels 
1326 */
1327 #define fcntl fcntl64
1328 #undef F_SETLKW 
1329 #undef F_SETLK 
1330 #define F_SETLK 13
1331 #define F_SETLKW 14
1332 #endif
1333
1334
1335 /* Needed for sys_dlopen/sys_dlsym/sys_dlclose */
1336 #ifndef RTLD_GLOBAL
1337 #define RTLD_GLOBAL 0
1338 #endif
1339
1340 #ifndef RTLD_LAZY
1341 #define RTLD_LAZY 0
1342 #endif
1343
1344 #ifndef RTLD_NOW
1345 #define RTLD_NOW 0
1346 #endif
1347
1348 /* needed for some systems without iconv. Doesn't really matter
1349    what error code we use */
1350 #ifndef EILSEQ
1351 #define EILSEQ EIO
1352 #endif
1353
1354 /* add varargs prototypes with printf checking */
1355 /*PRINTFLIKE2 */
1356 int fdprintf(int , const char *, ...) PRINTF_ATTRIBUTE(2,3);
1357 /*PRINTFLIKE1 */
1358 int d_printf(const char *, ...) PRINTF_ATTRIBUTE(1,2);
1359 /*PRINTFLIKE2 */
1360 int d_fprintf(FILE *f, const char *, ...) PRINTF_ATTRIBUTE(2,3);
1361 #ifndef HAVE_SNPRINTF_DECL
1362 /*PRINTFLIKE3 */
1363 int snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
1364 #endif
1365 #ifndef HAVE_ASPRINTF_DECL
1366 /*PRINTFLIKE2 */
1367 int asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
1368 #endif
1369
1370 /* Fix prototype problem with non-C99 compliant snprintf implementations, esp
1371    HPUX 11.  Don't change the sense of this #if statement.  Read the comments
1372    in lib/snprint.c if you think you need to.  See also bugzilla bug 174. */
1373
1374 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
1375 #define snprintf smb_snprintf
1376 #define vsnprintf smb_vsnprintf
1377
1378 /* PRINTFLIKE3 */
1379 int smb_snprintf(char *str,size_t count,const char *fmt,...);
1380 int smb_vsnprintf (char *str, size_t count, const char *fmt, va_list args);
1381
1382 #endif
1383
1384 /* PRINTFLIKE2 */
1385 void sys_adminlog(int priority, const char *format_str, ...) PRINTF_ATTRIBUTE(2,3);
1386
1387 /* PRINTFLIKE2 */
1388 int pstr_sprintf(pstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
1389 /* PRINTFLIKE2 */
1390 int fstr_sprintf(fstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
1391
1392 int d_vfprintf(FILE *f, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
1393
1394 int smb_xvasprintf(char **ptr, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
1395
1396 /* we used to use these fns, but now we have good replacements
1397    for snprintf and vsnprintf */
1398 #define slprintf snprintf
1399 #define vslprintf vsnprintf
1400
1401 /* we need to use __va_copy() on some platforms */
1402 #ifdef HAVE_VA_COPY
1403 #define VA_COPY(dest, src) va_copy(dest, src)
1404 #else
1405 #ifdef HAVE___VA_COPY
1406 #define VA_COPY(dest, src) __va_copy(dest, src)
1407 #else
1408 #define VA_COPY(dest, src) (dest) = (src)
1409 #endif
1410 #endif
1411
1412 #ifndef HAVE_TIMEGM
1413 time_t timegm(struct tm *tm);
1414 #endif
1415
1416 /*
1417  * Veritas File System.  Often in addition to native.
1418  * Quotas different.
1419  */
1420 #if defined(HAVE_SYS_FS_VX_QUOTA_H)
1421 #define VXFS_QUOTA
1422 #endif
1423
1424 #if defined(HAVE_KRB5)
1425
1426 #ifndef HAVE_KRB5_SET_REAL_TIME
1427 krb5_error_code krb5_set_real_time(krb5_context context, int32_t seconds, int32_t microseconds);
1428 #endif
1429
1430 #ifndef HAVE_KRB5_SET_DEFAULT_TGS_KTYPES
1431 krb5_error_code krb5_set_default_tgs_ktypes(krb5_context ctx, const krb5_enctype *enc);
1432 #endif
1433
1434 #if defined(HAVE_KRB5_AUTH_CON_SETKEY) && !defined(HAVE_KRB5_AUTH_CON_SETUSERUSERKEY)
1435 krb5_error_code krb5_auth_con_setuseruserkey(krb5_context context, krb5_auth_context auth_context, krb5_keyblock *keyblock);
1436 #endif
1437
1438 #ifndef HAVE_KRB5_FREE_UNPARSED_NAME
1439 void krb5_free_unparsed_name(krb5_context ctx, char *val);
1440 #endif
1441
1442 /* Samba wrapper function for krb5 functionality. */
1443 void setup_kaddr( krb5_address *pkaddr, struct sockaddr *paddr);
1444 int create_kerberos_key_from_string(krb5_context context, krb5_principal host_princ, krb5_data *password, krb5_keyblock *key, krb5_enctype enctype);
1445 int create_kerberos_key_from_string_direct(krb5_context context, krb5_principal host_princ, krb5_data *password, krb5_keyblock *key, krb5_enctype enctype);
1446 BOOL get_auth_data_from_tkt(TALLOC_CTX *mem_ctx, DATA_BLOB *auth_data, krb5_ticket *tkt);
1447 krb5_const_principal get_principal_from_tkt(krb5_ticket *tkt);
1448 krb5_error_code krb5_locate_kdc(krb5_context ctx, const krb5_data *realm, struct sockaddr **addr_pp, int *naddrs, int get_masters);
1449 krb5_error_code get_kerberos_allowed_etypes(krb5_context context, krb5_enctype **enctypes);
1450 void free_kerberos_etypes(krb5_context context, krb5_enctype *enctypes);
1451 BOOL get_krb5_smb_session_key(krb5_context context, krb5_auth_context auth_context, DATA_BLOB *session_key, BOOL remote);
1452 krb5_error_code smb_krb5_kt_free_entry(krb5_context context, krb5_keytab_entry *kt_entry);
1453 krb5_principal kerberos_fetch_salt_princ_for_host_princ(krb5_context context, krb5_principal host_princ, int enctype);
1454 void kerberos_set_creds_enctype(krb5_creds *pcreds, int enctype);
1455 BOOL kerberos_compatible_enctypes(krb5_context context, krb5_enctype enctype1, krb5_enctype enctype2);
1456 void kerberos_free_data_contents(krb5_context context, krb5_data *pdata);
1457 NTSTATUS decode_pac_data(TALLOC_CTX *mem_ctx,
1458                          DATA_BLOB *pac_data_blob,
1459                          krb5_context context, 
1460                          krb5_keyblock *service_keyblock,
1461                          krb5_const_principal client_principal,
1462                          time_t tgs_authtime,
1463                          PAC_DATA **pac_data);
1464 void smb_krb5_checksum_from_pac_sig(krb5_checksum *cksum, 
1465                                     PAC_SIGNATURE_DATA *sig);
1466 krb5_error_code smb_krb5_verify_checksum(krb5_context context,
1467                                          krb5_keyblock *keyblock,
1468                                          krb5_keyusage usage,
1469                                          krb5_checksum *cksum,
1470                                          uint8 *data,
1471                                          size_t length);
1472 time_t get_authtime_from_tkt(krb5_ticket *tkt);
1473 void smb_krb5_free_ap_req(krb5_context context, 
1474                           krb5_ap_req *ap_req);
1475 krb5_error_code smb_krb5_get_keyinfo_from_ap_req(krb5_context context, 
1476                                                  const krb5_data *inbuf, 
1477                                                  krb5_kvno *kvno, 
1478                                                  krb5_enctype *enctype);
1479 krb5_error_code krb5_rd_req_return_keyblock_from_keytab(krb5_context context,
1480                                                         krb5_auth_context *auth_context,
1481                                                         const krb5_data *inbuf,
1482                                                         krb5_const_principal server,
1483                                                         krb5_keytab keytab,
1484                                                         krb5_flags *ap_req_options,
1485                                                         krb5_ticket **ticket, 
1486                                                         krb5_keyblock **keyblock);
1487 krb5_error_code smb_krb5_parse_name_norealm(krb5_context context, 
1488                                             const char *name, 
1489                                             krb5_principal *principal);
1490 BOOL smb_krb5_principal_compare_any_realm(krb5_context context, 
1491                                           krb5_const_principal princ1, 
1492                                           krb5_const_principal princ2);
1493 int cli_krb5_get_ticket(const char *principal, time_t time_offset, 
1494                         DATA_BLOB *ticket, DATA_BLOB *session_key_krb5, uint32 extra_ap_opts);
1495 PAC_LOGON_INFO *get_logon_info_from_pac(PAC_DATA *pac_data);
1496 #endif /* HAVE_KRB5 */
1497
1498
1499 #ifdef HAVE_LDAP
1500
1501 /* function declarations not included in proto.h */
1502 LDAP *ldap_open_with_timeout(const char *server, int port, unsigned int to);
1503
1504 #endif  /* HAVE_LDAP */
1505
1506
1507 /* TRUE and FALSE are part of the C99 standard and gcc, but
1508    unfortunately many vendor compilers don't support them.  Use True
1509    and False instead. */
1510
1511 #ifdef TRUE
1512 #undef TRUE
1513 #endif
1514 #define TRUE __ERROR__XX__DONT_USE_TRUE
1515
1516 #ifdef FALSE
1517 #undef FALSE
1518 #endif
1519 #define FALSE __ERROR__XX__DONT_USE_FALSE
1520
1521 /* If we have blacklisted mmap() try to avoid using it accidentally by
1522    undefining the HAVE_MMAP symbol. */
1523
1524 #ifdef MMAP_BLACKLIST
1525 #undef HAVE_MMAP
1526 #endif
1527
1528 #define CONST_DISCARD(type, ptr)      ((type) ((void *) (ptr)))
1529 #define CONST_ADD(type, ptr)          ((type) ((const void *) (ptr)))
1530
1531 #endif /* _INCLUDES_H */