-
Notifications
You must be signed in to change notification settings - Fork 2
/
osdp_pd.c
1272 lines (1169 loc) · 32.1 KB
/
osdp_pd.c
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 (c) 2019-2023 Siddharth Chandrasekaran <[email protected]>
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "osdp_common.h"
#include "osdp_file.h"
//vk2tds
#define OSDP_EXPORT
#define OSDP_NO_EXPORT
#include "slab.h"
#include "queue.h"
#ifndef CONFIG_OSDP_STATIC_PD
#include <stdlib.h>
#endif
#define CMD_POLL_DATA_LEN 0
#define CMD_LSTAT_DATA_LEN 0
#define CMD_ISTAT_DATA_LEN 0
#define CMD_OSTAT_DATA_LEN 0
#define CMD_RSTAT_DATA_LEN 0
#define CMD_ID_DATA_LEN 1
#define CMD_CAP_DATA_LEN 1
#define CMD_OUT_DATA_LEN 4
#define CMD_LED_DATA_LEN 14
#define CMD_BUZ_DATA_LEN 5
#define CMD_TEXT_DATA_LEN 6 /* variable length command */
#define CMD_COMSET_DATA_LEN 5
#define CMD_KEYSET_DATA_LEN 18
#define CMD_CHLNG_DATA_LEN 8
#define CMD_SCRYPT_DATA_LEN 16
#define CMD_ABORT_DATA_LEN 0
#define CMD_ACURXSIZE_DATA_LEN 2
#define CMD_KEEPACTIVE_DATA_LEN 2
#define CMD_MFG_DATA_LEN 4 /* variable length command */
#define REPLY_ACK_LEN 1
#define REPLY_PDID_LEN 13
#define REPLY_PDCAP_LEN 1 /* variable length command */
#define REPLY_PDCAP_ENTITY_LEN 3
#define REPLY_LSTATR_LEN 3
#define REPLY_RSTATR_LEN 2
#define REPLY_COM_LEN 6
#define REPLY_NAK_LEN 2
#define REPLY_CCRYPT_LEN 33
#define REPLY_RMAC_I_LEN 17
#define REPLY_KEYPAD_LEN 2
#define REPLY_RAW_LEN 4
#define REPLY_FMT_LEN 3
#define REPLY_MFGREP_LEN 4 /* variable length command */
enum osdp_pd_error_e {
OSDP_PD_ERR_NONE = 0,
OSDP_PD_ERR_WAIT = -1,
OSDP_PD_ERR_GENERIC = -2,
OSDP_PD_ERR_REPLY = -3,
OSDP_PD_ERR_IGNORE = -4,
OSDP_PD_ERR_NO_DATA = -5,
};
/* Implicit capabilities */
static struct osdp_pd_cap osdp_pd_cap[] = {
{
OSDP_PD_CAP_CHECK_CHARACTER_SUPPORT,
1, /* The PD supports the 16-bit CRC-16 mode */
0, /* N/A */
},
{
OSDP_PD_CAP_COMMUNICATION_SECURITY,
1, /* (Bit-0) AES128 support */
0, /* N/A */
},
{
OSDP_PD_CAP_RECEIVE_BUFFERSIZE,
BYTE_0(OSDP_PACKET_BUF_SIZE),
BYTE_1(OSDP_PACKET_BUF_SIZE),
},
{ -1, 0, 0 } /* Sentinel */
};
struct pd_event_node {
queue_node_t node;
struct osdp_event object;
};
static int pd_event_queue_init(struct osdp_pd *pd)
{
if (slab_init(&pd->app_data.slab, sizeof(struct pd_event_node),
pd->app_data.slab_blob,
sizeof(pd->app_data.slab_blob)) < 0) {
LOG_ERR("Failed to initialize command slab");
return -1;
}
queue_init(&pd->event_queue);
return 0;
}
static struct osdp_event *pd_event_alloc(struct osdp_pd *pd)
{
struct pd_event_node *event = NULL;
if (slab_alloc(&pd->app_data.slab, (void **)&event)) {
LOG_ERR("Event slab allocation failed");
return NULL;
}
return &event->object;
}
static void pd_event_free(struct osdp_pd *pd, struct osdp_event *event)
{
struct pd_event_node *n;
n = CONTAINER_OF(event, struct pd_event_node, object);
slab_free(&pd->app_data.slab, n);
}
static void pd_event_enqueue(struct osdp_pd *pd, struct osdp_event *event)
{
struct pd_event_node *n;
n = CONTAINER_OF(event, struct pd_event_node, object);
queue_enqueue(&pd->event_queue, &n->node);
}
static int pd_event_dequeue(struct osdp_pd *pd, struct osdp_event **event)
{
struct pd_event_node *n;
queue_node_t *node;
if (queue_dequeue(&pd->event_queue, &node)) {
return -1;
}
n = CONTAINER_OF(node, struct pd_event_node, node);
*event = &n->object;
return 0;
}
static int pd_translate_event(struct osdp_pd *pd, struct osdp_event *event)
{
int reply_code = 0;
switch (event->type) {
case OSDP_EVENT_CARDREAD:
if (event->cardread.format == OSDP_CARD_FMT_RAW_UNSPECIFIED ||
event->cardread.format == OSDP_CARD_FMT_RAW_WIEGAND) {
reply_code = REPLY_RAW;
} else if (event->cardread.format == OSDP_CARD_FMT_ASCII) {
reply_code = REPLY_FMT;
} else {
LOG_ERR("Event: cardread; Error: unknown format");
break;
}
break;
case OSDP_EVENT_KEYPRESS:
reply_code = REPLY_KEYPPAD;
break;
case OSDP_EVENT_STATUS:
switch(event->status.type) {
case OSDP_STATUS_REPORT_INPUT:
reply_code = REPLY_ISTATR;
break;
case OSDP_STATUS_REPORT_OUTPUT:
reply_code = REPLY_OSTATR;
break;
case OSDP_STATUS_REPORT_LOCAL:
reply_code = REPLY_LSTATR;
break;
case OSDP_STATUS_REPORT_REMOTE:
reply_code = REPLY_RSTATR;
break;
}
break;
case OSDP_EVENT_MFGREP:
reply_code = REPLY_MFGREP;
break;
default:
LOG_ERR("Unknown event type %d", event->type);
break;
}
if (reply_code == 0) {
/* POLL command cannot fail even when there are errors here */
return REPLY_ACK;
}
memcpy(pd->ephemeral_data, event, sizeof(struct osdp_event));
return reply_code;
}
static bool do_command_callback(struct osdp_pd *pd, struct osdp_cmd *cmd)
{
int ret;
ret = pd->command_callback(pd->command_callback_arg, cmd);
if (ret != 0) {
pd->reply_id = REPLY_NAK;
pd->ephemeral_data[0] = OSDP_PD_NAK_RECORD;
return false;
}
return true;
}
static int pd_cmd_cap_ok(struct osdp_pd *pd, struct osdp_cmd *cmd)
{
struct osdp_pd_cap *cap = NULL;
/* Validate the cmd_id against a PD capabilities where applicable */
switch (pd->cmd_id) {
case CMD_ISTAT:
cap = &pd->cap[OSDP_PD_CAP_CONTACT_STATUS_MONITORING];
if (cap->num_items == 0 || cap->compliance_level == 0) {
break;
}
return 1;
case CMD_OSTAT:
cap = &pd->cap[OSDP_PD_CAP_OUTPUT_CONTROL];
if (cap->num_items == 0 || cap->compliance_level == 0) {
break;
}
return 1;
case CMD_OUT:
cap = &pd->cap[OSDP_PD_CAP_OUTPUT_CONTROL];
if (!cmd || cap->compliance_level == 0 ||
cmd->output.output_no + 1 > cap->num_items) {
break;
}
return 1;
case CMD_LED:
cap = &pd->cap[OSDP_PD_CAP_READER_LED_CONTROL];
if (!cmd || cap->compliance_level == 0 ||
cmd->led.led_number + 1 > cap->num_items) {
break;
}
return 1;
case CMD_BUZ:
cap = &pd->cap[OSDP_PD_CAP_READER_AUDIBLE_OUTPUT];
if (cap->num_items == 0 || cap->compliance_level == 0) {
break;
}
return 1;
case CMD_TEXT:
cap = &pd->cap[OSDP_PD_CAP_READER_TEXT_OUTPUT];
if (cap->num_items == 0 || cap->compliance_level == 0) {
break;
}
return 1;
case CMD_CHLNG:
case CMD_SCRYPT:
case CMD_KEYSET:
cap = &pd->cap[OSDP_PD_CAP_COMMUNICATION_SECURITY];
if (cap->compliance_level == 0) {
pd->reply_id = REPLY_NAK;
pd->ephemeral_data[0] = OSDP_PD_NAK_SC_UNSUP;
return 0;
}
return 1;
}
pd->reply_id = REPLY_NAK;
pd->ephemeral_data[0] = OSDP_PD_NAK_CMD_UNKNOWN;
LOG_ERR("PD is not capable of handling CMD(%02x); ", pd->cmd_id);
return 0;
}
static int pd_decode_command(struct osdp_pd *pd, uint8_t *buf, int len)
{
int i, ret = OSDP_PD_ERR_GENERIC, pos = 0;
struct osdp_cmd cmd;
struct osdp_event *event;
pd->reply_id = 0;
pd->cmd_id = cmd.id = buf[pos++];
len--;
if (ISSET_DEBUGFLAG(pd, OSDP_DEBUGFLAG_DATA_TRACE)) {
if (pd->cmd_id != CMD_POLL) {
hexdump(buf, len, "OSDP: CMD: %s(%02x)",
osdp_cmd_name(pd->cmd_id), pd->cmd_id);
}
}
if (is_enforce_secure(pd) && !sc_is_active(pd)) {
/**
* Only CMD_ID, CMD_CAP and SC handshake commands (CMD_CHLNG
* and CMD_SCRYPT) are allowed when SC is inactive and
* ENFORCE_SECURE was requested.
*/
if (pd->cmd_id != CMD_ID && pd->cmd_id != CMD_CAP &&
pd->cmd_id != CMD_CHLNG && pd->cmd_id != CMD_SCRYPT) {
LOG_ERR("CMD: %s(%02x) not allowed due to ENFORCE_SECURE",
osdp_cmd_name(pd->cmd_id), pd->cmd_id);
pd->reply_id = REPLY_NAK;
pd->ephemeral_data[0] = OSDP_PD_NAK_SC_COND;
return OSDP_PD_ERR_REPLY;
}
}
switch (pd->cmd_id) {
case CMD_POLL:
if (len != CMD_POLL_DATA_LEN) {
break;
}
/* Check if we have external events in the queue */
if (pd_event_dequeue(pd, &event) == 0) {
ret = pd_translate_event(pd, event);
pd->reply_id = ret;
pd_event_free(pd, event);
} else {
pd->reply_id = REPLY_ACK;
}
ret = OSDP_PD_ERR_NONE;
break;
case CMD_LSTAT:
if (len != CMD_LSTAT_DATA_LEN) {
break;
}
cmd.id = OSDP_CMD_STATUS;
cmd.status.type = OSDP_STATUS_REPORT_LOCAL;
if (do_command_callback(pd, &cmd)) {
break;
}
event = (struct osdp_event *)pd->ephemeral_data;
event->type = OSDP_EVENT_STATUS;
memcpy(&event->status, &cmd.status, sizeof(cmd.status));
pd->reply_id = REPLY_LSTATR;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_ISTAT:
if (len != CMD_ISTAT_DATA_LEN || !pd->command_callback) {
break;
}
if (!pd_cmd_cap_ok(pd, NULL)) {
ret = OSDP_PD_ERR_REPLY;
break;
}
cmd.id = OSDP_CMD_STATUS;
cmd.status.type = OSDP_STATUS_REPORT_INPUT;
if (do_command_callback(pd, &cmd)) {
break;
}
event = (struct osdp_event *)pd->ephemeral_data;
event->type = OSDP_EVENT_STATUS;
memcpy(&event->status, &cmd.status, sizeof(cmd.status));
pd->reply_id = REPLY_ISTATR;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_OSTAT:
if (len != CMD_OSTAT_DATA_LEN || !pd->command_callback) {
break;
}
if (!pd_cmd_cap_ok(pd, NULL)) {
ret = OSDP_PD_ERR_REPLY;
break;
}
cmd.id = OSDP_CMD_STATUS;
cmd.status.type = OSDP_STATUS_REPORT_OUTPUT;
if (do_command_callback(pd, &cmd)) {
break;
}
event = (struct osdp_event *)pd->ephemeral_data;
event->type = OSDP_EVENT_STATUS;
memcpy(&event->status, &cmd.status, sizeof(cmd.status));
pd->reply_id = REPLY_OSTATR;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_RSTAT:
if (len != CMD_RSTAT_DATA_LEN || !pd->command_callback) {
break;
}
cmd.id = OSDP_CMD_STATUS;
cmd.status.type = OSDP_STATUS_REPORT_REMOTE;
if (do_command_callback(pd, &cmd)) {
break;
}
event = (struct osdp_event *)pd->ephemeral_data;
event->type = OSDP_EVENT_STATUS;
memcpy(&event->status, &cmd.status, sizeof(cmd.status));
pd->reply_id = REPLY_RSTATR;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_ID:
if (len != CMD_ID_DATA_LEN) {
break;
}
pos++; /* Skip reply type info. */
pd->reply_id = REPLY_PDID;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_CAP:
if (len != CMD_CAP_DATA_LEN) {
break;
}
pos++; /* Skip reply type info. */
pd->reply_id = REPLY_PDCAP;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_OUT:
if ((len % CMD_OUT_DATA_LEN) != 0 || !pd->command_callback) {
break;
}
ret = OSDP_PD_ERR_REPLY;
for (i = 0; i < len / CMD_OUT_DATA_LEN; i++) {
cmd.id = OSDP_CMD_OUTPUT;
cmd.output.output_no = buf[pos++];
cmd.output.control_code = buf[pos++];
cmd.output.timer_count = buf[pos++];
cmd.output.timer_count |= buf[pos++] << 8;
if (!pd_cmd_cap_ok(pd, &cmd)) {
break;
}
if (!do_command_callback(pd, &cmd)) {
break;
}
}
pd->reply_id = REPLY_ACK;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_LED:
if ((len % CMD_LED_DATA_LEN) != 0 || !pd->command_callback) {
break;
}
ret = OSDP_PD_ERR_REPLY;
for (i = 0; i < len / CMD_LED_DATA_LEN; i++) {
cmd.id = OSDP_CMD_LED;
cmd.led.reader = buf[pos++];
cmd.led.led_number = buf[pos++];
cmd.led.temporary.control_code = buf[pos++];
cmd.led.temporary.on_count = buf[pos++];
cmd.led.temporary.off_count = buf[pos++];
cmd.led.temporary.on_color = buf[pos++];
cmd.led.temporary.off_color = buf[pos++];
cmd.led.temporary.timer_count = buf[pos++];
cmd.led.temporary.timer_count |= buf[pos++] << 8;
cmd.led.permanent.control_code = buf[pos++];
cmd.led.permanent.on_count = buf[pos++];
cmd.led.permanent.off_count = buf[pos++];
cmd.led.permanent.on_color = buf[pos++];
cmd.led.permanent.off_color = buf[pos++];
if (!pd_cmd_cap_ok(pd, &cmd)) {
break;
}
if (!do_command_callback(pd, &cmd)) {
break;
}
}
pd->reply_id = REPLY_ACK;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_BUZ:
if ((len % CMD_BUZ_DATA_LEN) != 0 || !pd->command_callback) {
break;
}
ret = OSDP_PD_ERR_REPLY;
for (i = 0; i < len / CMD_BUZ_DATA_LEN; i++) {
cmd.id = OSDP_CMD_BUZZER;
cmd.buzzer.reader = buf[pos++];
cmd.buzzer.control_code = buf[pos++];
cmd.buzzer.on_count = buf[pos++];
cmd.buzzer.off_count = buf[pos++];
cmd.buzzer.rep_count = buf[pos++];
if (!pd_cmd_cap_ok(pd, &cmd)) {
break;
}
if (!do_command_callback(pd, &cmd)) {
break;
}
}
pd->reply_id = REPLY_ACK;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_TEXT:
if (len < CMD_TEXT_DATA_LEN || !pd->command_callback) {
break;
}
cmd.id = OSDP_CMD_TEXT;
cmd.text.reader = buf[pos++];
cmd.text.control_code = buf[pos++];
cmd.text.temp_time = buf[pos++];
cmd.text.offset_row = buf[pos++];
cmd.text.offset_col = buf[pos++];
cmd.text.length = buf[pos++];
if (cmd.text.length > OSDP_CMD_TEXT_MAX_LEN ||
((len - CMD_TEXT_DATA_LEN) < cmd.text.length) ||
cmd.text.length > OSDP_CMD_TEXT_MAX_LEN) {
break;
}
memcpy(cmd.text.data, buf + pos, cmd.text.length);
ret = OSDP_PD_ERR_REPLY;
if (!pd_cmd_cap_ok(pd, &cmd)) {
break;
}
if (!do_command_callback(pd, &cmd)) {
break;
}
pd->reply_id = REPLY_ACK;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_COMSET:
if (len != CMD_COMSET_DATA_LEN || !pd->command_callback) {
break;
}
cmd.id = OSDP_CMD_COMSET;
cmd.comset.address = buf[pos++];
cmd.comset.baud_rate = buf[pos++];
cmd.comset.baud_rate |= buf[pos++] << 8;
cmd.comset.baud_rate |= buf[pos++] << 16;
cmd.comset.baud_rate |= buf[pos++] << 24;
if (cmd.comset.address >= 0x7F ||
(cmd.comset.baud_rate != 9600 &&
cmd.comset.baud_rate != 19200 &&
cmd.comset.baud_rate != 38400 &&
cmd.comset.baud_rate != 57600 &&
cmd.comset.baud_rate != 115200 &&
cmd.comset.baud_rate != 230400)) {
LOG_ERR("COMSET Failed! command discarded");
cmd.comset.address = pd->address;
cmd.comset.baud_rate = pd->baud_rate;
break;
}
if (!do_command_callback(pd, &cmd)) {
ret = OSDP_PD_ERR_REPLY;
break;
}
memcpy(pd->ephemeral_data, &cmd, sizeof(struct osdp_cmd));
pd->reply_id = REPLY_COM;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_MFG:
if (len < CMD_MFG_DATA_LEN || !pd->command_callback) {
break;
}
cmd.id = OSDP_CMD_MFG;
cmd.mfg.vendor_code = buf[pos++]; /* vendor_code */
cmd.mfg.vendor_code |= buf[pos++] << 8;
cmd.mfg.vendor_code |= buf[pos++] << 16;
cmd.mfg.command = buf[pos++];
cmd.mfg.length = len - CMD_MFG_DATA_LEN;
if (cmd.mfg.length > OSDP_CMD_MFG_MAX_DATALEN) {
LOG_ERR("cmd length error");
break;
}
for (i = 0; i < cmd.mfg.length; i++) {
cmd.mfg.data[i] = buf[pos++];
}
if (!do_command_callback(pd, &cmd)) {
ret = OSDP_PD_ERR_REPLY;
break;
}
if (ret > 0) { /* App wants to send a REPLY_MFGREP to the CP */
memcpy(pd->ephemeral_data, &cmd,
sizeof(struct osdp_cmd));
pd->reply_id = REPLY_MFGREP;
} else {
pd->reply_id = REPLY_ACK;
}
ret = OSDP_PD_ERR_NONE;
break;
case CMD_ACURXSIZE:
if (len < CMD_ACURXSIZE_DATA_LEN) {
break;
}
pd->peer_rx_size = buf[pos] | (buf[pos + 1] << 8);
pd->reply_id = REPLY_ACK;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_KEEPACTIVE:
if (len < CMD_KEEPACTIVE_DATA_LEN) {
break;
}
pd->sc_tstamp += buf[pos] | (buf[pos + 1] << 8);
pd->reply_id = REPLY_ACK;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_ABORT:
if (len != CMD_ABORT_DATA_LEN) {
break;
}
osdp_file_tx_abort(pd);
pd->reply_id = REPLY_ACK;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_FILETRANSFER:
ret = osdp_file_cmd_tx_decode(pd, buf + pos, len);
if (ret == 0) {
ret = OSDP_PD_ERR_NONE;
pd->reply_id = REPLY_FTSTAT;
break;
}
break;
case CMD_KEYSET:
if (len != CMD_KEYSET_DATA_LEN) {
break;
}
/* only key_type == 1 (SCBK) and key_len == 16 is supported */
if (buf[pos] != 1 || buf[pos + 1] != 16) {
LOG_ERR("Keyset invalid len/type: %d/%d",
buf[pos], buf[pos + 1]);
break;
}
ret = OSDP_PD_ERR_REPLY;
if (!pd_cmd_cap_ok(pd, NULL)) {
break;
}
/**
* For CMD_KEYSET to be accepted, PD must be
* ONLINE and SC_ACTIVE.
*/
if (!sc_is_active(pd)) {
pd->reply_id = REPLY_NAK;
pd->ephemeral_data[0] = OSDP_PD_NAK_SC_COND;
LOG_ERR("Keyset with SC inactive");
break;
}
cmd.id = OSDP_CMD_KEYSET;
cmd.keyset.type = buf[pos++];
cmd.keyset.length = buf[pos++];
memcpy(cmd.keyset.data, buf + pos, 16);
if (!pd->command_callback) {
LOG_ERR("Keyset without a command callback! The SC new "
"SCBK will be lost when the PD reboots.");
} else if (!do_command_callback(pd, &cmd)) {
break;
}
memcpy(pd->sc.scbk, cmd.keyset.data, 16);
CLEAR_FLAG(pd, PD_FLAG_SC_USE_SCBKD);
CLEAR_FLAG(pd, OSDP_FLAG_INSTALL_MODE);
sc_deactivate(pd);
pd->reply_id = REPLY_ACK;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_CHLNG:
if (len != CMD_CHLNG_DATA_LEN) {
break;
}
ret = OSDP_PD_ERR_REPLY;
if (!pd_cmd_cap_ok(pd, NULL)) {
break;
}
sc_deactivate(pd);
memcpy(pd->sc.cp_random, buf + pos, 8);
pd->reply_id = REPLY_CCRYPT;
ret = OSDP_PD_ERR_NONE;
break;
case CMD_SCRYPT:
if (len != CMD_SCRYPT_DATA_LEN) {
break;
}
ret = OSDP_PD_ERR_REPLY;
if (!pd_cmd_cap_ok(pd, NULL)) {
break;
}
if (sc_is_active(pd)) {
pd->reply_id = REPLY_NAK;
pd->ephemeral_data[0] = OSDP_PD_NAK_SC_COND;
LOG_EM("Out of order CMD_SCRYPT; has CP gone rogue?");
break;
}
memcpy(pd->sc.cp_cryptogram, buf + pos, CMD_SCRYPT_DATA_LEN);
pd->reply_id = REPLY_RMAC_I;
ret = OSDP_PD_ERR_NONE;
break;
default:
LOG_ERR("Unknown CMD(%02x)", pd->cmd_id);
pd->reply_id = REPLY_NAK;
pd->ephemeral_data[0] = OSDP_PD_NAK_CMD_UNKNOWN;
return OSDP_PD_ERR_REPLY;
}
if (ret == OSDP_PD_ERR_GENERIC) {
LOG_ERR("Failed to decode command: CMD(%02x) Len:%d ret:%d",
pd->cmd_id, len, ret);
pd->reply_id = REPLY_NAK;
pd->ephemeral_data[0] = OSDP_PD_NAK_CMD_LEN;
ret = OSDP_PD_ERR_REPLY;
}
if (pd->cmd_id != CMD_POLL) {
LOG_DBG("CMD: %s(%02x) REPLY: %s(%02x)",
osdp_cmd_name(pd->cmd_id), pd->cmd_id,
osdp_reply_name(pd->reply_id), pd->reply_id);
}
return ret;
}
static inline void assert_buf_len(int need, int have)
{
//__ASSERT(need < have, "OOM at build command: need:%d have:%d",
// need, have);
}
/**
* Returns:
* +ve: length of command
* -ve: error
*/
static int pd_build_reply(struct osdp_pd *pd, uint8_t *buf, int max_len)
{
int ret = OSDP_PD_ERR_GENERIC;
int i, len = 0;
struct osdp_cmd *cmd;
struct osdp_event *event;
int data_off = osdp_phy_packet_get_data_offset(pd, buf);
uint8_t *smb = osdp_phy_packet_get_smb(pd, buf);
buf += data_off;
max_len -= data_off;
switch (pd->reply_id) {
case REPLY_ACK:
assert_buf_len(REPLY_ACK_LEN, max_len);
buf[len++] = pd->reply_id;
ret = OSDP_PD_ERR_NONE;
break;
case REPLY_PDID:
assert_buf_len(REPLY_PDID_LEN, max_len);
buf[len++] = pd->reply_id;
buf[len++] = BYTE_0(pd->id.vendor_code);
buf[len++] = BYTE_1(pd->id.vendor_code);
buf[len++] = BYTE_2(pd->id.vendor_code);
buf[len++] = pd->id.model;
buf[len++] = pd->id.version;
buf[len++] = BYTE_0(pd->id.serial_number);
buf[len++] = BYTE_1(pd->id.serial_number);
buf[len++] = BYTE_2(pd->id.serial_number);
buf[len++] = BYTE_3(pd->id.serial_number);
buf[len++] = BYTE_3(pd->id.firmware_version);
buf[len++] = BYTE_2(pd->id.firmware_version);
buf[len++] = BYTE_1(pd->id.firmware_version);
ret = OSDP_PD_ERR_NONE;
break;
case REPLY_PDCAP:
assert_buf_len(REPLY_PDCAP_LEN, max_len);
buf[len++] = pd->reply_id;
for (i = 1; i < OSDP_PD_CAP_SENTINEL; i++) {
if (pd->cap[i].function_code != i) {
continue;
}
if (max_len < REPLY_PDCAP_ENTITY_LEN) {
LOG_ERR("Out of buffer space!");
break;
}
buf[len++] = i;
buf[len++] = pd->cap[i].compliance_level;
buf[len++] = pd->cap[i].num_items;
max_len -= REPLY_PDCAP_ENTITY_LEN;
}
ret = OSDP_PD_ERR_NONE;
break;
case REPLY_OSTATR: {
event = (struct osdp_event *)pd->ephemeral_data;
int n = pd->cap[OSDP_PD_CAP_OUTPUT_CONTROL].num_items;
if (event->status.nr_entries != n) {
break;
}
assert_buf_len(n + 1, max_len);
buf[len++] = pd->reply_id;
for (i = 0; i < n; i++) {
buf[len++] = !!(event->status.mask & (1 << i));
}
ret = OSDP_PD_ERR_NONE;
break;
}
case REPLY_ISTATR: {
event = (struct osdp_event *)pd->ephemeral_data;
int n = pd->cap[OSDP_PD_CAP_CONTACT_STATUS_MONITORING].num_items;
if (event->status.nr_entries != n) {
break;
}
assert_buf_len(n + 1, max_len);
buf[len++] = pd->reply_id;
for (i = 0; i < n; i++) {
buf[len++] = !!(event->status.mask & (1 << i));
}
ret = OSDP_PD_ERR_NONE;
break;
}
case REPLY_LSTATR:
assert_buf_len(REPLY_LSTATR_LEN, max_len);
event = (struct osdp_event *)pd->ephemeral_data;
buf[len++] = pd->reply_id;
buf[len++] = BIT_IS_SET(event->status.mask, 0); // tamper
buf[len++] = BIT_IS_SET(event->status.mask, 1); // power
ret = OSDP_PD_ERR_NONE;
break;
case REPLY_RSTATR:
assert_buf_len(REPLY_RSTATR_LEN, max_len);
event = (struct osdp_event *)pd->ephemeral_data;
buf[len++] = pd->reply_id;
buf[len++] = BIT_IS_SET(event->status.mask, 0); // power
ret = OSDP_PD_ERR_NONE;
break;
case REPLY_KEYPPAD:
event = (struct osdp_event *)pd->ephemeral_data;
assert_buf_len(REPLY_KEYPAD_LEN + event->keypress.length, max_len);
buf[len++] = pd->reply_id;
buf[len++] = (uint8_t)event->keypress.reader_no;
buf[len++] = (uint8_t)event->keypress.length;
memcpy(buf + len, event->keypress.data, event->keypress.length);
len += event->keypress.length;
ret = OSDP_PD_ERR_NONE;
break;
case REPLY_RAW: {
int len_bytes;
event = (struct osdp_event *)pd->ephemeral_data;
len_bytes = (event->cardread.length + 7) / 8;
assert_buf_len(REPLY_RAW_LEN + len_bytes, max_len);
buf[len++] = pd->reply_id;
buf[len++] = (uint8_t)event->cardread.reader_no;
buf[len++] = (uint8_t)event->cardread.format;
buf[len++] = BYTE_0(event->cardread.length);
buf[len++] = BYTE_1(event->cardread.length);
memcpy(buf + len, event->cardread.data, len_bytes);
len += len_bytes;
ret = OSDP_PD_ERR_NONE;
break;
}
case REPLY_FMT:
event = (struct osdp_event *)pd->ephemeral_data;
assert_buf_len(REPLY_FMT_LEN + event->cardread.length, max_len);
buf[len++] = pd->reply_id;
buf[len++] = (uint8_t)event->cardread.reader_no;
buf[len++] = (uint8_t)event->cardread.direction;
buf[len++] = (uint8_t)event->cardread.length;
memcpy(buf + len, event->cardread.data, event->cardread.length);
len += event->cardread.length;
ret = OSDP_PD_ERR_NONE;
break;
case REPLY_COM:
assert_buf_len(REPLY_COM_LEN, max_len);
/**
* If COMSET succeeds, the PD must reply with the old params and
* then switch to the new params from then then on. We have the
* new params in the commands struct that we just enqueued so
* we can peek at tail of command queue and set that to
* pd->addr/pd->baud_rate.
*/
cmd = (struct osdp_cmd *)pd->ephemeral_data;
buf[len++] = pd->reply_id;
buf[len++] = cmd->comset.address;
buf[len++] = BYTE_0(cmd->comset.baud_rate);
buf[len++] = BYTE_1(cmd->comset.baud_rate);
buf[len++] = BYTE_2(cmd->comset.baud_rate);
buf[len++] = BYTE_3(cmd->comset.baud_rate);
pd->address = (int)cmd->comset.address;
pd->baud_rate = (int)cmd->comset.baud_rate;
LOG_INF("COMSET Succeeded! New PD-Addr: %d; Baud: %d",
pd->address, pd->baud_rate);
ret = OSDP_PD_ERR_NONE;
break;
case REPLY_NAK:
assert_buf_len(REPLY_NAK_LEN, max_len);
buf[len++] = pd->reply_id;
buf[len++] = pd->ephemeral_data[0];
ret = OSDP_PD_ERR_NONE;
break;
case REPLY_MFGREP:
cmd = (struct osdp_cmd *)pd->ephemeral_data;
assert_buf_len(REPLY_MFGREP_LEN + cmd->mfg.length, max_len);
buf[len++] = pd->reply_id;
buf[len++] = BYTE_0(cmd->mfg.vendor_code);
buf[len++] = BYTE_1(cmd->mfg.vendor_code);
buf[len++] = BYTE_2(cmd->mfg.vendor_code);
buf[len++] = cmd->mfg.command;
memcpy(buf + len, cmd->mfg.data, cmd->mfg.length);
len += cmd->mfg.length;
ret = OSDP_PD_ERR_NONE;
break;
case REPLY_FTSTAT:
buf[len++] = pd->reply_id;
ret = osdp_file_cmd_stat_build(pd, buf + len, max_len);
if (ret <= 0) {
break;
}
len += ret;
ret = OSDP_PD_ERR_NONE;
break;
case REPLY_CCRYPT:
if (smb == NULL) {
break;
}
assert_buf_len(REPLY_CCRYPT_LEN, max_len);
osdp_fill_random(pd->sc.pd_random, 8);
osdp_compute_session_keys(pd);
osdp_compute_pd_cryptogram(pd);
buf[len++] = pd->reply_id;
memcpy(buf + len, pd->sc.pd_client_uid, 8);
memcpy(buf + len + 8, pd->sc.pd_random, 8);
memcpy(buf + len + 16, pd->sc.pd_cryptogram, 16);
len += 32;
smb[0] = 3; /* length */
smb[1] = SCS_12; /* type */
smb[2] = ISSET_FLAG(pd, PD_FLAG_SC_USE_SCBKD) ? 0 : 1;
ret = OSDP_PD_ERR_NONE;
break;
case REPLY_RMAC_I:
if (smb == NULL) {
break;
}
assert_buf_len(REPLY_RMAC_I_LEN, max_len);
osdp_compute_rmac_i(pd);
buf[len++] = pd->reply_id;
memcpy(buf + len, pd->sc.r_mac, 16);
len += 16;
smb[0] = 3; /* length */
smb[1] = SCS_14; /* type */
if (osdp_verify_cp_cryptogram(pd) == 0) {
smb[2] = 1; /* CP auth succeeded */
sc_activate(pd);
pd->sc_tstamp = osdp_millis_now();
if (ISSET_FLAG(pd, PD_FLAG_SC_USE_SCBKD)) {
LOG_WRN("SC Active with SCBK-D");
} else {
LOG_INF("SC Active");
}
} else {
smb[2] = 0; /* CP auth failed */
LOG_WRN("failed to verify CP_crypt");
}
ret = OSDP_PD_ERR_NONE;
break;
}
if (smb && (smb[1] > SCS_14) && sc_is_active(pd)) {
smb[0] = 2; /* length */
smb[1] = (len > 1) ? SCS_18 : SCS_16;
}
if (ret != 0) {
/* catch all errors and report it as a RECORD error to CP */
LOG_ERR("Failed to build REPLY: %s(%02x); Sending NAK instead!",
osdp_reply_name(pd->reply_id), pd->reply_id);
assert_buf_len(REPLY_NAK_LEN, max_len);
buf[0] = REPLY_NAK;
buf[1] = OSDP_PD_NAK_RECORD;
len = 2;
}
if (ISSET_DEBUGFLAG(pd, OSDP_DEBUGFLAG_DATA_TRACE)) {
if (pd->cmd_id != CMD_POLL) {
osdp_dump(buf + 1, len - 1, "OSDP: REPLY: %s(%02x)",
osdp_reply_name(buf[0]), buf[0]);
}
}
return len;
}
static int pd_send_reply(struct osdp_pd *pd)
{
int ret, packet_buf_size = get_tx_buf_size(pd);
/* init packet buf with header */
ret = osdp_phy_packet_init(pd, pd->packet_buf, packet_buf_size);
if (ret < 0) {
return OSDP_PD_ERR_GENERIC;
}
pd->packet_buf_len = ret;
/* fill reply data */
ret = pd_build_reply(pd, pd->packet_buf, packet_buf_size);
if (ret <= 0) {
return OSDP_PD_ERR_GENERIC;
}
pd->packet_buf_len += ret;
ret = osdp_phy_send_packet(pd, pd->packet_buf, pd->packet_buf_len,
packet_buf_size);
if (ret < 0) {
return OSDP_PD_ERR_GENERIC;
}
return OSDP_PD_ERR_NONE;
}
static int pd_receive_and_process_command(struct osdp_pd *pd)
{
int err, len;
uint8_t *buf;
err = osdp_phy_check_packet(pd);
/* Translate phy error codes to PD errors */
switch (err) {
case OSDP_ERR_PKT_NONE:
break;
case OSDP_ERR_PKT_NACK:
return OSDP_PD_ERR_REPLY;
case OSDP_ERR_PKT_NO_DATA:
return OSDP_PD_ERR_NO_DATA;
case OSDP_ERR_PKT_WAIT: