roken.h revision 1.3 1 /* This is an OS dependent, generated file */
2
3
4 #ifndef __ROKEN_H__
5 #define __ROKEN_H__
6
7 /* -*- C -*- */
8 /*
9 * Copyright (c) 1995-2005 Kungliga Tekniska Hgskolan
10 * (Royal Institute of Technology, Stockholm, Sweden).
11 * All rights reserved.
12 *
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
16 *
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 *
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 *
24 * 3. Neither the name of the Institute nor the names of its contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
39 */
40
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <stdarg.h>
44 #include <stdint.h>
45 #include <string.h>
46 #include <signal.h>
47
48
49
50 typedef int rk_socket_t;
51
52 #define rk_closesocket(x) close(x)
53 #define rk_SOCK_IOCTL(s,c,a) ioctl((s),(c),(a))
54 #define rk_IS_BAD_SOCKET(s) ((s) < 0)
55 #define rk_IS_SOCKET_ERROR(rv) ((rv) < 0)
56 #define rk_SOCK_ERRNO errno
57 #define rk_INVALID_SOCKET (-1)
58
59 #define rk_SOCK_INIT() 0
60 #define rk_SOCK_EXIT() do { } while(0)
61
62
63
64 #define UNREACHABLE(x)
65 #define UNUSED_ARGUMENT(x)
66
67
68 #include <sys/param.h>
69 #include <inttypes.h>
70 #include <sys/types.h>
71 #include <unistd.h>
72 #include <sys/socket.h>
73 #include <sys/uio.h>
74 #include <grp.h>
75 #include <sys/stat.h>
76 #include <netinet/in.h>
77 #include <arpa/inet.h>
78 #include <netdb.h>
79 #include <arpa/nameser.h>
80 #include <resolv.h>
81 #include <syslog.h>
82 #include <fcntl.h>
83 #include <errno.h>
84 #include <err.h>
85 #include <termios.h>
86 #include <sys/ioctl.h>
87 #include <sys/time.h>
88 #include <time.h>
89
90 #include <paths.h>
91
92 #include <dirent.h>
93
94
95
96 #include <krb5/roken-common.h>
97
98 ROKEN_CPP_START
99
100 #define rk_UNCONST(x) ((void *)(uintptr_t)(const void *)(x))
101
102
103
104
105
106
107
108
109
110
111
112
113 #define asnprintf rk_asnprintf
114 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
115 rk_asnprintf (char **, size_t, const char *, ...)
116 __attribute__ ((format (printf, 3, 4)));
117
118 #define vasnprintf rk_vasnprintf
119 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
120 vasnprintf (char **, size_t, const char *, va_list)
121 __attribute__((format (printf, 3, 0)));
122
123
124
125 #define strlwr rk_strlwr
126 ROKEN_LIB_FUNCTION char * ROKEN_LIB_CALL strlwr(char *);
127
128
129
130 #define strsep_copy rk_strsep_copy
131 ROKEN_LIB_FUNCTION ssize_t ROKEN_LIB_CALL strsep_copy(const char**, const char*, char*, size_t);
132
133
134
135
136 #define strupr rk_strupr
137 ROKEN_LIB_FUNCTION char * ROKEN_LIB_CALL strupr(char *);
138
139
140
141
142
143 #define rk_strerror_r strerror_r
144
145
146
147
148
149
150
151 #include <pwd.h>
152 ROKEN_LIB_FUNCTION struct passwd * ROKEN_LIB_CALL k_getpwnam (const char *);
153 ROKEN_LIB_FUNCTION struct passwd * ROKEN_LIB_CALL k_getpwuid (uid_t);
154
155 ROKEN_LIB_FUNCTION const char * ROKEN_LIB_CALL get_default_username (void);
156
157
158
159
160 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL mkstemp(char *);
161
162
163
164
165 #define rk_rename(__rk_rn_from,__rk_rn_to) rename(__rk_rn_from,__rk_rn_to)
166
167 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL daemon(int, int);
168
169
170
171
172
173
174
175
176
177
178
179
180
181 ROKEN_LIB_FUNCTION time_t ROKEN_LIB_CALL tm2time (struct tm, int);
182
183 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL unix_verify_user(char *, char *);
184
185 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL roken_concat (char *, size_t, ...);
186
187 ROKEN_LIB_FUNCTION size_t ROKEN_LIB_CALL roken_mconcat (char **, size_t, ...);
188
189 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL roken_vconcat (char *, size_t, va_list);
190
191 ROKEN_LIB_FUNCTION size_t ROKEN_LIB_CALL
192 roken_vmconcat (char **, size_t, va_list);
193
194 ROKEN_LIB_FUNCTION ssize_t ROKEN_LIB_CALL
195 net_write (rk_socket_t, const void *, size_t);
196
197 ROKEN_LIB_FUNCTION ssize_t ROKEN_LIB_CALL
198 net_read (rk_socket_t, void *, size_t);
199
200 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
201 issuid(void);
202
203
204 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL get_window_size(int fd, int *, int *);
205
206
207
208
209 #define getipnodebyname rk_getipnodebyname
210 ROKEN_LIB_FUNCTION struct hostent * ROKEN_LIB_CALL
211 getipnodebyname (const char *, int, int, int *);
212
213 #define getipnodebyaddr rk_getipnodebyaddr
214 ROKEN_LIB_FUNCTION struct hostent * ROKEN_LIB_CALL
215 getipnodebyaddr (const void *, size_t, int, int *);
216
217 #define freehostent rk_freehostent
218 ROKEN_LIB_FUNCTION void ROKEN_LIB_CALL
219 freehostent (struct hostent *);
220
221 #define copyhostent rk_copyhostent
222 ROKEN_LIB_FUNCTION struct hostent * ROKEN_LIB_CALL
223 copyhostent (const struct hostent *);
224
225
226
227
228
229
230
231
232
233 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
234 getnameinfo_verified(const struct sockaddr *, socklen_t,
235 char *, size_t,
236 char *, size_t,
237 int);
238
239 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
240 roken_getaddrinfo_hostspec(const char *, int, struct addrinfo **);
241 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
242 roken_getaddrinfo_hostspec2(const char *, int, int, struct addrinfo **);
243
244
245
246
247 #define emalloc rk_emalloc
248 ROKEN_LIB_FUNCTION void * ROKEN_LIB_CALL emalloc (size_t);
249 #define ecalloc rk_ecalloc
250 ROKEN_LIB_FUNCTION void * ROKEN_LIB_CALL ecalloc(size_t, size_t);
251 #define erealloc rk_erealloc
252 ROKEN_LIB_FUNCTION void * ROKEN_LIB_CALL erealloc (void *, size_t);
253 #define estrdup rk_estrdup
254 ROKEN_LIB_FUNCTION char * ROKEN_LIB_CALL estrdup (const char *);
255
256 /*
257 * kludges and such
258 */
259
260 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
261 roken_gethostby_setup(const char*, const char*);
262 ROKEN_LIB_FUNCTION struct hostent* ROKEN_LIB_CALL
263 roken_gethostbyname(const char*);
264 ROKEN_LIB_FUNCTION struct hostent* ROKEN_LIB_CALL
265 roken_gethostbyaddr(const void*, size_t, int);
266
267 #define roken_getservbyname(x,y) getservbyname(x,y)
268
269 #define roken_openlog(a,b,c) openlog(a,b,c)
270
271 #define roken_getsockname(a,b,c) getsockname(a,b,c)
272
273
274
275
276 ROKEN_LIB_FUNCTION void ROKEN_LIB_CALL
277 mini_inetd_addrinfo (struct addrinfo*, rk_socket_t *);
278
279 ROKEN_LIB_FUNCTION void ROKEN_LIB_CALL
280 mini_inetd (int, rk_socket_t *);
281
282
283
284
285
286
287
288
289
290
291
292
293
294 #ifdef HAVE_NBTOOL_CONFIG_H
295 #define rk_random() 0
296 #else
297 #define rk_random() arc4random()
298 #endif
299
300
301
302
303 ROKEN_CPP_END
304
305 #endif /* __ROKEN_H__ */
306