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