2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2010-05-13 18:39:14 +00:00
|
|
|
|
2010-09-13 19:49:27 +00:00
|
|
|
#ifndef nsContentPermissionHelper_h
|
|
|
|
#define nsContentPermissionHelper_h
|
2010-05-13 18:39:14 +00:00
|
|
|
|
2010-09-10 04:59:51 +00:00
|
|
|
#include "nsIContentPermissionPrompt.h"
|
2014-02-09 20:34:40 +00:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsIMutableArray.h"
|
2014-08-01 07:22:20 +00:00
|
|
|
#include "mozilla/dom/PContentPermissionRequestChild.h"
|
2015-04-14 01:08:00 +00:00
|
|
|
#include "mozilla/dom/ipc/IdType.h"
|
2020-04-10 08:36:46 +00:00
|
|
|
#include "mozilla/PermissionDelegateHandler.h"
|
2015-04-14 01:08:00 +00:00
|
|
|
|
2014-08-01 07:22:20 +00:00
|
|
|
// Microsoft's API Name hackery sucks
|
|
|
|
// XXXbz Doing this in a header is a gigantic footgun. See
|
|
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=932421#c3 for why.
|
|
|
|
#undef LoadImage
|
2013-11-05 08:29:52 +00:00
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
class nsPIDOMWindowInner;
|
2013-12-10 06:03:21 +00:00
|
|
|
class nsContentPermissionRequestProxy;
|
2013-12-06 22:38:52 +00:00
|
|
|
|
2014-02-09 20:34:40 +00:00
|
|
|
// Forward declare IPC::Principal here which is defined in
|
|
|
|
// PermissionMessageUtils.h. Include this file will transitively includes
|
|
|
|
// "windows.h" and it defines
|
|
|
|
// #define CreateEvent CreateEventW
|
|
|
|
// #define LoadImage LoadImageW
|
|
|
|
// That will mess up windows build.
|
|
|
|
namespace IPC {
|
|
|
|
class Principal;
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace IPC
|
2014-02-09 20:34:40 +00:00
|
|
|
|
2010-05-13 18:39:14 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-07-23 23:39:17 +00:00
|
|
|
class Element;
|
2014-02-09 20:34:40 +00:00
|
|
|
class PermissionRequest;
|
|
|
|
class ContentPermissionRequestParent;
|
|
|
|
class PContentPermissionRequestParent;
|
2013-07-23 23:39:17 +00:00
|
|
|
|
2014-02-09 20:34:40 +00:00
|
|
|
class ContentPermissionType : public nsIContentPermissionType {
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICONTENTPERMISSIONTYPE
|
2012-07-30 14:58:26 +00:00
|
|
|
|
2013-09-10 15:41:59 +00:00
|
|
|
ContentPermissionType(const nsACString& aType,
|
|
|
|
const nsTArray<nsString>& aOptions);
|
2013-10-16 22:25:50 +00:00
|
|
|
|
2014-02-09 20:34:40 +00:00
|
|
|
protected:
|
2014-06-23 19:56:07 +00:00
|
|
|
virtual ~ContentPermissionType();
|
|
|
|
|
2010-09-13 19:49:27 +00:00
|
|
|
nsCString mType;
|
2013-09-10 15:41:59 +00:00
|
|
|
nsTArray<nsString> mOptions;
|
2013-12-10 06:03:21 +00:00
|
|
|
};
|
2013-12-06 22:38:52 +00:00
|
|
|
|
2014-08-01 07:22:20 +00:00
|
|
|
class nsContentPermissionUtils {
|
|
|
|
public:
|
|
|
|
static uint32_t ConvertPermissionRequestToArray(
|
|
|
|
nsTArray<PermissionRequest>& aSrcArray, nsIMutableArray* aDesArray);
|
2018-11-30 10:46:48 +00:00
|
|
|
|
2021-08-25 07:29:55 +00:00
|
|
|
// Converts blindly, that is, strings are not matched against any list.
|
|
|
|
//
|
|
|
|
// @param aSrcArray needs to contain elements of type
|
|
|
|
// `nsIContentPermissionType`.
|
|
|
|
static void ConvertArrayToPermissionRequest(
|
2014-08-01 07:22:20 +00:00
|
|
|
nsIArray* aSrcArray, nsTArray<PermissionRequest>& aDesArray);
|
2018-11-30 10:46:48 +00:00
|
|
|
|
2014-08-01 07:22:20 +00:00
|
|
|
static nsresult CreatePermissionArray(const nsACString& aType,
|
|
|
|
const nsTArray<nsString>& aOptions,
|
|
|
|
nsIArray** aTypesArray);
|
2018-11-30 10:46:48 +00:00
|
|
|
|
2014-08-01 07:22:20 +00:00
|
|
|
static PContentPermissionRequestParent* CreateContentPermissionRequestParent(
|
|
|
|
const nsTArray<PermissionRequest>& aRequests, Element* aElement,
|
2019-04-25 14:18:11 +00:00
|
|
|
nsIPrincipal* aPrincipal, nsIPrincipal* aTopLevelPrincipal,
|
|
|
|
const bool aIsHandlingUserInput,
|
2019-12-10 14:38:30 +00:00
|
|
|
const bool aMaybeUnsafePermissionDelegate, const TabId& aTabId);
|
2018-11-30 10:46:48 +00:00
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
static nsresult AskPermission(nsIContentPermissionRequest* aRequest,
|
|
|
|
nsPIDOMWindowInner* aWindow);
|
2015-04-14 01:08:00 +00:00
|
|
|
|
|
|
|
static nsTArray<PContentPermissionRequestParent*>
|
|
|
|
GetContentPermissionRequestParentById(const TabId& aTabId);
|
|
|
|
|
|
|
|
static void NotifyRemoveContentPermissionRequestParent(
|
|
|
|
PContentPermissionRequestParent* aParent);
|
2015-11-09 00:55:08 +00:00
|
|
|
|
|
|
|
static nsTArray<PContentPermissionRequestChild*>
|
|
|
|
GetContentPermissionRequestChildById(const TabId& aTabId);
|
|
|
|
|
|
|
|
static void NotifyRemoveContentPermissionRequestChild(
|
|
|
|
PContentPermissionRequestChild* aChild);
|
2015-04-14 01:08:00 +00:00
|
|
|
};
|
|
|
|
|
2018-11-20 14:40:42 +00:00
|
|
|
nsresult TranslateChoices(
|
|
|
|
JS::HandleValue aChoices,
|
|
|
|
const nsTArray<PermissionRequest>& aPermissionRequests,
|
|
|
|
nsTArray<PermissionChoice>& aTranslatedChoices);
|
|
|
|
|
2018-11-14 05:33:25 +00:00
|
|
|
class ContentPermissionRequestBase : public nsIContentPermissionRequest {
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(ContentPermissionRequestBase)
|
|
|
|
|
|
|
|
NS_IMETHOD GetTypes(nsIArray** aTypes) override;
|
|
|
|
NS_IMETHOD GetPrincipal(nsIPrincipal** aPrincipal) override;
|
2019-12-04 15:39:03 +00:00
|
|
|
NS_IMETHOD GetDelegatePrincipal(const nsACString& aType,
|
|
|
|
nsIPrincipal** aPrincipal) override;
|
2018-11-20 01:52:47 +00:00
|
|
|
NS_IMETHOD GetTopLevelPrincipal(nsIPrincipal** aTopLevelPrincipal) override;
|
2018-11-14 05:33:25 +00:00
|
|
|
NS_IMETHOD GetWindow(mozIDOMWindow** aWindow) override;
|
|
|
|
NS_IMETHOD GetElement(mozilla::dom::Element** aElement) override;
|
|
|
|
NS_IMETHOD GetIsHandlingUserInput(bool* aIsHandlingUserInput) override;
|
2019-12-04 15:39:26 +00:00
|
|
|
NS_IMETHOD GetMaybeUnsafePermissionDelegate(
|
|
|
|
bool* aMaybeUnsafePermissionDelegate) override;
|
2018-11-14 05:33:25 +00:00
|
|
|
// Overrides for Allow() and Cancel() aren't provided by this class.
|
|
|
|
// That is the responsibility of the subclasses.
|
|
|
|
|
|
|
|
enum class PromptResult {
|
|
|
|
Granted,
|
|
|
|
Denied,
|
|
|
|
Pending,
|
|
|
|
};
|
|
|
|
nsresult ShowPrompt(PromptResult& aResult);
|
|
|
|
|
|
|
|
PromptResult CheckPromptPrefs();
|
|
|
|
|
2019-11-07 14:29:02 +00:00
|
|
|
// Check if the permission has an opportunity to request.
|
|
|
|
bool CheckPermissionDelegate();
|
|
|
|
|
2018-11-14 05:33:25 +00:00
|
|
|
enum class DelayedTaskType {
|
|
|
|
Allow,
|
|
|
|
Deny,
|
|
|
|
Request,
|
|
|
|
};
|
|
|
|
void RequestDelayedTask(nsIEventTarget* aTarget, DelayedTaskType aType);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
ContentPermissionRequestBase(nsIPrincipal* aPrincipal,
|
|
|
|
nsPIDOMWindowInner* aWindow,
|
|
|
|
const nsACString& aPrefName,
|
|
|
|
const nsACString& aType);
|
|
|
|
virtual ~ContentPermissionRequestBase() = default;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPrincipal> mPrincipal;
|
2018-11-20 01:52:47 +00:00
|
|
|
nsCOMPtr<nsIPrincipal> mTopLevelPrincipal;
|
2018-11-14 05:33:25 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> mWindow;
|
2019-11-07 14:29:02 +00:00
|
|
|
RefPtr<PermissionDelegateHandler> mPermissionHandler;
|
2018-11-14 05:33:25 +00:00
|
|
|
nsCString mPrefName;
|
|
|
|
nsCString mType;
|
|
|
|
bool mIsHandlingUserInput;
|
2019-12-04 15:39:26 +00:00
|
|
|
bool mMaybeUnsafePermissionDelegate;
|
2018-11-14 05:33:25 +00:00
|
|
|
};
|
|
|
|
|
2010-08-07 01:20:53 +00:00
|
|
|
} // namespace dom
|
2010-05-13 18:39:14 +00:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-04-14 01:08:00 +00:00
|
|
|
using mozilla::dom::ContentPermissionRequestParent;
|
|
|
|
|
2010-09-13 19:49:27 +00:00
|
|
|
class nsContentPermissionRequestProxy : public nsIContentPermissionRequest {
|
2015-04-14 01:08:00 +00:00
|
|
|
public:
|
2014-02-09 20:34:40 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICONTENTPERMISSIONREQUEST
|
|
|
|
|
2018-06-16 14:21:46 +00:00
|
|
|
explicit nsContentPermissionRequestProxy(
|
|
|
|
ContentPermissionRequestParent* parent);
|
2012-07-30 14:58:26 +00:00
|
|
|
|
2018-06-16 14:21:46 +00:00
|
|
|
nsresult Init(const nsTArray<mozilla::dom::PermissionRequest>& requests);
|
2014-08-01 07:22:20 +00:00
|
|
|
|
2011-02-09 19:07:43 +00:00
|
|
|
void OnParentDestroyed();
|
2012-07-30 14:58:26 +00:00
|
|
|
|
2015-04-14 01:08:00 +00:00
|
|
|
private:
|
2014-06-23 19:56:07 +00:00
|
|
|
virtual ~nsContentPermissionRequestProxy();
|
|
|
|
|
2010-09-13 19:49:27 +00:00
|
|
|
// Non-owning pointer to the ContentPermissionRequestParent object which owns
|
|
|
|
// this proxy.
|
2015-04-14 01:08:00 +00:00
|
|
|
ContentPermissionRequestParent* mParent;
|
2014-02-09 20:34:40 +00:00
|
|
|
nsTArray<mozilla::dom::PermissionRequest> mPermissionRequests;
|
2010-05-13 18:39:14 +00:00
|
|
|
};
|
2013-12-10 06:03:21 +00:00
|
|
|
|
2014-07-08 04:45:23 +00:00
|
|
|
/**
|
2021-08-25 07:29:55 +00:00
|
|
|
* RemotePermissionRequest will send a prompt ipdl request to the chrome process
|
|
|
|
* (https://wiki.mozilla.org/Security/Sandbox/Process_model#Chrome_process_.28Parent.29).
|
2014-07-08 04:45:23 +00:00
|
|
|
*/
|
2015-04-14 01:08:00 +00:00
|
|
|
class RemotePermissionRequest final
|
2020-11-13 20:55:17 +00:00
|
|
|
: public mozilla::dom::PContentPermissionRequestChild {
|
2014-07-08 04:45:23 +00:00
|
|
|
public:
|
2020-11-13 20:55:17 +00:00
|
|
|
NS_INLINE_DECL_REFCOUNTING(RemotePermissionRequest)
|
2014-07-08 04:45:23 +00:00
|
|
|
|
|
|
|
RemotePermissionRequest(nsIContentPermissionRequest* aRequest,
|
2016-01-30 17:05:36 +00:00
|
|
|
nsPIDOMWindowInner* aWindow);
|
2014-07-08 04:45:23 +00:00
|
|
|
|
2019-03-20 18:05:09 +00:00
|
|
|
// It will be called when prompt dismissed. MOZ_CAN_RUN_SCRIPT_BOUNDARY
|
|
|
|
// because we don't have MOZ_CAN_RUN_SCRIPT bits in IPC code yet.
|
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY
|
2019-02-06 15:58:43 +00:00
|
|
|
mozilla::ipc::IPCResult RecvNotifyResult(
|
2019-07-10 03:25:21 +00:00
|
|
|
const bool& aAllow, nsTArray<PermissionChoice>&& aChoices);
|
2014-07-08 04:45:23 +00:00
|
|
|
|
2014-08-01 07:22:20 +00:00
|
|
|
void IPDLAddRef() {
|
|
|
|
mIPCOpen = true;
|
|
|
|
AddRef();
|
|
|
|
}
|
|
|
|
|
|
|
|
void IPDLRelease() {
|
|
|
|
mIPCOpen = false;
|
|
|
|
Release();
|
|
|
|
}
|
|
|
|
|
2015-11-09 00:55:08 +00:00
|
|
|
void Destroy();
|
|
|
|
|
|
|
|
bool IPCOpen() const { return mIPCOpen && !mDestroyed; }
|
|
|
|
|
2014-07-08 04:45:23 +00:00
|
|
|
private:
|
2016-01-22 18:28:33 +00:00
|
|
|
virtual ~RemotePermissionRequest();
|
2014-08-01 07:22:20 +00:00
|
|
|
|
2019-03-20 18:05:09 +00:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2014-08-01 07:22:20 +00:00
|
|
|
void DoAllow(JS::HandleValue aChoices);
|
2019-03-20 18:05:09 +00:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2014-08-01 07:22:20 +00:00
|
|
|
void DoCancel();
|
2014-07-08 04:45:23 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIContentPermissionRequest> mRequest;
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> mWindow;
|
2014-08-01 07:22:20 +00:00
|
|
|
bool mIPCOpen;
|
2015-11-09 00:55:08 +00:00
|
|
|
bool mDestroyed;
|
2014-07-08 04:45:23 +00:00
|
|
|
};
|
|
|
|
|
2014-02-09 20:34:40 +00:00
|
|
|
#endif // nsContentPermissionHelper_h
|