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