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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_BTM_BTM_UTILS_H_
#define CONTENT_BROWSER_BTM_BTM_UTILS_H_
#include <optional>
#include <ostream>
#include <string_view>
#include "base/files/file_path.h"
#include "base/strings/cstring_view.h"
#include "base/time/time.h"
#include "content/common/content_export.h"
#include "content/public/browser/btm_redirect_info.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/page.h"
#include "content/public/browser/render_frame_host.h"
#include "services/network/public/mojom/cookie_access_observer.mojom.h"
#include "url/gurl.h"
namespace base {
class TimeDelta;
}
namespace url {
class Origin;
}
namespace content {
class BrowserContext;
// For use in tests/debugging.
CONTENT_EXPORT base::cstring_view BtmCookieModeToString(BtmCookieMode mode);
CONTENT_EXPORT base::cstring_view BtmRedirectTypeToString(BtmRedirectType type);
CONTENT_EXPORT base::cstring_view BtmDataAccessTypeToString(
BtmDataAccessType type);
// A single cookie-accessing operation (either read or write). Not to be
// confused with BtmDataAccessType, which can also represent no access or both
// read+write.
using CookieOperation = network::mojom::CookieAccessDetails::Type;
// The filename for the DIPS database.
const base::FilePath::CharType kBtmFilename[] = FILE_PATH_LITERAL("DIPS");
// The FilePath for the ON-DISK BtmDatabase associated with a BrowserContext,
// if one exists.
// NOTE: This returns the same value regardless of if there is actually a
// persisted BtmDatabase for the BrowserContext or not.
CONTENT_EXPORT base::FilePath GetBtmFilePath(BrowserContext* context);
inline BtmDataAccessType ToBtmDataAccessType(CookieOperation op) {
return (op == CookieOperation::kChange ? BtmDataAccessType::kWrite
: BtmDataAccessType::kRead);
}
CONTENT_EXPORT std::ostream& operator<<(std::ostream& os,
BtmDataAccessType access_type);
constexpr BtmDataAccessType operator|(BtmDataAccessType lhs,
BtmDataAccessType rhs) {
return static_cast<BtmDataAccessType>(static_cast<int>(lhs) |
static_cast<int>(rhs));
}
inline BtmDataAccessType& operator|=(BtmDataAccessType& lhs,
BtmDataAccessType rhs) {
return (lhs = lhs | rhs);
}
BtmCookieMode GetBtmCookieMode(bool is_otr);
std::string_view GetHistogramSuffix(BtmCookieMode mode);
std::ostream& operator<<(std::ostream& os, BtmCookieMode mode);
// BtmEventRemovalType:
// NOTE: We use this type as a bitfield don't change existing values other than
// kAll, which should be updated to include any new fields.
enum class BtmEventRemovalType {
kNone = 0,
kHistory = 1 << 0,
kStorage = 1 << 1,
// kAll is intended to cover all the above fields.
kAll = kHistory | kStorage
};
constexpr BtmEventRemovalType operator|(BtmEventRemovalType lhs,
BtmEventRemovalType rhs) {
return static_cast<BtmEventRemovalType>(static_cast<int>(lhs) |
static_cast<int>(rhs));
}
constexpr BtmEventRemovalType operator&(BtmEventRemovalType lhs,
BtmEventRemovalType rhs) {
return static_cast<BtmEventRemovalType>(static_cast<int>(lhs) &
static_cast<int>(rhs));
}
constexpr BtmEventRemovalType& operator|=(BtmEventRemovalType& lhs,
BtmEventRemovalType rhs) {
return lhs = lhs | rhs;
}
constexpr BtmEventRemovalType& operator&=(BtmEventRemovalType& lhs,
BtmEventRemovalType rhs) {
return lhs = lhs & rhs;
}
std::string_view GetHistogramPiece(BtmRedirectType type);
CONTENT_EXPORT std::ostream& operator<<(std::ostream& os, BtmRedirectType type);
using TimestampRange = std::optional<std::pair<base::Time, base::Time>>;
// Expand the range to include `time` if necessary. Returns true iff the range
// was modified.
CONTENT_EXPORT bool UpdateTimestampRange(TimestampRange& range,
base::Time time);
// Checks that `this` range is either null or falls within `other`.
CONTENT_EXPORT bool IsNullOrWithin(const TimestampRange& inner,
const TimestampRange& outer);
std::ostream& operator<<(std::ostream& os, TimestampRange type);
// Values for a site in the `bounces` table.
struct StateValue {
TimestampRange site_storage_times;
TimestampRange user_activation_times;
TimestampRange stateful_bounce_times;
TimestampRange bounce_times;
TimestampRange web_authn_assertion_times;
};
// Values for a 1P/3P site pair in the `popups` table.
struct PopupsStateValue {
uint64_t access_id;
base::Time last_popup_time;
bool is_current_interaction;
bool is_authentication_interaction;
};
struct PopupWithTime {
std::string opener_site;
std::string popup_site;
base::Time last_popup_time;
};
inline bool operator==(const StateValue& lhs, const StateValue& rhs) {
return std::tie(lhs.site_storage_times, lhs.user_activation_times,
lhs.stateful_bounce_times, lhs.bounce_times,
lhs.web_authn_assertion_times) ==
std::tie(rhs.site_storage_times, rhs.user_activation_times,
rhs.stateful_bounce_times, rhs.bounce_times,
rhs.web_authn_assertion_times);
}
// Return the number of seconds in `delta`, clamped to [0, 10].
// i.e. 11 linearly-sized buckets.
CONTENT_EXPORT int64_t BucketizeBtmBounceDelay(base::TimeDelta delta);
// Returns an opaque value representing the "privacy boundary" that the URL
// belongs to. Currently returns eTLD+1, but this is an implementation detail
// and may change.
CONTENT_EXPORT std::string GetSiteForBtm(const GURL& url);
CONTENT_EXPORT std::string GetSiteForBtm(const url::Origin& origin);
// Returns true iff `web_contents` contains an iframe whose committed URL
// belongs to the same site as `url`.
bool HasSameSiteIframe(WebContents* web_contents, const GURL& url);
CONTENT_EXPORT bool HasCHIPS(
const net::CookieAccessResultList& cookie_access_result_list);
// Returns `True` iff the `navigation_handle` represents a navigation
// happening in an iframe of the primary frame tree.
inline bool IsInPrimaryPageIFrame(NavigationHandle& navigation_handle) {
return navigation_handle.GetParentFrame()
? navigation_handle.GetParentFrame()->GetPage().IsPrimary()
: false;
}
// Returns `True` iff both urls return a similar outcome off of
// `GetSiteForBtm()`.
inline bool IsSameSiteForBtm(const GURL& url1, const GURL& url2) {
return GetSiteForBtm(url1) == GetSiteForBtm(url2);
}
// Returns `True` iff the `navigation_handle` represents a navigation happening
// in any frame of the primary page.
// NOTE: This does not include fenced frames.
inline bool IsInPrimaryPage(NavigationHandle& navigation_handle) {
return navigation_handle.GetParentFrame()
? navigation_handle.GetParentFrame()->GetPage().IsPrimary()
: navigation_handle.IsInPrimaryMainFrame();
}
// Returns `True` iff the 'rfh' exists and represents a frame in the primary
// page.
inline bool IsInPrimaryPage(RenderFrameHost& rfh) {
return rfh.GetPage().IsPrimary();
}
// Returns the last committed or the to be committed url of the main frame of
// the page containing the `navigation_handle`.
inline const GURL& GetFirstPartyURL(NavigationHandle& navigation_handle) {
return navigation_handle.GetParentFrame()
? navigation_handle.GetParentFrame()
->GetMainFrame()
->GetLastCommittedURL()
: navigation_handle.GetURL();
}
// Returns an optional last committed url of the main frame of the page
// containing the `rfh`.
inline const GURL& GetFirstPartyURL(RenderFrameHost& rfh) {
return rfh.GetMainFrame()->GetLastCommittedURL();
}
// The amount of time since a page last received user activation before a
// subsequent user activation event may be recorded to DIPS Storage for the
// same page.
inline constexpr base::TimeDelta kBtmTimestampUpdateInterval = base::Minutes(1);
[[nodiscard]] CONTENT_EXPORT bool UpdateTimestamp(
std::optional<base::Time>& last_time,
base::Time now);
// BtmInteractionType is used in UKM to record the way the user interacted with
// the site. It should match CookieHeuristicInteractionType in
// tools/metrics/ukm/ukm.xml
enum class BtmInteractionType {
Authentication = 0,
UserActivation = 1,
NoInteraction = 2,
};
enum class BtmRecordedEvent {
kStorage,
kUserActivation,
kWebAuthnAssertion,
};
// BtmRedirectCategory is basically the cross-product of BtmDataAccessType and
// a boolean value indicating site engagement. It's used in UMA enum histograms.
//
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class BtmRedirectCategory {
kNoCookies_NoEngagement = 0,
kReadCookies_NoEngagement = 1,
kWriteCookies_NoEngagement = 2,
kReadWriteCookies_NoEngagement = 3,
kNoCookies_HasEngagement = 4,
kReadCookies_HasEngagement = 5,
kWriteCookies_HasEngagement = 6,
kReadWriteCookies_HasEngagement = 7,
kUnknownCookies_NoEngagement = 8,
kUnknownCookies_HasEngagement = 9,
kMaxValue = kUnknownCookies_HasEngagement,
};
// BtmErrorCode is used in UMA enum histograms to monitor certain errors and
// verify that they are being fixed.
//
// When adding an error to this enum, update the DIPSErrorCode enum in
// tools/metrics/histograms/enums.xml as well.
//
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class BtmErrorCode {
kRead_None = 0,
kRead_OpenEndedRange_NullStart = 1,
kRead_OpenEndedRange_NullEnd = 2,
kRead_BounceTimesIsntSupersetOfStatefulBounces = 3,
kRead_EmptySite_InDb = 4,
kRead_EmptySite_NotInDb = 5,
kWrite_None = 6,
kWrite_EmptySite = 7,
kMaxValue = kWrite_EmptySite,
};
// BtmDeletionAction is used in UMA enum histograms to record the actual
// deletion action taken on DIPS-eligible (incidental) site.
//
// When adding an action to this enum, update the DIPSDeletionAction enum in
// tools/metrics/histograms/enums.xml as well.
//
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class BtmDeletionAction {
kDisallowed = 0,
kExceptedAs1p = 1, // No longer used - merged into 'kExcepted' below.
kExceptedAs3p = 2, // No longer used - merged into 'kExcepted' below.
kEnforced = 3,
kIgnored = 4,
kExcepted = 5,
kMaxValue = kExcepted,
};
enum class BtmDatabaseTable {
kBounces = 1,
kPopups = 2,
kMaxValue = kPopups,
};
} // namespace content
#endif // CONTENT_BROWSER_BTM_BTM_UTILS_H_
|