summaryrefslogtreecommitdiffstats
path: root/chromeos/network/firewall_hole.cc
blob: 425e423fe8c9a0e0559b28dbd3665393358b5572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chromeos/network/firewall_hole.h"

#include <fcntl.h>
#include <unistd.h>

#include "base/bind.h"
#include "base/location.h"
#include "base/threading/worker_pool.h"
#include "chromeos/dbus/dbus_thread_manager.h"
#include "chromeos/dbus/permission_broker_client.h"
#include "dbus/file_descriptor.h"

namespace chromeos {

namespace {

// Creates a pair of file descriptors that form a "lifeline" between Chrome and
// firewalld. If this pipe is closed unexpectedly (i.e. Chrome crashes) then
// firewalld will notice and close the hole in the firewall.
void CreateValidLifeline(dbus::FileDescriptor* lifeline_local,
                         dbus::FileDescriptor* lifeline_remote) {
  int lifeline[2] = {-1, -1};
  if (pipe2(lifeline, O_CLOEXEC) < 0) {
    PLOG(ERROR) << "Failed to create a lifeline pipe";
    return;
  }

  lifeline_local->PutValue(lifeline[0]);
  lifeline_local->CheckValidity();

  lifeline_remote->PutValue(lifeline[1]);
  lifeline_remote->CheckValidity();
}

const char* PortTypeToString(FirewallHole::PortType type) {
  switch (type) {
    case FirewallHole::PortType::TCP:
      return "TCP";
    case FirewallHole::PortType::UDP:
      return "UDP";
  }
  NOTREACHED();
  return nullptr;
}

void PortReleased(FirewallHole::PortType type,
                  uint16_t port,
                  const std::string& interface,
                  FirewallHole::ScopedFileDescriptor lifeline_fd,
                  bool success) {
  if (!success) {
    LOG(WARNING) << "Failed to release firewall hole for "
                 << PortTypeToString(type) << " port " << port << " on "
                 << interface << ".";
  }
}

}  // namespace

void CHROMEOS_EXPORT FirewallHole::FileDescriptorDeleter::operator()(
    dbus::FileDescriptor* fd) {
  base::WorkerPool::PostTask(
      FROM_HERE, base::Bind(&base::DeletePointer<dbus::FileDescriptor>, fd),
      false);
}

// static
void FirewallHole::Open(PortType type,
                        uint16_t port,
                        const std::string& interface,
                        const OpenCallback& callback) {
  ScopedFileDescriptor lifeline_local(new dbus::FileDescriptor());
  ScopedFileDescriptor lifeline_remote(new dbus::FileDescriptor());

  // This closure shares pointers with the one below. PostTaskAndReply
  // guarantees that it will always be deleted first.
  base::Closure create_lifeline_closure = base::Bind(
      &CreateValidLifeline, lifeline_local.get(), lifeline_remote.get());

  base::WorkerPool::PostTaskAndReply(
      FROM_HERE, create_lifeline_closure,
      base::Bind(&FirewallHole::RequestPortAccess, type, port, interface,
                 base::Passed(&lifeline_local), base::Passed(&lifeline_remote),
                 callback),
      false);
}

FirewallHole::~FirewallHole() {
  base::Callback<void(bool)> port_released_closure = base::Bind(
      &PortReleased, type_, port_, interface_, base::Passed(&lifeline_fd_));

  PermissionBrokerClient* client =
      DBusThreadManager::Get()->GetPermissionBrokerClient();
  DCHECK(client) << "Could not get permission broker client.";
  switch (type_) {
    case PortType::TCP:
      client->ReleaseTcpPort(port_, interface_, port_released_closure);
      return;
    case PortType::UDP:
      client->ReleaseUdpPort(port_, interface_, port_released_closure);
      return;
  }
}

void FirewallHole::RequestPortAccess(PortType type,
                                     uint16_t port,
                                     const std::string& interface,
                                     ScopedFileDescriptor lifeline_local,
                                     ScopedFileDescriptor lifeline_remote,
                                     const OpenCallback& callback) {
  if (!lifeline_local->is_valid() || !lifeline_remote->is_valid()) {
    callback.Run(nullptr);
    return;
  }

  base::Callback<void(bool)> access_granted_closure =
      base::Bind(&FirewallHole::PortAccessGranted, type, port, interface,
                 base::Passed(&lifeline_local), callback);

  PermissionBrokerClient* client =
      DBusThreadManager::Get()->GetPermissionBrokerClient();
  DCHECK(client) << "Could not get permission broker client.";

  switch (type) {
    case PortType::TCP:
      client->RequestTcpPortAccess(port, interface, *lifeline_remote,
                                   access_granted_closure);
      return;
    case PortType::UDP:
      client->RequestUdpPortAccess(port, interface, *lifeline_remote,
                                   access_granted_closure);
      return;
  }
}

void FirewallHole::PortAccessGranted(PortType type,
                                     uint16_t port,
                                     const std::string& interface,
                                     ScopedFileDescriptor lifeline_fd,
                                     const FirewallHole::OpenCallback& callback,
                                     bool success) {
  if (success) {
    callback.Run(make_scoped_ptr(
        new FirewallHole(type, port, interface, lifeline_fd.Pass())));
  } else {
    callback.Run(nullptr);
  }
}

FirewallHole::FirewallHole(PortType type,
                           uint16_t port,
                           const std::string& interface,
                           ScopedFileDescriptor lifeline_fd)
    : type_(type),
      port_(port),
      interface_(interface),
      lifeline_fd_(lifeline_fd.Pass()) {
}

}  // namespace chromeos