-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
0001-Add-NTAG215-lib.patch
530 lines (522 loc) · 13 KB
/
0001-Add-NTAG215-lib.patch
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
From 008d6af9dda66574059533731585612d58a12333 Mon Sep 17 00:00:00 2001
From: Daniel <[email protected]>
Date: Thu, 25 Aug 2022 21:28:06 -0500
Subject: [PATCH] Add NTAG215 lib
---
Makefile | 14 +-
libs/ntag215/jswrap_ntag215.c | 449 ++++++++++++++++++++++++++++++++++
libs/ntag215/jswrap_ntag215.h | 14 ++
3 files changed, 474 insertions(+), 3 deletions(-)
create mode 100644 libs/ntag215/jswrap_ntag215.c
create mode 100644 libs/ntag215/jswrap_ntag215.h
diff --git a/Makefile b/Makefile
index c52062d73..fc6f2d577 100755
--- a/Makefile
+++ b/Makefile
@@ -58,7 +58,7 @@
# DFU_UPDATE_BUILD=1 # Uncomment this to build Espruino for a device firmware update over the air (nRF52).
#
# -- ESP32 Only
-# RTOS=1 # adds RTOS functions, available only for ESP32
+# RTOS=1 # adds RTOS functions, available only for ESP32
include make/sanitycheck.make
@@ -591,7 +591,7 @@ ifeq ($(USE_CRYPTO),1)
include make/crypto/$(FAMILY).make
else
include make/crypto/default.make
- endif
+ endif
endif
ifeq ($(USE_NEOPIXEL),1)
@@ -637,7 +637,15 @@ ifeq ($(USE_WIO_LTE),1)
SOURCES += targets/stm32/stm32_ws2812b_driver.c
endif
-ifeq ($(USE_TENSORFLOW),1)
+ifeq ($(USE_NFC),1)
+ ifeq ($(USE_NTAG215),1)
+ DEFINES += -DUSE_NTAG215
+ INCLUDE += -I$(ROOT)/libs/ntag215
+ WRAPPERSOURCES += libs/ntag215/jswrap_ntag215.c
+ endif
+endif
+
+ifeq ($(USE_TENSORFLOW),1)
include make/misc/tensorflow.make
endif
diff --git a/libs/ntag215/jswrap_ntag215.c b/libs/ntag215/jswrap_ntag215.c
new file mode 100644
index 000000000..94a68645a
--- /dev/null
+++ b/libs/ntag215/jswrap_ntag215.c
@@ -0,0 +1,449 @@
+#ifdef USE_NTAG215
+#include "jswrap_ntag215.h"
+#include "jsinteractive.h"
+#include "hal_t2t/hal_nfc_t2t.h"
+#include "bluetooth_utils.c"
+
+/*JSON{
+ "type" : "class",
+ "class" : "NTAG215",
+ "ifdef" : "USE_NTAG215"
+}
+Functions for emulating a NTAG215 NFC tag.
+*/
+/*JSON{
+ "type" : "staticproperty",
+ "class" : "NTAG215",
+ "name" : "version",
+ "generate_full" : "(1 << 16) + (0 << 8) + 0",
+ "return" : ["int","The API version as a 24-bit number."]
+}*/
+
+static unsigned char *tag = 0;
+static bool nfcStarted = false;
+
+/*JSON{
+ "type" : "staticmethod",
+ "class" : "NTAG215",
+ "name" : "setTagData",
+ "generate" : "jswrap_ntag215_setTagData",
+ "ifdef" : "USE_NTAG215",
+ "params" : [
+ ["v","JsVar","A UInt8Array at least 572 bytes long."]
+ ]
+}*/
+void jswrap_ntag215_setTagData(JsVar *v){
+ tag = 0;
+
+ if (nfcStarted) {
+ jsExceptionHere(JSET_ERROR, "NFC cannot be active.");
+ return;
+ }
+
+ if (!jsvIsArrayBuffer(v)) {
+ jsExceptionHere(JSET_ERROR, "Variable is not an array buffer.");
+ return;
+ }
+
+ size_t len=0;
+ char *pointer = jsvGetDataPointer(v, &len);
+
+ if (len < 572) {
+ jsExceptionHere(JSET_ERROR, "Array buffer is not at least 572 bytes.");
+ return;
+ }
+
+ if (pointer == 0) {
+ jsExceptionHere(JSET_ERROR, "Failed to get flat string from array buffer.");
+ return;
+ }
+
+ tag = pointer;
+}
+
+static unsigned char *tagUid = 0;
+static unsigned char *tx = 0;
+
+/*JSON{
+ "type" : "staticmethod",
+ "class" : "NTAG215",
+ "name" : "setTagBuffer",
+ "generate" : "jswrap_ntag215_setTagBuffer",
+ "ifdef" : "USE_NTAG215",
+ "params" : [
+ ["v","JsVar","A UInt8Array at least 572 bytes long."]
+ ]
+}*/
+void jswrap_ntag215_setTagBuffer(JsVar *v){
+ tagUid = 0;
+ tx = 0;
+
+ if (nfcStarted) {
+ jsExceptionHere(JSET_ERROR, "NFC cannot be active.");
+ return;
+ }
+
+ if (!jsvIsArrayBuffer(v)) {
+ jsExceptionHere(JSET_ERROR, "Variable is not an array buffer.");
+ return;
+ }
+
+ size_t len=0;
+ char *pointer = jsvGetDataPointer(v, &len);
+
+ if (len < 32) {
+ jsExceptionHere(JSET_ERROR, "Array buffer is not at least 32 bytes.");
+ return;
+ }
+
+ if (pointer == 0) {
+ jsExceptionHere(JSET_ERROR, "Failed to get flat string from array buffer.");
+ return;
+ }
+
+ tagUid = &pointer[0];
+ tx = &pointer[7];
+}
+
+static const unsigned char version[] IN_FLASH_MEMORY = {0x00, 0x04, 0x04, 0x02, 0x01, 0x00, 0x11, 0x03};
+static const unsigned char password_success[] IN_FLASH_MEMORY = {0x80, 0x80};
+static const unsigned char puck_success[] IN_FLASH_MEMORY = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08};
+static const unsigned char zero_page[] IN_FLASH_MEMORY = {0x00, 0x00, 0x00, 0x00};
+
+static bool authenticated = false;
+static void setAuthenticated(bool value){ authenticated = value; }
+static bool getAuthenticated(){ return authenticated; }
+
+static bool backdoor = false;
+static void setBackdoor(bool value){ backdoor = value; }
+static bool getBackdoor() { return backdoor; }
+
+static bool tagWritten = false;
+
+/*JSON{
+ "type" : "staticmethod",
+ "class" : "NTAG215",
+ "name" : "setTagWritten",
+ "generate" : "jswrap_ntag215_setTagWritten",
+ "ifdef" : "USE_NTAG215",
+ "params" : [
+ ["value","bool","The value."]
+ ]
+}*/
+void jswrap_ntag215_setTagWritten(bool value){ tagWritten = value; }
+
+/*JSON{
+ "type" : "staticmethod",
+ "class" : "NTAG215",
+ "name" : "getTagWritten",
+ "generate" : "jswrap_ntag215_getTagWritten",
+ "ifdef" : "USE_NTAG215",
+ "return" : ["bool", "Whether the tag was written to."]
+}*/
+bool jswrap_ntag215_getTagWritten(){ return tagWritten; }
+
+/*JSON{
+ "type" : "staticmethod",
+ "class" : "NTAG215",
+ "name" : "fixUid",
+ "generate" : "jswrap_ntag215_fixUid",
+ "ifdef" : "USE_NTAG215",
+ "return" : ["bool", "Whether the UID was fixed or not."]
+}*/
+bool jswrap_ntag215_fixUid(){
+ if (tag == 0){
+ jsExceptionHere(JSET_ERROR, "No tag pointer set\n");
+ return false;
+ }
+
+ if (tagUid == 0 || tx == 0){
+ jsExceptionHere(JSET_ERROR, "No tag buffer set\n");
+ return false;
+ }
+
+ unsigned char bcc0 = tag[0] ^ tag[1] ^ tag[2] ^ 0x88;
+ unsigned char bcc1 = tag[4] ^ tag[5] ^ tag[6] ^ tag[7];
+
+ if (tag[3] != bcc0 || tag[8] != bcc1){
+ tag[3] = bcc0;
+ tag[8] = bcc1;
+
+ return true;
+ }
+
+ return false;
+}
+
+static bool isLocked(int page){
+ if (page == 0 || page == 1) return true;
+ // Static Lock Bytes
+ int bit;
+
+ for (bit = 0; bit < 8; bit++){
+ if (tag[11] & (1 << bit)){
+ if ((bit + 8) == page){
+ return true;
+ }
+ }
+
+ if (tag[10] & (1 << bit)){
+ switch (bit){
+ case 0: //BL-CC
+ case 1: //BL-9-4
+ case 2: //BL-15-10
+ case 3: //L-CC
+ break;
+ default: {
+ if ((bit + 4) == page){
+ return true;
+ }
+ } break;
+ }
+ }
+ }
+
+ if (authenticated == false){
+ if (tag[520] & 0b00000001 > 0 && (page >= 16 && page <= 31))
+ return true;
+
+ if (tag[520] & 0b00000010 > 0 && (page >= 32 && page <= 47))
+ return true;
+
+ if (tag[520] & 0b00000100 > 0 && (page >= 48 && page <= 63))
+ return true;
+
+ if (tag[520] & 0b00001000 > 0 && (page >= 64 && page <= 79))
+ return true;
+
+ if (tag[520] & 0b00010000 > 0 && (page >= 80 && page <= 95))
+ return true;
+
+ if (tag[520] & 0b00100000 > 0 && (page >= 96 && page <= 111))
+ return true;
+
+ if (tag[520] & 0b01000000 > 0 && (page >= 112 && page <= 127))
+ return true;
+
+ if (tag[520] & 0b10000000 > 0 && (page >= 128 && page <= 129))
+ return true;
+ }
+
+ return false;
+}
+
+static unsigned char *readBlock(uint8_t block){
+
+}
+
+static void processRx(unsigned char *rx, int rxLen){
+ if (rx == 0){
+ jsiConsolePrintf("NTAG215 NFC RX pointer is 0\n");
+ return;
+ }
+
+ if (rxLen == 0){
+ hal_nfc_send_rsp(0, 0);
+ jsiConsolePrintf("NTAG215 NFC RX length is 0\n");
+ return;
+ }
+
+ switch (rx[0]) {
+ case 0x30: { // 48 - Read
+ if (rxLen < 2){
+ jsiConsolePrintf("NTAG215 READ: bad rxlen - %d\n", rxLen);
+ hal_nfc_send_rsp(0, 0);
+ return;
+ }
+
+ hal_nfc_send(&tag[rx[1] * 4], 16);
+ return;
+ }
+
+ case 0xA2: { // 162 - Write
+ if (backdoor == false && (rx[1] < 0 || rx[1] > 134 || isLocked(rx[1]))) {
+ hal_nfc_send_rsp(0, 4);
+ return;
+ }
+
+ if (backdoor == false) {
+ if (rx[1] == 2) {
+ tag[10] = tag[10] | rx[4];
+ tag[11] = tag[11] | rx[5];
+ tagWritten = true;
+ hal_nfc_send_rsp(0x0a, 4);
+ return;
+ }
+
+ if (rx[1] == 3) {
+ tag[16] = tag[16] | rx[2];
+ tag[17] = tag[17] | rx[3];
+ tag[18] = tag[18] | rx[4];
+ tag[19] = tag[19] | rx[5];
+ tagWritten = true;
+ hal_nfc_send_rsp(0x0a, 4);
+ return;
+ }
+
+ if (rx[1] == 130) {
+ // TODO: Dynamic lock bits
+ }
+ }
+
+ int index = rx[1] * 4;
+ if ((index > 568) || (backdoor == false && index > 536)) {
+ hal_nfc_send_rsp(0, 4);
+ jsiConsolePrintf("NTAG215 WRITE: page oob - %d\n", rx[1]);
+ return;
+ } else {
+ memcpy(&tag[index], &rx[2], 4);
+ tagWritten = true;
+ hal_nfc_send_rsp(0xA, 4);
+ return;
+ }
+ }
+
+ case 0x60: { // 96 - Version
+ hal_nfc_send(version, 8);
+ return;
+ }
+
+ case 0x3A: { // 58 - Fast Read
+ if (rxLen < 3){
+ hal_nfc_send_rsp(0, 4);
+ jsiConsolePrintf("NTAG215 FAST READ: Invalid rx length - %d\n", rxLen);
+ return;
+ }
+
+ if (rx[1] > rx[2] || rx[1] < 0 || rx[2] > 134) {
+ hal_nfc_send_rsp(0, 4);
+ jsiConsolePrintf("NTAG215 FAST READ: Invalid address - %d:%d\n", rx[1], rx[2]);
+ return;
+ }
+
+ if (rx[1] == 133 && rx[2] == 134) {
+ backdoor = true;
+ jsiConsolePrintf("NTAG215 FAST READ: Backdoor enabled\n");
+ hal_nfc_send(puck_success, 8);
+ return;
+ }
+
+ unsigned int tag_location = rx[1] * 4;
+ unsigned int tx_len = (rx[2] - rx[1] + 1) * 4;
+ hal_nfc_send(&tag[tag_location], tx_len);
+ return;
+ }
+
+ case 0x1B: { // 27 - Password Auth
+ hal_nfc_send(password_success, 2);
+ authenticated = true;
+ return;
+ }
+
+ case 0x3C: { // 60 - Read Signature
+ hal_nfc_send(&tag[540], 32);
+ return;
+ }
+
+ case 0x88: { // 136 - CUSTOM: Restart NFC
+ hal_nfc_send_rsp(0xA, 4);
+ jswrap_ntag215_restartNfc();
+ return;
+ }
+
+ default: { // Unknown command
+ hal_nfc_send_rsp(0, 0);
+ jsiConsolePrintf("Unknown Command: %d\n", rx[0]);
+ return;
+ }
+ }
+}
+
+static void nfc_callback(void * p_context, hal_nfc_event_t event, const uint8_t * p_data, size_t data_length) {
+ switch (event){
+ case HAL_NFC_EVENT_FIELD_ON:
+ bleQueueEventAndUnLock(JS_EVENT_PREFIX"NFCon", 0);
+ break;
+
+ case HAL_NFC_EVENT_FIELD_OFF:
+ authenticated = false;
+ backdoor = false;
+
+ bleQueueEventAndUnLock(JS_EVENT_PREFIX"NFCoff", 0);
+ break;
+
+ case HAL_NFC_EVENT_DATA_RECEIVED:
+ processRx(p_data, data_length);
+ break;
+
+ case HAL_NFC_EVENT_DATA_TRANSMITTED: break;
+ default:
+ jsiConsolePrintf("Unknown nfc event: %d\n", event);
+ }
+}
+
+/*JSON{
+ "type" : "staticmethod",
+ "class" : "NTAG215",
+ "name" : "nfcStop",
+ "generate" : "jswrap_ntag215_stopNfc",
+ "ifdef" : "USE_NTAG215"
+}*/
+
+void jswrap_ntag215_stopNfc(){
+ hal_nfc_stop();
+ hal_nfc_done();
+ nfcStarted = false;
+}
+
+/*JSON{
+ "type" : "staticmethod",
+ "class" : "NTAG215",
+ "name" : "nfcStart",
+ "generate" : "jswrap_ntag215_startNfc",
+ "ifdef" : "USE_NTAG215",
+ "return" : ["int32", "The return code."]
+}*/
+int jswrap_ntag215_startNfc(){
+ int ret_val = 0;
+
+ if (tag == 0){
+ jsExceptionHere(JSET_ERROR, "No tag pointer set\n");
+ return 100;
+ }
+
+ if (tagUid == 0 || tx == 0){
+ jsExceptionHere(JSET_ERROR, "No tag buffer set\n");
+ return 101;
+ }
+
+ jswrap_ntag215_stopNfc();
+
+ tagUid[0] = tag[0];
+ tagUid[1] = tag[1];
+ tagUid[2] = tag[2];
+ tagUid[3] = tag[4];
+ tagUid[4] = tag[5];
+ tagUid[5] = tag[6];
+ tagUid[6] = tag[7];
+ ret_val = hal_nfc_parameter_set(HAL_NFC_PARAM_ID_NFCID1, tagUid, 7);
+ ret_val = hal_nfc_setup(nfc_callback, 0);
+ ret_val = hal_nfc_start();
+
+ nfcStarted = true;
+
+ return ret_val;
+}
+
+/*JSON{
+ "type" : "staticmethod",
+ "class" : "NTAG215",
+ "name" : "nfcRestart",
+ "generate" : "jswrap_ntag215_restartNfc",
+ "ifdef" : "USE_NTAG215",
+ "return" : ["int32", "The return code."]
+}*/
+int jswrap_ntag215_restartNfc(){
+ jswrap_ntag215_stopNfc();
+ return jswrap_ntag215_startNfc();
+}
+#endif
diff --git a/libs/ntag215/jswrap_ntag215.h b/libs/ntag215/jswrap_ntag215.h
new file mode 100644
index 000000000..584238738
--- /dev/null
+++ b/libs/ntag215/jswrap_ntag215.h
@@ -0,0 +1,14 @@
+#ifdef USE_NTAG215
+#include <stdint.h>
+#include <stdbool.h>
+#include "jsinteractive.h"
+
+void jswrap_ntag215_setTagData(JsVar *);
+void jswrap_ntag215_setTagBuffer(JsVar *);
+void jswrap_ntag215_setTagWritten(bool);
+bool jswrap_ntag215_getTagWritten(void);
+bool jswrap_ntag215_fixUid(void);
+void jswrap_ntag215_stopNfc();
+int jswrap_ntag215_startNfc(void);
+int jswrap_ntag215_restartNfc(void);
+#endif
--
2.17.1