Mohsin Kazmi | ed76ee2 | 2018-03-02 12:31:37 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018 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 | #include "vom/bond_interface_cmds.hpp" |
| 17 | |
| 18 | DEFINE_VAPI_MSG_IDS_BOND_API_JSON; |
| 19 | |
| 20 | namespace VOM { |
| 21 | namespace bond_interface_cmds { |
| 22 | create_cmd::create_cmd(HW::item<handle_t>& item, |
| 23 | const std::string& name, |
| 24 | const bond_interface::mode_t& mode, |
| 25 | const bond_interface::lb_t& lb, |
| 26 | const l2_address_t& l2_address) |
| 27 | : interface::create_cmd<vapi::Bond_create>(item, name) |
| 28 | , m_mode(mode) |
| 29 | , m_lb(lb) |
| 30 | , m_l2_address(l2_address) |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | rc_t |
| 35 | create_cmd::issue(connection& con) |
| 36 | { |
| 37 | msg_t req(con.ctx(), std::ref(*this)); |
| 38 | |
| 39 | auto& payload = req.get_request().get_payload(); |
| 40 | |
| 41 | if (m_l2_address != l2_address_t::ZERO) { |
| 42 | m_l2_address.to_bytes(payload.mac_address, 6); |
| 43 | payload.use_custom_mac = 1; |
| 44 | } |
| 45 | |
| 46 | payload.mode = m_mode.value(); |
| 47 | if ((m_mode == bond_interface::mode_t::XOR || |
| 48 | m_mode == bond_interface::mode_t::LACP) && |
| 49 | m_lb != bond_interface::lb_t::UNSPECIFIED) |
| 50 | payload.lb = m_lb.value(); |
| 51 | |
| 52 | VAPI_CALL(req.execute()); |
| 53 | |
| 54 | m_hw_item = wait(); |
| 55 | if (m_hw_item.rc() == rc_t::OK) { |
| 56 | insert_interface(); |
| 57 | } |
| 58 | |
| 59 | return rc_t::OK; |
| 60 | } |
| 61 | |
| 62 | std::string |
| 63 | create_cmd::to_string() const |
| 64 | { |
| 65 | std::ostringstream s; |
| 66 | s << "bond-intf-create: " << m_hw_item.to_string(); |
| 67 | |
| 68 | return (s.str()); |
| 69 | } |
| 70 | |
| 71 | delete_cmd::delete_cmd(HW::item<handle_t>& item) |
| 72 | : interface::delete_cmd<vapi::Bond_delete>(item) |
| 73 | { |
| 74 | } |
| 75 | |
| 76 | rc_t |
| 77 | delete_cmd::issue(connection& con) |
| 78 | { |
| 79 | msg_t req(con.ctx(), std::ref(*this)); |
| 80 | |
| 81 | auto& payload = req.get_request().get_payload(); |
| 82 | payload.sw_if_index = m_hw_item.data().value(); |
| 83 | |
| 84 | VAPI_CALL(req.execute()); |
| 85 | |
| 86 | wait(); |
| 87 | m_hw_item.set(rc_t::NOOP); |
| 88 | remove_interface(); |
| 89 | |
| 90 | return rc_t::OK; |
| 91 | } |
| 92 | |
| 93 | std::string |
| 94 | delete_cmd::to_string() const |
| 95 | { |
| 96 | std::ostringstream s; |
| 97 | s << "bond-itf-delete: " << m_hw_item.to_string(); |
| 98 | |
| 99 | return (s.str()); |
| 100 | } |
| 101 | |
| 102 | dump_cmd::dump_cmd() |
| 103 | { |
| 104 | } |
| 105 | |
| 106 | bool |
| 107 | dump_cmd::operator==(const dump_cmd& other) const |
| 108 | { |
| 109 | return (true); |
| 110 | } |
| 111 | |
| 112 | rc_t |
| 113 | dump_cmd::issue(connection& con) |
| 114 | { |
| 115 | m_dump.reset(new msg_t(con.ctx(), std::ref(*this))); |
| 116 | |
| 117 | VAPI_CALL(m_dump->execute()); |
| 118 | |
| 119 | wait(); |
| 120 | |
| 121 | return rc_t::OK; |
| 122 | } |
| 123 | |
| 124 | std::string |
| 125 | dump_cmd::to_string() const |
| 126 | { |
| 127 | return ("bond-itf-dump"); |
| 128 | } |
| 129 | } // namespace bond_interface_cmds |
| 130 | } // namespace VOM |
| 131 | |
| 132 | /* |
| 133 | * fd.io coding-style-patch-verification: ON |
| 134 | * |
| 135 | * Local Variables: |
| 136 | * eval: (c-set-style "mozilla") |
| 137 | * End: |
| 138 | */ |