2021-12-25 17:01:25 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# MTK Flash Client (c) G.Kreileman, B.Kerler 2021.
|
|
|
|
# Licensed under GPLv3 License
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
import mock
|
|
|
|
import traceback
|
|
|
|
import math
|
|
|
|
import logging
|
|
|
|
import ctypes
|
|
|
|
from PySide2.QtCore import Qt, QVariantAnimation
|
|
|
|
from PySide2.QtGui import QTextOption, QPixmap, QTransform, QIcon
|
|
|
|
from PySide2.QtWidgets import *
|
|
|
|
|
|
|
|
from mtkclient.Library.mtk import Mtk
|
|
|
|
from mtkclient.Library.gpt import gpt_settings
|
|
|
|
from mtkclient.Library.mtk_main import Main, Mtk_Config
|
|
|
|
from mtkclient.Library.mtk_da_cmd import DA_handler
|
|
|
|
from mtkclient.gui.readFlashPartitions import *
|
|
|
|
from mtkclient.gui.toolsMenu import *
|
|
|
|
from mtkclient.gui.toolkit import *
|
|
|
|
from mtkclient.config.payloads import pathconfig
|
2021-12-25 19:03:20 -05:00
|
|
|
from mtkclient.gui.main_gui import *
|
2021-12-25 17:01:25 -05:00
|
|
|
# TO do Move all GUI modifications to signals!
|
|
|
|
# install exception hook: without this, uncaught exception would cause application to exit
|
|
|
|
sys.excepthook = trap_exc_during_debug
|
|
|
|
|
|
|
|
# Initiate MTK classes
|
|
|
|
variables = mock.Mock()
|
|
|
|
variables.cmd = "stage"
|
|
|
|
variables.debugmode = True
|
|
|
|
path=pathconfig()
|
|
|
|
# if sys.platform.startswith('darwin'):
|
|
|
|
# config.ptype = "kamakiri" #Temp for Mac testing
|
|
|
|
MtkTool = Main(variables)
|
|
|
|
|
|
|
|
guiState = "welcome"
|
|
|
|
phoneInfo = {"chipset": "", "bootMode": "", "daInit": False, "cdcInit": False}
|
|
|
|
|
|
|
|
|
|
|
|
def getDevInfo(self, parameters):
|
|
|
|
print(parameters)
|
2021-12-25 19:26:18 -05:00
|
|
|
config = Mtk_Config(loglevel=logging.INFO, gui=self.sendToLogSignal)
|
|
|
|
config.gpt_settings = gpt_settings(gpt_num_part_entries='0', gpt_part_entry_size='0',
|
|
|
|
gpt_part_entry_start_lba='0') # This actually sets the right GPT settings..
|
|
|
|
|
|
|
|
phoneInfo = parameters[0]
|
2021-12-25 17:01:25 -05:00
|
|
|
self.sendToLogSignal.emit("CONNECTING!")
|
2021-12-25 19:26:18 -05:00
|
|
|
mtkClass = Mtk(config=config, loglevel=logging.INFO)
|
|
|
|
loglevel = logging.INFO
|
|
|
|
da_handler = DA_handler(mtkClass, loglevel)
|
2021-12-25 17:01:25 -05:00
|
|
|
mtkClass = da_handler.configure_da(mtkClass, preloader=None)
|
|
|
|
if mtkClass:
|
|
|
|
phoneInfo['daInit'] = True
|
|
|
|
phoneInfo['chipset'] = str(mtkClass.config.chipconfig.name) + \
|
|
|
|
" (" + str(mtkClass.config.chipconfig.description) + ")"
|
|
|
|
if mtkClass.config.is_brom:
|
|
|
|
phoneInfo['bootMode'] = "Bootrom mode"
|
|
|
|
elif mtkClass.config.chipconfig.damode:
|
|
|
|
phoneInfo['bootMode'] = "DA mode"
|
|
|
|
else:
|
|
|
|
phoneInfo['bootMode'] = "Preloader mode"
|
|
|
|
self.sendUpdateSignal.emit()
|
|
|
|
# try:
|
|
|
|
# print(mtkClass.daloader.get_partition_data(parttype="user"))
|
|
|
|
# except Exception:
|
|
|
|
# print(traceback.format_exc())
|
|
|
|
# MtkTool.cmd_stage(mtkClass, None, None, None, False)
|
|
|
|
|
|
|
|
|
|
|
|
def sendToLog(info):
|
|
|
|
t = time.localtime()
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.logBox.appendPlainText(time.strftime("[%H:%M:%S", t) + "]: " + info)
|
|
|
|
mainwindow.logBox.verticalScrollBar().setValue(mainwindow.logBox.verticalScrollBar().maximum())
|
2021-12-25 17:01:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
def updateGui():
|
|
|
|
global phoneInfo
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.phoneInfoTextbox.setText("Phone detected:\n" + phoneInfo['chipset'] + "\n" + phoneInfo['bootMode'])
|
|
|
|
mainwindow.status.setText("Device detected, please wait.\nThis can take a while...")
|
2021-12-25 17:01:25 -05:00
|
|
|
if phoneInfo['daInit']:
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.status.setText("Device connected :)")
|
|
|
|
mainwindow.menubar.setEnabled(True)
|
2021-12-25 17:01:25 -05:00
|
|
|
pixmap = QPixmap(path.get_images_path("phone_connected.png")).scaled(128, 128,
|
|
|
|
Qt.KeepAspectRatio, Qt.SmoothTransformation)
|
|
|
|
pixmap.setDevicePixelRatio(2.0)
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.pic.setPixmap(pixmap)
|
2021-12-25 17:01:25 -05:00
|
|
|
spinnerAnim.stop()
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.spinner_pic.setHidden(True)
|
2021-12-25 17:01:25 -05:00
|
|
|
else:
|
|
|
|
if not phoneInfo['cdcInit']:
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.status.setText("Error initialising. Did you install the drivers?")
|
2021-12-25 17:01:25 -05:00
|
|
|
spinnerAnim.start()
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.spinner_pic.setHidden(False)
|
2021-12-25 17:01:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
def openReadflashWindow(q):
|
|
|
|
# status.setText("OH YEAH"+str(q.text()))
|
|
|
|
readFlashWindowVal = ReadFlashWindow(w, mtkClass, da_handler, sendToLog)
|
|
|
|
# w.close()
|
|
|
|
|
|
|
|
|
|
|
|
def openToolsMenu(q):
|
|
|
|
# status.setText("OH YEAH"+str(q.text()))
|
|
|
|
if q.text() == "Generate RPMB keys":
|
|
|
|
readFlashWindowVal = generateKeysMenu(w, mtkClass, da_handler, sendToLog)
|
|
|
|
# w.close()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
# Init the app window
|
|
|
|
app = QApplication(sys.argv)
|
|
|
|
win = QMainWindow()
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow=Ui_MainWindow()
|
|
|
|
mainwindow.setupUi(win)
|
2021-12-25 17:01:25 -05:00
|
|
|
icon = QIcon()
|
|
|
|
icon.addFile(path.get_images_path('logo_32.png'), QSize(32, 32))
|
|
|
|
icon.addFile(path.get_images_path('logo_64.png'), QSize(64, 64))
|
|
|
|
icon.addFile(path.get_images_path('logo_256.png'), QSize(256, 256))
|
|
|
|
icon.addFile(path.get_images_path('logo_512.png'), QSize(512, 512))
|
|
|
|
app.setWindowIcon(icon)
|
|
|
|
win.setWindowIcon(icon)
|
|
|
|
if sys.platform.startswith('win'):
|
|
|
|
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID('MTKTools.Gui')
|
|
|
|
dpiMultiplier = win.logicalDpiX()
|
|
|
|
if dpiMultiplier == 72:
|
|
|
|
dpiMultiplier = 2
|
|
|
|
else:
|
|
|
|
dpiMultiplier = 1
|
|
|
|
addTopMargin = 20
|
|
|
|
if sys.platform.startswith('darwin'): # MacOS has the toolbar in the top bar insted of in the app...
|
|
|
|
addTopMargin = 0
|
2021-12-25 19:03:20 -05:00
|
|
|
#win.setFixedSize(600, 400 + addTopMargin)
|
2021-12-25 17:01:25 -05:00
|
|
|
w = QWidget(win)
|
|
|
|
w.move(0,addTopMargin)
|
|
|
|
w.setFixedSize(600, 400)
|
|
|
|
win.setWindowTitle("MTKClient - Version 2.0 beta")
|
|
|
|
# lay = QVBoxLayout(self)
|
|
|
|
|
|
|
|
# Menubar
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.readFlashMenu.triggered[QAction].connect(openReadflashWindow)
|
|
|
|
mainwindow.toolsFlashMenu.triggered[QAction].connect(openToolsMenu)
|
2021-12-25 17:01:25 -05:00
|
|
|
|
|
|
|
# phone spinner
|
|
|
|
pixmap = QPixmap(path.get_images_path("phone_loading.png")).scaled(64, 64, Qt.AspectRatioMode.KeepAspectRatio,
|
|
|
|
Qt.TransformationMode.SmoothTransformation)
|
|
|
|
pixmap.setDevicePixelRatio(2.0)
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.spinner_pic.setPixmap(pixmap)
|
|
|
|
mainwindow.spinner_pic.resize(pixmap.width() // 2, pixmap.height() // 2)
|
|
|
|
#mainwindow.spinner_pic.move(551, 25)
|
|
|
|
mainwindow.spinner_pic.show()
|
|
|
|
|
|
|
|
nfpixmap = QPixmap(path.get_images_path("phone_notfound.png")).scaled(128, 128,
|
|
|
|
Qt.KeepAspectRatio, Qt.SmoothTransformation)
|
|
|
|
mainwindow.pic.setPixmap(nfpixmap)
|
2021-12-25 17:01:25 -05:00
|
|
|
|
2021-12-25 19:03:20 -05:00
|
|
|
logo = QPixmap(path.get_images_path("logo_256.png")).scaled(128, 128,
|
|
|
|
Qt.KeepAspectRatio, Qt.SmoothTransformation)
|
|
|
|
mainwindow.logoPic.setPixmap(logo)
|
|
|
|
mainwindow.logBox.setHidden(True)
|
2021-12-25 17:01:25 -05:00
|
|
|
|
|
|
|
def spinnerAnimRot(angle):
|
|
|
|
# print(angle)
|
|
|
|
trans = QTransform()
|
|
|
|
# trans.translate(pixmap.width()+angle / 2, pixmap.height() / 2)
|
|
|
|
|
|
|
|
# trans.translate(spinner_pic.width()/2.0 , spinner_pic.height()/2.0)
|
|
|
|
trans.rotate(angle)
|
|
|
|
newPixmap = pixmap.transformed(QTransform().rotate(angle))
|
|
|
|
xoffset = (newPixmap.width() - pixmap.width()) // 2
|
|
|
|
yoffset = (newPixmap.height() - pixmap.height()) // 2
|
|
|
|
rotated = newPixmap.copy(ax=xoffset, ay=yoffset, awidth=pixmap.width(), aheight=pixmap.height())
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.spinner_pic.setPixmap(rotated)
|
2021-12-25 17:01:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
spinnerAnim = QVariantAnimation()
|
|
|
|
spinnerAnim.setDuration(3000)
|
|
|
|
spinnerAnim.setStartValue(0)
|
|
|
|
spinnerAnim.setEndValue(360)
|
|
|
|
spinnerAnim.setLoopCount(-1)
|
|
|
|
spinnerAnim.valueChanged.connect(spinnerAnimRot)
|
|
|
|
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.spinner_pic.setHidden(True)
|
2021-12-25 17:01:25 -05:00
|
|
|
|
|
|
|
def showDebugInfo():
|
2021-12-25 19:03:20 -05:00
|
|
|
if mainwindow.logBox.isHidden():
|
|
|
|
mainwindow.logBox.setHidden(False)
|
|
|
|
mainwindow.debugBtn.setText("Hide debug info")
|
2021-12-25 17:01:25 -05:00
|
|
|
else:
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.logBox.setHidden(True)
|
|
|
|
mainwindow.debugBtn.setText("Show debug info")
|
2021-12-25 17:01:25 -05:00
|
|
|
|
2021-12-25 19:03:20 -05:00
|
|
|
mainwindow.debugBtn.clicked.connect(showDebugInfo)
|
|
|
|
mainwindow.logBox.setWordWrapMode(QTextOption.NoWrap)
|
|
|
|
mainwindow.menubar.setEnabled(False)
|
2021-12-25 17:01:25 -05:00
|
|
|
win.show()
|
|
|
|
|
|
|
|
# Get the device info
|
2021-12-25 19:26:18 -05:00
|
|
|
thread = asyncThread(app, 0, getDevInfo, [phoneInfo])
|
2021-12-25 17:01:25 -05:00
|
|
|
thread.sendToLogSignal.connect(sendToLog)
|
|
|
|
thread.sendUpdateSignal.connect(updateGui)
|
|
|
|
thread.start()
|
|
|
|
|
|
|
|
# Run loop the app
|
|
|
|
app.exec_()
|
|
|
|
# Prevent thread from not being closed and call error end codes
|
|
|
|
thread.terminate()
|
|
|
|
thread.wait()
|