1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
/*
* Copyright 1990,1991,1994,1995 by the Massachusetts Institute of Technology.
* All Rights Reserved.
*
* Export of this software from the United States of America may
* require a specific license from the United States Government.
* It is the responsibility of any person or organization contemplating
* export to obtain such a license before exporting.
*
* WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
* distribute this software and its documentation for any purpose and
* without fee is hereby granted, provided that the above copyright
* notice appear in all copies and that both that copyright notice and
* this permission notice appear in supporting documentation, and that
* the name of M.I.T. not be used in advertising or publicity pertaining
* to distribution of the software without specific, written prior
* permission. M.I.T. makes no representations about the suitability of
* this software for any purpose. It is provided "as is" without express
* or implied warranty.
*
* Configuration definition file.
*/
#ifndef KRB5_CONFIG__
#define KRB5_CONFIG__
#ifdef _MSDOS
/*
* Machine-type definitions: PC Clone 386 running Microloss Windows
*/
#define KRB5_DBM_COMPAT__ /* Don't load dbm.h */
#define KRB5_KDB5__ /* Don't load kdb.h */
#define KRB5_KDB5_DBM__ /* Don't load kdb_dbm.h */
#define BITS16
#define SIZEOF_INT 2
#define SIZEOF_SHORT 2
#define SIZEOF_LONG 4
#define MAXHOSTNAMELEN 512
#define KRB5_USE_INET
#define MSDOS_FILESYSTEM
#define USE_STRING_H
#define HAVE_SRAND
#define HAVE_ERRNO
#define HAS_STRDUP
#define NO_USERID
#define NOFCHMOD
#define HAS_ANSI_CONST /* For compiling w/o -Za */
#define HAS_ANSI_VOLATILE
#define HAS_VOID_TYPE
#define KRB5_PROVIDE_PROTOTYPES
#define STDARG_PROTOTYPES
#ifndef _SIZE_T_DEFINED
typedef unsigned int size_t;
#define _SIZE_T_DEFINED
#endif
#ifndef _U_TYPES_DEFINED
typedef unsigned long u_long;
typedef unsigned char u_char;
#define _U_LONG_DEFINED
#endif
#ifndef INTERFACE
#define INTERFACE __far __export __pascal
#define INTERFACE_C __far __export __cdecl
#endif
/*
* The following defines are needed to make <windows.h> work
* in stdc mode (/Za flag). Winsock.h needs <windows.h>.
*/
#define FAR _far
#define NEAR _near
#define _far __far
#define _near __near
#define _pascal __pascal
#define _cdecl __cdecl
#define _huge __huge
#ifdef NEED_SOCKETS
#include <winsock.h>
#endif
#ifdef NEED_LOWLEVEL_IO
/* Ugly. Microsoft, in stdc mode, doesn't support the low-level i/o
* routines directly. Rather, they only export the _<function> version.
* The following defines works around this problem.
*/
#include <fcntl.h>
#include <io.h>
#include <process.h>
#define O_RDONLY _O_RDONLY
#define O_WRONLY _O_WRONLY
#define O_RDWR _O_RDWR
#define O_APPEND _O_APPEND
#define O_CREAT _O_CREAT
#define O_TRUNC _O_TRUNC
#define O_EXCL _O_EXCL
#define O_TEXT _O_TEXT
#define O_BINARY _O_BINARY
#define O_NOINHERIT _O_NOINHERIT
#define S_IREAD _S_IREAD
#define S_IWRITE _S_IWRITE
#define S_IRUSR S_IREAD /* read permission, owner */
#define S_IWUSR S_IWRITE /* write permission, owner */
#define stat _stat
#define unlink _unlink
#define lseek _lseek
#define write _write
#define open _open
#define close _close
#define read _read
#define fstat _fstat
#define chmod _chmod
#define mktemp _mktemp
#define getpid _getpid
#endif
/* XXX these should be parameterized soon... */
#define PROVIDE_DES_CBC_MD5
#define PROVIDE_DES_CBC_CRC
#define PROVIDE_RAW_DES_CBC
#define PROVIDE_CRC32
#define PROVIDE_DES_CBC_CKSUM
#define PROVIDE_RSA_MD4
#define PROVIDE_RSA_MD5
#define DEFAULT_PWD_STRING1 "Enter password:"
#define DEFAULT_PWD_STRING2 "Re-enter password for verification:"
/* Functions with slightly different names on the PC
*/
#define strcasecmp _stricmp
#define strdup _strdup
#define off_t _off_t
#else /* Rest of include file is for non-Microloss-Windows */
#ifndef KRB5_AUTOCONF__
#define KRB5_AUTOCONF__
#include "autoconf.h"
#endif
#ifdef SYSV
/* Change srandom and random to use rand and srand */
/* Taken from the Sandia changes. XXX We should really just include */
/* srandom and random into Kerberos release, since rand() is a really */
/* bad random number generator.... [tytso:19920616.2231EDT] */
#define random() rand()
#define srandom(a) srand(a)
#ifndef unicos61
#define utimes(a,b) utime(a,b)
#endif /* unicos61 */
#endif /* SYSV */
/* XXX these should be parameterized soon... */
#define PROVIDE_DES_CBC_MD5
#define PROVIDE_DES_CBC_CRC
#define PROVIDE_RAW_DES_CBC
#define PROVIDE_CRC32
#define PROVIDE_DES_CBC_CKSUM
#define PROVIDE_RSA_MD4
#define PROVIDE_RSA_MD5
#define DEFAULT_PWD_STRING1 "Enter password:"
#define DEFAULT_PWD_STRING2 "Re-enter password for verification:"
#define KRB5_KDB_MAX_LIFE (60*60*24) /* one day */
#define KRB5_KDB_MAX_RLIFE (60*60*24*7) /* one week */
#define KRB5_KDB_EXPIRATION 2145830400 /* Thu Jan 1 00:00:00 2038 UTC */
/*
* For paranoid DOE types that don't want to give helpful error
* messages to the client....er, attacker
*/
#undef KRBCONF_VAGUE_ERRORS
/*
* Define this if you want the KDC to modify the Kerberos database;
* this allows the last request information to be updated, as well as
* the failure count information.
*
* Note that this doesn't work if you're using slave servers!!! It
* also causes the database to be modified (and thus need to be
* locked) frequently.
*/
#undef KRBCONF_KDC_MODIFIES_KDB
/*
* Windows requires a different api interface to each function. Here
* just define it as NULL.
*/
#define INTERFACE
#define INTERFACE_C
#define FAR
#define NEAR
#ifndef HAS_LABS
#define labs(x) abs(x)
#endif
#endif /* _MSDOS */
#endif /* KRB5_CONFIG__ */
|