summaryrefslogtreecommitdiff
path: root/test-rpc-proxy
diff options
context:
space:
mode:
authorRoshan Pius <rpius@google.com>2015-12-07 10:56:10 -0800
committerRoshan Pius <rpius@google.com>2015-12-07 12:53:06 -0800
commitbd33dbbc4cfa44c3dfb5e7d648a752a8e6f1a600 (patch)
tree7bfaed15043eec63a7c0d5ca9822f0a6a3f589e2 /test-rpc-proxy
parente6833dc3d92ce13a87b0c5c0926241025410d756 (diff)
downloadshill-bd33dbbc4cfa44c3dfb5e7d648a752a8e6f1a600.tar.gz
Revert "shill-test-proxy: Create native XML RPC datatypes."
This reverts commit 529e3c0f1a14322d664bf58a9182e588ed38060a.
Diffstat (limited to 'test-rpc-proxy')
-rw-r--r--test-rpc-proxy/proxy_rpc_data_types.h104
-rw-r--r--test-rpc-proxy/proxy_rpc_security_types.h163
2 files changed, 0 insertions, 267 deletions
diff --git a/test-rpc-proxy/proxy_rpc_data_types.h b/test-rpc-proxy/proxy_rpc_data_types.h
deleted file mode 100644
index f01e1ff8..00000000
--- a/test-rpc-proxy/proxy_rpc_data_types.h
+++ /dev/null
@@ -1,104 +0,0 @@
-//
-// Copyright (C) 2015 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-#ifndef PROXY_RPC_DATA_TYPES_H
-#define PROXY_RPC_DATA_TYPES_H
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <sysexits.h>
-
-#include <string>
-
-#include "proxy_rpc_security_types.h"
-
-// TODO: Only creating the datatypes. Need to figure out how to handle it.
-class ProxyRpcDataType {
- public:
- ProxyRpcDataType() {}
-};
-
-// Describes parameters used in WiFi connection attempts."""
-class AssociationParameters : public xmlrpc_types.XmlRpcStruct {
- public:
- const int kDefaultDiscoveryTimeout = 15;
- const int kDefaultAssociationTimeout = 15;
- const int kDefaultConfigurationTimeout = 15;
- const char kStationTypeManaged[] = "managed";
- const char kStationTypeIbss[] = "ibss";
-
- protected:
- std::string ssid_;
- SecurityConfig security_config_;
- int discovery_timeout_;
- int association_timeout_;
- int configuration_timeout_;
- bool is_hidden_;
- bool save_credentials_;
- std::string station_type_;
- bool expect_failure_;
- std::string service_guid_;
- bool expect_failure_;
- bool auto_connect_;
- BgscanConfiguration bgscan_config_;
-};
-
-// Describes the result of an association attempt.
-class AssociationResult : public ProxyRpcDataType {
- public:
-
- protected:
- bool success_;
- int discovery_time_;
- int association_timeout_;
- int configuration_timeout_;
- int failure_reason_;
-};
-
-// Describes how to configure wpa_supplicant on a DUT.
-class BgscanConfiguration : public ProxyRpcDataType {
- public:
- const int kDefaultShortIntervalSeconds = 30;
- const int kDefaultLongIntervalSeconds = 180;
- const int kDefaultignalThreshold = -50;
- const char kScanMethodDefault[] = "default";
- const char kScanMethodNone[] = "none";
- const char kScanMethodSimple[] = "simple";
-
- protected:
- std::string interface_;
- int signal_;
- int short_interval_;
- int long_interval_;
- std::string scan_method_;
-};
-
-// Describes a group of optional settings for use with ConfigureService.
-// The Manager in shill has a method ConfigureService which takes a dictionary
-// of parameters, and uses some of them to look up a service, and sets the
-// remainder of the properties on the service. This struct represents
-// some of the optional parameters that can be set in this way. Current
-// consumers of this interface look up the service by GUID.
-class ConfigureServiceParameters : public ProxyRpcDataType {
- public:
-
- protected:
- std::string service_guid_;
- std::string passphrase_;
- bool auto_connect_;
-};
-
-#endif // PROXY_RPC_DATA_TYPES_H
diff --git a/test-rpc-proxy/proxy_rpc_security_types.h b/test-rpc-proxy/proxy_rpc_security_types.h
deleted file mode 100644
index e2466d6a..00000000
--- a/test-rpc-proxy/proxy_rpc_security_types.h
+++ /dev/null
@@ -1,163 +0,0 @@
-//
-// Copyright (C) 2015 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-#ifndef PROXY_RPC_SECURITY_TYPES_H
-#define PROXY_RPC_SECURITY_TYPES_H
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <sysexits.h>
-
-#include <string>
-
-// TODO: Only creating the datatypes. Need to figure out how to handle it.
-class ProxyRpcSecurityType {
- public:
- ProxyRpcSecurityType() {}
-};
-
-// Abstracts the security configuration for a WiFi network.
-// This bundle of credentials can be passed to both HostapConfig and
-// AssociationParameters so that both shill and hostapd can set up and connect
-// to an encrypted WiFi network. By default, we"ll assume we"re connecting
-// to an open network.
-class SecurityConfig : public ProxyRpcSecurityType {
- public:
- enum WpaModeType {
- MODE_PURE_WPA = 1,
- MODE_PURE_WPA2 = 2,
- MODE_MIXED_WPA = WPA_MODE_PURE | WPA_MODE_PURE_2,
- MODE_DEFAULT = WPA_MODE_MIXED,
- };
- enum AuthAlgorithmType {
- AUTH_ALGORITHM_TYPE_OPEN = 1,
- AUTH_ALGORITHM_TYPE_SHARED = 2,
- AUTH_ALGORITHM_TYPE_DEFAULT = AUTH_ALGORITHM_TYPE_OPEN
- };
-};
-
-// Abstracts security configuration for a WiFi network using static WEP.
-// Open system authentication means that we don"t do a 4 way AUTH handshake,
-// and simply start using the WEP keys after association finishes.
-class WEPConfig : public SecurityConfig {
- public:
-
- protected:
- std::vector<std::string> wep_keys_;
- int wep_default_key_;
- AuthAlgorithmType auth_algorithm_;
-};
-
-// Abstracts security configuration for a WPA encrypted WiFi network.
-class WPAConfig : public SecurityConfig {
- public:
- const char kCipherCCMP[] = "CCMP";
- const char kCipherTKIP[] = "TKIP";
-
- protected:
- std::string psk_;
- WpaModeType wpa_mode_;
- std::vector<std::string> wpa_ciphers_;
- std::vector<std::string> wpa2_ciphers_;
- int wpa_ptk_rekey_period_;
- int wpa_gtk_rekey_period_;
- int wpa_gmk_rekey_period_;
- bool use_strict_rekey_;
-};
-
-// Abstract superclass that implements certificate/key installation.
-class EAPConfig : public SecurityConfig {
- public:
- const char kDefaultEapUsers[] = "* TLS";
- const char kDefaultEAPIdentity[] = "chromeos";
- const char kServicePropertyCACertPem[] = "EAP.CACertPEM";
- const char kServicePropertyClientCertID[] = "EAP.CertID";
- const char kServicePropertyEAPIdentity[] = "EAP.Identity";
- const char kServicePropertyEAPKeyMgmt[] = "EAP.KeyMgmt";
- const char kServicePropertyEAPPassword[] = "EAP.Password";
- const char kServicePropertyEAPPIN[] = "EAP.PIN";
- const char kServicePropertyInnerEAP[] = "EAP.InnerEAP";
- const char kServicePropertyPrivateKeyID[] = "EAP.KeyID";
- const char kServicePropertyUseSystemCAs[] = "EAP.UseSystemCAs";
- const int last_tmp_id = 8800;
-
- protected:
- bool use_system_cas_;
- std::string server_ca_cert_;
- std::string server_cert_;
- std::string server_key_;
- std::string server_eap_users;
- std::string client_ca_cert_;
- std::string client_cert_;
- std::string client_key_;
- std::string server_ca_cert_file_path_;
- std::string server_cert_file_path_;
- std::string server_key_file_path_;
- std::string server_eap_user_file_path_;
- std::string file_path_suffix_;
- std::string client_cert_id_;
- std::string client_key_id_;
- std::string pin_;
- std::string client_cert_slot_id_;
- std::string client_key_slot_id_;
- std::string eap_identity_;
-};
-
-// Configuration settings bundle for dynamic WEP.
-// This is a WEP encrypted connection where the keys are negotiated after the
-// client authenticates via 802.1x.
-class DynamicWEPConfig : public EAPConfig {
- public:
- const int kDefaultKeyPeriod = 20;
-
- protected:
- bool use_short_keys_;
- int wep_rekey_period_;
-};
-
-// Security type to set up a WPA tunnel via EAP-TLS negotiation.
-class WPAEAPConfig : public EAPConfig {
- public:
-
- protected:
- bool use_short_keys_;
- WpaModeType wpa_mode_;
-};
-
-// Security type to set up a TTLS/PEAP connection.
-// Both PEAP and TTLS are tunneled protocols which use EAP inside of a TLS
-// secured tunnel. The secured tunnel is a symmetric key encryption scheme
-// negotiated under the protection of a public key in the server certificate.
-// Thus, we"ll see server credentials in the form of certificates, but client
-// credentials in the form of passwords and a CA Cert to root the trust chain.
-class Tunneled1xConfig : public WPAEAPConfig {
- public:
- const char kTTLSPrefix[] = "TTLS-";
- const char kLayer1TypePEAP[] = "PEAP";
- const char kLayer1TypeTTLS[] = "TTLS";
- const char kLayer2TypeGTC[] = "GTC";
- const char kLayer2TypeMSCHAPV2[] = "MSCHAPV2";
- const char kLayer2TypeMD5[] = "MD5";
- const char kLayer2TypeTTLSMSCHAPV2[] = TTLS_PREFIX + "MSCHAPV2";
- const char kLayer2TypeTTLSMSCHAP[] = TTLS_PREFIX + "MSCHAP";
- const char kLayer2TypeTTLSPAP[] = TTLS_PREFIX + "PAP";
-
- protected:
- std::string password_;
- std::string inner_protocol_;
-};
-
-#endif // PROXY_RPC_SECURITY_TYPES_H