VitaShell/network_update.c

192 lines
5.4 KiB
C
Raw Normal View History

2016-09-04 08:44:48 +00:00
/*
2017-10-13 10:42:36 +00:00
VitaShell
Copyright (C) 2015-2017, TheFloW
2016-09-04 08:44:48 +00:00
2017-10-13 10:42:36 +00:00
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.
2016-09-04 08:44:48 +00:00
2017-10-13 10:42:36 +00:00
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.
2016-09-04 08:44:48 +00:00
2017-10-13 10:42:36 +00:00
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
2016-09-04 08:44:48 +00:00
*/
#include "main.h"
#include "io_process.h"
#include "network_update.h"
#include "network_download.h"
2016-09-04 10:55:15 +00:00
#include "package_installer.h"
#include "archive.h"
2016-09-04 08:44:48 +00:00
#include "file.h"
2016-09-04 09:19:11 +00:00
#include "message_dialog.h"
#include "language.h"
2016-09-04 08:44:48 +00:00
#include "utils.h"
2016-09-04 10:55:15 +00:00
#define BASE_ADDRESS "https://github.com/TheOfficialFloW/VitaShell/releases/download"
2016-11-02 18:54:40 +00:00
#define VERSION_URL "/0.2/version.bin"
2016-09-10 10:58:22 +00:00
#define VITASHELL_UPDATE_FILE "ux0:VitaShell/internal/VitaShell.vpk"
#define VITASHELL_VERSION_FILE "ux0:VitaShell/internal/version.bin"
2016-09-04 10:55:15 +00:00
extern unsigned char _binary_resources_updater_eboot_bin_start;
extern unsigned char _binary_resources_updater_eboot_bin_size;
extern unsigned char _binary_resources_updater_param_bin_start;
extern unsigned char _binary_resources_updater_param_bin_size;
2016-09-04 09:19:11 +00:00
int network_update_thread(SceSize args, void *argp) {
2017-10-13 10:42:36 +00:00
uint64_t size = 0;
if (getDownloadFileSize(BASE_ADDRESS VERSION_URL, &size) >= 0 && size == sizeof(uint32_t)) {
int res = downloadFile(BASE_ADDRESS VERSION_URL, VITASHELL_VERSION_FILE, NULL);
if (res <= 0)
goto EXIT;
// Read version
uint32_t version = 0;
ReadFile(VITASHELL_VERSION_FILE, &version, sizeof(uint32_t));
sceIoRemove(VITASHELL_VERSION_FILE);
// Only show update question if no dialog is running
if (getDialogStep() == DIALOG_STEP_NONE) {
// New update available
if (version > VITASHELL_VERSION) {
int major = (version >> 0x18) & 0xFF;
int minor = (version >> 0x10) & 0xFF;
char version_string[8];
sprintf(version_string, "%X.%02X", major, minor);
if (version_string[3] == '0')
version_string[3] = '\0';
// Update question
initMessageDialog(SCE_MSG_DIALOG_BUTTON_TYPE_YESNO, language_container[UPDATE_QUESTION], version_string);
setDialogStep(DIALOG_STEP_UPDATE_QUESTION);
// Wait for response
while (getDialogStep() == DIALOG_STEP_UPDATE_QUESTION) {
sceKernelDelayThread(10 * 1000);
}
// No
if (getDialogStep() == DIALOG_STEP_NONE) {
goto EXIT;
}
char url[128];
snprintf(url, sizeof(url), BASE_ADDRESS "/%s/VitaShell.vpk", version_string);
// Yes
return downloadFileProcess(url, VITASHELL_UPDATE_FILE, DIALOG_STEP_DOWNLOADED);
}
}
}
2016-09-04 09:19:11 +00:00
EXIT:
2017-10-13 10:42:36 +00:00
return sceKernelExitDeleteThread(0);
2016-09-04 10:55:15 +00:00
}
2016-09-04 11:03:18 +00:00
void installUpdater() {
2017-10-13 10:42:36 +00:00
// Recursively clean up pkg directory
removePath(PACKAGE_DIR, NULL);
sceIoMkdir(PACKAGE_DIR, 0777);
2016-09-04 10:55:15 +00:00
2017-10-13 10:42:36 +00:00
// Make dir
sceIoMkdir("ux0:data/pkg/sce_sys", 0777);
2016-09-04 10:55:15 +00:00
2017-10-13 10:42:36 +00:00
// Write VitaShell updater files
WriteFile("ux0:data/pkg/eboot.bin", (void *)&_binary_resources_updater_eboot_bin_start, (int)&_binary_resources_updater_eboot_bin_size);
WriteFile("ux0:data/pkg/sce_sys/param.sfo", (void *)&_binary_resources_updater_param_bin_start, (int)&_binary_resources_updater_param_bin_size);
2016-09-04 10:55:15 +00:00
2017-10-13 10:42:36 +00:00
// Make head.bin
makeHeadBin();
2016-09-04 10:55:15 +00:00
2017-10-13 10:42:36 +00:00
// Promote app
promoteApp(PACKAGE_DIR);
2016-09-04 10:55:15 +00:00
}
int update_extract_thread(SceSize args, void *argp) {
2017-10-13 10:42:36 +00:00
SceUID thid = -1;
// Lock power timers
powerLock();
// Set progress to 0%
sceMsgDialogProgressBarSetValue(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, 0);
sceKernelDelayThread(DIALOG_WAIT); // Needed to see the percentage
// Install updater
installUpdater();
// Recursively clean up pkg directory
removePath(PACKAGE_DIR, NULL);
sceIoMkdir(PACKAGE_DIR, 0777);
// Open archive
int res = archiveOpen(VITASHELL_UPDATE_FILE);
if (res < 0) {
closeWaitDialog();
errorDialog(res);
goto EXIT;
}
// Src path
char *src_path = VITASHELL_UPDATE_FILE "/";
// Get archive path info
uint64_t size = 0;
uint32_t folders = 0, files = 0;
getArchivePathInfo(src_path, &size, &folders, &files);
// Update thread
thid = createStartUpdateThread(size + folders*DIRECTORY_SIZE, 1);
// Extract process
uint64_t value = 0;
FileProcessParam param;
param.value = &value;
param.max = size + folders * DIRECTORY_SIZE;
param.SetProgress = SetProgress;
param.cancelHandler = cancelHandler;
res = extractArchivePath(src_path, PACKAGE_DIR "/", &param);
if (res <= 0) {
closeWaitDialog();
setDialogStep(DIALOG_STEP_CANCELLED);
errorDialog(res);
goto EXIT;
}
// Remove update file
sceIoRemove(VITASHELL_UPDATE_FILE);
// Make head.bin
res = makeHeadBin();
if (res < 0) {
closeWaitDialog();
errorDialog(res);
goto EXIT;
}
// Set progress to 100%
sceMsgDialogProgressBarSetValue(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, 100);
sceKernelDelayThread(COUNTUP_WAIT);
// Close
sceMsgDialogClose();
setDialogStep(DIALOG_STEP_EXTRACTED);
2016-09-04 10:55:15 +00:00
EXIT:
2017-10-13 10:42:36 +00:00
if (thid >= 0)
sceKernelWaitThreadEnd(thid, NULL, NULL);
2016-09-04 10:55:15 +00:00
2017-10-13 10:42:36 +00:00
// Unlock power timers
powerUnlock();
2016-09-04 10:55:15 +00:00
2017-10-13 10:42:36 +00:00
return sceKernelExitDeleteThread(0);
}