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