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