OpenVPN
dhcp.h
Go to the documentation of this file.
1/*
2 * OpenVPN -- An application to securely tunnel IP networks
3 * over a single TCP/UDP port, with support for SSL/TLS-based
4 * session authentication and key exchange,
5 * packet encryption, packet authentication, and
6 * packet compression.
7 *
8 * Copyright (C) 2002-2025 OpenVPN Inc <sales@openvpn.net>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, see <https://www.gnu.org/licenses/>.
21 */
22
23#ifndef DHCP_H
24#define DHCP_H
25
26#include "common.h"
27#include "buffer.h"
28#include "proto.h"
29
30#pragma pack(1)
31
32/* DHCP Option types */
33#define DHCP_PAD 0
34#define DHCP_ROUTER 3
35#define DHCP_MSG_TYPE 53 /* message type (u8) */
36#define DHCP_END 255
37
38/* DHCP Messages types */
39#define DHCPDISCOVER 1
40#define DHCPOFFER 2
41#define DHCPREQUEST 3
42#define DHCPDECLINE 4
43#define DHCPACK 5
44#define DHCPNAK 6
45#define DHCPRELEASE 7
46#define DHCPINFORM 8
47
48/* DHCP UDP port numbers */
49#define BOOTPS_PORT 67
50#define BOOTPC_PORT 68
51
52struct dhcp
53{
54#define BOOTREQUEST 1
55#define BOOTREPLY 2
56 uint8_t op; /* message op */
57
58 uint8_t htype; /* hardware address type (e.g. '1' = 10Mb Ethernet) */
59 uint8_t hlen; /* hardware address length (e.g. '6' for 10Mb Ethernet) */
60 uint8_t hops; /* client sets to 0, may be used by relay agents */
61 uint32_t xid; /* transaction ID, chosen by client */
62 uint16_t secs; /* seconds since request process began, set by client */
63 uint16_t flags;
64 uint32_t ciaddr; /* client IP address, client sets if known */
65 uint32_t yiaddr; /* 'your' IP address -- server's response to client */
66 uint32_t siaddr; /* server IP address */
67 uint32_t giaddr; /* relay agent IP address */
68 uint8_t chaddr[16]; /* client hardware address */
69 uint8_t sname[64]; /* optional server host name */
70 uint8_t file[128]; /* boot file name */
71 uint32_t magic; /* must be 0x63825363 (network order) */
72};
73
75{
78 struct dhcp dhcp;
79#define DHCP_OPTIONS_BUFFER_SIZE 256
81};
82
83#pragma pack()
84
85in_addr_t dhcp_extract_router_msg(struct buffer *ipbuf);
86
87#endif /* ifndef DHCP_H */
in_addr_t dhcp_extract_router_msg(struct buffer *ipbuf)
Definition dhcp.c:148
#define DHCP_OPTIONS_BUFFER_SIZE
Definition dhcp.h:79
Wrapper structure for dynamically allocated memory.
Definition buffer.h:60
struct openvpn_udphdr udp
Definition dhcp.h:77
struct openvpn_iphdr ip
Definition dhcp.h:76
Definition dhcp.h:53
uint32_t giaddr
Definition dhcp.h:67
uint32_t yiaddr
Definition dhcp.h:65
uint8_t op
Definition dhcp.h:56
uint8_t chaddr[16]
Definition dhcp.h:68
uint16_t flags
Definition dhcp.h:63
uint8_t htype
Definition dhcp.h:58
uint32_t ciaddr
Definition dhcp.h:64
uint8_t file[128]
Definition dhcp.h:70
uint32_t magic
Definition dhcp.h:71
uint8_t sname[64]
Definition dhcp.h:69
uint32_t siaddr
Definition dhcp.h:66
uint16_t secs
Definition dhcp.h:62
uint8_t hlen
Definition dhcp.h:59
uint8_t hops
Definition dhcp.h:60
uint32_t xid
Definition dhcp.h:61