2021-06-23 14:58:44 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import argparse
|
2021-07-22 02:49:23 +00:00
|
|
|
import subprocess
|
2021-06-23 14:58:44 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import re
|
|
|
|
import struct
|
|
|
|
import datetime
|
|
|
|
|
2021-07-22 02:49:23 +00:00
|
|
|
OTP_MAGIC = 0xBABE
|
2021-10-15 11:05:14 +00:00
|
|
|
OTP_VERSION = 0x02
|
2021-07-22 02:49:23 +00:00
|
|
|
OTP_RESERVED = 0x00
|
|
|
|
|
|
|
|
OTP_COLORS = {
|
|
|
|
"unknown": 0x00,
|
|
|
|
"black": 0x01,
|
|
|
|
"white": 0x02,
|
|
|
|
}
|
2021-10-15 11:05:14 +00:00
|
|
|
|
2021-07-22 02:49:23 +00:00
|
|
|
OTP_REGIONS = {
|
|
|
|
"unknown": 0x00,
|
2021-07-22 09:44:52 +00:00
|
|
|
"eu_ru": 0x01,
|
|
|
|
"us_ca_au": 0x02,
|
|
|
|
"jp": 0x03,
|
2021-07-22 02:49:23 +00:00
|
|
|
}
|
|
|
|
|
2021-10-15 11:05:14 +00:00
|
|
|
OTP_DISPLAYS = {
|
|
|
|
"unknown": 0x00,
|
|
|
|
"erc": 0x01,
|
|
|
|
"mgg": 0x02,
|
|
|
|
}
|
2021-07-22 02:49:23 +00:00
|
|
|
|
2021-10-21 12:24:34 +00:00
|
|
|
from flipper.app import App
|
|
|
|
from flipper.cube import CubeProgrammer
|
2021-06-23 14:58:44 +00:00
|
|
|
|
2021-10-21 12:24:34 +00:00
|
|
|
|
|
|
|
class Main(App):
|
|
|
|
def init(self):
|
|
|
|
# SubParsers
|
2021-06-23 14:58:44 +00:00
|
|
|
self.subparsers = self.parser.add_subparsers(help="sub-command help")
|
2021-10-15 11:05:14 +00:00
|
|
|
# Generate All
|
|
|
|
self.parser_generate_all = self.subparsers.add_parser(
|
2021-07-22 02:49:23 +00:00
|
|
|
"generate", help="Generate OTP binary"
|
2021-06-23 14:58:44 +00:00
|
|
|
)
|
2021-11-23 16:13:34 +00:00
|
|
|
self._addFirstArgs(self.parser_generate_all)
|
|
|
|
self._addSecondArgs(self.parser_generate_all)
|
2021-10-15 11:05:14 +00:00
|
|
|
self.parser_generate_all.add_argument("file", help="Output file")
|
|
|
|
self.parser_generate_all.set_defaults(func=self.generate_all)
|
|
|
|
# Flash First
|
|
|
|
self.parser_flash_first = self.subparsers.add_parser(
|
|
|
|
"flash_first", help="Flash first block of OTP to device"
|
2021-07-22 02:49:23 +00:00
|
|
|
)
|
2021-11-23 16:13:34 +00:00
|
|
|
self._addArgsSWD(self.parser_flash_first)
|
|
|
|
self._addFirstArgs(self.parser_flash_first)
|
2021-10-15 11:05:14 +00:00
|
|
|
self.parser_flash_first.set_defaults(func=self.flash_first)
|
|
|
|
# Flash Second
|
|
|
|
self.parser_flash_second = self.subparsers.add_parser(
|
|
|
|
"flash_second", help="Flash second block of OTP to device"
|
|
|
|
)
|
2021-11-23 16:13:34 +00:00
|
|
|
self._addArgsSWD(self.parser_flash_second)
|
|
|
|
self._addSecondArgs(self.parser_flash_second)
|
2021-10-15 11:05:14 +00:00
|
|
|
self.parser_flash_second.set_defaults(func=self.flash_second)
|
|
|
|
# Flash All
|
|
|
|
self.parser_flash_all = self.subparsers.add_parser(
|
|
|
|
"flash_all", help="Flash OTP to device"
|
2021-07-22 02:49:23 +00:00
|
|
|
)
|
2021-11-23 16:13:34 +00:00
|
|
|
self._addArgsSWD(self.parser_flash_all)
|
|
|
|
self._addFirstArgs(self.parser_flash_all)
|
|
|
|
self._addSecondArgs(self.parser_flash_all)
|
2021-10-15 11:05:14 +00:00
|
|
|
self.parser_flash_all.set_defaults(func=self.flash_all)
|
2021-06-23 14:58:44 +00:00
|
|
|
# logging
|
|
|
|
self.logger = logging.getLogger()
|
2021-07-22 02:49:23 +00:00
|
|
|
self.timestamp = datetime.datetime.now().timestamp()
|
2021-06-23 14:58:44 +00:00
|
|
|
|
2021-11-23 16:13:34 +00:00
|
|
|
def _addArgsSWD(self, parser):
|
2021-10-15 11:05:14 +00:00
|
|
|
parser.add_argument(
|
|
|
|
"--port", type=str, help="Port to connect: swd or usb1", default="swd"
|
|
|
|
)
|
2021-11-23 16:13:34 +00:00
|
|
|
parser.add_argument("--serial", type=str, help="ST-Link Serial Number")
|
2021-10-15 11:05:14 +00:00
|
|
|
|
2021-11-23 16:13:34 +00:00
|
|
|
def _getCubeParams(self):
|
|
|
|
return {
|
|
|
|
"port": self.args.port,
|
|
|
|
"serial": self.args.serial,
|
|
|
|
}
|
|
|
|
|
|
|
|
def _addFirstArgs(self, parser):
|
2021-10-15 11:05:14 +00:00
|
|
|
parser.add_argument("--version", type=int, help="Version", required=True)
|
|
|
|
parser.add_argument("--firmware", type=int, help="Firmware", required=True)
|
|
|
|
parser.add_argument("--body", type=int, help="Body", required=True)
|
|
|
|
parser.add_argument("--connect", type=int, help="Connect", required=True)
|
|
|
|
parser.add_argument("--display", type=str, help="Display", required=True)
|
|
|
|
|
2021-11-23 16:13:34 +00:00
|
|
|
def _addSecondArgs(self, parser):
|
2021-10-15 11:05:14 +00:00
|
|
|
parser.add_argument("--color", type=str, help="Color", required=True)
|
|
|
|
parser.add_argument("--region", type=str, help="Region", required=True)
|
2021-07-22 02:49:23 +00:00
|
|
|
parser.add_argument("--name", type=str, help="Name", required=True)
|
|
|
|
|
2021-11-23 16:13:34 +00:00
|
|
|
def _processFirstArgs(self):
|
2021-10-15 11:05:14 +00:00
|
|
|
if self.args.display not in OTP_DISPLAYS:
|
|
|
|
self.parser.error(f"Invalid display. Use one of {OTP_DISPLAYS.keys()}")
|
|
|
|
self.args.display = OTP_DISPLAYS[self.args.display]
|
|
|
|
|
2021-11-23 16:13:34 +00:00
|
|
|
def _processSecondArgs(self):
|
2021-07-22 02:49:23 +00:00
|
|
|
if self.args.color not in OTP_COLORS:
|
|
|
|
self.parser.error(f"Invalid color. Use one of {OTP_COLORS.keys()}")
|
|
|
|
self.args.color = OTP_COLORS[self.args.color]
|
2021-06-23 14:58:44 +00:00
|
|
|
|
2021-07-22 02:49:23 +00:00
|
|
|
if self.args.region not in OTP_REGIONS:
|
|
|
|
self.parser.error(f"Invalid region. Use one of {OTP_REGIONS.keys()}")
|
|
|
|
self.args.region = OTP_REGIONS[self.args.region]
|
2021-06-23 14:58:44 +00:00
|
|
|
|
2021-07-22 02:49:23 +00:00
|
|
|
if len(self.args.name) > 8:
|
|
|
|
self.parser.error("Name is too long. Max 8 symbols.")
|
2021-07-29 15:27:06 +00:00
|
|
|
if re.match(r"^[a-zA-Z0-9.]+$", self.args.name) is None:
|
2021-07-22 02:49:23 +00:00
|
|
|
self.parser.error(
|
|
|
|
"Name contains incorrect symbols. Only a-zA-Z0-9 allowed."
|
|
|
|
)
|
2021-06-23 14:58:44 +00:00
|
|
|
|
2021-11-23 16:13:34 +00:00
|
|
|
def _packFirst(self):
|
2021-07-22 02:49:23 +00:00
|
|
|
return struct.pack(
|
2021-10-15 11:05:14 +00:00
|
|
|
"<" "HBBL" "BBBBBBH",
|
2021-07-22 02:49:23 +00:00
|
|
|
OTP_MAGIC,
|
|
|
|
OTP_VERSION,
|
|
|
|
OTP_RESERVED,
|
|
|
|
int(self.timestamp),
|
2021-06-23 14:58:44 +00:00
|
|
|
self.args.version,
|
|
|
|
self.args.firmware,
|
|
|
|
self.args.body,
|
|
|
|
self.args.connect,
|
2021-10-15 11:05:14 +00:00
|
|
|
self.args.display,
|
|
|
|
OTP_RESERVED,
|
|
|
|
OTP_RESERVED,
|
|
|
|
)
|
|
|
|
|
2021-11-23 16:13:34 +00:00
|
|
|
def _packSecond(self):
|
2021-10-15 11:05:14 +00:00
|
|
|
return struct.pack(
|
|
|
|
"<" "BBHL" "8s",
|
2021-07-22 02:49:23 +00:00
|
|
|
self.args.color,
|
|
|
|
self.args.region,
|
2021-10-15 11:05:14 +00:00
|
|
|
OTP_RESERVED,
|
|
|
|
OTP_RESERVED,
|
2021-07-22 02:49:23 +00:00
|
|
|
self.args.name.encode("ascii"),
|
2021-06-23 14:58:44 +00:00
|
|
|
)
|
2021-07-22 02:49:23 +00:00
|
|
|
|
2021-10-15 11:05:14 +00:00
|
|
|
def generate_all(self):
|
2021-10-21 12:24:34 +00:00
|
|
|
self.logger.info(f"Generating OTP")
|
2021-11-23 16:13:34 +00:00
|
|
|
self._processFirstArgs()
|
|
|
|
self._processSecondArgs()
|
|
|
|
open(f"{self.args.file}_first.bin", "wb").write(self._packFirst())
|
|
|
|
open(f"{self.args.file}_second.bin", "wb").write(self._packSecond())
|
2021-10-21 12:24:34 +00:00
|
|
|
self.logger.info(
|
|
|
|
f"Generated files: {self.args.file}_first.bin and {self.args.file}_second.bin"
|
|
|
|
)
|
|
|
|
|
|
|
|
return 0
|
2021-10-15 11:05:14 +00:00
|
|
|
|
|
|
|
def flash_first(self):
|
2021-10-21 12:24:34 +00:00
|
|
|
self.logger.info(f"Flashing first block of OTP")
|
2021-06-23 14:58:44 +00:00
|
|
|
|
2021-11-23 16:13:34 +00:00
|
|
|
self._processFirstArgs()
|
2021-10-15 11:05:14 +00:00
|
|
|
|
|
|
|
filename = f"otp_unknown_first_{self.timestamp}.bin"
|
|
|
|
|
2021-10-21 12:24:34 +00:00
|
|
|
try:
|
|
|
|
self.logger.info(f"Packing binary data")
|
|
|
|
file = open(filename, "wb")
|
2021-11-23 16:13:34 +00:00
|
|
|
file.write(self._packFirst())
|
2021-10-21 12:24:34 +00:00
|
|
|
file.close()
|
|
|
|
self.logger.info(f"Flashing OTP")
|
2021-11-23 16:13:34 +00:00
|
|
|
cp = CubeProgrammer(self._getCubeParams())
|
2021-10-21 12:24:34 +00:00
|
|
|
cp.flashBin("0x1FFF7000", filename)
|
|
|
|
cp.resetTarget()
|
|
|
|
self.logger.info(f"Flashed Successfully")
|
|
|
|
os.remove(filename)
|
|
|
|
except Exception as e:
|
|
|
|
self.logger.exception(e)
|
2021-10-25 15:19:48 +00:00
|
|
|
return 1
|
2021-10-15 11:05:14 +00:00
|
|
|
|
2021-10-25 15:19:48 +00:00
|
|
|
return 0
|
2021-10-15 11:05:14 +00:00
|
|
|
|
|
|
|
def flash_second(self):
|
2021-10-21 12:24:34 +00:00
|
|
|
self.logger.info(f"Flashing second block of OTP")
|
2021-10-15 11:05:14 +00:00
|
|
|
|
2021-11-23 16:13:34 +00:00
|
|
|
self._processSecondArgs()
|
2021-10-15 11:05:14 +00:00
|
|
|
|
|
|
|
filename = f"otp_{self.args.name}_second_{self.timestamp}.bin"
|
|
|
|
|
2021-10-21 12:24:34 +00:00
|
|
|
try:
|
|
|
|
self.logger.info(f"Packing binary data")
|
|
|
|
file = open(filename, "wb")
|
2021-11-23 16:13:34 +00:00
|
|
|
file.write(self._packSecond())
|
2021-10-21 12:24:34 +00:00
|
|
|
file.close()
|
|
|
|
self.logger.info(f"Flashing OTP")
|
2021-11-23 16:13:34 +00:00
|
|
|
cp = CubeProgrammer(self._getCubeParams())
|
2021-10-21 12:24:34 +00:00
|
|
|
cp.flashBin("0x1FFF7010", filename)
|
|
|
|
cp.resetTarget()
|
|
|
|
self.logger.info(f"Flashed Successfully")
|
|
|
|
os.remove(filename)
|
|
|
|
except Exception as e:
|
|
|
|
self.logger.exception(e)
|
|
|
|
return 1
|
2021-10-15 11:05:14 +00:00
|
|
|
|
2021-10-21 12:24:34 +00:00
|
|
|
return 0
|
2021-10-15 11:05:14 +00:00
|
|
|
|
|
|
|
def flash_all(self):
|
2021-10-21 12:24:34 +00:00
|
|
|
self.logger.info(f"Flashing OTP")
|
2021-07-22 02:49:23 +00:00
|
|
|
|
2021-11-23 16:13:34 +00:00
|
|
|
self._processFirstArgs()
|
|
|
|
self._processSecondArgs()
|
2021-10-15 11:05:14 +00:00
|
|
|
|
|
|
|
filename = f"otp_{self.args.name}_whole_{self.timestamp}.bin"
|
|
|
|
|
2021-07-22 02:49:23 +00:00
|
|
|
try:
|
2021-10-21 12:24:34 +00:00
|
|
|
self.logger.info(f"Packing binary data")
|
|
|
|
file = open(filename, "wb")
|
2021-11-23 16:13:34 +00:00
|
|
|
file.write(self._packFirst())
|
|
|
|
file.write(self._packSecond())
|
2021-10-21 12:24:34 +00:00
|
|
|
file.close()
|
|
|
|
self.logger.info(f"Flashing OTP")
|
2021-11-23 16:13:34 +00:00
|
|
|
cp = CubeProgrammer(self._getCubeParams())
|
2021-10-21 12:24:34 +00:00
|
|
|
cp.flashBin("0x1FFF7000", filename)
|
|
|
|
cp.resetTarget()
|
|
|
|
self.logger.info(f"Flashed Successfully")
|
|
|
|
os.remove(filename)
|
2021-07-22 02:49:23 +00:00
|
|
|
except Exception as e:
|
|
|
|
self.logger.exception(e)
|
2021-10-21 12:24:34 +00:00
|
|
|
return 1
|
|
|
|
|
|
|
|
return 0
|
2021-07-22 02:49:23 +00:00
|
|
|
|
2021-06-23 14:58:44 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
Main()()
|