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