Merge branch 'vendor/BZIP'
[dragonfly.git] / sbin / dhclient / dhcpd.h
... / ...
CommitLineData
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 $ */
3
4/*
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.
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 <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''.
41 */
42
43#include <sys/socket.h>
44#include <sys/sockio.h>
45#include <sys/stat.h>
46#include <sys/time.h>
47#include <sys/types.h>
48#include <sys/wait.h>
49
50#include <arpa/inet.h>
51#include <net/if.h>
52#include <net/if_dl.h>
53#include <net/route.h>
54#include <netinet/in.h>
55
56#include <ctype.h>
57#include <errno.h>
58#include <fcntl.h>
59#include <limits.h>
60#include <netdb.h>
61#include <paths.h>
62#include <stdarg.h>
63#include <stdio.h>
64#include <stdlib.h>
65#include <string.h>
66#include <syslog.h>
67#include <time.h>
68#include <unistd.h>
69
70#include "dhcp.h"
71
72#define LOCAL_PORT 68
73#define REMOTE_PORT 67
74
75struct option {
76 char *name;
77 char *format;
78};
79
80struct option_data {
81 unsigned int len;
82 u_int8_t *data;
83};
84
85struct string_list {
86 struct string_list *next;
87 char string[1]; /* Actually bigger. */
88};
89
90struct iaddr {
91 int len;
92 unsigned char iabuf[16];
93};
94
95struct iaddrlist {
96 struct iaddrlist *next;
97 struct iaddr addr;
98};
99
100struct hardware {
101 u_int8_t htype;
102 u_int8_t hlen;
103 u_int8_t haddr[16];
104};
105
106struct client_lease {
107 struct client_lease *next;
108 time_t expiry, renewal, rebind;
109 struct iaddr address;
110 char *server_name;
111 char *filename;
112 struct string_list *medium;
113 unsigned int is_static : 1;
114 unsigned int is_bootp : 1;
115 struct option_data options[256];
116};
117
118/* Possible states in which the client can be. */
119enum dhcp_state {
120 S_REBOOTING,
121 S_INIT,
122 S_SELECTING,
123 S_REQUESTING,
124 S_BOUND,
125 S_RENEWING,
126 S_REBINDING
127};
128
129struct client_config {
130 struct option_data defaults[256];
131 enum {
132 ACTION_DEFAULT,
133 ACTION_SUPERSEDE,
134 ACTION_PREPEND,
135 ACTION_APPEND
136 } default_actions[256];
137
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;
142 time_t timeout;
143 time_t initial_interval;
144 time_t link_timeout;
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;
150 char *script_name;
151 enum { IGNORE, ACCEPT, PREFER }
152 bootp_policy;
153 struct string_list *medium;
154 struct iaddrlist *reject_list;
155};
156
157struct 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;
165 u_int32_t xid;
166 u_int16_t secs;
167 time_t first_sending;
168 time_t interval;
169 struct string_list *medium;
170 struct dhcp_packet packet;
171 int packet_length;
172 struct iaddr requested_address;
173 char **scriptEnv;
174 int scriptEnvsize;
175};
176
177struct interface_info {
178 struct hardware hw_address;
179 struct in_addr primary_address;
180 char name[IFNAMSIZ];
181 int rfdesc;
182 int wfdesc;
183 int ufdesc; /* unicast */
184 unsigned char *rbuf;
185 size_t rbuf_max;
186 size_t rbuf_offset;
187 size_t rbuf_len;
188 struct ifreq *ifp;
189 int noifmedia;
190 int errors;
191 u_int16_t index;
192 int linkstat;
193};
194
195struct timeout {
196 struct timeout *next;
197 time_t when;
198 void (*func)(void);
199};
200
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
205
206/* External definitions... */
207
208extern struct interface_info *ifi;
209extern struct client_state *client;
210extern struct client_config *config;
211
212/* options.c */
213int cons_options(unsigned char *, const int, struct option_data *);
214char *pretty_print_option(unsigned int, unsigned char *, int, int, int);
215void do_packet(int, unsigned int, struct iaddr, struct hardware *);
216
217/* errwarn.c */
218extern int warnings_occurred;
219void error(char *, ...) __attribute__ ((__format__ (__printf__, 1, 2)));
220int warning(char *, ...) __attribute__ ((__format__ (__printf__, 1, 2)));
221int note(char *, ...) __attribute__ ((__format__ (__printf__, 1, 2)));
222int debug(char *, ...) __attribute__ ((__format__ (__printf__, 1, 2)));
223int parse_warn(char *, ...) __attribute__ ((__format__ (__printf__, 1, 2)));
224
225/* conflex.c */
226extern int lexline, lexchar;
227extern char *token_line, *tlname;
228void new_parse(char *);
229int next_token(char **, FILE *);
230int peek_token(char **, FILE *);
231
232/* parse.c */
233void skip_to_semi(FILE *);
234int parse_semi(FILE *);
235char *parse_string(FILE *);
236int parse_ip_addr(FILE *, struct iaddr *);
237void parse_hardware_param(FILE *, struct hardware *);
238void parse_lease_time(FILE *, time_t *);
239int parse_numeric_aggregate(FILE *, unsigned char *, int, int, int);
240void convert_num(unsigned char *, char *, int, int);
241time_t parse_date(FILE *);
242
243/* bpf.c */
244int if_register_bpf(void);
245void if_register_send(void);
246void if_register_receive(void);
247ssize_t send_packet(struct in_addr, struct sockaddr_in *, struct hardware *);
248ssize_t receive_packet(struct sockaddr_in *, struct hardware *);
249
250/* dispatch.c */
251void discover_interface(void);
252void reinitialize_interface(void);
253void dispatch(void);
254void got_one(void);
255void add_timeout(time_t, void (*)(void));
256void cancel_timeout(void (*)(void));
257int interface_status(char *);
258int interface_link_status(char *);
259int interface_link_forceup(char *);
260void interface_link_forcedown(char *);
261
262/* tables.c */
263extern const struct option dhcp_options[256];
264
265/* convert.c */
266u_int32_t getULong(unsigned char *);
267int32_t getLong(unsigned char *);
268u_int16_t getUShort(unsigned char *);
269int16_t getShort(unsigned char *);
270void putULong(unsigned char *, u_int32_t);
271void putLong(unsigned char *, int32_t);
272void putUShort(unsigned char *, unsigned int);
273void putShort(unsigned char *, int);
274
275/* inet.c */
276struct iaddr subnet_number(struct iaddr, struct iaddr);
277struct iaddr broadcast_addr(struct iaddr, struct iaddr);
278int addr_eq(struct iaddr, struct iaddr);
279char *piaddr(struct iaddr);
280
281/* dhclient.c */
282extern char *path_dhclient_conf;
283extern char *path_dhclient_db;
284extern time_t cur_time;
285extern int log_perror;
286extern int routefd;
287
288void dhcpoffer(struct iaddr, struct option_data *);
289void dhcpack(struct iaddr, struct option_data *);
290void dhcpnak(struct iaddr, struct option_data *);
291
292void send_discover(void);
293void send_request(void);
294void send_decline(void);
295
296void state_reboot(void);
297void state_init(void);
298void state_selecting(void);
299void state_bound(void);
300void state_panic(void);
301
302void bind_lease(void);
303
304void make_discover(struct client_lease *);
305void make_request(struct client_lease *);
306void make_decline(struct client_lease *);
307
308void free_client_lease(struct client_lease *);
309void rewrite_client_leases(void);
310void write_client_lease(struct client_lease *, int);
311
312void priv_script_init(char *, char *);
313void priv_script_write_params(char *, struct client_lease *);
314int priv_script_go(void);
315
316void script_init(char *, struct string_list *);
317void script_write_params(char *, struct client_lease *);
318int script_go(void);
319void script_set_env(const char *, const char *, const char *);
320void script_flush_env(void);
321int dhcp_option_ev_name(char *, size_t, const struct option *);
322
323struct client_lease *packet_to_lease(struct option_data *);
324void go_daemon(void);
325
326void routehandler(void);
327
328/* packet.c */
329void assemble_hw_header(unsigned char *, int *, struct hardware *);
330void assemble_udp_ip_header(unsigned char *, int *, u_int32_t, u_int32_t,
331 unsigned int, unsigned char *, int);
332ssize_t decode_hw_header(unsigned char *, int, struct hardware *);
333ssize_t decode_udp_ip_header(unsigned char *, int, struct sockaddr_in *,
334 unsigned char *, int);
335
336/* clparse.c */
337int read_client_conf(void);
338void read_client_leases(void);
339void parse_client_statement(FILE *);
340int parse_X(FILE *, u_int8_t *, int);
341int parse_option_list(FILE *, u_int8_t *);
342void parse_interface_declaration(FILE *);
343void parse_client_lease_statement(FILE *, int);
344void parse_client_lease_declaration(FILE *, struct client_lease *);
345int parse_option_decl(FILE *, struct option_data *);
346void parse_string_list(FILE *, struct string_list **, int);
347void parse_reject_statement(FILE *);