dhcpd.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /* vi: set sw=4 ts=4: */
  2. /* dhcpd.h */
  3. #ifndef UDHCP_DHCPD_H
  4. #define UDHCP_DHCPD_H 1
  5. PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
  6. /* Defaults you may want to tweak */
  7. /* Default max_lease_sec */
  8. #define LEASE_TIME (60*60*24 * 10)
  9. #define LEASES_FILE CONFIG_DHCPD_LEASES_FILE
  10. /* Where to find the DHCP server configuration file */
  11. #define DHCPD_CONF_FILE "/etc/udhcpd.conf"
  12. struct option_set {
  13. uint8_t *data;
  14. struct option_set *next;
  15. };
  16. struct static_lease {
  17. struct static_lease *next;
  18. uint32_t nip;
  19. uint8_t mac[6];
  20. };
  21. struct server_config_t {
  22. char *interface; /* interface to use */
  23. //TODO: ifindex, server_nip, server_mac
  24. // are obtained from interface name.
  25. // Instead of querying them *once*, create update_server_network_data_cache()
  26. // and call it before any usage of these fields.
  27. // update_server_network_data_cache() must re-query data
  28. // if more than N seconds have passed after last use.
  29. int ifindex;
  30. uint32_t server_nip;
  31. #if ENABLE_FEATURE_UDHCP_PORT
  32. uint16_t port;
  33. #endif
  34. uint8_t server_mac[6]; /* our MAC address (used only for ARP probing) */
  35. struct option_set *options; /* list of DHCP options loaded from the config file */
  36. int verbose;
  37. /* start,end are in host order: we need to compare start <= ip <= end */
  38. uint32_t start_ip; /* start address of leases, in host order */
  39. uint32_t end_ip; /* end of leases, in host order */
  40. uint32_t max_lease_sec; /* maximum lease time (host order) */
  41. uint32_t min_lease_sec; /* minimum lease time a client can request */
  42. uint32_t max_leases; /* maximum number of leases (including reserved addresses) */
  43. uint32_t auto_time; /* how long should udhcpd wait before writing a config file.
  44. * if this is zero, it will only write one on SIGUSR1 */
  45. uint32_t decline_time; /* how long an address is reserved if a client returns a
  46. * decline message */
  47. uint32_t conflict_time; /* how long an arp conflict offender is leased for */
  48. uint32_t offer_time; /* how long an offered address is reserved */
  49. uint32_t siaddr_nip; /* "next server" bootp option */
  50. char *lease_file;
  51. char *pidfile;
  52. char *notify_file; /* what to run whenever leases are written */
  53. char *sname; /* bootp server name */
  54. char *boot_file; /* bootp boot file option */
  55. struct static_lease *static_leases; /* List of ip/mac pairs to assign static leases */
  56. };
  57. #define server_config (*(struct server_config_t*)&bb_common_bufsiz1)
  58. /* client_config sits in 2nd half of bb_common_bufsiz1 */
  59. #if ENABLE_FEATURE_UDHCP_PORT
  60. #define SERVER_PORT (server_config.port)
  61. #else
  62. #define SERVER_PORT 67
  63. #endif
  64. /*** leases.h ***/
  65. typedef uint32_t leasetime_t;
  66. typedef int32_t signed_leasetime_t;
  67. struct dyn_lease {
  68. /* "nip": IP in network order */
  69. /* Unix time when lease expires. Kept in memory in host order.
  70. * When written to file, converted to network order
  71. * and adjusted (current time subtracted) */
  72. leasetime_t expires;
  73. uint32_t lease_nip;
  74. /* We use lease_mac[6], since e.g. ARP probing uses
  75. * only 6 first bytes anyway. We check received dhcp packets
  76. * that their hlen == 6 and thus chaddr has only 6 significant bytes
  77. * (dhcp packet has chaddr[16], not [6])
  78. */
  79. uint8_t lease_mac[6];
  80. char hostname[20];
  81. uint8_t pad[2];
  82. /* total size is a multiply of 4 */
  83. } PACKED;
  84. extern struct dyn_lease *g_leases;
  85. struct dyn_lease *add_lease(
  86. const uint8_t *chaddr, uint32_t yiaddr,
  87. leasetime_t leasetime,
  88. const char *hostname, int hostname_len
  89. ) FAST_FUNC;
  90. int is_expired_lease(struct dyn_lease *lease) FAST_FUNC;
  91. struct dyn_lease *find_lease_by_mac(const uint8_t *mac) FAST_FUNC;
  92. struct dyn_lease *find_lease_by_nip(uint32_t nip) FAST_FUNC;
  93. uint32_t find_free_or_expired_nip(const uint8_t *safe_mac) FAST_FUNC;
  94. /*** static_leases.h ***/
  95. /* Config file parser will pass static lease info to this function
  96. * which will add it to a data structure that can be searched later */
  97. void add_static_lease(struct static_lease **st_lease_pp, uint8_t *mac, uint32_t nip) FAST_FUNC;
  98. /* Find static lease IP by mac */
  99. uint32_t get_static_nip_by_mac(struct static_lease *st_lease, void *arg) FAST_FUNC;
  100. /* Check to see if an IP is reserved as a static IP */
  101. int is_nip_reserved(struct static_lease *st_lease, uint32_t nip) FAST_FUNC;
  102. /* Print out static leases just to check what's going on (debug code) */
  103. #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 2
  104. void log_static_leases(struct static_lease **st_lease_pp) FAST_FUNC;
  105. #else
  106. # define log_static_leases(st_lease_pp) ((void)0)
  107. #endif
  108. /*** serverpacket.h ***/
  109. int send_offer(struct dhcp_packet *oldpacket) FAST_FUNC;
  110. int send_NAK(struct dhcp_packet *oldpacket) FAST_FUNC;
  111. int send_ACK(struct dhcp_packet *oldpacket, uint32_t yiaddr) FAST_FUNC;
  112. int send_inform(struct dhcp_packet *oldpacket) FAST_FUNC;
  113. /*** files.h ***/
  114. void read_config(const char *file) FAST_FUNC;
  115. void write_leases(void) FAST_FUNC;
  116. void read_leases(const char *file) FAST_FUNC;
  117. struct option_set *find_option(struct option_set *opt_list, uint8_t code) FAST_FUNC;
  118. POP_SAVED_FUNCTION_VISIBILITY
  119. #endif