2015-07-20 05:12:11 +03: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: */
|
|
|
|
/* 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 nsContentSecurityManager_h___
|
|
|
|
#define nsContentSecurityManager_h___
|
|
|
|
|
2015-09-18 19:27:15 +03:00
|
|
|
#include "nsIContentSecurityManager.h"
|
2015-07-20 05:12:11 +03:00
|
|
|
#include "nsIChannel.h"
|
2015-12-07 02:33:14 +03:00
|
|
|
#include "nsIChannelEventSink.h"
|
2015-09-18 19:27:15 +03:00
|
|
|
|
2021-05-11 11:27:47 +03:00
|
|
|
class nsILoadInfo;
|
2015-07-20 05:12:11 +03:00
|
|
|
class nsIStreamListener;
|
|
|
|
|
2015-09-18 19:27:15 +03:00
|
|
|
#define NS_CONTENTSECURITYMANAGER_CONTRACTID \
|
|
|
|
"@mozilla.org/contentsecuritymanager;1"
|
|
|
|
// cdcc1ab8-3cea-4e6c-a294-a651fa35227f
|
|
|
|
#define NS_CONTENTSECURITYMANAGER_CID \
|
2018-11-30 13:46:48 +03:00
|
|
|
{ \
|
2015-09-18 19:27:15 +03:00
|
|
|
0xcdcc1ab8, 0x3cea, 0x4e6c, { \
|
|
|
|
0xa2, 0x94, 0xa6, 0x51, 0xfa, 0x35, 0x22, 0x7f \
|
|
|
|
} \
|
|
|
|
}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-09-18 19:27:15 +03:00
|
|
|
class nsContentSecurityManager : public nsIContentSecurityManager,
|
2015-12-07 02:33:14 +03:00
|
|
|
public nsIChannelEventSink {
|
2015-09-18 19:27:15 +03:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICONTENTSECURITYMANAGER
|
2015-12-07 02:33:14 +03:00
|
|
|
NS_DECL_NSICHANNELEVENTSINK
|
2015-09-18 19:27:15 +03:00
|
|
|
|
2020-03-04 01:07:43 +03:00
|
|
|
nsContentSecurityManager() = default;
|
2015-07-20 05:12:11 +03:00
|
|
|
|
|
|
|
static nsresult doContentSecurityCheck(
|
|
|
|
nsIChannel* aChannel, nsCOMPtr<nsIStreamListener>& aInAndOutListener);
|
2015-09-18 19:27:15 +03:00
|
|
|
|
2017-11-03 15:23:11 +03:00
|
|
|
static bool AllowTopLevelNavigationToDataURI(nsIChannel* aChannel);
|
2018-02-18 21:52:52 +03:00
|
|
|
static bool AllowInsecureRedirectToDataURI(nsIChannel* aNewChannel);
|
2021-05-11 11:27:47 +03:00
|
|
|
static void MeasureUnexpectedPrivilegedLoads(nsILoadInfo* aLoadInfo,
|
|
|
|
nsIURI* aFinalURI,
|
|
|
|
const nsACString& aRemoteType);
|
2017-09-06 10:33:10 +03:00
|
|
|
|
2015-09-18 19:27:15 +03:00
|
|
|
private:
|
2015-12-07 02:33:14 +03:00
|
|
|
static nsresult CheckChannel(nsIChannel* aChannel);
|
2018-04-06 01:27:02 +03:00
|
|
|
static nsresult CheckFTPSubresourceLoad(nsIChannel* aChannel);
|
2020-01-17 20:29:47 +03:00
|
|
|
static nsresult CheckAllowLoadInSystemPrivilegedContext(nsIChannel* aChannel);
|
2020-03-20 11:25:18 +03:00
|
|
|
static nsresult CheckChannelHasProtocolSecurityFlag(nsIChannel* aChannel);
|
2015-12-07 02:33:14 +03:00
|
|
|
|
2020-03-04 01:07:43 +03:00
|
|
|
virtual ~nsContentSecurityManager() = default;
|
2015-07-20 05:12:11 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsContentSecurityManager_h___ */
|