blob: 0334041652e91b699bf6d670502292b258bb4a32 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * client.h: dhcp client
17 */
18
19#ifndef included_dhcp_client_h
20#define included_dhcp_client_h
21
Neale Ranns20a175a2017-02-14 07:28:41 -080022#include <vnet/ip/ip.h>
Neale Ranns2dd68522017-02-16 03:38:59 -080023#include <vnet/dhcp/dhcp4_packet.h>
Neale Ranns20a175a2017-02-14 07:28:41 -080024
Ed Warnickecb9cada2015-12-08 15:45:58 -070025#define foreach_dhcp_client_state \
26_(DHCP_DISCOVER) \
27_(DHCP_REQUEST) \
28_(DHCP_BOUND)
29
khemendra kumar34719e32017-12-08 18:06:52 +053030typedef enum
31{
Ed Warnickecb9cada2015-12-08 15:45:58 -070032#define _(a) a,
33 foreach_dhcp_client_state
34#undef _
35} dhcp_client_state_t;
36
khemendra kumar34719e32017-12-08 18:06:52 +053037typedef struct
38{
Ed Warnickecb9cada2015-12-08 15:45:58 -070039 dhcp_client_state_t state;
40
41 /* the interface in question */
42 u32 sw_if_index;
43
44 /* State machine retry counter */
45 u32 retry_count;
46
47 /* Send next pkt at this time */
48 f64 next_transmit;
49 f64 lease_expires;
50
51 /* DHCP transaction ID, a random number */
52 u32 transaction_id;
53
54 /* leased address, other learned info DHCP */
khemendra kumar34719e32017-12-08 18:06:52 +053055 ip4_address_t leased_address; /* from your_ip_address field */
Ed Warnickecb9cada2015-12-08 15:45:58 -070056 ip4_address_t dhcp_server;
khemendra kumar34719e32017-12-08 18:06:52 +053057 u32 subnet_mask_width; /* option 1 */
58 ip4_address_t router_address; /* option 3 */
59 u32 lease_renewal_interval; /* option 51 */
60 u32 lease_lifetime; /* option 59 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070061
62 /* Requested data (option 55) */
khemendra kumar34719e32017-12-08 18:06:52 +053063 u8 *option_55_data;
Ed Warnickecb9cada2015-12-08 15:45:58 -070064
khemendra kumar34719e32017-12-08 18:06:52 +053065 u8 *l2_rewrite;
Ed Warnickecb9cada2015-12-08 15:45:58 -070066
67 /* hostname and software client identifiers */
khemendra kumar34719e32017-12-08 18:06:52 +053068 u8 *hostname;
69 u8 *client_identifier; /* software version, e.g. vpe 1.0 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070070
71 /* Information used for event callback */
72 u32 client_index;
73 u32 pid;
Neale Ranns54c6dc42018-01-17 10:29:10 -080074
75 /* Set the broadcast Flag in the Discover/Request messages */
76 u8 set_broadcast_flag;
Dave Barach4585eb82018-03-23 09:52:52 -040077 /* Interface MAC address, so we can do an rx-packet-for-us check */
78 u8 client_hardware_address[6];
79 u8 pad1;
Neale Ranns54c6dc42018-01-17 10:29:10 -080080
khemendra kumar34719e32017-12-08 18:06:52 +053081 void *event_callback;
Ed Warnickecb9cada2015-12-08 15:45:58 -070082} dhcp_client_t;
83
khemendra kumar34719e32017-12-08 18:06:52 +053084typedef struct
85{
Ed Warnickecb9cada2015-12-08 15:45:58 -070086 /* DHCP client pool */
khemendra kumar34719e32017-12-08 18:06:52 +053087 dhcp_client_t *clients;
88 uword *client_by_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070089 u32 seed;
90
91 /* convenience */
khemendra kumar34719e32017-12-08 18:06:52 +053092 vlib_main_t *vlib_main;
93 vnet_main_t *vnet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070094} dhcp_client_main_t;
95
khemendra kumar34719e32017-12-08 18:06:52 +053096typedef struct
97{
Ed Warnickecb9cada2015-12-08 15:45:58 -070098 int is_add;
99 u32 sw_if_index;
Neale Ranns54c6dc42018-01-17 10:29:10 -0800100 u8 set_broadcast_flag;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
102 /* vectors, consumed by dhcp client code */
khemendra kumar34719e32017-12-08 18:06:52 +0530103 u8 *hostname;
104 u8 *client_identifier;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
106 /* Bytes containing requested option numbers */
khemendra kumar34719e32017-12-08 18:06:52 +0530107 u8 *option_55_data;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108
109 /* Information used for event callback */
110 u32 client_index;
111 u32 pid;
khemendra kumar34719e32017-12-08 18:06:52 +0530112 void *event_callback;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113} dhcp_client_add_del_args_t;
114
Dave Wallace71612d62017-10-24 01:32:41 -0400115extern dhcp_client_main_t dhcp_client_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116
117#define EVENT_DHCP_CLIENT_WAKEUP 1
118
khemendra kumar34719e32017-12-08 18:06:52 +0530119int dhcp_client_for_us (u32 bi0,
120 vlib_buffer_t * b0,
121 ip4_header_t * ip0,
122 udp_header_t * u0, dhcp_header_t * dh0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123
124int dhcp_client_config (vlib_main_t * vm,
khemendra kumar34719e32017-12-08 18:06:52 +0530125 u32 sw_if_index,
126 u8 * hostname,
127 u8 * client_id,
128 u32 is_add,
Neale Ranns54c6dc42018-01-17 10:29:10 -0800129 u32 client_index,
130 void *event_callback, u8 set_broadcast_flag, u32 pid);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131
132#endif /* included_dhcp_client_h */
khemendra kumar34719e32017-12-08 18:06:52 +0530133
134/*
135 * fd.io coding-style-patch-verification: ON
136 *
137 * Local Variables:
138 * eval: (c-set-style "gnu")
139 * End:
140 */