protocol.md: update erase, read, exec

Thanks to hints from /proc/kmsg, I found the IOCTL_TRIM_CMD (0x1277)
hint. From the kmsg, the meaning of "LAF" was also found (which could be
discovered via the lafd binary too...).

The whence option for read was observed by putting 0xffffffff in the
argument and was tried because the DLL showed a fourth argument that was
always zero.
This commit is contained in:
Peter Wu 2015-12-28 23:59:21 +01:00
parent 01efff446d
commit ab642bd7c0

View file

@ -1,8 +1,8 @@
# LG LAF Protocol # LG LAF Protocol
This document is a reverse-engineered protocol description for "LG LAG", the This document is a reverse-engineered protocol description for LG Advanced Flash
download mode offered by various LG models. It is based on analysis on the (LAF), the download mode offered by various LG models. It is based on analysis
`Send_Command.exe` utility and `LGD855_20140526_LGFLASHv160.dll` file and a USB on the `Send_Command.exe` utility and `LGD855_20140526_LGFLASHv160.dll` file and
trace using Wireshark and usbmon on Linux. Some commands were found in the a USB trace using Wireshark and usbmon on Linux. Some commands were found in the
`/sbin/lafd` binary. `/sbin/lafd` binary.
This document uses the following conventions for types: This document uses the following conventions for types:
@ -24,7 +24,7 @@ contains 32-bit DWORDs, integers are encoded in little-endian form:
| 0x04 | 4 | var | Argument 1 | 0x04 | 4 | var | Argument 1
| 0x08 | 8 | var | Argument 2 | 0x08 | 8 | var | Argument 2
| 0x0c | 12 | var | Argument 3 | 0x0c | 12 | var | Argument 3
| 0x10 | 16 | var | Argument 4 (not encountered) | 0x10 | 16 | var | Argument 4
| 0x14 | 20 | int | Body length | 0x14 | 20 | int | Body length
| 0x18 | 24 | int | CRC-16 | 0x18 | 24 | int | CRC-16
| 0x1c | 28 | char[4] | Bit-wise invertion of command at offset 0 | 0x1c | 28 | char[4] | Bit-wise invertion of command at offset 0
@ -94,23 +94,39 @@ Integer overflow in the response offset is ignored. That is, the block offset
Reads from a file descriptor. Reads from a file descriptor.
Arguments: Arguments:
- arg1: file descriptor - arg1: file descriptor.
- arg2: offset in **blocks** (multiple of 512 bytes). - arg2: offset in **blocks** (multiple of 512 bytes).
- arg3: requested length in bytes (at most 8MiB). - arg3: requested length in bytes (at most 8MiB).
- arg4: "whence" seek mode (see below).
Response body: data in file at given offset and requested length. Response body: data in file at given offset and requested length.
Note: be sure not to read past the end of the file (512 * offset + length), this Note: be sure not to read past the end of the file (512 * offset + length), this
will hang the communication, requiring a reset (pull out battery)! will hang the communication, requiring a reset (pull out battery)!
Arg4 affects the seek mode, values for request:
- 0 (`SEEK_SET`) - seek to `512 * offset`.
- 1 (`SEEK_CUR`) - read from current position (offset argument is ignored).
- 2 (`SEEK_END`) - kind of useless when all offsets are unsigned...
- 3 (`SEEK_DATA`) - FAILs with 0x80000001 when used on `/proc/kmsg` or
`/dev/block/mmcblk0p44`. Works on a regular file though.
The response matches the request (masked with 0x3).
If the length is larger than somewhere between 227 MiB and 228 MiB, an If the length is larger than somewhere between 227 MiB and 228 MiB, an
0x80000001 error will be raised (observed with /dev/block/mmcblk0). Requesting 0x80000001 error will be raised (observed with /dev/block/mmcblk0). Requesting
lengths larger than 8 MiB however already seem to hang the communication. lengths larger than 8 MiB however already seem to hang the communication.
### ERSE - Erase ### ERSE - Erase Block
TRIMs a block (`IOCTL_TRIM_CMD`).
Arguments: Arguments:
- arg1: ? - arg1: file descriptor (open `/dev/block/mmcblk0` for writing).
- arg2: ? - arg2: start address (in sectors).
- arg3: ? - arg3: count (in sectors).
- arg4: unknown, set to zero.
Request body: none.
Note: after sending TRIM, reading the block still returned old values. After a
reboot, everything was zeroed out though.
### EXEC - Execute Command ### EXEC - Execute Command
Arguments: none Arguments: none
@ -120,7 +136,12 @@ Response body: standard output of the command.
The command is probably split on space and then passes to `execve`. In order to The command is probably split on space and then passes to `execve`. In order to
see standard error, use variables and globbing, use a command such as: see standard error, use variables and globbing, use a command such as:
sh -c "$@" -- eval 2>&1 echo $PATH sh -c "$@" -- eval 2>&1 </dev/null echo $PATH
If you need to read dmesg (or other blocking files), try to put busybox on the
device (e.g. by writing to an unused partition) and execute:
/data/busybox timeout -s 2 cat /proc/kmsg
### INFO ### INFO
Arguments: Arguments: