blob: 65c8348bf641e48c88c0901152c2b4260f316e47 [file] [log] [blame]
Russ Dill61fb4892002-10-14 21:41:28 +00001/* dhcpd.h */
2#ifndef _DHCPD_H
3#define _DHCPD_H
4
5#include <netinet/ip.h>
6#include <netinet/udp.h>
7
Russ Dill8b384512003-12-16 02:30:53 +00008#include "libbb_udhcp.h"
Russ Dill61fb4892002-10-14 21:41:28 +00009#include "leases.h"
Russ Dill8b384512003-12-16 02:30:53 +000010#include "version.h"
Russ Dill61fb4892002-10-14 21:41:28 +000011
12/************************************/
13/* Defaults _you_ may want to tweak */
14/************************************/
15
16/* the period of time the client is allowed to use that address */
17#define LEASE_TIME (60*60*24*10) /* 10 days of seconds */
Russ Dill8b384512003-12-16 02:30:53 +000018#define LEASES_FILE "/var/lib/misc/udhcpd.leases"
Russ Dill61fb4892002-10-14 21:41:28 +000019
20/* where to find the DHCP server configuration file */
21#define DHCPD_CONF_FILE "/etc/udhcpd.conf"
22
23/*****************************************************************/
24/* Do not modify below here unless you know what you are doing!! */
25/*****************************************************************/
26
27/* DHCP protocol -- see RFC 2131 */
28#define SERVER_PORT 67
29#define CLIENT_PORT 68
30
31#define DHCP_MAGIC 0x63825363
32
33/* DHCP option codes (partial list) */
34#define DHCP_PADDING 0x00
35#define DHCP_SUBNET 0x01
36#define DHCP_TIME_OFFSET 0x02
37#define DHCP_ROUTER 0x03
38#define DHCP_TIME_SERVER 0x04
39#define DHCP_NAME_SERVER 0x05
40#define DHCP_DNS_SERVER 0x06
41#define DHCP_LOG_SERVER 0x07
42#define DHCP_COOKIE_SERVER 0x08
43#define DHCP_LPR_SERVER 0x09
44#define DHCP_HOST_NAME 0x0c
45#define DHCP_BOOT_SIZE 0x0d
46#define DHCP_DOMAIN_NAME 0x0f
47#define DHCP_SWAP_SERVER 0x10
48#define DHCP_ROOT_PATH 0x11
49#define DHCP_IP_TTL 0x17
50#define DHCP_MTU 0x1a
51#define DHCP_BROADCAST 0x1c
52#define DHCP_NTP_SERVER 0x2a
53#define DHCP_WINS_SERVER 0x2c
54#define DHCP_REQUESTED_IP 0x32
55#define DHCP_LEASE_TIME 0x33
56#define DHCP_OPTION_OVER 0x34
57#define DHCP_MESSAGE_TYPE 0x35
58#define DHCP_SERVER_ID 0x36
59#define DHCP_PARAM_REQ 0x37
60#define DHCP_MESSAGE 0x38
61#define DHCP_MAX_SIZE 0x39
62#define DHCP_T1 0x3a
63#define DHCP_T2 0x3b
64#define DHCP_VENDOR 0x3c
65#define DHCP_CLIENT_ID 0x3d
Mike Frysingerd8248532004-12-06 14:59:45 +000066#define DHCP_FQDN 0x51
Russ Dill61fb4892002-10-14 21:41:28 +000067
68#define DHCP_END 0xFF
69
70
71#define BOOTREQUEST 1
72#define BOOTREPLY 2
73
74#define ETH_10MB 1
75#define ETH_10MB_LEN 6
76
77#define DHCPDISCOVER 1
78#define DHCPOFFER 2
79#define DHCPREQUEST 3
80#define DHCPDECLINE 4
81#define DHCPACK 5
82#define DHCPNAK 6
83#define DHCPRELEASE 7
84#define DHCPINFORM 8
85
86#define BROADCAST_FLAG 0x8000
87
88#define OPTION_FIELD 0
89#define FILE_FIELD 1
90#define SNAME_FIELD 2
91
92/* miscellaneous defines */
Eric Andersenad953732004-01-30 23:45:53 +000093#define MAC_BCAST_ADDR (uint8_t *) "\xff\xff\xff\xff\xff\xff"
Russ Dill61fb4892002-10-14 21:41:28 +000094#define OPT_CODE 0
95#define OPT_LEN 1
96#define OPT_DATA 2
97
98struct option_set {
Eric Andersenad953732004-01-30 23:45:53 +000099 uint8_t *data;
Russ Dill61fb4892002-10-14 21:41:28 +0000100 struct option_set *next;
101};
102
Eric Andersenabf58d62004-10-08 08:49:26 +0000103struct static_lease {
104 uint8_t *mac;
105 uint32_t *ip;
106 struct static_lease *next;
107};
108
Russ Dill61fb4892002-10-14 21:41:28 +0000109struct server_config_t {
Eric Andersenad953732004-01-30 23:45:53 +0000110 uint32_t server; /* Our IP, in network order */
111 uint32_t start; /* Start address of leases, network order */
112 uint32_t end; /* End of leases, network order */
Russ Dill61fb4892002-10-14 21:41:28 +0000113 struct option_set *options; /* List of DHCP options loaded from the config file */
114 char *interface; /* The name of the interface to use */
115 int ifindex; /* Index number of the interface to use */
Eric Andersenad953732004-01-30 23:45:53 +0000116 uint8_t arp[6]; /* Our arp address */
Russ Dill61fb4892002-10-14 21:41:28 +0000117 unsigned long lease; /* lease time in seconds (host order) */
118 unsigned long max_leases; /* maximum number of leases (including reserved address) */
119 char remaining; /* should the lease file be interpreted as lease time remaining, or
120 * as the time the lease expires */
121 unsigned long auto_time; /* how long should udhcpd wait before writing a config file.
122 * if this is zero, it will only write one on SIGUSR1 */
123 unsigned long decline_time; /* how long an address is reserved if a client returns a
124 * decline message */
125 unsigned long conflict_time; /* how long an arp conflict offender is leased for */
126 unsigned long offer_time; /* how long an offered address is reserved */
127 unsigned long min_lease; /* minimum lease a client can request*/
128 char *lease_file;
129 char *pidfile;
130 char *notify_file; /* What to run whenever leases are written */
Eric Andersenad953732004-01-30 23:45:53 +0000131 uint32_t siaddr; /* next server bootp option */
Russ Dill61fb4892002-10-14 21:41:28 +0000132 char *sname; /* bootp server name */
133 char *boot_file; /* bootp boot file option */
Eric Andersenabf58d62004-10-08 08:49:26 +0000134 struct static_lease *static_leases; /* List of ip/mac pairs to assign static leases */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000135};
Russ Dill61fb4892002-10-14 21:41:28 +0000136
137extern struct server_config_t server_config;
138extern struct dhcpOfferedAddr *leases;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000139
Russ Dill61fb4892002-10-14 21:41:28 +0000140
141#endif