Initial import from FreeBSD RELENG_4:
[games.git] / contrib / isc-dhcp / includes / cf / freebsd.h
1 /* freebsd.h
2
3    System dependencies for FreeBSD... */
4
5 /*
6  * Copyright (c) 1996-1999 Internet Software Consortium.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. Neither the name of The Internet Software Consortium nor the names
19  *    of its contributors may be used to endorse or promote products derived
20  *    from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE INTERNET SOFTWARE CONSORTIUM AND
23  * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
24  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26  * DISCLAIMED.  IN NO EVENT SHALL THE INTERNET SOFTWARE CONSORTIUM OR
27  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
30  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
31  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
33  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  * This software has been written for the Internet Software Consortium
37  * by Ted Lemon in cooperation with Vixie Enterprises and Nominum, Inc.
38  * To learn more about the Internet Software Consortium, see
39  * ``http://www.isc.org/''.  To learn more about Vixie Enterprises,
40  * see ``http://www.vix.com''.   To learn more about Nominum, Inc., see
41  * ``http://www.nominum.com''.
42  *
43  * $FreeBSD: src/contrib/isc-dhcp/includes/cf/freebsd.h,v 1.3.4.2 2003/03/02 16:42:40 murray Exp $
44  */
45
46 #include <syslog.h>
47 #include <sys/types.h>
48 #include <string.h>
49 #include <paths.h>
50 #include <errno.h>
51 #include <unistd.h>
52 #include <setjmp.h>
53 #include <limits.h>
54
55 #include <sys/wait.h>
56 #include <signal.h>
57
58 extern int h_errno;
59
60 #include <net/if.h>
61 #include <net/if_dl.h>
62 #include <net/if_arp.h>
63 #if !defined (INADDR_LOOPBACK)
64 # define INADDR_LOOPBACK ((u_int32_t)0x7f000001)
65 #endif
66
67 /* Varargs stuff... */
68 #include <stdarg.h>
69 #define VA_DOTDOTDOT ...
70 #define va_dcl
71 #define VA_start(list, last) va_start (list, last)
72
73 #ifndef _PATH_DHCPD_PID
74 #define _PATH_DHCPD_PID "/var/run/dhcpd.pid"
75 #endif
76 #ifndef _PATH_DHCPD_DB
77 #define _PATH_DHCPD_DB  "/var/db/dhcpd.leases"
78 #endif
79 #ifndef _PATH_DHCLIENT_PID
80 #define _PATH_DHCLIENT_PID "/var/run/dhclient.pid"
81 #endif
82 #ifndef _PATH_DHCLIENT_DB
83 #define _PATH_DHCLIENT_DB "/var/db/dhclient.leases"
84 #endif
85
86 #define EOL     '\n'
87 #define VOIDPTR void *
88
89 /* Time stuff... */
90 #include <sys/time.h>
91 #define TIME time_t
92 #define GET_TIME(x)     time ((x))
93
94 #define HAVE_SA_LEN
95
96 /* socklen_t was first defined on November 24 in sys/socket.h, and
97    __FreeBSD_version was changed to 400013 on December 4, so if you
98    get a compile error on this, and you updated between those dates,
99    that's why.   Also, it may be that some 3.x version after 3.4 will
100    have socklen_t, but no such change has been made so far. */
101
102 #if  __FreeBSD_version < 400013
103 #define SOCKLEN_T int
104 #endif
105
106 #if defined (USE_DEFAULT_NETWORK)
107 #  define USE_BPF
108 #endif
109 #define HAVE_MKSTEMP
110 #ifdef NEED_PRAND_CONF
111 #ifndef HAVE_DEV_RANDOM
112  # define HAVE_DEV_RANDOM 1
113  #endif /* HAVE_DEV_RANDOM */
114
115 const char *cmds[] = {
116         "/bin/ps -axlw 2>&1",
117         "/usr/sbin/arp -an 2>&1",
118         "/usr/bin/netstat -an 2>&1",
119         "/bin/df  2>&1",
120         "/usr/bin/dig com. soa +ti=1 +retry=0 2>&1",
121         "/usr/bin/netstat -an 2>&1",
122         "/usr/bin/dig . soa +ti=1 +retry=0 2>&1",
123         "/usr/sbin/iostat  2>&1",
124         "/usr/bin/vmstat  2>&1",
125         "/usr/bin/w  2>&1",
126         NULL
127 };
128
129 const char *dirs[] = {
130         "/tmp",
131         "/usr/tmp",
132         ".",
133         "/",
134         "/var/spool",
135         "/dev",
136         "/var/mail",
137         "/home",
138         "/usr/home",
139         NULL
140 };
141
142 const char *files[] = {
143         "/var/log/messages",
144         "/var/log/wtmp",
145         "/var/log/lastlog",
146         NULL
147 };
148 #endif /* NEED_PRAND_CONF */