#ifndef NET_SSL_SSL_CLIENT_SESSION_CACHE_H_
#define NET_SSL_SSL_CLIENT_SESSION_CACHE_H_
#include <stddef.h>
#include <time.h>
#include <memory>
#include <optional>
#include <string>
#include "base/containers/flat_set.h"
#include "base/containers/lru_cache.h"
#include "base/functional/bind.h"
#include "base/memory/memory_pressure_monitor.h"
#include "base/memory/raw_ptr.h"
#include "net/base/host_port_pair.h"
#include "net/base/ip_address.h"
#include "net/base/net_export.h"
#include "net/base/network_anonymization_key.h"
#include "net/base/privacy_mode.h"
#include "net/base/proxy_chain.h"
#include "net/base/session_usage.h"
#include "third_party/boringssl/src/include/openssl/base.h"
namespace base {
class Clock;
}
namespace net {
class NET_EXPORT SSLClientSessionCache : public base::MemoryPressureListener {
public:
struct Config {
size_t max_entries = 1024;
size_t expiration_check_count = 256;
};
struct NET_EXPORT Key {
Key();
Key(const Key& other);
Key(Key&& other);
~Key();
Key& operator=(const Key& other);
Key& operator=(Key&& other);
bool operator==(const Key& other) const;
bool operator<(const Key& other) const;
HostPortPair server;
std::optional<IPAddress> dest_ip_addr;
NetworkAnonymizationKey network_anonymization_key;
PrivacyMode privacy_mode = PRIVACY_MODE_DISABLED;
SessionUsage session_usage = SessionUsage::kDestination;
ProxyChain proxy_chain = ProxyChain::Direct();
size_t proxy_chain_index = 0;
};
explicit SSLClientSessionCache(const Config& config);
SSLClientSessionCache(const SSLClientSessionCache&) = delete;
SSLClientSessionCache& operator=(const SSLClientSessionCache&) = delete;
~SSLClientSessionCache() override;
static bool IsExpired(SSL_SESSION* session, time_t now);
size_t size() const;
uint64_t generation_number() const { return generation_number_; }
bssl::UniquePtr<SSL_SESSION> Lookup(const Key& cache_key);
void Insert(uint64_t generation_number,
const Key& cache_key,
bssl::UniquePtr<SSL_SESSION> session);
void ClearEarlyData(const Key& cache_key);
void FlushForServers(const base::flat_set<HostPortPair>& servers);
void Flush();
void SetClockForTesting(base::Clock* clock);
private:
struct Entry {
Entry();
Entry(Entry&&);
~Entry();
void Push(bssl::UniquePtr<SSL_SESSION> session);
bssl::UniquePtr<SSL_SESSION> Pop();
bool ExpireSessions(time_t now);
bssl::UniquePtr<SSL_SESSION> sessions[2];
};
void FlushExpiredSessions();
void OnMemoryPressure(
base::MemoryPressureLevel memory_pressure_level) override;
raw_ptr<base::Clock> clock_;
uint64_t generation_number_ = 0;
Config config_;
base::LRUCache<Key, Entry> cache_;
size_t lookups_since_flush_ = 0;
std::unique_ptr<base::AsyncMemoryPressureListenerRegistration>
memory_pressure_listener_registration_;
};
}
#endif