"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 2 | /* dhcpd.h */ |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 3 | #ifndef UDHCP_DHCPD_H |
| 4 | #define UDHCP_DHCPD_H 1 |
Denis Vlasenko | d55fe3e | 2008-02-04 13:12:16 +0000 | [diff] [blame] | 5 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 6 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 7 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 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 */ |
Denis Vlasenko | 84da0bf | 2008-02-20 22:29:52 +0000 | [diff] [blame] | 14 | #define LEASES_FILE CONFIG_DHCPD_LEASES_FILE |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 15 | |
| 16 | /* where to find the DHCP server configuration file */ |
| 17 | #define DHCPD_CONF_FILE "/etc/udhcpd.conf" |
| 18 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 19 | struct option_set { |
| 20 | uint8_t *data; |
| 21 | struct option_set *next; |
| 22 | }; |
| 23 | |
| 24 | struct static_lease { |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 25 | struct static_lease *next; |
Denys Vlasenko | cab3a01 | 2009-06-16 12:03:12 +0200 | [diff] [blame] | 26 | uint32_t nip; |
Denis Vlasenko | 0416e3d | 2009-01-01 17:52:09 +0000 | [diff] [blame] | 27 | uint8_t mac[6]; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | struct server_config_t { |
Denys Vlasenko | 26918dd | 2009-06-16 12:04:23 +0200 | [diff] [blame] | 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; |
Denis Vlasenko | b386c1c | 2008-02-04 13:23:53 +0000 | [diff] [blame] | 40 | #if ENABLE_FEATURE_UDHCP_PORT |
Denis Vlasenko | d55fe3e | 2008-02-04 13:12:16 +0000 | [diff] [blame] | 41 | uint16_t port; |
Denis Vlasenko | b386c1c | 2008-02-04 13:23:53 +0000 | [diff] [blame] | 42 | #endif |
Denys Vlasenko | 26918dd | 2009-06-16 12:04:23 +0200 | [diff] [blame] | 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 */ |
Denis Vlasenko | c82b510 | 2007-07-01 17:05:57 +0000 | [diff] [blame] | 45 | /* start,end are in host order: we need to compare start <= ip <= end */ |
Denys Vlasenko | 26918dd | 2009-06-16 12:04:23 +0200 | [diff] [blame] | 46 | uint32_t start_ip; /* start address of leases, in host order */ |
| 47 | uint32_t end_ip; /* end of leases, in host order */ |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 48 | uint32_t lease; /* lease time in seconds (host order) */ |
| 49 | uint32_t max_leases; /* maximum number of leases (including reserved address) */ |
| 50 | uint32_t auto_time; /* how long should udhcpd wait before writing a config file. |
| 51 | * if this is zero, it will only write one on SIGUSR1 */ |
| 52 | uint32_t decline_time; /* how long an address is reserved if a client returns a |
| 53 | * decline message */ |
| 54 | uint32_t conflict_time; /* how long an arp conflict offender is leased for */ |
| 55 | uint32_t offer_time; /* how long an offered address is reserved */ |
Denis Vlasenko | 0416e3d | 2009-01-01 17:52:09 +0000 | [diff] [blame] | 56 | uint32_t min_lease; /* minimum lease time a client can request */ |
Denys Vlasenko | 26918dd | 2009-06-16 12:04:23 +0200 | [diff] [blame] | 57 | uint32_t siaddr_nip; /* "next server" bootp option */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 58 | char *lease_file; |
| 59 | char *pidfile; |
Denys Vlasenko | 26918dd | 2009-06-16 12:04:23 +0200 | [diff] [blame] | 60 | char *notify_file; /* what to run whenever leases are written */ |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 61 | char *sname; /* bootp server name */ |
| 62 | char *boot_file; /* bootp boot file option */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 63 | struct static_lease *static_leases; /* List of ip/mac pairs to assign static leases */ |
| 64 | }; |
| 65 | |
Denis Vlasenko | deabacd | 2007-09-30 17:55:43 +0000 | [diff] [blame] | 66 | #define server_config (*(struct server_config_t*)&bb_common_bufsiz1) |
Denis Vlasenko | d55fe3e | 2008-02-04 13:12:16 +0000 | [diff] [blame] | 67 | /* client_config sits in 2nd half of bb_common_bufsiz1 */ |
| 68 | |
| 69 | #if ENABLE_FEATURE_UDHCP_PORT |
| 70 | #define SERVER_PORT (server_config.port) |
| 71 | #else |
| 72 | #define SERVER_PORT 67 |
| 73 | #endif |
Denis Vlasenko | deabacd | 2007-09-30 17:55:43 +0000 | [diff] [blame] | 74 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 75 | |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 76 | /*** leases.h ***/ |
| 77 | |
Denis Vlasenko | 0416e3d | 2009-01-01 17:52:09 +0000 | [diff] [blame] | 78 | typedef uint32_t leasetime_t; |
| 79 | typedef int32_t signed_leasetime_t; |
| 80 | |
Denys Vlasenko | ed8982b | 2009-06-16 12:05:21 +0200 | [diff] [blame^] | 81 | //TODO: (1) rename to dyn_lease (that's what it is. we also have static_lease). |
| 82 | //(2) lease_mac16 may be shortened to lease_mac[6], since e.g. ARP probing uses |
| 83 | //only 6 first bytes anyway. We can check received dhcp packets |
| 84 | //that their "chaddr"s have only 6 first bytes != 0, and complain otherwise. |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 85 | struct dhcpOfferedAddr { |
Denys Vlasenko | 1d924f5 | 2009-06-16 10:23:01 +0200 | [diff] [blame] | 86 | uint8_t lease_mac16[16]; |
| 87 | /* "nip": IP in network order */ |
| 88 | uint32_t lease_nip; |
Denys Vlasenko | 56f2d06 | 2009-06-16 10:25:35 +0200 | [diff] [blame] | 89 | /* Unix time when lease expires. Kept in memory in host order. |
Denis Vlasenko | 0416e3d | 2009-01-01 17:52:09 +0000 | [diff] [blame] | 90 | * When written to file, converted to network order |
Denys Vlasenko | 56f2d06 | 2009-06-16 10:25:35 +0200 | [diff] [blame] | 91 | * and adjusted (current time subtracted) */ |
Denis Vlasenko | 0416e3d | 2009-01-01 17:52:09 +0000 | [diff] [blame] | 92 | leasetime_t expires; |
Denis Vlasenko | bd79c3d | 2009-04-01 12:36:09 +0000 | [diff] [blame] | 93 | uint8_t hostname[20]; /* (size is a multiply of 4) */ |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 94 | }; |
| 95 | |
Denis Vlasenko | bd79c3d | 2009-04-01 12:36:09 +0000 | [diff] [blame] | 96 | extern struct dhcpOfferedAddr *leases; |
| 97 | |
| 98 | struct dhcpOfferedAddr *add_lease( |
| 99 | const uint8_t *chaddr, uint32_t yiaddr, |
| 100 | leasetime_t leasetime, uint8_t *hostname |
| 101 | ) FAST_FUNC; |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 102 | int lease_expired(struct dhcpOfferedAddr *lease) FAST_FUNC; |
| 103 | struct dhcpOfferedAddr *find_lease_by_chaddr(const uint8_t *chaddr) FAST_FUNC; |
| 104 | struct dhcpOfferedAddr *find_lease_by_yiaddr(uint32_t yiaddr) FAST_FUNC; |
Denys Vlasenko | 47f2d7e | 2009-06-16 10:20:27 +0200 | [diff] [blame] | 105 | uint32_t find_free_or_expired_address(const uint8_t *chaddr) FAST_FUNC; |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 106 | |
| 107 | |
| 108 | /*** static_leases.h ***/ |
| 109 | |
Denys Vlasenko | cab3a01 | 2009-06-16 12:03:12 +0200 | [diff] [blame] | 110 | /* Config file parser will pass static lease info to this function |
| 111 | * which will add it to a data structure that can be searched later */ |
| 112 | void add_static_lease(struct static_lease **st_lease_pp, uint8_t *mac, uint32_t nip) FAST_FUNC; |
| 113 | /* Find static lease IP by mac */ |
| 114 | uint32_t get_static_nip_by_mac(struct static_lease *st_lease, void *arg) FAST_FUNC; |
| 115 | /* Check to see if an IP is reserved as a static IP */ |
| 116 | int is_nip_reserved(struct static_lease *st_lease, uint32_t nip) FAST_FUNC; |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 117 | /* Print out static leases just to check what's going on (debug code) */ |
Denys Vlasenko | cab3a01 | 2009-06-16 12:03:12 +0200 | [diff] [blame] | 118 | void print_static_leases(struct static_lease **st_lease_pp) FAST_FUNC; |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 119 | |
| 120 | |
| 121 | /*** serverpacket.h ***/ |
| 122 | |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 123 | int send_offer(struct dhcpMessage *oldpacket) FAST_FUNC; |
| 124 | int send_NAK(struct dhcpMessage *oldpacket) FAST_FUNC; |
| 125 | int send_ACK(struct dhcpMessage *oldpacket, uint32_t yiaddr) FAST_FUNC; |
| 126 | int send_inform(struct dhcpMessage *oldpacket) FAST_FUNC; |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 127 | |
| 128 | |
| 129 | /*** files.h ***/ |
| 130 | |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 131 | void read_config(const char *file) FAST_FUNC; |
| 132 | void write_leases(void) FAST_FUNC; |
| 133 | void read_leases(const char *file) FAST_FUNC; |
| 134 | struct option_set *find_option(struct option_set *opt_list, uint8_t code) FAST_FUNC; |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 135 | |
| 136 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 137 | POP_SAVED_FUNCTION_VISIBILITY |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 138 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 139 | #endif |