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

Side by Side Diff: chrome/browser/password_manager/native_backend_gnome_x.h

Issue 8509038: Linux: split GNOME Keyring integration into a separate process. Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: everything works Created 9 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_ 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_
6 #define CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_ 6 #define CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_
7 #pragma once 7 #pragma once
8 8
9 #include <gnome-keyring.h>
10
11 #include <string> 9 #include <string>
12 10
13 #include "base/basictypes.h" 11 #include "base/basictypes.h"
14 #include "base/time.h" 12 #include "base/time.h"
15 #include "chrome/browser/password_manager/password_store_x.h" 13 #include "chrome/browser/password_manager/password_store_x.h"
16 #include "chrome/browser/profiles/profile.h" 14 #include "chrome/browser/profiles/profile.h"
17 15
16 class ChromeKeyringProxyClient;
18 class PrefService; 17 class PrefService;
19 18
20 namespace webkit_glue { 19 namespace webkit_glue {
21 struct PasswordForm; 20 struct PasswordForm;
22 } 21 }
23 22
24 // Many of the gnome_keyring_* functions use variable arguments, which makes 23 // NativeBackend implementation using GNOME Keyring.
25 // them difficult if not impossible to truly wrap in C. Therefore, we use 24 class NativeBackendGnome : public PasswordStoreX::NativeBackend {
26 // appropriately-typed function pointers and scoping to make the fact that we 25 public:
27 // might be dynamically loading the library almost invisible. As a bonus, we 26 static const char kGnomeKeyringAppString[];
28 // also get a simple way to mock the library for testing. Classes that inherit
29 // from GnomeKeyringLoader will use its versions of the gnome_keyring_*
30 // functions. Note that it has only static fields.
31 class GnomeKeyringLoader {
32 protected:
33 static bool LoadGnomeKeyring();
34 27
35 // Call a given parameter with the name of each function we use from GNOME
36 // Keyring. Make sure to adjust the unit test if you change these.
37 #define GNOME_KEYRING_FOR_EACH_FUNC(F) \
38 F(is_available) \
39 F(store_password) \
40 F(delete_password) \
41 F(find_itemsv) \
42 F(result_to_message)
43
44 // Declare the actual function pointers that we'll use in client code.
45 #define GNOME_KEYRING_DECLARE_POINTER(name) \
46 static typeof(&::gnome_keyring_##name) gnome_keyring_##name;
47 GNOME_KEYRING_FOR_EACH_FUNC(GNOME_KEYRING_DECLARE_POINTER)
48 #undef GNOME_KEYRING_DECLARE_POINTER
49
50 // Set to true if LoadGnomeKeyring() has already succeeded.
51 static bool keyring_loaded;
52
53 private:
54 #if defined(DLOPEN_GNOME_KEYRING)
55 struct FunctionInfo {
56 const char* name;
57 void** pointer;
58 };
59
60 // Make it easy to initialize the function pointers in LoadGnomeKeyring().
61 static const FunctionInfo functions[];
62 #endif // defined(DLOPEN_GNOME_KEYRING)
63 };
64
65 // NativeBackend implementation using GNOME Keyring.
66 class NativeBackendGnome : public PasswordStoreX::NativeBackend,
67 public GnomeKeyringLoader {
68 public:
69 NativeBackendGnome(LocalProfileId id, PrefService* prefs); 28 NativeBackendGnome(LocalProfileId id, PrefService* prefs);
70 29
71 virtual ~NativeBackendGnome(); 30 virtual ~NativeBackendGnome();
72 31
73 virtual bool Init() OVERRIDE; 32 virtual bool Init() OVERRIDE;
74 33
75 // Implements NativeBackend interface. 34 // Implements NativeBackend interface.
76 virtual bool AddLogin(const webkit_glue::PasswordForm& form) OVERRIDE; 35 virtual bool AddLogin(const webkit_glue::PasswordForm& form) OVERRIDE;
77 virtual bool UpdateLogin(const webkit_glue::PasswordForm& form) OVERRIDE; 36 virtual bool UpdateLogin(const webkit_glue::PasswordForm& form) OVERRIDE;
78 virtual bool RemoveLogin(const webkit_glue::PasswordForm& form) OVERRIDE; 37 virtual bool RemoveLogin(const webkit_glue::PasswordForm& form) OVERRIDE;
79 virtual bool RemoveLoginsCreatedBetween( 38 virtual bool RemoveLoginsCreatedBetween(
80 const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE; 39 const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE;
81 virtual bool GetLogins(const webkit_glue::PasswordForm& form, 40 virtual bool GetLogins(const webkit_glue::PasswordForm& form,
82 PasswordFormList* forms) OVERRIDE; 41 PasswordFormList* forms) OVERRIDE;
83 virtual bool GetLoginsCreatedBetween(const base::Time& get_begin, 42 virtual bool GetLoginsCreatedBetween(const base::Time& get_begin,
84 const base::Time& get_end, 43 const base::Time& get_end,
85 PasswordFormList* forms) OVERRIDE; 44 PasswordFormList* forms) OVERRIDE;
86 virtual bool GetAutofillableLogins(PasswordFormList* forms) OVERRIDE; 45 virtual bool GetAutofillableLogins(PasswordFormList* forms) OVERRIDE;
87 virtual bool GetBlacklistLogins(PasswordFormList* forms) OVERRIDE; 46 virtual bool GetBlacklistLogins(PasswordFormList* forms) OVERRIDE;
88 47
48 protected:
49 // Takes ownership of |client|. Use for testing only.
50 void InitForTesting(ChromeKeyringProxyClient* client);
51
89 private: 52 private:
90 // Adds a login form without checking for one to replace first. 53 // Adds a login form without checking for one to replace first.
91 bool RawAddLogin(const webkit_glue::PasswordForm& form); 54 bool RawAddLogin(const webkit_glue::PasswordForm& form);
92 55
93 // Reads PasswordForms from the keyring with the given autofillability state. 56 // Reads PasswordForms from the keyring with the given autofillability state.
94 bool GetLoginsList(PasswordFormList* forms, bool autofillable); 57 bool GetLoginsList(PasswordFormList* forms, bool autofillable);
95 58
96 // Helper for GetLoginsCreatedBetween(). 59 // Helper for GetLoginsCreatedBetween().
97 bool GetAllLogins(PasswordFormList* forms); 60 bool GetAllLogins(PasswordFormList* forms);
98 61
99 // Generates a profile-specific app string based on profile_id_. 62 // Generates a profile-specific app string based on profile_id_.
100 std::string GetProfileSpecificAppString() const; 63 std::string GetProfileSpecificAppString() const;
101 64
102 // Migrates non-profile-specific logins to be profile-specific. 65 // Migrates non-profile-specific logins to be profile-specific.
103 void MigrateToProfileSpecificLogins(); 66 void MigrateToProfileSpecificLogins();
104 67
105 // The local profile id, used to generate the app string. 68 // The local profile id, used to generate the app string.
106 const LocalProfileId profile_id_; 69 const LocalProfileId profile_id_;
107 70
108 // The pref service to use for persistent migration settings. 71 // The pref service to use for persistent migration settings.
109 PrefService* prefs_; 72 PrefService* prefs_;
110 73
111 // The app string, possibly based on the local profile id. 74 // The app string, possibly based on the local profile id.
112 std::string app_string_; 75 std::string app_string_;
113 76
114 // True once MigrateToProfileSpecificLogins() has been attempted. 77 // True once MigrateToProfileSpecificLogins() has been attempted.
115 bool migrate_tried_; 78 bool migrate_tried_;
116 79
80 // The keyring proxy client handles communicating with an out-of-process
81 // GNOME Keyring client, since to do it in-process we'd need to involve
82 // the UI thread which can lead to deadlocks with password sync.
83 scoped_ptr<ChromeKeyringProxyClient> proxy_client_;
84
117 DISALLOW_COPY_AND_ASSIGN(NativeBackendGnome); 85 DISALLOW_COPY_AND_ASSIGN(NativeBackendGnome);
118 }; 86 };
119 87
120 #endif // CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_ 88 #endif // CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698