dhcpd.h 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Licensed under GPLv2, see file LICENSE in this source tree.
  4. */
  5. #ifndef UDHCP_DHCPD_H
  6. #define UDHCP_DHCPD_H 1
  7. PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
  8. /* Defaults you may want to tweak */
  9. /* Default max_lease_sec */
  10. #define DEFAULT_LEASE_TIME (60*60*24 * 10)
  11. #define LEASES_FILE CONFIG_DHCPD_LEASES_FILE
  12. /* Where to find the DHCP server configuration file */
  13. #define DHCPD_CONF_FILE "/etc/udhcpd.conf"
  14. struct static_lease;
  15. struct server_data_t {
  16. char *interface; /* interface to use */
  17. //TODO: ifindex, server_nip, server_mac
  18. // are obtained from interface name.
  19. // Instead of querying them *once*, create update_server_network_data_cache()
  20. // and call it before any usage of these fields.
  21. // update_server_network_data_cache() must re-query data
  22. // if more than N seconds have passed after last use.
  23. int ifindex;
  24. uint32_t server_nip;
  25. #if ENABLE_FEATURE_UDHCP_PORT
  26. uint16_t port;
  27. #endif
  28. uint8_t server_mac[6]; /* our MAC address (used only for ARP probing) */
  29. struct option_set *options; /* list of DHCP options loaded from the config file */
  30. /* start,end are in host order: we need to compare start <= ip <= end */
  31. uint32_t start_ip; /* start address of leases, in host order */
  32. uint32_t end_ip; /* end of leases, in host order */
  33. uint32_t max_lease_sec; /* maximum lease time (host order) */
  34. uint32_t min_lease_sec; /* minimum lease time a client can request */
  35. uint32_t max_leases; /* maximum number of leases (including reserved addresses) */
  36. uint32_t auto_time; /* how long should udhcpd wait before writing a config file.
  37. * if this is zero, it will only write one on SIGUSR1 */
  38. uint32_t decline_time; /* how long an address is reserved if a client returns a
  39. * decline message */
  40. uint32_t conflict_time; /* how long an arp conflict offender is leased for */
  41. uint32_t offer_time; /* how long an offered address is reserved */
  42. uint32_t siaddr_nip; /* "next server" bootp option */
  43. char *lease_file;
  44. char *pidfile;
  45. char *notify_file; /* what to run whenever leases are written */
  46. char *sname; /* bootp server name */
  47. char *boot_file; /* bootp boot file option */
  48. struct static_lease *static_leases; /* List of ip/mac pairs to assign static leases */
  49. } FIX_ALIASING;
  50. #define server_data (*(struct server_data_t*)bb_common_bufsiz1)
  51. /* client_data sits in 2nd half of bb_common_bufsiz1 */
  52. #if ENABLE_FEATURE_UDHCP_PORT
  53. #define SERVER_PORT (server_data.port)
  54. #define SERVER_PORT6 (server_data.port)
  55. #else
  56. #define SERVER_PORT 67
  57. #define SERVER_PORT6 547
  58. #endif
  59. typedef uint32_t leasetime_t;
  60. typedef int32_t signed_leasetime_t;
  61. struct dyn_lease {
  62. /* Unix time when lease expires. Kept in memory in host order.
  63. * When written to file, converted to network order
  64. * and adjusted (current time subtracted) */
  65. leasetime_t expires;
  66. /* "nip": IP in network order */
  67. uint32_t lease_nip;
  68. /* We use lease_mac[6], since e.g. ARP probing uses
  69. * only 6 first bytes anyway. We check received dhcp packets
  70. * that their hlen == 6 and thus chaddr has only 6 significant bytes
  71. * (dhcp packet has chaddr[16], not [6])
  72. */
  73. uint8_t lease_mac[6];
  74. char hostname[20];
  75. uint8_t pad[2];
  76. /* total size is a multiply of 4 */
  77. } PACKED;
  78. POP_SAVED_FUNCTION_VISIBILITY
  79. #endif