-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path_command.py
395 lines (263 loc) · 8.22 KB
/
_command.py
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
from abc import abstractmethod
import logging
from ._types import OutputControls, ReaderLedControls, ReaderBuzzerControl, ReaderTextOutput
from ._message import Message
import datetime
log = logging.getLogger('osdp')
class Command(Message):
def __init__(self):
self._address = None
self._code = None
@property
def command_code(self) -> int:
pass
@abstractmethod
def security_control_block(self) -> bytes:
pass
@abstractmethod
def custom_command_update(self, command_buffer: bytearray):
pass
def build_command(self, device) -> bytes:
command_buffer = bytearray([
self.SOM,
self.address,
0x00,
0x00,
device.message_control.control_byte
])
if device.message_control.has_security_control_block:
command_buffer.extend(self.security_control_block())
command_buffer.append(self.command_code)
if device.is_security_established:
log.debug("Building secure message...")
command_buffer.extend(self.encrypted_data(device))
# TODO: I don't think this needed
# include mac and crc/checksum in length before generating mac
additional_length = 4 + (2 if device.message_control.use_crc else 1)
self.add_packet_length(command_buffer, additional_length)
command_buffer.extend(device.generate_mac(bytes(command_buffer), True)[0:4])
else:
command_buffer.extend(self.data())
command_buffer.append(0x00)
if device.message_control.use_crc:
command_buffer.append(0x00)
self.add_packet_length(command_buffer)
if device.message_control.use_crc:
self.add_crc(command_buffer)
else:
self.add_checksum(command_buffer)
self.custom_command_update(command_buffer)
return bytes(command_buffer)
class PollCommand(Command):
def __init__(self, address: int):
self.address = address
@property
def command_code(self) -> int:
return 0x60
def security_control_block(self) -> bytes:
return bytes([0x02, 0x15])
def data(self) -> bytes:
return bytes([])
def custom_command_update(self, command_buffer: bytearray):
pass
class IdReportCommand(Command):
def __init__(self, address: int):
self.address = address
@property
def command_code(self) -> int:
return 0x61
def security_control_block(self) -> bytes:
return bytes([0x02, 0x17])
def data(self) -> bytes:
return bytes([0x00])
def custom_command_update(self, command_buffer: bytearray):
pass
class DeviceCapabilitiesCommand(Command):
def __init__(self, address: int):
self.address = address
@property
def command_code(self) -> int:
return 0x62
def security_control_block(self) -> bytes:
return bytes([0x02, 0x17])
def data(self) -> bytes:
return bytes([0x00])
def custom_command_update(self, command_buffer: bytearray):
pass
class LocalStatusReportCommand(Command):
def __init__(self, address: int):
self.address = address
@property
def command_code(self) -> int:
return 0x64
def security_control_block(self) -> bytes:
return bytes([0x02, 0x15])
def data(self) -> bytes:
return bytes([])
def custom_command_update(self, command_buffer: bytearray):
pass
class InputStatusReportCommand(Command):
def __init__(self, address: int):
self.address = address
@property
def command_code(self) -> int:
return 0x65
def security_control_block(self) -> bytes:
return bytes([0x02, 0x15])
def data(self) -> bytes:
return bytes([])
def custom_command_update(self, command_buffer: bytearray):
pass
class OutputStatusReportCommand(Command):
def __init__(self, address: int):
self.address = address
@property
def command_code(self) -> int:
return 0x66
def security_control_block(self) -> bytes:
return bytes([0x02, 0x15])
def data(self) -> bytes:
return bytes([])
def custom_command_update(self, command_buffer: bytearray):
pass
class ReaderStatusReportCommand(Command):
def __init__(self, address: int):
self.address = address
@property
def command_code(self) -> int:
return 0x67
def security_control_block(self) -> bytes:
return bytes([0x02, 0x15])
def data(self) -> bytes:
return bytes([])
def custom_command_update(self, command_buffer: bytearray):
pass
class OutputControlCommand(Command):
def __init__(self, address: int, output_controls: OutputControls):
self.address = address
self.output_controls = output_controls
@property
def command_code(self) -> int:
return 0x68
def security_control_block(self) -> bytes:
return bytes([0x02, 0x17])
def data(self) -> bytes:
return self.output_controls.build_data()
def custom_command_update(self, command_buffer: bytearray):
pass
class ReaderLedControlCommand(Command):
def __init__(self, address: int, reader_led_controls: ReaderLedControls):
self.address = address
self.reader_led_controls = reader_led_controls
@property
def command_code(self) -> int:
return 0x69
def security_control_block(self) -> bytes:
return bytes([0x02, 0x17])
def data(self) -> bytes:
return self.reader_led_controls.build_data()
def custom_command_update(self, command_buffer: bytearray):
pass
class ReaderBuzzerControlCommand(Command):
def __init__(self, address: int, reader_buzzer_control: ReaderBuzzerControl):
self.address = address
self.reader_buzzer_control = reader_buzzer_control
@property
def command_code(self) -> int:
return 0x6A
def security_control_block(self) -> bytes:
return bytes([0x02, 0x17])
def data(self) -> bytes:
return self.reader_buzzer_control.build_data()
def custom_command_update(self, command_buffer: bytearray):
pass
class ReaderTextOutputCommand(Command):
def __init__(self, address: int, reader_text_output: ReaderTextOutput):
self.address = address
self.reader_text_output = reader_text_output
@property
def command_code(self) -> int:
return 0x6B
def security_control_block(self) -> bytes:
return bytes([0x02, 0x17])
def data(self) -> bytes:
return self.reader_text_output.build_data()
def custom_command_update(self, command_buffer: bytearray):
pass
class SetDateTimeCommand(Command):
def __init__(self, address: int, timestamp: datetime.datetime):
self.address = address
self.timestamp = timestamp
@property
def command_code(self) -> int:
return 0x6D
def security_control_block(self) -> bytes:
return bytes([0x02, 0x17])
def data(self) -> bytes:
year_bytes = self.timestamp.year.to_bytes(2, byteorder='little')
return bytes([
year_bytes[0],
year_bytes[1],
self.timestamp.month,
self.timestamp.day,
self.timestamp.hour,
self.timestamp.minute,
self.timestamp.second
])
def custom_command_update(self, command_buffer: bytearray):
pass
class ManufacturerSpecificCommand(Command):
def __init__(self, address: int, manufacturer_data: bytes):
self.address = address
self.manufacturer_data = manufacturer_data
@property
def command_code(self) -> int:
return 0x80
def security_control_block(self) -> bytes:
return bytes([0x02, 0x17])
def data(self) -> bytes:
return self.manufacturer_data
def custom_command_update(self, command_buffer: bytearray):
pass
class SecurityInitializationRequestCommand(Command):
def __init__(self, address: int, server_random_number: bytes):
self.address = address
self.server_random_number = server_random_number
@property
def command_code(self) -> int:
return 0x76
def security_control_block(self) -> bytes:
return bytes([0x03, 0x11, 0x00])
def data(self) -> bytes:
return self.server_random_number
def custom_command_update(self, command_buffer: bytearray):
pass
class ServerCryptogramCommand(Command):
def __init__(self, address: int, server_cryptogram: bytes):
self.address = address
self.server_cryptogram = server_cryptogram
@property
def command_code(self) -> int:
return 0x77
def security_control_block(self) -> bytes:
return bytes([0x03, 0x13, 0x00])
def data(self) -> bytes:
return self.server_cryptogram
def custom_command_update(self, command_buffer: bytearray):
pass
class KeySetCommand(Command):
def __init__(self, address: int, scbk: bytes):
self.address = address
self.scbk = scbk
@property
def command_code(self) -> int:
return 0x75
def security_control_block(self) -> bytes:
return bytes([0x02, 0x17])
def data(self) -> bytes:
return self.keyset_data()
def custom_command_update(self, command_buffer: bytearray):
pass
def keyset_data(self):
header = bytes([0x01, 0x10])
return bytes(header + self.scbk)