blob: 9bdbabd213aa676539f9afdf361671cf2174cd62 [file] [log] [blame]
Paul Stewartc681fa02012-03-02 19:40:04 -08001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Paul Stewartdd60e452011-08-08 11:38:36 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_CONNECTION_
6#define SHILL_CONNECTION_
7
Darin Petkov13e6d552012-05-09 14:22:23 +02008#include <deque>
Paul Stewartdd60e452011-08-08 11:38:36 -07009#include <string>
10#include <vector>
11
12#include <base/memory/ref_counted.h>
Darin Petkov13e6d552012-05-09 14:22:23 +020013#include <base/memory/weak_ptr.h>
Paul Stewartdd60e452011-08-08 11:38:36 -070014#include <gtest/gtest_prod.h> // for FRIEND_TEST
15
Paul Stewart4a6748d2012-07-17 14:31:36 -070016#include "shill/ip_address.h"
Paul Stewarte93b0382012-04-24 13:11:28 -070017#include "shill/ipconfig.h"
Paul Stewartdd60e452011-08-08 11:38:36 -070018#include "shill/refptr_types.h"
Paul Stewartbf667612012-06-29 14:49:54 -070019#include "shill/resolver.h"
Paul Stewarte00600e2012-03-16 07:08:00 -070020#include "shill/technology.h"
Paul Stewartdd60e452011-08-08 11:38:36 -070021
22namespace shill {
23
Paul Stewart9a908082011-08-31 12:18:48 -070024class DeviceInfo;
Darin Petkov13e6d552012-05-09 14:22:23 +020025class RTNLHandler;
Paul Stewartdd60e452011-08-08 11:38:36 -070026class RoutingTable;
Darin Petkov13e6d552012-05-09 14:22:23 +020027struct RoutingTableEntry;
Paul Stewartdd60e452011-08-08 11:38:36 -070028
29// The Conneciton maintains the implemented state of an IPConfig, e.g,
30// the IP address, routing table and DNS table entries.
31class Connection : public base::RefCounted<Connection> {
32 public:
Darin Petkov13e6d552012-05-09 14:22:23 +020033 // Clients can instantiate and use Binder to bind to a Connection and get
34 // notified when the bound Connection disconnects. Note that the client's
35 // disconnect callback will be executed at most once, and only if the bound
36 // Connection is destroyed or signals disconnect. The Binder unbinds itself
37 // from the underlying Connection when the Binder instance is destructed.
38 class Binder {
39 public:
40 Binder(const std::string &name, const base::Closure &disconnect_callback);
41 ~Binder();
42
Darin Petkovef1f9fe2012-05-11 16:51:52 +020043 // Binds to |to_connection|. Unbinds the previous bound connection, if
Darin Petkov13e6d552012-05-09 14:22:23 +020044 // any. Pass NULL to just unbind this Binder.
Darin Petkovef1f9fe2012-05-11 16:51:52 +020045 void Attach(const ConnectionRefPtr &to_connection);
Darin Petkov13e6d552012-05-09 14:22:23 +020046
Darin Petkov5eb05422012-05-11 15:45:25 +020047 const std::string &name() const { return name_; }
Darin Petkov13e6d552012-05-09 14:22:23 +020048 bool IsBound() const { return connection_ != NULL; }
Darin Petkovef1f9fe2012-05-11 16:51:52 +020049 ConnectionRefPtr connection() const { return connection_.get(); }
Darin Petkov13e6d552012-05-09 14:22:23 +020050
51 private:
52 friend class Connection;
53 FRIEND_TEST(ConnectionTest, Binder);
54
55 // Invoked by |connection_|.
56 void OnDisconnect();
57
58 const std::string name_;
Darin Petkovef1f9fe2012-05-11 16:51:52 +020059 base::WeakPtr<Connection> connection_;
Darin Petkov13e6d552012-05-09 14:22:23 +020060 const base::Closure client_disconnect_callback_;
61
62 DISALLOW_COPY_AND_ASSIGN(Binder);
63 };
64
Paul Stewart9a908082011-08-31 12:18:48 -070065 Connection(int interface_index,
66 const std::string &interface_name,
Paul Stewarte00600e2012-03-16 07:08:00 -070067 Technology::Identifier technology_,
Paul Stewartbf667612012-06-29 14:49:54 -070068 const DeviceInfo *device_info,
69 bool is_short_dns_timeout_enabled);
Paul Stewartdd60e452011-08-08 11:38:36 -070070
71 // Add the contents of an IPConfig reference to the list of managed state.
72 // This will replace all previous state for this address family.
Paul Stewartc1dec4d2011-12-08 15:25:28 -080073 virtual void UpdateFromIPConfig(const IPConfigRefPtr &config);
Paul Stewartdd60e452011-08-08 11:38:36 -070074
75 // Sets the current connection as "default", i.e., routes and DNS entries
76 // should be used by all system components that don't select explicitly.
Paul Stewartc681fa02012-03-02 19:40:04 -080077 virtual bool is_default() const { return is_default_; }
Paul Stewartc1dec4d2011-12-08 15:25:28 -080078 virtual void SetIsDefault(bool is_default);
Paul Stewartdd60e452011-08-08 11:38:36 -070079
Paul Stewartc8f4bef2011-12-13 09:45:51 -080080 virtual const std::string &interface_name() const { return interface_name_; }
Paul Stewart4a6748d2012-07-17 14:31:36 -070081 virtual int interface_index() const { return interface_index_; }
Paul Stewartc8f4bef2011-12-13 09:45:51 -080082 virtual const std::vector<std::string> &dns_servers() const {
83 return dns_servers_;
84 }
85
Paul Stewart10241e32012-04-23 18:15:06 -070086 virtual const std::string &ipconfig_rpc_identifier() const {
87 return ipconfig_rpc_identifier_;
88 }
89
Paul Stewartc8f4bef2011-12-13 09:45:51 -080090 // Request to accept traffic routed to this connection even if it is not
91 // the default. This request is ref-counted so the caller must call
92 // ReleaseRouting() when they no longer need this facility.
93 virtual void RequestRouting();
94 virtual void ReleaseRouting();
Paul Stewartbe5f5b32011-12-07 17:11:11 -080095
Paul Stewartf748a362012-03-07 12:01:20 -080096 // Request a host route through this connection.
97 virtual bool RequestHostRoute(const IPAddress &destination);
98
Paul Stewart6c72c972012-07-27 11:29:20 -070099 virtual const IPAddress &local() const { return local_; }
100 virtual const IPAddress &gateway() const { return gateway_; }
Paul Stewartff845fc2012-08-07 07:28:44 -0700101 Technology::Identifier technology() const { return technology_; }
Paul Stewart6c72c972012-07-27 11:29:20 -0700102
Darin Petkov13e6d552012-05-09 14:22:23 +0200103 protected:
104 friend class base::RefCounted<Connection>;
105
106 virtual ~Connection();
Paul Stewart4a6748d2012-07-17 14:31:36 -0700107 virtual bool CreateGatewayRoute();
Darin Petkov13e6d552012-05-09 14:22:23 +0200108
Paul Stewartdd60e452011-08-08 11:38:36 -0700109 private:
110 friend class ConnectionTest;
Paul Stewartdd60e452011-08-08 11:38:36 -0700111 FRIEND_TEST(ConnectionTest, AddConfig);
Darin Petkov13e6d552012-05-09 14:22:23 +0200112 FRIEND_TEST(ConnectionTest, Binder);
113 FRIEND_TEST(ConnectionTest, Binders);
Paul Stewartdd60e452011-08-08 11:38:36 -0700114 FRIEND_TEST(ConnectionTest, Destructor);
Paul Stewart53a30382012-04-26 09:06:59 -0700115 FRIEND_TEST(ConnectionTest, FixGatewayReachability);
Paul Stewart5b7ba8c2012-04-18 09:08:00 -0700116 FRIEND_TEST(ConnectionTest, InitState);
Darin Petkov13e6d552012-05-09 14:22:23 +0200117 FRIEND_TEST(ConnectionTest, OnRouteQueryResponse);
118 FRIEND_TEST(ConnectionTest, RequestHostRoute);
Darin Petkov5eb05422012-05-11 15:45:25 +0200119 FRIEND_TEST(VPNServiceTest, OnConnectionDisconnected);
Paul Stewartdd60e452011-08-08 11:38:36 -0700120
121 static const uint32 kDefaultMetric;
Paul Stewart7cfca042011-12-08 14:18:17 -0800122 static const uint32 kNonDefaultMetricBase;
123
Paul Stewart5b7ba8c2012-04-18 09:08:00 -0700124 // Work around misconfigured servers which provide a gateway address that
125 // is unreachable with the provided netmask.
Paul Stewart53a30382012-04-26 09:06:59 -0700126 static bool FixGatewayReachability(IPAddress *local,
Paul Stewart49258292012-05-26 06:37:14 -0700127 IPAddress *peer,
128 const IPAddress &gateway);
Paul Stewart7cfca042011-12-08 14:18:17 -0800129 uint32 GetMetric(bool is_default);
Paul Stewarte93b0382012-04-24 13:11:28 -0700130 bool PinHostRoute(const IPConfig::Properties &config);
Paul Stewartdd60e452011-08-08 11:38:36 -0700131
Darin Petkov13e6d552012-05-09 14:22:23 +0200132 void OnRouteQueryResponse(int interface_index,
133 const RoutingTableEntry &entry);
134
135 void AttachBinder(Binder *binder);
136 void DetachBinder(Binder *binder);
137 void NotifyBindersOnDisconnect();
138
139 void OnLowerDisconnect();
140
141 base::WeakPtrFactory<Connection> weak_ptr_factory_;
142
Paul Stewartdd60e452011-08-08 11:38:36 -0700143 bool is_default_;
Paul Stewart4a6748d2012-07-17 14:31:36 -0700144 bool has_broadcast_domain_;
Paul Stewartc8f4bef2011-12-13 09:45:51 -0800145 int routing_request_count_;
Paul Stewartdd60e452011-08-08 11:38:36 -0700146 int interface_index_;
147 const std::string interface_name_;
Paul Stewarte00600e2012-03-16 07:08:00 -0700148 Technology::Identifier technology_;
Paul Stewartdd60e452011-08-08 11:38:36 -0700149 std::vector<std::string> dns_servers_;
150 std::vector<std::string> dns_domain_search_;
Paul Stewart10241e32012-04-23 18:15:06 -0700151 std::string ipconfig_rpc_identifier_;
Paul Stewart4a6748d2012-07-17 14:31:36 -0700152 IPAddress local_;
153 IPAddress gateway_;
Paul Stewartdd60e452011-08-08 11:38:36 -0700154
Darin Petkov13e6d552012-05-09 14:22:23 +0200155 // A binder to a lower Connection that this Connection depends on, if any.
156 Binder lower_binder_;
157
158 // Binders to clients -- usually to upper connections or related services and
159 // devices.
160 std::deque<Binder *> binders_;
161
Paul Stewartbf667612012-06-29 14:49:54 -0700162 // Keep track of what sort of DNS timeout to use for this connection.
163 Resolver::TimeoutParameters dns_timeout_parameters_;
164
Paul Stewartdd60e452011-08-08 11:38:36 -0700165 // Store cached copies of singletons for speed/ease of testing
Paul Stewart9a908082011-08-31 12:18:48 -0700166 const DeviceInfo *device_info_;
Paul Stewartdd60e452011-08-08 11:38:36 -0700167 Resolver *resolver_;
168 RoutingTable *routing_table_;
169 RTNLHandler *rtnl_handler_;
170
171 DISALLOW_COPY_AND_ASSIGN(Connection);
172};
173
174} // namespace shill
175
176#endif // SHILL_CONNECTION_