This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
[import/samba-cvsimport.git] / source / include / includes.h
1 #ifndef _INCLUDES_H
2 #define _INCLUDES_H
3 /* 
4    Unix SMB/Netbios implementation.
5    Version 1.9.
6    Machine customisation and include handling
7    Copyright (C) Andrew Tridgell 1994-1998
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 #include "local.h"
29
30 #ifdef AIX
31 #define DEFAULT_PRINTING PRINT_AIX
32 #define PRINTCAP_NAME "/etc/qconfig"
33 #endif
34
35 #ifdef HPUX
36 #define DEFAULT_PRINTING PRINT_HPUX
37 #endif
38
39 #ifdef QNX
40 #define DEFAULT_PRINTING PRINT_QNX
41 #endif
42
43 #ifdef SUNOS4
44 /* on SUNOS4 termios.h conflicts with sys/ioctl.h */
45 #undef HAVE_TERMIOS_H
46 #endif
47
48 #ifdef LINUX
49 #ifndef DEFAULT_PRINTING
50 #define DEFAULT_PRINTING PRINT_BSD
51 #endif
52 #ifndef PRINTCAP_NAME
53 #define PRINTCAP_NAME "/etc/printcap"
54 #endif
55 #endif
56
57 /* use gcc attribute to check printf fns */
58 #ifdef __GNUC__
59 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
60 #else
61 #define PRINTF_ATTRIBUTE(a1, a2)
62 #endif
63
64 #ifdef RELIANTUNIX
65 /*
66  * <unistd.h> has to be included before any other to get
67  * large file support on Reliant UNIX. Yes, it's broken :-).
68  */
69 #ifdef HAVE_UNISTD_H
70 #include <unistd.h>
71 #endif
72 #endif /* RELIANTUNIX */
73
74 #include <sys/types.h>
75
76 #ifdef TIME_WITH_SYS_TIME
77 #include <sys/time.h>
78 #include <time.h>
79 #else
80 #ifdef HAVE_SYS_TIME_H
81 #include <sys/time.h>
82 #else
83 #include <time.h>
84 #endif
85 #endif
86
87 #ifdef HAVE_SYS_RESOURCE_H
88 #include <sys/resource.h>
89 #endif
90
91 #ifdef HAVE_UNISTD_H
92 #include <unistd.h>
93 #endif
94
95 #include <stdio.h>
96 #include <stddef.h>
97
98 #ifdef HAVE_SYS_PARAM_H
99 #include <sys/param.h>
100 #endif
101
102 #ifdef HAVE_STDLIB_H
103 #include <stdlib.h>
104 #endif
105
106 #ifdef HAVE_SYS_SOCKET_H
107 #include <sys/socket.h>
108 #endif
109
110 #ifdef HAVE_UNIXSOCKET
111 #include <sys/un.h>
112 #endif
113
114 #ifdef HAVE_SYS_SYSCALL_H
115 #include <sys/syscall.h>
116 #elif HAVE_SYSCALL_H
117 #include <syscall.h>
118 #endif
119
120 #ifdef HAVE_STRING_H
121 #include <string.h>
122 #endif
123
124 #ifdef HAVE_STRINGS_H
125 #include <strings.h>
126 #endif
127
128 #ifdef HAVE_MEMORY_H
129 #include <memory.h>
130 #endif
131
132 #ifdef HAVE_MALLOC_H
133 #include <malloc.h>
134 #endif
135
136 #ifdef HAVE_FCNTL_H
137 #include <fcntl.h>
138 #else
139 #ifdef HAVE_SYS_FCNTL_H
140 #include <sys/fcntl.h>
141 #endif
142 #endif
143
144 #include <sys/stat.h>
145
146 #ifdef HAVE_LIMITS_H
147 #include <limits.h>
148 #endif
149
150 #ifdef HAVE_SYS_IOCTL_H
151 #include <sys/ioctl.h>
152 #endif
153
154 #ifdef HAVE_SYS_FILIO_H
155 #include <sys/filio.h>
156 #endif
157
158 #include <signal.h>
159
160 #ifdef HAVE_SYS_WAIT_H
161 #include <sys/wait.h>
162 #endif
163 #ifdef HAVE_CTYPE_H
164 #include <ctype.h>
165 #endif
166 #ifdef HAVE_GRP_H
167 #include <grp.h>
168 #endif
169 #ifdef HAVE_SYS_PRIV_H
170 #include <sys/priv.h>
171 #endif
172 #ifdef HAVE_SYS_ID_H
173 #include <sys/id.h>
174 #endif
175
176 #include <errno.h>
177
178 #ifdef HAVE_UTIME_H
179 #include <utime.h>
180 #endif
181
182 #ifdef HAVE_SYS_SELECT_H
183 #include <sys/select.h>
184 #endif
185
186 #ifdef HAVE_SYS_MODE_H
187 /* apparently AIX needs this for S_ISLNK */
188 #ifndef S_ISLNK
189 #include <sys/mode.h>
190 #endif
191 #endif
192
193 #ifdef HAVE_GLOB_H
194 #include <glob.h>
195 #endif
196
197 #include <pwd.h>
198
199 #ifdef HAVE_STDARG_H
200 #include <stdarg.h>
201 #else
202 #include <varargs.h>
203 #endif
204
205 #include <netinet/in.h>
206 #include <arpa/inet.h>
207 #include <netdb.h>
208 #include <syslog.h>
209 #include <sys/file.h>
210
211 #ifdef HAVE_NETINET_TCP_H
212 #include <netinet/tcp.h>
213 #endif
214
215 /*
216  * The next three defines are needed to access the IPTOS_* options
217  * on some systems.
218  */
219
220 #ifdef HAVE_NETINET_IN_SYSTM_H
221 #include <netinet/in_systm.h>
222 #endif
223
224 #ifdef HAVE_NETINET_IN_IP_H
225 #include <netinet/in_ip.h>
226 #endif
227
228 #ifdef HAVE_NETINET_IP_H
229 #include <netinet/ip.h>
230 #endif
231
232 #if defined(HAVE_TERMIOS_H)
233 /* POSIX terminal handling. */
234 #include <termios.h>
235 #elif defined(HAVE_TERMIO_H)
236 /* Older SYSV terminal handling - don't use if we can avoid it. */
237 #include <termio.h>
238 #elif defined(HAVE_SYS_TERMIO_H)
239 /* Older SYSV terminal handling - don't use if we can avoid it. */
240 #include <sys/termio.h>
241 #endif
242
243 #if HAVE_DIRENT_H
244 # include <dirent.h>
245 # define NAMLEN(dirent) strlen((dirent)->d_name)
246 #else
247 # define dirent direct
248 # define NAMLEN(dirent) (dirent)->d_namlen
249 # if HAVE_SYS_NDIR_H
250 #  include <sys/ndir.h>
251 # endif
252 # if HAVE_SYS_DIR_H
253 #  include <sys/dir.h>
254 # endif
255 # if HAVE_NDIR_H
256 #  include <ndir.h>
257 # endif
258 #endif
259
260 #ifdef HAVE_SYS_MMAN_H
261 #include <sys/mman.h>
262 #endif
263
264 #ifdef HAVE_NET_IF_H
265 #include <net/if.h>
266 #endif
267
268
269 #ifdef HAVE_SYS_MOUNT_H
270 #include <sys/mount.h>
271 #endif
272
273 #ifdef HAVE_SYS_VFS_H
274 #include <sys/vfs.h>
275 #endif
276
277 #ifdef HAVE_SYS_ACL_H
278 #include <sys/acl.h>
279 #endif
280
281 #ifdef HAVE_SYS_FS_S5PARAM_H 
282 #include <sys/fs/s5param.h>
283 #endif
284
285 #if defined (HAVE_SYS_FILSYS_H) && !defined (_CRAY)
286 #include <sys/filsys.h> 
287 #endif
288
289 #ifdef HAVE_SYS_STATFS_H
290 # include <sys/statfs.h>
291 #endif
292
293 #ifdef HAVE_DUSTAT_H              
294 #include <sys/dustat.h>
295 #endif
296
297 #ifdef HAVE_SYS_STATVFS_H          
298 #include <sys/statvfs.h>
299 #endif
300
301 #ifdef HAVE_SHADOW_H
302 #include <shadow.h>
303 #endif
304
305 #ifdef HAVE_GETPWANAM
306 #include <sys/label.h>
307 #include <sys/audit.h>
308 #include <pwdadj.h>
309 #endif
310
311 #ifdef HAVE_SYS_SECURITY_H
312 #include <sys/security.h>
313 #include <prot.h>
314 #define PASSWORD_LENGTH 16
315 #endif  /* HAVE_SYS_SECURITY_H */
316
317 #ifdef HAVE_COMPAT_H
318 #include <compat.h>
319 #endif
320
321 #ifdef HAVE_STROPTS_H
322 #include <stropts.h>
323 #endif
324
325 #ifdef HAVE_POLL_H
326 #include <poll.h>
327 #endif
328
329 #ifdef HAVE_SYS_CAPABILITY_H
330 #include <sys/capability.h>
331 #endif
332
333 #if defined(HAVE_RPC_RPC_H)
334 /*
335  * Check for AUTH_ERROR define conflict with rpc/rpc.h in prot.h.
336  */
337 #if defined(HAVE_SYS_SECURITY_H) && defined(HAVE_RPC_AUTH_ERROR_CONFLICT)
338 #undef AUTH_ERROR
339 #endif
340 #include <rpc/rpc.h>
341 #endif
342
343 #if defined(HAVE_YP_GET_DEFAULT_DOMAIN) && defined(HAVE_SETNETGRENT) && defined(HAVE_ENDNETGRENT) && defined(HAVE_GETNETGRENT)
344 #define HAVE_NETGROUP 1
345 #endif
346
347 #if defined (HAVE_NETGROUP)
348 #if defined(HAVE_RPCSVC_YP_PROT_H)
349 #include <rpcsvc/yp_prot.h>
350 #endif
351 #if defined(HAVE_RPCSVC_YPCLNT_H)
352 #include <rpcsvc/ypclnt.h>
353 #endif
354 #endif /* HAVE_NETGROUP */
355
356 #if defined(HAVE_SYS_IPC_H)
357 #include <sys/ipc.h>
358 #endif /* HAVE_SYS_IPC_H */
359
360 #if defined(HAVE_SYS_SHM_H)
361 #include <sys/shm.h>
362 #endif /* HAVE_SYS_SHM_H */
363
364 #ifdef HAVE_NATIVE_ICONV
365 #include <iconv.h>
366 #endif
367
368 /*
369  * Define VOLATILE if needed.
370  */
371
372 #if defined(HAVE_VOLATILE)
373 #define VOLATILE volatile
374 #else
375 #define VOLATILE
376 #endif
377
378 /*
379  * Define additional missing types
380  */
381 #ifndef HAVE_SIG_ATOMIC_T_TYPE
382 typedef int sig_atomic_t;
383 #endif
384
385 #ifndef HAVE_SOCKLEN_T_TYPE
386 typedef int socklen_t;
387 #endif
388
389
390 #ifndef uchar
391 #define uchar unsigned char
392 #endif
393
394 #ifdef HAVE_UNSIGNED_CHAR
395 #define schar signed char
396 #else
397 #define schar char
398 #endif
399
400 /*
401    Samba needs type definitions for int16, int32, uint16 and uint32.
402
403    Normally these are signed and unsigned 16 and 32 bit integers, but
404    they actually only need to be at least 16 and 32 bits
405    respectively. Thus if your word size is 8 bytes just defining them
406    as signed and unsigned int will work.
407 */
408
409 #ifndef uint8
410 #define uint8 unsigned char
411 #endif
412
413 #if !defined(int16) && !defined(HAVE_INT16_FROM_RPC_RPC_H)
414 #if (SIZEOF_SHORT == 4)
415 #define int16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
416 #else /* SIZEOF_SHORT != 4 */
417 #define int16 short
418 #endif /* SIZEOF_SHORT != 4 */
419 #endif
420
421 /*
422  * Note we duplicate the size tests in the unsigned 
423  * case as int16 may be a typedef from rpc/rpc.h
424  */
425
426 #if !defined(uint16) && !defined(HAVE_UINT16_FROM_RPC_RPC_H)
427 #if (SIZEOF_SHORT == 4)
428 #define uint16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
429 #else /* SIZEOF_SHORT != 4 */
430 #define uint16 unsigned short
431 #endif /* SIZEOF_SHORT != 4 */
432 #endif
433
434 #if !defined(int32) && !defined(HAVE_INT32_FROM_RPC_RPC_H)
435 #if (SIZEOF_INT == 4)
436 #define int32 int
437 #elif (SIZEOF_LONG == 4)
438 #define int32 long
439 #elif (SIZEOF_SHORT == 4)
440 #define int32 short
441 #else
442 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
443 #define uint32 int
444 #endif
445 #endif
446
447 /*
448  * Note we duplicate the size tests in the unsigned 
449  * case as int32 may be a typedef from rpc/rpc.h
450  */
451
452 #if !defined(uint32) && !defined(HAVE_UINT32_FROM_RPC_RPC_H)
453 #if (SIZEOF_INT == 4)
454 #define uint32 unsigned int
455 #elif (SIZEOF_LONG == 4)
456 #define uint32 unsigned long
457 #elif (SIZEOF_SHORT == 4)
458 #define uint32 unsigned short
459 #else
460 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
461 #define uint32 unsigned
462 #endif
463 #endif
464
465 /*
466  * Types for devices, inodes and offsets.
467  */
468
469 #ifndef SMB_DEV_T
470 #define SMB_DEV_T dev_t
471 #endif
472
473 /*
474  * Setup the correctly sized inode type.
475  */
476
477 #ifndef SMB_INO_T
478 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)
479 #    define SMB_INO_T ino64_t
480 #  else
481 #    define SMB_INO_T ino_t
482 #  endif
483 #endif
484
485 #ifndef LARGE_SMB_INO_T
486 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8))
487 #    define LARGE_SMB_INO_T 1
488 #  endif
489 #endif
490
491 #ifdef LARGE_SMB_INO_T
492 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
493 #else 
494 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
495 #endif
496
497 #ifndef SMB_OFF_T
498 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)
499 #    define SMB_OFF_T off64_t
500 #  else
501 #    define SMB_OFF_T off_t
502 #  endif
503 #endif
504
505 /* this should really be a 64 bit type if possible */
506 #define br_off SMB_BIG_UINT
507
508 #define SMB_OFF_T_BITS (sizeof(SMB_OFF_T)*8)
509
510 /*
511  * Set the define that tells us if we can do 64 bit
512  * NT SMB calls.
513  */
514
515 #ifndef LARGE_SMB_OFF_T
516 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))
517 #    define LARGE_SMB_OFF_T 1
518 #  endif
519 #endif
520
521 #ifdef LARGE_SMB_OFF_T
522 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
523 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,(v)&0xFFFFFFFF), SIVAL(p,ofs,(v)>>32))
524 #else 
525 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
526 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,v),SIVAL(p,ofs,0))
527 #endif
528
529 /*
530  * Type for stat structure.
531  */
532
533 #ifndef SMB_STRUCT_STAT
534 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STAT64) && defined(HAVE_OFF64_T)
535 #    define SMB_STRUCT_STAT struct stat64
536 #  else
537 #    define SMB_STRUCT_STAT struct stat
538 #  endif
539 #endif
540
541 /*
542  * Type for dirent structure.
543  */
544
545 #ifndef SMB_STRUCT_DIRENT
546 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIRENT64)
547 #    define SMB_STRUCT_DIRENT struct dirent64
548 #  else
549 #    define SMB_STRUCT_DIRENT struct dirent
550 #  endif
551 #endif
552
553 /*
554  * Defines for 64 bit fcntl locks.
555  */
556
557 #ifndef SMB_STRUCT_FLOCK
558 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
559 #    define SMB_STRUCT_FLOCK struct flock64
560 #  else
561 #    define SMB_STRUCT_FLOCK struct flock
562 #  endif
563 #endif
564
565 #ifndef SMB_F_SETLKW
566 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
567 #    define SMB_F_SETLKW F_SETLKW64
568 #  else
569 #    define SMB_F_SETLKW F_SETLKW
570 #  endif
571 #endif
572
573 #ifndef SMB_F_SETLK
574 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
575 #    define SMB_F_SETLK F_SETLK64
576 #  else
577 #    define SMB_F_SETLK F_SETLK
578 #  endif
579 #endif
580
581 #ifndef SMB_F_GETLK
582 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
583 #    define SMB_F_GETLK F_GETLK64
584 #  else
585 #    define SMB_F_GETLK F_GETLK
586 #  endif
587 #endif
588
589 #if defined(HAVE_LONGLONG)
590 #define SMB_BIG_UINT unsigned long long
591 #define SMB_BIG_INT long long
592 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
593 #else
594 #define SMB_BIG_UINT unsigned long
595 #define SMB_BIG_INT long
596 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
597 #endif
598
599 #define SMB_BIG_UINT_BITS (sizeof(SMB_BIG_UINT)*8)
600
601 #ifndef MIN
602 #define MIN(a,b) ((a)<(b)?(a):(b))
603 #endif
604
605 #ifndef MAX
606 #define MAX(a,b) ((a)>(b)?(a):(b))
607 #endif
608
609 #ifndef HAVE_STRERROR
610 extern char *sys_errlist[];
611 #define strerror(i) sys_errlist[i]
612 #endif
613
614 #ifndef HAVE_ERRNO_DECL
615 extern int errno;
616 #endif
617
618 #ifdef HAVE_BROKEN_GETGROUPS
619 #define GID_T int
620 #else
621 #define GID_T gid_t
622 #endif
623
624 #ifndef NGROUPS_MAX
625 #define NGROUPS_MAX 32 /* Guess... */
626 #endif
627
628 /* Lists, trees, caching, database... */
629 #include "ubi_sLinkList.h"
630 #include "ubi_dLinkList.h"
631 #include "dlinklist.h"
632 #include "../tdb/tdb.h"
633 #include "../tdb/spinlock.h"
634 #include "talloc.h"
635 #include "interfaces.h"
636 #include "hash.h"
637 #include "trans2.h"
638 #include "nterr.h"
639 #include "secrets.h"
640 #include "messages.h"
641 #include "util_list.h"
642
643 #include "util_getent.h"
644
645 #ifndef UBI_BINTREE_H
646 #include "ubi_Cache.h"
647 #endif /* UBI_BINTREE_H */
648
649 #include "debugparse.h"
650
651 #include "version.h"
652 #include "smb.h"
653 #include "smbw.h"
654 #include "nameserv.h"
655
656 #include "byteorder.h"
657
658 #include "ntdomain.h"
659
660 #include "msdfs.h"
661
662 #include "profile.h"
663
664 #include "mapping.h"
665
666 #include "md5.h"
667 #include "hmacmd5.h"
668
669 #include "auth.h"
670
671 #ifndef MAXCODEPAGELINES
672 #define MAXCODEPAGELINES 256
673 #endif
674
675 /*
676  * Type for wide character dirent structure.
677  * Only d_name is defined by POSIX.
678  */
679
680 typedef struct smb_wdirent {
681         wpstring        d_name;
682 } SMB_STRUCT_WDIRENT;
683
684 /*
685  * Type for wide character passwd structure.
686  */
687
688 typedef struct smb_wpasswd {
689         wfstring       pw_name;
690         char           *pw_passwd;
691         uid_t          pw_uid;
692         gid_t          pw_gid;
693         wpstring       pw_gecos;
694         wpstring       pw_dir;
695         wpstring       pw_shell;
696 } SMB_STRUCT_WPASSWD;
697
698 /* Defines for wisXXX functions. */
699 #define UNI_UPPER    0x1
700 #define UNI_LOWER    0x2
701 #define UNI_DIGIT    0x4
702 #define UNI_XDIGIT   0x8
703 #define UNI_SPACE    0x10
704
705 #ifdef HAVE_NSS_COMMON_H
706
707 /* Sun Solaris */
708
709 #include <nss_common.h>
710 #include <nss_dbdefs.h>
711 #include <nsswitch.h>
712
713 typedef nss_status_t NSS_STATUS;
714
715 #define NSS_STATUS_SUCCESS     NSS_SUCCESS
716 #define NSS_STATUS_NOTFOUND    NSS_NOTFOUND
717 #define NSS_STATUS_UNAVAIL     NSS_UNAVAIL
718 #define NSS_STATUS_TRYAGAIN    NSS_TRYAGAIN
719
720 #elif HAVE_NSS_H
721
722 /* GNU */
723
724 #include <nss.h>
725
726 typedef enum nss_status NSS_STATUS;
727
728 #else /* Nothing's defined. Neither gnu nor sun */
729
730 typedef enum
731 {
732   NSS_STATUS_SUCCESS,
733   NSS_STATUS_NOTFOUND,
734   NSS_STATUS_UNAVAIL,
735   NSS_STATUS_TRYAGAIN
736 } NSS_STATUS;
737
738 #endif
739
740 /***** automatically generated prototypes *****/
741 #include "proto.h"
742
743 /* String routines */
744
745 #include "safe_string.h"
746
747 #ifdef __COMPAR_FN_T
748 #define QSORT_CAST (__compar_fn_t)
749 #endif
750
751 #ifndef QSORT_CAST
752 #define QSORT_CAST (int (*)(const void *, const void *))
753 #endif
754
755 /* this guess needs to be improved (tridge) */
756 #if (defined(STAT_STATVFS) || defined(STAT_STATVFS64)) && !defined(SYSV)
757 #define SYSV 1
758 #endif
759
760 #ifndef DEFAULT_PRINTING
761 #ifdef HAVE_LIBCUPS
762 #define DEFAULT_PRINTING PRINT_CUPS
763 #define PRINTCAP_NAME "cups"
764 #elif defined(SYSV)
765 #define DEFAULT_PRINTING PRINT_SYSV
766 #define PRINTCAP_NAME "lpstat"
767 #else
768 #define DEFAULT_PRINTING PRINT_BSD
769 #define PRINTCAP_NAME "/etc/printcap"
770 #endif
771 #endif
772
773 #ifndef PRINTCAP_NAME
774 #define PRINTCAP_NAME "/etc/printcap"
775 #endif
776
777 #ifndef SIGCLD
778 #define SIGCLD SIGCHLD
779 #endif
780
781 #ifndef MAP_FILE
782 #define MAP_FILE 0
783 #endif
784
785 #if (!defined(WITH_NISPLUS) && !defined(WITH_LDAP) && !defined(WITH_TDBPWD))
786 #define USE_SMBPASS_DB 1
787 #endif
788
789 #if defined(HAVE_PUTPRPWNAM) && defined(AUTH_CLEARTEXT_SEG_CHARS)
790 #define OSF1_ENH_SEC 1
791 #endif
792
793 #ifndef ALLOW_CHANGE_PASSWORD
794 #if (defined(HAVE_TERMIOS_H) && defined(HAVE_DUP2) && defined(HAVE_SETSID))
795 #define ALLOW_CHANGE_PASSWORD 1
796 #endif
797 #endif
798
799 /* what is the longest significant password available on your system? 
800  Knowing this speeds up password searches a lot */
801 #ifndef PASSWORD_LENGTH
802 #define PASSWORD_LENGTH 8
803 #endif
804
805 #ifdef REPLACE_INET_NTOA
806 #define inet_ntoa rep_inet_ntoa
807 #endif
808
809 #ifndef HAVE_PIPE
810 #define SYNC_DNS 1
811 #endif
812
813 #ifndef MAXPATHLEN
814 #define MAXPATHLEN 256
815 #endif
816
817 #ifndef SEEK_SET
818 #define SEEK_SET 0
819 #endif
820
821 #ifndef INADDR_LOOPBACK
822 #define INADDR_LOOPBACK 0x7f000001
823 #endif
824
825 #ifndef INADDR_NONE
826 #define INADDR_NONE 0xffffffff
827 #endif
828
829 #ifndef HAVE_CRYPT
830 #define crypt ufc_crypt
831 #endif
832
833 #ifndef O_ACCMODE
834 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
835 #endif
836
837 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
838 #define ULTRIX_AUTH 1
839 #endif
840
841 #ifdef HAVE_LIBREADLINE
842 #  ifdef HAVE_READLINE_READLINE_H
843 #    include <readline/readline.h>
844 #    ifdef HAVE_READLINE_HISTORY_H
845 #      include <readline/history.h>
846 #    endif
847 #  else
848 #    ifdef HAVE_READLINE_H
849 #      include <readline.h>
850 #      ifdef HAVE_HISTORY_H
851 #        include <history.h>
852 #      endif
853 #    else
854 #      undef HAVE_LIBREADLINE
855 #    endif
856 #  endif
857 #endif
858
859 #ifndef HAVE_STRDUP
860 char *strdup(const char *s);
861 #endif
862
863 #ifndef HAVE_MEMMOVE
864 void *memmove(void *dest,const void *src,int size);
865 #endif
866
867 #ifndef HAVE_INITGROUPS
868 int initgroups(char *name,gid_t id);
869 #endif
870
871 #ifndef HAVE_RENAME
872 int rename(const char *zfrom, const char *zto);
873 #endif
874
875 #ifndef HAVE_MKTIME
876 time_t mktime(struct tm *t);
877 #endif
878
879 #ifndef HAVE_FTRUNCATE
880 int ftruncate(int f,long l);
881 #endif
882
883 #ifndef HAVE_STRTOUL
884 unsigned long strtoul(const char *nptr, char **endptr, int base);
885 #endif
886
887 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESUID_DECL))
888 /* stupid glibc */
889 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
890 #endif
891 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESGID_DECL))
892 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
893 #endif
894 #ifndef HAVE_VASPRINTF_DECL
895 int vasprintf(char **ptr, const char *format, va_list ap);
896 #endif
897
898 #if !defined(HAVE_BZERO) && defined(HAVE_MEMSET)
899 #define bzero(a,b) memset((a),'\0',(b))
900 #endif
901
902 #ifdef REPLACE_GETPASS
903 #define getpass(prompt) getsmbpass((prompt))
904 #endif
905
906 /*
907  * Some older systems seem not to have MAXHOSTNAMELEN
908  * defined.
909  */
910 #ifndef MAXHOSTNAMELEN
911 #define MAXHOSTNAMELEN 254
912 #endif
913
914 /* yuck, I'd like a better way of doing this */
915 #define DIRP_SIZE (256 + 32)
916
917 /*
918  * glibc on linux doesn't seem to have MSG_WAITALL
919  * defined. I think the kernel has it though..
920  */
921
922 #ifndef MSG_WAITALL
923 #define MSG_WAITALL 0
924 #endif
925
926 /* default socket options. Dave Miller thinks we should default to TCP_NODELAY
927    given the socket IO pattern that Samba uses */
928 #ifdef TCP_NODELAY
929 #define DEFAULT_SOCKET_OPTIONS "TCP_NODELAY"
930 #else
931 #define DEFAULT_SOCKET_OPTIONS ""
932 #endif
933
934 /* Load header file for libdl stuff */
935
936 #ifdef HAVE_LIBDL
937 #include <dlfcn.h>
938 #endif
939
940 /* Some POSIX definitions for those without */
941  
942 #ifndef S_IFDIR
943 #define S_IFDIR         0x4000
944 #endif
945 #ifndef S_ISDIR
946 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
947 #endif
948 #ifndef S_IRWXU
949 #define S_IRWXU 00700           /* read, write, execute: owner */
950 #endif
951 #ifndef S_IRUSR
952 #define S_IRUSR 00400           /* read permission: owner */
953 #endif
954 #ifndef S_IWUSR
955 #define S_IWUSR 00200           /* write permission: owner */
956 #endif
957 #ifndef S_IXUSR
958 #define S_IXUSR 00100           /* execute permission: owner */
959 #endif
960 #ifndef S_IRWXG
961 #define S_IRWXG 00070           /* read, write, execute: group */
962 #endif
963 #ifndef S_IRGRP
964 #define S_IRGRP 00040           /* read permission: group */
965 #endif
966 #ifndef S_IWGRP
967 #define S_IWGRP 00020           /* write permission: group */
968 #endif
969 #ifndef S_IXGRP
970 #define S_IXGRP 00010           /* execute permission: group */
971 #endif
972 #ifndef S_IRWXO
973 #define S_IRWXO 00007           /* read, write, execute: other */
974 #endif
975 #ifndef S_IROTH
976 #define S_IROTH 00004           /* read permission: other */
977 #endif
978 #ifndef S_IWOTH
979 #define S_IWOTH 00002           /* write permission: other */
980 #endif
981 #ifndef S_IXOTH
982 #define S_IXOTH 00001           /* execute permission: other */
983 #endif
984
985 /* NetBSD doesn't have these */
986 #ifndef SHM_R
987 #define SHM_R 0400
988 #endif
989
990 #ifndef SHM_W
991 #define SHM_W 0200
992 #endif
993
994 #if HAVE_KERNEL_SHARE_MODES
995 #ifndef LOCK_MAND 
996 #define LOCK_MAND       32      /* This is a mandatory flock */
997 #define LOCK_READ       64      /* ... Which allows concurrent read operations */
998 #define LOCK_WRITE      128     /* ... Which allows concurrent write operations */
999 #define LOCK_RW         192     /* ... Which allows concurrent read & write ops */
1000 #endif
1001 #endif
1002
1003 extern int DEBUGLEVEL;
1004
1005 #define MAX_SEC_CTX_DEPTH 8    /* Maximum number of security contexts */
1006
1007
1008 #ifdef GLIBC_HACK_FCNTL64
1009 /* this is a gross hack. 64 bit locking is completely screwed up on
1010    i386 Linux in glibc 2.1.95 (which ships with RedHat 7.0). This hack
1011    "fixes" the problem with the current 2.4.0test kernels 
1012 */
1013 #define fcntl fcntl64
1014 #undef F_SETLKW 
1015 #undef F_SETLK 
1016 #define F_SETLK 13
1017 #define F_SETLKW 14
1018 #endif
1019
1020
1021 /* Needed for sys_dlopen/sys_dlsym/sys_dlclose */
1022 #ifndef RTLD_GLOBAL
1023 #define RTLD_GLOBAL 0
1024 #endif
1025
1026 #ifndef RTLD_LAZY
1027 #define RTLD_LAZY 0
1028 #endif
1029
1030 #ifndef RTLD_NOW
1031 #define RTLD_NOW 0
1032 #endif
1033
1034 /* needed for some systems without iconv. Doesn't really matter
1035    what error code we use */
1036 #ifndef EILSEQ
1037 #define EILSEQ EIO
1038 #endif
1039
1040 /* add varargs prototypes with printf checking */
1041 int fdprintf(int , char *, ...) PRINTF_ATTRIBUTE(2,3);
1042 #ifndef HAVE_SNPRINTF_DECL
1043 int snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
1044 #endif
1045 #ifndef HAVE_ASPRINTF_DECL
1046 int asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
1047 #endif
1048
1049 /* we used to use these fns, but now we have good replacements
1050    for snprintf and vsnprintf */
1051 #define slprintf snprintf
1052 #define vslprintf vsnprintf
1053
1054 #endif /* _INCLUDES_H */
1055