| // Copyright 2016 The ChromiumOS Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "patchpanel/manager.h" |
| |
| #include <arpa/inet.h> |
| #include <net/if.h> |
| #include <netinet/in.h> |
| #include <stdint.h> |
| #include <sys/prctl.h> |
| #include <sys/socket.h> |
| #include <sys/un.h> |
| |
| #include <algorithm> |
| #include <utility> |
| |
| #include <base/check.h> |
| #include <base/files/scoped_file.h> |
| #include <base/functional/bind.h> |
| #include <base/logging.h> |
| #include <base/notreached.h> |
| #include <base/posix/eintr_wrapper.h> |
| #include <base/strings/string_number_conversions.h> |
| #include <base/strings/string_split.h> |
| #include <base/strings/string_util.h> |
| #include <base/strings/stringprintf.h> |
| #include <base/task/single_thread_task_runner.h> |
| #include <brillo/key_value_store.h> |
| #include <brillo/minijail/minijail.h> |
| #include <metrics/metrics_library.h> |
| #include <shill/net/process_manager.h> |
| |
| #include "patchpanel/guest_ipv6_service.h" |
| #include "patchpanel/guest_type.h" |
| #include "patchpanel/ipc.h" |
| #include "patchpanel/mac_address_generator.h" |
| #include "patchpanel/metrics.h" |
| #include "patchpanel/net_util.h" |
| #include "patchpanel/proto_utils.h" |
| #include "patchpanel/routing_service.h" |
| #include "patchpanel/scoped_ns.h" |
| #include "patchpanel/system.h" |
| |
| namespace patchpanel { |
| namespace { |
| // Delay to restart IPv6 in a namespace to trigger SLAAC in the kernel. |
| constexpr int kIPv6RestartDelayMs = 300; |
| |
| // Passes |method_call| to |handler| and passes the response to |
| // |response_sender|. If |handler| returns nullptr, an empty response is |
| // created and sent. |
| void HandleSynchronousDBusMethodCall( |
| base::RepeatingCallback<std::unique_ptr<dbus::Response>(dbus::MethodCall*)> |
| handler, |
| dbus::MethodCall* method_call, |
| dbus::ExportedObject::ResponseSender response_sender) { |
| std::unique_ptr<dbus::Response> response = handler.Run(method_call); |
| if (!response) |
| response = dbus::Response::FromMethodCall(method_call); |
| std::move(response_sender).Run(std::move(response)); |
| } |
| |
| void RecordDbusEvent(std::unique_ptr<MetricsLibraryInterface>& metrics, |
| DbusUmaEvent event) { |
| metrics->SendEnumToUMA(kDbusUmaEventMetrics, event); |
| } |
| |
| } // namespace |
| |
| Manager::Manager(const base::FilePath& cmd_path) |
| : system_(std::make_unique<System>()), |
| process_manager_(shill::ProcessManager::GetInstance()), |
| datapath_(std::make_unique<Datapath>(system_.get())) { |
| adb_proxy_ = std::make_unique<patchpanel::SubprocessController>( |
| system_.get(), process_manager_, cmd_path, "--adb_proxy_fd"); |
| mcast_proxy_ = std::make_unique<patchpanel::SubprocessController>( |
| system_.get(), process_manager_, cmd_path, "--mcast_proxy_fd"); |
| nd_proxy_ = std::make_unique<patchpanel::SubprocessController>( |
| system_.get(), process_manager_, cmd_path, "--nd_proxy_fd"); |
| } |
| |
| std::map<const std::string, bool> Manager::cached_feature_enabled_ = {}; |
| |
| bool Manager::ShouldEnableFeature( |
| int min_android_sdk_version, |
| int min_chrome_milestone, |
| const std::vector<std::string>& supported_boards, |
| const std::string& feature_name) { |
| static const char kLsbReleasePath[] = "/etc/lsb-release"; |
| |
| const auto& cached_result = cached_feature_enabled_.find(feature_name); |
| if (cached_result != cached_feature_enabled_.end()) |
| return cached_result->second; |
| |
| auto check = [min_android_sdk_version, min_chrome_milestone, |
| &supported_boards, &feature_name]() { |
| brillo::KeyValueStore store; |
| if (!store.Load(base::FilePath(kLsbReleasePath))) { |
| LOG(ERROR) << "Could not read lsb-release"; |
| return false; |
| } |
| |
| std::string value; |
| if (!store.GetString("CHROMEOS_ARC_ANDROID_SDK_VERSION", &value)) { |
| LOG(ERROR) << feature_name |
| << " disabled - cannot determine Android SDK version"; |
| return false; |
| } |
| int ver = 0; |
| if (!base::StringToInt(value.c_str(), &ver)) { |
| LOG(ERROR) << feature_name << " disabled - invalid Android SDK version"; |
| return false; |
| } |
| if (ver < min_android_sdk_version) { |
| LOG(INFO) << feature_name << " disabled for Android SDK " << value; |
| return false; |
| } |
| |
| if (!store.GetString("CHROMEOS_RELEASE_CHROME_MILESTONE", &value)) { |
| LOG(ERROR) << feature_name |
| << " disabled - cannot determine ChromeOS milestone"; |
| return false; |
| } |
| if (!base::StringToInt(value.c_str(), &ver)) { |
| LOG(ERROR) << feature_name << " disabled - invalid ChromeOS milestone"; |
| return false; |
| } |
| if (ver < min_chrome_milestone) { |
| LOG(INFO) << feature_name << " disabled for ChromeOS milestone " << value; |
| return false; |
| } |
| |
| if (!store.GetString("CHROMEOS_RELEASE_BOARD", &value)) { |
| LOG(ERROR) << feature_name << " disabled - cannot determine board"; |
| return false; |
| } |
| if (!supported_boards.empty() && |
| std::find(supported_boards.begin(), supported_boards.end(), value) == |
| supported_boards.end()) { |
| LOG(INFO) << feature_name << " disabled for board " << value; |
| return false; |
| } |
| return true; |
| }; |
| |
| bool result = check(); |
| cached_feature_enabled_.emplace(feature_name, result); |
| return result; |
| } |
| |
| int Manager::OnInit() { |
| prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); |
| |
| // Initialize |process_manager_| before creating subprocesses. |
| process_manager_->Init(); |
| |
| // Start the subprocesses and handle their lifecycle. |
| adb_proxy_->Start(); |
| mcast_proxy_->Start(); |
| nd_proxy_->Start(); |
| |
| // Run after Daemon::OnInit(). |
| base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask( |
| FROM_HERE, |
| base::BindOnce(&Manager::InitialSetup, weak_factory_.GetWeakPtr())); |
| |
| return DBusDaemon::OnInit(); |
| } |
| |
| void Manager::InitialSetup() { |
| LOG(INFO) << "Setting up DBus service interface"; |
| dbus_svc_path_ = bus_->GetExportedObject( |
| dbus::ObjectPath(patchpanel::kPatchPanelServicePath)); |
| if (!dbus_svc_path_) { |
| LOG(FATAL) << "Failed to export " << patchpanel::kPatchPanelServicePath |
| << " object"; |
| } |
| |
| metrics_ = std::make_unique<MetricsLibrary>(); |
| shill_client_ = std::make_unique<ShillClient>(bus_, system_.get()); |
| |
| using ServiceMethod = |
| std::unique_ptr<dbus::Response> (Manager::*)(dbus::MethodCall*); |
| const std::map<const char*, ServiceMethod> kServiceMethods = { |
| {patchpanel::kArcShutdownMethod, &Manager::OnArcShutdown}, |
| {patchpanel::kArcStartupMethod, &Manager::OnArcStartup}, |
| {patchpanel::kArcVmShutdownMethod, &Manager::OnArcVmShutdown}, |
| {patchpanel::kArcVmStartupMethod, &Manager::OnArcVmStartup}, |
| {patchpanel::kConnectNamespaceMethod, &Manager::OnConnectNamespace}, |
| {patchpanel::kCreateLocalOnlyNetworkMethod, |
| &Manager::OnCreateLocalOnlyNetwork}, |
| {patchpanel::kCreateTetheredNetworkMethod, |
| &Manager::OnCreateTetheredNetwork}, |
| {patchpanel::kDownstreamNetworkInfoMethod, |
| &Manager::OnDownstreamNetworkInfo}, |
| {patchpanel::kGetDevicesMethod, &Manager::OnGetDevices}, |
| {patchpanel::kGetTrafficCountersMethod, &Manager::OnGetTrafficCounters}, |
| {patchpanel::kModifyPortRuleMethod, &Manager::OnModifyPortRule}, |
| {patchpanel::kPluginVmShutdownMethod, &Manager::OnPluginVmShutdown}, |
| {patchpanel::kPluginVmStartupMethod, &Manager::OnPluginVmStartup}, |
| {patchpanel::kSetDnsRedirectionRuleMethod, |
| &Manager::OnSetDnsRedirectionRule}, |
| {patchpanel::kSetVpnIntentMethod, &Manager::OnSetVpnIntent}, |
| {patchpanel::kSetVpnLockdown, &Manager::OnSetVpnLockdown}, |
| {patchpanel::kTerminaVmShutdownMethod, &Manager::OnTerminaVmShutdown}, |
| {patchpanel::kTerminaVmStartupMethod, &Manager::OnTerminaVmStartup}, |
| }; |
| |
| for (const auto& kv : kServiceMethods) { |
| if (!dbus_svc_path_->ExportMethodAndBlock( |
| patchpanel::kPatchPanelInterface, kv.first, |
| base::BindRepeating( |
| &HandleSynchronousDBusMethodCall, |
| base::BindRepeating(kv.second, base::Unretained(this))))) { |
| LOG(FATAL) << "Failed to export method " << kv.first; |
| } |
| } |
| |
| if (!bus_->RequestOwnershipAndBlock(patchpanel::kPatchPanelServiceName, |
| dbus::Bus::REQUIRE_PRIMARY)) { |
| LOG(FATAL) << "Failed to take ownership of " |
| << patchpanel::kPatchPanelServiceName; |
| } |
| LOG(INFO) << "DBus service interface ready"; |
| |
| routing_svc_ = std::make_unique<RoutingService>(); |
| counters_svc_ = std::make_unique<CountersService>(datapath_.get()); |
| |
| datapath_->Start(); |
| |
| shill_client_->RegisterDevicesChangedHandler(base::BindRepeating( |
| &Manager::OnShillDevicesChanged, weak_factory_.GetWeakPtr())); |
| shill_client_->RegisterIPConfigsChangedHandler(base::BindRepeating( |
| &Manager::OnIPConfigsChanged, weak_factory_.GetWeakPtr())); |
| shill_client_->RegisterIPv6NetworkChangedHandler(base::BindRepeating( |
| &Manager::OnIPv6NetworkChanged, weak_factory_.GetWeakPtr())); |
| |
| GuestMessage::GuestType arc_guest = |
| USE_ARCVM ? GuestMessage::ARC_VM : GuestMessage::ARC; |
| arc_svc_ = std::make_unique<ArcService>( |
| datapath_.get(), &addr_mgr_, arc_guest, metrics_.get(), |
| base::BindRepeating(&Manager::OnGuestDeviceChanged, |
| weak_factory_.GetWeakPtr())); |
| cros_svc_ = std::make_unique<CrostiniService>( |
| &addr_mgr_, datapath_.get(), |
| base::BindRepeating(&Manager::OnGuestDeviceChanged, |
| weak_factory_.GetWeakPtr())); |
| network_monitor_svc_ = std::make_unique<NetworkMonitorService>( |
| shill_client_.get(), |
| base::BindRepeating(&Manager::OnNeighborReachabilityEvent, |
| weak_factory_.GetWeakPtr())); |
| ipv6_svc_ = std::make_unique<GuestIPv6Service>( |
| nd_proxy_.get(), datapath_.get(), shill_client_.get(), system_.get()); |
| |
| network_monitor_svc_->Start(); |
| ipv6_svc_->Start(); |
| |
| // Shill client's default devices methods trigger the Manager's callbacks on |
| // registration. Call them after everything is set up. |
| shill_client_->RegisterDefaultLogicalDeviceChangedHandler( |
| base::BindRepeating(&Manager::OnShillDefaultLogicalDeviceChanged, |
| weak_factory_.GetWeakPtr())); |
| shill_client_->RegisterDefaultPhysicalDeviceChangedHandler( |
| base::BindRepeating(&Manager::OnShillDefaultPhysicalDeviceChanged, |
| weak_factory_.GetWeakPtr())); |
| } |
| |
| void Manager::OnShutdown(int* exit_code) { |
| LOG(INFO) << "Shutting down and cleaning up"; |
| network_monitor_svc_.reset(); |
| cros_svc_.reset(); |
| arc_svc_.reset(); |
| // Tear down any remaining active lifeline file descriptors. |
| std::vector<int> lifeline_fds; |
| for (const auto& kv : connected_namespaces_) { |
| lifeline_fds.push_back(kv.first); |
| } |
| for (const auto& kv : dns_redirection_rules_) { |
| lifeline_fds.push_back(kv.first); |
| } |
| for (const int fdkey : lifeline_fds) { |
| OnLifelineFdClosed(fdkey); |
| } |
| datapath_->Stop(); |
| if (bus_) { |
| bus_->ShutdownAndBlock(); |
| } |
| |
| process_manager_->Stop(); |
| brillo::DBusDaemon::OnShutdown(exit_code); |
| } |
| |
| void Manager::OnShillDefaultLogicalDeviceChanged( |
| const ShillClient::Device& new_device, |
| const ShillClient::Device& prev_device) { |
| // Only take into account interface switches and ignore layer 3 property |
| // changes. |
| if (prev_device.ifname == new_device.ifname) |
| return; |
| |
| if (prev_device.type == ShillClient::Device::Type::kVPN) { |
| datapath_->StopVpnRouting(prev_device.ifname); |
| counters_svc_->OnVpnDeviceRemoved(prev_device.ifname); |
| } |
| |
| if (new_device.type == ShillClient::Device::Type::kVPN) { |
| counters_svc_->OnVpnDeviceAdded(new_device.ifname); |
| datapath_->StartVpnRouting(new_device.ifname); |
| } |
| |
| // When the default logical network changes, Crostini's tap devices must leave |
| // their current forwarding group for multicast and IPv6 ndproxy and join the |
| // forwarding group of the new logical default network. |
| for (const auto* tap_device : cros_svc_->GetDevices()) { |
| StopForwarding(prev_device.ifname, tap_device->host_ifname()); |
| StartForwarding(new_device.ifname, tap_device->host_ifname()); |
| } |
| |
| // When the default logical network changes, ConnectedNamespaces' devices |
| // which follow the logical network must leave their current forwarding group |
| // for IPv6 ndproxy and join the forwarding group of the new logical default |
| // network. This is marked by empty |outbound_ifname| and |route_on_vpn| |
| // with the value of true. |
| for (auto& [_, nsinfo] : connected_namespaces_) { |
| if (!nsinfo.outbound_ifname.empty() || !nsinfo.route_on_vpn) { |
| continue; |
| } |
| StopForwarding(prev_device.ifname, nsinfo.host_ifname, |
| ForwardingSet{.ipv6 = true}); |
| nsinfo.tracked_outbound_ifname = new_device.ifname; |
| StartForwarding(new_device.ifname, nsinfo.host_ifname, |
| ForwardingSet{.ipv6 = true}); |
| |
| // Disable and re-enable IPv6. This is necessary to trigger SLAAC in the |
| // kernel to send RS. Add a delay for the forwarding to be set up. |
| base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask( |
| FROM_HERE, |
| base::BindOnce(&Manager::RestartIPv6, weak_factory_.GetWeakPtr(), |
| nsinfo.netns_name), |
| base::Milliseconds(kIPv6RestartDelayMs)); |
| } |
| } |
| |
| void Manager::OnShillDefaultPhysicalDeviceChanged( |
| const ShillClient::Device& new_device, |
| const ShillClient::Device& prev_device) { |
| // Only take into account interface switches and ignore layer 3 property |
| // changes. |
| if (prev_device.ifname == new_device.ifname) |
| return; |
| |
| // When the default physical network changes, ConnectedNamespaces' devices |
| // which follow the physical network must leave their current forwarding group |
| // for IPv6 ndproxy and join the forwarding group of the new physical default |
| // network. This is marked by empty |outbound_ifname| and |route_on_vpn| |
| // with the value of false. |
| for (auto& [_, nsinfo] : connected_namespaces_) { |
| if (!nsinfo.outbound_ifname.empty() || nsinfo.route_on_vpn) { |
| continue; |
| } |
| StopForwarding(prev_device.ifname, nsinfo.host_ifname, |
| ForwardingSet{.ipv6 = true}); |
| nsinfo.tracked_outbound_ifname = new_device.ifname; |
| StartForwarding(new_device.ifname, nsinfo.host_ifname, |
| ForwardingSet{.ipv6 = true}); |
| |
| // Disable and re-enable IPv6. This is necessary to trigger SLAAC in the |
| // kernel to send RS. Add a delay for the forwarding to be set up. |
| base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask( |
| FROM_HERE, |
| base::BindOnce(&Manager::RestartIPv6, weak_factory_.GetWeakPtr(), |
| nsinfo.netns_name), |
| base::Milliseconds(kIPv6RestartDelayMs)); |
| } |
| } |
| |
| void Manager::RestartIPv6(const std::string& netns_name) { |
| auto ns = ScopedNS::EnterNetworkNS(netns_name); |
| if (!ns) { |
| LOG(ERROR) << "Invalid namespace name " << netns_name; |
| return; |
| } |
| |
| if (datapath_) { |
| datapath_->RestartIPv6(); |
| } |
| } |
| |
| void Manager::OnShillDevicesChanged(const std::vector<std::string>& added, |
| const std::vector<std::string>& removed) { |
| // Rules for traffic counters should be installed at the first and removed at |
| // the last to make sure every packet is counted. |
| for (const std::string& ifname : removed) { |
| for (auto& [_, nsinfo] : connected_namespaces_) { |
| if (nsinfo.outbound_ifname != ifname) { |
| continue; |
| } |
| StopForwarding(nsinfo.outbound_ifname, nsinfo.host_ifname, |
| ForwardingSet{.ipv6 = true}); |
| } |
| StopForwarding(ifname, /*ifname_virtual=*/""); |
| datapath_->StopConnectionPinning(ifname); |
| datapath_->RemoveRedirectDnsRule(ifname); |
| arc_svc_->RemoveDevice(ifname); |
| counters_svc_->OnPhysicalDeviceRemoved(ifname); |
| |
| // We have no good way to tell whether the removed Device was cellular now, |
| // so we always call this. StopSourcePrefixEnforcement will find out by |
| // matching |ifname| with existing rules. |
| datapath_->StopSourceIPv6PrefixEnforcement(ifname); |
| } |
| |
| for (const std::string& ifname : added) { |
| counters_svc_->OnPhysicalDeviceAdded(ifname); |
| for (auto& [_, nsinfo] : connected_namespaces_) { |
| if (nsinfo.outbound_ifname != ifname) { |
| continue; |
| } |
| StartForwarding(nsinfo.outbound_ifname, nsinfo.host_ifname, |
| ForwardingSet{.ipv6 = true}); |
| base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask( |
| FROM_HERE, |
| base::BindOnce(&Manager::RestartIPv6, weak_factory_.GetWeakPtr(), |
| nsinfo.netns_name), |
| base::Milliseconds(kIPv6RestartDelayMs)); |
| } |
| datapath_->StartConnectionPinning(ifname); |
| ShillClient::Device shill_device; |
| if (!shill_client_->GetDeviceProperties(ifname, &shill_device)) |
| continue; |
| |
| if (!shill_device.ipconfig.ipv4_dns_addresses.empty()) |
| datapath_->AddRedirectDnsRule( |
| ifname, shill_device.ipconfig.ipv4_dns_addresses.front()); |
| |
| arc_svc_->AddDevice(ifname, shill_device.type); |
| |
| if (shill_device.type == ShillClient::Device::Type::kCellular) { |
| datapath_->StartSourceIPv6PrefixEnforcement(ifname); |
| } |
| } |
| } |
| |
| void Manager::OnIPConfigsChanged(const std::string& ifname, |
| const ShillClient::IPConfig& ipconfig) { |
| if (ipconfig.ipv4_dns_addresses.empty()) { |
| datapath_->RemoveRedirectDnsRule(ifname); |
| } else { |
| datapath_->AddRedirectDnsRule(ifname, ipconfig.ipv4_dns_addresses.front()); |
| } |
| } |
| |
| void Manager::OnIPv6NetworkChanged(const std::string& ifname, |
| const std::string& ipv6_address) { |
| ShillClient::Device shill_device; |
| if (!shill_client_->GetDeviceProperties(ifname, &shill_device)) { |
| LOG(ERROR) << __func__ << ": unknown shill Device " << ifname; |
| return; |
| } |
| |
| if (ipv6_address.empty()) { |
| if (shill_device.type == ShillClient::Device::Type::kCellular) { |
| datapath_->UpdateSourceEnforcementIPv6Prefix(ifname, |
| /*prefix=*/std::nullopt); |
| } |
| return; |
| } |
| |
| ipv6_svc_->OnUplinkIPv6Changed(ifname, ipv6_address); |
| |
| for (auto& [_, nsinfo] : connected_namespaces_) { |
| if (nsinfo.outbound_ifname != ifname) { |
| continue; |
| } |
| |
| // Disable and re-enable IPv6 inside the namespace. This is necessary to |
| // trigger SLAAC in the kernel to send RS. |
| RestartIPv6(nsinfo.netns_name); |
| } |
| |
| if (shill_device.type == ShillClient::Device::Type::kCellular) { |
| // TODO(b/279871350): Support prefix shorter than /64. |
| std::string prefix = GuestIPv6Service::IPAddressTo64BitPrefix(ipv6_address); |
| if (prefix.empty()) { |
| LOG(ERROR) << "Fail to get prefix from IP address \"" << ipv6_address |
| << "\""; |
| return; |
| } |
| datapath_->UpdateSourceEnforcementIPv6Prefix(ifname, prefix); |
| } |
| } |
| |
| void Manager::OnGuestDeviceChanged(const Device& virtual_device, |
| Device::ChangeEvent event, |
| GuestMessage::GuestType guest_type) { |
| dbus::Signal signal(kPatchPanelInterface, kNetworkDeviceChangedSignal); |
| NetworkDeviceChangedSignal proto; |
| proto.set_event(event == Device::ChangeEvent::kAdded |
| ? NetworkDeviceChangedSignal::DEVICE_ADDED |
| : NetworkDeviceChangedSignal::DEVICE_REMOVED); |
| auto* dev = proto.mutable_device(); |
| FillDeviceProto(virtual_device, dev); |
| if (const auto* subnet = virtual_device.config().ipv4_subnet()) { |
| FillSubnetProto(*subnet, dev->mutable_ipv4_subnet()); |
| } |
| switch (guest_type) { |
| case GuestMessage::ARC: |
| dev->set_guest_type(NetworkDevice::ARC); |
| break; |
| case GuestMessage::ARC_VM: |
| dev->set_guest_type(NetworkDevice::ARCVM); |
| break; |
| case GuestMessage::TERMINA_VM: |
| dev->set_guest_type(NetworkDevice::TERMINA_VM); |
| break; |
| case GuestMessage::PLUGIN_VM: |
| dev->set_guest_type(NetworkDevice::PLUGIN_VM); |
| break; |
| default: |
| dev->set_guest_type(NetworkDevice::UNKNOWN); |
| LOG(ERROR) << "Unknown patchpanel Device type"; |
| return; |
| } |
| |
| if (dev->guest_type() != NetworkDevice::UNKNOWN) { |
| const std::string& upstream_device = |
| (guest_type == GuestMessage::ARC || guest_type == GuestMessage::ARC_VM) |
| ? virtual_device.phys_ifname() |
| : shill_client_->default_logical_interface(); |
| |
| if (event == Device::ChangeEvent::kAdded) { |
| StartForwarding(upstream_device, virtual_device.host_ifname()); |
| } else if (event == Device::ChangeEvent::kRemoved) { |
| StopForwarding(upstream_device, virtual_device.host_ifname()); |
| } |
| } |
| |
| dbus::MessageWriter(&signal).AppendProtoAsArrayOfBytes(proto); |
| dbus_svc_path_->SendSignal(&signal); |
| } |
| |
| bool Manager::StartArc(pid_t pid) { |
| if (pid < 0) { |
| LOG(ERROR) << "Invalid ARC pid: " << pid; |
| return false; |
| } |
| |
| if (!arc_svc_->Start(static_cast<uint32_t>(pid))) |
| return false; |
| |
| GuestMessage msg; |
| msg.set_event(GuestMessage::START); |
| msg.set_type(GuestMessage::ARC); |
| msg.set_arc_pid(pid); |
| SendGuestMessage(msg); |
| |
| return true; |
| } |
| |
| void Manager::StopArc() { |
| GuestMessage msg; |
| msg.set_event(GuestMessage::STOP); |
| msg.set_type(GuestMessage::ARC); |
| SendGuestMessage(msg); |
| |
| // After the ARC container has stopped, the pid is not known anymore. |
| // The pid argument is ignored by ArcService. |
| arc_svc_->Stop(0); |
| } |
| |
| bool Manager::StartArcVm(uint32_t cid) { |
| if (!arc_svc_->Start(cid)) |
| return false; |
| |
| GuestMessage msg; |
| msg.set_event(GuestMessage::START); |
| msg.set_type(GuestMessage::ARC_VM); |
| msg.set_arcvm_vsock_cid(cid); |
| SendGuestMessage(msg); |
| |
| return true; |
| } |
| |
| void Manager::StopArcVm(uint32_t cid) { |
| GuestMessage msg; |
| msg.set_event(GuestMessage::STOP); |
| msg.set_type(GuestMessage::ARC_VM); |
| msg.set_arcvm_vsock_cid(cid); |
| SendGuestMessage(msg); |
| |
| arc_svc_->Stop(cid); |
| } |
| |
| bool Manager::StartCrosVm(uint64_t vm_id, |
| GuestMessage::GuestType vm_type, |
| uint32_t subnet_index) { |
| DCHECK(vm_type == GuestMessage::TERMINA_VM || |
| vm_type == GuestMessage::PLUGIN_VM); |
| |
| if (!cros_svc_->Start(vm_id, vm_type == GuestMessage::TERMINA_VM, |
| subnet_index)) |
| return false; |
| |
| GuestMessage msg; |
| msg.set_event(GuestMessage::START); |
| msg.set_type(vm_type); |
| SendGuestMessage(msg); |
| |
| return true; |
| } |
| |
| void Manager::StopCrosVm(uint64_t vm_id, GuestMessage::GuestType vm_type) { |
| GuestMessage msg; |
| msg.set_event(GuestMessage::STOP); |
| msg.set_type(vm_type); |
| SendGuestMessage(msg); |
| |
| cros_svc_->Stop(vm_id, vm_type == GuestMessage::TERMINA_VM); |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnGetDevices( |
| dbus::MethodCall* method_call) { |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::GetDevicesRequest request; |
| patchpanel::GetDevicesResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse request"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| static const auto arc_guest_type = |
| USE_ARCVM ? NetworkDevice::ARCVM : NetworkDevice::ARC; |
| for (const auto* arc_device : arc_svc_->GetDevices()) { |
| auto* dev = response.add_devices(); |
| FillDeviceProto(*arc_device, dev); |
| FillDeviceDnsProxyProto(*arc_device, dev, dns_proxy_ipv4_addrs_, |
| dns_proxy_ipv6_addrs_); |
| dev->set_guest_type(arc_guest_type); |
| if (const auto* subnet = arc_device->config().ipv4_subnet()) { |
| FillSubnetProto(*subnet, dev->mutable_ipv4_subnet()); |
| } |
| } |
| |
| for (const auto* crosvm_device : cros_svc_->GetDevices()) { |
| auto* dev = response.add_devices(); |
| FillDeviceProto(*crosvm_device, dev); |
| switch (crosvm_device->type()) { |
| case GuestType::kVmTermina: |
| dev->set_guest_type(NetworkDevice::TERMINA_VM); |
| break; |
| case GuestType::kVmPlugin: |
| dev->set_guest_type(NetworkDevice::PLUGIN_VM); |
| break; |
| default: |
| LOG(ERROR) |
| << "Unexpected patchpanel Device type for CrostiniService Device: " |
| << crosvm_device->type(); |
| continue; |
| } |
| if (const auto* subnet = crosvm_device->config().ipv4_subnet()) { |
| FillSubnetProto(*subnet, dev->mutable_ipv4_subnet()); |
| } |
| } |
| |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnArcStartup( |
| dbus::MethodCall* method_call) { |
| LOG(INFO) << "ARC++ starting up"; |
| RecordDbusEvent(metrics_, DbusUmaEvent::kArcStartup); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::ArcStartupRequest request; |
| patchpanel::ArcStartupResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse request"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| if (!StartArc(request.pid())) |
| LOG(ERROR) << "Failed to start ARC++ network service"; |
| |
| RecordDbusEvent(metrics_, DbusUmaEvent::kArcStartupSuccess); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnArcShutdown( |
| dbus::MethodCall* method_call) { |
| LOG(INFO) << "ARC++ shutting down"; |
| RecordDbusEvent(metrics_, DbusUmaEvent::kArcShutdown); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::ArcShutdownRequest request; |
| patchpanel::ArcShutdownResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse request"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| StopArc(); |
| |
| RecordDbusEvent(metrics_, DbusUmaEvent::kArcShutdownSuccess); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnArcVmStartup( |
| dbus::MethodCall* method_call) { |
| LOG(INFO) << "ARCVM starting up"; |
| RecordDbusEvent(metrics_, DbusUmaEvent::kArcVmStartup); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::ArcVmStartupRequest request; |
| patchpanel::ArcVmStartupResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse request"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| if (!StartArcVm(request.cid())) { |
| LOG(ERROR) << "Failed to start ARCVM network service"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| // Populate the response with the interface configurations of the known ARC |
| // Devices |
| for (const auto* config : arc_svc_->GetDeviceConfigs()) { |
| if (config->tap_ifname().empty()) |
| continue; |
| |
| // TODO(hugobenichi) Use FillDeviceProto. |
| auto* dev = response.add_devices(); |
| dev->set_ifname(config->tap_ifname()); |
| dev->set_ipv4_addr(config->guest_ipv4_addr()); |
| dev->set_guest_type(NetworkDevice::ARCVM); |
| } |
| |
| RecordDbusEvent(metrics_, DbusUmaEvent::kArcVmStartupSuccess); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnArcVmShutdown( |
| dbus::MethodCall* method_call) { |
| LOG(INFO) << "ARCVM shutting down"; |
| RecordDbusEvent(metrics_, DbusUmaEvent::kArcVmShutdown); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::ArcVmShutdownRequest request; |
| patchpanel::ArcVmShutdownResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse request"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| StopArcVm(request.cid()); |
| |
| RecordDbusEvent(metrics_, DbusUmaEvent::kArcVmShutdownSuccess); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnTerminaVmStartup( |
| dbus::MethodCall* method_call) { |
| LOG(INFO) << "Termina VM starting up"; |
| RecordDbusEvent(metrics_, DbusUmaEvent::kTerminaVmStartup); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::TerminaVmStartupRequest request; |
| patchpanel::TerminaVmStartupResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse request"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| const uint32_t cid = request.cid(); |
| if (!StartCrosVm(cid, GuestMessage::TERMINA_VM)) { |
| LOG(ERROR) << "Failed to start Termina VM network service"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| const auto* const tap = cros_svc_->TAP(cid, /*is_termina=*/true); |
| if (!tap) { |
| LOG(DFATAL) << "Termina TAP Device missing"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| const auto* termina_subnet = tap->config().ipv4_subnet(); |
| if (!termina_subnet) { |
| LOG(DFATAL) << "Missing required Termina IPv4 subnet for {cid: " << cid |
| << "}"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| const auto* lxd_subnet = tap->config().lxd_ipv4_subnet(); |
| if (!lxd_subnet) { |
| LOG(DFATAL) << "Missing required lxd container IPv4 subnet for {cid: " |
| << cid << "}"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| auto* dev = response.mutable_device(); |
| dev->set_guest_type(NetworkDevice::TERMINA_VM); |
| FillDeviceProto(*tap, dev); |
| FillSubnetProto(*termina_subnet, dev->mutable_ipv4_subnet()); |
| FillSubnetProto(*lxd_subnet, response.mutable_container_subnet()); |
| |
| RecordDbusEvent(metrics_, DbusUmaEvent::kTerminaVmStartupSuccess); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnTerminaVmShutdown( |
| dbus::MethodCall* method_call) { |
| LOG(INFO) << "Termina VM shutting down"; |
| RecordDbusEvent(metrics_, DbusUmaEvent::kTerminaVmShutdown); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::TerminaVmShutdownRequest request; |
| patchpanel::TerminaVmShutdownResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse request"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| StopCrosVm(request.cid(), GuestMessage::TERMINA_VM); |
| |
| RecordDbusEvent(metrics_, DbusUmaEvent::kTerminaVmShutdownSuccess); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnPluginVmStartup( |
| dbus::MethodCall* method_call) { |
| LOG(INFO) << "Plugin VM starting up"; |
| RecordDbusEvent(metrics_, DbusUmaEvent::kPluginVmStartup); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::PluginVmStartupRequest request; |
| patchpanel::PluginVmStartupResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse request"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| if (request.subnet_index() < 0) { |
| LOG(ERROR) << "Invalid subnet index: " << request.subnet_index(); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| const uint32_t subnet_index = static_cast<uint32_t>(request.subnet_index()); |
| const uint64_t vm_id = request.id(); |
| if (!StartCrosVm(vm_id, GuestMessage::PLUGIN_VM, subnet_index)) { |
| LOG(ERROR) << "Failed to start Plugin VM network service"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| const auto* const tap = cros_svc_->TAP(vm_id, /*is_termina=*/false); |
| if (!tap) { |
| LOG(DFATAL) << "Plugin VM TAP Device missing"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| const auto* subnet = tap->config().ipv4_subnet(); |
| if (!subnet) { |
| LOG(DFATAL) << "Missing required subnet for {cid: " << vm_id << "}"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| auto* dev = response.mutable_device(); |
| dev->set_guest_type(NetworkDevice::PLUGIN_VM); |
| FillDeviceProto(*tap, dev); |
| FillSubnetProto(*subnet, dev->mutable_ipv4_subnet()); |
| |
| RecordDbusEvent(metrics_, DbusUmaEvent::kPluginVmStartupSuccess); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnPluginVmShutdown( |
| dbus::MethodCall* method_call) { |
| LOG(INFO) << "Plugin VM shutting down"; |
| RecordDbusEvent(metrics_, DbusUmaEvent::kPluginVmShutdown); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::PluginVmShutdownRequest request; |
| patchpanel::PluginVmShutdownResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse request"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| StopCrosVm(request.id(), GuestMessage::PLUGIN_VM); |
| |
| RecordDbusEvent(metrics_, DbusUmaEvent::kPluginVmShutdownSuccess); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnSetVpnIntent( |
| dbus::MethodCall* method_call) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kSetVpnIntent); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::SetVpnIntentRequest request; |
| patchpanel::SetVpnIntentResponse response; |
| |
| bool success = reader.PopArrayOfBytesAsProto(&request); |
| if (!success) { |
| LOG(ERROR) << "Unable to parse SetVpnIntentRequest"; |
| // Do not return yet to make sure we close the received fd. |
| } |
| |
| base::ScopedFD client_socket; |
| reader.PopFileDescriptor(&client_socket); |
| |
| if (success) |
| success = routing_svc_->SetVpnFwmark(client_socket.get(), request.policy()); |
| |
| response.set_success(success); |
| |
| RecordDbusEvent(metrics_, DbusUmaEvent::kSetVpnIntentSuccess); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnConnectNamespace( |
| dbus::MethodCall* method_call) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kConnectNamespace); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::ConnectNamespaceRequest request; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse ConnectNamespaceRequest"; |
| // Do not return yet to make sure we close the received fd and |
| // validate other arguments. |
| writer.AppendProtoAsArrayOfBytes(patchpanel::ConnectNamespaceResponse()); |
| return dbus_response; |
| } |
| |
| base::ScopedFD client_fd; |
| reader.PopFileDescriptor(&client_fd); |
| if (!client_fd.is_valid()) { |
| LOG(ERROR) << "Invalid file descriptor"; |
| writer.AppendProtoAsArrayOfBytes(patchpanel::ConnectNamespaceResponse()); |
| return dbus_response; |
| } |
| |
| pid_t pid = request.pid(); |
| if (pid == 1 || pid == getpid()) { |
| LOG(ERROR) << "Privileged namespace pid " << pid; |
| writer.AppendProtoAsArrayOfBytes(patchpanel::ConnectNamespaceResponse()); |
| return dbus_response; |
| } |
| if (pid != ConnectedNamespace::kNewNetnsPid) { |
| auto ns = ScopedNS::EnterNetworkNS(pid); |
| if (!ns) { |
| LOG(ERROR) << "Invalid namespace pid " << pid; |
| writer.AppendProtoAsArrayOfBytes(patchpanel::ConnectNamespaceResponse()); |
| return dbus_response; |
| } |
| } |
| |
| const std::string& outbound_ifname = request.outbound_physical_device(); |
| if (!outbound_ifname.empty() && |
| !shill_client_->has_interface(outbound_ifname)) { |
| LOG(ERROR) << "Invalid outbound ifname " << outbound_ifname; |
| writer.AppendProtoAsArrayOfBytes(patchpanel::ConnectNamespaceResponse()); |
| return dbus_response; |
| } |
| |
| const auto response = ConnectNamespace(std::move(client_fd), request); |
| if (!response->netns_name().empty()) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kConnectNamespaceSuccess); |
| } |
| |
| writer.AppendProtoAsArrayOfBytes(*response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnGetTrafficCounters( |
| dbus::MethodCall* method_call) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kGetTrafficCounters); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::TrafficCountersRequest request; |
| patchpanel::TrafficCountersResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse TrafficCountersRequest"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| const std::set<std::string> shill_devices{request.devices().begin(), |
| request.devices().end()}; |
| const auto counters = counters_svc_->GetCounters(shill_devices); |
| for (const auto& kv : counters) { |
| auto* traffic_counter = response.add_counters(); |
| const auto& key = kv.first; |
| const auto& counter = kv.second; |
| traffic_counter->set_source(key.source); |
| traffic_counter->set_device(key.ifname); |
| traffic_counter->set_ip_family(key.ip_family); |
| traffic_counter->set_rx_bytes(counter.rx_bytes); |
| traffic_counter->set_rx_packets(counter.rx_packets); |
| traffic_counter->set_tx_bytes(counter.tx_bytes); |
| traffic_counter->set_tx_packets(counter.tx_packets); |
| } |
| |
| RecordDbusEvent(metrics_, DbusUmaEvent::kGetTrafficCountersSuccess); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnModifyPortRule( |
| dbus::MethodCall* method_call) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kModifyPortRule); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::ModifyPortRuleRequest request; |
| patchpanel::ModifyPortRuleResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse ModifyPortRequest"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| bool success = datapath_->ModifyPortRule(request); |
| response.set_success(success); |
| if (success) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kModifyPortRuleSuccess); |
| } |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnSetVpnLockdown( |
| dbus::MethodCall* method_call) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kSetVpnLockdown); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::SetVpnLockdownRequest request; |
| patchpanel::SetVpnLockdownResponse response; |
| |
| if (reader.PopArrayOfBytesAsProto(&request)) { |
| datapath_->SetVpnLockdown(request.enable_vpn_lockdown()); |
| } else { |
| LOG(ERROR) << "Unable to parse SetVpnLockdownRequest"; |
| } |
| |
| RecordDbusEvent(metrics_, DbusUmaEvent::kSetVpnLockdownSuccess); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnSetDnsRedirectionRule( |
| dbus::MethodCall* method_call) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kSetDnsRedirectionRule); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::SetDnsRedirectionRuleRequest request; |
| patchpanel::SetDnsRedirectionRuleResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << "Unable to parse SetDnsRedirectionRuleRequest"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| base::ScopedFD client_fd; |
| reader.PopFileDescriptor(&client_fd); |
| if (!client_fd.is_valid()) { |
| LOG(ERROR) << "Invalid file descriptor"; |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| bool success = RedirectDns(std::move(client_fd), request); |
| response.set_success(success); |
| if (success) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kSetDnsRedirectionRuleSuccess); |
| } |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::optional<DownstreamNetworkInfo> Manager::ParseTetheredNetworkRequest( |
| dbus::MessageReader* reader) { |
| using shill::IPAddress; |
| |
| TetheredNetworkRequest request; |
| if (!reader->PopArrayOfBytesAsProto(&request)) { |
| return std::nullopt; |
| } |
| |
| return DownstreamNetworkInfo::Create(request); |
| } |
| |
| std::optional<DownstreamNetworkInfo> Manager::ParseLocalOnlyNetworkRequest( |
| dbus::MessageReader* reader) { |
| LocalOnlyNetworkRequest request; |
| if (!reader->PopArrayOfBytesAsProto(&request)) { |
| return std::nullopt; |
| } |
| return DownstreamNetworkInfo::Create(request); |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnCreateTetheredNetwork( |
| dbus::MethodCall* method_call) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kCreateTetheredNetwork); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| auto response_code = OnDownstreamNetworkRequest( |
| &reader, base::BindOnce(&Manager::ParseTetheredNetworkRequest, |
| base::Unretained(this))); |
| if (response_code == patchpanel::DownstreamNetworkResult::SUCCESS) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kCreateTetheredNetworkSuccess); |
| } |
| |
| patchpanel::TetheredNetworkResponse response; |
| response.set_response_code(response_code); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnCreateLocalOnlyNetwork( |
| dbus::MethodCall* method_call) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kCreateLocalOnlyNetwork); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| auto response_code = OnDownstreamNetworkRequest( |
| &reader, base::BindOnce(&Manager::ParseLocalOnlyNetworkRequest, |
| base::Unretained(this))); |
| if (response_code == patchpanel::DownstreamNetworkResult::SUCCESS) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kCreateLocalOnlyNetworkSuccess); |
| } |
| |
| patchpanel::LocalOnlyNetworkResponse response; |
| response.set_response_code(response_code); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| std::unique_ptr<dbus::Response> Manager::OnDownstreamNetworkInfo( |
| dbus::MethodCall* method_call) { |
| RecordDbusEvent(metrics_, DbusUmaEvent::kDownstreamNetworkInfo); |
| |
| std::unique_ptr<dbus::Response> dbus_response( |
| dbus::Response::FromMethodCall(method_call)); |
| |
| dbus::MessageReader reader(method_call); |
| dbus::MessageWriter writer(dbus_response.get()); |
| |
| patchpanel::DownstreamNetworkInfoRequest request; |
| patchpanel::DownstreamNetworkInfoResponse response; |
| |
| if (!reader.PopArrayOfBytesAsProto(&request)) { |
| LOG(ERROR) << kDownstreamNetworkInfoMethod |
| << ": Unable to parse DownstreamNetworkInfoRequest"; |
| response.set_success(false); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| const auto& downstream_ifname = request.downstream_ifname(); |
| auto match_by_downstream_ifname = [&downstream_ifname](const auto& kv) { |
| return kv.second.downstream_ifname == downstream_ifname; |
| }; |
| auto it = |
| std::find_if(downstream_networks_.begin(), downstream_networks_.end(), |
| match_by_downstream_ifname); |
| if (it == downstream_networks_.end()) { |
| LOG(ERROR) << kDownstreamNetworkInfoMethod |
| << ": no DownstreamNetwork for interface " << downstream_ifname; |
| response.set_success(false); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| // TODO(b/239559602) Get and copy clients' information into |output|. |
| FillDownstreamNetworkProto(it->second, response.mutable_downstream_network()); |
| RecordDbusEvent(metrics_, DbusUmaEvent::kDownstreamNetworkInfoSuccess); |
| response.set_success(true); |
| writer.AppendProtoAsArrayOfBytes(response); |
| return dbus_response; |
| } |
| |
| void Manager::OnNeighborReachabilityEvent( |
| int ifindex, |
| const shill::IPAddress& ip_addr, |
| NeighborLinkMonitor::NeighborRole role, |
| NeighborReachabilityEventSignal::EventType event_type) { |
| using SignalProto = NeighborReachabilityEventSignal; |
| SignalProto proto; |
| proto.set_ifindex(ifindex); |
| proto.set_ip_addr(ip_addr.ToString()); |
| proto.set_type(event_type); |
| switch (role) { |
| case NeighborLinkMonitor::NeighborRole::kGateway: |
| proto.set_role(SignalProto::GATEWAY); |
| break; |
| case NeighborLinkMonitor::NeighborRole::kDNSServer: |
| proto.set_role(SignalProto::DNS_SERVER); |
| break; |
| case NeighborLinkMonitor::NeighborRole::kGatewayAndDNSServer: |
| proto.set_role(SignalProto::GATEWAY_AND_DNS_SERVER); |
| break; |
| default: |
| NOTREACHED(); |
| } |
| |
| dbus::Signal signal(kPatchPanelInterface, kNeighborReachabilityEventSignal); |
| dbus::MessageWriter writer(&signal); |
| if (!writer.AppendProtoAsArrayOfBytes(proto)) { |
| LOG(ERROR) << "Failed to encode proto NeighborReachabilityEventSignal"; |
| return; |
| } |
| |
| dbus_svc_path_->SendSignal(&signal); |
| } |
| |
| std::unique_ptr<patchpanel::ConnectNamespaceResponse> Manager::ConnectNamespace( |
| base::ScopedFD client_fd, |
| const patchpanel::ConnectNamespaceRequest& request) { |
| auto response = std::make_unique<patchpanel::ConnectNamespaceResponse>(); |
| |
| std::unique_ptr<Subnet> subnet = |
| addr_mgr_.AllocateIPv4Subnet(GuestType::kNetns); |
| if (!subnet) { |
| LOG(ERROR) << "Exhausted IPv4 subnet space"; |
| return response; |
| } |
| |
| base::ScopedFD local_client_fd = AddLifelineFd(std::move(client_fd)); |
| if (!local_client_fd.is_valid()) { |
| LOG(ERROR) << "Failed to create lifeline fd"; |
| return response; |
| } |
| |
| const std::string ifname_id = std::to_string(connected_namespaces_next_id_); |
| ConnectedNamespace nsinfo = {}; |
| nsinfo.pid = request.pid(); |
| nsinfo.netns_name = "connected_netns_" + ifname_id; |
| nsinfo.source = ProtoToTrafficSource(request.traffic_source()); |
| if (nsinfo.source == TrafficSource::kUnknown) |
| nsinfo.source = TrafficSource::kSystem; |
| nsinfo.outbound_ifname = request.outbound_physical_device(); |
| nsinfo.route_on_vpn = request.route_on_vpn(); |
| nsinfo.host_ifname = "arc_ns" + ifname_id; |
| nsinfo.peer_ifname = "veth" + ifname_id; |
| nsinfo.peer_subnet = std::move(subnet); |
| nsinfo.host_mac_addr = addr_mgr_.GenerateMacAddress(); |
| nsinfo.peer_mac_addr = addr_mgr_.GenerateMacAddress(); |
| if (nsinfo.host_mac_addr == nsinfo.peer_mac_addr) { |
| LOG(ERROR) << "Failed to generate unique MAC address for connected " |
| "namespace host and peer interface"; |
| } |
| |
| if (!datapath_->StartRoutingNamespace(nsinfo)) { |
| LOG(ERROR) << "Failed to setup datapath"; |
| if (!DeleteLifelineFd(local_client_fd.release())) |
| LOG(ERROR) << "Failed to delete lifeline fd"; |
| return response; |
| } |
| |
| // Prepare the response before storing ConnectedNamespace. |
| response->set_peer_ifname(nsinfo.peer_ifname); |
| response->set_peer_ipv4_address(nsinfo.peer_subnet->AddressAtOffset(1)); |
| response->set_host_ifname(nsinfo.host_ifname); |
| response->set_host_ipv4_address(nsinfo.peer_subnet->AddressAtOffset(0)); |
| response->set_netns_name(nsinfo.netns_name); |
| auto* response_subnet = response->mutable_ipv4_subnet(); |
| response_subnet->set_base_addr(nsinfo.peer_subnet->BaseAddress()); |
| response_subnet->set_prefix_len( |
| static_cast<uint32_t>(nsinfo.peer_subnet->PrefixLength())); |
| |
| LOG(INFO) << "Connected network namespace " << nsinfo; |
| |
| // Get the ConnectedNamespace outbound interface name. |
| nsinfo.tracked_outbound_ifname = nsinfo.outbound_ifname; |
| if (nsinfo.outbound_ifname.empty()) { |
| if (nsinfo.route_on_vpn) { |
| nsinfo.tracked_outbound_ifname = |
| shill_client_->default_logical_interface(); |
| } else { |
| nsinfo.tracked_outbound_ifname = |
| shill_client_->default_physical_interface(); |
| } |
| } |
| // Start forwarding for IPv6. |
| StartForwarding(nsinfo.tracked_outbound_ifname, nsinfo.host_ifname, |
| ForwardingSet{.ipv6 = true}); |
| base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask( |
| FROM_HERE, |
| base::BindOnce(&Manager::RestartIPv6, weak_factory_.GetWeakPtr(), |
| nsinfo.netns_name), |
| base::Milliseconds(kIPv6RestartDelayMs)); |
| |
| // Store ConnectedNamespace |
| connected_namespaces_next_id_++; |
| int fdkey = local_client_fd.release(); |
| connected_namespaces_.emplace(fdkey, std::move(nsinfo)); |
| |
| return response; |
| } |
| |
| base::ScopedFD Manager::AddLifelineFd(base::ScopedFD dbus_fd) { |
| if (!dbus_fd.is_valid()) { |
| LOG(ERROR) << "Invalid client file descriptor"; |
| return base::ScopedFD(); |
| } |
| |
| // Dup the client fd into our own: this guarantees that the fd number will |
| // be stable and tied to the actual kernel resources used by the client. |
| // The duped fd will be watched for read events. |
| int fd = dup(dbus_fd.get()); |
| if (fd < 0) { |
| PLOG(ERROR) << "dup() failed"; |
| return base::ScopedFD(); |
| } |
| |
| lifeline_fd_controllers_[fd] = base::FileDescriptorWatcher::WatchReadable( |
| fd, base::BindRepeating(&Manager::OnLifelineFdClosed, |
| // The callback will not outlive the object. |
| base::Unretained(this), fd)); |
| return base::ScopedFD(fd); |
| } |
| |
| bool Manager::DeleteLifelineFd(int dbus_fd) { |
| auto iter = lifeline_fd_controllers_.find(dbus_fd); |
| if (iter == lifeline_fd_controllers_.end()) { |
| return false; |
| } |
| |
| iter->second.reset(); // Destruct the controller, which removes the callback. |
| lifeline_fd_controllers_.erase(iter); |
| |
| // AddLifelineFd() calls dup(), so this function should close the fd. |
| // We still return true since at this point the FileDescriptorWatcher object |
| // has been destructed. |
| if (IGNORE_EINTR(close(dbus_fd)) < 0) { |
| PLOG(ERROR) << "close"; |
| } |
| |
| return true; |
| } |
| |
| void Manager::OnLifelineFdClosed(int client_fd) { |
| // The process that requested this port has died/exited. |
| DeleteLifelineFd(client_fd); |
| |
| auto downstream_network_it = downstream_networks_.find(client_fd); |
| if (downstream_network_it != downstream_networks_.end()) { |
| const auto& info = downstream_network_it->second; |
| // Stop IPv6 guest service on the downstream interface if IPv6 is enabled. |
| if (info.enable_ipv6) { |
| StopForwarding(info.upstream_ifname, info.downstream_ifname, |
| ForwardingSet{.ipv6 = true}); |
| } |
| |
| // Stop the DHCP server if exists. |
| // TODO(b/274998094): Currently the DHCPServerController stop the process |
| // asynchronously. It might cause the new DHCPServerController creation |
| // failure if the new one is created before the process terminated. We |
| // should polish the termination procedure to prevent this situation. |
| dhcp_server_controllers_.erase(info.downstream_ifname); |
| |
| datapath_->StopDownstreamNetwork(info); |
| LOG(INFO) << "Disconnected Downstream Network " << info; |
| downstream_networks_.erase(downstream_network_it); |
| return; |
| } |
| |
| // Remove the rules tied to the lifeline fd. |
| auto connected_namespace_it = connected_namespaces_.find(client_fd); |
| if (connected_namespace_it != connected_namespaces_.end()) { |
| StopForwarding(connected_namespace_it->second.tracked_outbound_ifname, |
| connected_namespace_it->second.host_ifname, |
| ForwardingSet{.ipv6 = true}); |
| datapath_->StopRoutingNamespace(connected_namespace_it->second); |
| LOG(INFO) << "Disconnected network namespace " |
| << connected_namespace_it->second; |
| // This release the allocated IPv4 subnet. |
| connected_namespaces_.erase(connected_namespace_it); |
| return; |
| } |
| |
| auto dns_redirection_it = dns_redirection_rules_.find(client_fd); |
| if (dns_redirection_it == dns_redirection_rules_.end()) { |
| LOG(ERROR) << "No client_fd found for " << client_fd; |
| return; |
| } |
| auto rule = dns_redirection_it->second; |
| datapath_->StopDnsRedirection(rule); |
| LOG(INFO) << "Stopped DNS redirection " << rule; |
| dns_redirection_rules_.erase(dns_redirection_it); |
| // Propagate DNS proxy addresses change. |
| if (rule.type == patchpanel::SetDnsRedirectionRuleRequest::ARC) { |
| switch (GetIpFamily(rule.proxy_address)) { |
| case AF_INET: |
| dns_proxy_ipv4_addrs_.erase(rule.input_ifname); |
| break; |
| case AF_INET6: |
| dns_proxy_ipv6_addrs_.erase(rule.input_ifname); |
| break; |
| default: |
| LOG(ERROR) << "Invalid proxy address " << rule.proxy_address; |
| return; |
| } |
| SendNetworkConfigurationChangedSignal(); |
| } |
| } |
| |
| bool Manager::RedirectDns( |
| base::ScopedFD client_fd, |
| const patchpanel::SetDnsRedirectionRuleRequest& request) { |
| base::ScopedFD local_client_fd = AddLifelineFd(std::move(client_fd)); |
| if (!local_client_fd.is_valid()) { |
| LOG(ERROR) << "Failed to create lifeline fd"; |
| return false; |
| } |
| |
| DnsRedirectionRule rule{.type = request.type(), |
| .input_ifname = request.input_ifname(), |
| .proxy_address = request.proxy_address(), |
| .host_ifname = request.host_ifname()}; |
| |
| for (const auto& nameserver : request.nameservers()) { |
| rule.nameservers.emplace_back(nameserver); |
| } |
| |
| if (!datapath_->StartDnsRedirection(rule)) { |
| LOG(ERROR) << "Failed to setup datapath"; |
| if (!DeleteLifelineFd(local_client_fd.release())) |
| LOG(ERROR) << "Failed to delete lifeline fd"; |
| return false; |
| } |
| // Notify GuestIPv6Service to add a route for the IPv6 proxy address to the |
| // namespace if it did not exist yet, so that the address is reachable. |
| if (GetIpFamily(rule.proxy_address) == AF_INET6) { |
| ipv6_svc_->RegisterDownstreamNeighborIP(rule.host_ifname, |
| rule.proxy_address); |
| } |
| |
| // Propagate DNS proxy addresses change. |
| if (rule.type == patchpanel::SetDnsRedirectionRuleRequest::ARC) { |
| switch (GetIpFamily(rule.proxy_address)) { |
| case AF_INET: |
| dns_proxy_ipv4_addrs_.emplace(rule.input_ifname, rule.proxy_address); |
| break; |
| case AF_INET6: |
| dns_proxy_ipv6_addrs_.emplace(rule.input_ifname, rule.proxy_address); |
| break; |
| default: |
| LOG(ERROR) << "Invalid proxy address " << rule.proxy_address; |
| if (!DeleteLifelineFd(local_client_fd.release())) |
| LOG(ERROR) << "Failed to delete lifeline fd"; |
| return false; |
| } |
| SendNetworkConfigurationChangedSignal(); |
| } |
| |
| // Store DNS proxy's redirection request. |
| int fdkey = local_client_fd.release(); |
| dns_redirection_rules_.emplace(fdkey, std::move(rule)); |
| |
| return true; |
| } |
| |
| bool Manager::ValidateDownstreamNetworkRequest( |
| const DownstreamNetworkInfo& info) { |
| // TODO(b/239559602) Validate the request and log any invalid argument: |
| // - |upstream_ifname| should be an active shill Device/Network, |
| // - |downstream_ifname| should not be a shill Device/Network already in |
| // use, |
| // - |downstream_ifname| should not be already in use in another |
| // DownstreamNetworkInfo, |
| // - if there are IPv4 and/or IPv6 configurations, check the prefixes are |
| // correct and available. |
| // - check the downstream subnet doesn't conflict with any IPv4 |
| // configuration of the currently connected networks. |
| return true; |
| } |
| |
| patchpanel::DownstreamNetworkResult Manager::OnDownstreamNetworkRequest( |
| dbus::MessageReader* reader, |
| base::OnceCallback< |
| std::optional<DownstreamNetworkInfo>(dbus::MessageReader*)> parser) { |
| std::optional<DownstreamNetworkInfo> info = std::move(parser).Run(reader); |
| if (!info) { |
| LOG(ERROR) << __func__ << ": Unable to parse request"; |
| return patchpanel::DownstreamNetworkResult::INVALID_ARGUMENT; |
| } |
| |
| base::ScopedFD client_fd; |
| reader->PopFileDescriptor(&client_fd); |
| if (!client_fd.is_valid()) { |
| LOG(ERROR) << __func__ << " " << *info |
| << ": Invalid client file descriptor"; |
| return patchpanel::DownstreamNetworkResult::INVALID_ARGUMENT; |
| } |
| |
| if (!ValidateDownstreamNetworkRequest(*info)) { |
| LOG(ERROR) << __func__ << " " << *info << ": Invalid request"; |
| return patchpanel::DownstreamNetworkResult::INVALID_ARGUMENT; |
| } |
| |
| base::ScopedFD local_client_fd = AddLifelineFd(std::move(client_fd)); |
| if (!local_client_fd.is_valid()) { |
| LOG(ERROR) << __func__ << " " << *info << ": Failed to create lifeline fd"; |
| return patchpanel::DownstreamNetworkResult::ERROR; |
| } |
| |
| if (!datapath_->StartDownstreamNetwork(*info)) { |
| LOG(ERROR) << __func__ << " " << *info |
| << ": Failed to configure forwarding to downstream network"; |
| return patchpanel::DownstreamNetworkResult::ERROR; |
| } |
| |
| // Start the DHCP server at downstream. |
| if (info->enable_ipv4_dhcp) { |
| if (dhcp_server_controllers_.find(info->downstream_ifname) != |
| dhcp_server_controllers_.end()) { |
| LOG(ERROR) << __func__ << " " << *info |
| << ": DHCP server is already running at " |
| << info->downstream_ifname; |
| return patchpanel::DownstreamNetworkResult::INTERFACE_USED; |
| } |
| const auto config = info->ToDHCPServerConfig(); |
| if (!config) { |
| LOG(ERROR) << __func__ << " " << *info |
| << ": Failed to get DHCP server config"; |
| return patchpanel::DownstreamNetworkResult::INVALID_ARGUMENT; |
| } |
| auto dhcp_server_controller = |
| std::make_unique<DHCPServerController>(info->downstream_ifname); |
| // TODO(b/274722417) Handle the DHCP server exits unexpectedly. |
| if (!dhcp_server_controller->Start(*config, base::DoNothing())) { |
| LOG(ERROR) << __func__ << " " << *info << ": Failed to start DHCP server"; |
| return patchpanel::DownstreamNetworkResult::DHCP_SERVER_FAILURE; |
| } |
| dhcp_server_controllers_[info->downstream_ifname] = |
| std::move(dhcp_server_controller); |
| } |
| |
| // Start IPv6 guest service on the downstream interface if IPv6 is enabled. |
| // TODO(b/278966909) Prevents neighbor discovery between the downstream |
| // network and other virtual guests and interfaces in the same upstream |
| // group. |
| // TODO(b/279371725) Add MTU support in GuestIPv6Service. |
| if (info->enable_ipv6) { |
| StartForwarding(info->upstream_ifname, info->downstream_ifname, |
| ForwardingSet{.ipv6 = true}); |
| } |
| |
| int fdkey = local_client_fd.release(); |
| downstream_networks_[fdkey] = *info; |
| return patchpanel::DownstreamNetworkResult::SUCCESS; |
| } |
| |
| void Manager::SendGuestMessage(const GuestMessage& msg) { |
| ControlMessage cm; |
| *cm.mutable_guest_message() = msg; |
| adb_proxy_->SendControlMessage(cm); |
| mcast_proxy_->SendControlMessage(cm); |
| } |
| |
| void Manager::SendNetworkConfigurationChangedSignal() { |
| dbus::Signal signal(kPatchPanelInterface, kNetworkConfigurationChangedSignal); |
| dbus_svc_path_->SendSignal(&signal); |
| } |
| |
| void Manager::StartForwarding(const std::string& ifname_physical, |
| const std::string& ifname_virtual, |
| const ForwardingSet& fs) { |
| if (ifname_physical.empty() || ifname_virtual.empty()) |
| return; |
| |
| if (fs.ipv6) { |
| ipv6_svc_->StartForwarding(ifname_physical, ifname_virtual); |
| } |
| |
| if (fs.multicast && IsMulticastInterface(ifname_physical)) { |
| ControlMessage cm; |
| DeviceMessage* msg = cm.mutable_device_message(); |
| msg->set_dev_ifname(ifname_physical); |
| msg->set_br_ifname(ifname_virtual); |
| |
| LOG(INFO) << "Starting multicast forwarding from " << ifname_physical |
| << " to " << ifname_virtual; |
| mcast_proxy_->SendControlMessage(cm); |
| } |
| } |
| |
| void Manager::StopForwarding(const std::string& ifname_physical, |
| const std::string& ifname_virtual, |
| const ForwardingSet& fs) { |
| if (ifname_physical.empty()) |
| return; |
| |
| if (fs.ipv6) { |
| if (ifname_virtual.empty()) { |
| ipv6_svc_->StopUplink(ifname_physical); |
| } else { |
| ipv6_svc_->StopForwarding(ifname_physical, ifname_virtual); |
| } |
| } |
| |
| if (fs.multicast) { |
| ControlMessage cm; |
| DeviceMessage* msg = cm.mutable_device_message(); |
| msg->set_dev_ifname(ifname_physical); |
| msg->set_teardown(true); |
| if (!ifname_virtual.empty()) { |
| msg->set_br_ifname(ifname_virtual); |
| } |
| if (ifname_virtual.empty()) { |
| LOG(INFO) << "Stopping multicast forwarding on " << ifname_physical; |
| } else { |
| LOG(INFO) << "Stopping multicast forwarding from " << ifname_physical |
| << " to " << ifname_virtual; |
| } |
| mcast_proxy_->SendControlMessage(cm); |
| } |
| } |
| |
| } // namespace patchpanel |