Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Side by Side Diff: chrome/browser/password_manager/password_store_mac.cc

Issue 1752007: Send out notifications when logins are changed through PasswordStoreMac (Closed)
Patch Set: Update Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/password_manager/password_store_mac.h ('k') | chrome/common/notification_type.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/password_manager/password_store_mac.h" 5 #include "chrome/browser/password_manager/password_store_mac.h"
6 #include "chrome/browser/password_manager/password_store_mac_internal.h" 6 #include "chrome/browser/password_manager/password_store_mac_internal.h"
7 7
8 #include <CoreServices/CoreServices.h> 8 #include <CoreServices/CoreServices.h>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/mac_util.h" 13 #include "base/mac_util.h"
14 #include "base/stl_util-inl.h" 14 #include "base/stl_util-inl.h"
15 #include "base/string_util.h" 15 #include "base/string_util.h"
16 #include "base/task.h"
16 #include "base/utf_string_conversions.h" 17 #include "base/utf_string_conversions.h"
17 #include "chrome/browser/keychain_mac.h" 18 #include "chrome/browser/keychain_mac.h"
18 #include "chrome/browser/password_manager/login_database.h" 19 #include "chrome/browser/password_manager/login_database.h"
20 #include "chrome/browser/password_manager/password_store_change.h"
19 21
20 using webkit_glue::PasswordForm; 22 using webkit_glue::PasswordForm;
21 23
22 // Utility class to handle the details of constructing and running a keychain 24 // Utility class to handle the details of constructing and running a keychain
23 // search from a set of attributes. 25 // search from a set of attributes.
24 class KeychainSearch { 26 class KeychainSearch {
25 public: 27 public:
26 explicit KeychainSearch(const MacKeychain& keychain); 28 explicit KeychainSearch(const MacKeychain& keychain);
27 ~KeychainSearch(); 29 ~KeychainSearch();
28 30
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after
709 #pragma mark - 711 #pragma mark -
710 712
711 PasswordStoreMac::PasswordStoreMac(MacKeychain* keychain, 713 PasswordStoreMac::PasswordStoreMac(MacKeychain* keychain,
712 LoginDatabase* login_db) 714 LoginDatabase* login_db)
713 : keychain_(keychain), login_metadata_db_(login_db) { 715 : keychain_(keychain), login_metadata_db_(login_db) {
714 DCHECK(keychain_.get()); 716 DCHECK(keychain_.get());
715 DCHECK(login_metadata_db_.get()); 717 DCHECK(login_metadata_db_.get());
716 } 718 }
717 719
718 PasswordStoreMac::~PasswordStoreMac() { 720 PasswordStoreMac::~PasswordStoreMac() {
721 if (thread_.get()) {
722 thread_->message_loop()->DeleteSoon(FROM_HERE,
723 notification_service_.release());
724 thread_->message_loop()->RunAllPending();
725 }
719 } 726 }
720 727
721 bool PasswordStoreMac::Init() { 728 bool PasswordStoreMac::Init() {
722 thread_.reset(new base::Thread("Chrome_PasswordStore_Thread")); 729 thread_.reset(new base::Thread("Chrome_PasswordStore_Thread"));
723 730
724 if (!thread_->Start()) { 731 if (!thread_->Start()) {
725 thread_.reset(NULL); 732 thread_.reset(NULL);
726 return false; 733 return false;
727 } 734 }
735 ScheduleTask(NewRunnableMethod(this,
736 &PasswordStoreMac::CreateNotificationService));
728 return PasswordStore::Init(); 737 return PasswordStore::Init();
729 } 738 }
730 739
731 void PasswordStoreMac::ScheduleTask(Task* task) { 740 void PasswordStoreMac::ScheduleTask(Task* task) {
732 if (thread_.get()) { 741 if (thread_.get()) {
733 thread_->message_loop()->PostTask(FROM_HERE, task); 742 thread_->message_loop()->PostTask(FROM_HERE, task);
734 } 743 }
735 } 744 }
736 745
737 void PasswordStoreMac::AddLoginImpl(const PasswordForm& form) { 746 void PasswordStoreMac::AddLoginImpl(const PasswordForm& form) {
738 if (AddToKeychainIfNecessary(form)) { 747 if (AddToKeychainIfNecessary(form)) {
739 login_metadata_db_->AddLogin(form); 748 if (login_metadata_db_->AddLogin(form)) {
749 PasswordStoreChangeList changes;
750 changes.push_back(PasswordStoreChange(PasswordStoreChange::ADD, form));
751 NotificationService::current()->Notify(
752 NotificationType::LOGINS_CHANGED,
753 NotificationService::AllSources(),
754 Details<PasswordStoreChangeList>(&changes));
755 }
740 } 756 }
741 } 757 }
742 758
743 void PasswordStoreMac::UpdateLoginImpl(const PasswordForm& form) { 759 void PasswordStoreMac::UpdateLoginImpl(const PasswordForm& form) {
744 // The keychain add will update if there is a collision and add if there 760 // The keychain add will update if there is a collision and add if there
745 // isn't, which is the behavior we want, so there's no separate update call. 761 // isn't, which is the behavior we want, so there's no separate update call.
746 if (AddToKeychainIfNecessary(form)) { 762 if (AddToKeychainIfNecessary(form)) {
747 int update_count = 0; 763 int update_count = 0;
748 login_metadata_db_->UpdateLogin(form, &update_count); 764 if (login_metadata_db_->UpdateLogin(form, &update_count)) {
749 // Update will catch any database entries that we already had, but we could 765 // Update will catch any database entries that we already had, but we
750 // also be updating a keychain-only form, in which case we need to add. 766 // could also be updating a keychain-only form, in which case we need to
751 if (update_count == 0) { 767 // add.
752 login_metadata_db_->AddLogin(form); 768 PasswordStoreChangeList changes;
769 if (update_count == 0) {
770 if (login_metadata_db_->AddLogin(form)) {
771 changes.push_back(PasswordStoreChange(PasswordStoreChange::ADD,
772 form));
773 }
774 } else {
775 changes.push_back(PasswordStoreChange(PasswordStoreChange::UPDATE,
776 form));
777 }
778 if (!changes.empty()) {
779 NotificationService::current()->Notify(
780 NotificationType::LOGINS_CHANGED,
781 NotificationService::AllSources(),
782 Details<PasswordStoreChangeList>(&changes));
783 }
753 } 784 }
754 } 785 }
755 } 786 }
756 787
757 void PasswordStoreMac::RemoveLoginImpl(const PasswordForm& form) { 788 void PasswordStoreMac::RemoveLoginImpl(const PasswordForm& form) {
758 login_metadata_db_->RemoveLogin(form); 789 if (login_metadata_db_->RemoveLogin(form)) {
790 // See if we own a Keychain item associated with this item. We can do an
791 // exact search rather than messing around with trying to do fuzzy matching
792 // because passwords that we created will always have an exact-match
793 // database entry.
794 // (If a user does lose their profile but not their keychain we'll treat the
795 // entries we find like other imported entries anyway, so it's reasonable to
796 // handle deletes on them the way we would for an imported item.)
797 MacKeychainPasswordFormAdapter owned_keychain_adapter(keychain_.get());
798 owned_keychain_adapter.SetFindsOnlyOwnedItems(true);
799 PasswordForm* owned_password_form =
800 owned_keychain_adapter.PasswordExactlyMatchingForm(form);
801 if (owned_password_form) {
802 // If we don't have other forms using it (i.e., a form differing only by
803 // the names of the form elements), delete the keychain entry.
804 if (!DatabaseHasFormMatchingKeychainForm(form)) {
805 owned_keychain_adapter.RemovePassword(form);
806 }
807 }
759 808
760 // See if we own a Keychain item associated with this item. We can do an exact 809 PasswordStoreChangeList changes;
761 // search rather than messing around with trying to do fuzzy matching because 810 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form));
762 // passwords that we created will always have an exact-match database entry. 811 NotificationService::current()->Notify(
763 // (If a user does lose their profile but not their keychain we'll treat the 812 NotificationType::LOGINS_CHANGED,
764 // entries we find like other imported entries anyway, so it's reasonable to 813 NotificationService::AllSources(),
765 // handle deletes on them the way we would for an imported item.) 814 Details<PasswordStoreChangeList>(&changes));
766 MacKeychainPasswordFormAdapter owned_keychain_adapter(keychain_.get());
767 owned_keychain_adapter.SetFindsOnlyOwnedItems(true);
768 PasswordForm* owned_password_form =
769 owned_keychain_adapter.PasswordExactlyMatchingForm(form);
770 if (owned_password_form) {
771 // If we don't have other forms using it (i.e., a form differing only by
772 // the names of the form elements), delete the keychain entry.
773 if (!DatabaseHasFormMatchingKeychainForm(form)) {
774 owned_keychain_adapter.RemovePassword(form);
775 }
776 } 815 }
777 } 816 }
778 817
779 void PasswordStoreMac::RemoveLoginsCreatedBetweenImpl( 818 void PasswordStoreMac::RemoveLoginsCreatedBetweenImpl(
780 const base::Time& delete_begin, const base::Time& delete_end) { 819 const base::Time& delete_begin, const base::Time& delete_end) {
781 login_metadata_db_->RemoveLoginsCreatedBetween(delete_begin, delete_end); 820 std::vector<PasswordForm*> forms;
821 if (login_metadata_db_->GetLoginsCreatedBetween(delete_begin, delete_end,
822 &forms)) {
823 if (login_metadata_db_->RemoveLoginsCreatedBetween(delete_begin,
824 delete_end)) {
825 // We can't delete from the Keychain by date because we may be sharing
826 // items with database entries that weren't in the delete range. Instead,
827 // we find all the Keychain items we own but aren't using any more and
828 // delete those.
829 std::vector<PasswordForm*> orphan_keychain_forms =
830 GetUnusedKeychainForms();
831 // This is inefficient, since we have to re-look-up each keychain item
832 // one at a time to delete it even though the search step already had a
833 // list of Keychain item references. If this turns out to be noticeably
834 // slow we'll need to rearchitect to allow the search and deletion steps
835 // to share.
836 RemoveKeychainForms(orphan_keychain_forms);
837 STLDeleteElements(&orphan_keychain_forms);
782 838
783 // We can't delete from the Keychain by date because we may be sharing items 839 PasswordStoreChangeList changes;
784 // with database entries that weren't in the delete range. Instead, we find 840 for (std::vector<PasswordForm*>::const_iterator it = forms.begin();
785 // all the Keychain items we own but aren't using any more and delete those. 841 it != forms.end(); ++it) {
786 std::vector<PasswordForm*> orphan_keychain_forms = GetUnusedKeychainForms(); 842 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE,
787 // This is inefficient, since we have to re-look-up each keychain item one at 843 **it));
788 // a time to delete it even though the search step already had a list of 844 }
789 // Keychain item references. If this turns out to be noticeably slow we'll 845 NotificationService::current()->Notify(
790 // need to rearchitect to allow the search and deletion steps to share. 846 NotificationType::LOGINS_CHANGED,
791 RemoveKeychainForms(orphan_keychain_forms); 847 NotificationService::AllSources(),
792 STLDeleteElements(&orphan_keychain_forms); 848 Details<PasswordStoreChangeList>(&changes));
849 }
850 }
793 } 851 }
794 852
795 void PasswordStoreMac::GetLoginsImpl(GetLoginsRequest* request, 853 void PasswordStoreMac::GetLoginsImpl(GetLoginsRequest* request,
796 const webkit_glue::PasswordForm& form) { 854 const webkit_glue::PasswordForm& form) {
797 MacKeychainPasswordFormAdapter keychain_adapter(keychain_.get()); 855 MacKeychainPasswordFormAdapter keychain_adapter(keychain_.get());
798 std::vector<PasswordForm*> keychain_forms = 856 std::vector<PasswordForm*> keychain_forms =
799 keychain_adapter.PasswordsFillingForm(form); 857 keychain_adapter.PasswordsFillingForm(form);
800 858
801 std::vector<PasswordForm*> database_forms; 859 std::vector<PasswordForm*> database_forms;
802 login_metadata_db_->GetLogins(form, &database_forms); 860 login_metadata_db_->GetLogins(form, &database_forms);
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 957
900 void PasswordStoreMac::RemoveKeychainForms( 958 void PasswordStoreMac::RemoveKeychainForms(
901 const std::vector<PasswordForm*>& forms) { 959 const std::vector<PasswordForm*>& forms) {
902 MacKeychainPasswordFormAdapter owned_keychain_adapter(keychain_.get()); 960 MacKeychainPasswordFormAdapter owned_keychain_adapter(keychain_.get());
903 owned_keychain_adapter.SetFindsOnlyOwnedItems(true); 961 owned_keychain_adapter.SetFindsOnlyOwnedItems(true);
904 for (std::vector<PasswordForm*>::const_iterator i = forms.begin(); 962 for (std::vector<PasswordForm*>::const_iterator i = forms.begin();
905 i != forms.end(); ++i) { 963 i != forms.end(); ++i) {
906 owned_keychain_adapter.RemovePassword(**i); 964 owned_keychain_adapter.RemovePassword(**i);
907 } 965 }
908 } 966 }
967
968 void PasswordStoreMac::CreateNotificationService() {
969 notification_service_.reset(new NotificationService);
970 }
OLDNEW
« no previous file with comments | « chrome/browser/password_manager/password_store_mac.h ('k') | chrome/common/notification_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698