mirror of
https://github.com/drasko/open-ameba.git
synced 2024-11-22 22:14:17 +00:00
115 lines
3.9 KiB
C
115 lines
3.9 KiB
C
|
|
#ifndef __DHCPS_H__
|
|
#define __DHCPS_H__
|
|
|
|
#include "lwip/arch.h"
|
|
#include "lwip/netif.h"
|
|
#include "lwip/udp.h"
|
|
#include "lwip/stats.h"
|
|
#include "lwip/sys.h"
|
|
|
|
#include <platform/platform_stdlib.h>
|
|
|
|
|
|
#define IS_USE_FIXED_IP 0
|
|
#define debug_dhcps 0
|
|
|
|
/* dhcp server states */
|
|
#define DHCP_SERVER_STATE_OFFER (1)
|
|
#define DHCP_SERVER_STATE_DECLINE (2)
|
|
#define DHCP_SERVER_STATE_ACK (3)
|
|
#define DHCP_SERVER_STATE_NAK (4)
|
|
#define DHCP_SERVER_STATE_IDLE (5)
|
|
|
|
|
|
#define BOOTP_BROADCAST (0x8000)
|
|
|
|
#define DHCP_MESSAGE_OP_REQUEST (1)
|
|
#define DHCP_MESSAGE_OP_REPLY (2)
|
|
|
|
#define DHCP_MESSAGE_HTYPE (1)
|
|
#define DHCP_MESSAGE_HLEN (6)
|
|
|
|
#define DHCP_SERVER_PORT (67)
|
|
#define DHCP_CLIENT_PORT (68)
|
|
|
|
#define DHCP_MESSAGE_TYPE_DISCOVER (1)
|
|
#define DHCP_MESSAGE_TYPE_OFFER (2)
|
|
#define DHCP_MESSAGE_TYPE_REQUEST (3)
|
|
#define DHCP_MESSAGE_TYPE_DECLINE (4)
|
|
#define DHCP_MESSAGE_TYPE_ACK (5)
|
|
#define DHCP_MESSAGE_TYPE_NAK (6)
|
|
#define DHCP_MESSAGE_TYPE_RELEASE (7)
|
|
|
|
#define DHCP_OPTION_LENGTH_ONE (1)
|
|
#define DHCP_OPTION_LENGTH_TWO (2)
|
|
#define DHCP_OPTION_LENGTH_THREE (3)
|
|
#define DHCP_OPTION_LENGTH_FOUR (4)
|
|
|
|
#define DHCP_OPTION_CODE_SUBNET_MASK (1)
|
|
#define DHCP_OPTION_CODE_ROUTER (3)
|
|
#define DHCP_OPTION_CODE_DNS_SERVER (6)
|
|
#define DHCP_OPTION_CODE_INTERFACE_MTU (26)
|
|
#define DHCP_OPTION_CODE_BROADCAST_ADDRESS (28)
|
|
#define DHCP_OPTION_CODE_PERFORM_ROUTER_DISCOVERY (31)
|
|
#define DHCP_OPTION_CODE_REQUEST_IP_ADDRESS (50)
|
|
#define DHCP_OPTION_CODE_LEASE_TIME (51)
|
|
#define DHCP_OPTION_CODE_MSG_TYPE (53)
|
|
#define DHCP_OPTION_CODE_SERVER_ID (54)
|
|
#define DHCP_OPTION_CODE_REQ_LIST (55)
|
|
#define DHCP_OPTION_CODE_END (255)
|
|
|
|
#define IP_FREE_TO_USE (1)
|
|
#define IP_ALREADY_IN_USE (0)
|
|
|
|
#define HW_ADDRESS_LENGTH (6)
|
|
|
|
/* Reference by RFC 2131 */
|
|
struct dhcp_msg {
|
|
uint8_t op; /* Message op code/message type. 1 = BOOTREQUEST, 2 = BOOTREPLY */
|
|
uint8_t htype; /* Hardware address type */
|
|
uint8_t hlen; /* Hardware address length */
|
|
uint8_t hops; /* Client sets to zero, optionally used by relay agents
|
|
when booting via a relay agent */
|
|
uint8_t xid[4]; /* Transaction ID, a random number chosen by the client,
|
|
used by the client and server to associate messages and
|
|
responses between a client and a server */
|
|
uint16_t secs; /* Filled in by client, seconds elapsed since client began address
|
|
acquisition or renewal process.*/
|
|
uint16_t flags; /* bit 0: Broadcast flag, bit 1~15:MBZ must 0*/
|
|
uint8_t ciaddr[4]; /* Client IP address; only filled in if client is in BOUND,
|
|
RENEW or REBINDING state and can respond to ARP requests. */
|
|
uint8_t yiaddr[4]; /* 'your' (client) IP address */
|
|
uint8_t siaddr[4]; /* IP address of next server to use in bootstrap;
|
|
returned in DHCPOFFER, DHCPACK by server. */
|
|
uint8_t giaddr[4]; /* Relay agent IP address, used in booting via a relay agent.*/
|
|
uint8_t chaddr[16]; /* Client hardware address */
|
|
uint8_t sname[64]; /* Optional server host name, null terminated string.*/
|
|
uint8_t file[128]; /* Boot file name, null terminated string; "generic" name or
|
|
null in DHCPDISCOVER, fully qualified directory-path name in DHCPOFFER.*/
|
|
uint8_t options[312]; /* Optional parameters field. reference the RFC 2132 */
|
|
};
|
|
|
|
/* use this to check whether the message is dhcp related or not */
|
|
static const uint8_t dhcp_magic_cookie[4] = {99, 130, 83, 99};
|
|
static const uint8_t dhcp_option_lease_time_one_day[] = {0x00, 0x01, 0x51, 0x80};
|
|
static const uint8_t dhcp_option_interface_mtu_576[] = {0x02, 0x40};
|
|
|
|
struct table {
|
|
uint32_t ip_range[8];
|
|
};
|
|
|
|
struct address_pool{
|
|
uint32_t start;
|
|
uint32_t end;
|
|
};
|
|
|
|
/* expose API */
|
|
|
|
extern uint8_t dhcps_ip4addr_pool_start, dhcps_ip4addr_pool_end;
|
|
void dhcps_init(struct netif * pnetif);
|
|
void dhcps_deinit(void);
|
|
|
|
extern struct netif *netif_default;
|
|
|
|
#endif
|