Update nss_revision to 235242.
[chromium-blink-merge.git] / net / cert / cert_database.h
blobfeadf4c1d0856d8795cc9f0690fd84000414e090
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 #ifndef NET_CERT_CERT_DATABASE_H_
6 #define NET_CERT_CERT_DATABASE_H_
8 #include "base/basictypes.h"
9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "net/base/net_export.h"
12 #include "net/cert/x509_certificate.h"
14 template <typename T> struct DefaultSingletonTraits;
15 template <class ObserverType> class ObserverListThreadSafe;
17 namespace net {
19 // This class provides cross-platform functions to verify and add user
20 // certificates, and to observe changes to the underlying certificate stores.
22 // TODO(gauravsh): This class could be augmented with methods
23 // for all operations that manipulate the underlying system
24 // certificate store.
26 class NET_EXPORT CertDatabase {
27 public:
28 // A CertDatabase::Observer will be notified on certificate database changes.
29 // The change could be either a new user certificate is added or trust on
30 // a certificate is changed. Observers can register themselves
31 // via CertDatabase::AddObserver, and can un-register with
32 // CertDatabase::RemoveObserver.
33 class NET_EXPORT Observer {
34 public:
35 virtual ~Observer() {}
37 // Will be called when a new certificate is added.
38 virtual void OnCertAdded(const X509Certificate* cert) {}
40 // Will be called when a certificate is removed.
41 virtual void OnCertRemoved(const X509Certificate* cert) {}
43 // Will be called when a CA certificate was added, removed, or its trust
44 // changed. This can also mean that a client certificate's trust changed.
45 virtual void OnCACertChanged(const X509Certificate* cert) {}
47 protected:
48 Observer() {}
50 private:
51 DISALLOW_COPY_AND_ASSIGN(Observer);
54 // Returns the CertDatabase singleton.
55 static CertDatabase* GetInstance();
57 // Check whether this is a valid user cert that we have the private key for.
58 // Returns OK or a network error code such as ERR_CERT_CONTAINS_ERRORS.
59 int CheckUserCert(X509Certificate* cert);
61 // Store user (client) certificate. Assumes CheckUserCert has already passed.
62 // Returns OK, or ERR_ADD_USER_CERT_FAILED if there was a problem saving to
63 // the platform cert database, or possibly other network error codes.
64 int AddUserCert(X509Certificate* cert);
66 // Registers |observer| to receive notifications of certificate changes. The
67 // thread on which this is called is the thread on which |observer| will be
68 // called back with notifications.
69 void AddObserver(Observer* observer);
71 // Unregisters |observer| from receiving notifications. This must be called
72 // on the same thread on which AddObserver() was called.
73 void RemoveObserver(Observer* observer);
75 #if defined(OS_MACOSX) && !defined(OS_IOS)
76 // Configures the current message loop to observe and forward events from
77 // Keychain services. The MessageLoop must have an associated CFRunLoop,
78 // which means that this must be called from a MessageLoop of TYPE_UI.
79 void SetMessageLoopForKeychainEvents();
80 #endif
82 #if defined(OS_ANDROID)
83 // On android, the system database is used. When the system notifies the
84 // application that the certificates changed, the observers must be notified.
85 void OnAndroidKeyChainChanged();
86 #endif
88 private:
89 friend struct DefaultSingletonTraits<CertDatabase>;
91 CertDatabase();
92 ~CertDatabase();
94 // Broadcasts notifications to all registered observers.
95 void NotifyObserversOfCertAdded(const X509Certificate* cert);
96 void NotifyObserversOfCertRemoved(const X509Certificate* cert);
97 void NotifyObserversOfCACertChanged(const X509Certificate* cert);
99 const scoped_refptr<ObserverListThreadSafe<Observer> > observer_list_;
101 #if defined(USE_NSS) || (defined(OS_MACOSX) && !defined(OS_IOS))
102 class Notifier;
103 friend class Notifier;
104 scoped_ptr<Notifier> notifier_;
105 #endif
107 DISALLOW_COPY_AND_ASSIGN(CertDatabase);
110 } // namespace net
112 #endif // NET_CERT_CERT_DATABASE_H_