1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
ash / system / geolocation / geolocation_controller.cc [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/system/geolocation/geolocation_controller.h"
#include <algorithm>
#include "ash/constants/ash_pref_names.h"
#include "ash/session/session_controller_impl.h"
#include "ash/shell.h"
#include "ash/system/privacy_hub/privacy_hub_controller.h"
#include "ash/system/time/time_of_day.h"
#include "base/check_is_test.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/time/clock.h"
#include "chromeos/ash/components/geolocation/geoposition.h"
#include "chromeos/ash/components/geolocation/simple_geolocation_provider.h"
#include "components/prefs/pref_change_registrar.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "third_party/icu/source/i18n/astro.h"
namespace ash {
namespace {
// Delay to wait for a response to our geolocation request, if we get a response
// after which, we will consider the request a failure.
constexpr base::TimeDelta kGeolocationRequestTimeout = base::Seconds(60);
// Minimum delay to wait to fire a new request after a previous one failing.
constexpr base::TimeDelta kMinimumDelayAfterFailure = base::Seconds(60);
// Delay to wait to fire a new request after a previous one succeeding.
constexpr base::TimeDelta kNextRequestDelayAfterSuccess = base::Days(1);
// Default sunset time at 6:00 PM as an offset from 00:00.
constexpr int kDefaultSunsetTimeOffsetMinutes = 18 * 60;
// Default sunrise time at 6:00 AM as an offset from 00:00.
constexpr int kDefaultSunriseTimeOffsetMinutes = 6 * 60;
} // namespace
GeolocationController::GeolocationController(
SimpleGeolocationProvider* const geolocation_provider)
: geolocation_provider_(geolocation_provider),
backoff_delay_(kMinimumDelayAfterFailure),
timer_(std::make_unique<base::OneShotTimer>()),
scoped_session_observer_(this) {
// Subscribe to geolocation changes.
geolocation_provider_->AddObserver(this);
auto* timezone_settings = system::TimezoneSettings::GetInstance();
current_timezone_id_ = timezone_settings->GetCurrentTimezoneID();
timezone_settings->AddObserver(this);
chromeos::PowerManagerClient::Get()->AddObserver(this);
}
GeolocationController::~GeolocationController() {
system::TimezoneSettings::GetInstance()->RemoveObserver(this);
chromeos::PowerManagerClient::Get()->RemoveObserver(this);
geolocation_provider_->RemoveObserver(this);
geolocation_provider_ = nullptr;
}
// static
GeolocationController* GeolocationController::Get() {
GeolocationController* controller =
ash::Shell::Get()->geolocation_controller();
DCHECK(controller);
return controller;
}
// static
void GeolocationController::RegisterProfilePrefs(PrefRegistrySimple* registry) {
registry->RegisterDoublePref(prefs::kDeviceGeolocationCachedLatitude, 0.0);
registry->RegisterDoublePref(prefs::kDeviceGeolocationCachedLongitude, 0.0);
}
void GeolocationController::AddObserver(Observer* observer) {
const bool is_first_observer = observers_.empty();
observers_.AddObserver(observer);
if (is_first_observer &&
geolocation_provider_->IsGeolocationUsageAllowedForSystem()) {
ScheduleNextRequest(base::Seconds(0));
}
}
void GeolocationController::RemoveObserver(Observer* observer) {
observers_.RemoveObserver(observer);
if (observers_.empty()) {
timer_->Stop();
}
}
void GeolocationController::OnGeolocationPermissionChanged(bool enabled) {
// Drop all pending requests when system geolocation access is denied.
if (!enabled) {
timer_->Stop();
return;
}
// System geolocation access was granted, only resume scheduling when clients
// are present. Post an immediate geolocation request.
if (!observers_.empty()) {
ScheduleNextRequest(base::Seconds(0));
}
}
void GeolocationController::TimezoneChanged(const icu::TimeZone& timezone) {
const std::u16string timezone_id =
system::TimezoneSettings::GetTimezoneID(timezone);
if (current_timezone_id_ == timezone_id) {
return;
}
current_timezone_id_ = timezone_id;
// On timezone changes, request an immediate geoposition if the system
// geolocation allows.
if (geolocation_provider_->IsGeolocationUsageAllowedForSystem()) {
ScheduleNextRequest(base::Seconds(0));
}
}
void GeolocationController::SuspendDone(base::TimeDelta sleep_duration) {
if (sleep_duration >= kNextRequestDelayAfterSuccess &&
geolocation_provider_->IsGeolocationUsageAllowedForSystem()) {
ScheduleNextRequest(base::Seconds(0));
}
}
void GeolocationController::OnActiveUserPrefServiceChanged(
PrefService* pref_service) {
if (pref_service == active_user_pref_service_.get()) {
return;
}
active_user_pref_service_ = pref_service;
LoadCachedGeopositionIfNeeded();
}
// static
base::TimeDelta
GeolocationController::GetNextRequestDelayAfterSuccessForTesting() {
CHECK_IS_TEST();
return kNextRequestDelayAfterSuccess;
}
void GeolocationController::SetTimerForTesting(
std::unique_ptr<base::OneShotTimer> timer) {
CHECK_IS_TEST();
timer_ = std::move(timer);
}
void GeolocationController::SetClockForTesting(base::Clock* clock) {
CHECK_IS_TEST();
clock_ = clock;
}
void GeolocationController::SetLocalTimeConverterForTesting(
const LocalTimeConverter* local_time_converter) {
CHECK_IS_TEST();
local_time_converter_ = local_time_converter;
}
void GeolocationController::SetCurrentTimezoneIdForTesting(
const std::u16string& timezone_id) {
CHECK_IS_TEST();
current_timezone_id_ = timezone_id;
}
void GeolocationController::RequestImmediateGeopositionForTesting() {
CHECK_IS_TEST();
ScheduleNextRequest(base::Seconds(0));
}
void GeolocationController::OnGeoposition(const Geoposition& position,
bool server_error,
const base::TimeDelta elapsed) {
if (!geolocation_provider_->IsGeolocationUsageAllowedForSystem() ||
observers_.empty()) {
// The request might come after the user disabled the system geolocation
// access or if all observers unsubscribed, in which case we should stop
// processing the geolocation responses and stop scheduling new requests.
return;
}
if (server_error || !position.Valid() ||
elapsed > kGeolocationRequestTimeout) {
VLOG(1) << "Failed to get a valid geoposition. Trying again later.";
// Don't send invalid positions to ash.
// On failure, we schedule another request after the current backoff delay.
ScheduleNextRequest(backoff_delay_);
// If another failure occurs next, our backoff delay should double.
backoff_delay_ *= 2;
return;
}
base::expected<base::Time, SunRiseSetError> previous_sunset =
kSunRiseSetUnavailable;
base::expected<base::Time, SunRiseSetError> previous_sunrise =
kSunRiseSetUnavailable;
bool possible_change_in_timezone = !geoposition_;
if (geoposition_) {
previous_sunset = GetSunsetTime();
previous_sunrise = GetSunriseTime();
}
geoposition_ = std::make_unique<SimpleGeoposition>();
geoposition_->latitude = position.latitude;
geoposition_->longitude = position.longitude;
is_current_geoposition_from_cache_ = false;
StoreCachedGeoposition();
const base::expected<base::Time, SunRiseSetError> new_sunset =
GetSunsetTime();
const base::expected<base::Time, SunRiseSetError> new_sunrise =
GetSunriseTime();
if (previous_sunset.has_value() && previous_sunrise.has_value() &&
new_sunset.has_value() && new_sunrise.has_value()) {
// If the change in geoposition results in an hour or more in either
// sunset or sunrise times indicates of a possible timezone change.
constexpr base::TimeDelta kOneHourDuration = base::Hours(1);
possible_change_in_timezone =
(new_sunset.value() - previous_sunset.value()).magnitude() >
kOneHourDuration ||
(new_sunrise.value() - previous_sunrise.value()).magnitude() >
kOneHourDuration;
} else if (previous_sunset == kNoSunRiseSet ||
previous_sunrise == kNoSunRiseSet ||
new_sunrise == kNoSunRiseSet || new_sunset == kNoSunRiseSet) {
// Any time an area with no sunrise|set is involved, consider it a
// *possible* change. Sunrise|set timestamps for these areas are all the
// same, so there's no way to tell if it implies a timezone change.
possible_change_in_timezone = true;
}
NotifyGeopositionChange(possible_change_in_timezone);
// On success, reset the backoff delay to its minimum value, and schedule
// another request.
backoff_delay_ = kMinimumDelayAfterFailure;
ScheduleNextRequest(kNextRequestDelayAfterSuccess);
}
void GeolocationController::ScheduleNextRequest(base::TimeDelta delay) {
CHECK(geolocation_provider_->IsGeolocationUsageAllowedForSystem());
timer_->Start(FROM_HERE, delay, this,
&GeolocationController::RequestGeoposition);
}
void GeolocationController::NotifyGeopositionChange(
bool possible_change_in_timezone) {
for (Observer& observer : observers_) {
observer.OnGeopositionChanged(possible_change_in_timezone);
}
}
void GeolocationController::RequestGeoposition() {
VLOG(1) << "Requesting a new geoposition";
geolocation_provider_->RequestGeolocation(
kGeolocationRequestTimeout, /*send_wifi_access_points=*/false,
/*send_cell_towers=*/false,
base::BindOnce(&GeolocationController::OnGeoposition,
weak_ptr_factory_.GetWeakPtr()),
SimpleGeolocationProvider::ClientId::kGeolocationController);
}
base::expected<base::Time, GeolocationController::SunRiseSetError>
GeolocationController::GetSunRiseSet(bool sunrise) const {
if (!geoposition_) {
VLOG(1) << "Invalid geoposition. Using default time for "
<< (sunrise ? "sunrise." : "sunset.");
const std::optional<base::Time> default_value =
TimeOfDay(sunrise ? kDefaultSunriseTimeOffsetMinutes
: kDefaultSunsetTimeOffsetMinutes)
.SetClock(clock_)
.SetLocalTimeConverter(local_time_converter_)
.ToTimeToday();
if (default_value) {
return base::ok(*default_value);
}
return kSunRiseSetUnavailable;
}
icu::CalendarAstronomer astro(geoposition_->longitude,
geoposition_->latitude);
// For sunset and sunrise times calculations to be correct, the time of the
// icu::CalendarAstronomer object should be set to a time near local noon.
// This avoids having the computation flopping over into an adjacent day.
// See the documentation of icu::CalendarAstronomer::getSunRiseSet().
const std::optional<base::Time> midday_today =
TimeOfDay(12 * 60)
.SetClock(clock_)
.SetLocalTimeConverter(local_time_converter_)
.ToTimeToday();
if (!midday_today) {
return kSunRiseSetUnavailable;
}
astro.setTime(midday_today->InMillisecondsFSinceUnixEpoch());
const double sun_rise_set_ms = astro.getSunRiseSet(sunrise);
// If there is 24 hours of daylight or darkness, `CalendarAstronomer` returns
// a very large negative value. Any timestamp before or at the epoch
// definitely does not make sense, so assume `kNoSunRiseSet`.
if (sun_rise_set_ms > 0) {
return base::ok(
base::Time::FromMillisecondsSinceUnixEpoch(sun_rise_set_ms));
}
return kNoSunRiseSet;
}
void GeolocationController::LoadCachedGeopositionIfNeeded() {
DCHECK(active_user_pref_service_);
// Even if there is a geoposition, but it's coming from a previously cached
// value, switching users should load the currently saved values for the
// new user. This is to keep users' prefs completely separate. We only ignore
// the cached values once we have a valid non-cached geoposition from any
// user in the same session.
if (geoposition_ && !is_current_geoposition_from_cache_) {
return;
}
if (!active_user_pref_service_->HasPrefPath(
prefs::kDeviceGeolocationCachedLatitude) ||
!active_user_pref_service_->HasPrefPath(
prefs::kDeviceGeolocationCachedLongitude)) {
LOG(ERROR)
<< "No valid current geoposition and no valid cached geoposition"
" are available. Will use default times for sunset / sunrise.";
geoposition_.reset();
return;
}
geoposition_ = std::make_unique<SimpleGeoposition>();
geoposition_->latitude = active_user_pref_service_->GetDouble(
prefs::kDeviceGeolocationCachedLatitude);
geoposition_->longitude = active_user_pref_service_->GetDouble(
prefs::kDeviceGeolocationCachedLongitude);
is_current_geoposition_from_cache_ = true;
}
void GeolocationController::StoreCachedGeoposition() const {
CHECK(geoposition_);
const SessionControllerImpl* session_controller =
Shell::Get()->session_controller();
for (const auto& user_session : session_controller->GetUserSessions()) {
PrefService* pref_service = session_controller->GetUserPrefServiceForUser(
user_session->user_info.account_id);
if (!pref_service) {
continue;
}
pref_service->SetDouble(prefs::kDeviceGeolocationCachedLatitude,
geoposition_->latitude);
pref_service->SetDouble(prefs::kDeviceGeolocationCachedLongitude,
geoposition_->longitude);
}
}
} // namespace ash