blob: 51252716539b0b5ce23631e0ca44fc5b1a72c9fe [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 Stewarte93b0382012-04-24 13:11:28 -070016#include "shill/ipconfig.h"
Paul Stewartdd60e452011-08-08 11:38:36 -070017#include "shill/refptr_types.h"
Paul Stewarte00600e2012-03-16 07:08:00 -070018#include "shill/technology.h"
Paul Stewartdd60e452011-08-08 11:38:36 -070019
20namespace shill {
21
Paul Stewart9a908082011-08-31 12:18:48 -070022class DeviceInfo;
Paul Stewartf748a362012-03-07 12:01:20 -080023class IPAddress;
Darin Petkov13e6d552012-05-09 14:22:23 +020024class RTNLHandler;
Paul Stewartdd60e452011-08-08 11:38:36 -070025class Resolver;
26class 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 Stewart9a908082011-08-31 12:18:48 -070068 const DeviceInfo *device_info);
Paul Stewartdd60e452011-08-08 11:38:36 -070069
70 // Add the contents of an IPConfig reference to the list of managed state.
71 // This will replace all previous state for this address family.
Paul Stewartc1dec4d2011-12-08 15:25:28 -080072 virtual void UpdateFromIPConfig(const IPConfigRefPtr &config);
Paul Stewartdd60e452011-08-08 11:38:36 -070073
74 // Sets the current connection as "default", i.e., routes and DNS entries
75 // should be used by all system components that don't select explicitly.
Paul Stewartc681fa02012-03-02 19:40:04 -080076 virtual bool is_default() const { return is_default_; }
Paul Stewartc1dec4d2011-12-08 15:25:28 -080077 virtual void SetIsDefault(bool is_default);
Paul Stewartdd60e452011-08-08 11:38:36 -070078
Paul Stewartc8f4bef2011-12-13 09:45:51 -080079 virtual const std::string &interface_name() const { return interface_name_; }
80 virtual const std::vector<std::string> &dns_servers() const {
81 return dns_servers_;
82 }
83
Paul Stewart10241e32012-04-23 18:15:06 -070084 virtual const std::string &ipconfig_rpc_identifier() const {
85 return ipconfig_rpc_identifier_;
86 }
87
Paul Stewartc8f4bef2011-12-13 09:45:51 -080088 // Request to accept traffic routed to this connection even if it is not
89 // the default. This request is ref-counted so the caller must call
90 // ReleaseRouting() when they no longer need this facility.
91 virtual void RequestRouting();
92 virtual void ReleaseRouting();
Paul Stewartbe5f5b32011-12-07 17:11:11 -080093
Paul Stewartf748a362012-03-07 12:01:20 -080094 // Request a host route through this connection.
95 virtual bool RequestHostRoute(const IPAddress &destination);
96
Darin Petkov13e6d552012-05-09 14:22:23 +020097 protected:
98 friend class base::RefCounted<Connection>;
99
100 virtual ~Connection();
101
Paul Stewartdd60e452011-08-08 11:38:36 -0700102 private:
103 friend class ConnectionTest;
Paul Stewartdd60e452011-08-08 11:38:36 -0700104 FRIEND_TEST(ConnectionTest, AddConfig);
105 FRIEND_TEST(ConnectionTest, AddConfigReverse);
Paul Stewart5b7ba8c2012-04-18 09:08:00 -0700106 FRIEND_TEST(ConnectionTest, AddConfigWithBrokenNetmask);
107 FRIEND_TEST(ConnectionTest, AddConfigWithPeer);
Darin Petkov13e6d552012-05-09 14:22:23 +0200108 FRIEND_TEST(ConnectionTest, Binder);
109 FRIEND_TEST(ConnectionTest, Binders);
Paul Stewartdd60e452011-08-08 11:38:36 -0700110 FRIEND_TEST(ConnectionTest, Destructor);
Paul Stewart53a30382012-04-26 09:06:59 -0700111 FRIEND_TEST(ConnectionTest, FixGatewayReachability);
Paul Stewart5b7ba8c2012-04-18 09:08:00 -0700112 FRIEND_TEST(ConnectionTest, InitState);
Darin Petkov13e6d552012-05-09 14:22:23 +0200113 FRIEND_TEST(ConnectionTest, OnRouteQueryResponse);
114 FRIEND_TEST(ConnectionTest, RequestHostRoute);
Darin Petkov5eb05422012-05-11 15:45:25 +0200115 FRIEND_TEST(VPNServiceTest, OnConnectionDisconnected);
Paul Stewartdd60e452011-08-08 11:38:36 -0700116
117 static const uint32 kDefaultMetric;
Paul Stewart7cfca042011-12-08 14:18:17 -0800118 static const uint32 kNonDefaultMetricBase;
119
Paul Stewart5b7ba8c2012-04-18 09:08:00 -0700120 // Work around misconfigured servers which provide a gateway address that
121 // is unreachable with the provided netmask.
Paul Stewart53a30382012-04-26 09:06:59 -0700122 static bool FixGatewayReachability(IPAddress *local,
Paul Stewart49258292012-05-26 06:37:14 -0700123 IPAddress *peer,
124 const IPAddress &gateway);
Paul Stewart7cfca042011-12-08 14:18:17 -0800125 uint32 GetMetric(bool is_default);
Paul Stewarte93b0382012-04-24 13:11:28 -0700126 bool PinHostRoute(const IPConfig::Properties &config);
Paul Stewartdd60e452011-08-08 11:38:36 -0700127
Darin Petkov13e6d552012-05-09 14:22:23 +0200128 void OnRouteQueryResponse(int interface_index,
129 const RoutingTableEntry &entry);
130
131 void AttachBinder(Binder *binder);
132 void DetachBinder(Binder *binder);
133 void NotifyBindersOnDisconnect();
134
135 void OnLowerDisconnect();
136
137 base::WeakPtrFactory<Connection> weak_ptr_factory_;
138
Paul Stewartdd60e452011-08-08 11:38:36 -0700139 bool is_default_;
Paul Stewartc8f4bef2011-12-13 09:45:51 -0800140 int routing_request_count_;
Paul Stewartdd60e452011-08-08 11:38:36 -0700141 int interface_index_;
142 const std::string interface_name_;
Paul Stewarte00600e2012-03-16 07:08:00 -0700143 Technology::Identifier technology_;
Paul Stewartdd60e452011-08-08 11:38:36 -0700144 std::vector<std::string> dns_servers_;
145 std::vector<std::string> dns_domain_search_;
Paul Stewart10241e32012-04-23 18:15:06 -0700146 std::string ipconfig_rpc_identifier_;
Paul Stewartdd60e452011-08-08 11:38:36 -0700147
Darin Petkov13e6d552012-05-09 14:22:23 +0200148 // A binder to a lower Connection that this Connection depends on, if any.
149 Binder lower_binder_;
150
151 // Binders to clients -- usually to upper connections or related services and
152 // devices.
153 std::deque<Binder *> binders_;
154
Paul Stewartdd60e452011-08-08 11:38:36 -0700155 // Store cached copies of singletons for speed/ease of testing
Paul Stewart9a908082011-08-31 12:18:48 -0700156 const DeviceInfo *device_info_;
Paul Stewartdd60e452011-08-08 11:38:36 -0700157 Resolver *resolver_;
158 RoutingTable *routing_table_;
159 RTNLHandler *rtnl_handler_;
160
161 DISALLOW_COPY_AND_ASSIGN(Connection);
162};
163
164} // namespace shill
165
166#endif // SHILL_CONNECTION_