blob: 660faa76b46ff7367cb990c58d2308358b4603dd (
plain)
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
|
// Copyright (c) 2009 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.
// TransportSecurityState maintains an in memory database containing the
// list of hosts that currently have transport security enabled. This
// singleton object deals with writing that data out to disk as needed and
// loading it at startup.
// At startup we need to load the transport security state from the
// disk. For the moment, we don't want to delay startup for this load, so we
// let the TransportSecurityState run for a while without being loaded.
// This means that it's possible for pages opened very quickly not to get the
// correct transport security information.
//
// To load the state, we schedule a Task on the file thread which loads,
// deserialises and configures the TransportSecurityState.
//
// The TransportSecurityState object supports running a callback function
// when it changes. This object registers the callback, pointing at itself.
//
// TransportSecurityState calls...
// TransportSecurityPersister::StateIsDirty
// since the callback isn't allowed to block or reenter, we schedule a Task
// on the file thread after some small amount of time
//
// ...
//
// TransportSecurityPersister::SerialiseState
// copies the current state of the TransportSecurityState, serialises
// and writes to disk.
#ifndef CHROME_BROWSER_STRICT_TRANSPORT_SECURITY_PERSISTER_H_
#define CHROME_BROWSER_STRICT_TRANSPORT_SECURITY_PERSISTER_H_
#include "base/file_path.h"
#include "base/lock.h"
#include "base/ref_counted.h"
#include "net/base/transport_security_state.h"
class TransportSecurityPersister
: public base::RefCountedThreadSafe<TransportSecurityPersister>,
public net::TransportSecurityState::Delegate {
public:
TransportSecurityPersister();
void Initialize(net::TransportSecurityState* state,
const FilePath& profile_path);
// Called by the TransportSecurityState when it changes its state.
virtual void StateIsDirty(net::TransportSecurityState*);
private:
friend class base::RefCountedThreadSafe<TransportSecurityPersister>;
~TransportSecurityPersister();
// a Task callback for when the state needs to be written out.
void SerialiseState();
// a Task callback for when the state needs to be loaded from disk at startup.
void LoadState();
Lock lock_; // protects all the members
// true when the state object has signaled that we're dirty and we haven't
// serialised the state yet.
bool state_is_dirty_;
scoped_refptr<net::TransportSecurityState>
transport_security_state_;
// The path to the file in which we store the serialised state.
FilePath state_file_;
};
#endif // CHROME_BROWSER_STRICT_TRANSPORT_SECURITY_PERSISTER_H_
|