blob: f2a3ed9c2ccc6bb39ee840384cb6b76dbc1ad2b2 [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/bridge_domain_entry_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070017
18namespace VOM {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070019namespace bridge_domain_entry_cmds {
20create_cmd::create_cmd(HW::item<bool>& item,
21 const mac_address_t& mac,
22 uint32_t bd,
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010023 handle_t tx_itf,
24 bool is_bvi)
Neale Ranns812ed392017-10-16 04:20:13 -070025 : rpc_cmd(item)
26 , m_mac(mac)
27 , m_bd(bd)
28 , m_tx_itf(tx_itf)
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010029 , m_is_bvi(is_bvi)
Neale Ranns812ed392017-10-16 04:20:13 -070030{
31}
32
33bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070034create_cmd::operator==(const create_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -070035{
36 return ((m_mac == other.m_mac) && (m_tx_itf == other.m_tx_itf) &&
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010037 (m_bd == other.m_bd) && (m_is_bvi == other.m_is_bvi));
Neale Ranns812ed392017-10-16 04:20:13 -070038}
39
40rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070041create_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070042{
43 msg_t req(con.ctx(), std::ref(*this));
44
45 auto& payload = req.get_request().get_payload();
46 payload.bd_id = m_bd;
47 payload.is_add = 1;
Neale Rannsf29e85f2017-11-01 03:29:13 -070048 m_mac.to_bytes(payload.mac, 6);
Neale Ranns812ed392017-10-16 04:20:13 -070049 payload.sw_if_index = m_tx_itf.value();
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010050 payload.bvi_mac = m_is_bvi;
Neale Ranns812ed392017-10-16 04:20:13 -070051
52 VAPI_CALL(req.execute());
53
54 m_hw_item.set(wait());
55
56 return rc_t::OK;
57}
58
59std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070060create_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -070061{
62 std::ostringstream s;
63 s << "bridge-domain-entry-create: " << m_hw_item.to_string() << " bd:" << m_bd
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010064 << " mac:" << m_mac.to_string() << " tx:" << m_tx_itf
65 << " bvi:" << m_is_bvi;
Neale Ranns812ed392017-10-16 04:20:13 -070066
67 return (s.str());
68}
69
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070070delete_cmd::delete_cmd(HW::item<bool>& item,
71 const mac_address_t& mac,
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010072 uint32_t bd,
73 bool is_bvi)
Neale Ranns812ed392017-10-16 04:20:13 -070074 : rpc_cmd(item)
75 , m_mac(mac)
76 , m_bd(bd)
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010077 , m_is_bvi(is_bvi)
Neale Ranns812ed392017-10-16 04:20:13 -070078{
79}
80
81bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070082delete_cmd::operator==(const delete_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -070083{
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010084 return ((m_mac == other.m_mac) && (m_bd == other.m_bd) &&
85 (m_is_bvi == other.m_is_bvi));
Neale Ranns812ed392017-10-16 04:20:13 -070086}
87
88rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070089delete_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070090{
91 msg_t req(con.ctx(), std::ref(*this));
92
93 auto& payload = req.get_request().get_payload();
94 payload.bd_id = m_bd;
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010095 payload.is_add = 0;
Neale Rannsf29e85f2017-11-01 03:29:13 -070096 m_mac.to_bytes(payload.mac, 6);
Neale Ranns812ed392017-10-16 04:20:13 -070097 payload.sw_if_index = ~0;
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010098 payload.bvi_mac = m_is_bvi;
Neale Ranns812ed392017-10-16 04:20:13 -070099
100 VAPI_CALL(req.execute());
101
102 wait();
103 m_hw_item.set(rc_t::NOOP);
104
105 return rc_t::OK;
106}
107
108std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700109delete_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700110{
111 std::ostringstream s;
112 s << "bridge-domain-entry-delete: " << m_hw_item.to_string() << " bd:" << m_bd
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +0100113 << " mac:" << m_mac.to_string() << " bvi:" << m_is_bvi;
Neale Ranns812ed392017-10-16 04:20:13 -0700114
115 return (s.str());
116}
117
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700118dump_cmd::dump_cmd()
Neale Ranns812ed392017-10-16 04:20:13 -0700119{
120}
121
122bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700123dump_cmd::operator==(const dump_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -0700124{
125 return (true);
126}
127
128rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700129dump_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700130{
131 m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
132
133 auto& payload = m_dump->get_request().get_payload();
134 payload.bd_id = ~0;
135
136 VAPI_CALL(m_dump->execute());
137
138 wait();
139
140 return rc_t::OK;
141}
142
143std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700144dump_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700145{
146 return ("bridge-domain-entry-dump");
147}
148}
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700149}
Neale Ranns812ed392017-10-16 04:20:13 -0700150
151/*
152 * fd.io coding-style-patch-verification: ON
153 *
154 * Local Variables:
155 * eval: (c-set-style "mozilla")
156 * End:
157 */