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