6 #include <sys/socket.h>
9 #if (!defined(BSD)) || (BSD < 199306)
10 #include <sys/bitypes.h>
12 #ifdef HAVE_INTTYPES_H
15 #ifdef HAVE_SYS_SELECT_H
16 #include <sys/select.h>
17 #endif /* HAVE_SYS_SELECT_H */
29 @HAVE_SOCKADDR_STORAGE@
40 * We need to know the IPv6 address family number even on IPv4-only systems.
41 * Note that this is NOT a protocol constant, and that if the system has its
42 * own AF_INET6, different from ours below, all of BIND's libraries and
43 * executables will need to be recompiled after the system <sys/socket.h>
44 * has had this type added. The type number below is correct on most BSD-
45 * derived systems for which AF_INET6 is defined.
52 #define PF_INET6 AF_INET6
56 /* Map to pre-RFC structure. */
57 #define in6_addr in_addr6
60 #ifndef HAS_INET6_STRUCTS
61 /* Replace with structure from later rev of O/S if known. */
66 #define IN6ADDR_ANY_INIT \
67 {{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
68 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }}
70 #define IN6ADDR_LOOPBACK_INIT \
71 {{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
72 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }}
74 /* Replace with structure from later rev of O/S if known. */
77 u_int8_t sin6_len
; /* length of this struct */
78 u_int8_t sin6_family
; /* AF_INET6 */
80 u_int16_t sin6_family
; /* AF_INET6 */
82 u_int16_t sin6_port
; /* transport layer port # */
83 u_int32_t sin6_flowinfo
; /* IPv6 flow information */
84 struct in6_addr sin6_addr
; /* IPv6 address */
85 u_int32_t sin6_scope_id
; /* set of interfaces for a scope */
87 #endif /* HAS_INET6_STRUCTS */
89 #ifdef BROKEN_IN6ADDR_INIT_MACROS
90 #undef IN6ADDR_ANY_INIT
91 #undef IN6ADDR_LOOPBACK_INIT
95 #ifndef IN6ADDR_ANY_INIT
96 #define IN6ADDR_ANY_INIT {{{ 0, 0, 0, 0 }}}
98 #ifndef IN6ADDR_LOOPBACK_INIT
99 #if BYTE_ORDER == BIG_ENDIAN
100 #define IN6ADDR_LOOPBACK_INIT {{{ 0, 0, 0, 1 }}}
102 #define IN6ADDR_LOOPBACK_INIT {{{0, 0, 0, 0x01000000}}}
107 #ifndef IN6ADDR_ANY_INIT
109 #define IN6ADDR_ANY_INIT \
110 {{{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
111 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }}}
113 #define IN6ADDR_ANY_INIT \
114 {{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
115 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }}
119 #ifndef IN6ADDR_LOOPBACK_INIT
121 #define IN6ADDR_LOOPBACK_INIT \
122 {{{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
123 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }}}
125 #define IN6ADDR_LOOPBACK_INIT \
126 {{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
127 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }}
131 #ifndef HAVE_SOCKADDR_STORAGE
132 #define __SS_MAXSIZE 128
133 #define __SS_ALLIGSIZE (sizeof (long))
135 struct sockaddr_storage
{
137 u_int8_t ss_len
; /* address length */
138 u_int8_t ss_family
; /* address family */
139 char __ss_pad1
[__SS_ALLIGSIZE
- 2 * sizeof(u_int8_t
)];
141 char __ss_pad2
[__SS_MAXSIZE
- 2 * __SS_ALLIGSIZE
];
143 u_int16_t ss_family
; /* address family */
144 char __ss_pad1
[__SS_ALLIGSIZE
- sizeof(u_int16_t
)];
146 char __ss_pad2
[__SS_MAXSIZE
- 2 * __SS_ALLIGSIZE
];
152 #if !defined(HAS_INET6_STRUCTS) || defined(NEED_IN6ADDR_ANY)
153 #define in6addr_any isc_in6addr_any
154 extern const struct in6_addr in6addr_any
;
158 * IN6_ARE_ADDR_EQUAL, IN6_IS_ADDR_UNSPECIFIED, IN6_IS_ADDR_V4COMPAT and
159 * IN6_IS_ADDR_V4MAPPED are broken in glibc 2.1.
162 #if __GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 2)
163 #undef IN6_ARE_ADDR_EQUAL
164 #undef IN6_IS_ADDR_UNSPECIFIED
165 #undef IN6_IS_ADDR_V4COMPAT
166 #undef IN6_IS_ADDR_V4MAPPED
170 #ifndef IN6_ARE_ADDR_EQUAL
171 #define IN6_ARE_ADDR_EQUAL(a,b) \
172 (memcmp(&(a)->s6_addr[0], &(b)->s6_addr[0], sizeof(struct in6_addr)) == 0)
175 #ifndef IN6_IS_ADDR_UNSPECIFIED
176 #define IN6_IS_ADDR_UNSPECIFIED(a) \
177 IN6_ARE_ADDR_EQUAL(a, &in6addr_any)
180 #ifndef IN6_IS_ADDR_LOOPBACK
181 extern const struct in6_addr isc_in6addr_loopback
;
182 #define IN6_IS_ADDR_LOOPBACK(a) \
183 IN6_ARE_ADDR_EQUAL(a, &isc_in6addr_loopback)
186 #ifndef IN6_IS_ADDR_V4MAPPED
187 #define IN6_IS_ADDR_V4MAPPED(a) \
188 ((a)->s6_addr[0] == 0x00 && (a)->s6_addr[1] == 0x00 && \
189 (a)->s6_addr[2] == 0x00 && (a)->s6_addr[3] == 0x00 && \
190 (a)->s6_addr[4] == 0x00 && (a)->s6_addr[5] == 0x00 && \
191 (a)->s6_addr[6] == 0x00 && (a)->s6_addr[9] == 0x00 && \
192 (a)->s6_addr[8] == 0x00 && (a)->s6_addr[9] == 0x00 && \
193 (a)->s6_addr[10] == 0xff && (a)->s6_addr[11] == 0xff)
196 #ifndef IN6_IS_ADDR_SITELOCAL
197 #define IN6_IS_ADDR_SITELOCAL(a) \
198 (((a)->s6_addr[0] == 0xfe) && (((a)->s6_addr[1] & 0xc0) == 0xc0))
201 #ifndef IN6_IS_ADDR_LINKLOCAL
202 #define IN6_IS_ADDR_LINKLOCAL(a) \
203 (((a)->s6_addr[0] == 0xfe) && (((a)->s6_addr[1] & 0xc0) == 0x80))
206 #ifndef IN6_IS_ADDR_MULTICAST
207 #define IN6_IS_ADDR_MULTICAST(a) ((a)->s6_addr[0] == 0xff)
210 #ifndef __IPV6_ADDR_MC_SCOPE
211 #define __IPV6_ADDR_MC_SCOPE(a) ((a)->s6_addr[1] & 0x0f)
214 #ifndef __IPV6_ADDR_SCOPE_SITELOCAL
215 #define __IPV6_ADDR_SCOPE_SITELOCAL 0x05
217 #ifndef __IPV6_ADDR_SCOPE_ORGLOCAL
218 #define __IPV6_ADDR_SCOPE_ORGLOCAL 0x08
221 #ifndef IN6_IS_ADDR_MC_SITELOCAL
222 #define IN6_IS_ADDR_MC_SITELOCAL(a) \
223 (IN6_IS_ADDR_MULTICAST(a) && \
224 (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_SITELOCAL))
227 #ifndef IN6_IS_ADDR_MC_ORGLOCAL
228 #define IN6_IS_ADDR_MC_ORGLOCAL(a) \
229 (IN6_IS_ADDR_MULTICAST(a) && \
230 (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_ORGLOCAL))
234 #define INADDR_NONE 0xffffffff
237 #ifndef MAXHOSTNAMELEN
238 #define MAXHOSTNAMELEN 256
241 #ifndef INET6_ADDRSTRLEN
242 /* sizeof("aaaa:bbbb:cccc:dddd:eeee:ffff:123.123.123.123") */
243 #define INET6_ADDRSTRLEN 46
247 #define MIN(x,y) (((x) <= (y)) ? (x) : (y))
251 #define MAX(x,y) (((x) >= (y)) ? (x) : (y))
255 int daemon(int nochdir
, int noclose
);
259 char * strsep(char **stringp
, const char *delim
);
263 #define ALIGN(p) (((uintptr_t)(p) + (sizeof(long) - 1)) & ~(sizeof(long) - 1))
266 #ifdef NEED_SETGROUPENT
267 int setgroupent(int stayopen
);
270 #ifdef NEED_GETGROUPLIST
271 int getgrouplist(GETGROUPLIST_ARGS
);
274 #ifdef POSIX_GETGRNAM_R
276 __posix_getgrnam_r(const char *, struct group
*, char *, int, struct group
**);
279 #ifdef NEED_GETGRNAM_R
281 getgrnam_r(const char *, struct group
*, char *, size_t, struct group
**);
284 #ifdef POSIX_GETGRGID_R
286 __posix_getgrgid_r(gid_t
, struct group
*, char *, int, struct group
**) ;
289 #ifdef NEED_GETGRGID_R
291 getgrgid_r(gid_t
, struct group
*, char *, size_t, struct group
**);
294 #ifdef NEED_GETGRENT_R
295 GROUP_R_RETURN
getgrent_r(struct group
*gptr
, GROUP_R_ARGS
);
298 #ifdef NEED_SETGRENT_R
299 GROUP_R_SET_RETURN
setgrent_r(GROUP_R_ENT_ARGS
);
302 #ifdef NEED_ENDGRENT_R
303 GROUP_R_END_RETURN
endgrent_r(GROUP_R_ENT_ARGS
);
306 #if defined(NEED_INNETGR_R) && defined(NGR_R_RETURN)
308 innetgr_r(const char *, const char *, const char *, const char *);
311 #ifdef NEED_SETNETGRENT_R
312 #ifdef NGR_R_ENT_ARGS
313 NGR_R_SET_RETURN
setnetgrent_r(const char *netgroup
, NGR_R_ENT_ARGS
);
315 NGR_R_SET_RETURN
setnetgrent_r(const char *netgroup
);
319 #ifdef NEED_ENDNETGRENT_R
320 #ifdef NGR_R_ENT_ARGS
321 NGR_R_END_RETURN
endnetgrent_r(NGR_R_ENT_ARGS
);
323 NGR_R_END_RETURN
endnetgrent_r(void);
327 #ifdef POSIX_GETPWNAM_R
329 __posix_getpwnam_r(const char *login
, struct passwd
*pwptr
,
330 char *buf
, size_t buflen
, struct passwd
**result
);
333 #ifdef NEED_GETPWNAM_R
335 getpwnam_r(const char *login
, struct passwd
*pwptr
,
336 char *buf
, size_t buflen
, struct passwd
**result
);
339 #ifdef POSIX_GETPWUID_R
341 __posix_getpwuid_r(uid_t uid
, struct passwd
*pwptr
,
342 char *buf
, int buflen
, struct passwd
**result
);
345 #ifdef NEED_GETPWUID_R
347 getpwuid_r(uid_t uid
, struct passwd
*pwptr
,
348 char *buf
, size_t buflen
, struct passwd
**result
);
351 #ifdef NEED_SETPWENT_R
352 #ifdef PASS_R_ENT_ARGS
353 PASS_R_SET_RETURN
setpwent_r(PASS_R_ENT_ARGS
);
355 PASS_R_SET_RETURN
setpwent_r(void);
360 #ifdef NEED_SETPASSENT_R
361 #ifdef PASS_R_ENT_ARGS
362 PASS_R_SET_RETURN
setpassent_r(int stayopen
, PASS_R_ENT_ARGS
);
364 PASS_R_SET_RETURN
setpassent_r(int stayopen
);
368 #ifdef NEED_GETPWENT_R
369 PASS_R_RETURN
getpwent_r(struct passwd
*pwptr
, PASS_R_ARGS
);
372 #ifdef NEED_ENDPWENT_R
373 void endpwent_r(void);
376 #ifdef NEED_SETPASSENT
377 int setpassent(int stayopen
);
380 #define gettimeofday isc__gettimeofday
381 #ifdef NEED_GETTIMEOFDAY
382 int isc__gettimeofday(struct timeval
*tvp
, struct _TIMEZONE
*tzp
);
384 int isc__gettimeofday(struct timeval
*tp
, struct timezone
*tzp
);
387 int getnetgrent(char **machinep
, char **userp
, char **domainp
);
390 int getnetgrent_r(char **machinep
, char **userp
, char **domainp
, NGR_R_ARGS
);
393 #ifdef SETNETGRENT_ARGS
394 void setnetgrent(SETNETGRENT_ARGS
);
396 void setnetgrent(const char *netgroup
);
399 void endnetgrent(void);
402 int innetgr(INNETGR_ARGS
);
404 int innetgr(const char *netgroup
, const char *machine
,
405 const char *user
, const char *domain
);
408 #ifdef NGR_R_ENT_ARGS
410 setnetgrent_r(const char *netgroup
, NGR_R_ENT_ARGS
);
413 setnetgrent_r(const char *netgroup
);