#include "ui.h"
#include "sysinfo.h"
+#include "arg_checks.h"
void kernver_faq(){
printf(
@@ -18,10 +19,19 @@ void kernver_faq(){
);
};
+void dbgprintf(char* text){
+ if (fbool("--debug","-d")){
+ printf("DEBUG: %s\n", text);
+ }
+}
+
int main(int argc, char **argv) {
+ gargc = argc;
+ gargv = argv;
if (geteuid() != 0){
printf("Please run KVS as root!\n");
- exit(1);
+ printf("This is a bug, please report it at https://github.com/kxtzownsu/KVS");
+ sleep(86400);
}
const char* fwver = getFirmwareVersion();
@@ -33,6 +43,7 @@ int main(int argc, char **argv) {
// only allow 2 characters (option & newline)
char choice[3];
+ dbgprintf("ui loop \n");
while (true) {
char* kernver = getKernver();
diff --git a/src/KVS/rmasmoke.c b/src/KVS/rmasmoke.c
deleted file mode 100644
index e69de29..0000000
diff --git a/src/KVS/ui.c b/src/KVS/ui.c
index 254d96d..3c9bbcb 100644
--- a/src/KVS/ui.c
+++ b/src/KVS/ui.c
@@ -24,48 +24,43 @@ void ui_flash(char* flashtype) {
printf("What kernver would you like to flash? \n");
printf("> ");
fgets(kerninput, sizeof(kerninput), stdin);
- // nya
if (kerninput[strlen(kerninput) - 1] == '\n') {
kerninput[strlen(kerninput) - 1] = '\0';
}
if (!is_valid_hex(kerninput)){
- fprintf(stderr, "Your kernver, %s, was an invalid input. Not hex.", kerninput);
+ fprintf(stderr, "Your kernver, %s, was an invalid input, not hex. A valid input would be: 0x00010001", kerninput);
exit(1);
- }
+ } else {
+ // the output of strcmp if it fails is True
+ if (strcmp(KERNVER_TYPE, "v0") && strcmp(KERNVER_TYPE, "v1")){
+ // the reason we're not redirecting the user to the issues page is because if KERNVER_TYPE
+ // isn't detected as v0 or v1 in sysinfo.h, it'll do that already
+ fprintf(stderr, "%s", KERNVER_TYPE);
+ sleep(86400);
+ }
- // the output of strcmp if it fails is True
- if (strcmp(KERNVER_TYPE, "v0") && strcmp(KERNVER_TYPE, "v1")){
- fprintf(stderr, KERNVER_TYPE);
- exit(1);
- }
+ // we check if its *false* since strcmp returns true if failing
+ if (!strcmp(KERNVER_TYPE, "v0")){
+ char cmd[128];
- // we check if its *false* since strcmp returns true if failing
- if (!strcmp(KERNVER_TYPE, "v0")){
- char cmd[128];
+ snprintf(cmd, sizeof(cmd), "kvg %s --ver=0", kerninput);
+ FILE* fp = popen(cmd, "r");
+ fgets(kvgout_v0, sizeof(kvgout_v0), fp);
+ fclose(fp);
+ } else if (!strcmp(KERNVER_TYPE, "v1")) {
+ char cmd[128];
- snprintf(cmd, sizeof(cmd), "kvg %s --ver=0", kerninput);
- FILE* fp = popen(cmd, "r");
- fgets(kvgout_v0, sizeof(kvgout_v0), fp);
- fclose(fp);
- } else if (!strcmp(KERNVER_TYPE, "v1")) {
- char cmd[128];
-
- snprintf(cmd, sizeof(cmd), "kvg %s --ver=1", kerninput);
- FILE* fp = popen(cmd, "r");
- fgets(kvgout_v1, sizeof(kvgout_v1), fp);
- fclose(fp);
- }
+ snprintf(cmd, sizeof(cmd), "kvg %s --ver=1", kerninput);
+ FILE* fp = popen(cmd, "r");
+ fgets(kvgout_v1, sizeof(kvgout_v1), fp);
+ fclose(fp);
+ }
-
- if (flashtype == "tpm0"){
if (!strcmp(KERNVER_TYPE, "v0")) {
tpm_nvwrite("0x1008", kvgout_v0);
-
} else if (!strcmp(KERNVER_TYPE, "v1")) {
tpm_nvwrite("0x1008", kvgout_v1);
}
- } else if (flashtype == "rmasmoke"){
- printf("using rmasmoke\n");
}
}
@@ -83,6 +78,7 @@ void ui_header(const char* fwver, char* kernver, const char* tpmver, const char*
void show_credits(){
printf("kxtzownsu - Writing KVS 1 and 2\n");
printf("Hannah/ZegLol - writing is_ti50, mental support, testing\n");
+ printf("Darkn - testing\n");
}
void troll(){
diff --git a/website/index.html b/website/index.html
index 55ef382..52b30a5 100644
--- a/website/index.html
+++ b/website/index.html
@@ -55,7 +55,7 @@
Credits
kxtzownsu - Writing KVS
OlyB - Helping me with the shim builder, most of the shim builder wouldn't exist without him.
- Google - Writing the tpmc
command :3
+ Google - Writing the tpmc
command