dhcpd.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* vi: set sw=4 ts=4: */
  2. /* dhcpd.h */
  3. #ifndef _DHCPD_H
  4. #define _DHCPD_H
  5. /************************************/
  6. /* Defaults _you_ may want to tweak */
  7. /************************************/
  8. /* the period of time the client is allowed to use that address */
  9. #define LEASE_TIME (60*60*24*10) /* 10 days of seconds */
  10. #define LEASES_FILE CONFIG_DHCPD_LEASES_FILE
  11. /* where to find the DHCP server configuration file */
  12. #define DHCPD_CONF_FILE "/etc/udhcpd.conf"
  13. struct option_set {
  14. uint8_t *data;
  15. struct option_set *next;
  16. };
  17. struct static_lease {
  18. struct static_lease *next;
  19. uint8_t *mac;
  20. uint32_t *ip;
  21. };
  22. struct server_config_t {
  23. uint32_t server; /* Our IP, in network order */
  24. #if ENABLE_FEATURE_UDHCP_PORT
  25. uint16_t port;
  26. #endif
  27. /* start,end are in host order: we need to compare start <= ip <= end */
  28. uint32_t start_ip; /* Start address of leases, in host order */
  29. uint32_t end_ip; /* End of leases, in host order */
  30. struct option_set *options; /* List of DHCP options loaded from the config file */
  31. char *interface; /* The name of the interface to use */
  32. int ifindex; /* Index number of the interface to use */
  33. uint8_t arp[6]; /* Our arp address */
  34. char remaining; /* should the lease file be interpreted as lease time remaining, or
  35. * as the time the lease expires */
  36. uint32_t lease; /* lease time in seconds (host order) */
  37. uint32_t max_leases; /* maximum number of leases (including reserved address) */
  38. uint32_t auto_time; /* how long should udhcpd wait before writing a config file.
  39. * if this is zero, it will only write one on SIGUSR1 */
  40. uint32_t decline_time; /* how long an address is reserved if a client returns a
  41. * decline message */
  42. uint32_t conflict_time; /* how long an arp conflict offender is leased for */
  43. uint32_t offer_time; /* how long an offered address is reserved */
  44. uint32_t min_lease; /* minimum lease a client can request */
  45. char *lease_file;
  46. char *pidfile;
  47. char *notify_file; /* What to run whenever leases are written */
  48. uint32_t siaddr; /* next server bootp option */
  49. char *sname; /* bootp server name */
  50. char *boot_file; /* bootp boot file option */
  51. struct static_lease *static_leases; /* List of ip/mac pairs to assign static leases */
  52. };
  53. #define server_config (*(struct server_config_t*)&bb_common_bufsiz1)
  54. /* client_config sits in 2nd half of bb_common_bufsiz1 */
  55. #if ENABLE_FEATURE_UDHCP_PORT
  56. #define SERVER_PORT (server_config.port)
  57. #else
  58. #define SERVER_PORT 67
  59. #endif
  60. extern struct dhcpOfferedAddr *leases;
  61. /*** leases.h ***/
  62. struct dhcpOfferedAddr {
  63. uint8_t chaddr[16];
  64. uint32_t yiaddr; /* network order */
  65. uint32_t expires; /* host order */
  66. };
  67. struct dhcpOfferedAddr *add_lease(const uint8_t *chaddr, uint32_t yiaddr, unsigned long lease);
  68. int lease_expired(struct dhcpOfferedAddr *lease);
  69. struct dhcpOfferedAddr *find_lease_by_chaddr(const uint8_t *chaddr);
  70. struct dhcpOfferedAddr *find_lease_by_yiaddr(uint32_t yiaddr);
  71. uint32_t find_address(int check_expired);
  72. /*** static_leases.h ***/
  73. /* Config file will pass static lease info to this function which will add it
  74. * to a data structure that can be searched later */
  75. int addStaticLease(struct static_lease **lease_struct, uint8_t *mac, uint32_t *ip);
  76. /* Check to see if a mac has an associated static lease */
  77. uint32_t getIpByMac(struct static_lease *lease_struct, void *arg);
  78. /* Check to see if an ip is reserved as a static ip */
  79. uint32_t reservedIp(struct static_lease *lease_struct, uint32_t ip);
  80. /* Print out static leases just to check what's going on (debug code) */
  81. void printStaticLeases(struct static_lease **lease_struct);
  82. /*** serverpacket.h ***/
  83. int sendOffer(struct dhcpMessage *oldpacket);
  84. int sendNAK(struct dhcpMessage *oldpacket);
  85. int sendACK(struct dhcpMessage *oldpacket, uint32_t yiaddr);
  86. int send_inform(struct dhcpMessage *oldpacket);
  87. /*** files.h ***/
  88. void read_config(const char *file);
  89. void write_leases(void);
  90. void read_leases(const char *file);
  91. struct option_set *find_option(struct option_set *opt_list, uint8_t code);
  92. #endif