27deaf4339183f053394542149457639679d79b7
[jra/samba/.git] / source3 / 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
331 #if defined(BROKEN_REDHAT_7_SYSTEM_HEADERS) && !defined(_I386_STATFS_H)
332 #define _I386_STATFS_H
333 #define BROKEN_REDHAT_7_STATFS_WORKAROUND
334 #endif
335
336 #include <sys/capability.h>
337
338 #ifdef BROKEN_REDHAT_7_STATFS_WORKAROUND
339 #undef _I386_STATFS_H
340 #undef BROKEN_REDHAT_7_STATFS_WORKAROUND
341 #endif
342
343 #endif
344
345 #if defined(HAVE_RPC_RPC_H)
346 /*
347  * Check for AUTH_ERROR define conflict with rpc/rpc.h in prot.h.
348  */
349 #if defined(HAVE_SYS_SECURITY_H) && defined(HAVE_RPC_AUTH_ERROR_CONFLICT)
350 #undef AUTH_ERROR
351 #endif
352 #include <rpc/rpc.h>
353 #endif
354
355 #if defined(HAVE_YP_GET_DEFAULT_DOMAIN) && defined(HAVE_SETNETGRENT) && defined(HAVE_ENDNETGRENT) && defined(HAVE_GETNETGRENT)
356 #define HAVE_NETGROUP 1
357 #endif
358
359 #if defined (HAVE_NETGROUP)
360 #if defined(HAVE_RPCSVC_YP_PROT_H)
361 #include <rpcsvc/yp_prot.h>
362 #endif
363 #if defined(HAVE_RPCSVC_YPCLNT_H)
364 #include <rpcsvc/ypclnt.h>
365 #endif
366 #endif /* HAVE_NETGROUP */
367
368 #if defined(HAVE_SYS_IPC_H)
369 #include <sys/ipc.h>
370 #endif /* HAVE_SYS_IPC_H */
371
372 #if defined(HAVE_SYS_SHM_H)
373 #include <sys/shm.h>
374 #endif /* HAVE_SYS_SHM_H */
375
376 #ifdef HAVE_NATIVE_ICONV
377 #include <iconv.h>
378 #endif
379
380 #if HAVE_KRB5
381 #include <krb5.h>
382 #endif
383
384 #if HAVE_LDAP_H
385 #include <ldap.h>
386 #endif
387
388 #if HAVE_SASL_H
389 #include <sasl.h>
390 #endif
391
392 /* we support ADS if we have krb5 and ldap libs */
393 #if defined(HAVE_KRB5) && defined(HAVE_LDAP) && defined(HAVE_LDAP_H) && defined(HAVE_SASL_H)
394 #define HAVE_ADS
395 #endif
396
397 /*
398  * Define VOLATILE if needed.
399  */
400
401 #if defined(HAVE_VOLATILE)
402 #define VOLATILE volatile
403 #else
404 #define VOLATILE
405 #endif
406
407 /*
408  * Define additional missing types
409  */
410 #ifndef HAVE_SIG_ATOMIC_T_TYPE
411 typedef int sig_atomic_t;
412 #endif
413
414 #ifndef HAVE_SOCKLEN_T_TYPE
415 typedef int socklen_t;
416 #endif
417
418
419 #ifndef uchar
420 #define uchar unsigned char
421 #endif
422
423 #ifdef HAVE_UNSIGNED_CHAR
424 #define schar signed char
425 #else
426 #define schar char
427 #endif
428
429 /*
430    Samba needs type definitions for int16, int32, uint16 and uint32.
431
432    Normally these are signed and unsigned 16 and 32 bit integers, but
433    they actually only need to be at least 16 and 32 bits
434    respectively. Thus if your word size is 8 bytes just defining them
435    as signed and unsigned int will work.
436 */
437
438 #ifndef uint8
439 #define uint8 unsigned char
440 #endif
441
442 #if !defined(int16) && !defined(HAVE_INT16_FROM_RPC_RPC_H)
443 #if (SIZEOF_SHORT == 4)
444 #define int16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
445 #else /* SIZEOF_SHORT != 4 */
446 #define int16 short
447 #endif /* SIZEOF_SHORT != 4 */
448 #endif
449
450 /*
451  * Note we duplicate the size tests in the unsigned 
452  * case as int16 may be a typedef from rpc/rpc.h
453  */
454
455 #if !defined(uint16) && !defined(HAVE_UINT16_FROM_RPC_RPC_H)
456 #if (SIZEOF_SHORT == 4)
457 #define uint16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
458 #else /* SIZEOF_SHORT != 4 */
459 #define uint16 unsigned short
460 #endif /* SIZEOF_SHORT != 4 */
461 #endif
462
463 #if !defined(int32) && !defined(HAVE_INT32_FROM_RPC_RPC_H)
464 #if (SIZEOF_INT == 4)
465 #define int32 int
466 #elif (SIZEOF_LONG == 4)
467 #define int32 long
468 #elif (SIZEOF_SHORT == 4)
469 #define int32 short
470 #else
471 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
472 #define int32 int
473 #endif
474 #endif
475
476 /*
477  * Note we duplicate the size tests in the unsigned 
478  * case as int32 may be a typedef from rpc/rpc.h
479  */
480
481 #if !defined(uint32) && !defined(HAVE_UINT32_FROM_RPC_RPC_H)
482 #if (SIZEOF_INT == 4)
483 #define uint32 unsigned int
484 #elif (SIZEOF_LONG == 4)
485 #define uint32 unsigned long
486 #elif (SIZEOF_SHORT == 4)
487 #define uint32 unsigned short
488 #else
489 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
490 #define uint32 unsigned
491 #endif
492 #endif
493
494 /*
495  * Types for devices, inodes and offsets.
496  */
497
498 #ifndef SMB_DEV_T
499 #define SMB_DEV_T dev_t
500 #endif
501
502 /*
503  * Setup the correctly sized inode type.
504  */
505
506 #ifndef SMB_INO_T
507 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)
508 #    define SMB_INO_T ino64_t
509 #  else
510 #    define SMB_INO_T ino_t
511 #  endif
512 #endif
513
514 #ifndef LARGE_SMB_INO_T
515 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8))
516 #    define LARGE_SMB_INO_T 1
517 #  endif
518 #endif
519
520 #ifdef LARGE_SMB_INO_T
521 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
522 #else 
523 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
524 #endif
525
526 #ifndef SMB_OFF_T
527 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)
528 #    define SMB_OFF_T off64_t
529 #  else
530 #    define SMB_OFF_T off_t
531 #  endif
532 #endif
533
534 /* this should really be a 64 bit type if possible */
535 #define br_off SMB_BIG_UINT
536
537 #define SMB_OFF_T_BITS (sizeof(SMB_OFF_T)*8)
538
539 /*
540  * Set the define that tells us if we can do 64 bit
541  * NT SMB calls.
542  */
543
544 #ifndef LARGE_SMB_OFF_T
545 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))
546 #    define LARGE_SMB_OFF_T 1
547 #  endif
548 #endif
549
550 #ifdef LARGE_SMB_OFF_T
551 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
552 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,(v)&0xFFFFFFFF), SIVAL(p,ofs,(v)>>32))
553 #else 
554 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
555 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,v),SIVAL(p,ofs,0))
556 #endif
557
558 /*
559  * Type for stat structure.
560  */
561
562 #ifndef SMB_STRUCT_STAT
563 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STAT64) && defined(HAVE_OFF64_T)
564 #    define SMB_STRUCT_STAT struct stat64
565 #  else
566 #    define SMB_STRUCT_STAT struct stat
567 #  endif
568 #endif
569
570 /*
571  * Type for dirent structure.
572  */
573
574 #ifndef SMB_STRUCT_DIRENT
575 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIRENT64)
576 #    define SMB_STRUCT_DIRENT struct dirent64
577 #  else
578 #    define SMB_STRUCT_DIRENT struct dirent
579 #  endif
580 #endif
581
582 /*
583  * Defines for 64 bit fcntl locks.
584  */
585
586 #ifndef SMB_STRUCT_FLOCK
587 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
588 #    define SMB_STRUCT_FLOCK struct flock64
589 #  else
590 #    define SMB_STRUCT_FLOCK struct flock
591 #  endif
592 #endif
593
594 #ifndef SMB_F_SETLKW
595 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
596 #    define SMB_F_SETLKW F_SETLKW64
597 #  else
598 #    define SMB_F_SETLKW F_SETLKW
599 #  endif
600 #endif
601
602 #ifndef SMB_F_SETLK
603 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
604 #    define SMB_F_SETLK F_SETLK64
605 #  else
606 #    define SMB_F_SETLK F_SETLK
607 #  endif
608 #endif
609
610 #ifndef SMB_F_GETLK
611 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
612 #    define SMB_F_GETLK F_GETLK64
613 #  else
614 #    define SMB_F_GETLK F_GETLK
615 #  endif
616 #endif
617
618 #if defined(HAVE_LONGLONG)
619 #define SMB_BIG_UINT unsigned long long
620 #define SMB_BIG_INT long long
621 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
622 #else
623 #define SMB_BIG_UINT unsigned long
624 #define SMB_BIG_INT long
625 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
626 #endif
627
628 #define SMB_BIG_UINT_BITS (sizeof(SMB_BIG_UINT)*8)
629
630 #ifndef MIN
631 #define MIN(a,b) ((a)<(b)?(a):(b))
632 #endif
633
634 #ifndef MAX
635 #define MAX(a,b) ((a)>(b)?(a):(b))
636 #endif
637
638 #ifndef HAVE_STRERROR
639 extern char *sys_errlist[];
640 #define strerror(i) sys_errlist[i]
641 #endif
642
643 #ifndef HAVE_ERRNO_DECL
644 extern int errno;
645 #endif
646
647 #ifdef HAVE_BROKEN_GETGROUPS
648 #define GID_T int
649 #else
650 #define GID_T gid_t
651 #endif
652
653 #ifndef NGROUPS_MAX
654 #define NGROUPS_MAX 32 /* Guess... */
655 #endif
656
657 /* Lists, trees, caching, database... */
658 #include "xfile.h"
659 #include "intl.h"
660 #include "ubi_sLinkList.h"
661 #include "ubi_dLinkList.h"
662 #include "dlinklist.h"
663 #include "../tdb/tdb.h"
664 #include "../tdb/spinlock.h"
665 #include "talloc.h"
666 #include "ads.h"
667 #include "interfaces.h"
668 #include "hash.h"
669 #include "trans2.h"
670 #include "nterr.h"
671 #include "secrets.h"
672 #include "messages.h"
673 #include "util_list.h"
674 #include "charset.h"
675 #include "dynconfig.h"
676
677 #include "util_getent.h"
678
679 #ifndef UBI_BINTREE_H
680 #include "ubi_Cache.h"
681 #endif /* UBI_BINTREE_H */
682
683 #include "debugparse.h"
684
685 #include "version.h"
686 #include "smb.h"
687 #include "smbw.h"
688 #include "nameserv.h"
689
690 #include "byteorder.h"
691
692 #include "ntdomain.h"
693
694 #include "msdfs.h"
695
696 #include "smbprofile.h"
697
698 #include "mapping.h"
699
700 #include "rap.h"
701
702 #include "md5.h"
703 #include "hmacmd5.h"
704
705 #include "auth.h"
706
707 #include "session.h"
708
709 #include "asn1.h"
710
711 #include "popt.h"
712
713 #ifndef MAXCODEPAGELINES
714 #define MAXCODEPAGELINES 256
715 #endif
716
717 /*
718  * Type for wide character dirent structure.
719  * Only d_name is defined by POSIX.
720  */
721
722 typedef struct smb_wdirent {
723         wpstring        d_name;
724 } SMB_STRUCT_WDIRENT;
725
726 /*
727  * Type for wide character passwd structure.
728  */
729
730 typedef struct smb_wpasswd {
731         wfstring       pw_name;
732         char           *pw_passwd;
733         uid_t          pw_uid;
734         gid_t          pw_gid;
735         wpstring       pw_gecos;
736         wpstring       pw_dir;
737         wpstring       pw_shell;
738 } SMB_STRUCT_WPASSWD;
739
740 /* used in net.c */
741 struct functable {
742         char *funcname;
743         int (*fn)();
744 };
745
746
747 /* Defines for wisXXX functions. */
748 #define UNI_UPPER    0x1
749 #define UNI_LOWER    0x2
750 #define UNI_DIGIT    0x4
751 #define UNI_XDIGIT   0x8
752 #define UNI_SPACE    0x10
753
754 #include "nsswitch/nss.h"
755
756 /***** automatically generated prototypes *****/
757 #include "proto.h"
758
759 /* String routines */
760
761 #include "safe_string.h"
762
763 #ifdef __COMPAR_FN_T
764 #define QSORT_CAST (__compar_fn_t)
765 #endif
766
767 #ifndef QSORT_CAST
768 #define QSORT_CAST (int (*)(const void *, const void *))
769 #endif
770
771 /* this guess needs to be improved (tridge) */
772 #if (defined(STAT_STATVFS) || defined(STAT_STATVFS64)) && !defined(SYSV)
773 #define SYSV 1
774 #endif
775
776 #ifndef DEFAULT_PRINTING
777 #ifdef HAVE_CUPS
778 #define DEFAULT_PRINTING PRINT_CUPS
779 #define PRINTCAP_NAME "cups"
780 #elif defined(SYSV)
781 #define DEFAULT_PRINTING PRINT_SYSV
782 #define PRINTCAP_NAME "lpstat"
783 #else
784 #define DEFAULT_PRINTING PRINT_BSD
785 #define PRINTCAP_NAME "/etc/printcap"
786 #endif
787 #endif
788
789 #ifndef PRINTCAP_NAME
790 #define PRINTCAP_NAME "/etc/printcap"
791 #endif
792
793 #ifndef SIGCLD
794 #define SIGCLD SIGCHLD
795 #endif
796
797 #ifndef MAP_FILE
798 #define MAP_FILE 0
799 #endif
800
801 #if (!defined(WITH_NISPLUS) && !defined(WITH_LDAP) && !defined(WITH_TDB_SAM))
802 #define USE_SMBPASS_DB 1
803 #endif
804
805 #if defined(HAVE_PUTPRPWNAM) && defined(AUTH_CLEARTEXT_SEG_CHARS)
806 #define OSF1_ENH_SEC 1
807 #endif
808
809 #ifndef ALLOW_CHANGE_PASSWORD
810 #if (defined(HAVE_TERMIOS_H) && defined(HAVE_DUP2) && defined(HAVE_SETSID))
811 #define ALLOW_CHANGE_PASSWORD 1
812 #endif
813 #endif
814
815 /* what is the longest significant password available on your system? 
816  Knowing this speeds up password searches a lot */
817 #ifndef PASSWORD_LENGTH
818 #define PASSWORD_LENGTH 8
819 #endif
820
821 #ifdef REPLACE_INET_NTOA
822 #define inet_ntoa rep_inet_ntoa
823 #endif
824
825 #ifndef HAVE_PIPE
826 #define SYNC_DNS 1
827 #endif
828
829 #ifndef MAXPATHLEN
830 #define MAXPATHLEN 256
831 #endif
832
833 #ifndef SEEK_SET
834 #define SEEK_SET 0
835 #endif
836
837 #ifndef INADDR_LOOPBACK
838 #define INADDR_LOOPBACK 0x7f000001
839 #endif
840
841 #ifndef INADDR_NONE
842 #define INADDR_NONE 0xffffffff
843 #endif
844
845 #ifndef HAVE_CRYPT
846 #define crypt ufc_crypt
847 #endif
848
849 #ifndef O_ACCMODE
850 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
851 #endif
852
853 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
854 #define ULTRIX_AUTH 1
855 #endif
856
857 #ifdef HAVE_LIBREADLINE
858 #  ifdef HAVE_READLINE_READLINE_H
859 #    include <readline/readline.h>
860 #    ifdef HAVE_READLINE_HISTORY_H
861 #      include <readline/history.h>
862 #    endif
863 #  else
864 #    ifdef HAVE_READLINE_H
865 #      include <readline.h>
866 #      ifdef HAVE_HISTORY_H
867 #        include <history.h>
868 #      endif
869 #    else
870 #      undef HAVE_LIBREADLINE
871 #    endif
872 #  endif
873 #endif
874
875 #ifndef HAVE_STRDUP
876 char *strdup(const char *s);
877 #endif
878
879 #ifndef HAVE_MEMMOVE
880 void *memmove(void *dest,const void *src,int size);
881 #endif
882
883 #ifndef HAVE_INITGROUPS
884 int initgroups(char *name,gid_t id);
885 #endif
886
887 #ifndef HAVE_RENAME
888 int rename(const char *zfrom, const char *zto);
889 #endif
890
891 #ifndef HAVE_MKTIME
892 time_t mktime(struct tm *t);
893 #endif
894
895 #ifndef HAVE_STRLCPY
896 size_t strlcpy(char *d, const char *s, size_t bufsize);
897 #endif
898
899 #ifndef HAVE_STRLCAT
900 size_t strlcat(char *d, const char *s, size_t bufsize);
901 #endif
902
903 #ifndef HAVE_FTRUNCATE
904 int ftruncate(int f,long l);
905 #endif
906
907 #ifndef HAVE_STRTOUL
908 unsigned long strtoul(const char *nptr, char **endptr, int base);
909 #endif
910
911 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESUID_DECL))
912 /* stupid glibc */
913 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
914 #endif
915 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESGID_DECL))
916 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
917 #endif
918 #ifndef HAVE_VASPRINTF_DECL
919 int vasprintf(char **ptr, const char *format, va_list ap);
920 #endif
921
922 #if !defined(HAVE_BZERO) && defined(HAVE_MEMSET)
923 #define bzero(a,b) memset((a),'\0',(b))
924 #endif
925
926 #ifdef REPLACE_GETPASS
927 #define getpass(prompt) getsmbpass((prompt))
928 #endif
929
930 /*
931  * Some older systems seem not to have MAXHOSTNAMELEN
932  * defined.
933  */
934 #ifndef MAXHOSTNAMELEN
935 #define MAXHOSTNAMELEN 254
936 #endif
937
938 /* yuck, I'd like a better way of doing this */
939 #define DIRP_SIZE (256 + 32)
940
941 /*
942  * glibc on linux doesn't seem to have MSG_WAITALL
943  * defined. I think the kernel has it though..
944  */
945
946 #ifndef MSG_WAITALL
947 #define MSG_WAITALL 0
948 #endif
949
950 /* default socket options. Dave Miller thinks we should default to TCP_NODELAY
951    given the socket IO pattern that Samba uses */
952 #ifdef TCP_NODELAY
953 #define DEFAULT_SOCKET_OPTIONS "TCP_NODELAY"
954 #else
955 #define DEFAULT_SOCKET_OPTIONS ""
956 #endif
957
958 /* Load header file for libdl stuff */
959
960 #ifdef HAVE_LIBDL
961 #include <dlfcn.h>
962 #endif
963
964 /* Some POSIX definitions for those without */
965  
966 #ifndef S_IFDIR
967 #define S_IFDIR         0x4000
968 #endif
969 #ifndef S_ISDIR
970 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
971 #endif
972 #ifndef S_IRWXU
973 #define S_IRWXU 00700           /* read, write, execute: owner */
974 #endif
975 #ifndef S_IRUSR
976 #define S_IRUSR 00400           /* read permission: owner */
977 #endif
978 #ifndef S_IWUSR
979 #define S_IWUSR 00200           /* write permission: owner */
980 #endif
981 #ifndef S_IXUSR
982 #define S_IXUSR 00100           /* execute permission: owner */
983 #endif
984 #ifndef S_IRWXG
985 #define S_IRWXG 00070           /* read, write, execute: group */
986 #endif
987 #ifndef S_IRGRP
988 #define S_IRGRP 00040           /* read permission: group */
989 #endif
990 #ifndef S_IWGRP
991 #define S_IWGRP 00020           /* write permission: group */
992 #endif
993 #ifndef S_IXGRP
994 #define S_IXGRP 00010           /* execute permission: group */
995 #endif
996 #ifndef S_IRWXO
997 #define S_IRWXO 00007           /* read, write, execute: other */
998 #endif
999 #ifndef S_IROTH
1000 #define S_IROTH 00004           /* read permission: other */
1001 #endif
1002 #ifndef S_IWOTH
1003 #define S_IWOTH 00002           /* write permission: other */
1004 #endif
1005 #ifndef S_IXOTH
1006 #define S_IXOTH 00001           /* execute permission: other */
1007 #endif
1008
1009 /* NetBSD doesn't have these */
1010 #ifndef SHM_R
1011 #define SHM_R 0400
1012 #endif
1013
1014 #ifndef SHM_W
1015 #define SHM_W 0200
1016 #endif
1017
1018 #if HAVE_KERNEL_SHARE_MODES
1019 #ifndef LOCK_MAND 
1020 #define LOCK_MAND       32      /* This is a mandatory flock */
1021 #define LOCK_READ       64      /* ... Which allows concurrent read operations */
1022 #define LOCK_WRITE      128     /* ... Which allows concurrent write operations */
1023 #define LOCK_RW         192     /* ... Which allows concurrent read & write ops */
1024 #endif
1025 #endif
1026
1027 extern int DEBUGLEVEL;
1028
1029 #define MAX_SEC_CTX_DEPTH 8    /* Maximum number of security contexts */
1030
1031
1032 #ifdef GLIBC_HACK_FCNTL64
1033 /* this is a gross hack. 64 bit locking is completely screwed up on
1034    i386 Linux in glibc 2.1.95 (which ships with RedHat 7.0). This hack
1035    "fixes" the problem with the current 2.4.0test kernels 
1036 */
1037 #define fcntl fcntl64
1038 #undef F_SETLKW 
1039 #undef F_SETLK 
1040 #define F_SETLK 13
1041 #define F_SETLKW 14
1042 #endif
1043
1044
1045 /* Needed for sys_dlopen/sys_dlsym/sys_dlclose */
1046 #ifndef RTLD_GLOBAL
1047 #define RTLD_GLOBAL 0
1048 #endif
1049
1050 #ifndef RTLD_LAZY
1051 #define RTLD_LAZY 0
1052 #endif
1053
1054 #ifndef RTLD_NOW
1055 #define RTLD_NOW 0
1056 #endif
1057
1058 /* needed for some systems without iconv. Doesn't really matter
1059    what error code we use */
1060 #ifndef EILSEQ
1061 #define EILSEQ EIO
1062 #endif
1063
1064 /* add varargs prototypes with printf checking */
1065 int fdprintf(int , const char *, ...) PRINTF_ATTRIBUTE(2,3);
1066 int d_printf(const char *, ...) PRINTF_ATTRIBUTE(1,2);
1067 int d_fprintf(FILE *f, const char *, ...) PRINTF_ATTRIBUTE(2,3);
1068 #ifndef HAVE_SNPRINTF_DECL
1069 int snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
1070 #endif
1071 #ifndef HAVE_ASPRINTF_DECL
1072 int asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
1073 #endif
1074
1075 /* we used to use these fns, but now we have good replacements
1076    for snprintf and vsnprintf */
1077 #define slprintf snprintf
1078 #define vslprintf vsnprintf
1079
1080 #endif /* _INCLUDES_H */
1081