Paul Stewart | c681fa0 | 2012-03-02 19:40:04 -0800 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 2 | // 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 Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 8 | #include <deque> |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 9 | #include <string> |
| 10 | #include <vector> |
| 11 | |
| 12 | #include <base/memory/ref_counted.h> |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 13 | #include <base/memory/weak_ptr.h> |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 14 | #include <gtest/gtest_prod.h> // for FRIEND_TEST |
| 15 | |
Paul Stewart | 4a6748d | 2012-07-17 14:31:36 -0700 | [diff] [blame] | 16 | #include "shill/ip_address.h" |
Paul Stewart | e93b038 | 2012-04-24 13:11:28 -0700 | [diff] [blame] | 17 | #include "shill/ipconfig.h" |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 18 | #include "shill/refptr_types.h" |
Paul Stewart | bf66761 | 2012-06-29 14:49:54 -0700 | [diff] [blame] | 19 | #include "shill/resolver.h" |
Paul Stewart | e00600e | 2012-03-16 07:08:00 -0700 | [diff] [blame] | 20 | #include "shill/technology.h" |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 21 | |
| 22 | namespace shill { |
| 23 | |
Paul Stewart | 9a90808 | 2011-08-31 12:18:48 -0700 | [diff] [blame] | 24 | class DeviceInfo; |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 25 | class RTNLHandler; |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 26 | class RoutingTable; |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 27 | struct RoutingTableEntry; |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 28 | |
| 29 | // The Conneciton maintains the implemented state of an IPConfig, e.g, |
| 30 | // the IP address, routing table and DNS table entries. |
| 31 | class Connection : public base::RefCounted<Connection> { |
| 32 | public: |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 33 | // 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 Petkov | ef1f9fe | 2012-05-11 16:51:52 +0200 | [diff] [blame] | 43 | // Binds to |to_connection|. Unbinds the previous bound connection, if |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 44 | // any. Pass NULL to just unbind this Binder. |
Darin Petkov | ef1f9fe | 2012-05-11 16:51:52 +0200 | [diff] [blame] | 45 | void Attach(const ConnectionRefPtr &to_connection); |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 46 | |
Darin Petkov | 5eb0542 | 2012-05-11 15:45:25 +0200 | [diff] [blame] | 47 | const std::string &name() const { return name_; } |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 48 | bool IsBound() const { return connection_ != NULL; } |
Darin Petkov | ef1f9fe | 2012-05-11 16:51:52 +0200 | [diff] [blame] | 49 | ConnectionRefPtr connection() const { return connection_.get(); } |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 50 | |
| 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 Petkov | ef1f9fe | 2012-05-11 16:51:52 +0200 | [diff] [blame] | 59 | base::WeakPtr<Connection> connection_; |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 60 | const base::Closure client_disconnect_callback_; |
| 61 | |
| 62 | DISALLOW_COPY_AND_ASSIGN(Binder); |
| 63 | }; |
| 64 | |
Paul Stewart | 9a90808 | 2011-08-31 12:18:48 -0700 | [diff] [blame] | 65 | Connection(int interface_index, |
| 66 | const std::string &interface_name, |
Paul Stewart | e00600e | 2012-03-16 07:08:00 -0700 | [diff] [blame] | 67 | Technology::Identifier technology_, |
Paul Stewart | bf66761 | 2012-06-29 14:49:54 -0700 | [diff] [blame] | 68 | const DeviceInfo *device_info, |
| 69 | bool is_short_dns_timeout_enabled); |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 70 | |
| 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 Stewart | c1dec4d | 2011-12-08 15:25:28 -0800 | [diff] [blame] | 73 | virtual void UpdateFromIPConfig(const IPConfigRefPtr &config); |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 74 | |
Paul Stewart | df3c0a8 | 2012-11-09 15:54:33 -0800 | [diff] [blame] | 75 | // Return the connection used by the lower binder. |
| 76 | virtual ConnectionRefPtr GetLowerConnection() const { |
| 77 | return lower_binder_.connection(); |
| 78 | } |
| 79 | |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 80 | // Sets the current connection as "default", i.e., routes and DNS entries |
| 81 | // should be used by all system components that don't select explicitly. |
Paul Stewart | c681fa0 | 2012-03-02 19:40:04 -0800 | [diff] [blame] | 82 | virtual bool is_default() const { return is_default_; } |
Paul Stewart | c1dec4d | 2011-12-08 15:25:28 -0800 | [diff] [blame] | 83 | virtual void SetIsDefault(bool is_default); |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 84 | |
Paul Stewart | c8f4bef | 2011-12-13 09:45:51 -0800 | [diff] [blame] | 85 | virtual const std::string &interface_name() const { return interface_name_; } |
Paul Stewart | 4a6748d | 2012-07-17 14:31:36 -0700 | [diff] [blame] | 86 | virtual int interface_index() const { return interface_index_; } |
Paul Stewart | c8f4bef | 2011-12-13 09:45:51 -0800 | [diff] [blame] | 87 | virtual const std::vector<std::string> &dns_servers() const { |
| 88 | return dns_servers_; |
| 89 | } |
| 90 | |
Paul Stewart | 10241e3 | 2012-04-23 18:15:06 -0700 | [diff] [blame] | 91 | virtual const std::string &ipconfig_rpc_identifier() const { |
| 92 | return ipconfig_rpc_identifier_; |
| 93 | } |
| 94 | |
Paul Stewart | c8f4bef | 2011-12-13 09:45:51 -0800 | [diff] [blame] | 95 | // Request to accept traffic routed to this connection even if it is not |
| 96 | // the default. This request is ref-counted so the caller must call |
| 97 | // ReleaseRouting() when they no longer need this facility. |
| 98 | virtual void RequestRouting(); |
| 99 | virtual void ReleaseRouting(); |
Paul Stewart | be5f5b3 | 2011-12-07 17:11:11 -0800 | [diff] [blame] | 100 | |
Paul Stewart | f748a36 | 2012-03-07 12:01:20 -0800 | [diff] [blame] | 101 | // Request a host route through this connection. |
| 102 | virtual bool RequestHostRoute(const IPAddress &destination); |
| 103 | |
Paul Stewart | 6c72c97 | 2012-07-27 11:29:20 -0700 | [diff] [blame] | 104 | virtual const IPAddress &local() const { return local_; } |
| 105 | virtual const IPAddress &gateway() const { return gateway_; } |
Paul Stewart | ff845fc | 2012-08-07 07:28:44 -0700 | [diff] [blame] | 106 | Technology::Identifier technology() const { return technology_; } |
Paul Stewart | 6c72c97 | 2012-07-27 11:29:20 -0700 | [diff] [blame] | 107 | |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 108 | protected: |
| 109 | friend class base::RefCounted<Connection>; |
| 110 | |
| 111 | virtual ~Connection(); |
Paul Stewart | 4a6748d | 2012-07-17 14:31:36 -0700 | [diff] [blame] | 112 | virtual bool CreateGatewayRoute(); |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 113 | |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 114 | private: |
| 115 | friend class ConnectionTest; |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 116 | FRIEND_TEST(ConnectionTest, AddConfig); |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 117 | FRIEND_TEST(ConnectionTest, Binder); |
| 118 | FRIEND_TEST(ConnectionTest, Binders); |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 119 | FRIEND_TEST(ConnectionTest, Destructor); |
Paul Stewart | 53a3038 | 2012-04-26 09:06:59 -0700 | [diff] [blame] | 120 | FRIEND_TEST(ConnectionTest, FixGatewayReachability); |
Paul Stewart | 5b7ba8c | 2012-04-18 09:08:00 -0700 | [diff] [blame] | 121 | FRIEND_TEST(ConnectionTest, InitState); |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 122 | FRIEND_TEST(ConnectionTest, OnRouteQueryResponse); |
| 123 | FRIEND_TEST(ConnectionTest, RequestHostRoute); |
Ben Chan | a016312 | 2012-09-25 15:10:52 -0700 | [diff] [blame] | 124 | FRIEND_TEST(ConnectionTest, BlackholeIPv6); |
Darin Petkov | 5eb0542 | 2012-05-11 15:45:25 +0200 | [diff] [blame] | 125 | FRIEND_TEST(VPNServiceTest, OnConnectionDisconnected); |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 126 | |
| 127 | static const uint32 kDefaultMetric; |
Paul Stewart | 7cfca04 | 2011-12-08 14:18:17 -0800 | [diff] [blame] | 128 | static const uint32 kNonDefaultMetricBase; |
| 129 | |
Paul Stewart | 5b7ba8c | 2012-04-18 09:08:00 -0700 | [diff] [blame] | 130 | // Work around misconfigured servers which provide a gateway address that |
| 131 | // is unreachable with the provided netmask. |
Paul Stewart | 53a3038 | 2012-04-26 09:06:59 -0700 | [diff] [blame] | 132 | static bool FixGatewayReachability(IPAddress *local, |
Paul Stewart | 4925829 | 2012-05-26 06:37:14 -0700 | [diff] [blame] | 133 | IPAddress *peer, |
Paul Stewart | 73fcc3f | 2013-02-25 12:16:53 -0800 | [diff] [blame] | 134 | IPAddress *gateway, |
| 135 | const IPAddress &trusted_ip); |
Paul Stewart | 7cfca04 | 2011-12-08 14:18:17 -0800 | [diff] [blame] | 136 | uint32 GetMetric(bool is_default); |
Paul Stewart | 73fcc3f | 2013-02-25 12:16:53 -0800 | [diff] [blame] | 137 | bool PinHostRoute(const IPAddress &trusted_ip, const IPAddress &gateway); |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 138 | |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 139 | void OnRouteQueryResponse(int interface_index, |
| 140 | const RoutingTableEntry &entry); |
| 141 | |
| 142 | void AttachBinder(Binder *binder); |
| 143 | void DetachBinder(Binder *binder); |
| 144 | void NotifyBindersOnDisconnect(); |
| 145 | |
| 146 | void OnLowerDisconnect(); |
| 147 | |
Paul Stewart | 6f65c0b | 2012-09-11 14:57:32 -0700 | [diff] [blame] | 148 | // Send our DNS configuration to the resolver. |
| 149 | void PushDNSConfig(); |
| 150 | |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 151 | base::WeakPtrFactory<Connection> weak_ptr_factory_; |
| 152 | |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 153 | bool is_default_; |
Paul Stewart | 4a6748d | 2012-07-17 14:31:36 -0700 | [diff] [blame] | 154 | bool has_broadcast_domain_; |
Paul Stewart | c8f4bef | 2011-12-13 09:45:51 -0800 | [diff] [blame] | 155 | int routing_request_count_; |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 156 | int interface_index_; |
| 157 | const std::string interface_name_; |
Paul Stewart | e00600e | 2012-03-16 07:08:00 -0700 | [diff] [blame] | 158 | Technology::Identifier technology_; |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 159 | std::vector<std::string> dns_servers_; |
| 160 | std::vector<std::string> dns_domain_search_; |
Paul Stewart | d62d603 | 2012-09-11 11:35:49 -0700 | [diff] [blame] | 161 | std::string dns_domain_name_; |
Paul Stewart | 10241e3 | 2012-04-23 18:15:06 -0700 | [diff] [blame] | 162 | std::string ipconfig_rpc_identifier_; |
Paul Stewart | 4a6748d | 2012-07-17 14:31:36 -0700 | [diff] [blame] | 163 | IPAddress local_; |
| 164 | IPAddress gateway_; |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 165 | |
Darin Petkov | 13e6d55 | 2012-05-09 14:22:23 +0200 | [diff] [blame] | 166 | // A binder to a lower Connection that this Connection depends on, if any. |
| 167 | Binder lower_binder_; |
| 168 | |
| 169 | // Binders to clients -- usually to upper connections or related services and |
| 170 | // devices. |
| 171 | std::deque<Binder *> binders_; |
| 172 | |
Paul Stewart | bf66761 | 2012-06-29 14:49:54 -0700 | [diff] [blame] | 173 | // Keep track of what sort of DNS timeout to use for this connection. |
| 174 | Resolver::TimeoutParameters dns_timeout_parameters_; |
| 175 | |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 176 | // Store cached copies of singletons for speed/ease of testing |
Paul Stewart | 9a90808 | 2011-08-31 12:18:48 -0700 | [diff] [blame] | 177 | const DeviceInfo *device_info_; |
Paul Stewart | dd60e45 | 2011-08-08 11:38:36 -0700 | [diff] [blame] | 178 | Resolver *resolver_; |
| 179 | RoutingTable *routing_table_; |
| 180 | RTNLHandler *rtnl_handler_; |
| 181 | |
| 182 | DISALLOW_COPY_AND_ASSIGN(Connection); |
| 183 | }; |
| 184 | |
| 185 | } // namespace shill |
| 186 | |
| 187 | #endif // SHILL_CONNECTION_ |