1 /* $OpenBSD: dhcpd.h,v 1.66 2008/05/09 05:19:14 reyk Exp $ */
2 /* $DragonFly: src/sbin/dhclient/dhcpd.h,v 1.1 2008/08/30 16:07:58 hasso Exp $ */
5 * Copyright (c) 2004 Henning Brauer <henning@openbsd.org>
6 * Copyright (c) 1995, 1996, 1997, 1998, 1999
7 * The Internet Software Consortium. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
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.
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
36 * This software has been written for the Internet Software Consortium
37 * by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
38 * Enterprises. To learn more about the Internet Software Consortium,
39 * see ``http://www.vix.com/isc''. To learn more about Vixie
40 * Enterprises, see ``http://www.vix.com''.
43 #include <sys/socket.h>
44 #include <sys/sockio.h>
47 #include <sys/types.h>
50 #include <arpa/inet.h>
52 #include <net/if_dl.h>
53 #include <net/route.h>
54 #include <netinet/in.h>
73 #define REMOTE_PORT 67
86 struct string_list
*next
;
87 char string
[1]; /* Actually bigger. */
92 unsigned char iabuf
[16];
96 struct iaddrlist
*next
;
106 struct client_lease
{
107 struct client_lease
*next
;
108 time_t expiry
, renewal
, rebind
;
109 struct iaddr address
;
112 struct string_list
*medium
;
113 unsigned int is_static
: 1;
114 unsigned int is_bootp
: 1;
115 struct option_data options
[256];
118 /* Possible states in which the client can be. */
129 struct client_config
{
130 struct option_data defaults
[256];
136 } default_actions
[256];
138 struct option_data send_options
[256];
139 u_int8_t required_options
[256];
140 u_int8_t requested_options
[256];
141 int requested_option_count
;
143 time_t initial_interval
;
145 time_t retry_interval
;
146 time_t select_interval
;
147 time_t reboot_timeout
;
148 time_t backoff_cutoff
;
149 struct string_list
*media
;
151 enum { IGNORE
, ACCEPT
, PREFER
}
153 struct string_list
*medium
;
154 struct iaddrlist
*reject_list
;
157 struct client_state
{
158 struct client_lease
*active
;
159 struct client_lease
*new;
160 struct client_lease
*offered_leases
;
161 struct client_lease
*leases
;
162 struct client_lease
*alias
;
163 enum dhcp_state state
;
164 struct iaddr destination
;
167 time_t first_sending
;
169 struct string_list
*medium
;
170 struct dhcp_packet packet
;
172 struct iaddr requested_address
;
177 struct interface_info
{
178 struct hardware hw_address
;
179 struct in_addr primary_address
;
183 int ufdesc
; /* unicast */
196 struct timeout
*next
;
201 #define _PATH_DHCLIENT_CONF "/etc/dhclient.conf"
202 #define _PATH_DHCLIENT_DB "/var/db/dhclient.leases"
203 #define _PATH_DHCLIENT_SCRIPT "/sbin/dhclient-script"
204 #define DHCPD_LOG_FACILITY LOG_DAEMON
206 /* External definitions... */
208 extern struct interface_info
*ifi
;
209 extern struct client_state
*client
;
210 extern struct client_config
*config
;
213 int cons_options(unsigned char *, const int, struct option_data
*);
214 char *pretty_print_option(unsigned int, unsigned char *, int, int, int);
215 void do_packet(int, unsigned int, struct iaddr
, struct hardware
*);
218 extern int warnings_occurred
;
219 void error(char *, ...) __attribute__ ((__format__ (__printf__
, 1, 2)));
220 int warning(char *, ...) __attribute__ ((__format__ (__printf__
, 1, 2)));
221 int note(char *, ...) __attribute__ ((__format__ (__printf__
, 1, 2)));
222 int debug(char *, ...) __attribute__ ((__format__ (__printf__
, 1, 2)));
223 int parse_warn(char *, ...) __attribute__ ((__format__ (__printf__
, 1, 2)));
226 extern int lexline
, lexchar
;
227 extern char *token_line
, *tlname
;
228 void new_parse(char *);
229 int next_token(char **, FILE *);
230 int peek_token(char **, FILE *);
233 void skip_to_semi(FILE *);
234 int parse_semi(FILE *);
235 char *parse_string(FILE *);
236 int parse_ip_addr(FILE *, struct iaddr
*);
237 void parse_hardware_param(FILE *, struct hardware
*);
238 void parse_lease_time(FILE *, time_t *);
239 int parse_numeric_aggregate(FILE *, unsigned char *, int, int, int);
240 void convert_num(unsigned char *, char *, int, int);
241 time_t parse_date(FILE *);
244 int if_register_bpf(void);
245 void if_register_send(void);
246 void if_register_receive(void);
247 ssize_t
send_packet(struct in_addr
, struct sockaddr_in
*, struct hardware
*);
248 ssize_t
receive_packet(struct sockaddr_in
*, struct hardware
*);
251 void discover_interface(void);
252 void reinitialize_interface(void);
255 void add_timeout(time_t, void (*)(void));
256 void cancel_timeout(void (*)(void));
257 int interface_status(char *);
258 int interface_link_status(char *);
259 int interface_link_forceup(char *);
260 void interface_link_forcedown(char *);
263 extern const struct option dhcp_options
[256];
266 u_int32_t
getULong(unsigned char *);
267 int32_t getLong(unsigned char *);
268 u_int16_t
getUShort(unsigned char *);
269 int16_t getShort(unsigned char *);
270 void putULong(unsigned char *, u_int32_t
);
271 void putLong(unsigned char *, int32_t);
272 void putUShort(unsigned char *, unsigned int);
273 void putShort(unsigned char *, int);
276 struct iaddr
subnet_number(struct iaddr
, struct iaddr
);
277 struct iaddr
broadcast_addr(struct iaddr
, struct iaddr
);
278 int addr_eq(struct iaddr
, struct iaddr
);
279 char *piaddr(struct iaddr
);
282 extern char *path_dhclient_conf
;
283 extern char *path_dhclient_db
;
284 extern time_t cur_time
;
285 extern int log_perror
;
288 void dhcpoffer(struct iaddr
, struct option_data
*);
289 void dhcpack(struct iaddr
, struct option_data
*);
290 void dhcpnak(struct iaddr
, struct option_data
*);
292 void send_discover(void);
293 void send_request(void);
294 void send_decline(void);
296 void state_reboot(void);
297 void state_init(void);
298 void state_selecting(void);
299 void state_bound(void);
300 void state_panic(void);
302 void bind_lease(void);
304 void make_discover(struct client_lease
*);
305 void make_request(struct client_lease
*);
306 void make_decline(struct client_lease
*);
308 void free_client_lease(struct client_lease
*);
309 void rewrite_client_leases(void);
310 void write_client_lease(struct client_lease
*, int);
312 void priv_script_init(char *, char *);
313 void priv_script_write_params(char *, struct client_lease
*);
314 int priv_script_go(void);
316 void script_init(char *, struct string_list
*);
317 void script_write_params(char *, struct client_lease
*);
319 void script_set_env(const char *, const char *, const char *);
320 void script_flush_env(void);
321 int dhcp_option_ev_name(char *, size_t, const struct option
*);
323 struct client_lease
*packet_to_lease(struct option_data
*);
324 void go_daemon(void);
326 void routehandler(void);
329 void assemble_hw_header(unsigned char *, int *, struct hardware
*);
330 void assemble_udp_ip_header(unsigned char *, int *, u_int32_t
, u_int32_t
,
331 unsigned int, unsigned char *, int);
332 ssize_t
decode_hw_header(unsigned char *, int, struct hardware
*);
333 ssize_t
decode_udp_ip_header(unsigned char *, int, struct sockaddr_in
*,
334 unsigned char *, int);
337 int read_client_conf(void);
338 void read_client_leases(void);
339 void parse_client_statement(FILE *);
340 int parse_X(FILE *, u_int8_t
*, int);
341 int parse_option_list(FILE *, u_int8_t
*);
342 void parse_interface_declaration(FILE *);
343 void parse_client_lease_statement(FILE *, int);
344 void parse_client_lease_declaration(FILE *, struct client_lease
*);
345 int parse_option_decl(FILE *, struct option_data
*);
346 void parse_string_list(FILE *, struct string_list
**, int);
347 void parse_reject_statement(FILE *);