Neale Ranns | 2dd6852 | 2017-02-16 03:38:59 -0800 | [diff] [blame] | 1 | #ifndef included_vnet_dhcp4_packet_h |
| 2 | #define included_vnet_dhcp4_packet_h |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3 | |
| 4 | /* |
| 5 | * DHCP packet format |
| 6 | * |
| 7 | * Copyright (c) 2013 Cisco and/or its affiliates. |
| 8 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | * you may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at: |
| 11 | * |
| 12 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | * |
| 14 | * Unless required by applicable law or agreed to in writing, software |
| 15 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | * See the License for the specific language governing permissions and |
| 18 | * limitations under the License. |
| 19 | */ |
| 20 | #include <vnet/ip/ip4_packet.h> |
| 21 | |
khemendra kumar | 34719e3 | 2017-12-08 18:06:52 +0530 | [diff] [blame] | 22 | typedef struct |
| 23 | { |
| 24 | u8 opcode; /* 1 = request, 2 = reply */ |
| 25 | u8 hardware_type; /* 1 = ethernet */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 26 | u8 hardware_address_length; |
| 27 | u8 hops; |
| 28 | u32 transaction_identifier; |
| 29 | u16 seconds; |
| 30 | u16 flags; |
| 31 | #define DHCP_FLAG_BROADCAST (1<<15) |
| 32 | ip4_address_t client_ip_address; |
khemendra kumar | 34719e3 | 2017-12-08 18:06:52 +0530 | [diff] [blame] | 33 | ip4_address_t your_ip_address; /* use this one */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 34 | ip4_address_t server_ip_address; |
khemendra kumar | 34719e3 | 2017-12-08 18:06:52 +0530 | [diff] [blame] | 35 | ip4_address_t gateway_ip_address; /* use option 3, not this one */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 36 | u8 client_hardware_address[16]; |
| 37 | u8 server_name[64]; |
| 38 | u8 boot_filename[128]; |
| 39 | ip4_address_t magic_cookie; |
| 40 | u8 options[0]; |
| 41 | } dhcp_header_t; |
| 42 | |
khemendra kumar | 34719e3 | 2017-12-08 18:06:52 +0530 | [diff] [blame] | 43 | typedef struct |
| 44 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | u8 option; |
| 46 | u8 length; |
khemendra kumar | 34719e3 | 2017-12-08 18:06:52 +0530 | [diff] [blame] | 47 | union |
| 48 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 49 | u8 data[0]; |
| 50 | u32 data_as_u32[0]; |
| 51 | }; |
khemendra kumar | 34719e3 | 2017-12-08 18:06:52 +0530 | [diff] [blame] | 52 | } __attribute__ ((packed)) dhcp_option_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 53 | |
khemendra kumar | 34719e3 | 2017-12-08 18:06:52 +0530 | [diff] [blame] | 54 | typedef enum |
| 55 | { |
| 56 | DHCP_PACKET_DISCOVER = 1, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 57 | DHCP_PACKET_OFFER, |
| 58 | DHCP_PACKET_REQUEST, |
khemendra kumar | 34719e3 | 2017-12-08 18:06:52 +0530 | [diff] [blame] | 59 | DHCP_PACKET_ACK = 5, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 60 | } dhcp_packet_type_t; |
| 61 | |
Neale Ranns | 3466c30 | 2017-02-16 07:45:03 -0800 | [diff] [blame] | 62 | typedef enum dhcp_packet_option_t_ |
| 63 | { |
khemendra kumar | 34719e3 | 2017-12-08 18:06:52 +0530 | [diff] [blame] | 64 | DHCP_PACKET_OPTION_MSG_TYPE = 53, |
Neale Ranns | 3466c30 | 2017-02-16 07:45:03 -0800 | [diff] [blame] | 65 | } dhcp_packet_option_t; |
| 66 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 67 | /* charming antique: 99.130.83.99 is the dhcp magic cookie */ |
| 68 | #define DHCP_MAGIC (clib_host_to_net_u32(0x63825363)) |
| 69 | |
Neale Ranns | 2dd6852 | 2017-02-16 03:38:59 -0800 | [diff] [blame] | 70 | #endif /* included_vnet_dhcp4_packet_h */ |
khemendra kumar | 34719e3 | 2017-12-08 18:06:52 +0530 | [diff] [blame] | 71 | |
| 72 | /* |
| 73 | * fd.io coding-style-patch-verification: ON |
| 74 | * |
| 75 | * Local Variables: |
| 76 | * eval: (c-set-style "gnu") |
| 77 | * End: |
| 78 | */ |