638 lines
17 KiB
C
638 lines
17 KiB
C
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <glib.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
#include <sys/mount.h>
|
|
#include <sys/wait.h>
|
|
#include <libaudit.h>
|
|
|
|
#include "overlayfs.h"
|
|
#include "install.h"
|
|
#include "getHome.h"
|
|
#include "steam.h"
|
|
#include "main.h"
|
|
#include "file.h"
|
|
#include "fomod.h"
|
|
#include "order.h"
|
|
|
|
GHashTable * gamePaths;
|
|
|
|
bool isRoot() {
|
|
return getuid() == 0;
|
|
}
|
|
|
|
GList * listFilesInFolder(const char * path) {
|
|
GList * list = NULL;
|
|
DIR *d;
|
|
struct dirent *dir;
|
|
d = opendir(path);
|
|
if (d) {
|
|
while ((dir = readdir(d)) != NULL) {
|
|
//removes .. & . from the list
|
|
if(strcmp(dir->d_name, "..") != 0 && strcmp(dir->d_name, ".") != 0) {
|
|
list = g_list_append(list, strdup(dir->d_name));
|
|
}
|
|
}
|
|
closedir(d);
|
|
}
|
|
|
|
return list;
|
|
}
|
|
|
|
int noRoot() {
|
|
printf("Don't run this argument as root\n");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
int needRoot() {
|
|
printf("Root is needed to bind with the game files\n");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
int usage() {
|
|
printf("Use --list-games or -l to list compatible games\n");
|
|
printf("Use --add or -a <APPID> <FILENAME> to add a mod to a game\n");
|
|
printf("Use --list-mods or -m <APPID> to list all mods for a game\n");
|
|
printf("Use --install or -i <APPID> <MODID> to add a mod to a game\n");
|
|
printf("Use --uninstall or -u <APPID> <MODID> to uninstall a mod from a game\n");
|
|
printf("Use --remove or -r <APPID> <MODID> to remove a mod\n");
|
|
printf("Use --deploy or -d <APPID> to deploy the mods for the game\n");
|
|
printf("Use --unbind <APPID> to rollback a deployment\n");
|
|
printf("Use --fomod <APPID> <MODID> to create a new mod using the result from the FOMod\n");
|
|
printf("Use --swap <APPID> <MODID A> MODID B> to swap two mod in the loading order\n");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
int validateAppId(const char * appIdStr) {
|
|
char * strtoulSentinel;
|
|
//strtoul set EINVAL(after C99) if the string is invalid
|
|
unsigned long appid = strtoul(appIdStr, &strtoulSentinel, 10);
|
|
if(errno == EINVAL || strtoulSentinel == appIdStr) {
|
|
printf("Appid has to be a valid number\n");
|
|
return -1;
|
|
}
|
|
|
|
int gameId = getGameIdFromAppId((int)appid);
|
|
if(gameId < 0) {
|
|
printf("Game is not compatible\n");
|
|
return -1;
|
|
}
|
|
|
|
if(!g_hash_table_contains(gamePaths, &gameId)) {
|
|
printf("Game not found\n");
|
|
return -1;
|
|
}
|
|
|
|
//no valid appid goes far enough to justify long
|
|
return (int)appid;
|
|
}
|
|
|
|
int listGames(int argc, char **) {
|
|
if(argc != 2) return usage();
|
|
GList * gamesIds = g_hash_table_get_keys(gamePaths);
|
|
GList * gamesIdsFirstPointer = gamesIds;
|
|
if(g_list_length(gamesIds) == 0) {
|
|
printf("No game found\n");
|
|
} else {
|
|
while(gamesIds != NULL) {
|
|
const int * gameIndex = (int*)gamesIds->data;
|
|
printf("%d: %s\n", GAMES_APPIDS[*gameIndex], GAMES_NAMES[*gameIndex]);
|
|
gamesIds = g_list_next(gamesIds);
|
|
}
|
|
}
|
|
g_list_free(gamesIdsFirstPointer);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
int add(int argc, char ** argv) {
|
|
if(argc != 4) return usage();
|
|
const char * appIdStr = argv[2];
|
|
|
|
int appid = validateAppId(appIdStr);
|
|
if(appid < 0) {
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
addMod(argv[3], appid);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
int listAllMods(int argc, char ** argv) {
|
|
if(argc != 3) return usage();
|
|
char * appIdStr = argv[2];
|
|
int appid = validateAppId(appIdStr);
|
|
if( appid < 0) {
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
//might crash if no mods were installed
|
|
char * home = getHome();
|
|
char * modFolder = g_build_filename(home, MANAGER_FILES, MOD_FOLDER_NAME, appIdStr, NULL);
|
|
free(home);
|
|
|
|
GList * mods = listMods(appid);
|
|
unsigned short index = 0;
|
|
|
|
printf("Id | Installed | Name\n");
|
|
while(mods != NULL) {
|
|
char * modName = (char*)mods->data;
|
|
char * modPath = g_build_filename(modFolder, modName, INSTALLED_FLAG_FILE, NULL);
|
|
|
|
if(access(modPath, F_OK) == 0) {
|
|
printf("\033[0;32m %d | ✓ | %s\n", index, modName);
|
|
} else {
|
|
printf("\033[0;31m %d | ✕ | %s\n", index, modName);
|
|
}
|
|
|
|
index++;
|
|
mods = g_list_next(mods);
|
|
}
|
|
|
|
|
|
free(modFolder);
|
|
free(mods);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
|
|
/*
|
|
* THIS WILL NOT INSTALL THE MOD
|
|
* this will just flag the mod as needed to be deployed
|
|
* it's the deploying process that handle the rest
|
|
*/
|
|
int installAndUninstallMod(int argc, char ** argv, bool install) {
|
|
if(argc != 4) return usage();
|
|
char * appIdStr = argv[2];
|
|
int appid = validateAppId(appIdStr);
|
|
if(appid < 0) {
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
int returnValue = EXIT_SUCCESS;
|
|
|
|
//strtoul set EINVAL if the string is invalid
|
|
unsigned long modId = strtoul(argv[3], NULL, 10);
|
|
if(errno == EINVAL) {
|
|
printf("ModId has to be a valid number\n");
|
|
return -1;
|
|
}
|
|
|
|
//might crash if no mods were installed
|
|
char * home = getHome();
|
|
char * modFolder = g_build_filename(home, MANAGER_FILES, MOD_FOLDER_NAME, appIdStr, NULL);
|
|
free(home);
|
|
GList * mods = listFilesInFolder(modFolder);
|
|
GList * modsFirstPointer = mods;
|
|
|
|
for(int i = 0; i < modId; i++) {
|
|
mods = g_list_next(mods);
|
|
}
|
|
|
|
if(mods == NULL) {
|
|
printf("Mod not found\n");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
char * modName = (char*)mods->data;
|
|
char * modFlag = g_build_filename(modFolder, modName, INSTALLED_FLAG_FILE, NULL);
|
|
|
|
if(install) {
|
|
if(access(modFlag, F_OK) == 0) {
|
|
printf("The mod is already activated \n");
|
|
returnValue = EXIT_SUCCESS;
|
|
goto exit;
|
|
}
|
|
|
|
//Create activated file
|
|
FILE * fd = fopen(modFlag, "w+");
|
|
if(fd != NULL) {
|
|
fwrite("", 1, 1, fd);
|
|
fclose(fd);
|
|
} else {
|
|
printf("Could not interact with the activation file\n");
|
|
returnValue = EXIT_FAILURE;
|
|
}
|
|
} else {
|
|
if(access(modFlag, F_OK) != 0) {
|
|
printf("The mod is not activated \n");
|
|
returnValue = EXIT_SUCCESS;
|
|
goto exit;
|
|
}
|
|
|
|
if(unlink(modFlag) != 0) {
|
|
printf("Error could not disable the mod.\n");
|
|
printf("please remove this file '%s' as root\n", modFlag);
|
|
returnValue = EXIT_FAILURE;
|
|
goto exit;
|
|
}
|
|
}
|
|
|
|
exit:
|
|
|
|
g_free(modFolder);
|
|
g_list_free_full(modsFirstPointer, free);
|
|
g_free(modFlag);
|
|
return returnValue;
|
|
}
|
|
|
|
int deploy(int argc, char ** argv) {
|
|
if(argc != 3) return usage();
|
|
|
|
char * appIdStr = argv[2];
|
|
int appid = validateAppId(appIdStr);
|
|
if(appid < 0) {
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
char * home = getHome();
|
|
char * gameFolder = g_build_filename(home, MANAGER_FILES, GAME_FOLDER_NAME, appIdStr, NULL);
|
|
|
|
if(access(gameFolder, F_OK) != 0) {
|
|
printf("Please run '%s --setup %d' first", APP_NAME, appid);
|
|
}
|
|
|
|
//unmount everything beforhand
|
|
//might crash if no mods were installed
|
|
char * modFolder = g_build_filename(home, MANAGER_FILES, MOD_FOLDER_NAME, appIdStr, NULL);
|
|
|
|
GList * mods = listFilesInFolder(modFolder);
|
|
//since the priority is by alphabetical order
|
|
//and we need to bind the least important first
|
|
//and the most important last
|
|
//we have to reverse the list
|
|
mods = g_list_reverse(mods);
|
|
|
|
//probably over allocating but this doesn't matter that much
|
|
char * modsToInstall[g_list_length(mods) + 2];
|
|
int modCount = 0;
|
|
|
|
while(true) {
|
|
if(mods == NULL)break;
|
|
char * modName = (char *)mods->data;
|
|
char * modPath = g_build_path("/", modFolder, modName, NULL);
|
|
char * modFlag = g_build_filename(modPath, INSTALLED_FLAG_FILE, NULL);
|
|
|
|
//if the mod is not marked to be deployed then don't
|
|
if(access(modFlag, F_OK) != 0) {
|
|
printf("ignoring mod %s\n", modName);
|
|
mods = g_list_next(mods);
|
|
continue;
|
|
}
|
|
|
|
//this is made to leave the first case empty so i can put lowerdir in it before feeding it to g_strjoinv
|
|
printf("Installing %s\n", modName);
|
|
modsToInstall[modCount] = modPath;
|
|
modCount += 1;
|
|
|
|
mods = g_list_next(mods);
|
|
free(modFlag);
|
|
}
|
|
|
|
g_free(modFolder);
|
|
|
|
//const char * data = "lowerdir=gameFolder,gameFolder2,gameFolder3..."
|
|
modsToInstall[modCount] = gameFolder;
|
|
modsToInstall[modCount + 1] = NULL;
|
|
printf("Mounting the overlay\n");
|
|
int gameId = getGameIdFromAppId(appid);
|
|
const char * path = g_hash_table_lookup(gamePaths, &gameId);
|
|
char * steamGameFolder = g_build_path("/", path, "steamapps/common", GAMES_NAMES[gameId], "Data", NULL);
|
|
|
|
char * gameUpperDir = g_build_filename(home, MANAGER_FILES, GAME_UPPER_DIR_NAME, appIdStr, NULL);
|
|
char * gameWorkDir = g_build_filename(home, MANAGER_FILES, GAME_WORK_DIR_NAME, appIdStr, NULL);
|
|
free(home);
|
|
|
|
//unmount the game folder
|
|
//DETACH + FORCE allow us to be sure it will be unload.
|
|
//it might crash / corrupt game file if the user do it while the game is running
|
|
//but it's still very unlikely
|
|
while(umount2(steamGameFolder, MNT_FORCE | MNT_DETACH) == 0);
|
|
int status = overlayMount(modsToInstall, steamGameFolder, gameUpperDir, gameWorkDir);
|
|
if(status == 0) {
|
|
printf("Everything is ready, just launch the game\n");
|
|
} else if(status == -1) {
|
|
printf("Could not mount the mods overlay, try to install fuse-overlay\n");
|
|
return EXIT_FAILURE;
|
|
} else if(status == -2) {
|
|
printf("Could not mount the mods overlay\n");
|
|
return EXIT_FAILURE;
|
|
} else {
|
|
printf("%d take a screenshot and go insult the dev that let this passthrough\n", __LINE__);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
g_free(steamGameFolder);
|
|
g_free(gameUpperDir);
|
|
g_free(gameWorkDir);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
int setup(int argc, char ** argv) {
|
|
if(argc != 3 ) return usage();
|
|
const char * appIdStr = argv[2];
|
|
int appid = validateAppId(appIdStr);
|
|
if(appid < 0) {
|
|
return EXIT_FAILURE;
|
|
}
|
|
int gameId = getGameIdFromAppId(appid);
|
|
char * home = getHome();
|
|
|
|
char * gameUpperDir = g_build_filename(home, MANAGER_FILES, GAME_UPPER_DIR_NAME, appIdStr, NULL);
|
|
char * gameWorkDir = g_build_filename(home, MANAGER_FILES, GAME_WORK_DIR_NAME, appIdStr, NULL);
|
|
g_mkdir_with_parents(gameUpperDir, 0755);
|
|
g_mkdir_with_parents(gameWorkDir, 0755);
|
|
free(gameUpperDir);
|
|
free(gameWorkDir);
|
|
|
|
const char * path = g_hash_table_lookup(gamePaths, &gameId);
|
|
char * steamGameFolder = g_build_path("/", path, "steamapps/common", GAMES_NAMES[gameId], "Data", NULL);
|
|
|
|
char * gameFolder = g_build_filename(home, MANAGER_FILES, GAME_FOLDER_NAME, appIdStr, NULL);
|
|
if(access(gameFolder, F_OK) == 0) {
|
|
//if the game folder alredy exists just delete it
|
|
//this will allow the removal of dlcs and language change
|
|
delete(gameFolder, true);
|
|
}
|
|
g_mkdir_with_parents(gameFolder, 0755);
|
|
|
|
//links don't conflict with overlayfs and avoid coping 17Gb of files.
|
|
//but links require the files to be on the same filesystem
|
|
int returnValue = copy(steamGameFolder, gameFolder, CP_RECURSIVE | CP_NO_TARGET_DIR | CP_LINK);
|
|
if(returnValue < 0) {
|
|
printf("Coping game files. HINT: having the game on the same partition as you home director will make this operation use zero extra space");
|
|
returnValue = copy(steamGameFolder, gameFolder, CP_RECURSIVE | CP_NO_TARGET_DIR);
|
|
if(returnValue < 0) {
|
|
fprintf(stderr, "Copy failed make sure you have enough space on your device.");
|
|
free(steamGameFolder);
|
|
free(gameFolder);
|
|
return EXIT_FAILURE;
|
|
}
|
|
}
|
|
casefold(gameFolder);
|
|
|
|
free(steamGameFolder);
|
|
free(gameFolder);
|
|
printf("Done\n");
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
|
|
int unbind(int argc, char ** argv) {
|
|
if(argc != 3 ) return usage();
|
|
const char * appIdStr = argv[2];
|
|
int appid = validateAppId(appIdStr);
|
|
if(appid < 0) {
|
|
return EXIT_FAILURE;
|
|
}
|
|
int gameId = getGameIdFromAppId(appid);
|
|
const char * path = g_hash_table_lookup(gamePaths, &gameId);
|
|
char * steamGameFolder = g_build_path("/", path, "steamapps/common", GAMES_NAMES[gameId], "Data", NULL);
|
|
|
|
while(umount2(steamGameFolder, MNT_FORCE | MNT_DETACH) == 0);
|
|
|
|
free(steamGameFolder);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
int removeMod(int argc, char ** argv) {
|
|
if(argc != 4) return usage();
|
|
const char * appIdStr = argv[2];
|
|
int appid = validateAppId(appIdStr);
|
|
if(appid < 0) {
|
|
printf("Invalid appid");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
//strtoul set EINVAL if the string is invalid
|
|
unsigned long modId = strtoul(argv[3], NULL, 10);
|
|
if(errno == EINVAL) {
|
|
printf("Modid has to be a valid number\n");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
//might crash if no mods were installed
|
|
char * home = getHome();
|
|
char * modFolder = g_build_filename(home, MANAGER_FILES, MOD_FOLDER_NAME, appIdStr, NULL);
|
|
free(home);
|
|
GList * mods = listFilesInFolder(modFolder);
|
|
GList * modsFirstPointer = mods;
|
|
|
|
for(int i = 0; i < modId; i++) {
|
|
mods = g_list_next(mods);
|
|
}
|
|
|
|
if(mods == NULL) {
|
|
printf("Mod not found\n");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
gchar * filename = g_build_filename(modFolder, mods->data, NULL);
|
|
|
|
delete(filename, true);
|
|
|
|
g_free(filename);
|
|
g_free(modFolder);
|
|
g_list_free_full(modsFirstPointer, free);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
int fomod(int argc, char ** argv) {
|
|
if(argc != 4) return usage();
|
|
char * appIdStr = argv[2];
|
|
int appid = validateAppId(appIdStr);
|
|
if(appid < 0) {
|
|
printf("Invalid appid");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
//strtoul set EINVAL if the string is invalid
|
|
unsigned long modId = strtoul(argv[3], NULL, 10);
|
|
if(errno == EINVAL) {
|
|
printf("Modid has to be a valid number\n");
|
|
return -1;
|
|
}
|
|
|
|
//might crash if no mods were installed
|
|
char * home = getHome();
|
|
char * modFolder = g_build_filename(home, MANAGER_FILES, MOD_FOLDER_NAME, appIdStr, NULL);
|
|
free(home);
|
|
GList * mods = listFilesInFolder(modFolder);
|
|
GList * modsFirstPointer = mods;
|
|
|
|
for(int i = 0; i < modId; i++) {
|
|
mods = g_list_next(mods);
|
|
}
|
|
|
|
if(mods == NULL) {
|
|
printf("Mod not found\n");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
char * destination = g_strconcat(mods->data, "__FOMOD", NULL);
|
|
|
|
if(access(destination, F_OK) == 0) {
|
|
delete(destination, true);
|
|
}
|
|
char * modDestination = g_build_filename(modFolder, destination, NULL);
|
|
char * modPath = g_build_filename(modFolder, mods->data, NULL);
|
|
|
|
//TODO: add error handling
|
|
int returnValue = installFOMod(modPath, modDestination);
|
|
|
|
free(destination);
|
|
g_list_free_full(modsFirstPointer, free);
|
|
g_free(modDestination);
|
|
g_free(modPath);
|
|
g_free(modFolder);
|
|
return returnValue;
|
|
}
|
|
|
|
int swapMod(int argc, char ** argv) {
|
|
if(argc != 5) return usage();
|
|
char * appIdStr = argv[2];
|
|
int appid = validateAppId(appIdStr);
|
|
if(appid < 0) {
|
|
printf("Invalid appid");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
|
|
char * sentinel;
|
|
//no mod will go over the MAX_INT value
|
|
int modIdA = (int)strtoul(argv[3], &sentinel, 10);
|
|
if(errno == EINVAL || sentinel == argv[3]) {
|
|
printf("Modid A has to be a valid number\n");
|
|
return -1;
|
|
}
|
|
int modIdB = (int)strtoul(argv[4], &sentinel, 10);
|
|
if(errno == EINVAL || sentinel == argv[4]) {
|
|
printf("Modid B has to be a valid number\n");
|
|
return -1;
|
|
}
|
|
|
|
printf("%d, %d\n", modIdA, modIdB);
|
|
return swapPlace(appid, modIdA, modIdB);
|
|
}
|
|
|
|
int main(int argc, char ** argv) {
|
|
if(argc < 2 ) return usage();
|
|
|
|
if(audit_getloginuid() == 0) {
|
|
printf("Root user should not be using this\n");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
int searchStatus;
|
|
gamePaths = search_games(&searchStatus);
|
|
|
|
int returnValue = EXIT_SUCCESS;
|
|
if(searchStatus == EXIT_FAILURE) {
|
|
returnValue = EXIT_FAILURE;
|
|
printf("Error while looking up libraries, do you have steam installed ?");
|
|
goto exit;
|
|
}
|
|
|
|
char * home = getHome();
|
|
char * configFolder = g_build_filename(home, MANAGER_FILES, NULL);
|
|
free(home);
|
|
if(access(configFolder, F_OK) != 0) {
|
|
|
|
//check to NOT run this as root
|
|
//creating folder as root will causes lots of headache
|
|
//such as problem with access rights and taking the risk of
|
|
//running system as root (which is a big security issue)
|
|
if(getuid() == 0) {
|
|
printf("For the first please run without sudo\n");
|
|
returnValue = EXIT_FAILURE;
|
|
goto exit2;
|
|
} else {
|
|
//leading 0 == octal
|
|
int i = g_mkdir_with_parents(configFolder, 0755);
|
|
if(i < 0) {
|
|
printf("Could not create configs, check access rights for this path: %s", configFolder);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
if(strcmp(argv[1], "--list-games") == 0 || strcmp(argv[1], "-l") == 0) {
|
|
if(isRoot())
|
|
returnValue = noRoot();
|
|
else
|
|
returnValue = listGames(argc, argv);
|
|
|
|
} else if(strcmp(argv[1], "--add") == 0 || strcmp(argv[1], "-a") == 0) {
|
|
if(isRoot())
|
|
returnValue = noRoot();
|
|
else
|
|
returnValue = add(argc, argv);
|
|
|
|
} else if(strcmp(argv[1], "--list-mods") == 0 || strcmp(argv[1], "-m") == 0) {
|
|
if(isRoot())
|
|
returnValue = noRoot();
|
|
else
|
|
returnValue = listAllMods(argc, argv);
|
|
|
|
} else if(strcmp(argv[1], "--install") == 0 || strcmp(argv[1], "-i") == 0) {
|
|
if(isRoot())
|
|
returnValue = noRoot();
|
|
else
|
|
returnValue = installAndUninstallMod(argc, argv, true);
|
|
|
|
} else if(strcmp(argv[1], "--uninstall") == 0 || strcmp(argv[1], "-u") == 0) {
|
|
if(isRoot())
|
|
returnValue = noRoot();
|
|
else
|
|
returnValue = installAndUninstallMod(argc, argv, false);
|
|
|
|
} else if(strcmp(argv[1], "--deploy") == 0 || strcmp(argv[1], "-d") == 0) {
|
|
if(!isRoot())
|
|
returnValue = needRoot();
|
|
else
|
|
returnValue = deploy(argc, argv);
|
|
|
|
} else if(strcmp(argv[1], "--unbind") == 0){
|
|
if(!isRoot())
|
|
returnValue = needRoot();
|
|
else
|
|
returnValue = unbind(argc, argv);
|
|
|
|
} else if(strcmp(argv[1], "--setup") == 0) {
|
|
if(isRoot())
|
|
returnValue = noRoot();
|
|
else
|
|
returnValue = setup(argc, argv);
|
|
} else if(strcmp(argv[1], "--fomod") == 0){
|
|
if(isRoot())
|
|
returnValue = noRoot();
|
|
else
|
|
returnValue = fomod(argc, argv);
|
|
|
|
} else if(strcmp(argv[1], "--remove") == 0 || strcmp(argv[1], "-r") == 0) {
|
|
if(isRoot())
|
|
returnValue = noRoot();
|
|
else
|
|
returnValue = removeMod(argc, argv);
|
|
|
|
} else if(strcmp(argv[1], "--swap") == 0 || strcmp(argv[1], "-s") == 0) {
|
|
if(isRoot())
|
|
returnValue = noRoot();
|
|
else
|
|
returnValue = swapMod(argc, argv);
|
|
|
|
} else {
|
|
usage();
|
|
returnValue = EXIT_FAILURE;
|
|
}
|
|
|
|
exit2:
|
|
g_free(configFolder);
|
|
g_hash_table_destroy(gamePaths);
|
|
exit:
|
|
return returnValue;
|
|
}
|