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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
|
/*
* type functions split out of here to make things look nicer in the
* various include files which need these definitions, as well as in
* the util/ directories.
*/
#ifndef _KRB5_WIN_MAC_H
#define _KRB5_WIN_MAC_H
#if (defined(_MSDOS) || defined(_WIN32))
/*
* Machine-type definitions: PC Clone 386 running Microloss Windows
*/
#define ID_READ_PWD_DIALOG 10000
#define ID_READ_PWD_PROMPT 10001
#define ID_READ_PWD_PROMPT2 10002
#define ID_READ_PWD_PWD 10003
#ifdef RES_ONLY
#define APSTUDIO_HIDDEN_SYMBOLS
#include <windows.h>
#else
#if defined(_MSDOS)
/* Windows 16 specific */
#define BITS16
#define SIZEOF_INT 2
#define SIZEOF_SHORT 2
#define SIZEOF_LONG 4
#ifndef KRB5_CALLCONV
#define KRB5_CALLCONV __far __export __pascal
#define KRB5_CALLCONV_C __far __export __cdecl
#define KRB5_EXPORTVAR __far __export
#define KRB5_DLLIMP
#endif /* !KRB5_CALLCONV */
#include <windows.h>
/*
* The following defines are needed to make <windows.h> work
* in stdc mode (/Za flag). Winsock.h needs <windows.h>.
*/
#ifndef FAR
#define FAR __far
#define NEAR __near
#endif
#ifndef _far
#define _far __far
#define _near __near
#define _pascal __pascal
#define _cdecl __cdecl
#define _huge __huge
#endif
#else
/* Windows 32 specific */
#define SIZEOF_INT 4
#define SIZEOF_SHORT 2
#define SIZEOF_LONG 4
#include <windows.h> /* always include this here, to get correct FAR and NEAR */
#define HAVE_LABS
#ifndef KRB5_CALLCONV
# ifdef _MSC_VER
# ifdef KRB5_DLL_FILE
# define KRB5_DLLIMP __declspec(dllexport)
# else
# define KRB5_DLLIMP __declspec(dllimport)
# endif
# ifdef GSS_DLL_FILE
# define GSS_DLLIMP __declspec(dllexport)
# else
# define GSS_DLLIMP __declspec(dllimport)
# endif
# else /* !_MSC_VER */
# define KRB5_DLLIMP
# define GSS_DLLIMP
# endif
# define KRB5_CALLCONV __stdcall
# define KRB5_CALLCONV_C __cdecl
# define KRB5_EXPORTVAR
#endif /* !KRB5_CALLCONV */
#endif /* _MSDOS */
#ifndef KRB5_SYSTYPES__
#define KRB5_SYSTYPES__
#include <sys/types.h>
typedef unsigned long u_long; /* Not part of sys/types.h on the pc */
typedef unsigned int u_int;
typedef unsigned short u_short;
typedef unsigned char u_char;
#endif /* KRB5_SYSTYPES__ */
#define MAXHOSTNAMELEN 512
#define MAXPATHLEN 256 /* Also for Windows temp files */
#define HAVE_NETINET_IN_H
#define MSDOS_FILESYSTEM
#define HAVE_STRING_H
#define HAVE_SRAND
#define HAVE_ERRNO
#define HAVE_STRDUP
#define NO_USERID
#define NO_PASSWORD
#define WM_KERBEROS5_CHANGED "Kerberos5 Changed"
#ifdef KRB4
#define WM_KERBEROS_CHANGED "Kerberos Changed"
#endif
/* Kerberos Windows initialization file */
#define KERBEROS_INI "kerberos.ini"
#ifdef CYGNUS
#define KERBEROS_HLP "kerbnet.hlp"
#else
#define KERBEROS_HLP "krb5clnt.hlp"
#endif
#define INI_DEFAULTS "Defaults"
#define INI_USER "User" /* Default user */
#define INI_INSTANCE "Instance" /* Default instance */
#define INI_REALM "Realm" /* Default realm */
#define INI_POSITION "Position"
#define INI_OPTIONS "Options"
#define INI_DURATION "Duration" /* Ticket duration in minutes */
#define INI_EXPIRATION "Expiration" /* Action on expiration (alert or beep) */
#define INI_ALERT "Alert"
#define INI_BEEP "Beep"
#define INI_FILES "Files"
#ifdef KRB4
#define INI_KRB_CONF "krb.conf" /* Location of krb.conf file */
#define DEF_KRB_CONF "krb.conf" /* Default name for krb.conf file */
#else
#define INI_KRB5_CONF "krb5.ini" /* From k5-config.h */
#define INI_KRB_CONF INI_KRB5_CONF /* Location of krb.conf file */
#define DEF_KRB_CONF INI_KRB5_CONF /* Default name for krb.conf file */
#define INI_TICKETOPTS "TicketOptions" /* Ticket options */
#define INI_FORWARDABLE "Forwardable" /* get forwardable tickets */
#define INI_KRB_CCACHE "krb5cc" /* From k5-config.h */
#endif
#define INI_KRB_REALMS "krb.realms" /* Location of krb.realms file */
#define DEF_KRB_REALMS "krb.realms" /* Default name for krb.realms file */
#define INI_RECENT_LOGINS "Recent Logins"
#define INI_LOGIN "Login"
#define HAS_ANSI_VOLATILE
#define HAS_VOID_TYPE
#define KRB5_PROVIDE_PROTOTYPES
#define HAVE_STDARG_H
#define HAVE_SYS_TYPES_H
#define HAVE_STDLIB_H
/* This controls which encryption routines libcrypto will provide */
#define PROVIDE_DES_CBC_MD5
#define PROVIDE_DES_CBC_CRC
#define PROVIDE_DES_CBC_RAW
#define PROVIDE_DES_CBC_CKSUM
#define PROVIDE_CRC32
#define PROVIDE_RSA_MD4
#define PROVIDE_RSA_MD5
/* #define PROVIDE_DES3_CBC_SHA */
/* #define PROVIDE_DES3_CBC_RAW */
/* #define PROVIDE_NIST_SHA */
/* 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 <sys\types.h>
#include <sys\stat.h>
#include <fcntl.h>
#include <io.h>
#include <process.h>
#define THREEPARAMOPEN(x,y,z) open(x,y,z)
#ifndef _WIN32
#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 stat _stat
#define unlink _unlink
#define lseek _lseek
#define write _write
#define open _open
#define close _close
#define read _read
#define fstat _fstat
#define mktemp _mktemp
#define dup _dup
#define getpid _getpid
#endif
#ifdef NEED_SYSERROR
/* Only needed by util/et/error_message.c but let's keep the source clean */
#define sys_nerr _sys_nerr
#define sys_errlist _sys_errlist
#endif
/*
* Functions with slightly different names on the PC
*/
#define strcasecmp stricmp
#define strncasecmp strnicmp
HINSTANCE get_lib_instance(void);
#endif /* !RES_ONLY */
#endif /* _MSDOS || _WIN32 */
#ifdef macintosh
#define KRB5_CALLCONV
#define KRB5_CALLCONV_C
#define KRB5_DLLIMP
#ifndef FAR
#define FAR
#endif
#ifndef NEAR
#define NEAR
#endif
#define SIZEOF_INT 4
#define SIZEOF_SHORT 2
#define HAVE_SRAND
#define NO_PASSWORD
#define HAVE_LABS
#define ENOMEM -1
#define ANSI_STDIO
#ifndef _SIZET
typedef unsigned long size_t;
#define _SIZET
#endif
#include <unix.h>
#include <ctype.h>
#ifdef NEED_LOWLEVEL_IO
#include <fcntl.h>
#endif
/*
* Which encryption routines libcrypto will provide is controlled by
* mac/libraries/KerberosHeaders.h.
*/
/* there is no <stat.h> for mpw */
typedef unsigned long mode_t;
typedef unsigned long ino_t;
typedef unsigned long dev_t;
typedef short nlink_t;
typedef unsigned long uid_t;
typedef unsigned long gid_t;
typedef long off_t;
#ifndef __MWERKS__
struct stat
{
mode_t st_mode; /* File mode; see #define's below */
ino_t st_ino; /* File serial number */
dev_t st_dev; /* ID of device containing this file */
nlink_t st_nlink; /* Number of links */
uid_t st_uid; /* User ID of the file's owner */
gid_t st_gid; /* Group ID of the file's group */
dev_t st_rdev; /* Device type */
off_t st_size; /* File size in bytes */
unsigned long st_atime; /* Time of last access */
unsigned long st_mtime; /* Time of last data modification */
unsigned long st_ctime; /* Time of last file status change */
long st_blksize; /* Optimal blocksize */
long st_blocks; /* blocks allocated for file */
};
int stat(const char *path, struct stat *buf);
#endif
int fstat(int fildes, struct stat *buf);
#define EFBIG 1000
#define NOFCHMOD 1
#define NOCHMOD 1
#define _MACSOCKAPI_
#define THREEPARAMOPEN(x,y,z) open(x,y)
#else /* macintosh */
#define THREEPARAMOPEN(x,y,z) open(x,y,z)
#endif /* macintosh */
#ifndef KRB5_CALLCONV
#define KRB5_CALLCONV
#define KRB5_CALLCONV_C
#define KRB5_DLLIMP
#endif
#ifndef FAR
#define FAR
#endif
#ifndef NEAR
#define NEAR
#endif
#endif /* _KRB5_WIN_MAC_H */
|