Backed out 2 changesets (bug 1447935) for perma failures on test_headless.js. CLOSED TREE

Backed out changeset 0332d1b01f63 (bug 1447935)
Backed out changeset bcf6ab4e4f50 (bug 1447935)
This commit is contained in:
Razvan Maries 2020-07-09 15:53:12 +03:00
parent ab9f3eb05b
commit cb161b6b55
5 changed files with 75 additions and 70 deletions

View file

@ -342,16 +342,6 @@ nsresult UrlClassifierCommon::CreatePairwiseEntityListURI(nsIChannel* aChannel,
} }
} }
} }
if (!topWinURI) {
UC_LOG(
("CreatePairwiseWhiteListURI: No top-level window associated with "
"channel, get URI from loading principal instead"));
nsCOMPtr<nsIPrincipal> principal = loadInfo->GetLoadingPrincipal();
auto* basePrin = BasePrincipal::Cast(principal);
rv = basePrin->GetURI(getter_AddRefs(topWinURI));
Unused << NS_WARN_IF(NS_FAILED(rv));
}
} }
if (!topWinURI) { if (!topWinURI) {
@ -364,7 +354,7 @@ nsresult UrlClassifierCommon::CreatePairwiseEntityListURI(nsIChannel* aChannel,
uri->GetAsciiSpec(spec); uri->GetAsciiSpec(spec);
spec.Truncate( spec.Truncate(
std::min(spec.Length(), UrlClassifierCommon::sMaxSpecLength)); std::min(spec.Length(), UrlClassifierCommon::sMaxSpecLength));
UC_LOG(("CreatePairwiseEntityListURI: No top-level URI associated with %s", UC_LOG(("CreatePairwiseEntityListURI: No window URI associated with %s",
spec.get())); spec.get()));
} }

View file

@ -6,10 +6,10 @@
#include "UrlClassifierFeatureCryptominingProtection.h" #include "UrlClassifierFeatureCryptominingProtection.h"
#include "mozilla/AntiTrackingUtils.h"
#include "mozilla/net/UrlClassifierCommon.h" #include "mozilla/net/UrlClassifierCommon.h"
#include "ChannelClassifierService.h" #include "ChannelClassifierService.h"
#include "mozilla/StaticPrefs_privacy.h" #include "mozilla/StaticPrefs_privacy.h"
#include "nsContentUtils.h"
#include "nsNetUtil.h" #include "nsNetUtil.h"
namespace mozilla { namespace mozilla {
@ -87,12 +87,16 @@ UrlClassifierFeatureCryptominingProtection::MaybeCreate(nsIChannel* aChannel) {
return nullptr; return nullptr;
} }
bool isThirdParty = AntiTrackingUtils::IsThirdPartyChannel(aChannel); nsCOMPtr<nsIURI> chanURI;
nsresult rv = aChannel->GetURI(getter_AddRefs(chanURI));
if (NS_WARN_IF(NS_FAILED(rv))) {
return nullptr;
}
bool isThirdParty =
nsContentUtils::IsThirdPartyWindowOrChannel(nullptr, aChannel, chanURI);
if (!isThirdParty) { if (!isThirdParty) {
if (UC_LOG_ENABLED()) { if (UC_LOG_ENABLED()) {
nsCOMPtr<nsIURI> chanURI;
Unused << aChannel->GetURI(getter_AddRefs(chanURI));
if (chanURI) {
nsCString spec = chanURI->GetSpecOrDefault(); nsCString spec = chanURI->GetSpecOrDefault();
spec.Truncate( spec.Truncate(
std::min(spec.Length(), UrlClassifierCommon::sMaxSpecLength)); std::min(spec.Length(), UrlClassifierCommon::sMaxSpecLength));
@ -103,7 +107,7 @@ UrlClassifierFeatureCryptominingProtection::MaybeCreate(nsIChannel* aChannel) {
"with uri %s", "with uri %s",
aChannel, spec.get())); aChannel, spec.get()));
} }
}
return nullptr; return nullptr;
} }

View file

@ -6,10 +6,10 @@
#include "UrlClassifierFeatureFingerprintingProtection.h" #include "UrlClassifierFeatureFingerprintingProtection.h"
#include "mozilla/AntiTrackingUtils.h"
#include "mozilla/net/UrlClassifierCommon.h" #include "mozilla/net/UrlClassifierCommon.h"
#include "ChannelClassifierService.h" #include "ChannelClassifierService.h"
#include "mozilla/StaticPrefs_privacy.h" #include "mozilla/StaticPrefs_privacy.h"
#include "nsContentUtils.h"
#include "nsNetUtil.h" #include "nsNetUtil.h"
namespace mozilla { namespace mozilla {
@ -90,12 +90,16 @@ UrlClassifierFeatureFingerprintingProtection::MaybeCreate(
return nullptr; return nullptr;
} }
bool isThirdParty = AntiTrackingUtils::IsThirdPartyChannel(aChannel); nsCOMPtr<nsIURI> chanURI;
nsresult rv = aChannel->GetURI(getter_AddRefs(chanURI));
if (NS_WARN_IF(NS_FAILED(rv))) {
return nullptr;
}
bool isThirdParty =
nsContentUtils::IsThirdPartyWindowOrChannel(nullptr, aChannel, chanURI);
if (!isThirdParty) { if (!isThirdParty) {
if (UC_LOG_ENABLED()) { if (UC_LOG_ENABLED()) {
nsCOMPtr<nsIURI> chanURI;
Unused << aChannel->GetURI(getter_AddRefs(chanURI));
if (chanURI) {
nsCString spec = chanURI->GetSpecOrDefault(); nsCString spec = chanURI->GetSpecOrDefault();
spec.Truncate( spec.Truncate(
std::min(spec.Length(), UrlClassifierCommon::sMaxSpecLength)); std::min(spec.Length(), UrlClassifierCommon::sMaxSpecLength));
@ -106,7 +110,6 @@ UrlClassifierFeatureFingerprintingProtection::MaybeCreate(
"with uri %s", "with uri %s",
aChannel, spec.get())); aChannel, spec.get()));
} }
}
return nullptr; return nullptr;
} }

View file

@ -6,10 +6,10 @@
#include "UrlClassifierFeatureSocialTrackingProtection.h" #include "UrlClassifierFeatureSocialTrackingProtection.h"
#include "mozilla/AntiTrackingUtils.h"
#include "mozilla/net/UrlClassifierCommon.h" #include "mozilla/net/UrlClassifierCommon.h"
#include "ChannelClassifierService.h" #include "ChannelClassifierService.h"
#include "mozilla/StaticPrefs_privacy.h" #include "mozilla/StaticPrefs_privacy.h"
#include "nsContentUtils.h"
#include "nsNetUtil.h" #include "nsNetUtil.h"
namespace mozilla { namespace mozilla {
@ -90,12 +90,16 @@ UrlClassifierFeatureSocialTrackingProtection::MaybeCreate(
return nullptr; return nullptr;
} }
bool isThirdParty = AntiTrackingUtils::IsThirdPartyChannel(aChannel); nsCOMPtr<nsIURI> chanURI;
nsresult rv = aChannel->GetURI(getter_AddRefs(chanURI));
if (NS_WARN_IF(NS_FAILED(rv))) {
return nullptr;
}
bool isThirdParty =
nsContentUtils::IsThirdPartyWindowOrChannel(nullptr, aChannel, chanURI);
if (!isThirdParty) { if (!isThirdParty) {
if (UC_LOG_ENABLED()) { if (UC_LOG_ENABLED()) {
nsCOMPtr<nsIURI> chanURI;
Unused << aChannel->GetURI(getter_AddRefs(chanURI));
if (chanURI) {
nsCString spec = chanURI->GetSpecOrDefault(); nsCString spec = chanURI->GetSpecOrDefault();
spec.Truncate( spec.Truncate(
std::min(spec.Length(), UrlClassifierCommon::sMaxSpecLength)); std::min(spec.Length(), UrlClassifierCommon::sMaxSpecLength));
@ -106,7 +110,7 @@ UrlClassifierFeatureSocialTrackingProtection::MaybeCreate(
"with uri %s", "with uri %s",
aChannel, spec.get())); aChannel, spec.get()));
} }
}
return nullptr; return nullptr;
} }

View file

@ -6,9 +6,9 @@
#include "UrlClassifierFeatureTrackingProtection.h" #include "UrlClassifierFeatureTrackingProtection.h"
#include "mozilla/AntiTrackingUtils.h"
#include "mozilla/net/UrlClassifierCommon.h" #include "mozilla/net/UrlClassifierCommon.h"
#include "ChannelClassifierService.h" #include "ChannelClassifierService.h"
#include "nsContentUtils.h"
#include "nsIHttpChannelInternal.h" #include "nsIHttpChannelInternal.h"
#include "nsILoadContext.h" #include "nsILoadContext.h"
#include "nsNetUtil.h" #include "nsNetUtil.h"
@ -93,12 +93,16 @@ UrlClassifierFeatureTrackingProtection::MaybeCreate(nsIChannel* aChannel) {
return nullptr; return nullptr;
} }
bool isThirdParty = AntiTrackingUtils::IsThirdPartyChannel(aChannel); nsCOMPtr<nsIURI> chanURI;
nsresult rv = aChannel->GetURI(getter_AddRefs(chanURI));
if (NS_WARN_IF(NS_FAILED(rv))) {
return nullptr;
}
bool isThirdParty =
nsContentUtils::IsThirdPartyWindowOrChannel(nullptr, aChannel, chanURI);
if (!isThirdParty) { if (!isThirdParty) {
if (UC_LOG_ENABLED()) { if (UC_LOG_ENABLED()) {
nsCOMPtr<nsIURI> chanURI;
Unused << aChannel->GetURI(getter_AddRefs(chanURI));
if (chanURI) {
nsCString spec = chanURI->GetSpecOrDefault(); nsCString spec = chanURI->GetSpecOrDefault();
spec.Truncate( spec.Truncate(
std::min(spec.Length(), UrlClassifierCommon::sMaxSpecLength)); std::min(spec.Length(), UrlClassifierCommon::sMaxSpecLength));
@ -108,7 +112,7 @@ UrlClassifierFeatureTrackingProtection::MaybeCreate(nsIChannel* aChannel) {
"with uri %s", "with uri %s",
aChannel, spec.get())); aChannel, spec.get()));
} }
}
return nullptr; return nullptr;
} }