forked from Lekensteyn/lglaf
-
Notifications
You must be signed in to change notification settings - Fork 11
/
lglaf.py
executable file
·738 lines (663 loc) · 26.5 KB
/
lglaf.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
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
#!/usr/bin/env python3
#
# Interactive shell for communication with LG devices in download mode (LAF).
#
# Copyright (C) 2015 Peter Wu <peter@lekensteyn.nl>
# Copyright (C) 2017-2023 steadfasterX <steadfasterX |AT| binbash #DOT# rocks>
#
# Licensed under the MIT license <http://opensource.org/licenses/MIT>.
from __future__ import print_function
from contextlib import closing
import argparse, logging, re, struct, sys, binascii
# Enhanced prompt with history
try: import readline
except ImportError: pass
# Try USB interface
try: import usb.core, usb.util
except ImportError: pass
# Windows registry for serial port detection
try: import winreg
except ImportError:
try: import _winreg as winreg
except ImportError: winreg = None
_logger = logging.getLogger("LGLAF.py")
# Python 2/3 compat
try:
input = raw_input
except:
pass
if '\0' == b'\0':
int_as_byte = chr
else:
int_as_byte = lambda x: bytes([x])
# laf crypto for KILO challenge/response
try:
import laf_crypto
except ImportError as e:
_logger.warning("LAF Crypto failed to import! Error: %s" % e)
pass
# Use Manufacturer key for KILO challenge/response
USE_MFG_KEY = False
laf_error_codes = {
0x80000000: "FAILED",
0x80000001: "INVALID_PARAMETER",
0x80000002: "INVALID_HANDLE",
0x80000003: "DEVICE_NOT_SUPPORTED",
0x80000004: "INTERNAL_ERROR",
0x80000005: "TIMEOUT",
0x8000000F: "MORE_HEADER_DATA",
0x80000010: "MORE_DATA",
0x80000011: "INVALID_DATA",
0x80000012: "INVALID_DATA_LENGTH",
0x80000013: "INVALID_PACKET",
0x80000016: "CRC_CHECKSUM",
0x80000017: "CMD_CODE",
0x80000018: "OUTOFMEMORY",
0x80000105: "INVALID_NAME",
0x80000106: "NOT_CONNECTED",
0x80000107: "CANNOT_MAKE",
0x80000108: "FILE_NOT_FOUND",
0x80000109: "NOT_ENOUGH_QUOTA",
0x8000010a: "ACCESS_DENIED",
0x8000010c: "CANCELLED",
0x8000010d: "CONNECTION_ABORTED",
0x8000010e: "CONTINUE",
0x8000010f: "GEN_FAILURE",
0x80000110: "INCORRECT_ADDRESS",
0x80000111: "INVALID_CATEGORY",
0x80000112: "REQUEST_ABORTED",
0x80000113: "RETRY",
0x80000116: "DEVICE_NOT_AVAILABLE",
0x80000201: "IDT_MISMATCH_MODELNAME",
0x80000202: "IDT_DECOMPRES_FAILED",
0x80000203: "IDT_INVALID_OPTION",
0x80000204: "IDT_DECOMPRESS_END_FAILED",
0x80000205: "IDT_DZ_HEADER",
0x80000206: "IDT_RETRY_COUNT",
0x80000207: "IDT_HEADER_SIZE",
0x80000208: "IDT_TOT_MAGIC",
0x80000209: "UDT_DZ_HEADER_SIZE",
0x80000302: "INVALID_RESPONSE",
0x80000305: "FAILED_INSERT_QUEUE",
0x80000306: "FAILED_POP_QUEUE",
0x80000307: "INVALID_LAF_PROTOCOL",
0x80000308: "ERASE_FAILED",
0x80000309: "WEBFLAG_RESET_FAIL",
0x80000401: "FLASHING_FAIL",
0x80000402: "SECURE_FAIL",
0x80000403: "BUILD_TYPE_FAIL",
0x80000404: "CHECK_USER_SPC",
0x80000405: "FBOOT_CHECK_FAIL",
0x80000406: "INIT_FAIL",
0x80000407: "FRST_FLAG_FAIL",
0x80000408: "POWER_OFF_FAIL",
0x8000040a: "PRL_READ_FAIL",
0x80000409: "PRL_WRITE_FAIL",
}
# laf crypto for KILO challenge/response
try:
import laf_crypto
except ImportError:
_logger.warning("LAF Crypto failed to import!")
pass
# Use Manufacturer key for KILO challenge/response
USE_MFG_KEY = False
# The base protocol version. Do *not* change this!
# lglaf will auto negotiate the minimal protocol version for you
# but if for any reason you want to enforce a specific version
# start lglaf with "--proto" to force another version
BASE_PROTOCOL_VERSION = 0x1000001
DEFAULT_PROTOCOL_VERSION = BASE_PROTOCOL_VERSION
# all product ids which requires challenge response / KILO
kilo_lg_product_ids = {
0x633a: "LG_new",
}
laf_error_codes = {
0x80000000: "FAILED",
0x80000001: "INVALID_PARAMETER",
0x80000002: "INVALID_HANDLE",
0x80000003: "DEVICE_NOT_SUPPORTED",
0x80000004: "INTERNAL_ERROR",
0x80000005: "TIMEOUT",
0x8000000F: "MORE_HEADER_DATA",
0x80000010: "MORE_DATA",
0x80000011: "INVALID_DATA",
0x80000012: "INVALID_DATA_LENGTH",
0x80000013: "INVALID_PACKET",
0x80000016: "CRC_CHECKSUM",
0x80000017: "CMD_CODE",
0x80000018: "OUTOFMEMORY",
0x80000105: "INVALID_NAME",
0x80000106: "NOT_CONNECTED",
0x80000107: "CANNOT_MAKE",
0x80000108: "FILE_NOT_FOUND",
0x80000109: "NOT_ENOUGH_QUOTA",
0x8000010a: "ACCESS_DENIED",
0x8000010c: "CANCELLED",
0x8000010d: "CONNECTION_ABORTED",
0x8000010e: "CONTINUE",
0x8000010f: "GEN_FAILURE",
0x80000110: "INCORRECT_ADDRESS",
0x80000111: "INVALID_CATEGORY",
0x80000112: "REQUEST_ABORTED",
0x80000113: "RETRY",
0x80000116: "DEVICE_NOT_AVAILABLE",
0x80000201: "IDT_MISMATCH_MODELNAME",
0x80000202: "IDT_DECOMPRES_FAILED",
0x80000203: "IDT_INVALID_OPTION",
0x80000204: "IDT_DECOMPRESS_END_FAILED",
0x80000205: "IDT_DZ_HEADER",
0x80000206: "IDT_RETRY_COUNT",
0x80000207: "IDT_HEADER_SIZE",
0x80000208: "IDT_TOT_MAGIC",
0x80000209: "UDT_DZ_HEADER_SIZE",
0x80000302: "INVALID_RESPONSE",
0x80000305: "FAILED_INSERT_QUEUE",
0x80000306: "FAILED_POP_QUEUE",
0x80000307: "INVALID_LAF_PROTOCOL",
0x80000308: "ERASE_FAILED",
0x80000309: "WEBFLAG_RESET_FAIL",
0x80000401: "FLASHING_FAIL",
0x80000402: "SECURE_FAIL",
0x80000403: "BUILD_TYPE_FAIL",
0x80000404: "CHECK_USER_SPC",
0x80000405: "FBOOT_CHECK_FAIL",
0x80000406: "INIT_FAIL",
0x80000407: "FRST_FLAG_FAIL",
0x80000408: "POWER_OFF_FAIL",
0x8000040a: "PRL_READ_FAIL",
0x80000409: "PRL_WRITE_FAIL",
}
_ESCAPE_PATTERN = re.compile(b'''\\\\(
x[0-9a-fA-F]{2} |
[0-7]{1,3} |
.)''', re.VERBOSE)
_ESCAPE_MAP = {
b'n': b'\n',
b'r': b'\r',
b't': b'\t',
}
_ESCAPED_CHARS = b'"\\\''
def text_unescape(text):
"""Converts a string with escape sequences to bytes."""
text_bin = text.encode("utf8")
def sub_char(m):
what = m.group(1)
if what[0:1] == b'x' and len(what) == 3:
return int_as_byte(int(what[1:], 16))
elif what[0:1] in b'01234567':
return int_as_byte(int(what, 8))
elif what in _ESCAPE_MAP:
return _ESCAPE_MAP[what]
elif what in _ESCAPED_CHARS:
return what
else:
raise RuntimeError('Unknown escape sequence \\%s' %
what.decode('utf8'))
return re.sub(_ESCAPE_PATTERN, sub_char, text_bin)
def parse_number_or_escape(text):
try:
return int(text, 0) if text else 0
except ValueError:
return text_unescape(text)
### Protocol-related stuff
def crc16(data):
"""CRC-16-CCITT computation with LSB-first and inversion."""
crc = 0xffff
for byte in data:
crc ^= byte
for bits in range(8):
if crc & 1:
crc = (crc >> 1) ^ 0x8408
else:
crc >>= 1
return crc ^ 0xffff
def invert_dword(dword_bin):
dword = struct.unpack("I", dword_bin)[0]
return struct.pack("I", dword ^ 0xffffffff)
def make_request(cmd, args=[], body=b''):
if not isinstance(cmd, bytes):
cmd = cmd.encode('ascii')
assert isinstance(body, bytes), "body must be bytes"
# Header: command, args, ... body size, header crc16, inverted command
header = bytearray(0x20)
def set_header(offset, val):
if isinstance(val, int):
val = struct.pack('<I', val)
assert len(val) == 4, "Header field requires a DWORD, got %s %r" % \
(type(val).__name__, val)
header[offset:offset+4] = val
set_header(0, cmd)
assert len(args) <= 4, "Header cannot have more than 4 arguments"
for i, arg in enumerate(args):
set_header(4 * (i + 1), arg)
# 0x14: body length
set_header(0x14, len(body))
# 0x1c: Inverted command
set_header(0x1c, invert_dword(cmd))
# Header finished (with CRC placeholder), append body...
header += body
# finish with CRC for header and body
set_header(0x18, crc16(header))
return bytes(header)
def make_hdlc_request(body):
assert isinstance(body, bytes), "body must be bytes"
packet = bytearray(len(body) + 3)
packet[0:] = body
# Add CRC16 checksum (as uint16!)
packet[len(body):] = struct.pack('<H', crc16(body))
# Add terminator byte
packet[-1:] = b'\x7F'
return bytes(packet)
def validate_message(payload, ignore_crc=False):
if len(payload) < 0x20:
raise RuntimeError("Invalid header length: %d" % len(payload))
if not ignore_crc:
crc = struct.unpack_from('<I', payload, 0x18)[0]
payload_before_crc = bytearray(payload)
payload_before_crc[0x18:0x18+4] = b'\0\0\0\0'
crc_exp = crc16(payload_before_crc)
if crc_exp != crc:
raise RuntimeError("Expected CRC %04x, found %04x" % (crc_exp, crc))
tail_exp = invert_dword(payload[0:4])
tail = payload[0x1c:0x1c+4]
if tail_exp != tail:
raise RuntimeError("Expected trailer %r, found %r" % (tail_exp, tail))
def make_exec_request(shell_command, rawshell):
# Allow use of shell constructs such as piping and reports syntax errors
# such as unterminated quotes. Remaining limitation: repetitive spaces are
# still eaten.
# If rawshell is set, execute the command as it's provided
if rawshell:
argv = b''
else:
argv = b'sh -c eval\t"$*"</dev/null\t2>&1 -- '
argv += shell_command.encode('ascii')
if len(argv) > 255:
raise RuntimeError("Command length %d is larger than 255" % len(argv))
return make_request(b'EXEC', body=argv + b'\0')
### USB or serial port communication
class Communication(object):
def __init__(self):
self.read_buffer = b''
self.protocol_version = 0
self.protocol_negotiation = False
def read(self, n, timeout=None):
"""Reads exactly n bytes."""
need = n - len(self.read_buffer)
while need > 0:
buff = self._read(need, timeout=timeout)
self.read_buffer += buff
if not buff:
raise EOFError
need -= len(buff)
data, self.read_buffer = self.read_buffer[0:n], self.read_buffer[n:]
return data
def _read(self, n, timeout=None):
"""Try one read, possibly returning less or more than n bytes."""
raise NotImplementedError
def write(self, data):
raise NotImplementedError
def close(self):
raise NotImplementedError
def reset(self):
self.read_buffer = b''
def call(self, payload, timeout=None):
"""Sends a command and returns its response."""
validate_message(payload)
self.write(payload)
_logger.debug("using timeout value of: %s", timeout)
header = self.read(0x20,timeout=timeout)
validate_message(header, ignore_crc=True)
cmd = header[0:4]
size = struct.unpack_from('<I', header, 0x14)[0]
# could validate CRC and inverted command here...
data = self.read(size) if size else b''
if cmd == b'FAIL':
errCode = struct.unpack_from('<I', header, 4)[0]
msg = 'LAF_ERROR_%s' % laf_error_codes.get(errCode, '<unknown>')
raise RuntimeError('Command failed with error code %#x (%s)' % (errCode, msg))
if cmd != payload[0:4]:
raise RuntimeError("Unexpected response: %r" % header)
return header, data
class FileCommunication(Communication):
def __init__(self, file_path):
super(FileCommunication, self).__init__()
if sys.version_info[0] >= 3:
self.f = open("\\\\.\\"+file_path, 'r+b', buffering=0)
else:
self.f = open("\\\\.\\"+file_path, 'r+b')
# FIXME: detect it like on USB:
self.CR_MODE = "forced"
self.CR_NEEDED=0
def _read(self, n, timeout=None):
return self.f.read(n)
def write(self, data):
self.f.write(data)
def close(self):
self.f.close()
class USBCommunication(Communication):
VENDOR_ID_LG = 0x1004
# Read timeout. Set to 0 to disable timeouts
READ_TIMEOUT_MS = 450000
def __init__(self,cr):
super(USBCommunication, self).__init__()
# Match device using heuristics on the interface/endpoint descriptors,
# this avoids hardcoding idProduct.
self.usbdev = usb.core.find(idVendor=self.VENDOR_ID_LG,
custom_match = self._match_device)
if self.usbdev is None:
raise RuntimeError("USB device not found")
self.usbdev.reset()
cr_device = kilo_lg_product_ids.get(self.usbdev.idProduct,'')
_logger.debug("product id in CR list: >%s<", cr_device)
if cr_device:
_logger.debug("Device is: %x, %s. Enabling Challenge/Response!", self.usbdev.idProduct, cr_device)
self.CR_NEEDED=1
else:
self.CR_NEEDED=0
self.CR_MODE = None
if cr == "yes":
self.CR_NEEDED=1
self.CR_MODE = "forced"
_logger.debug("forced CR detection to: %s / %i", cr, self.CR_NEEDED )
elif cr == "no":
self.CR_NEEDED=0
self.CR_MODE = "forced"
_logger.debug("forced CR detection to: %s / %i", cr, self.CR_NEEDED )
_logger.debug("Final CR detection: %s / %i", cr, self.CR_NEEDED )
cfg = usb.util.find_descriptor(self.usbdev,
custom_match=self._match_configuration)
current_cfg = self.usbdev.get_active_configuration()
if cfg.bConfigurationValue != current_cfg.bConfigurationValue:
try:
cfg.set()
except usb.core.USBError as e:
_logger.warning("Failed to set configuration, "
"has a kernel driver claimed the interface?")
raise e
for intf in cfg:
if self.usbdev.is_kernel_driver_active(intf.bInterfaceNumber):
_logger.debug("Detaching kernel driver for intf %d",
intf.bInterfaceNumber)
self.usbdev.detach_kernel_driver(intf.bInterfaceNumber)
if self._match_interface(intf):
self._set_interface(intf)
assert self.ep_in
assert self.ep_out
def _match_device(self, device):
return any(
usb.util.find_descriptor(cfg, custom_match=self._match_interface)
for cfg in device
)
def _set_interface(self, intf):
for ep in intf:
ep_dir = usb.util.endpoint_direction(ep.bEndpointAddress)
if ep_dir == usb.util.ENDPOINT_IN:
self.ep_in = ep.bEndpointAddress
else:
self.ep_out = ep.bEndpointAddress
_logger.debug("Using endpoints %02x (IN), %02x (OUT)",
self.ep_in, self.ep_out)
def _match_interface(self, intf):
return intf.bInterfaceClass == 255 and \
intf.bInterfaceSubClass == 255 and \
intf.bInterfaceProtocol in [ 0, 255 ] and \
intf.bNumEndpoints == 2 and all(
usb.util.endpoint_type(ep.bmAttributes) ==
usb.util.ENDPOINT_TYPE_BULK
for ep in intf
)
def _match_configuration(self, config):
return usb.util.find_descriptor(config,
custom_match=self._match_interface)
def _read(self, n, timeout=None):
if timeout is None:
timeout = self.READ_TIMEOUT_MS
# device seems to use 16 KiB buffers.
array = self.usbdev.read(self.ep_in, 2**14, timeout=timeout)
try: return array.tobytes()
except: return array.tostring()
def write(self, data):
# Reset read buffer for response
if self.read_buffer:
_logger.warning('non-empty read buffer %r', self.read_buffer)
self.read_buffer = b''
self.usbdev.write(self.ep_out, data)
def close(self):
usb.util.dispose_resources(self.usbdev)
def challenge_response(comm, mode):
request_kilo = make_request(b'KILO', args=[b'CENT', b'\0\0\0\0', b'\0\0\0\0', b'\0\0\0\0'])
kilo_header, kilo_response = comm.call(request_kilo, timeout=2000)
kilo_challenge = kilo_header[8:12]
_logger.debug("Challenge: %s" % binascii.hexlify(kilo_challenge))
if USE_MFG_KEY:
key = b'lgowvqnltpvtgogwswqn~n~mtjjjqxro'
else:
key = b'qndiakxxuiemdklseqid~a~niq,zjuxl'
kilo_response = laf_crypto.encrypt_kilo_challenge(key, kilo_challenge)
_logger.debug("Response: %s" % binascii.hexlify(kilo_response))
mode_bytes = struct.pack('<I', mode)
kilo_metr_request = make_request(b'KILO', args=[b'METR', b'\0\0\0\0', mode_bytes, b'\0\0\0\0'],
body=bytes(kilo_response))
metr_header, metr_response = comm.call(kilo_metr_request)
_logger.debug("KILO METR Response -> Header: %s, Body: %s" % (
binascii.hexlify(metr_header), binascii.hexlify(metr_response)))
def set_protocol(comm, nego=None, hello=False, DEV_PROTOCOL_VERSION=0x0):
"""
sets the protocol either manually or tries to auto-detect it
will respect hello
"""
# Wait for at most 5 seconds for a response... it shouldn't take that long
# and otherwise something is wrong.
HELLO_READ_TIMEOUT = 5000
if nego is not None:
no_negotiation = True
else:
no_negotiation = False
_logger.debug("BASE_PROTOCOL_VERSION: %06x" % BASE_PROTOCOL_VERSION)
_logger.debug("DEV_PROTOCOL_VERSION: %06x" % DEV_PROTOCOL_VERSION)
if DEV_PROTOCOL_VERSION != 0x0 and DEV_PROTOCOL_VERSION != BASE_PROTOCOL_VERSION:
_logger.debug("Switching protocol to %06x" % DEV_PROTOCOL_VERSION)
comm.protocol_version = DEV_PROTOCOL_VERSION
hello_proto_version = struct.pack("<I", DEV_PROTOCOL_VERSION)
else:
comm.protocol_version = BASE_PROTOCOL_VERSION
hello_proto_version = struct.pack("<I", BASE_PROTOCOL_VERSION)
if not hello:
_logger.debug("Using HELLO!")
hello_request = make_request(b'HELO', args=[hello_proto_version])
comm.write(hello_request)
data = comm.read(0x20, timeout=HELLO_READ_TIMEOUT)
if data[0:4] != b'HELO':
# Unexpected response, maybe some stale data from a previous execution?
while data[0:4] != b'HELO':
try:
validate_message(data, ignore_crc=True)
size = struct.unpack_from('<I', data, 0x14)[0]
comm.read(size, timeout=HELLO_READ_TIMEOUT)
except RuntimeError: pass
# Flush read buffer
comm.reset()
data = comm.read(0x20, timeout=HELLO_READ_TIMEOUT)
# Just to be sure, send another HELO request.
comm.call(hello_request)
# Assign received (min) protocol version
protocol_version = struct.unpack_from('<I', data, 0x8)[0]
# when there is no min version reported force the oldest one
if protocol_version >= 268435457:
_logger.debug("No minimum version reported (hex: %x / bytes: %i) so we will use the predefined one (%x)" % (protocol_version, protocol_version, BASE_PROTOCOL_VERSION))
comm.protocol_version = BASE_PROTOCOL_VERSION
no_negotiation = True
else:
_logger.debug("Switching to minimum version reported by lafd")
comm.protocol_version = protocol_version
# inform when a negotiation is required
if no_negotiation or BASE_PROTOCOL_VERSION != DEFAULT_PROTOCOL_VERSION:
if no_negotiation and nego is not None:
_logger.debug("Negotiation skipped, %s" % nego)
comm.protocol_version = int(nego,16)
else:
comm.protocol_version = BASE_PROTOCOL_VERSION
comm.protocol_negotiation = False
else:
_logger.debug("Negotiation in-use")
_logger.debug("Negotiated protocol version: 0x%x" % comm.protocol_version)
comm.protocol_negotiation = True
def detect_serial_path():
try:
path = r'HARDWARE\DEVICEMAP\SERIALCOMM'
with winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, path) as key:
for i in range(winreg.QueryInfoKey(key)[1]):
name, value, value_type = winreg.EnumValue(key, i)
# match both \Device\LGANDNETDIAG1 and \Device\LGVZANDNETDIAG1
name = name.upper()
if name.startswith(r'\DEVICE\LG') and name.endswith('ANDNETDIAG1'):
return value
except OSError: pass
return None
def autodetect_device(cr):
if winreg is not None and 'usb.core' not in sys.modules:
serial_path = detect_serial_path()
_logger.debug("Using serial port: %s", serial_path)
if not serial_path:
raise RuntimeError("Device not found, try installing LG drivers")
return FileCommunication(serial_path)
else:
if 'usb.core' not in sys.modules:
raise RuntimeError("Please install PyUSB for USB support")
return USBCommunication(cr)
### Interactive loop
def get_commands(command):
if command:
yield command
return
# Happened on Win32/Py3.4.4 when: echo ls | lglaf.py --serial com4
if sys.stdin is None:
raise RuntimeError('No console input available!')
if sys.stdin.isatty():
print("LGLAF.py by steadfasterX + Peter Wu (https://lekensteyn.nl/lglaf)\n"
"Type a shell command to execute or \"exit\" to leave.",
file=sys.stderr)
prompt = '# '
else:
prompt = ''
try:
while True:
line = input(prompt)
if line == "exit":
break
if line:
yield line
except EOFError:
if prompt:
print("", file=sys.stderr)
def command_to_payload(command, rawshell):
# Handle '!' as special commands, treat others as shell command
if command[0] != '!':
return make_exec_request(command, rawshell)
command = command[1:]
# !command [arg1[,arg2[,arg3[,arg4]]]] [body]
# args are treated as integers (decimal or hex)
# body is treated as string (escape sequences are supported)
command, args, body = (command.split(' ', 2) + ['', ''])[0:3]
command = text_unescape(command)
args = list(map(parse_number_or_escape, args.split(',') + [0, 0, 0]))[0:4]
body = text_unescape(body)
return make_request(command, args, body)
# decide if CR is needed based on cr parameter and protocol version
def chk_mode(pv,cr,cmode):
cr_mode = 0
if (pv < 0x1000004 and cr == 0) or (cr == 0 and cmode == "forced"):
cr_mode = 0
elif (pv >= 0x1000004) or (cr == 1 and cmode == "forced"):
cr_mode = 1
elif (pv < 0x1000004 and cr == 1 ):
cr_mode = 1
return cr_mode
class SmartFormatter(argparse.HelpFormatter):
def _split_lines(self, text, width):
if text.startswith('F|'):
return text[2:].splitlines()
# this is the RawTextHelpFormatter._split_lines
return argparse.HelpFormatter._split_lines(self, text, width)
parser = argparse.ArgumentParser(description='LG LAF Download Mode utility', formatter_class=SmartFormatter)
parser.add_argument("--cr", choices=['yes', 'no'], help="Do initial challenge response (KILO CENT/METR)")
parser.add_argument("--skip-hello", action="store_true", dest="skip_hello",
help="Immediately send commands, skip HELO message")
parser.add_argument('--rawshell', action="store_true",
help="Execute shell commands as-is, needed on recent devices. "
"CAUTION: stderr output is not redirected!")
parser.add_argument("-c", "--command", help='Shell command to execute')
parser.add_argument("--serial", metavar="PATH", dest="serial_path",
help="Path to serial device (e.g. COM4).")
parser.add_argument("--debug", action='store_true', help="Enable debug messages")
parser.add_argument("--showproto", action='store_true', help="Just print the used LAF protocol version. Includes protocol negotiation.")
parser.add_argument("--proto", nargs='?',
help="F|Forces a specific protocol version, skips protocol negotiation.\n \
Format:\n\
--proto 0x1000003 for version 3\n\
--proto 0x1000018 for version 18")
def set_dev_proto(args, BASE_PROTOCOL_VERSION):
"""
"""
if args.proto:
pattern = re.compile("^0x1([0-9]{6,6})$")
if not pattern.match(args.proto):
_logger.error("Wrong format (%s) for protocol version! Check --help." % args.proto)
return
hex_proto = int(args.proto,16)
_logger.debug("WARNING: Forcing protocol to %x" % hex_proto)
BASE_PROTOCOL_VERSION = hex_proto
return BASE_PROTOCOL_VERSION
def main():
args = parser.parse_args()
logging.basicConfig(format='%(name)s: %(levelname)s: %(message)s',
level=logging.DEBUG if args.debug else logging.INFO)
# Binary stdout (output data from device as-is)
try: stdout_bin = sys.stdout.buffer
except: stdout_bin = sys.stdout
global BASE_PROTOCOL_VERSION
DEV_PROTOCOL_VERSION = set_dev_proto(args, BASE_PROTOCOL_VERSION)
if args.serial_path:
comm = FileCommunication(args.serial_path)
else:
comm = autodetect_device(args.cr)
_logger.debug("Trying protocol version: %07x" % DEV_PROTOCOL_VERSION)
set_protocol(comm, args.proto, args.skip_hello, DEV_PROTOCOL_VERSION)
if not args.skip_hello:
_logger.debug("Hello done, proceeding with commands")
#if comm.protocol_negotiation:
# set_protocol(comm, args.proto, DEV_PROTOCOL_VERSION=comm.protocol_version)
with closing(comm):
_logger.debug("Using Protocol version: 0x%x" % comm.protocol_version)
_logger.debug("CR detection: %i" % comm.CR_NEEDED)
if args.showproto:
print("%x" % comm.protocol_version)
else:
for command in get_commands(args.command):
try:
cr_needed = chk_mode(comm.protocol_version,comm.CR_NEEDED,comm.CR_MODE)
use_rawshell = (cr_needed == 1)
payload = command_to_payload(command, use_rawshell)
# Dirty hack
if cr_needed == 1:
if payload[0:4] == b'UNLK' or \
payload[0:4] == b'OPEN' or \
payload[0:4] == b'EXEC':
challenge_response(comm, 2)
elif payload[0:4] == b'CLSE':
challenge_response(comm, 4)
header, response = comm.call(payload)
# For debugging, print header
if command[0] == '!':
_logger.debug('Header: %s',
' '.join(repr(header[i:i+4]).replace("\\x00", "\\0")
for i in range(0, len(header), 4)))
stdout_bin.write(response)
except Exception as e:
_logger.warning(e)
if args.debug:
import traceback; traceback.print_exc()
if __name__ == '__main__':
main()