forked from LedgerHQ/ledger-live-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hw.ts
430 lines (396 loc) · 12.7 KB
/
hw.ts
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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
import Transport from "@ledgerhq/hw-transport";
import { getDeviceModel, identifyTargetId } from "@ledgerhq/devices";
import { UnexpectedBootloader } from "@ledgerhq/errors";
import { concat, of, EMPTY, from, Observable, throwError, defer } from "rxjs";
import { mergeMap, map } from "rxjs/operators";
import type { Exec, AppOp, ListAppsEvent, ListAppsResult } from "./types";
import type { App, DeviceInfo } from "../types/manager";
import manager, { getProviderId } from "../manager";
import installApp from "../hw/installApp";
import uninstallApp from "../hw/uninstallApp";
import { log } from "@ledgerhq/logs";
import getDeviceInfo from "../hw/getDeviceInfo";
import {
listCryptoCurrencies,
currenciesByMarketcap,
findCryptoCurrencyById,
} from "../currencies";
import ManagerAPI from "../api/Manager";
import { getEnv } from "../env";
import hwListApps from "../hw/listApps";
import { polyfillApp, polyfillApplication } from "./polyfill";
import {
reducer,
isOutOfMemoryState,
initState,
predictOptimisticState,
} from "../apps/logic";
import { runAllWithProgress } from "../apps/runner";
import type { ConnectAppEvent } from "../hw/connectApp";
export const execWithTransport =
(transport: Transport): Exec =>
(appOp: AppOp, targetId: string | number, app: App) => {
const fn = appOp.type === "install" ? installApp : uninstallApp;
return fn(transport, targetId, app);
};
const appsThatKeepChangingHashes = ["Fido U2F"];
export type StreamAppInstallEvent =
| {
type: "device-permission-requested";
wording: string;
}
| {
type: "listing-apps";
}
| {
type: "device-permission-granted";
}
| {
type: "app-not-installed";
appName: string;
appNames: string[];
}
| {
type: "stream-install";
progress: number;
};
// global percentage
export const streamAppInstall = ({
transport,
appNames,
onSuccessObs,
}: {
transport: Transport;
appNames: string[];
onSuccessObs?: () => Observable<any>;
}): Observable<StreamAppInstallEvent | ConnectAppEvent> =>
concat(
of({
type: "listing-apps",
}),
from(getDeviceInfo(transport)).pipe(
mergeMap((deviceInfo) => listApps(transport, deviceInfo)),
mergeMap((e) => {
if (
e.type === "device-permission-granted" ||
e.type === "device-permission-requested"
) {
// pass in events we need
return of(e);
}
if (e.type === "result") {
// stream install with the result of list apps
const state = appNames.reduce(
(state, name) =>
reducer(state, {
type: "install",
name,
}),
initState(e.result)
);
if (!state.installQueue.length) {
return defer(onSuccessObs || (() => EMPTY));
}
if (isOutOfMemoryState(predictOptimisticState(state))) {
// In this case we can't install either by lack of storage, or permissions,
// we fallback to the error case listing the missing apps.
const missingAppNames: string[] = state.installQueue;
return of({
type: "app-not-installed",
appNames: missingAppNames,
appName: missingAppNames[0] || appNames[0], // TODO remove when LLD/LLM integrate appNames
});
}
const exec = execWithTransport(transport);
return concat(
runAllWithProgress(state, exec).pipe(
map((progress) => ({
type: "stream-install",
progress,
}))
),
defer(onSuccessObs || (() => EMPTY))
);
}
return EMPTY;
})
)
);
export const listApps = (
transport: Transport,
deviceInfo: DeviceInfo
): Observable<ListAppsEvent> => {
if (deviceInfo.isOSU || deviceInfo.isBootloader) {
return throwError(new UnexpectedBootloader(""));
}
const deviceModelId =
(transport.deviceModel && transport.deviceModel.id) ||
(deviceInfo && identifyTargetId(deviceInfo.targetId as number))?.id ||
getEnv("DEVICE_PROXY_MODEL");
return new Observable((o) => {
let sub;
async function main() {
const installedP: Promise<[{ name: string; hash: string }[], boolean]> =
new Promise<{ name: string; hash: string }[]>((resolve, reject) => {
sub = ManagerAPI.listInstalledApps(transport, {
targetId: deviceInfo.targetId,
perso: "perso_11",
}).subscribe({
next: (e) => {
if (e.type === "result") {
resolve(e.payload);
} else if (
e.type === "device-permission-granted" ||
e.type === "device-permission-requested"
) {
o.next(e);
}
},
error: reject,
});
})
.then((apps) =>
apps.map(({ name, hash }) => ({
name,
hash,
blocks: 0,
}))
)
.catch((e) => {
log("hw", "failed to HSM list apps " + String(e) + "\n" + e.stack);
if (getEnv("EXPERIMENTAL_FALLBACK_APDU_LISTAPPS")) {
return hwListApps(transport)
.then((apps) =>
apps.map(({ name, hash, blocks }) => ({
name,
hash,
blocks,
}))
)
.catch((e) => {
log(
"hw",
"failed to device list apps " + String(e) + "\n" + e.stack
);
throw e;
});
} else {
throw e;
}
})
.then((apps) => [apps, true]);
const provider = getProviderId(deviceInfo);
const deviceVersionP = ManagerAPI.getDeviceVersion(
deviceInfo.targetId,
provider
);
const firmwareDataP = deviceVersionP.then((deviceVersion) =>
ManagerAPI.getCurrentFirmware({
deviceId: deviceVersion.id,
version: deviceInfo.version,
provider,
})
);
const latestFirmwareForDeviceP =
manager.getLatestFirmwareForDevice(deviceInfo);
const firmwareP = Promise.all([
firmwareDataP,
latestFirmwareForDeviceP,
]).then(([firmwareData, updateAvailable]) => ({
...firmwareData,
updateAvailable,
}));
const applicationsByDeviceP = Promise.all([
deviceVersionP,
firmwareDataP,
]).then(([deviceVersion, firmwareData]) =>
ManagerAPI.applicationsByDevice({
provider,
current_se_firmware_final_version: firmwareData.id,
device_version: deviceVersion.id,
})
);
const [
[partialInstalledList, installedAvailable],
applicationsList,
compatibleAppVersionsList,
firmware,
sortedCryptoCurrencies,
] = await Promise.all([
installedP,
ManagerAPI.listApps().then((apps) => apps.map(polyfillApplication)),
applicationsByDeviceP,
firmwareP,
currenciesByMarketcap(
listCryptoCurrencies(getEnv("MANAGER_DEV_MODE"), true)
),
]);
// unfortunately we sometimes (nano s 1.3.1) miss app.name (it's set as "" from list apps)
// the fallback strategy is to look it up in applications list
// for performance we might eventually only load applications in case one name is missing
let installedList: {
name: string;
hash: string;
blocks?: number;
}[] = partialInstalledList;
const shouldCompleteInstalledList = partialInstalledList.some(
(a) => !a.name
);
if (shouldCompleteInstalledList) {
installedList = installedList.map((a) => {
if (a.name) return a; // already present
const application = applicationsList.find((e) =>
e.application_versions.some((v) => v.hash === a.hash)
);
if (!application) return a; // still no luck with our api
return { ...a, name: application.name };
});
}
const apps = compatibleAppVersionsList
.map((version) => {
const application = applicationsList.find(
(e) => e.id === version.app
);
if (!application) return;
const isDevTools = application.category === 2;
let currencyId = application.currencyId;
const crypto = currencyId && findCryptoCurrencyById(currencyId);
if (!crypto) {
currencyId = undefined;
}
const indexOfMarketCap = crypto
? sortedCryptoCurrencies.indexOf(crypto)
: -1;
const compatibleWallets: { name: string; url: string }[] = [];
if (application.compatibleWalletsJSON) {
try {
const parsed = JSON.parse(application.compatibleWalletsJSON);
if (parsed && Array.isArray(parsed)) {
parsed.forEach((w) => {
if (w && typeof w === "object" && w.name) {
compatibleWallets.push({
name: w.name,
url: w.url,
});
}
});
}
} catch (e) {
console.error(
"invalid compatibleWalletsJSON for " + version.name,
e
);
}
}
const app: App = polyfillApp({
id: version.id,
name: version.name,
displayName: version.display_name,
version: version.version,
currencyId,
description: version.description,
dateModified: version.date_last_modified,
icon: version.icon,
authorName: application.authorName,
supportURL: application.supportURL,
contactURL: application.contactURL,
sourceURL: application.sourceURL,
compatibleWallets,
hash: version.hash,
perso: version.perso,
firmware: version.firmware,
firmware_key: version.firmware_key,
delete: version.delete,
delete_key: version.delete_key,
dependencies: [],
bytes: version.bytes,
warning: version.warning,
indexOfMarketCap,
isDevTools,
});
return app;
})
.filter(Boolean);
log(
"list-apps",
`${installedList.length} apps installed. ${applicationsList.length} apps store total. ${apps.length} available.`,
{
installedList,
}
);
const deviceModel = getDeviceModel(deviceModelId);
const appByName = {};
apps.forEach((app) => {
if (app) appByName[app.name] = app;
});
// Infer more data on the app installed
const installed = installedList.map(({ name, hash, blocks }) => {
const app = applicationsList.find((a) => a.name === name);
const installedAppVersion =
app && hash
? app.application_versions.find((v) => v.hash === hash)
: null;
const availableAppVersion = appByName[name];
const blocksSize =
blocks ||
Math.ceil(
((
installedAppVersion ||
availableAppVersion || {
bytes: 0,
}
).bytes || 0) / deviceModel.getBlockSize(deviceInfo.version)
);
const updated =
appsThatKeepChangingHashes.includes(name) ||
(availableAppVersion ? availableAppVersion.hash === hash : false);
const version = installedAppVersion ? installedAppVersion.version : "";
const availableVersion = availableAppVersion
? availableAppVersion.version
: "";
return {
name,
updated,
blocks: blocksSize,
hash,
version,
availableVersion,
};
});
const appsListNames = (
getEnv("MANAGER_DEV_MODE")
? apps
: apps.filter(
(a) =>
!a?.isDevTools || installed.some(({ name }) => name === a.name)
)
)
.map((a) => a?.name ?? "")
.filter(Boolean);
const result: ListAppsResult = {
appByName,
appsListNames,
installed,
installedAvailable,
deviceInfo,
deviceModelId,
firmware,
};
o.next({
type: "result",
result,
});
}
main().then(
() => {
o.complete();
},
(e) => {
o.error(e);
}
);
return () => {
if (sub) sub.unsubscribe();
};
});
};