OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 NET_CERT_CERT_DATABASE_H_ | 5 #ifndef NET_CERT_CERT_DATABASE_H_ |
6 #define NET_CERT_CERT_DATABASE_H_ | 6 #define NET_CERT_CERT_DATABASE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "net/base/net_export.h" | 11 #include "net/base/net_export.h" |
12 #include "net/cert/x509_certificate.h" | 12 #include "net/cert/x509_certificate.h" |
13 | 13 |
14 template <typename T> struct DefaultSingletonTraits; | 14 template <typename T> struct DefaultSingletonTraits; |
15 template <class ObserverType> class ObserverListThreadSafe; | 15 template <class ObserverType> class ObserverListThreadSafe; |
16 | 16 |
17 namespace net { | 17 namespace net { |
18 | 18 |
19 class NSSCertDatabase; | |
20 | |
21 // This class provides cross-platform functions to verify and add user | 19 // This class provides cross-platform functions to verify and add user |
22 // certificates, and to observe changes to the underlying certificate stores. | 20 // certificates, and to observe changes to the underlying certificate stores. |
23 | 21 |
24 // TODO(gauravsh): This class could be augmented with methods | 22 // TODO(gauravsh): This class could be augmented with methods |
25 // for all operations that manipulate the underlying system | 23 // for all operations that manipulate the underlying system |
26 // certificate store. | 24 // certificate store. |
27 | 25 |
28 class NET_EXPORT CertDatabase { | 26 class NET_EXPORT CertDatabase { |
29 public: | 27 public: |
30 // A CertDatabase::Observer will be notified on certificate database changes. | 28 // A CertDatabase::Observer will be notified on certificate database changes. |
31 // The change could be either a new user certificate is added or trust on | 29 // The change could be either a user certificate is added/removed or trust on |
32 // a certificate is changed. Observers can register themselves | 30 // a certificate is changed. Observers can be registered via |
33 // via CertDatabase::AddObserver, and can un-register with | 31 // CertDatabase::AddObserver, and can un-register with |
34 // CertDatabase::RemoveObserver. | 32 // CertDatabase::RemoveObserver. |
35 class NET_EXPORT Observer { | 33 class NET_EXPORT Observer { |
36 public: | 34 public: |
37 virtual ~Observer() {} | 35 virtual ~Observer() {} |
38 | 36 |
39 // Will be called when a new certificate is added. | 37 // Will be called when a new certificate is added. If the imported cert can |
| 38 // be determined, |cert| will be non-NULL, but if not, or if multiple |
| 39 // certificates were imported, |cert| may be NULL. |
40 virtual void OnCertAdded(const X509Certificate* cert) {} | 40 virtual void OnCertAdded(const X509Certificate* cert) {} |
41 | 41 |
42 // Will be called when a certificate is removed. | 42 // Will be called when a certificate is removed. |
43 virtual void OnCertRemoved(const X509Certificate* cert) {} | 43 virtual void OnCertRemoved(const X509Certificate* cert) {} |
44 | 44 |
45 // Will be called when a CA certificate was added, removed, or its trust | 45 // Will be called when a CA certificate was added, removed, or its trust |
46 // changed. This can also mean that a client certificate's trust changed. | 46 // changed. This can also mean that a client certificate's trust changed. |
47 virtual void OnCACertChanged(const X509Certificate* cert) {} | 47 virtual void OnCACertChanged(const X509Certificate* cert) {} |
48 | 48 |
49 protected: | 49 protected: |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 // KeyStore used for storing client certificates. When the Java side replaces | 86 // KeyStore used for storing client certificates. When the Java side replaces |
87 // the KeyStore used for client certificates, notifies the observers as if a | 87 // the KeyStore used for client certificates, notifies the observers as if a |
88 // new client certificate was added. | 88 // new client certificate was added. |
89 void OnAndroidKeyStoreChanged(); | 89 void OnAndroidKeyStoreChanged(); |
90 | 90 |
91 // On Android, the system database is used. When the system notifies the | 91 // On Android, the system database is used. When the system notifies the |
92 // application that the certificates changed, the observers must be notified. | 92 // application that the certificates changed, the observers must be notified. |
93 void OnAndroidKeyChainChanged(); | 93 void OnAndroidKeyChainChanged(); |
94 #endif | 94 #endif |
95 | 95 |
96 #if defined(USE_NSS) | 96 // Synthetically injects notifications to all observers. In general, this |
97 // Observe events from the |source| and forward them to observers of this | 97 // should only be called by the creator of the CertDatabase. Used to inject |
98 // CertDatabase. | 98 // notifcations from other DB interfaces. |
99 void ObserveNSSCertDatabase(NSSCertDatabase* source); | 99 void NotifyObserversOfCertAdded(const X509Certificate* cert); |
100 #endif | 100 void NotifyObserversOfCertRemoved(const X509Certificate* cert); |
| 101 void NotifyObserversOfCACertChanged(const X509Certificate* cert); |
101 | 102 |
102 private: | 103 private: |
103 friend struct DefaultSingletonTraits<CertDatabase>; | 104 friend struct DefaultSingletonTraits<CertDatabase>; |
104 | 105 |
105 CertDatabase(); | 106 CertDatabase(); |
106 ~CertDatabase(); | 107 ~CertDatabase(); |
107 | 108 |
108 // Broadcasts notifications to all registered observers. | |
109 void NotifyObserversOfCertAdded(const X509Certificate* cert); | |
110 void NotifyObserversOfCertRemoved(const X509Certificate* cert); | |
111 void NotifyObserversOfCACertChanged(const X509Certificate* cert); | |
112 | |
113 const scoped_refptr<ObserverListThreadSafe<Observer> > observer_list_; | 109 const scoped_refptr<ObserverListThreadSafe<Observer> > observer_list_; |
114 | 110 |
115 #if defined(USE_NSS) || (defined(OS_MACOSX) && !defined(OS_IOS)) | 111 #if defined(OS_MACOSX) && !defined(OS_IOS) |
116 class Notifier; | 112 class Notifier; |
117 friend class Notifier; | 113 friend class Notifier; |
118 scoped_ptr<Notifier> notifier_; | 114 scoped_ptr<Notifier> notifier_; |
119 #endif | 115 #endif |
120 | 116 |
121 DISALLOW_COPY_AND_ASSIGN(CertDatabase); | 117 DISALLOW_COPY_AND_ASSIGN(CertDatabase); |
122 }; | 118 }; |
123 | 119 |
124 } // namespace net | 120 } // namespace net |
125 | 121 |
126 #endif // NET_CERT_CERT_DATABASE_H_ | 122 #endif // NET_CERT_CERT_DATABASE_H_ |
OLD | NEW |