blob: 53cfad41fc9cc833620ca9f80e86dfa724e0d067 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Mike Frysinger7031f622006-05-08 03:20:50 +00002/* dhcpd.h */
Denis Vlasenkof81e8db2009-04-09 12:35:13 +00003#ifndef UDHCP_DHCPD_H
4#define UDHCP_DHCPD_H 1
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +00005
Denis Vlasenkof81e8db2009-04-09 12:35:13 +00006PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
Denis Vlasenko98636eb2008-05-09 17:59:34 +00007
Mike Frysinger7031f622006-05-08 03:20:50 +00008/************************************/
9/* Defaults _you_ may want to tweak */
10/************************************/
11
12/* the period of time the client is allowed to use that address */
13#define LEASE_TIME (60*60*24*10) /* 10 days of seconds */
Denis Vlasenko84da0bf2008-02-20 22:29:52 +000014#define LEASES_FILE CONFIG_DHCPD_LEASES_FILE
Mike Frysinger7031f622006-05-08 03:20:50 +000015
16/* where to find the DHCP server configuration file */
17#define DHCPD_CONF_FILE "/etc/udhcpd.conf"
18
Mike Frysinger7031f622006-05-08 03:20:50 +000019struct option_set {
20 uint8_t *data;
21 struct option_set *next;
22};
23
24struct static_lease {
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000025 struct static_lease *next;
Denys Vlasenkocab3a012009-06-16 12:03:12 +020026 uint32_t nip;
Denis Vlasenko0416e3d2009-01-01 17:52:09 +000027 uint8_t mac[6];
Mike Frysinger7031f622006-05-08 03:20:50 +000028};
29
30struct server_config_t {
Denys Vlasenko26918dd2009-06-16 12:04:23 +020031 char *interface; /* interface to use */
32//TODO: ifindex, server_nip, server_mac
33// are obtained from interface name.
34// Instead of querying them *once*, create update_server_network_data_cache()
35// and call it before any usage of these fields.
36// update_server_network_data_cache() must re-query data
37// if more than N seconds have passed after last use.
38 int ifindex;
39 uint32_t server_nip;
Denis Vlasenkob386c1c2008-02-04 13:23:53 +000040#if ENABLE_FEATURE_UDHCP_PORT
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +000041 uint16_t port;
Denis Vlasenkob386c1c2008-02-04 13:23:53 +000042#endif
Denys Vlasenko26918dd2009-06-16 12:04:23 +020043 uint8_t server_mac[6]; /* our MAC address (used only for ARP probing) */
44 struct option_set *options; /* list of DHCP options loaded from the config file */
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020045 int verbose;
Denis Vlasenkoc82b5102007-07-01 17:05:57 +000046 /* start,end are in host order: we need to compare start <= ip <= end */
Denys Vlasenko26918dd2009-06-16 12:04:23 +020047 uint32_t start_ip; /* start address of leases, in host order */
48 uint32_t end_ip; /* end of leases, in host order */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000049 uint32_t lease; /* lease time in seconds (host order) */
50 uint32_t max_leases; /* maximum number of leases (including reserved address) */
51 uint32_t auto_time; /* how long should udhcpd wait before writing a config file.
52 * if this is zero, it will only write one on SIGUSR1 */
53 uint32_t decline_time; /* how long an address is reserved if a client returns a
54 * decline message */
55 uint32_t conflict_time; /* how long an arp conflict offender is leased for */
56 uint32_t offer_time; /* how long an offered address is reserved */
Denis Vlasenko0416e3d2009-01-01 17:52:09 +000057 uint32_t min_lease; /* minimum lease time a client can request */
Denys Vlasenko26918dd2009-06-16 12:04:23 +020058 uint32_t siaddr_nip; /* "next server" bootp option */
Mike Frysinger7031f622006-05-08 03:20:50 +000059 char *lease_file;
60 char *pidfile;
Denys Vlasenko26918dd2009-06-16 12:04:23 +020061 char *notify_file; /* what to run whenever leases are written */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000062 char *sname; /* bootp server name */
63 char *boot_file; /* bootp boot file option */
Mike Frysinger7031f622006-05-08 03:20:50 +000064 struct static_lease *static_leases; /* List of ip/mac pairs to assign static leases */
65};
66
Denis Vlasenkodeabacd2007-09-30 17:55:43 +000067#define server_config (*(struct server_config_t*)&bb_common_bufsiz1)
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +000068/* client_config sits in 2nd half of bb_common_bufsiz1 */
69
70#if ENABLE_FEATURE_UDHCP_PORT
71#define SERVER_PORT (server_config.port)
72#else
73#define SERVER_PORT 67
74#endif
Denis Vlasenkodeabacd2007-09-30 17:55:43 +000075
Mike Frysinger7031f622006-05-08 03:20:50 +000076
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000077/*** leases.h ***/
78
Denis Vlasenko0416e3d2009-01-01 17:52:09 +000079typedef uint32_t leasetime_t;
80typedef int32_t signed_leasetime_t;
81
Denys Vlasenkoed8982b2009-06-16 12:05:21 +020082//TODO: (1) rename to dyn_lease (that's what it is. we also have static_lease).
83//(2) lease_mac16 may be shortened to lease_mac[6], since e.g. ARP probing uses
84//only 6 first bytes anyway. We can check received dhcp packets
85//that their "chaddr"s have only 6 first bytes != 0, and complain otherwise.
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000086struct dhcpOfferedAddr {
Denys Vlasenko1d924f52009-06-16 10:23:01 +020087 uint8_t lease_mac16[16];
88 /* "nip": IP in network order */
89 uint32_t lease_nip;
Denys Vlasenko56f2d062009-06-16 10:25:35 +020090 /* Unix time when lease expires. Kept in memory in host order.
Denis Vlasenko0416e3d2009-01-01 17:52:09 +000091 * When written to file, converted to network order
Denys Vlasenko56f2d062009-06-16 10:25:35 +020092 * and adjusted (current time subtracted) */
Denis Vlasenko0416e3d2009-01-01 17:52:09 +000093 leasetime_t expires;
Denis Vlasenkobd79c3d2009-04-01 12:36:09 +000094 uint8_t hostname[20]; /* (size is a multiply of 4) */
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000095};
96
Denis Vlasenkobd79c3d2009-04-01 12:36:09 +000097extern struct dhcpOfferedAddr *leases;
98
99struct dhcpOfferedAddr *add_lease(
100 const uint8_t *chaddr, uint32_t yiaddr,
101 leasetime_t leasetime, uint8_t *hostname
102 ) FAST_FUNC;
Denis Vlasenkof1980f62008-09-26 09:34:59 +0000103int lease_expired(struct dhcpOfferedAddr *lease) FAST_FUNC;
104struct dhcpOfferedAddr *find_lease_by_chaddr(const uint8_t *chaddr) FAST_FUNC;
105struct dhcpOfferedAddr *find_lease_by_yiaddr(uint32_t yiaddr) FAST_FUNC;
Denys Vlasenko47f2d7e2009-06-16 10:20:27 +0200106uint32_t find_free_or_expired_address(const uint8_t *chaddr) FAST_FUNC;
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000107
108
109/*** static_leases.h ***/
110
Denys Vlasenkocab3a012009-06-16 12:03:12 +0200111/* Config file parser will pass static lease info to this function
112 * which will add it to a data structure that can be searched later */
113void add_static_lease(struct static_lease **st_lease_pp, uint8_t *mac, uint32_t nip) FAST_FUNC;
114/* Find static lease IP by mac */
115uint32_t get_static_nip_by_mac(struct static_lease *st_lease, void *arg) FAST_FUNC;
116/* Check to see if an IP is reserved as a static IP */
117int is_nip_reserved(struct static_lease *st_lease, uint32_t nip) FAST_FUNC;
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000118/* Print out static leases just to check what's going on (debug code) */
Denys Vlasenkocab3a012009-06-16 12:03:12 +0200119void print_static_leases(struct static_lease **st_lease_pp) FAST_FUNC;
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000120
121
122/*** serverpacket.h ***/
123
Denis Vlasenkof1980f62008-09-26 09:34:59 +0000124int send_offer(struct dhcpMessage *oldpacket) FAST_FUNC;
125int send_NAK(struct dhcpMessage *oldpacket) FAST_FUNC;
126int send_ACK(struct dhcpMessage *oldpacket, uint32_t yiaddr) FAST_FUNC;
127int send_inform(struct dhcpMessage *oldpacket) FAST_FUNC;
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000128
129
130/*** files.h ***/
131
Denis Vlasenkof1980f62008-09-26 09:34:59 +0000132void read_config(const char *file) FAST_FUNC;
133void write_leases(void) FAST_FUNC;
134void read_leases(const char *file) FAST_FUNC;
135struct option_set *find_option(struct option_set *opt_list, uint8_t code) FAST_FUNC;
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000136
137
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000138POP_SAVED_FUNCTION_VISIBILITY
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000139
Mike Frysinger7031f622006-05-08 03:20:50 +0000140#endif