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