-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathcetus.js
1084 lines (838 loc) · 33.6 KB
/
cetus.js
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
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
Copyright 2020 Jack Baker
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
const LOG_LEVEL_NONE = 0;
const LOG_LEVEL_DEBUG = 1;
const LOG_LEVEL_TRACE = 2;
const MAX_SEARCH_RESULTS = 1000;
class CetusInstanceContainer {
constructor() {
if (typeof cetusOptions === "object") {
this.logLevel = cetusOptions.logLevel;
}
this._instances = [];
this.speedhack = new SpeedHack(1);
}
reserveIdentifier() {
return this._instances.push(null) - 1;
}
newInstance(identifier, options) {
if (this._instances[identifier] !== null) {
throw new Error("Attempted to use an invalid identifier");
}
const newInstance = new Cetus(identifier, options);
this._instances[identifier] = newInstance;
}
_validateIdentifier(identifier) {
if (!(this._instances[identifier] instanceof Cetus)) {
throw new Error("Requested invalid identifier " + identifier + " in CetusInstanceContainer");
}
}
get(identifier) {
this._validateIdentifier(identifier);
return this._instances[identifier];
}
close(identifier) {
this._validateIdentifier(identifier);
this._instances[identifier].sendExtensionMessage("instanceQuit");
}
closeAll() {
for (let i = 0; i < this._instances.length; i++) {
if (this._instances[i] === null) {
continue;
}
this.close(i);
}
}
}
class Cetus {
constructor(identifier, env) {
this.identifier = identifier;
this.watchpointExports = env.watchpointExports;
if (!(env.memory instanceof WebAssembly.Memory)) {
colorError("Cetus received an invalid memory object! This is a bug!");
}
this._memObject = env.memory;
this._buffer = env.buffer;
this._symbols = env.symbols;
this._searchMemory;
this._searchMemoryType;
this._searchMemoryTypeStr;
this._searchMemoryElementSize;
this._functions = null;
this._searchSubset = {};
this._savedMemory = null;
if (cetusInstances.logLevel >= LOG_LEVEL_DEBUG) {
colorLog("constructor: Cetus initialized");
}
// Inform the extension that we have initialized
this.sendExtensionMessage("init", {
url: (window.location.host + window.location.pathname),
symbols: this._symbols
});
}
sendExtensionMessage(type, msg) {
const msgBody = {
id: this.identifier,
type: type,
body: msg
};
if (cetusInstances !== null && cetusInstances.logLevel >= LOG_LEVEL_TRACE) {
colorLog("Sending message to extension: " + bigintJsonStringify(msgBody));
}
const evt = new CustomEvent("cetusMsgIn", { detail: bigintJsonStringify(msgBody) } );
window.dispatchEvent(evt);
};
createSearchMemory(memTypeStr, memAligned = true) {
if (memAligned) {
this._searchMemory = this.alignedMemory(memTypeStr);
}
else {
this._searchMemory = this.unalignedMemory();
}
this._searchMemoryTypeStr = memTypeStr;
this._searchMemoryType = getMemoryType(memTypeStr);
this._searchMemoryElementSize = getElementSize(memTypeStr);
}
// Accessing aligned memory is faster because we can just treat the whole
// memory object as the relevant typed array (Like Uint32Array)
// This is not as thorough, however, because we will miss matching values
// that are not stored at naturally-aligned addresses
alignedMemory(memTypeStr) {
const memType = getMemoryType(memTypeStr);
// We return a new object each time because the WebAssembly.Memory object
// will detach if it is resized
return new memType(this._memObject.buffer);
}
// When we need to access unaligned memory addresses, we treat memory as a
// Uint8Array so that we can read at any "real" address
unalignedMemory() {
return new Uint8Array(this._memObject.buffer);
}
getMemorySize() {
return this.unalignedMemory().length;
}
queryMemory(address, memTypeStr) {
if (typeof address === "string") {
address = parseInt(address);
}
const memory = this.unalignedMemory();
const memType = getMemoryType(memTypeStr);
const memSize = getElementSize(memTypeStr);
const tempBuf = new Uint8Array(memSize);
for (let i = 0; i < tempBuf.length; i++) {
tempBuf[i] = memory[address + i];
}
return new memType(tempBuf.buffer)[0];
}
queryMemoryChunk(address, length) {
if (typeof address === "string") {
address = parseInt(address);
}
const memory = this.unalignedMemory();
const memType = Uint8Array;
const memSize = 1;
const tempBuf = new Uint8Array(length);
for (let i = 0; i < length; i++) {
tempBuf[i] = memory[address + i];
}
return new Uint8Array(tempBuf.buffer);
}
// These two functions should typically only be used by the internal search
// They use pre-loaded values to speed up the process of doing repetitive searches
_queryMemoryUnalignedQuick(address) {
const tempBuf = new Uint8Array(this._searchMemoryElementSize);
address = parseInt(address);
for (let i = 0; i < this._searchMemoryElementSize; i++) {
tempBuf[i] = this._searchMemory[address + i];
}
return new this._searchMemoryType(tempBuf.buffer)[0];
}
_queryMemoryAlignedQuick(address) {
const memIndex = realAddressToIndex(address, this._searchMemoryTypeStr);
return this._searchMemory[memIndex];
}
restartSearch() {
this._searchSubset = {};
this._savedMemory = null;
if (cetusInstances.logLevel >= LOG_LEVEL_DEBUG) {
colorLog("restartSearch: Search restarted");
}
}
_compare(comparator, memType, memAligned, lowerBound, upperBound) {
const searchKeys = Object.keys(this._searchSubset);
if (searchKeys.length == 0) {
if (memAligned) {
const memSize = getElementSize(memType);
for (let i = lowerBound; i <= upperBound; i += memSize) {
const currentValue = this._queryMemoryAlignedQuick(i, memType);
if (comparator(currentValue) == true) {
this._searchSubset[i] = currentValue;
}
}
}
else {
for (let i = lowerBound; i <= upperBound; i++) {
const currentValue = this._queryMemoryUnalignedQuick(i, memType);
if (comparator(currentValue) == true) {
this._searchSubset[i] = currentValue;
}
}
}
}
else {
for (let entry in this._searchSubset) {
let currentValue;
if (memAligned) {
currentValue = this._queryMemoryAlignedQuick(entry, memType);
}
else {
currentValue = this._queryMemoryUnalignedQuick(entry, memType);
}
if (cetusInstances.logLevel >= LOG_LEVEL_TRACE) {
colorLog("_compare: Looping subset search. Entry: " + entry + " Value: " + currentValue);
}
if (entry < lowerBound || entry > upperBound || comparator(currentValue) == false) {
delete this._searchSubset[entry];
}
else {
this._searchSubset[entry] = currentValue;
}
}
}
const searchObj = {};
searchObj.count = Object.keys(this._searchSubset).length;
// If we try to send too much data to the extension, we'll probably freeze the tab. Instead, if there are too many search results we
// send the accurate number of results, but don't actually send the matches
if (searchObj.count <= MAX_SEARCH_RESULTS) {
searchObj.results = this._searchSubset;
}
else {
searchObj.results = [];
}
return searchObj;
}
// TODO Should support unaligned searching
_diffCompare(comparator, memType, lowerBoundIndex, upperBoundIndex) {
const memory = this.alignedMemory(memType);
if (Object.keys(this._searchSubset).length == 0) {
for (let i = lowerBoundIndex; i < upperBoundIndex; i++) {
if (comparator(memory[i], this._savedMemory[i]) == true) {
const realAddress = indexToRealAddress(i, memType);
this._searchSubset[realAddress] = memory[i];
}
}
}
else {
for (let entryAddr in this._searchSubset) {
const entryIndex = realAddressToIndex(entryAddr, memType);
if (entryIndex < lowerBoundIndex ||
entryIndex > upperBoundIndex ||
comparator(memory[entryIndex], this._savedMemory[entryAddr]) == false) {
delete this._searchSubset[entryAddr];
}
else {
this._searchSubset[entryAddr] = memory[entryIndex];
}
}
}
this._savedMemory = this._searchSubset;
const searchObj = {};
searchObj.count = Object.keys(this._searchSubset).length;
// If we try to send too much data to the extension, we'll probably freeze the tab. Instead, if there are too many search results we
// send the accurate number of results, but don't actually send the matches
if (searchObj.count <= MAX_SEARCH_RESULTS) {
searchObj.results = this._searchSubset;
}
else {
searchObj.results = [];
}
return searchObj;
}
search(searchComparison, searchMemType, searchMemAlign, searchParam = null, lowerBound = 0, upperBound = 0xFFFFFFFF) {
this.createSearchMemory(searchMemType, searchMemAlign);
const memSize = this.getMemorySize();
let lowerBoundAddr = parseInt(lowerBound);
let upperBoundAddr = parseInt(upperBound);
// If we are searching aligned addresses, we want to make sure our lower bound is aligned
if (searchMemAlign) {
lowerBoundAddr -= (lowerBoundAddr % getElementSize(searchMemType));
}
if (upperBoundAddr >= memSize) {
upperBoundAddr = memSize - 1;
}
const lowerBoundIndex = realAddressToIndex(lowerBoundAddr, searchMemType);
const upperBoundIndex = realAddressToIndex(upperBoundAddr, searchMemType);
let realLowerBoundIndex = lowerBoundIndex;
let realUpperBoundIndex = upperBoundIndex;
if (realLowerBoundIndex < 0) {
realLowerBoundIndex = 0;
}
let comparator;
switch (searchComparison) {
case "eq":
comparator = (searchParam !== null) ?
((memValue) => memValue == searchParam) :
((current, saved) => current == saved);
break;
case "ne":
comparator = (searchParam !== null) ?
((memValue) => memValue != searchParam) :
((current, saved) => current != saved);
break;
case "lt":
comparator = (searchParam !== null) ?
((memValue) => memValue < searchParam) :
((current, saved) => current < saved);
break;
case "lte":
comparator = (searchParam !== null) ?
((memValue) => memValue <= searchParam) :
((current, saved) => current <= saved);
break;
case "gt":
comparator = (searchParam !== null) ?
((memValue) => memValue > searchParam) :
((current, saved) => current > saved);
break;
case "gte":
comparator = (searchParam !== null) ?
((memValue) => memValue >= searchParam) :
((current, saved) => current >= saved);
break;
default:
throw new Error("Invalid search comparison " + searchComparison);
}
let searchResults = {};
// If searchParam is null or not provided, the user is attempting a differential search
// If this is the first search of a differential search, we just want to
// collect a slice of the memory object of that type.
if (searchParam === null) {
if (this._savedMemory == null) {
// TODO Should support unaligned searching
this._savedMemory = this.alignedMemory(searchMemType).slice(realLowerBoundIndex, realUpperBoundIndex + 1);
searchResults.count = this._savedMemory.length;
if (this._savedMemory.length <= MAX_SEARCH_RESULTS) {
const realResults = {};
for (let i = 0; i < this._savedMemory.length; i++) {
const realAddress = indexToRealAddress(realLowerBoundIndex + i, searchMemType);
realResults[realAddress] = this._savedMemory[i];
}
searchResults.results = realResults;
}
else {
searchResults.results = [];
}
}
else {
searchResults = this._diffCompare(comparator,
searchMemType,
realLowerBoundIndex,
realUpperBoundIndex);
}
}
else {
searchResults = this._compare(comparator,
searchMemType,
searchMemAlign,
lowerBoundAddr,
upperBoundAddr);
}
if (cetusInstances.logLevel >= LOG_LEVEL_DEBUG) {
colorLog("search: exiting search");
}
return searchResults;
}
patternSearch(searchMemType, searchParam, lowerBound, upperBound) {
const result = {};
let realLowerBound = parseInt(lowerBound);
let realUpperBound = parseInt(upperBound);
if (realLowerBound < 0) {
realLowerBound = 0;
}
const memSize = this.getMemorySize();
if (realUpperBound >= memSize) {
realUpperBound = memSize - 1;
}
let realParam;
switch (searchMemType) {
case "ascii":
realParam = new Uint8Array(searchParam.length);
for (let i = 0; i < searchParam.length; i++) {
realParam[i] = searchParam.charCodeAt(i);
}
break;
case "utf-8":
const tempBuf = new Uint16Array(searchParam.length);
for (let i = 0; i < searchParam.length; i++) {
realParam[i] = searchParam.charCodeAt(i);
}
realParam = new Uint8Array(tempBuf.buffer);
break;
case "bytes":
const split1 = [...searchParam.trim().matchAll(/\\x[0-9a-f]{2}(?![0-9a-z])/gi)];
const split2 = searchParam.trim().split(/\\x/);
if ((split1.length != (split2.length - 1)) || split1.length == 0) {
// Something is wrong in the byte sequence
console.error("Wrong byte sequence format");
return;
}
split2.shift();
realParam = new Uint8Array(split2.length);
for (let i = 0; i < searchParam.length; i++) {
realParam[i] = parseInt(split2[i], 16);
}
break;
}
const searchResults = this.bytesSequence(realParam);
result.results = {};
for (let i = 0; i < searchResults.length; i++) {
const hitAddr = searchResults[i];
result.results[hitAddr] = searchParam;
}
result.count = searchResults.length;
return result;
}
setSpeedhackMultiplier(multiplier) {
if (bigintIsNaN(multiplier)) {
return;
}
cetusInstances.speedhack.multiplier = multiplier;
}
_resolveFunctions() {
const wail = new WailParser(this._buffer);
const results = {};
wail.addCodeElementParser(null, function(funcOptions) {
const funcIndex = funcOptions.index;
results[funcIndex] = funcOptions.bytes;
return false;
});
wail.parse();
this._functions = results;
// As is, this._buffer is only used to resolve functions so it's safe to get rid
// of it once functions have been resolved
this._buffer = null;
}
queryFunction(funcIndex) {
if (this._functions === null) {
this._resolveFunctions();
}
if (!bigintIsNaN(funcIndex) && typeof this._functions[funcIndex] === "object") {
return this._functions[funcIndex];
}
}
// Cetus API function used to manually add bookmarks
addBookmark(memAddr, memType) {
if (typeof memAddr !== "number") {
throw new Error("addBookmark() expects argument 0 to be a number");
}
if (!isValidMemType(memType)) {
throw new Error("Invalid memory type in addBookmark()");
}
this.sendExtensionMessage("addBookmark", {
address: memAddr,
memType: memType
});
}
// Cetus API function for manually modifying memory
modifyMemory(memAddr, memValue, memTypeStr = "i32") {
if (typeof memAddr === "string") {
memAddr = parseInt(memAddr);
}
if (typeof memValue === "string") {
memValue = parseInt(memValue);
}
const memory = this.unalignedMemory();
const memType = getMemoryType(memTypeStr);
if (memAddr < 0 || memAddr >= memory.length) {
throw new RangeError("Address out of range in Cetus.modifyMemory()");
}
const tempBuf = new memType(1);
tempBuf[0] = memValue;
const byteBuf = new Uint8Array(tempBuf.buffer);
for (let i = 0; i < byteBuf.length; i++) {
memory[memAddr + i] = byteBuf[i];
}
}
strings(minLength = 4) {
let ascii = this.asciiStrings(minLength);
let unicode = this.unicodeStrings(minLength);
return Object.assign(ascii.results, unicode.results);
}
asciiStrings(minLength = 4) {
if (minLength < 1) {
console.error("Minimum length must be at least 1!");
return {
count: 0,
results: {}
};
}
else if (minLength < 4) {
console.warn("Using minimum length " + minLength + ". This will probably return a lot of results!");
}
const memory = this.alignedMemory("i8");
const searchResults = {};
const results = {};
let current = [];
if (cetusInstances.logLevel >= LOG_LEVEL_DEBUG) {
colorLog("asciiStrings: entering ASCII string search");
}
for (let i = 0; i < memory.length; i++) {
const thisByte = memory[i];
if (thisByte >= 0x20 && thisByte < 0x7f) {
current.push(thisByte);
continue;
}
if (current.length >= minLength) {
let thisString = "";
for (let j = 0; j < current.length; j++) {
thisString += String.fromCharCode(current[j]);
}
results[i - current.length] = thisString;
if (cetusInstances.logLevel >= LOG_LEVEL_TRACE) {
colorLog("asciiStrings: string found: " + thisString);
}
}
current = [];
}
if (cetusInstances.logLevel >= LOG_LEVEL_DEBUG) {
colorLog("asciiStrings: exiting ASCII string search");
}
searchResults.count = Object.keys(results).length;
searchResults.results = results;
return searchResults;
}
unicodeStrings(minLength = 4) {
if (minLength < 1) {
console.error("Minimum length must be at least 1!");
return {
count: 0,
results: {}
};
}
else if (minLength < 4) {
console.warn("Using minimum length " + minLength + ". This will probably return a lot of results!");
}
const searchResults = {};
const results = {};
const memory = this.alignedMemory("i16");
let current = [];
if (cetusInstances.logLevel >= LOG_LEVEL_DEBUG) {
colorLog("unicodeStrings: entering UNICODE string search");
}
for (let i = 0; i < memory.length; i++) {
const thisByte = memory[i];
if (thisByte) {
current.push(thisByte);
continue;
}
if (current.length >= minLength) {
let thisString = "";
for (let j = 0; j < current.length; j++) {
thisString += String.fromCharCode(current[j]);
}
if (thisString.length >= minLength) {
results[i - current.length] = thisString;
if (cetusInstances.logLevel >= LOG_LEVEL_TRACE) {
colorLog("unicodeStrings: string found: " + thisString);
}
}
}
current = [];
}
if (cetusInstances.logLevel >= LOG_LEVEL_DEBUG) {
colorLog("unicodeStrings: exiting UNICODE string search");
}
searchResults.count = Object.keys(results).length;
searchResults.results = results;
return searchResults;
}
bytesSequence(bytesSeq) {
if (cetusInstances.logLevel >= LOG_LEVEL_DEBUG) {
colorLog("bytesSequence: entering bytes sequence search with parameter " + bytesSeq);
}
if (bytesSeq.length < 1) {
console.error("Minimum length must be at least 1!");
return [];
}
else if (bytesSeq.length < 4) {
console.warn("Sequence length is small: " + bytesSeq.length + ". This will probably return a lot of results!");
}
const results = [];
const memory = this.alignedMemory("i8");
let match = 0;
for (let i = 0; i < memory.length; i++) {
const thisByte = memory[i];
if (thisByte == bytesSeq[match]) {
match++;
continue;
}
if (match == bytesSeq.length) {
results.push(i - bytesSeq.length);
match = 0;
if (cetusInstances.logLevel >= LOG_LEVEL_TRACE) {
colorLog("bytesSequence: sequence found: " + bytesSeq);
}
} else {
match = 0;
}
}
if (cetusInstances.logLevel >= LOG_LEVEL_DEBUG) {
colorLog("bytesSequence: exiting bytes sequence search");
}
return results;
}
}
class SpeedHack {
constructor(multiplier) {
this.multiplier = multiplier;
// Just in case we get injected twice, we need to make sure we don't overwrite
// the old saved functions
if (Date.now !== speedHackDateNow) {
this.oldDn = Date.now;
Date.now = speedHackDateNow;
}
else {
this.oldDn = cetusInstances.speedhack.oldDn;
}
if (performance.now !== speedHackPerformanceNow) {
this.oldPn = performance.now;
performance.now = speedHackPerformanceNow;
}
else {
this.oldPn = cetusInstances.speedhack.oldPn;
}
this.startDn = this.oldDn.call(Date);
this.startPn = this.oldPn.call(performance);
this.lastDn = this.startDn;
this.lastPn = this.startPn;
this.cumulativeDn = 0;
this.cumulativePn = 0;
}
}
const speedHackDateNow = function() {
const sh = cetusInstances.speedhack;
const real = sh.oldDn.call(Date);
const elapsed = (real - sh.lastDn) * sh.multiplier;
const result = Math.floor(sh.startDn + sh.cumulativeDn + elapsed);
sh.cumulativeDn += elapsed;
sh.lastDn = real;
return result
};
const speedHackPerformanceNow = function() {
const sh = cetusInstances.speedhack;
const real = sh.oldPn.call(performance);
const elapsed = (real - sh.lastPn) * sh.multiplier;
const result = Math.floor(sh.startPn + sh.cumulativePn + elapsed);
sh.cumulativePn += elapsed;
sh.lastPn = real;
return result
};
// TODO Change the look of this
const colorLog = function(msg) {
console.log("%c %c \u{1f419} CETUS %c %c " + msg + " %c %c",
"background: #858585; padding:5px 0;",
"color: #FFFFFF; background: #000000; padding:5px 0;",
"background: #858585; padding:5px 0;",
"color: #FFFFFF; background: #464646; padding:5px 0;",
"background: #858585; padding:5px 0;",
"color: #ff2424; background: #fff; padding:5px 0;");
};
const colorError = function(msg) {
console.log("%c %c \u{1f419} CETUS %c %c " + msg + " %c %c",
"background: #858585; padding:5px 0;",
"color: #eb4034; background: #000000; padding:5px 0;",
"background: #858585; padding:5px 0;",
"color: #eb4034; background: #464646; padding:5px 0;",
"background: #858585; padding:5px 0;",
"color: #ff2424; background: #fff; padding:5px 0;");
};
// TODO Validation on all these messages
window.addEventListener("cetusMsgOut", function(msgRaw) {
if (cetusInstances == null) {
return;
}
const msg = bigintJsonParse(msgRaw.detail);
const msgType = msg.type;
const msgBody = msg.body;
if (typeof msgType !== "string") {
return;
}
let cetus;
try {
cetus = cetusInstances.get(msg.id);
} catch (e) {
// Since extension messages are sent to all frames, there's a good chance a frame will get a message without Cetus being
// initialized. In this case, we just drop the message
return;
}
if (typeof cetus === "undefined") {
return;
}
if (cetusInstances !== null && cetusInstances.logLevel >= LOG_LEVEL_TRACE) {
colorLog("addEventListener: event received: " + JSON.stringify(msg));
}
switch (msgType) {
case "queryMemoryBytes":
const queryBytesResult = cetus.queryMemoryChunk(msgBody.address, 512);
cetus.sendExtensionMessage("queryMemoryBytesResult", {
address: msgBody.address,
value: queryBytesResult,
});
break;
case "queryMemory":
const queryAddr = msgBody.address;
const queryMemType = msgBody.memType;
if (typeof queryAddr !== "number") {
return;
}
const queryResult = cetus.queryMemory(queryAddr, queryMemType);
cetus.sendExtensionMessage("queryMemoryResult", {
address: queryAddr,
value: queryResult,
memType: queryMemType
});
break;
case "restartSearch":
cetus.restartSearch();
break;
case "search":
const searchMemType = msgBody.memType;
const searchMemAlign = msgBody.memAlign;
const searchComparison = msgBody.compare;
const searchLower = msgBody.lower;
const searchUpper = msgBody.upper;
const searchParam = msgBody.param;
let searchReturn;
let searchResults;
let searchResultsCount;
if (searchMemType == "ascii" || searchMemType == "utf-8" || searchMemType == "bytes") {
searchReturn = cetus.patternSearch(searchMemType, searchParam, searchLower, searchUpper);
}
else {
searchReturn = cetus.search(searchComparison,
searchMemType,
searchMemAlign,
searchParam,
searchLower,
searchUpper);
}
searchResultsCount = searchReturn.count;
searchResults = searchReturn.results;
let subset = {};
// We do not want to send too many results or we risk crashing the extension
// If there are more than 100 results, only send 100 but send the real count
if (searchResultsCount > 100) {
for (let property in searchResults) {
subset[property] = searchResults[property];
if (Object.keys(subset).length >= 100) {
break;
}
}
searchResults = subset;
}
cetus.sendExtensionMessage("searchResult", {
count: searchResultsCount,
results: searchResults,
memType: searchMemType,
});
break;
// FIXME Upper/lower bounds are not enforced
case "stringSearch":
const searchStrType = msgBody.strType;
const searchStrMinLen = msgBody.minLength;
let strSearchReturn;
switch (searchStrType) {
case "ascii":
strSearchReturn = cetus.asciiStrings(searchStrMinLen);
break;
case "utf-8":
strSearchReturn = cetus.unicodeStrings(searchStrMinLen);
break;
default:
colorError("Got bad string type: " + searchStrType);
break;
}
let strResultsCount = strSearchReturn.count;
let strResults = strSearchReturn.results;
let strSubset = {};
// We do not want to send too many results or we risk crashing the extension
// If there are more than 100 results, only send 100 but send the real count
if (strResultsCount > 100) {
for (let property in strResults) {
strSubset[property] = strResults[property];
if (Object.keys(strSubset).length >= 100) {
break;
}