// Copyright 2014 The Android Open Source Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef FIREWALLD_FIREWALL_SERVICE_H_ #define FIREWALLD_FIREWALL_SERVICE_H_ #include #include #include #include #include #include "dbus_bindings/org.chromium.Firewalld.h" #if !defined(__ANDROID__) # include "permission_broker/dbus-proxies.h" #endif // __ANDROID__ #include "iptables.h" using CompletionAction = chromeos::dbus_utils::AsyncEventSequencer::CompletionAction; namespace firewalld { class FirewallService : public org::chromium::FirewalldAdaptor { public: explicit FirewallService( chromeos::dbus_utils::ExportedObjectManager* object_manager); virtual ~FirewallService() = default; // Connects to D-Bus system bus and exports methods. void RegisterAsync(const CompletionAction& callback); private: #if !defined(__ANDROID__) void OnPermissionBrokerRemoved(const dbus::ObjectPath& path); #endif // __ANDROID__ chromeos::dbus_utils::DBusObject dbus_object_; #if !defined(__ANDROID__) std::unique_ptr permission_broker_; #endif // __ANDROID__ IpTables iptables_; base::WeakPtrFactory weak_ptr_factory_{this}; DISALLOW_COPY_AND_ASSIGN(FirewallService); }; } // namespace firewalld #endif // FIREWALLD_FIREWALL_SERVICE_H_