~vcs-imports/samba/main

« back to all changes in this revision

Viewing changes to source/include/includes.h

  • Committer: jerry
  • Date: 2006-07-14 21:48:39 UTC
  • Revision ID: vcs-imports@canonical.com-20060714214839-586d8c489a8fcead
gutting trunk to move to svn:externals

Show diffs side-by-side

added added

removed removed

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