blob: fd199043097b75b359c5d8e34160026f6ea87daa (
plain)
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
|
/* -*- 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/. */
#include "ContentBlockingTelemetryService.h"
#include "mozilla/ClearOnShutdown.h"
#include "mozilla/PermissionManager.h"
#include "mozilla/Services.h"
#include "mozilla/StaticPtr.h"
#include "mozilla/Telemetry.h"
#include "AntiTrackingLog.h"
#include "prtime.h"
#include "nsIObserverService.h"
#include "nsIPermission.h"
#include "nsTArray.h"
using namespace mozilla;
NS_IMPL_ISUPPORTS(ContentBlockingTelemetryService, nsIObserver)
static StaticRefPtr<ContentBlockingTelemetryService>
sContentBlockingTelemetryService;
/* static */
already_AddRefed<ContentBlockingTelemetryService>
ContentBlockingTelemetryService::GetSingleton() {
if (!sContentBlockingTelemetryService) {
sContentBlockingTelemetryService = new ContentBlockingTelemetryService();
ClearOnShutdown(&sContentBlockingTelemetryService);
}
RefPtr<ContentBlockingTelemetryService> service =
sContentBlockingTelemetryService;
return service.forget();
}
NS_IMETHODIMP
ContentBlockingTelemetryService::Observe(nsISupports* aSubject,
const char* aTopic,
const char16_t* aData) {
if (strcmp(aTopic, "idle-daily") == 0) {
ReportStoragePermissionExpire();
return NS_OK;
}
return NS_OK;
}
void ContentBlockingTelemetryService::ReportStoragePermissionExpire() {
MOZ_ASSERT(XRE_IsParentProcess());
LOG(("Start to report storage permission expire."));
PermissionManager* permManager = PermissionManager::GetInstance();
if (NS_WARN_IF(!permManager)) {
LOG(("Permission manager is null, bailing out early"));
return;
}
nsTArray<RefPtr<nsIPermission>> permissions;
nsresult rv =
permManager->GetAllWithTypePrefix("3rdPartyStorage"_ns, permissions);
if (NS_WARN_IF(NS_FAILED(rv))) {
LOG(("Fail to get all storage access permissions."));
return;
}
nsTArray<uint32_t> records;
for (const auto& permission : permissions) {
if (!permission) {
LOG(("Couldn't get the permission for unknown reasons"));
continue;
}
uint32_t expireType;
rv = permission->GetExpireType(&expireType);
if (NS_WARN_IF(NS_FAILED(rv))) {
LOG(("Couldn't get the expire type."));
continue;
}
// We only care about permissions that have a EXPIRE_TIME as the expire
// type.
if (expireType != nsIPermissionManager::EXPIRE_TIME) {
continue;
}
// Collect how much longer the storage permission will be valid for, in
// days.
int64_t expirationTime = 0;
rv = permission->GetExpireTime(&expirationTime);
if (NS_WARN_IF(NS_FAILED(rv))) {
LOG(("Couldn't get the expire time."));
continue;
}
expirationTime -= (PR_Now() / PR_USEC_PER_MSEC);
// Skip expired permissions.
if (expirationTime <= 0) {
continue;
}
int64_t expireDays = expirationTime / 1000 / 60 / 60 / 24;
records.AppendElement(expireDays);
}
if (!records.IsEmpty()) {
Telemetry::Accumulate(Telemetry::STORAGE_ACCESS_REMAINING_DAYS, records);
}
}
|