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 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_contentanalysis_h
#define mozilla_contentanalysis_h
#include "mozilla/MoveOnlyFunction.h"
#include "mozilla/MozPromise.h"
#include "mozilla/dom/BrowsingContext.h"
#include "mozilla/dom/MaybeDiscarded.h"
#include "mozilla/dom/Promise.h"
#include "mozilla/glean/ContentanalysisMetrics.h"
#include "mozilla/media/MediaUtils.h"
#include "mozilla/WeakPtr.h"
#include "nsIClipboard.h"
#include "nsIContentAnalysis.h"
#include "nsIThreadPool.h"
#include "nsITransferable.h"
#include "nsString.h"
#include "nsTHashMap.h"
#include "nsTHashSet.h"
#include "nsTStringHasher.h"
#include <atomic>
#include <regex>
#include <string>
#ifdef XP_WIN
# include <windows.h>
#endif // XP_WIN
class nsBaseClipboard;
class nsIPrincipal;
class nsIPrintSettings;
class ContentAnalysisTest;
class ContentAnalysisTelemetryTest;
namespace mozilla::dom {
class CanonicalBrowsingContext;
class DataTransfer;
class WindowGlobalParent;
} // namespace mozilla::dom
namespace content_analysis::sdk {
class Client;
class ContentAnalysisRequest;
class ContentAnalysisResponse;
} // namespace content_analysis::sdk
namespace mozilla::contentanalysis {
class ContentAnalysisCallback;
enum class DefaultResult : uint8_t {
eBlock = 0,
eWarn = 1,
eAllow = 2,
eLastValue = 2
};
class ContentAnalysisDiagnosticInfo final
: public nsIContentAnalysisDiagnosticInfo {
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICONTENTANALYSISDIAGNOSTICINFO
ContentAnalysisDiagnosticInfo(bool aConnectedToAgent, nsString aAgentPath,
bool aFailedSignatureVerification,
int64_t aRequestCount)
: mConnectedToAgent(aConnectedToAgent),
mAgentPath(std::move(aAgentPath)),
mFailedSignatureVerification(aFailedSignatureVerification),
mRequestCount(aRequestCount) {}
private:
virtual ~ContentAnalysisDiagnosticInfo() = default;
bool mConnectedToAgent;
nsString mAgentPath;
bool mFailedSignatureVerification;
int64_t mRequestCount;
};
class ContentAnalysisRequest final : public nsIContentAnalysisRequest {
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICONTENTANALYSISREQUEST
ContentAnalysisRequest(AnalysisType aAnalysisType, Reason aReason,
nsString aString, bool aStringIsFilePath,
nsCString aSha256Digest, nsCOMPtr<nsIURI> aUrl,
OperationType aOperationType,
dom::WindowGlobalParent* aWindowGlobalParent,
dom::WindowGlobalParent* aSourceWindowGlobal = nullptr,
nsCString&& aUserActionId = nsCString());
ContentAnalysisRequest(AnalysisType aAnalysisType, Reason aReason,
nsITransferable* aTransferable,
dom::WindowGlobalParent* aWindowGlobal,
dom::WindowGlobalParent* aSourceWindowGlobal);
ContentAnalysisRequest(const nsTArray<uint8_t> aPrintData,
nsCOMPtr<nsIURI> aUrl, nsString aPrinterName,
Reason aReason,
dom::WindowGlobalParent* aWindowGlobalParent);
static nsresult GetFileDigest(const nsAString& aFilePath,
nsCString& aDigestString);
static RefPtr<ContentAnalysisRequest> Clone(
nsIContentAnalysisRequest* aRequest);
private:
virtual ~ContentAnalysisRequest();
ContentAnalysisRequest() = default;
ContentAnalysisRequest(const ContentAnalysisRequest&) = delete;
ContentAnalysisRequest& operator=(ContentAnalysisRequest&) = delete;
// See nsIContentAnalysisRequest for values
AnalysisType mAnalysisType;
// See nsIContentAnalysisRequest for values
Reason mReason;
RefPtr<nsITransferable> mTransferable;
RefPtr<dom::DataTransfer> mDataTransfer;
// Text content to analyze. Only one of textContent or filePath is defined.
nsString mTextContent;
// Name of file to analyze. Only one of textContent or filePath is defined.
nsString mFilePath;
// The URL containing the file download/upload or to which web content is
// being uploaded.
nsCOMPtr<nsIURI> mUrl;
// Sha256 digest of file.
nsCString mSha256Digest;
// URLs involved in the download.
nsTArray<RefPtr<nsIClientDownloadResource>> mResources;
// Email address of user.
nsString mEmail;
// Unique identifier for this request
nsCString mRequestToken;
// Unique identifier for this user action.
// For example, all requests that come from uploading multiple files
// or one clipboard operation should have the same value.
nsCString mUserActionId;
// The number of requests associated with this mUserActionId.
int64_t mUserActionRequestsCount = 1;
// Type of text to display, see nsIContentAnalysisRequest for values
OperationType mOperationTypeForDisplay;
// File name to display if mOperationTypeForDisplay is
// eUpload or eDownload.
nsString mFileNameForDisplay;
// The name of the printer being printed to
nsString mPrinterName;
RefPtr<dom::WindowGlobalParent> mWindowGlobalParent;
#ifdef XP_WIN
// The printed data to analyze, in PDF format
HANDLE mPrintDataHandle = 0;
// The size of the printed data in mPrintDataHandle
uint64_t mPrintDataSize = 0;
#endif
// WindowGlobalParent that is the origin of the data in the request, if known.
RefPtr<mozilla::dom::WindowGlobalParent> mSourceWindowGlobal;
// What to multiply the timeout for this request by. Only needed if there are
// requests with multiple userActionIds that are logically grouped together.
uint32_t mTimeoutMultiplier = 1;
// Submit request to agent, even if it was already canceled. Always false
// if not in tests.
bool mTestOnlyAlwaysSubmitToAgent = false;
friend class ::ContentAnalysisTest;
template <typename T, typename... Args>
friend RefPtr<T> mozilla::MakeRefPtr(Args&&...);
};
#define CONTENTANALYSIS_IID \
{0xa37bed74, 0x4b50, 0x443a, {0xbf, 0x58, 0xf4, 0xeb, 0xbd, 0x30, 0x67, 0xb4}}
class ContentAnalysisResponse;
class ContentAnalysis final : public nsIContentAnalysis,
public nsIObserver,
public SupportsWeakPtr {
public:
NS_INLINE_DECL_STATIC_IID(CONTENTANALYSIS_IID)
NS_DECL_THREADSAFE_ISUPPORTS
NS_DECL_NSICONTENTANALYSIS
NS_DECL_NSIOBSERVER
ContentAnalysis();
#if defined(XP_WIN)
struct PrintAllowedResult final {
bool mAllowed;
dom::MaybeDiscarded<dom::BrowsingContext>
mCachedStaticDocumentBrowsingContext;
PrintAllowedResult(bool aAllowed, dom::MaybeDiscarded<dom::BrowsingContext>
aCachedStaticDocumentBrowsingContext)
: mAllowed(aAllowed),
mCachedStaticDocumentBrowsingContext(
aCachedStaticDocumentBrowsingContext) {}
explicit PrintAllowedResult(bool aAllowed)
: PrintAllowedResult(aAllowed, dom::MaybeDiscardedBrowsingContext()) {}
};
struct PrintAllowedError final {
nsresult mError;
dom::MaybeDiscarded<dom::BrowsingContext>
mCachedStaticDocumentBrowsingContext;
PrintAllowedError(nsresult aError, dom::MaybeDiscarded<dom::BrowsingContext>
aCachedStaticDocumentBrowsingContext)
: mError(aError),
mCachedStaticDocumentBrowsingContext(
aCachedStaticDocumentBrowsingContext) {}
explicit PrintAllowedError(nsresult aError)
: PrintAllowedError(aError, dom::MaybeDiscardedBrowsingContext()) {}
};
using PrintAllowedPromise =
MozPromise<PrintAllowedResult, PrintAllowedError, true>;
MOZ_CAN_RUN_SCRIPT static RefPtr<PrintAllowedPromise>
PrintToPDFToDetermineIfPrintAllowed(
dom::CanonicalBrowsingContext* aBrowsingContext,
nsIPrintSettings* aPrintSettings);
#endif // defined(XP_WIN)
// Find the outermost browsing context that has same-origin access to
// aBrowsingContext, and this is the URL we will pass to the Content Analysis
// agent.
static nsCOMPtr<nsIURI> GetURIForBrowsingContext(
dom::CanonicalBrowsingContext* aBrowsingContext);
static bool CheckClipboardContentAnalysisSync(
nsBaseClipboard* aClipboard, mozilla::dom::WindowGlobalParent* aWindow,
const nsCOMPtr<nsITransferable>& trans,
nsIClipboard::ClipboardType aClipboardType);
static void CheckClipboardContentAnalysis(
nsBaseClipboard* aClipboard, mozilla::dom::WindowGlobalParent* aWindow,
nsITransferable* aTransferable,
nsIClipboard::ClipboardType aClipboardType,
ContentAnalysisCallback* aResolver, bool aForFullClipboard = false);
using FilesAllowedPromise = MozPromise<nsCOMArray<nsIFile>, nsresult, true>;
// Checks the passed in files in "batch mode", meaning that all requests will
// be done even if some of them are BLOCKED. Unlike the other Check
// methods, "batch mode" requests do not all share a user action ID.
// This also consolidates the busy dialogs for the files into one that is
// associated with the "primary" request's user action ID -- that is, the
// user action ID of the first request generated.
// Note that aURI is only necessary to pass in in gtests; otherwise we'll
// get the URI from aWindow.
static RefPtr<FilesAllowedPromise> CheckUploadsInBatchMode(
nsCOMArray<nsIFile>&& aFiles, bool aAutoAcknowledge,
mozilla::dom::WindowGlobalParent* aWindow,
nsIContentAnalysisRequest::Reason aReason, nsIURI* aURI = nullptr);
static RefPtr<ContentAnalysis> GetContentAnalysisFromService();
// Cancel all outstanding requests for the given user action ID.
// aResult is used to determine what kind of cancellation this is
// (user-initiated, timeout, blocked user action, internal error, etc).
// The cancellation behavior is dependent on that value. In particular,
// some causes lead to programmable default behaviors -- see e.g.
// browser.contentanalysis.default_result and
// browser.contentanalysis.timeout_result. Oothers, like user-initiated
// and shutdown cancellations, have fixed behavior.
void CancelWithError(nsCString&& aUserActionId, nsresult aResult);
// These are the MIME types that Content Analysis can analyze.
static constexpr const char* kKnownClipboardTypes[] = {
kTextMime, kHTMLMime, kCustomTypesMime, kFileMime};
// Returns whether we are currently creating a client. Only to be called
// from tests.
bool GetCreatingClientForTest() {
AssertIsOnMainThread();
return mCreatingClient;
}
private:
virtual ~ContentAnalysis();
// Remove unneeded copy constructor/assignment
ContentAnalysis(const ContentAnalysis&) = delete;
ContentAnalysis& operator=(ContentAnalysis&) = delete;
// Only call this through CreateClientIfNecessary(), as it provides
// synchronization to avoid doing this multiple times at once.
nsresult CreateContentAnalysisClient(nsCString&& aPipePathName,
nsString&& aClientSignatureSetting,
bool aIsPerUser);
// Thread pool that all agent communications happen on. Content Analysis
// occasionally uses other (random) background threads for other purposes.
nsCOMPtr<nsIThreadPool> mThreadPool;
// Helper function to retry calling the client in case either the client
// does not exist, or calling the client fails (indicating that the DLP agent
// has terminated and possibly restarted)
//
// aClientCallFunc - gets called on a background thread after we have a
// client. Returns a Result<T, nsresult>. An Err(nsresult) indicates
// that the client call failed and we should try to reconnect. A successful
// response indicates success (or at least that we should not try to
// reconnect), and that value will be Resolve()d into the returned MozPromise.
template <typename T, typename U>
RefPtr<MozPromise<T, nsresult, true>> CallClientWithRetry(
StaticString aMethodName, U&& aClientCallFunc);
void RecordConnectionSettingsTelemetry(const nsString& clientSignature);
nsresult RunAnalyzeRequestTask(
const RefPtr<nsIContentAnalysisRequest>& aRequest, bool aAutoAcknowledge,
const RefPtr<nsIContentAnalysisCallback>& aCallback);
nsresult RunAcknowledgeTask(
nsIContentAnalysisAcknowledgement* aAcknowledgement,
const nsACString& aRequestToken);
nsresult CreateClientIfNecessary(bool aForceCreate = false);
// Actually send the request to the client and handle the response (or error).
// Note that the response may be for a different request!
static Result<std::nullptr_t, nsresult> DoAnalyzeRequest(
nsCString&& aUserActionId,
content_analysis::sdk::ContentAnalysisRequest&& aRequest,
bool aAutoAcknowledge,
const std::shared_ptr<content_analysis::sdk::Client>& aClient,
bool aTestOnlyIgnoreCanceled = false);
static void HandleResponseFromAgent(
content_analysis::sdk::ContentAnalysisResponse&& aResponse);
struct BasicRequestInfo final {
nsCString mUserActionId;
glean::TimerId mTimerId;
nsCString mAnalysisTypeStr;
bool mAutoAcknowledge;
};
DataMutex<nsTHashMap<nsCString, BasicRequestInfo>>
mRequestTokenToBasicRequestInfoMap;
void IssueResponse(ContentAnalysisResponse* response,
nsCString&& aUserActionId, bool aAcknowledge,
bool aIsTooLate);
void NotifyResponseObservers(ContentAnalysisResponse* aResponse,
nsCString&& aUserActionId, bool aAutoAcknowledge,
bool aIsTimeout);
void NotifyObserversAndMaybeIssueResponseFromAgent(
ContentAnalysisResponse* aResponse, nsCString&& aUserActionId,
bool aAutoAcknowledge);
// Destroy the service. Happens during xpcom-shutdown-threads.
void Close();
// Thread-safe check whether the service is being destroyed.
bool IsShutDown();
// Did the URL filter completely handle the request or do we need to check
// with the agent.
enum UrlFilterResult { eCheck, eDeny, eAllow };
UrlFilterResult FilterByUrlLists(nsIContentAnalysisRequest* aRequest,
nsIURI* aUri);
void EnsureParsedUrlFilters();
using ContentAnalysisRequestArray =
CopyableTArray<RefPtr<nsIContentAnalysisRequest>>;
using RequestsPromise =
MozPromise<ContentAnalysisRequestArray, nsresult, true>;
// Counts the number of times it receives an "allow content" and (1) calls
// ContentResult on mCallback when all requests are approved, (2) calls
// ContentResult and cancels outstanding scans when any one request is
// rejected, or (3) calls Error and cancels outstanding scans when any one
// fails.
// Once constructed, this object is required to eventually issue a response to
// the given callback.
// This class doesn't care if it receives more calls than there are requests.
// Canceling issues callback calls with no initiating request. This class
// relays the verdicts on a first-come-first-served basis, so a cancel
// that comes before an allow overrides that allow, and vice-versa.
class MultipartRequestCallback : public nsIContentAnalysisCallback {
public:
NS_INLINE_DECL_REFCOUNTING(MultipartRequestCallback, override)
NS_IMETHOD QueryInterface(REFNSIID aIID, void** aInstancePtr) override;
NS_DECL_NSICONTENTANALYSISCALLBACK
static RefPtr<MultipartRequestCallback> Create(
ContentAnalysis* aContentAnalysis,
const nsTArray<ContentAnalysis::ContentAnalysisRequestArray>& aRequests,
nsIContentAnalysisCallback* aCallback, bool aAutoAcknowledge);
bool HasResponded() const { return mResponded; }
private:
MultipartRequestCallback() = default;
virtual ~MultipartRequestCallback();
template <typename T, typename... Args>
friend RefPtr<T> mozilla::MakeRefPtr(Args&&...);
void Initialize(
ContentAnalysis* aContentAnalysis,
const nsTArray<ContentAnalysis::ContentAnalysisRequestArray>& aRequests,
nsIContentAnalysisCallback* aCallback, bool aAutoAcknowledge);
void CancelRequests();
void RemoveFromUserActionMap();
WeakPtr<ContentAnalysis> mWeakContentAnalysis;
RefPtr<nsIContentAnalysisCallback> mCallback;
nsCString mUserActionId;
// Number of CA requests remaining for this transaction.
size_t mNumCARequestsRemaining;
// True if we have issued a response for these requests.
bool mResponded = false;
};
Result<RefPtr<RequestsPromise::AllPromiseType>,
RefPtr<nsIContentAnalysisResult>>
GetFinalRequestList(const ContentAnalysisRequestArray& aRequests);
Result<RefPtr<RequestsPromise>, nsresult> ExpandFolderRequest(
nsIContentAnalysisRequest* aRequest, nsIFile* file);
using ClientPromise =
MozPromise<std::shared_ptr<content_analysis::sdk::Client>, nsresult,
false>;
int64_t mRequestCount = 0;
// Must only be resolved/rejected or Then()'d on the main thread.
//
// Note that if this promise is resolved, the resolve value will
// be a non-null content_analysis::sdk::Client. However, if the
// DLP agent process has terminated, it is possible that trying to
// call into this client will return an error. Therefore, any
// method that wants to call into the client should go through
// CallClientWithRetry() to make it easy to try reconnecting
// to the client.
RefPtr<ClientPromise::Private> mCaClientPromise
MOZ_GUARDED_BY(sMainThreadCapability);
bool mCreatingClient MOZ_GUARDED_BY(sMainThreadCapability) = false;
bool mHaveResolvedClientPromise MOZ_GUARDED_BY(sMainThreadCapability) = false;
bool mSetByEnterprise;
struct UserActionData final {
RefPtr<nsIContentAnalysisCallback> mCallback;
nsTHashSet<nsCString> mRequestTokens;
RefPtr<mozilla::CancelableRunnable> mTimeoutRunnable;
bool mAutoAcknowledge;
bool mIsHandlingTimeout = false;
};
// This map is stored so that requests can be canceled while they are
// still being checked. It is maintained by our inner class
// MultipartRequestCallback.
nsTHashMap<nsCString, UserActionData> mUserActionMap;
void RemoveFromUserActionMap(nsCString&& aUserActionId);
// The agent may respond to actions that we have canceled and we need to
// remember how we handled them, whether it was to cancel (block) them,
// or to issue a default response.
struct CanceledResponse {
nsIContentAnalysisAcknowledgement::FinalAction mAction;
size_t mNumExpectedResponses;
};
using UserActionIdToCanceledResponseMap =
nsTHashMap<nsCString, CanceledResponse>;
DataMutex<UserActionIdToCanceledResponseMap>
mUserActionIdToCanceledResponseMap{
"ContentAnalysis::UserActionIdToCanceledResponseMap"};
class CachedClipboardResponse {
public:
CachedClipboardResponse() = default;
Maybe<nsIContentAnalysisResponse::Action> GetCachedResponse(
nsIURI* aURI, int32_t aClipboardSequenceNumber);
void SetCachedResponse(const nsCOMPtr<nsIURI>& aURI,
int32_t aClipboardSequenceNumber,
nsIContentAnalysisResponse::Action aAction);
private:
Maybe<int32_t> mClipboardSequenceNumber;
nsTArray<std::pair<nsCOMPtr<nsIURI>, nsIContentAnalysisResponse::Action>>
mData;
};
CachedClipboardResponse mCachedClipboardResponse;
struct WarnResponseData {
RefPtr<ContentAnalysisResponse> mResponse;
nsCString mUserActionId;
bool mAutoAcknowledge;
bool mWasTimeout;
};
// Request token to warn response map.
nsTHashMap<nsCString, WarnResponseData> mWarnResponseDataMap;
std::vector<std::regex> mAllowUrlList;
std::vector<std::regex> mDenyUrlList;
bool mParsedUrlLists = false;
bool mForbidFutureRequests = false;
DataMutex<bool> mIsShutDown{false, "ContentAnalysis::IsShutDown"};
// Set of sets of user action IDs. Each set of IDs defines one compound
// action.
using UserActionSet = media::Refcountable<mozilla::HashSet<nsCString>>;
using UserActionSets = mozilla::HashSet<RefPtr<const UserActionSet>,
PointerHasher<const UserActionSet*>>;
UserActionSets mCompoundUserActions;
friend class ContentAnalysisResponse;
friend class ::ContentAnalysisTest;
friend class ::ContentAnalysisTelemetryTest;
};
class ContentAnalysisResponse final : public nsIContentAnalysisResponse,
public nsIClassInfo {
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICLASSINFO
NS_DECL_NSICONTENTANALYSISRESULT
NS_DECL_NSICONTENTANALYSISRESPONSE
void SetOwner(ContentAnalysis* aOwner);
void DoNotAcknowledge() { mDoNotAcknowledge = true; }
void SetCancelError(CancelError aCancelError);
void SetIsCachedResponse() { mIsCachedResponse = true; }
void SetIsSyntheticResponse(bool aIsSyntheticResponse) {
mIsSyntheticResponse = aIsSyntheticResponse;
}
private:
virtual ~ContentAnalysisResponse() = default;
// Remove unneeded copy constructor/assignment
ContentAnalysisResponse(const ContentAnalysisResponse&) = delete;
ContentAnalysisResponse& operator=(ContentAnalysisResponse&) = delete;
explicit ContentAnalysisResponse(
content_analysis::sdk::ContentAnalysisResponse&& aResponse,
const nsCString& aUserActionId);
ContentAnalysisResponse(Action aAction, const nsACString& aRequestToken,
const nsACString& aUserActionId);
// Use MakeRefPtr as factory.
template <typename T, typename... Args>
friend RefPtr<T> mozilla::MakeRefPtr(Args&&...);
static already_AddRefed<ContentAnalysisResponse> FromProtobuf(
content_analysis::sdk::ContentAnalysisResponse&& aResponse,
const nsCString& aUserActionId);
void ResolveWarnAction(bool aAllowContent);
// Action requested by the agent
Action mAction;
// Identifiers for the corresponding nsIContentAnalysisRequest
nsCString mRequestToken;
nsCString mUserActionId;
// If mAction is eCanceled, this is the error explaining why the request was
// canceled, or eUserInitiated if the user canceled it.
CancelError mCancelError = CancelError::eUserInitiated;
// ContentAnalysis (or, more precisely, its Client object) must outlive
// the transaction.
RefPtr<ContentAnalysis> mOwner;
// Whether the response has been acknowledged
bool mHasAcknowledged = false;
// If true, the request was completely handled by URL filter lists, so it
// was not sent to the agent and should not send an Acknowledge.
bool mDoNotAcknowledge = false;
// Whether this is a cached result that wasn't actually sent to the DLP agent.
// This indicates that the request was a duplicate of a previously sent one,
// so any dialogs (for block/warn) should not be shown.
bool mIsCachedResponse = false;
// Whether this is a synthesizic response from Firefox (as opposed to a
// response from a DLP agent).
// Synthetic responses ignore browser.contentanalysis.show_blocked_result and
// always show a blocked result for blocked content, since there is no agent
// that could have shown one for us.
bool mIsSyntheticResponse = false;
friend class ContentAnalysis;
};
class ContentAnalysisAcknowledgement final
: public nsIContentAnalysisAcknowledgement {
public:
NS_DECL_THREADSAFE_ISUPPORTS
NS_DECL_NSICONTENTANALYSISACKNOWLEDGEMENT
ContentAnalysisAcknowledgement(Result aResult, FinalAction aFinalAction);
private:
virtual ~ContentAnalysisAcknowledgement() = default;
Result mResult;
FinalAction mFinalAction;
};
/**
* This class:
* 1. Asserts if the callback is not called before destruction.
* 2. Takes a strong reference to the nsIContentAnalysisResult when
* calling the callback, which guarantees that someone does. Otherwise,
* if neither the caller nor the callback did, then the result would leak.
*/
class ContentAnalysisCallback final : public nsIContentAnalysisCallback {
public:
NS_DECL_THREADSAFE_ISUPPORTS
NS_DECL_NSICONTENTANALYSISCALLBACK
ContentAnalysisCallback(
std::function<void(nsIContentAnalysisResult*)>&& aContentResponseCallback,
std::function<void(nsresult)>&& aErrorCallback)
: mContentResponseCallback(std::move(aContentResponseCallback)),
mErrorCallback(std::move(aErrorCallback)) {}
explicit ContentAnalysisCallback(
std::function<void(nsIContentAnalysisResult*)>&&
aContentResponseCallback);
// Wrap a given callback, in case it doesn't provide the guarantees that
// this one does (such as checking that it is eventually called).
explicit ContentAnalysisCallback(nsIContentAnalysisCallback* aDecoratedCB) {
mContentResponseCallback = [decoratedCB = RefPtr{aDecoratedCB}](
nsIContentAnalysisResult* aResult) {
decoratedCB->ContentResult(aResult);
};
mErrorCallback = [decoratedCB = RefPtr{aDecoratedCB}](nsresult aRv) {
decoratedCB->Error(aRv);
};
}
private:
virtual ~ContentAnalysisCallback() {
MOZ_ASSERT(!mContentResponseCallback && !mErrorCallback && !mPromise,
"ContentAnalysisCallback never called!");
}
// Called after callbacks are called.
void ClearCallbacks() {
mContentResponseCallback = nullptr;
mErrorCallback = nullptr;
mPromise = nullptr;
}
explicit ContentAnalysisCallback(dom::Promise* aPromise);
std::function<void(nsIContentAnalysisResult*)> mContentResponseCallback;
std::function<void(nsresult)> mErrorCallback;
RefPtr<dom::Promise> mPromise;
friend class ContentAnalysis;
};
} // namespace mozilla::contentanalysis
#endif // mozilla_contentanalysis_h
|