forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcert_database.h
100 lines (77 loc) · 3.16 KB
/
cert_database.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_CERT_CERT_DATABASE_H_
#define NET_CERT_CERT_DATABASE_H_
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "build/build_config.h"
#include "net/base/net_export.h"
namespace base {
template <typename T> struct DefaultSingletonTraits;
template <class ObserverType>
class ObserverListThreadSafe;
}
namespace net {
// This class allows callers to observe changes to the underlying certificate
// stores.
//
// TODO(davidben): This class is really just a giant global ObserverList. It
// does not do anything with the platform certificate and, in principle, //net's
// dependency on the platform is abstracted behind the CertVerifier and
// ClientCertStore interfaces. Ideally these signals would originate out of
// those interfaces' platform implementations.
class NET_EXPORT CertDatabase {
public:
// A CertDatabase::Observer will be notified on certificate database changes.
// The change could be either a user certificate is added/removed or trust on
// a certificate is changed. Observers can be registered via
// CertDatabase::AddObserver, and can un-register with
// CertDatabase::RemoveObserver.
class NET_EXPORT Observer {
public:
virtual ~Observer() {}
// Called whenever the Cert Database is known to have changed.
// Typically, this will be in response to a CA certificate being added,
// removed, or its trust changed, but may also signal on client
// certificate events when they can be reliably detected.
virtual void OnCertDBChanged() {}
protected:
Observer() {}
private:
DISALLOW_COPY_AND_ASSIGN(Observer);
};
// Returns the CertDatabase singleton.
static CertDatabase* GetInstance();
// Registers |observer| to receive notifications of certificate changes. The
// thread on which this is called is the thread on which |observer| will be
// called back with notifications.
void AddObserver(Observer* observer);
// Unregisters |observer| from receiving notifications. This must be called
// on the same thread on which AddObserver() was called.
void RemoveObserver(Observer* observer);
#if defined(OS_MAC)
// Start observing and forwarding events from Keychain services on the
// current thread. Current thread must have an associated CFRunLoop,
// which means that this must be called from a MessageLoop of TYPE_UI.
void StartListeningForKeychainEvents();
#endif
// Synthetically injects notifications to all observers. In general, this
// should only be called by the creator of the CertDatabase. Used to inject
// notifications from other DB interfaces.
void NotifyObserversCertDBChanged();
private:
friend struct base::DefaultSingletonTraits<CertDatabase>;
CertDatabase();
~CertDatabase();
const scoped_refptr<base::ObserverListThreadSafe<Observer>> observer_list_;
#if defined(OS_MAC)
void ReleaseNotifier();
class Notifier;
friend class Notifier;
Notifier* notifier_ = nullptr;
#endif
DISALLOW_COPY_AND_ASSIGN(CertDatabase);
};
} // namespace net
#endif // NET_CERT_CERT_DATABASE_H_