1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chromeos/network/firewall_hole.h"
10 #include "base/bind.h"
11 #include "base/location.h"
12 #include "base/threading/worker_pool.h"
13 #include "chromeos/dbus/dbus_thread_manager.h"
14 #include "chromeos/dbus/permission_broker_client.h"
15 #include "dbus/file_descriptor.h"
21 // Creates a pair of file descriptors that form a "lifeline" between Chrome and
22 // firewalld. If this pipe is closed unexpectedly (i.e. Chrome crashes) then
23 // firewalld will notice and close the hole in the firewall.
24 void CreateValidLifeline(dbus::FileDescriptor
* lifeline_local
,
25 dbus::FileDescriptor
* lifeline_remote
) {
26 int lifeline
[2] = {-1, -1};
27 if (pipe2(lifeline
, O_CLOEXEC
) < 0) {
28 PLOG(ERROR
) << "Failed to create a lifeline pipe";
32 lifeline_local
->PutValue(lifeline
[0]);
33 lifeline_local
->CheckValidity();
35 lifeline_remote
->PutValue(lifeline
[1]);
36 lifeline_remote
->CheckValidity();
39 const char* PortTypeToString(FirewallHole::PortType type
) {
41 case FirewallHole::PortType::TCP
:
43 case FirewallHole::PortType::UDP
:
50 void PortReleased(FirewallHole::PortType type
,
52 const std::string
& interface
,
53 dbus::ScopedFileDescriptor lifeline_fd
,
56 LOG(WARNING
) << "Failed to release firewall hole for "
57 << PortTypeToString(type
) << " port " << port
<< " on "
65 void FirewallHole::Open(PortType type
,
67 const std::string
& interface
,
68 const OpenCallback
& callback
) {
69 dbus::ScopedFileDescriptor
lifeline_local(new dbus::FileDescriptor());
70 dbus::ScopedFileDescriptor
lifeline_remote(new dbus::FileDescriptor());
72 // This closure shares pointers with the one below. PostTaskAndReply
73 // guarantees that it will always be deleted first.
74 base::Closure create_lifeline_closure
= base::Bind(
75 &CreateValidLifeline
, lifeline_local
.get(), lifeline_remote
.get());
77 base::WorkerPool::PostTaskAndReply(
78 FROM_HERE
, create_lifeline_closure
,
79 base::Bind(&FirewallHole::RequestPortAccess
, type
, port
, interface
,
80 base::Passed(&lifeline_local
), base::Passed(&lifeline_remote
),
85 FirewallHole::~FirewallHole() {
86 base::Callback
<void(bool)> port_released_closure
= base::Bind(
87 &PortReleased
, type_
, port_
, interface_
, base::Passed(&lifeline_fd_
));
89 PermissionBrokerClient
* client
=
90 DBusThreadManager::Get()->GetPermissionBrokerClient();
91 DCHECK(client
) << "Could not get permission broker client.";
94 client
->ReleaseTcpPort(port_
, interface_
, port_released_closure
);
97 client
->ReleaseUdpPort(port_
, interface_
, port_released_closure
);
102 void FirewallHole::RequestPortAccess(PortType type
,
104 const std::string
& interface
,
105 dbus::ScopedFileDescriptor lifeline_local
,
106 dbus::ScopedFileDescriptor lifeline_remote
,
107 const OpenCallback
& callback
) {
108 if (!lifeline_local
->is_valid() || !lifeline_remote
->is_valid()) {
109 callback
.Run(nullptr);
113 base::Callback
<void(bool)> access_granted_closure
=
114 base::Bind(&FirewallHole::PortAccessGranted
, type
, port
, interface
,
115 base::Passed(&lifeline_local
), callback
);
117 PermissionBrokerClient
* client
=
118 DBusThreadManager::Get()->GetPermissionBrokerClient();
119 DCHECK(client
) << "Could not get permission broker client.";
123 client
->RequestTcpPortAccess(port
, interface
, *lifeline_remote
,
124 access_granted_closure
);
127 client
->RequestUdpPortAccess(port
, interface
, *lifeline_remote
,
128 access_granted_closure
);
133 void FirewallHole::PortAccessGranted(PortType type
,
135 const std::string
& interface
,
136 dbus::ScopedFileDescriptor lifeline_fd
,
137 const FirewallHole::OpenCallback
& callback
,
140 callback
.Run(make_scoped_ptr(
141 new FirewallHole(type
, port
, interface
, lifeline_fd
.Pass())));
143 callback
.Run(nullptr);
147 FirewallHole::FirewallHole(PortType type
,
149 const std::string
& interface
,
150 dbus::ScopedFileDescriptor lifeline_fd
)
153 interface_(interface
),
154 lifeline_fd_(lifeline_fd
.Pass()) {
157 } // namespace chromeos