blob: 44e1b9257d9c46106b7138c68c541c0753ccf633 [file] [log] [blame]
/*
* Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All Rights Reserved.
* Copyright (C) 2009 Torch Mobile, Inc.
* Copyright 2010, The Android Open Source Project
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "modules/geolocation/Geolocation.h"
#include "bindings/core/v8/SourceLocation.h"
#include "core/dom/Document.h"
#include "core/frame/Deprecation.h"
#include "core/frame/HostsUsingFeatures.h"
#include "core/frame/PerformanceMonitor.h"
#include "core/frame/Settings.h"
#include "core/inspector/ConsoleMessage.h"
#include "core/probe/CoreProbes.h"
#include "modules/geolocation/Coordinates.h"
#include "modules/geolocation/GeolocationError.h"
#include "platform/wtf/Assertions.h"
#include "platform/wtf/Time.h"
#include "public/platform/Platform.h"
#include "services/service_manager/public/cpp/interface_provider.h"
#include "third_party/WebKit/public/mojom/feature_policy/feature_policy.mojom-blink.h"
namespace blink {
namespace {
const char kPermissionDeniedErrorMessage[] = "User denied Geolocation";
const char kFeaturePolicyErrorMessage[] =
"Geolocation has been disabled in this document by Feature Policy.";
const char kFeaturePolicyConsoleWarning[] =
"Geolocation access has been blocked because of a Feature Policy applied "
"to the current document. See https://goo.gl/EuHzyv for more details.";
Geoposition* CreateGeoposition(
const device::mojom::blink::Geoposition& position) {
Coordinates* coordinates = Coordinates::Create(
position.latitude, position.longitude,
// Lowest point on land is at approximately -400 meters.
position.altitude > -10000., position.altitude, position.accuracy,
position.altitude_accuracy >= 0., position.altitude_accuracy,
position.heading >= 0. && position.heading <= 360., position.heading,
position.speed >= 0., position.speed);
return Geoposition::Create(coordinates, ConvertSecondsToDOMTimeStamp(
position.timestamp.ToDoubleT()));
}
PositionError* CreatePositionError(
device::mojom::blink::Geoposition::ErrorCode mojom_error_code,
const String& error) {
PositionError::ErrorCode error_code = PositionError::kPositionUnavailable;
switch (mojom_error_code) {
case device::mojom::blink::Geoposition::ErrorCode::PERMISSION_DENIED:
error_code = PositionError::kPermissionDenied;
break;
case device::mojom::blink::Geoposition::ErrorCode::POSITION_UNAVAILABLE:
error_code = PositionError::kPositionUnavailable;
break;
case device::mojom::blink::Geoposition::ErrorCode::NONE:
case device::mojom::blink::Geoposition::ErrorCode::TIMEOUT:
NOTREACHED();
break;
}
return PositionError::Create(error_code, error);
}
static void ReportGeolocationViolation(ExecutionContext* context) {
Document* doc = ToDocumentOrNull(context);
if (!Frame::HasTransientUserActivation(doc ? doc->GetFrame() : nullptr)) {
PerformanceMonitor::ReportGenericViolation(
context, PerformanceMonitor::kDiscouragedAPIUse,
"Only request geolocation information in response to a user gesture.",
0, nullptr);
}
}
} // namespace
Geolocation* Geolocation::Create(ExecutionContext* context) {
Geolocation* geolocation = new Geolocation(context);
return geolocation;
}
Geolocation::Geolocation(ExecutionContext* context)
: ContextLifecycleObserver(context),
PageVisibilityObserver(GetDocument()->GetPage()) {}
Geolocation::~Geolocation() = default;
void Geolocation::Trace(blink::Visitor* visitor) {
visitor->Trace(one_shots_);
visitor->Trace(watchers_);
visitor->Trace(one_shots_being_invoked_);
visitor->Trace(watchers_being_invoked_);
visitor->Trace(last_position_);
ScriptWrappable::Trace(visitor);
ContextLifecycleObserver::Trace(visitor);
PageVisibilityObserver::Trace(visitor);
}
void Geolocation::TraceWrappers(const ScriptWrappableVisitor* visitor) const {
for (const auto& one_shot : one_shots_)
visitor->TraceWrappers(one_shot);
visitor->TraceWrappers(watchers_);
for (const auto& one_shot : one_shots_being_invoked_)
visitor->TraceWrappers(one_shot);
for (const auto& watcher : watchers_being_invoked_)
visitor->TraceWrappers(watcher);
ScriptWrappable::TraceWrappers(visitor);
}
Document* Geolocation::GetDocument() const {
return ToDocument(GetExecutionContext());
}
LocalFrame* Geolocation::GetFrame() const {
return GetDocument() ? GetDocument()->GetFrame() : nullptr;
}
void Geolocation::ContextDestroyed(ExecutionContext*) {
StopTimers();
one_shots_.clear();
watchers_.Clear();
StopUpdating();
last_position_ = nullptr;
}
void Geolocation::RecordOriginTypeAccess() const {
DCHECK(GetFrame());
Document* document = this->GetDocument();
DCHECK(document);
// It is required by isSecureContext() but isn't actually used. This could be
// used later if a warning is shown in the developer console.
String insecure_origin_msg;
if (document->IsSecureContext(insecure_origin_msg)) {
UseCounter::Count(document, WebFeature::kGeolocationSecureOrigin);
UseCounter::CountCrossOriginIframe(
*document, WebFeature::kGeolocationSecureOriginIframe);
if (!RuntimeEnabledFeatures::FeaturePolicyForPermissionsEnabled()) {
Deprecation::CountDeprecationFeaturePolicy(
*document, mojom::FeaturePolicyFeature::kGeolocation);
}
} else if (GetFrame()
->GetSettings()
->GetAllowGeolocationOnInsecureOrigins()) {
// TODO(jww): This should be removed after WebView is fixed so that it
// disallows geolocation in insecure contexts.
//
// See https://crbug.com/603574.
Deprecation::CountDeprecation(
document, WebFeature::kGeolocationInsecureOriginDeprecatedNotRemoved);
Deprecation::CountDeprecationCrossOriginIframe(
*document,
WebFeature::kGeolocationInsecureOriginIframeDeprecatedNotRemoved);
HostsUsingFeatures::CountAnyWorld(
*document, HostsUsingFeatures::Feature::kGeolocationInsecureHost);
if (!RuntimeEnabledFeatures::FeaturePolicyForPermissionsEnabled()) {
Deprecation::CountDeprecationFeaturePolicy(
*document, mojom::FeaturePolicyFeature::kGeolocation);
}
} else {
Deprecation::CountDeprecation(document,
WebFeature::kGeolocationInsecureOrigin);
Deprecation::CountDeprecationCrossOriginIframe(
*document, WebFeature::kGeolocationInsecureOriginIframe);
HostsUsingFeatures::CountAnyWorld(
*document, HostsUsingFeatures::Feature::kGeolocationInsecureHost);
}
}
void Geolocation::getCurrentPosition(V8PositionCallback* success_callback,
V8PositionErrorCallback* error_callback,
const PositionOptions& options) {
if (!GetFrame())
return;
ReportGeolocationViolation(GetDocument());
probe::breakableLocation(GetDocument(), "Geolocation.getCurrentPosition");
GeoNotifier* notifier =
GeoNotifier::Create(this, success_callback, error_callback, options);
one_shots_.insert(notifier);
StartRequest(notifier);
}
int Geolocation::watchPosition(V8PositionCallback* success_callback,
V8PositionErrorCallback* error_callback,
const PositionOptions& options) {
if (!GetFrame())
return 0;
ReportGeolocationViolation(GetDocument());
probe::breakableLocation(GetDocument(), "Geolocation.watchPosition");
GeoNotifier* notifier =
GeoNotifier::Create(this, success_callback, error_callback, options);
int watch_id;
// Keep asking for the next id until we're given one that we don't already
// have.
do {
watch_id = GetExecutionContext()->CircularSequentialID();
} while (!watchers_.Add(watch_id, notifier));
StartRequest(notifier);
return watch_id;
}
void Geolocation::StartRequest(GeoNotifier* notifier) {
RecordOriginTypeAccess();
String error_message;
if (!GetFrame()->GetSettings()->GetAllowGeolocationOnInsecureOrigins() &&
!GetExecutionContext()->IsSecureContext(error_message)) {
notifier->SetFatalError(
PositionError::Create(PositionError::kPermissionDenied, error_message));
return;
}
if (RuntimeEnabledFeatures::FeaturePolicyForPermissionsEnabled()) {
if (!GetFrame()->IsFeatureEnabled(
mojom::FeaturePolicyFeature::kGeolocation)) {
UseCounter::Count(GetDocument(),
WebFeature::kGeolocationDisabledByFeaturePolicy);
GetDocument()->AddConsoleMessage(
ConsoleMessage::Create(kJSMessageSource, kWarningMessageLevel,
kFeaturePolicyConsoleWarning));
notifier->SetFatalError(PositionError::Create(
PositionError::kPermissionDenied, kFeaturePolicyErrorMessage));
return;
}
}
if (HaveSuitableCachedPosition(notifier->Options())) {
notifier->SetUseCachedPosition();
} else {
if (notifier->Options().timeout() > 0)
StartUpdating(notifier);
notifier->StartTimer();
}
}
void Geolocation::FatalErrorOccurred(GeoNotifier* notifier) {
DCHECK(!notifier->IsTimerActive());
// This request has failed fatally. Remove it from our lists.
one_shots_.erase(notifier);
watchers_.Remove(notifier);
if (!HasListeners())
StopUpdating();
}
void Geolocation::RequestUsesCachedPosition(GeoNotifier* notifier) {
DCHECK(!notifier->IsTimerActive());
notifier->RunSuccessCallback(last_position_);
// If this is a one-shot request, stop it. Otherwise, if the watch still
// exists, start the service to get updates.
if (one_shots_.Contains(notifier)) {
one_shots_.erase(notifier);
} else if (watchers_.Contains(notifier)) {
if (notifier->Options().timeout() > 0)
StartUpdating(notifier);
notifier->StartTimer();
}
if (!HasListeners())
StopUpdating();
}
void Geolocation::RequestTimedOut(GeoNotifier* notifier) {
DCHECK(!notifier->IsTimerActive());
// If this is a one-shot request, stop it.
one_shots_.erase(notifier);
if (!HasListeners())
StopUpdating();
}
bool Geolocation::DoesOwnNotifier(GeoNotifier* notifier) const {
return one_shots_.Contains(notifier) ||
one_shots_being_invoked_.Contains(notifier) ||
watchers_.Contains(notifier) ||
watchers_being_invoked_.Contains(notifier);
}
bool Geolocation::HaveSuitableCachedPosition(const PositionOptions& options) {
if (!last_position_)
return false;
if (!options.maximumAge())
return false;
DOMTimeStamp current_time_millis =
ConvertSecondsToDOMTimeStamp(CurrentTime());
return last_position_->timestamp() >
current_time_millis - options.maximumAge();
}
void Geolocation::clearWatch(int watch_id) {
if (watch_id <= 0)
return;
GeoNotifier* notifier = watchers_.Find(watch_id);
if (!notifier)
return;
notifier->StopTimer();
watchers_.Remove(watch_id);
if (!HasListeners())
StopUpdating();
}
void Geolocation::StopTimers() {
for (const auto& notifier : one_shots_) {
notifier->StopTimer();
}
for (const auto& notifier : watchers_.Notifiers()) {
notifier->StopTimer();
}
}
void Geolocation::HandleError(PositionError* error) {
DCHECK(error);
DCHECK(one_shots_being_invoked_.IsEmpty());
DCHECK(watchers_being_invoked_.IsEmpty());
if (error->IsFatal()) {
// Stop the timers of |one_shots_| and |watchers_| before swapping/copying
// them.
StopTimers();
}
// Set |one_shots_being_invoked_| and |watchers_being_invoked_| to the
// callbacks to be invoked, which must not change during invocation of
// the callbacks. Note that |one_shots_| and |watchers_| might be changed
// by a callback through getCurrentPosition, watchPosition, and/or
// clearWatch.
swap(one_shots_, one_shots_being_invoked_);
watchers_.CopyNotifiersToVector(watchers_being_invoked_);
if (error->IsFatal()) {
// Clear the watchers before invoking the callbacks.
watchers_.Clear();
}
// Invoke the callbacks. Do not send a non-fatal error to the notifiers
// that only need a cached position. Let them receive a cached position
// later.
//
// A notifier may call |clearWatch|, and in that case, that watcher notifier
// already scheduled must be immediately cancelled according to the spec. But
// the current implementation doesn't support such case.
// TODO(mattreynolds): Support watcher cancellation inside notifier callbacks.
for (auto& notifier : one_shots_being_invoked_) {
if (error->IsFatal() || !notifier->UseCachedPosition())
notifier->RunErrorCallback(error);
}
for (auto& notifier : watchers_being_invoked_) {
if (error->IsFatal() || !notifier->UseCachedPosition())
notifier->RunErrorCallback(error);
}
// |HasListeners| doesn't distinguish those notifiers which require a fresh
// position from those which are okay with a cached position. Perform the
// check before adding the latter back to |one_shots_|.
if (!HasListeners())
StopUpdating();
if (!error->IsFatal()) {
// Keep the notifiers that are okay with a cached position in |one_shots_|.
for (const auto& notifier : one_shots_being_invoked_) {
if (notifier->UseCachedPosition())
one_shots_.InsertWithoutTimerCheck(notifier.Get());
else
notifier->StopTimer();
}
one_shots_being_invoked_.ClearWithoutTimerCheck();
}
one_shots_being_invoked_.clear();
watchers_being_invoked_.clear();
}
void Geolocation::MakeSuccessCallbacks() {
DCHECK(last_position_);
DCHECK(one_shots_being_invoked_.IsEmpty());
DCHECK(watchers_being_invoked_.IsEmpty());
// Set |one_shots_being_invoked_| and |watchers_being_invoked_| to the
// callbacks to be invoked, which must not change during invocation of
// the callbacks. Note that |one_shots_| and |watchers_| might be changed
// by a callback through getCurrentPosition, watchPosition, and/or
// clearWatch.
swap(one_shots_, one_shots_being_invoked_);
watchers_.CopyNotifiersToVector(watchers_being_invoked_);
// Invoke the callbacks.
//
// A notifier may call |clearWatch|, and in that case, that watcher notifier
// already scheduled must be immediately cancelled according to the spec. But
// the current implementation doesn't support such case.
// TODO(mattreynolds): Support watcher cancellation inside notifier callbacks.
for (auto& notifier : one_shots_being_invoked_)
notifier->RunSuccessCallback(last_position_);
for (auto& notifier : watchers_being_invoked_)
notifier->RunSuccessCallback(last_position_);
if (!HasListeners())
StopUpdating();
one_shots_being_invoked_.clear();
watchers_being_invoked_.clear();
}
void Geolocation::PositionChanged() {
// Stop all currently running timers.
StopTimers();
MakeSuccessCallbacks();
}
void Geolocation::StartUpdating(GeoNotifier* notifier) {
updating_ = true;
if (notifier->Options().enableHighAccuracy() && !enable_high_accuracy_) {
enable_high_accuracy_ = true;
if (geolocation_)
geolocation_->SetHighAccuracy(true);
}
UpdateGeolocationConnection();
}
void Geolocation::StopUpdating() {
updating_ = false;
UpdateGeolocationConnection();
enable_high_accuracy_ = false;
}
void Geolocation::UpdateGeolocationConnection() {
if (!GetExecutionContext() || !GetPage() || !GetPage()->IsPageVisible() ||
!updating_) {
geolocation_.reset();
disconnected_geolocation_ = true;
return;
}
if (geolocation_)
return;
InterfaceInvalidator* invalidator =
GetExecutionContext()->GetInterfaceInvalidator();
GetFrame()->GetInterfaceProvider().GetInterface(&geolocation_service_,
invalidator);
geolocation_service_->CreateGeolocation(
MakeRequest(&geolocation_, invalidator),
Frame::HasTransientUserActivation(GetFrame()));
geolocation_.set_connection_error_handler(WTF::Bind(
&Geolocation::OnGeolocationConnectionError, WrapWeakPersistent(this)));
if (enable_high_accuracy_)
geolocation_->SetHighAccuracy(true);
QueryNextPosition();
}
void Geolocation::QueryNextPosition() {
geolocation_->QueryNextPosition(
WTF::Bind(&Geolocation::OnPositionUpdated, WrapPersistent(this)));
}
void Geolocation::OnPositionUpdated(
device::mojom::blink::GeopositionPtr position) {
disconnected_geolocation_ = false;
if (position->valid) {
last_position_ = CreateGeoposition(*position);
PositionChanged();
} else {
HandleError(
CreatePositionError(position->error_code, position->error_message));
}
if (!disconnected_geolocation_)
QueryNextPosition();
}
void Geolocation::PageVisibilityChanged() {
UpdateGeolocationConnection();
}
bool Geolocation::HasPendingActivity() const {
return !one_shots_.IsEmpty() || !one_shots_being_invoked_.IsEmpty() ||
!watchers_.IsEmpty() || !watchers_being_invoked_.IsEmpty();
}
void Geolocation::OnGeolocationConnectionError() {
StopUpdating();
// The only reason that we would fail to get a ConnectionError is if we lack
// sufficient permission.
PositionError* error = PositionError::Create(PositionError::kPermissionDenied,
kPermissionDeniedErrorMessage);
error->SetIsFatal(true);
HandleError(error);
}
} // namespace blink