-
Notifications
You must be signed in to change notification settings - Fork 427
/
comm_serialtalk.py
executable file
·478 lines (378 loc) · 16.2 KB
/
comm_serialtalk.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
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
""" Utility to talk to DJI product via DUPC packets on serial interface.
This script takes header fields and payload, and builds a proper DUPC
packet from them. Then it sends it via given serial port and waits for an answer.
"""
# Copyright (C) 2018 Mefistotelis <[email protected]>
# Copyright (C) 2018 Original Gangsters <https://dji-rev.slack.com/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
__version__ = "0.6.0"
__author__ = "Mefistotelis @ Original Gangsters"
__license__ = "GPL"
import argparse
import io
import sys
import time
from ctypes import sizeof
sys.path.insert(0, './')
from comm_dat2pcap import (
do_packetise_byte, store_packet, drop_packet,
is_packet_ready, is_packet_damaged, is_packet_at_finish,
Formatter, PktInfo, PktState,
eprint,
)
from comm_mkdupc import (
parse_module_ident, parse_module_type, parse_ack_type,
parse_encrypt_type, parse_packet_type, parse_cmd_set,
encode_command_packet_en, get_known_payload,
DJICmdV1Header, PACKET_TYPE, COMM_DEV_TYPE,
)
class ListFormatter():
def __init__(self):
self.pktlist = []
def write_header(self):
pass
def write_packet(self, data, dtime=None):
self.pktlist.append(data)
class SerialMock(io.RawIOBase):
def __init__( self, port='COM1', baudrate = 19200, timeout=1,
bytesize = 8, parity = 'N', stopbits = 1, xonxoff=0,
rtscts = 0):
self.name = port
self.port = port
self.timeout = timeout
self.parity = parity
self.baudrate = baudrate
self.bytesize = bytesize
self.stopbits = stopbits
self.xonxoff = xonxoff
self.rtscts = rtscts
self.is_open = True
self._rxData = []
self._txData = []
self._wait_time = time.time()
def write( self, btarr ):
self._txData.append(btarr)
def read( self, n=1 ):
if time.time() < self._wait_time: return b""
self._wait_time = time.time() + 0.05
if len(self._rxData) < 1: return b""
btarr = self._rxData[0][0:n]
if len(btarr) >= len(self._rxData[0]):
del self._rxData[0]
else:
self._rxData[0] = self._rxData[0][n:]
return btarr
def mock_data_for_read( self, btarr ):
self._rxData.append(btarr)
def reset_input_buffer(self):
pass
@property
def in_waiting(self):
if time.time() < self._wait_time: return 0
if len(self._rxData) < 1: return 0
return len(self._rxData[0])
class SerialBulkWrap():
def __init__( self, dev, ep_in, ep_out, timeout=100):
self.name = 'BULK'
self.dev = dev
self.ep_in = ep_in
self.ep_out = ep_out
self.timeout = timeout
self.port = None
self.baudrate = None
self.port_open = False
def write( self, btarr ):
self.ep_out.write(btarr)
def read( self, n=1):
btarr = self.ep_in.read(self.ep_in.wMaxPacketSize,self.timeout)
return btarr
def close(self):
import usb.util
usb.util.dispose_resources(self.dev)
def reset_input_buffer(self):
pass
@property
def in_waiting(self):
return 1
def find_correct_device(dev):
# Ugly way of finding the correct bulk device.
# I truly wish this would be simpler.
import usb.util
for d in dev:
for cfg in d:
# see if we can get the interface description.
interface_description = usb.util.get_string(d, cfg.iConfiguration)
if "," in interface_description:
# UAVs
# They may have multiple "bulk" intefaces (all with the same
# bInterfaceSubClass), so we need to look for the "ACM" one
# (which is the DUML BULK interface)
interface_descriptions = interface_description.split(",")
try:
interface_for_acm = interface_descriptions.index("acm") + 1
except ValueError:
print("no ACM (bulk) interface here.")
continue
print("using bInterfaceNumber %d" % interface_for_acm)
for intf in cfg:
if intf.bInterfaceNumber == interface_for_acm:
assert intf.bInterfaceSubClass == 0x43, "we expect the ACM inteface to be of the right bInterfaceSubclass"
return intf
elif "_" in interface_description:
# RM330: "mtp_bulk_adb"
# Interface 0: mtp
# Interface 1: bulk
# Interface 2: adb
# but:
# RM510: "mtp_bulk_adb"
# Interface 0: bulk
# Interface 1: mtp
# Interface 2: adb
# So we resort to look for a bulk interface based on subclass.
# (Same strategy doesn't work on e.g. wm260 because they
# have multiple bulk interfaces with the same subclass.)
interface_descriptions = interface_description.split("_")
if "bulk" in interface_descriptions:
interface_for_acm = interface_descriptions.index("bulk")
for intf in cfg:
if intf.bInterfaceSubClass == 0x43:
return intf
else:
print("no BULK interface here.")
continue
else:
print("can't parse", interface_descriptions)
continue
return None
def open_usb(po):
import usb.core
import usb.util
import usb.backend.libusb0 as myusb
mybackend = myusb.get_backend()
dev = usb.core.find(idVendor=0x2ca3, find_all = True, backend=mybackend)
intf = find_correct_device(dev)
assert intf is not None, "Could not find any DJI BULK device"
ep_out = usb.util.find_descriptor(
intf,
# match the first OUT endpoint
custom_match = \
lambda e: \
usb.util.endpoint_direction(e.bEndpointAddress) == \
usb.util.ENDPOINT_OUT)
ep_in = usb.util.find_descriptor(
intf,
# match the first OUT endpoint
custom_match = \
lambda e: \
usb.util.endpoint_direction(e.bEndpointAddress) == \
usb.util.ENDPOINT_IN)
if dev and ep_in and ep_out:
return SerialBulkWrap(dev,ep_in,ep_out, po.timeout)
else:
assert False, "Could not find endpoints for bulk interface"
def do_read_packets(ser, state, info):
out = ListFormatter()
num_bytes = ser.in_waiting
while (num_bytes > 0):
# The read() function in Python is ridiculously slow; instead of using it
# many times to read one byte, let's call it once for considerable buffer
btarr = ser.read(min(num_bytes,4096))
for bt in btarr:
state, info = do_packetise_byte(bt, state, info)
if (is_packet_ready(state)):
state = store_packet(out, state)
elif (is_packet_damaged(state)):
state = drop_packet(state)
if (is_packet_at_finish(state)):
break
num_bytes = ser.in_waiting
if ser.name == 'BULK':
num_bytes = 0
return state, out.pktlist, info
def packet_header_is_reply_for_request(rplhdr, reqhdr, responsebit_check=False, seqnum_check=True):
if (rplhdr.version != 1):
return False
if (rplhdr.cmd_set != reqhdr.cmd_set):
return False
if (rplhdr.cmd_id != reqhdr.cmd_id):
return False
if (rplhdr.sender_info != reqhdr.receiver_info):
return False
if (rplhdr.receiver_info != reqhdr.sender_info):
return False
if (rplhdr.seq_num != reqhdr.seq_num) and seqnum_check:
return False
# Many responses don't have the RESPONSE bit set
if (rplhdr.packet_type != PACKET_TYPE.RESPONSE) and responsebit_check:
return False
# Ack types should be different - respone should have NO_ACK; but in practice this varies
#if (rplhdr.ack_type != reqhdr.ack_type):
# return False
return True
def find_reply_for_request(po, pktlist, pktreq, seqnum_check=True):
if len(pktlist) == 0:
return None
reqhdr = DJICmdV1Header.from_buffer_copy(pktreq)
for pktrpl in pktlist:
rplhdr = DJICmdV1Header.from_buffer_copy(pktrpl)
if packet_header_is_reply_for_request(rplhdr, reqhdr, seqnum_check=seqnum_check):
return pktrpl
if (po.verbose > 2):
print("Received unrelated packet:")
print(' '.join('{:02x}'.format(x) for x in pktrpl))
return None
def do_send_request(po, ser, pktprop):
pktreq = encode_command_packet_en(pktprop.sender_type, pktprop.sender_index,
pktprop.receiver_type, pktprop.receiver_index, pktprop.seq_num,
pktprop.pack_type, pktprop.ack_type, pktprop.encrypt_type, pktprop.cmd_set,
pktprop.cmd_id, pktprop.payload)
if (po.verbose > 1):
print("Prepared binary packet:")
print(' '.join('{:02x}'.format(x) for x in pktreq))
if (po.verbose > 0):
print("Sending packet...")
ser.write(pktreq)
return pktreq
def do_receive_reply(po, ser, pktreq, seqnum_check=True):
""" Receive reply after sending packet pktreq to interface ser.
"""
ser.reset_input_buffer()
if (po.verbose > 1):
print("Waiting for reply...")
info = PktInfo()
state = PktState()
state.verbose = po.verbose
state.pname = ser.port
pktrpl = None
show_stats = False
loop_end = False
timeout_time = time.time() + po.timeout / 1000
while not loop_end:
# Wait for something to do
if time.time() > timeout_time:
if (po.verbose > 0):
print("Timeout while waiting for reply.")
show_stats = True
loop_end = True
if True:
state, pktlist, info = do_read_packets(ser, state, info)
pktrpl = find_reply_for_request(po, pktlist, pktreq, seqnum_check=seqnum_check)
if pktrpl is not None:
show_stats = True
loop_end = True
if (show_stats):
if (po.verbose > 0):
print("Retrieved {:d} packets ({:d}b), dropped {:d} fragments ({:d}b)".format(
info.count_ok, info.bytes_ok, info.count_bad, info.bytes_bad))
show_stats = False
return pktrpl
def do_send_request_receive_reply(po):
if not po.bulk:
# Open serial port
import serial
ser = serial.Serial(po.port, baudrate=po.baudrate, timeout=0)
else:
ser = open_usb(po)
if (po.verbose > 0):
print("Opened {} at {}".format(ser.port, ser.baudrate))
pktreq = do_send_request(po, ser, po)
pktrpl = do_receive_reply(po, ser, pktreq, seqnum_check=(not po.loose_response))
if (po.verbose > 0):
if pktrpl is not None:
print("Received response packet:")
else:
print("No response received.")
if pktrpl is not None:
print(' '.join('{:02x}'.format(x) for x in pktrpl))
if (po.verbose > 0):
rplhdr = DJICmdV1Header.from_buffer_copy(pktrpl)
rplpayload = get_known_payload(rplhdr, pktrpl[sizeof(DJICmdV1Header):-2])
if (rplpayload is not None):
print("Parsed response - {:s}:".format(type(rplpayload).__name__))
print(rplpayload)
ser.close()
def main():
""" Main executable function.
Its task is to parse command line options and call a function which performs serial communication.
"""
parser = argparse.ArgumentParser(description=__doc__.split('.')[0])
subparser = parser.add_mutually_exclusive_group(required=True)
subparser.add_argument('--port', type=str,
help="the serial port to write to and read from")
subparser.add_argument('--bulk', action='store_true',
help="use usb bulk instead of serial connection")
parser.add_argument('-b', '--baudrate', default=9600, type=int,
help="the baudrate to use for the serial port (default is %(default)s)")
parser.add_argument('-n', '--seq_num', default=0, type=int,
help="sequence number of the packet (default is %(default)s)")
parser.add_argument('-u', '--pack_type', default="Request", type=parse_packet_type,
help="packet Type, either name or number (default is %(default)s)")
parser.add_argument('-a', '--ack_type', default="No_ACK_Needed", type=parse_ack_type,
help="acknowledgement type, either name or number (default is %(default)s)")
parser.add_argument('-e', '--encrypt_type', default="NO_ENC", type=parse_encrypt_type,
help="encryption type, either name or number (default is %(default)s)")
parser.add_argument('-s', '--cmd_set', default="GENERAL", type=parse_cmd_set,
help="command Set, either name or number (default is %(default)s)")
parser.add_argument('-i', '--cmd_id', default=0, type=int,
help="command ID (default is %(default)s)")
parser.add_argument('-w', '--timeout', default=2000, type=int,
help="how long to wait for answer, in miliseconds (default is %(default)s)")
parser.add_argument('--loose-response', action="store_true",
help="use loosen criteria when searching for response to the packet")
parser.add_argument('-v', '--verbose', action='count', default=0,
help="increases verbosity level; max level is set by -vvv")
parser.add_argument('--version', action='version', version="%(prog)s {version} by {author}"
.format(version=__version__, author=__author__),
help="display version information and exit")
subparser = parser.add_mutually_exclusive_group()
subparser.add_argument('-t', '--sender', type=parse_module_ident,
help="sender Type and Index, in TTII form")
subparser.add_argument('-tt', '--sender_type', default="PC", type=parse_module_type,
help="sender(transmitter) Type, either name or number (default is %(default)s)")
parser.add_argument('-ti', '--sender_index', default=0, type=int,
help="sender(transmitter) Index (default is %(default)s)")
subparser = parser.add_mutually_exclusive_group()
subparser.add_argument('-r', '--receiver', type=parse_module_ident,
help="receiver Type and Index, in TTII form (ie. 0300)")
subparser.add_argument('-rt', '--receiver_type', default="ANY", type=parse_module_type,
help="receiver Type, either name or number (default is %(default)s)")
parser.add_argument('-ri', '--receiver_index', default=0, type=int,
help="receiver index (default is %(default)s)")
subparser = parser.add_mutually_exclusive_group()
subparser.add_argument('-x', '--payload_hex', type=str,
help="provide payload as hex string")
subparser.add_argument('-p', '--payload_bin', default="", type=str,
help="provide binary payload directly (default payload is empty)")
po = parser.parse_args()
if (po.payload_hex is not None):
po.payload = bytes.fromhex(po.payload_hex)
else:
po.payload = bytes(po.payload_bin, 'utf-8')
if (po.sender is not None):
po.sender_type = COMM_DEV_TYPE(int(po.sender.group(1), 10))
po.sender_index = int(po.sender.group(2), 10)
if (po.receiver is not None):
po.receiver_type = COMM_DEV_TYPE(int(po.receiver.group(1), 10))
po.receiver_index = int(po.receiver.group(2), 10)
do_send_request_receive_reply(po)
if __name__ == '__main__':
try:
main()
except Exception as ex:
eprint("Error: "+str(ex))
if 0: raise
sys.exit(10)