blob: 9e803be7b8db30c0881aaafd3893443ef70a1863 [file] [log] [blame]
Neale Ranns812ed392017-10-16 04:20:13 -07001/*
2 * Copyright (c) 2017 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
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070016#include "vom/dhcp_config_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070017
18DEFINE_VAPI_MSG_IDS_DHCP_API_JSON;
19
20namespace VOM {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070021namespace dhcp_config_cmds {
22
23bind_cmd::bind_cmd(HW::item<bool>& item,
24 const handle_t& itf,
25 const std::string& hostname,
Neale Ranns54c6dc42018-01-17 10:29:10 -080026 const l2_address_t& client_id,
27 bool set_broadcast_flag)
Neale Ranns812ed392017-10-16 04:20:13 -070028 : rpc_cmd(item)
29 , m_itf(itf)
30 , m_hostname(hostname)
31 , m_client_id(client_id)
Neale Ranns54c6dc42018-01-17 10:29:10 -080032 , m_set_broadcast_flag(set_broadcast_flag)
Neale Ranns812ed392017-10-16 04:20:13 -070033{
34}
35
36bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070037bind_cmd::operator==(const bind_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -070038{
39 return ((m_itf == other.m_itf) && (m_hostname == other.m_hostname));
40}
41
42rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070043bind_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070044{
45 msg_t req(con.ctx(), std::ref(*this));
46
47 auto& payload = req.get_request().get_payload();
48 payload.sw_if_index = m_itf.value();
49 payload.is_add = 1;
50 payload.pid = getpid();
51 payload.want_dhcp_event = 1;
52
Neale Ranns814b47b2017-11-09 05:18:04 -080053 memset(payload.hostname, 0, sizeof(payload.hostname));
Neale Ranns812ed392017-10-16 04:20:13 -070054 memcpy(payload.hostname, m_hostname.c_str(),
55 std::min(sizeof(payload.hostname), m_hostname.length()));
56
57 memset(payload.client_id, 0, sizeof(payload.client_id));
58 payload.client_id[0] = 1;
59 std::copy_n(begin(m_client_id.bytes),
60 std::min(sizeof(payload.client_id), m_client_id.bytes.size()),
61 payload.client_id + 1);
62
63 VAPI_CALL(req.execute());
64
65 m_hw_item.set(wait());
66
67 return rc_t::OK;
68}
69
70std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070071bind_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -070072{
73 std::ostringstream s;
74 s << "Dhcp-config-bind: " << m_hw_item.to_string()
75 << " itf:" << m_itf.to_string() << " hostname:" << m_hostname;
76
77 return (s.str());
78}
79
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070080unbind_cmd::unbind_cmd(HW::item<bool>& item,
81 const handle_t& itf,
82 const std::string& hostname)
Neale Ranns812ed392017-10-16 04:20:13 -070083 : rpc_cmd(item)
84 , m_itf(itf)
85 , m_hostname(hostname)
86{
87}
88
89bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070090unbind_cmd::operator==(const unbind_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -070091{
92 return ((m_itf == other.m_itf) && (m_hostname == other.m_hostname));
93}
94
95rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070096unbind_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070097{
98 msg_t req(con.ctx(), std::ref(*this));
99
100 auto& payload = req.get_request().get_payload();
101 payload.sw_if_index = m_itf.value();
102 payload.is_add = 0;
103 payload.pid = getpid();
104 payload.want_dhcp_event = 0;
105
106 memcpy(payload.hostname, m_hostname.c_str(),
107 std::min(sizeof(payload.hostname), m_hostname.length()));
108
109 VAPI_CALL(req.execute());
110
111 wait();
112 m_hw_item.set(rc_t::NOOP);
113
114 return rc_t::OK;
115}
116
117std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700118unbind_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700119{
120 std::ostringstream s;
121 s << "Dhcp-config-unbind: " << m_hw_item.to_string()
122 << " itf:" << m_itf.to_string() << " hostname:" << m_hostname;
123
124 return (s.str());
125}
126
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700127events_cmd::events_cmd(dhcp_config::event_listener& el)
Neale Ranns812ed392017-10-16 04:20:13 -0700128 : event_cmd(el.status())
129 , m_listener(el)
130{
131}
132
133bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700134events_cmd::operator==(const events_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -0700135{
136 return (true);
137}
138
139rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700140events_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700141{
142 /*
Neale Rannsa2ee0292017-11-28 22:29:13 -0800143 * Set the call back to handle DHCP complete envets.
144 */
Neale Ranns812ed392017-10-16 04:20:13 -0700145 m_reg.reset(new reg_t(con.ctx(), std::ref(*this)));
146
147 /*
Neale Rannsa2ee0292017-11-28 22:29:13 -0800148 * return in-progress so the command stays in the pending list.
149 */
150 return (rc_t::OK);
Neale Ranns812ed392017-10-16 04:20:13 -0700151}
152
153void
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700154events_cmd::retire(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700155{
156}
157
158void
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700159events_cmd::notify()
Neale Ranns812ed392017-10-16 04:20:13 -0700160{
161 m_listener.handle_dhcp_event(this);
162}
163
164std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700165events_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700166{
167 return ("dhcp-events");
168}
169}
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700170};
Neale Ranns812ed392017-10-16 04:20:13 -0700171/*
172 * fd.io coding-style-patch-verification: ON
173 *
174 * Local Variables:
175 * eval: (c-set-style "mozilla")
176 * End:
177 */