| // Copyright (c) 2013 The Chromium OS Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "shill/supplicant_eap_state_handler.h" |
| |
| #include "shill/logging.h" |
| #include "shill/wpa_supplicant.h" |
| |
| namespace shill { |
| |
| using std::string; |
| |
| SupplicantEAPStateHandler::SupplicantEAPStateHandler() |
| : is_eap_in_progress_(false) {} |
| |
| SupplicantEAPStateHandler::~SupplicantEAPStateHandler() {} |
| |
| bool SupplicantEAPStateHandler::ParseStatus(const string &status, |
| const string ¶meter, |
| Service::ConnectFailure *failure) { |
| if (status == WPASupplicant::kEAPStatusAcceptProposedMethod) { |
| LOG(INFO) << "EAP: accepted method " << parameter; |
| } else if (status == WPASupplicant::kEAPStatusCompletion) { |
| if (parameter == WPASupplicant::kEAPParameterSuccess) { |
| LOG(INFO) << "EAP: Completed authentication successfully."; |
| is_eap_in_progress_ = false; |
| return true; |
| } else if (parameter == WPASupplicant::kEAPParameterFailure) { |
| // If there was a TLS error, use this instead of the generic failure. |
| if (tls_error_ == WPASupplicant::kEAPStatusLocalTLSAlert) { |
| *failure = Service::kFailureEAPLocalTLS; |
| } else if (tls_error_ == |
| WPASupplicant::kEAPStatusRemoteTLSAlert) { |
| *failure = Service::kFailureEAPRemoteTLS; |
| } else { |
| *failure = Service::kFailureEAPAuthentication; |
| } |
| } else { |
| LOG(ERROR) << "EAP: Unexpected " << status << " parameter: " << parameter; |
| } |
| } else if (status == WPASupplicant::kEAPStatusLocalTLSAlert || |
| status == WPASupplicant::kEAPStatusRemoteTLSAlert) { |
| tls_error_ = status; |
| } else if (status == |
| WPASupplicant::kEAPStatusRemoteCertificateVerification) { |
| if (parameter == WPASupplicant::kEAPParameterSuccess) { |
| LOG(INFO) << "EAP: Completed remote certificate verification."; |
| } else { |
| // wpa_supplicant doesn't currently have a verification failure |
| // message. We will instead get a RemoteTLSAlert above. |
| LOG(ERROR) << "EAP: Unexpected " << status << " parameter: " << parameter; |
| } |
| } else if (status == WPASupplicant::kEAPStatusParameterNeeded) { |
| LOG(ERROR) << "EAP: Authentication aborted due to missing authentication " |
| << "parameter: " << parameter; |
| *failure = Service::kFailureEAPAuthentication; |
| } else if (status == WPASupplicant::kEAPStatusStarted) { |
| LOG(INFO) << "EAP: Authentication starting."; |
| is_eap_in_progress_ = true; |
| } |
| |
| return false; |
| } |
| |
| void SupplicantEAPStateHandler::Reset() { |
| is_eap_in_progress_ = false; |
| tls_error_ = ""; |
| } |
| |
| } // namespace shill |