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