1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/chromeos/login/tpm_password_fetcher.h"
8 #include "base/compiler_specific.h"
9 #include "base/message_loop/message_loop.h"
10 #include "chromeos/dbus/cryptohome_client.h"
11 #include "chromeos/dbus/dbus_thread_manager.h"
17 // Interval between TPM password checks.
18 const int kTpmCheckIntervalMs
= 500;
22 TpmPasswordFetcher::TpmPasswordFetcher(TpmPasswordFetcherDelegate
* delegate
)
23 : weak_factory_(this),
28 TpmPasswordFetcher::~TpmPasswordFetcher() {
31 void TpmPasswordFetcher::Fetch() {
32 // Since this method is also called directly.
33 weak_factory_
.InvalidateWeakPtrs();
35 DBusThreadManager::Get()->GetCryptohomeClient()->TpmIsReady(
36 base::Bind(&TpmPasswordFetcher::OnTpmIsReady
,
37 weak_factory_
.GetWeakPtr()));
40 void TpmPasswordFetcher::OnTpmIsReady(DBusMethodCallStatus call_status
,
42 if (call_status
== DBUS_METHOD_CALL_SUCCESS
&& tpm_is_ready
) {
43 DBusThreadManager::Get()->GetCryptohomeClient()->TpmGetPassword(
44 base::Bind(&TpmPasswordFetcher::OnTpmGetPassword
,
45 weak_factory_
.GetWeakPtr()));
47 // Password hasn't been acquired, reschedule fetch.
52 void TpmPasswordFetcher::OnTpmGetPassword(DBusMethodCallStatus call_status
,
53 const std::string
& password
) {
54 if (call_status
== DBUS_METHOD_CALL_SUCCESS
) {
55 if (password
.empty()) {
56 // For a fresh OOBE flow TPM is uninitialized,
57 // ownership process is started at the EULA screen,
58 // password is cleared after EULA is accepted.
59 LOG(ERROR
) << "TPM returned an empty password.";
61 delegate_
->OnPasswordFetched(password
);
63 // Password hasn't been acquired, reschedule fetch.
68 void TpmPasswordFetcher::RescheduleFetch() {
69 base::MessageLoop::current()->PostDelayedTask(
71 base::Bind(&TpmPasswordFetcher::Fetch
, weak_factory_
.GetWeakPtr()),
72 base::TimeDelta::FromMilliseconds(kTpmCheckIntervalMs
));
75 } // namespace chromeos