Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 16 | #include <boost/algorithm/string.hpp> |
| 17 | |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 18 | #include "vom/interface_factory.hpp" |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 19 | #include "vom/sub_interface.hpp" |
| 20 | #include "vom/tap_interface.hpp" |
| 21 | |
| 22 | namespace VOM { |
| 23 | std::unique_ptr<interface> |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 24 | interface_factory::new_interface(const vapi_payload_sw_interface_details& vd) |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 25 | { |
| 26 | std::unique_ptr<interface> up_itf; |
| 27 | |
| 28 | /** |
| 29 | * Determine the interface type from the name and VLAN attributes |
| 30 | */ |
| 31 | std::string name = reinterpret_cast<const char*>(vd.interface_name); |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 32 | interface::type_t type = interface::type_t::from_string(name); |
| 33 | interface::admin_state_t state = |
| 34 | interface::admin_state_t::from_int(vd.link_up_down); |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 35 | handle_t hdl(vd.sw_if_index); |
| 36 | l2_address_t l2_address(vd.l2_address, vd.l2_address_length); |
| 37 | |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 38 | if (interface::type_t::AFPACKET == type) { |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 39 | /* |
| 40 | * need to strip VPP's "host-" prefix from the interface name |
| 41 | */ |
| 42 | name = name.substr(5); |
| 43 | } |
| 44 | /** |
| 45 | * if the tag is set, then we wrote that to specify a name to make |
| 46 | * the interface type more specific |
| 47 | */ |
| 48 | if (vd.tag[0] != 0) { |
| 49 | name = std::string(reinterpret_cast<const char*>(vd.tag)); |
| 50 | type = interface::type_t::from_string(name); |
| 51 | } |
| 52 | |
| 53 | /* |
| 54 | * pull out the other special cases |
| 55 | */ |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 56 | if (interface::type_t::TAP == type) { |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 57 | /* |
| 58 | * TAP interface |
| 59 | */ |
| 60 | up_itf.reset(new tap_interface(hdl, name, state, route::prefix_t())); |
| 61 | } else if ((name.find(".") != std::string::npos) && (0 != vd.sub_id)) { |
| 62 | /* |
| 63 | * Sub-interface |
| 64 | * split the name into the parent and VLAN |
| 65 | */ |
| 66 | std::vector<std::string> parts; |
| 67 | boost::split(parts, name, boost::is_any_of(".")); |
| 68 | |
| 69 | interface parent(parts[0], type, state); |
| 70 | up_itf.reset(new sub_interface(hdl, parent, state, vd.sub_id)); |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 71 | } else if (interface::type_t::VXLAN == type) { |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 72 | /* |
| 73 | * there's not enough inforation in a SW interface record to |
| 74 | * construct |
| 75 | * a VXLAN tunnel. so skip it. |
| 76 | */ |
| 77 | } else { |
| 78 | up_itf.reset(new interface(hdl, l2_address, name, type, state)); |
| 79 | } |
| 80 | |
| 81 | return (up_itf); |
| 82 | } |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 83 | }; // namespace VOM |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 84 | |
| 85 | /* |
| 86 | * fd.io coding-style-patch-verification: ON |
| 87 | * |
| 88 | * Local Variables: |
| 89 | * eval: (c-set-style "mozilla") |
| 90 | * End: |
| 91 | */ |