mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
123 lines
5.6 KiB
C++
123 lines
5.6 KiB
C++
/* -*- 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_antitrackingservice_h
|
|
#define mozilla_antitrackingservice_h
|
|
|
|
#include "nsString.h"
|
|
#include "mozilla/MozPromise.h"
|
|
#include "mozilla/RefPtr.h"
|
|
|
|
class nsIChannel;
|
|
class nsIHttpChannel;
|
|
class nsIPrincipal;
|
|
class nsIURI;
|
|
class nsPIDOMWindowInner;
|
|
|
|
namespace mozilla {
|
|
|
|
class AntiTrackingCommon final
|
|
{
|
|
public:
|
|
// Normally we would include PContentParent.h here and use the
|
|
// ipc::FirstPartyStorageAccessGrantedForOriginResolver type which maps to
|
|
// the same underlying type, but that results in Windows compilation errors,
|
|
// so we use the underlying type to avoid the #include here.
|
|
typedef std::function<void(const bool&)>
|
|
FirstPartyStorageAccessGrantedForOriginResolver;
|
|
|
|
// This method returns true if the URI has first party storage access when
|
|
// loaded inside the passed 3rd party context tracking resource window.
|
|
// If the window is first party context, please use
|
|
// MaybeIsFirstPartyStorageAccessGrantedFor();
|
|
//
|
|
// aRejectedReason could be set to one of these values if passed and if the
|
|
// storage permission is not granted:
|
|
// * nsIWebProgressListener::STATE_COOKIES_BLOCKED_BY_PERMISSION
|
|
// * nsIWebProgressListener::STATE_COOKIES_BLOCKED_TRACKER
|
|
// * nsIWebProgressListener::STATE_COOKIES_BLOCKED_ALL
|
|
// * nsIWebProgressListener::STATE_COOKIES_BLOCKED_FOREIGN
|
|
static bool
|
|
IsFirstPartyStorageAccessGrantedFor(nsPIDOMWindowInner* a3rdPartyTrackingWindow,
|
|
nsIURI* aURI,
|
|
uint32_t* aRejectedReason);
|
|
|
|
// Note: you should use IsFirstPartyStorageAccessGrantedFor() passing the
|
|
// nsIHttpChannel! Use this method _only_ if the channel is not available.
|
|
// For first party window, it's impossible to know if the aURI is a tracking
|
|
// resource synchronously, so here we return the best guest: if we are sure
|
|
// that the permission is granted for the origin of aURI, this method returns
|
|
// true, otherwise false.
|
|
static bool
|
|
MaybeIsFirstPartyStorageAccessGrantedFor(nsPIDOMWindowInner* aFirstPartyWindow,
|
|
nsIURI* aURI);
|
|
|
|
// It returns true if the URI has access to the first party storage.
|
|
// aChannel can be a 3rd party channel, or not.
|
|
// See IsFirstPartyStorageAccessGrantedFor(window) to see the possible values
|
|
// of aRejectedReason.
|
|
static bool
|
|
IsFirstPartyStorageAccessGrantedFor(nsIHttpChannel* aChannel, nsIURI* aURI,
|
|
uint32_t* aRejectedReason);
|
|
|
|
// This method checks if the principal has the permission to access to the
|
|
// first party storage.
|
|
static bool
|
|
IsFirstPartyStorageAccessGrantedFor(nsIPrincipal* aPrincipal);
|
|
|
|
// Grant the permission for aOrigin to have access to the first party storage.
|
|
// This method can handle 2 different scenarios:
|
|
// - aParentWindow is a 3rd party context, it opens an aOrigin window and the
|
|
// user interacts with it. We want to grant the permission at the
|
|
// combination: top-level + aParentWindow + aOrigin.
|
|
// Ex: example.net loads an iframe tracker.com, which opens a popup
|
|
// tracker.prg and the user interacts with it. tracker.org is allowed if
|
|
// loaded by tracker.com when loaded by example.net.
|
|
// - aParentWindow is a first party context and a 3rd party resource (probably
|
|
// becuase of a script) opens a popup and the user interacts with it. We
|
|
// want to grant the permission for the 3rd party context to have access to
|
|
// the first party stoage when loaded in aParentWindow.
|
|
// Ex: example.net import tracker.com/script.js which does opens a popup and
|
|
// the user interacts with it. tracker.com is allowed when loaded by
|
|
// example.net.
|
|
typedef MozPromise<bool, bool, false> StorageAccessGrantPromise;
|
|
static MOZ_MUST_USE RefPtr<StorageAccessGrantPromise>
|
|
AddFirstPartyStorageAccessGrantedFor(const nsAString& aOrigin,
|
|
nsPIDOMWindowInner* aParentWindow);
|
|
|
|
// For IPC only.
|
|
static void
|
|
SaveFirstPartyStorageAccessGrantedForOriginOnParentProcess(nsIPrincipal* aPrincipal,
|
|
const nsCString& aParentOrigin,
|
|
const nsCString& aGrantedOrigin,
|
|
FirstPartyStorageAccessGrantedForOriginResolver&& aResolver);
|
|
|
|
|
|
// Check whether a top window URI is on the content blocking allow list.
|
|
static nsresult
|
|
IsOnContentBlockingAllowList(nsIURI* aTopWinURI, bool& aIsAllowListed);
|
|
|
|
// This method can be called on the parent process or on the content process.
|
|
// The notification is propagated to the child channel if aChannel is a parent
|
|
// channel proxy.
|
|
//
|
|
// aRejectedReason must be one of these values:
|
|
// * nsIWebProgressListener::STATE_COOKIES_BLOCKED_BY_PERMISSION
|
|
// * nsIWebProgressListener::STATE_COOKIES_BLOCKED_TRACKER
|
|
// * nsIWebProgressListener::STATE_COOKIES_BLOCKED_ALL
|
|
// * nsIWebProgressListener::STATE_COOKIES_BLOCKED_FOREIGN
|
|
// * nsIWebProgressListener::STATE_BLOCKED_SLOW_TRACKING_CONTENT
|
|
static void
|
|
NotifyRejection(nsIChannel* aChannel, uint32_t aRejectedReason);
|
|
|
|
static void
|
|
NotifyRejection(nsPIDOMWindowInner* aWindow, uint32_t aRejectedReason);
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_antitrackingservice_h
|