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