blob: ae32ac5e8270d1e722cd13de721e1a65b75505de [file] [log] [blame]
Thieu Lee41a72d2012-02-06 20:46:51 +00001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
mukesh agrawalb54601c2011-06-07 17:39:22 -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_WIFI_ENDPOINT_
6#define SHILL_WIFI_ENDPOINT_
7
8#include <map>
mukesh agrawal6e277772011-09-29 15:04:23 -07009#include <set>
mukesh agrawalb54601c2011-06-07 17:39:22 -070010#include <string>
11#include <vector>
12
13#include <base/memory/ref_counted.h>
14#include <dbus-c++/dbus.h>
mukesh agrawal6e277772011-09-29 15:04:23 -070015#include <gtest/gtest_prod.h> // for FRIEND_TEST
mukesh agrawalb54601c2011-06-07 17:39:22 -070016
17#include "shill/endpoint.h"
Paul Stewart26b327e2011-10-19 11:38:09 -070018#include "shill/event_dispatcher.h"
Thieu Le1df7f4e2012-02-10 15:21:45 -080019#include "shill/metrics.h"
mukesh agrawalb20776f2012-02-10 16:00:36 -080020#include "shill/refptr_types.h"
mukesh agrawalb54601c2011-06-07 17:39:22 -070021
22namespace shill {
23
mukesh agrawalb20776f2012-02-10 16:00:36 -080024class ProxyFactory;
25class SupplicantBSSProxyInterface;
26
mukesh agrawalb54601c2011-06-07 17:39:22 -070027class WiFiEndpoint : public Endpoint {
28 public:
Paul Stewart72b2fdc2012-06-02 08:58:51 -070029 struct VendorInformation {
30 std::string wps_manufacturer;
31 std::string wps_model_name;
32 std::string wps_model_number;
33 std::string wps_device_name;
34 std::set<uint32_t> oui_list;
35 };
mukesh agrawalb20776f2012-02-10 16:00:36 -080036 WiFiEndpoint(ProxyFactory *proxy_factory,
37 const WiFiRefPtr &device,
38 const std::string &rpc_id,
39 const std::map<std::string, ::DBus::Variant> &properties);
mukesh agrawalb54601c2011-06-07 17:39:22 -070040 virtual ~WiFiEndpoint();
Chris Masone092df3e2011-08-22 09:41:39 -070041
mukesh agrawalb20776f2012-02-10 16:00:36 -080042 // Set up RPC channel. Broken out from the ctor, so that WiFi can
43 // look over the Endpoint details before commiting to setting up
44 // RPC.
45 virtual void Start();
46
47 // Called by SupplicantBSSProxy, in response to events from
48 // wpa_supplicant.
49 void PropertiesChanged(
50 const std::map<std::string, ::DBus::Variant> &properties);
51
Chris Masone092df3e2011-08-22 09:41:39 -070052 // Maps mode strings from flimflam's nomenclature, as defined
53 // in chromeos/dbus/service_constants.h, to uints used by supplicant
54 static uint32_t ModeStringToUint(const std::string &mode_string);
55
Paul Stewart72b2fdc2012-06-02 08:58:51 -070056 // Returns a stringmap containing information gleaned about the
57 // vendor of this AP.
58 std::map<std::string, std::string> GetVendorInformation() const;
59
mukesh agrawalb54601c2011-06-07 17:39:22 -070060 const std::vector<uint8_t> &ssid() const;
61 const std::string &ssid_string() const;
62 const std::string &ssid_hex() const;
63 const std::string &bssid_string() const;
64 const std::string &bssid_hex() const;
Paul Stewart3c504012013-01-17 17:49:58 -080065 const WiFiRefPtr &device() const;
mukesh agrawalb54601c2011-06-07 17:39:22 -070066 int16_t signal_strength() const;
Thieu Lee41a72d2012-02-06 20:46:51 +000067 uint16 frequency() const;
Thieu Le1df7f4e2012-02-10 15:21:45 -080068 uint16 physical_mode() const;
Chris Masone092df3e2011-08-22 09:41:39 -070069 const std::string &network_mode() const;
mukesh agrawal6e277772011-09-29 15:04:23 -070070 const std::string &security_mode() const;
Paul Stewarta5e7d5f2013-01-09 18:06:15 -080071 bool ieee80211w_required() const;
mukesh agrawalb54601c2011-06-07 17:39:22 -070072
73 private:
mukesh agrawal6e277772011-09-29 15:04:23 -070074 friend class WiFiEndpointTest;
Paul Stewarte369ece2012-05-22 09:11:03 -070075 friend class WiFiObjectTest; // for MakeOpenEndpoint
Paul Stewart3c504012013-01-17 17:49:58 -080076 friend class WiFiProviderTest; // for MakeOpenEndpoint
mukesh agrawal8a3188d2011-12-01 20:56:44 +000077 friend class WiFiServiceTest; // for MakeOpenEndpoint
mukesh agrawal6e277772011-09-29 15:04:23 -070078 // these test cases need access to the KeyManagement enum
Paul Stewart72b2fdc2012-06-02 08:58:51 -070079 FRIEND_TEST(WiFiEndpointTest, DeterminePhyModeFromFrequency);
80 FRIEND_TEST(WiFiEndpointTest, ParseIEs);
mukesh agrawal6e277772011-09-29 15:04:23 -070081 FRIEND_TEST(WiFiEndpointTest, ParseKeyManagementMethodsEAP);
82 FRIEND_TEST(WiFiEndpointTest, ParseKeyManagementMethodsPSK);
83 FRIEND_TEST(WiFiEndpointTest, ParseKeyManagementMethodsEAPAndPSK);
Paul Stewart72b2fdc2012-06-02 08:58:51 -070084 FRIEND_TEST(WiFiEndpointTest, ParseVendorIEs);
Paul Stewarta5e7d5f2013-01-09 18:06:15 -080085 FRIEND_TEST(WiFiEndpointTest, ParseWPACapabilities);
86 FRIEND_TEST(WiFiServiceTest, ConnectTaskWPA80211w);
mukesh agrawale1d90e92012-02-15 17:36:08 -080087 FRIEND_TEST(WiFiServiceUpdateFromEndpointsTest, EndpointModified);
Paul Stewarta5e7d5f2013-01-09 18:06:15 -080088 FRIEND_TEST(WiFiServiceUpdateFromEndpointsTest, Ieee80211w);
mukesh agrawalb54601c2011-06-07 17:39:22 -070089
mukesh agrawal6e277772011-09-29 15:04:23 -070090 enum KeyManagement {
91 kKeyManagement802_1x,
92 kKeyManagementPSK
93 };
mukesh agrawalb54601c2011-06-07 17:39:22 -070094
mukesh agrawal8a3188d2011-12-01 20:56:44 +000095 // Build a simple WiFiEndpoint, for testing purposes.
mukesh agrawalb20776f2012-02-10 16:00:36 -080096 static WiFiEndpoint *MakeOpenEndpoint(ProxyFactory *proxy_factory,
97 const WiFiRefPtr &wifi,
98 const std::string &ssid,
mukesh agrawale1d90e92012-02-15 17:36:08 -080099 const std::string &bssid,
Paul Stewart3c504012013-01-17 17:49:58 -0800100 const std::string &network_mode,
mukesh agrawale1d90e92012-02-15 17:36:08 -0800101 uint16 frequency,
102 int16 signal_dbm);
Chris Masone092df3e2011-08-22 09:41:39 -0700103 // Maps mode strings from supplicant into flimflam's nomenclature, as defined
104 // in chromeos/dbus/service_constants.h
105 static const char *ParseMode(const std::string &mode_string);
mukesh agrawal6e277772011-09-29 15:04:23 -0700106 // Parses an Endpoint's properties to identify approprirate flimflam
107 // security property value, as defined in chromeos/dbus/service_constants.h
108 static const char *ParseSecurity(
109 const std::map<std::string, ::DBus::Variant> &properties);
mukesh agrawalb20776f2012-02-10 16:00:36 -0800110 // Parses an Endpoint's properties' "RSN" or "WPA" sub-dictionary, to
mukesh agrawal6e277772011-09-29 15:04:23 -0700111 // identify supported key management methods (802.1x or PSK).
112 static void ParseKeyManagementMethods(
113 const std::map<std::string, ::DBus::Variant> &security_method_properties,
114 std::set<KeyManagement> *key_management_methods);
Thieu Le1df7f4e2012-02-10 15:21:45 -0800115 // Determine the negotiated operating mode for the channel by looking at
116 // the information elements, frequency and data rates. The information
117 // elements and data rates live in |properties|.
Paul Stewart72b2fdc2012-06-02 08:58:51 -0700118 static Metrics::WiFiNetworkPhyMode DeterminePhyModeFromFrequency(
Thieu Le1df7f4e2012-02-10 15:21:45 -0800119 const std::map<std::string, ::DBus::Variant> &properties,
120 uint16 frequency);
Paul Stewarta5e7d5f2013-01-09 18:06:15 -0800121 // Parse information elements to determine the physical mode, vendor
122 // information and IEEE 802.11w requirement information associated
123 // with the AP. Returns true if a physical mode was determined from
124 // the IE elements, false otherwise.
Paul Stewart72b2fdc2012-06-02 08:58:51 -0700125 static bool ParseIEs(const std::map<std::string, ::DBus::Variant> &properties,
126 Metrics::WiFiNetworkPhyMode *phy_mode,
Paul Stewarta5e7d5f2013-01-09 18:06:15 -0800127 VendorInformation *vendor_information,
128 bool *ieee80211w_required);
129 // Parse a WPA information element and set *|ieee80211w_required| to true
130 // if IEEE 802.11w is required by this AP.
131 static void ParseWPACapabilities(std::vector<uint8_t>::const_iterator ie,
132 std::vector<uint8_t>::const_iterator end,
133 bool *ieee80211w_required);
134 // Parse a single vendor information element. If this is a WPA vendor
135 // element, call ParseWPACapabilites with |ieee80211w_required|.
Paul Stewart72b2fdc2012-06-02 08:58:51 -0700136 static void ParseVendorIE(std::vector<uint8_t>::const_iterator ie,
137 std::vector<uint8_t>::const_iterator end,
Paul Stewarta5e7d5f2013-01-09 18:06:15 -0800138 VendorInformation *vendor_information,
139 bool *ieee80211w_required);
mukesh agrawalb54601c2011-06-07 17:39:22 -0700140
mukesh agrawal6e277772011-09-29 15:04:23 -0700141 // TODO(quiche): make const?
mukesh agrawalb54601c2011-06-07 17:39:22 -0700142 std::vector<uint8_t> ssid_;
143 std::vector<uint8_t> bssid_;
144 std::string ssid_string_;
145 std::string ssid_hex_;
146 std::string bssid_string_;
147 std::string bssid_hex_;
mukesh agrawale1d90e92012-02-15 17:36:08 -0800148 int16 signal_strength_;
Thieu Lee41a72d2012-02-06 20:46:51 +0000149 uint16 frequency_;
Thieu Le1df7f4e2012-02-10 15:21:45 -0800150 uint16 physical_mode_;
mukesh agrawal6e277772011-09-29 15:04:23 -0700151 // network_mode_ and security_mode_ are represented as flimflam names
152 // (not necessarily the same as wpa_supplicant names)
Chris Masone092df3e2011-08-22 09:41:39 -0700153 std::string network_mode_;
mukesh agrawal6e277772011-09-29 15:04:23 -0700154 std::string security_mode_;
Paul Stewart72b2fdc2012-06-02 08:58:51 -0700155 VendorInformation vendor_information_;
Paul Stewarta5e7d5f2013-01-09 18:06:15 -0800156 bool ieee80211w_required_;
mukesh agrawalb54601c2011-06-07 17:39:22 -0700157
mukesh agrawalb20776f2012-02-10 16:00:36 -0800158 ProxyFactory *proxy_factory_;
159 WiFiRefPtr device_;
160 std::string rpc_id_;
161 scoped_ptr<SupplicantBSSProxyInterface> supplicant_bss_proxy_;
162
mukesh agrawalb54601c2011-06-07 17:39:22 -0700163 DISALLOW_COPY_AND_ASSIGN(WiFiEndpoint);
164};
165
166} // namespace shill
167
168#endif // SHILL_WIFI_ENDPOINT_