2 * dhcpcd - DHCP client daemon
3 * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 #include <sys/socket.h>
38 #include "if-options.h"
41 #define IF_SSIDSIZE 33
42 #define PROFILE_LEN 64
59 #define LINK_UNKNOWN 0
64 char profile
[PROFILE_LEN
];
65 struct if_options
*options
;
66 struct dhcp_message
*sent
;
67 struct dhcp_message
*offer
;
68 struct dhcp_message
*new;
69 struct dhcp_message
*old
;
70 struct dhcp_lease lease
;
85 char name
[IF_NAMESIZE
];
86 struct if_state
*state
;
90 unsigned char hwaddr
[HWADDR_LEN
];
96 char ssid
[IF_SSIDSIZE
];
101 size_t buffer_size
, buffer_len
, buffer_pos
;
102 unsigned char *buffer
;
108 char leasefile
[PATH_MAX
];
111 unsigned char *clientid
;
113 struct interface
*next
;
122 extern struct interface
*ifaces
;
124 struct interface
*find_interface(const char *);
125 int handle_args(struct fd_list
*, int, char **);
126 void handle_interface(int, const char *);
127 void handle_ifa(int, const char *,
128 struct in_addr
*, struct in_addr
*, struct in_addr
*);
129 void handle_exit_timeout(void *);
130 void start_interface(void *);
131 void start_discover(void *);
132 void start_request(void *);
133 void start_renew(void *);
134 void start_rebind(void *);
135 void start_reboot(struct interface
*);
136 void start_expire(void *);
137 void send_decline(struct interface
*);
138 void close_sockets(struct interface
*);
139 void drop_config(struct interface
*, const char *);
140 int select_profile(struct interface
*, const char *);