mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-09-11 02:47:18 +00:00
189 lines
5.3 KiB
C++
189 lines
5.3 KiB
C++
//-----------------------------------------------------------------------------
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
|
//
|
|
// 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.
|
|
//
|
|
// See LICENSE.txt for the text of the license.
|
|
//-----------------------------------------------------------------------------
|
|
// GUI functions
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "proxgui.h"
|
|
|
|
#include <string.h>
|
|
#include "proxguiqt.h"
|
|
#include "proxmark3.h"
|
|
#include "ui.h" // for prints
|
|
#include "imgjp2.h" // JPEG2000
|
|
|
|
static ProxGuiQT *gui = NULL;
|
|
static WorkerThread *main_loop_thread = NULL;
|
|
|
|
WorkerThread::WorkerThread(char *script_cmds_file, char *script_cmd, bool stayInCommandLoop) : script_cmds_file(script_cmds_file), script_cmd(script_cmd), stayInCommandLoop(stayInCommandLoop) {
|
|
}
|
|
|
|
WorkerThread::~WorkerThread() {
|
|
}
|
|
|
|
void WorkerThread::run() {
|
|
main_loop(script_cmds_file, script_cmd, stayInCommandLoop);
|
|
}
|
|
|
|
extern "C" void ShowGraphWindow(void) {
|
|
if (!gui) {
|
|
// Show a notice if X11/XQuartz isn't available
|
|
#if defined(__MACH__) && defined(__APPLE__)
|
|
PrintAndLogEx(WARNING, "You appear to be on a MacOS device without XQuartz.\nYou may need to install XQuartz (https://www.xquartz.org/) to make the plot work.");
|
|
#else
|
|
PrintAndLogEx(WARNING, "You appear to be on an environment without an X11 server or without DISPLAY environment variable set.\nPlot may not work until you resolve these issues.");
|
|
#endif
|
|
return;
|
|
}
|
|
|
|
gui->ShowGraphWindow();
|
|
|
|
}
|
|
|
|
extern "C" void HideGraphWindow(void) {
|
|
if (!gui)
|
|
return;
|
|
|
|
gui->HideGraphWindow();
|
|
}
|
|
|
|
extern "C" void RepaintGraphWindow(void) {
|
|
if (!gui)
|
|
return;
|
|
|
|
gui->RepaintGraphWindow();
|
|
}
|
|
|
|
|
|
// Show a notice if X11/XQuartz isn't available
|
|
static void show_no_gui_notice(void) {
|
|
#if defined(__MACH__) && defined(__APPLE__)
|
|
PrintAndLogEx(WARNING, "You appear to be on a MacOS device without XQuartz.\nYou may need to install XQuartz (https://www.xquartz.org/) to make the plot work.");
|
|
#else
|
|
PrintAndLogEx(WARNING, "You appear to be on an environment without an X11 server or without DISPLAY environment variable set.\nPicture display may not work until you resolve these issues.");
|
|
#endif
|
|
}
|
|
|
|
// hook up picture viewer
|
|
extern "C" void ShowPictureWindow(const char *title, uint8_t *data, int len) {
|
|
|
|
if (data == NULL || len <= 0) {
|
|
return;
|
|
}
|
|
|
|
QImage img;
|
|
|
|
// No support for jpeg2000 in Qt Image since a while...
|
|
// https://doc.qt.io/qt-5/qtimageformats-index.html
|
|
// and the distros ship no replacement plugin, so decode it ourselves with
|
|
// the vendored openjpeg. Most eMRTD EF_DG2 portraits are jpeg2000.
|
|
if (jp2_is_jpeg2000(data, (size_t)len)) {
|
|
|
|
int w = 0, h = 0;
|
|
uint8_t *rgb = jp2_decode_rgb(data, (size_t)len, &w, &h);
|
|
if (rgb) {
|
|
// QImage doesn't take ownership of the buffer, copy() detaches it
|
|
img = QImage(rgb, w, h, w * 3, QImage::Format_RGB888).copy();
|
|
free(rgb);
|
|
}
|
|
|
|
} else {
|
|
img = QImage::fromData(data, len);
|
|
}
|
|
|
|
if (img.isNull()) {
|
|
PrintAndLogEx(WARNING, "Failed to decode image ( %s )", (title) ? title : "n/a");
|
|
return;
|
|
}
|
|
|
|
if (!gui) {
|
|
show_no_gui_notice();
|
|
return;
|
|
}
|
|
|
|
gui->ShowPictureWindow(QString::fromUtf8((title) ? title : ""), img);
|
|
}
|
|
|
|
extern "C" void ShowBase64PictureWindow(const char *title, char *b64) {
|
|
|
|
if (b64 == NULL) {
|
|
return;
|
|
}
|
|
|
|
// decode here, in the caller thread, since the b64 pointer isn't
|
|
// guaranteed to be alive once the GUI thread picks up the queued signal
|
|
QImage img;
|
|
if (img.loadFromData(QByteArray::fromBase64(QByteArray(b64))) == false) {
|
|
PrintAndLogEx(WARNING, "Failed to decode base64 image ( %s )", (title) ? title : "n/a");
|
|
return;
|
|
}
|
|
|
|
if (!gui) {
|
|
show_no_gui_notice();
|
|
return;
|
|
}
|
|
|
|
gui->ShowPictureWindow(QString::fromUtf8((title) ? title : ""), img);
|
|
}
|
|
|
|
extern "C" void ClearPictureWindow(void) {
|
|
if (!gui)
|
|
return;
|
|
|
|
gui->ClearPictureWindow();
|
|
}
|
|
|
|
extern "C" void HidePictureWindow(void) {
|
|
if (!gui)
|
|
return;
|
|
|
|
gui->HidePictureWindow();
|
|
}
|
|
|
|
extern "C" void RepaintPictureWindow(void) {
|
|
if (!gui)
|
|
return;
|
|
|
|
gui->RepaintPictureWindow();
|
|
}
|
|
|
|
extern "C" void MainGraphics(void) {
|
|
if (!gui)
|
|
return;
|
|
|
|
gui->MainLoop();
|
|
}
|
|
|
|
extern "C" void InitGraphics(int argc, char **argv, char *script_cmds_file, char *script_cmd, bool stayInCommandLoop) {
|
|
#ifdef Q_WS_X11
|
|
if (getenv("DISPLAY") == NULL)
|
|
return;
|
|
#endif
|
|
#if QT_VERSION >= 0x050100
|
|
qunsetenv("SESSION_MANAGER");
|
|
#endif
|
|
ClearGraph(false);
|
|
main_loop_thread = new WorkerThread(script_cmds_file, script_cmd, stayInCommandLoop);
|
|
gui = new ProxGuiQT(argc, argv, main_loop_thread);
|
|
}
|
|
|
|
extern "C" void ExitGraphics(void) {
|
|
if (!gui)
|
|
return;
|
|
|
|
gui->Exit();
|
|
gui = NULL;
|
|
}
|