udhcp: logging improvements, field and variable renames
[oweals/busybox.git] / networking / udhcp / dhcpd.h
1 /* vi: set sw=4 ts=4: */
2 /* dhcpd.h */
3 #ifndef UDHCP_DHCPD_H
4 #define UDHCP_DHCPD_H 1
5
6 PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
7
8 /************************************/
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 */
14 #define LEASES_FILE             CONFIG_DHCPD_LEASES_FILE
15
16 /* where to find the DHCP server configuration file */
17 #define DHCPD_CONF_FILE         "/etc/udhcpd.conf"
18
19 struct option_set {
20         uint8_t *data;
21         struct option_set *next;
22 };
23
24 struct static_lease {
25         struct static_lease *next;
26         uint32_t nip;
27         uint8_t mac[6];
28 };
29
30 struct server_config_t {
31         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;
40 #if ENABLE_FEATURE_UDHCP_PORT
41         uint16_t port;
42 #endif
43         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 */
45         int verbose;
46         /* start,end are in host order: we need to compare start <= ip <= end */
47         uint32_t start_ip;              /* start address of leases, in host order */
48         uint32_t end_ip;                /* end of leases, in host order */
49         uint32_t max_lease_sec;         /* maximum lease time (host order) */
50         uint32_t min_lease_sec;         /* minimum lease time a client can request */
51         uint32_t max_leases;            /* maximum number of leases (including reserved addresses) */
52         uint32_t auto_time;             /* how long should udhcpd wait before writing a config file.
53                                          * if this is zero, it will only write one on SIGUSR1 */
54         uint32_t decline_time;          /* how long an address is reserved if a client returns a
55                                          * decline message */
56         uint32_t conflict_time;         /* how long an arp conflict offender is leased for */
57         uint32_t offer_time;            /* how long an offered address is reserved */
58         uint32_t siaddr_nip;            /* "next server" bootp option */
59         char *lease_file;
60         char *pidfile;
61         char *notify_file;              /* what to run whenever leases are written */
62         char *sname;                    /* bootp server name */
63         char *boot_file;                /* bootp boot file option */
64         struct static_lease *static_leases; /* List of ip/mac pairs to assign static leases */
65 };
66
67 #define server_config (*(struct server_config_t*)&bb_common_bufsiz1)
68 /* 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
75
76
77 /*** leases.h ***/
78
79 typedef uint32_t leasetime_t;
80 typedef int32_t signed_leasetime_t;
81
82 struct dyn_lease {
83         /* "nip": IP in network order */
84         /* Unix time when lease expires. Kept in memory in host order.
85          * When written to file, converted to network order
86          * and adjusted (current time subtracted) */
87         leasetime_t expires;
88         uint32_t lease_nip;
89         /* We use lease_mac[6], since e.g. ARP probing uses
90          * only 6 first bytes anyway. We check received dhcp packets
91          * that their hlen == 6 and thus chaddr has only 6 significant bytes
92          * (dhcp packet has chaddr[16], not [6])
93          */
94         uint8_t lease_mac[6];
95         uint8_t hostname[20];
96         uint8_t pad[2];
97         /* total size is a multiply of 4 */
98 } PACKED;
99
100 extern struct dyn_lease *g_leases;
101
102 struct dyn_lease *add_lease(
103                 const uint8_t *chaddr, uint32_t yiaddr,
104                 leasetime_t leasetime, uint8_t *hostname
105                 ) FAST_FUNC;
106 int is_expired_lease(struct dyn_lease *lease) FAST_FUNC;
107 struct dyn_lease *find_lease_by_mac(const uint8_t *mac) FAST_FUNC;
108 struct dyn_lease *find_lease_by_nip(uint32_t nip) FAST_FUNC;
109 uint32_t find_free_or_expired_nip(const uint8_t *safe_mac) FAST_FUNC;
110
111
112 /*** static_leases.h ***/
113
114 /* Config file parser will pass static lease info to this function
115  * which will add it to a data structure that can be searched later */
116 void add_static_lease(struct static_lease **st_lease_pp, uint8_t *mac, uint32_t nip) FAST_FUNC;
117 /* Find static lease IP by mac */
118 uint32_t get_static_nip_by_mac(struct static_lease *st_lease, void *arg) FAST_FUNC;
119 /* Check to see if an IP is reserved as a static IP */
120 int is_nip_reserved(struct static_lease *st_lease, uint32_t nip) FAST_FUNC;
121 /* Print out static leases just to check what's going on (debug code) */
122 void print_static_leases(struct static_lease **st_lease_pp) FAST_FUNC;
123
124
125 /*** serverpacket.h ***/
126
127 int send_offer(struct dhcp_packet *oldpacket) FAST_FUNC;
128 int send_NAK(struct dhcp_packet *oldpacket) FAST_FUNC;
129 int send_ACK(struct dhcp_packet *oldpacket, uint32_t yiaddr) FAST_FUNC;
130 int send_inform(struct dhcp_packet *oldpacket) FAST_FUNC;
131
132
133 /*** files.h ***/
134
135 void read_config(const char *file) FAST_FUNC;
136 void write_leases(void) FAST_FUNC;
137 void read_leases(const char *file) FAST_FUNC;
138 struct option_set *find_option(struct option_set *opt_list, uint8_t code) FAST_FUNC;
139
140
141 POP_SAVED_FUNCTION_VISIBILITY
142
143 #endif