2011-07-25 12:00:57 +05:30
|
|
|
/* dhcp.h - general DHCP protocol handling
|
2011-03-31 09:29:22 +05:30
|
|
|
*
|
2018-10-26 16:41:16 +05:30
|
|
|
* Copyright 2004-2018 Nicholas J. Kain <njkain at gmail dot com>
|
2011-07-25 12:00:57 +05:30
|
|
|
* All rights reserved.
|
2011-03-31 09:29:22 +05:30
|
|
|
*
|
2011-07-25 12:00:57 +05:30
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
2011-03-31 09:29:22 +05:30
|
|
|
*
|
2011-07-25 12:00:57 +05:30
|
|
|
* - Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
2011-03-31 09:29:22 +05:30
|
|
|
*
|
2011-07-25 12:00:57 +05:30
|
|
|
* - Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
2011-03-31 09:29:22 +05:30
|
|
|
*/
|
|
|
|
|
2011-07-25 12:00:57 +05:30
|
|
|
#ifndef NDHC_DHCP_H_
|
|
|
|
#define NDHC_DHCP_H_
|
2010-11-12 14:32:18 +05:30
|
|
|
|
2014-03-31 02:32:48 +05:30
|
|
|
#include <stdint.h>
|
2010-11-12 14:32:18 +05:30
|
|
|
#include <netinet/udp.h>
|
|
|
|
#include <netinet/ip.h>
|
2014-03-13 02:35:43 +05:30
|
|
|
#include "ndhc.h"
|
2010-12-24 19:25:59 +05:30
|
|
|
|
2011-06-11 20:49:05 +05:30
|
|
|
#define DHCP_SERVER_PORT 67
|
|
|
|
#define DHCP_CLIENT_PORT 68
|
|
|
|
#define DHCP_MAGIC 0x63825363
|
|
|
|
|
|
|
|
enum {
|
|
|
|
DHCPDISCOVER = 1,
|
|
|
|
DHCPOFFER = 2,
|
|
|
|
DHCPREQUEST = 3,
|
|
|
|
DHCPDECLINE = 4,
|
|
|
|
DHCPACK = 5,
|
|
|
|
DHCPNAK = 6,
|
|
|
|
DHCPRELEASE = 7,
|
|
|
|
DHCPINFORM = 8
|
|
|
|
};
|
|
|
|
|
2011-06-27 02:55:00 +05:30
|
|
|
struct dhcpmsg {
|
|
|
|
uint8_t op; // Message type: 1 = BOOTREQUEST for clients.
|
2011-07-27 17:33:42 +05:30
|
|
|
uint8_t htype; // ARP HW address type: always '1' for ethernet.
|
|
|
|
uint8_t hlen; // Hardware address length: always '6' for ethernet.
|
2011-06-27 02:55:00 +05:30
|
|
|
uint8_t hops; // Client sets to zero.
|
|
|
|
uint32_t xid; // Transaction ID: random number identifying session
|
|
|
|
uint16_t secs; // Filled by client: seconds since client began address
|
|
|
|
// aquisition or renewal process.
|
|
|
|
uint16_t flags; // DHCP flags
|
2011-07-06 21:02:22 +05:30
|
|
|
uint32_t ciaddr; // Client IP: only filled in if client is in BOUND, RENEW,
|
2011-03-31 04:28:09 +05:30
|
|
|
// or REBINDING and can reply to ARP requests
|
|
|
|
uint32_t yiaddr; // 'your' (client) IP address
|
2011-07-27 17:33:42 +05:30
|
|
|
uint32_t siaddr; // Always zero -- unused.
|
|
|
|
uint32_t giaddr; // Always zero -- unused.
|
2011-06-27 02:55:00 +05:30
|
|
|
uint8_t chaddr[16]; // Client MAC address
|
2011-07-27 17:33:42 +05:30
|
|
|
uint8_t sname[64]; // More DHCP options (#3)
|
|
|
|
uint8_t file[128]; // More DHCP options (#2)
|
2011-07-02 14:15:11 +05:30
|
|
|
uint32_t cookie; // Magic number cookie that starts DHCP options
|
2011-07-27 17:33:42 +05:30
|
|
|
uint8_t options[308]; // DHCP options field (#1)
|
2010-11-12 14:32:18 +05:30
|
|
|
};
|
|
|
|
|
2010-11-14 12:23:23 +05:30
|
|
|
struct ip_udp_dhcp_packet {
|
2010-11-14 11:24:05 +05:30
|
|
|
struct iphdr ip;
|
|
|
|
struct udphdr udp;
|
2011-06-27 02:55:00 +05:30
|
|
|
struct dhcpmsg data;
|
2010-11-12 14:32:18 +05:30
|
|
|
};
|
|
|
|
|
2010-11-14 12:23:23 +05:30
|
|
|
struct udp_dhcp_packet {
|
|
|
|
struct udphdr udp;
|
2011-06-27 02:55:00 +05:30
|
|
|
struct dhcpmsg data;
|
2010-11-14 12:23:23 +05:30
|
|
|
};
|
|
|
|
|
2015-02-14 08:59:03 +05:30
|
|
|
void start_dhcp_listen(struct client_state_t cs[static 1]);
|
|
|
|
void stop_dhcp_listen(struct client_state_t cs[static 1]);
|
2015-02-18 21:32:13 +05:30
|
|
|
bool dhcp_packet_get(struct client_state_t cs[static 1],
|
|
|
|
struct dhcpmsg packet[static 1],
|
|
|
|
uint8_t msgtype[static 1],
|
|
|
|
uint32_t srcaddr[static 1]);
|
2015-02-14 08:59:03 +05:30
|
|
|
ssize_t send_discover(struct client_state_t cs[static 1]);
|
|
|
|
ssize_t send_selecting(struct client_state_t cs[static 1]);
|
|
|
|
ssize_t send_renew(struct client_state_t cs[static 1]);
|
|
|
|
ssize_t send_rebind(struct client_state_t cs[static 1]);
|
|
|
|
ssize_t send_decline(struct client_state_t cs[static 1], uint32_t server);
|
|
|
|
ssize_t send_release(struct client_state_t cs[static 1]);
|
2011-06-11 20:49:05 +05:30
|
|
|
|
2010-11-12 14:32:18 +05:30
|
|
|
#endif
|