dfu.js
23 KB
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
var dfu = {};
(function() {
'use strict';
dfu.DETACH = 0x00;
dfu.DNLOAD = 0x01;
dfu.UPLOAD = 0x02;
dfu.GETSTATUS = 0x03;
dfu.CLRSTATUS = 0x04;
dfu.GETSTATE = 0x05;
dfu.ABORT = 6;
dfu.appIDLE = 0;
dfu.appDETACH = 1;
dfu.dfuIDLE = 2;
dfu.dfuDNLOAD_SYNC = 3;
dfu.dfuDNBUSY = 4;
dfu.dfuDNLOAD_IDLE = 5;
dfu.dfuMANIFEST_SYNC = 6;
dfu.dfuMANIFEST = 7;
dfu.dfuMANIFEST_WAIT_RESET = 8;
dfu.dfuUPLOAD_IDLE = 9;
dfu.dfuERROR = 10;
dfu.STATUS_OK = 0x0;
dfu.Device = function(device, settings) {
this.device_ = device;
this.settings = settings;
this.intfNumber = settings["interface"].interfaceNumber;
};
dfu.findDeviceDfuInterfaces = function(device) {
let interfaces = [];
for (let conf of device.configurations) {
for (let intf of conf.interfaces) {
for (let alt of intf.alternates) {
if (alt.interfaceClass == 0xFE &&
alt.interfaceSubclass == 0x01 &&
(alt.interfaceProtocol == 0x01 || alt.interfaceProtocol == 0x02)) {
let settings = {
"configuration": conf,
"interface": intf,
"alternate": alt,
"name": alt.interfaceName
};
interfaces.push(settings);
}
}
}
}
return interfaces;
}
dfu.findAllDfuInterfaces = function() {
return navigator.usb.getDevices().then(
devices => {
let matches = [];
for (let device of devices) {
let interfaces = dfu.findDeviceDfuInterfaces(device);
for (let interface_ of interfaces) {
matches.push(new dfu.Device(device, interface_))
}
}
return matches;
}
)
};
dfu.Device.prototype.logDebug = function(msg) {
};
dfu.Device.prototype.logInfo = function(msg) {
console.log(msg);
};
dfu.Device.prototype.logWarning = function(msg) {
console.log(msg);
};
dfu.Device.prototype.logError = function(msg) {
console.log(msg);
};
dfu.Device.prototype.logProgress = function(done, total) {
if (typeof total === 'undefined') {
console.log(done)
} else {
console.log(done + '/' + total);
}
};
dfu.Device.prototype.open = async function() {
await this.device_.open();
const confValue = this.settings.configuration.configurationValue;
if (this.device_.configuration === null ||
this.device_.configuration.configurationValue != confValue) {
await this.device_.selectConfiguration(confValue);
}
const intfNumber = this.settings["interface"].interfaceNumber;
if (!this.device_.configuration.interfaces[intfNumber].claimed) {
await this.device_.claimInterface(intfNumber);
}
const altSetting = this.settings.alternate.alternateSetting;
let intf = this.device_.configuration.interfaces[intfNumber];
if (intf.alternate === null ||
intf.alternate.alternateSetting != altSetting) {
await this.device_.selectAlternateInterface(intfNumber, altSetting);
}
}
dfu.Device.prototype.close = async function() {
try {
await this.device_.close();
} catch (error) {
console.log(error);
}
};
dfu.Device.prototype.readDeviceDescriptor = function() {
const GET_DESCRIPTOR = 0x06;
const DT_DEVICE = 0x01;
const wValue = (DT_DEVICE << 8);
return this.device_.controlTransferIn({
"requestType": "standard",
"recipient": "device",
"request": GET_DESCRIPTOR,
"value": wValue,
"index": 0
}, 18).then(
result => {
if (result.status == "ok") {
return Promise.resolve(result.data);
} else {
return Promise.reject(result.status);
}
}
);
};
dfu.Device.prototype.readStringDescriptor = async function(index, langID) {
if (typeof langID === 'undefined') {
langID = 0;
}
const GET_DESCRIPTOR = 0x06;
const DT_STRING = 0x03;
const wValue = (DT_STRING << 8) | index;
const request_setup = {
"requestType": "standard",
"recipient": "device",
"request": GET_DESCRIPTOR,
"value": wValue,
"index": langID
}
// Read enough for bLength
var result = await this.device_.controlTransferIn(request_setup, 1);
if (result.status == "ok") {
// Retrieve the full descriptor
const bLength = result.data.getUint8(0);
result = await this.device_.controlTransferIn(request_setup, bLength);
if (result.status == "ok") {
const len = (bLength-2) / 2;
let u16_words = [];
for (let i=0; i < len; i++) {
u16_words.push(result.data.getUint16(2+i*2, true));
}
if (langID == 0) {
// Return the langID array
return u16_words;
} else {
// Decode from UCS-2 into a string
return String.fromCharCode.apply(String, u16_words);
}
}
}
throw `Failed to read string descriptor ${index}: ${result.status}`;
};
dfu.Device.prototype.readInterfaceNames = async function() {
const DT_INTERFACE = 4;
let configs = {};
let allStringIndices = new Set();
for (let configIndex=0; configIndex < this.device_.configurations.length; configIndex++) {
const rawConfig = await this.readConfigurationDescriptor(configIndex);
let configDesc = dfu.parseConfigurationDescriptor(rawConfig);
let configValue = configDesc.bConfigurationValue;
configs[configValue] = {};
// Retrieve string indices for interface names
for (let desc of configDesc.descriptors) {
if (desc.bDescriptorType == DT_INTERFACE) {
if (!(desc.bInterfaceNumber in configs[configValue])) {
configs[configValue][desc.bInterfaceNumber] = {};
}
configs[configValue][desc.bInterfaceNumber][desc.bAlternateSetting] = desc.iInterface;
if (desc.iInterface > 0) {
allStringIndices.add(desc.iInterface);
}
}
}
}
let strings = {};
// Retrieve interface name strings
for (let index of allStringIndices) {
try {
strings[index] = await this.readStringDescriptor(index, 0x0409);
} catch (error) {
console.log(error);
strings[index] = null;
}
}
for (let configValue in configs) {
for (let intfNumber in configs[configValue]) {
for (let alt in configs[configValue][intfNumber]) {
const iIndex = configs[configValue][intfNumber][alt];
configs[configValue][intfNumber][alt] = strings[iIndex];
}
}
}
return configs;
};
dfu.parseDeviceDescriptor = function(data) {
return {
bLength: data.getUint8(0),
bDescriptorType: data.getUint8(1),
bcdUSB: data.getUint16(2, true),
bDeviceClass: data.getUint8(4),
bDeviceSubClass: data.getUint8(5),
bDeviceProtocol: data.getUint8(6),
bMaxPacketSize: data.getUint8(7),
idVendor: data.getUint16(8, true),
idProduct: data.getUint16(10, true),
bcdDevice: data.getUint16(12, true),
iManufacturer: data.getUint8(14),
iProduct: data.getUint8(15),
iSerialNumber: data.getUint8(16),
bNumConfigurations: data.getUint8(17),
};
};
dfu.parseConfigurationDescriptor = function(data) {
let descriptorData = new DataView(data.buffer.slice(9));
let descriptors = dfu.parseSubDescriptors(descriptorData);
return {
bLength: data.getUint8(0),
bDescriptorType: data.getUint8(1),
wTotalLength: data.getUint16(2, true),
bNumInterfaces: data.getUint8(4),
bConfigurationValue:data.getUint8(5),
iConfiguration: data.getUint8(6),
bmAttributes: data.getUint8(7),
bMaxPower: data.getUint8(8),
descriptors: descriptors
};
};
dfu.parseInterfaceDescriptor = function(data) {
return {
bLength: data.getUint8(0),
bDescriptorType: data.getUint8(1),
bInterfaceNumber: data.getUint8(2),
bAlternateSetting: data.getUint8(3),
bNumEndpoints: data.getUint8(4),
bInterfaceClass: data.getUint8(5),
bInterfaceSubClass: data.getUint8(6),
bInterfaceProtocol: data.getUint8(7),
iInterface: data.getUint8(8),
descriptors: []
};
};
dfu.parseFunctionalDescriptor = function(data) {
return {
bLength: data.getUint8(0),
bDescriptorType: data.getUint8(1),
bmAttributes: data.getUint8(2),
wDetachTimeOut: data.getUint16(3, true),
wTransferSize: data.getUint16(5, true),
bcdDFUVersion: data.getUint16(7, true)
};
};
dfu.parseSubDescriptors = function(descriptorData) {
const DT_INTERFACE = 4;
const DT_ENDPOINT = 5;
const DT_DFU_FUNCTIONAL = 0x21;
const USB_CLASS_APP_SPECIFIC = 0xFE;
const USB_SUBCLASS_DFU = 0x01;
let remainingData = descriptorData;
let descriptors = [];
let currIntf;
let inDfuIntf = false;
while (remainingData.byteLength > 2) {
let bLength = remainingData.getUint8(0);
let bDescriptorType = remainingData.getUint8(1);
let descData = new DataView(remainingData.buffer.slice(0, bLength));
if (bDescriptorType == DT_INTERFACE) {
currIntf = dfu.parseInterfaceDescriptor(descData);
if (currIntf.bInterfaceClass == USB_CLASS_APP_SPECIFIC &&
currIntf.bInterfaceSubClass == USB_SUBCLASS_DFU) {
inDfuIntf = true;
} else {
inDfuIntf = false;
}
descriptors.push(currIntf);
} else if (inDfuIntf && bDescriptorType == DT_DFU_FUNCTIONAL) {
let funcDesc = dfu.parseFunctionalDescriptor(descData)
descriptors.push(funcDesc);
currIntf.descriptors.push(funcDesc);
} else {
let desc = {
bLength: bLength,
bDescriptorType: bDescriptorType,
data: descData
};
descriptors.push(desc);
if (currIntf) {
currIntf.descriptors.push(desc);
}
}
remainingData = new DataView(remainingData.buffer.slice(bLength));
}
return descriptors;
};
dfu.Device.prototype.readConfigurationDescriptor = function(index) {
const GET_DESCRIPTOR = 0x06;
const DT_CONFIGURATION = 0x02;
const wValue = ((DT_CONFIGURATION << 8) | index);
return this.device_.controlTransferIn({
"requestType": "standard",
"recipient": "device",
"request": GET_DESCRIPTOR,
"value": wValue,
"index": 0
}, 4).then(
result => {
if (result.status == "ok") {
// Read out length of the configuration descriptor
let wLength = result.data.getUint16(2, true);
return this.device_.controlTransferIn({
"requestType": "standard",
"recipient": "device",
"request": GET_DESCRIPTOR,
"value": wValue,
"index": 0
}, wLength);
} else {
return Promise.reject(result.status);
}
}
).then(
result => {
if (result.status == "ok") {
return Promise.resolve(result.data);
} else {
return Promise.reject(result.status);
}
}
);
};
dfu.Device.prototype.requestOut = function(bRequest, data, wValue=0) {
return this.device_.controlTransferOut({
"requestType": "class",
"recipient": "interface",
"request": bRequest,
"value": wValue,
"index": this.intfNumber
}, data).then(
result => {
if (result.status == "ok") {
return Promise.resolve(result.bytesWritten);
} else {
return Promise.reject(result.status);
}
},
error => {
return Promise.reject("ControlTransferOut failed: " + error);
}
);
};
dfu.Device.prototype.requestIn = function(bRequest, wLength, wValue=0) {
return this.device_.controlTransferIn({
"requestType": "class",
"recipient": "interface",
"request": bRequest,
"value": wValue,
"index": this.intfNumber
}, wLength).then(
result => {
if (result.status == "ok") {
return Promise.resolve(result.data);
} else {
return Promise.reject(result.status);
}
},
error => {
return Promise.reject("ControlTransferIn failed: " + error);
}
);
};
dfu.Device.prototype.detach = function() {
return this.requestOut(dfu.DETACH, undefined, 1000);
}
dfu.Device.prototype.waitDisconnected = async function(timeout) {
let device = this;
let usbDevice = this.device_;
return new Promise(function(resolve, reject) {
let timeoutID;
if (timeout > 0) {
function onTimeout() {
navigator.usb.removeEventListener("disconnect", onDisconnect);
if (device.disconnected !== true) {
reject("Disconnect timeout expired");
}
}
timeoutID = setTimeout(reject, timeout);
}
function onDisconnect(event) {
if (event.device === usbDevice) {
if (timeout > 0) {
clearTimeout(timeoutID);
}
device.disconnected = true;
navigator.usb.removeEventListener("disconnect", onDisconnect);
event.stopPropagation();
resolve(device);
}
}
navigator.usb.addEventListener("disconnect", onDisconnect);
});
};
dfu.Device.prototype.download = function(data, blockNum) {
return this.requestOut(dfu.DNLOAD, data, blockNum);
};
dfu.Device.prototype.dnload = dfu.Device.prototype.download;
dfu.Device.prototype.upload = function(length, blockNum) {
return this.requestIn(dfu.UPLOAD, length, blockNum)
};
dfu.Device.prototype.clearStatus = function() {
return this.requestOut(dfu.CLRSTATUS);
};
dfu.Device.prototype.clrStatus = dfu.Device.prototype.clearStatus;
dfu.Device.prototype.getStatus = function() {
return this.requestIn(dfu.GETSTATUS, 6).then(
data =>
Promise.resolve({
"status": data.getUint8(0),
"pollTimeout": data.getUint32(1, true) & 0xFFFFFF,
"state": data.getUint8(4)
}),
error =>
Promise.reject("DFU GETSTATUS failed: " + error)
);
};
dfu.Device.prototype.getState = function() {
return this.requestIn(dfu.GETSTATE, 1).then(
data => Promise.resolve(data.getUint8(0)),
error => Promise.reject("DFU GETSTATE failed: " + error)
);
};
dfu.Device.prototype.abort = function() {
return this.requestOut(dfu.ABORT);
};
dfu.Device.prototype.abortToIdle = async function() {
await this.abort();
let state = await this.getState();
if (state == dfu.dfuERROR) {
await this.clearStatus();
state = await this.getState();
}
if (state != dfu.dfuIDLE) {
throw "Failed to return to idle state after abort: state " + state.state;
}
};
dfu.Device.prototype.do_upload = async function(xfer_size, max_size=Infinity, first_block=0) {
let transaction = first_block;
let blocks = [];
let bytes_read = 0;
this.logInfo("Copying data from DFU device to browser");
// Initialize progress to 0
this.logProgress(0);
let result;
let bytes_to_read;
do {
bytes_to_read = Math.min(xfer_size, max_size - bytes_read);
result = await this.upload(bytes_to_read, transaction++);
this.logDebug("Read " + result.byteLength + " bytes");
if (result.byteLength > 0) {
blocks.push(result);
bytes_read += result.byteLength;
}
if (Number.isFinite(max_size)) {
this.logProgress(bytes_read, max_size);
} else {
this.logProgress(bytes_read);
}
} while ((bytes_read < max_size) && (result.byteLength == bytes_to_read));
if (bytes_read == max_size) {
await this.abortToIdle();
}
this.logInfo(`Read ${bytes_read} bytes`);
return new Blob(blocks, { type: "application/octet-stream" });
};
dfu.Device.prototype.poll_until = async function(state_predicate) {
let dfu_status = await this.getStatus();
let device = this;
function async_sleep(duration_ms) {
return new Promise(function(resolve, reject) {
device.logDebug("Sleeping for " + duration_ms + "ms");
setTimeout(resolve, duration_ms);
});
}
while (!state_predicate(dfu_status.state) && dfu_status.state != dfu.dfuERROR) {
await async_sleep(dfu_status.pollTimeout);
dfu_status = await this.getStatus();
}
return dfu_status;
};
dfu.Device.prototype.poll_until_idle = function(idle_state) {
return this.poll_until(state => (state == idle_state));
};
dfu.Device.prototype.do_download = async function(xfer_size, data, manifestationTolerant) {
let bytes_sent = 0;
let expected_size = data.byteLength;
let transaction = 0;
this.logInfo("Copying data from browser to DFU device");
// Initialize progress to 0
this.logProgress(bytes_sent, expected_size);
while (bytes_sent < expected_size) {
const bytes_left = expected_size - bytes_sent;
const chunk_size = Math.min(bytes_left, xfer_size);
let bytes_written = 0;
let dfu_status;
try {
bytes_written = await this.download(data.slice(bytes_sent, bytes_sent+chunk_size), transaction++);
this.logDebug("Sent " + bytes_written + " bytes");
dfu_status = await this.poll_until_idle(dfu.dfuDNLOAD_IDLE);
} catch (error) {
throw "Error during DFU download: " + error;
}
if (dfu_status.status != dfu.STATUS_OK) {
throw `DFU DOWNLOAD failed state=${dfu_status.state}, status=${dfu_status.status}`;
}
this.logDebug("Wrote " + bytes_written + " bytes");
bytes_sent += bytes_written;
this.logProgress(bytes_sent, expected_size);
}
this.logDebug("Sending empty block");
try {
await this.download(new ArrayBuffer([]), transaction++);
} catch (error) {
throw "Error during final DFU download: " + error;
}
this.logInfo("Wrote " + bytes_sent + " bytes");
this.logInfo("Manifesting new firmware");
if (manifestationTolerant) {
// Transition to MANIFEST_SYNC state
let dfu_status;
try {
// Wait until it returns to idle.
// If it's not really manifestation tolerant, it might transition to MANIFEST_WAIT_RESET
dfu_status = await this.poll_until(state => (state == dfu.dfuIDLE || state == dfu.dfuMANIFEST_WAIT_RESET));
if (dfu_status.state == dfu.dfuMANIFEST_WAIT_RESET) {
this.logDebug("Device transitioned to MANIFEST_WAIT_RESET even though it is manifestation tolerant");
}
if (dfu_status.status != dfu.STATUS_OK) {
throw `DFU MANIFEST failed state=${dfu_status.state}, status=${dfu_status.status}`;
}
} catch (error) {
if (error.endsWith("ControlTransferIn failed: NotFoundError: Device unavailable.") ||
error.endsWith("ControlTransferIn failed: NotFoundError: The device was disconnected.")) {
this.logWarning("Unable to poll final manifestation status");
} else {
throw "Error during DFU manifest: " + error;
}
}
} else {
// Try polling once to initiate manifestation
try {
let final_status = await this.getStatus();
this.logDebug(`Final DFU status: state=${final_status.state}, status=${final_status.status}`);
} catch (error) {
this.logDebug("Manifest GET_STATUS poll error: " + error);
}
}
// Reset to exit MANIFEST_WAIT_RESET
try {
await this.device_.reset();
} catch (error) {
if (error == "NetworkError: Unable to reset the device." ||
error == "NotFoundError: Device unavailable." ||
error == "NotFoundError: The device was disconnected.") {
this.logDebug("Ignored reset error");
} else {
throw "Error during reset for manifestation: " + error;
}
}
return;
};
})();