blob: c1eee7d9675af96819cc1ec5ecf01fea99d0a257 [file] [log] [blame]
// Copyright 2015 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef LORGNETTE_FIREWALL_MANAGER_H_
#define LORGNETTE_FIREWALL_MANAGER_H_
#include <memory>
#include <set>
#include <string>
#include <base/memory/weak_ptr.h>
#include "permission_broker/dbus-proxies.h"
// Class for managing required firewall rules for lorgnette.
namespace lorgnette {
class FirewallManager final {
public:
explicit FirewallManager(const std::string& interface);
FirewallManager(const FirewallManager&) = delete;
FirewallManager& operator=(const FirewallManager&) = delete;
~FirewallManager();
void Init(const scoped_refptr<dbus::Bus>& bus);
// Request port access for all well-known scanner ports.
void RequestScannerPortAccess();
// Request/release UDP port access for the specified port.
void RequestUdpPortAccess(uint16_t port);
void ReleaseUdpPortAccess(uint16_t port);
// Release port access for all requested ports.
void ReleaseAllPortsAccess();
private:
// Setup lifeline pipe to allow the remote firewall server
// (permission_broker) to monitor this process, so it can remove the firewall
// rules in case this process crashes.
bool SetupLifelinePipe();
void OnServiceAvailable(bool service_available);
void OnServiceNameChanged(const std::string& old_owner,
const std::string& new_owner);
// This is called when a new instance of permission_broker is detected. Since
// the new instance doesn't have any knowledge of previously port access
// requests, re-issue those requests to permission_broker to get in sync.
void RequestAllPortsAccess();
// DBus proxy for permission_broker.
std::unique_ptr<org::chromium::PermissionBrokerProxy>
permission_broker_proxy_;
// File descriptors for the two end of the pipe use for communicating with
// remote firewall server (permission_broker), where the remote firewall
// server will use the read end of the pipe to detect when this process exits.
int lifeline_read_fd_;
int lifeline_write_fd_;
// The interface on which to request network access.
std::string interface_;
// The set of ports for which access has been requested.
std::set<uint16_t> requested_ports_;
// Keep as the last member variable.
base::WeakPtrFactory<FirewallManager> weak_factory_{this};
};
} // namespace lorgnette
#endif // LORGNETTE_FIREWALL_MANAGER_H_