diff --git a/include/ver0.h b/include/rmasmoke.h similarity index 100% rename from include/ver0.h rename to include/rmasmoke.h diff --git a/include/tpm.h b/include/tpm.h new file mode 100644 index 0000000..e23d8d9 --- /dev/null +++ b/include/tpm.h @@ -0,0 +1 @@ +void tpm_write(char* index, char* bytes); \ No newline at end of file diff --git a/include/ver1.h b/include/ver1.h deleted file mode 100644 index e69de29..0000000 diff --git a/src/KVS/main.c b/src/KVS/main.c index 600bb58..278b880 100644 --- a/src/KVS/main.c +++ b/src/KVS/main.c @@ -12,8 +12,10 @@ int main(int argc, char **argv) { char* gscver = "0.5.229"; char* gsctype = "Cr50"; + + // only allow 2 characters (option & newline) - char choice[2]; + char choice[3]; ui_header(fwver, kernver, tpmver, fwmp, gscver, gsctype); printf("1) Flash new kernver via /dev/tpm0 (REQ. UNENROLLED)\n"); @@ -24,9 +26,8 @@ int main(int argc, char **argv) { printf("> "); fgets(choice, sizeof(choice), stdin); if (choice[strlen(choice) - 1] == '\n') { - choice[strlen(choice) - 1] = '\0'; - } - printf("You entered: %s\n", choice); + choice[strlen(choice) - 1] = '\0'; + } if (!strcmp(choice, "1")) { ui_flash("tpm0"); diff --git a/src/KVS/tpm.c b/src/KVS/tpm.c index e69de29..e59c818 100644 --- a/src/KVS/tpm.c +++ b/src/KVS/tpm.c @@ -0,0 +1,5 @@ +#include + +void tpm_write(char* index, char* bytes){ + printf("wip, index: %s, bytes: %s", index, bytes); +} \ No newline at end of file diff --git a/src/KVS/ui.c b/src/KVS/ui.c index b65f8fa..9aace05 100644 --- a/src/KVS/ui.c +++ b/src/KVS/ui.c @@ -1,7 +1,78 @@ #include +#include +#include +#include +#include +#include + + +#include "tpm.h" +#include "hex_utils.h" void ui_flash(char* flashtype) { - printf("wip\n"); + // i feel like this is some of the dirtiest C that + // i've ever written, please ignore it + #define V0_SIZE 38 + #define V1_SIZE 120 + + char kvgout_v0[V0_SIZE + 1]; + char kvgout_v1[V1_SIZE + 1]; + + char kerninput[12]; + char structtype[4]; + + 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); + exit(1); + } + + printf("Does your device have lightmode (v0) or darkmode (v1) recovery? Please type either v0 or v1.\n"); + printf("> "); + fgets(structtype, sizeof(structtype), stdin); + if (structtype[strlen(structtype) - 1] == '\n') { + structtype[strlen(structtype) - 1] = '\0'; + } + + // the output of strcmp if it fails is True + if (strcmp(structtype, "v0") && strcmp(structtype, "v1")){ + fprintf(stderr, "Invalid struct type %s, valid types are v0 and v1\n", structtype); + exit(1); + } + + // we check if its *false* since strcmp returns true if failing + if (!strcmp(structtype, "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(structtype, "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); + } + + + if (flashtype == "tpm0"){ + if (!strcmp(structtype, "v0")) { + tpm_write("0x1008", kvgout_v0); + } else if (!strcmp(structtype, "v1")) { + tpm_write("0x1008", kvgout_v1); + } + } else if (flashtype == "rmasmoke"){ + printf("using rmasmoke\n"); + } } void ui_header(char* fwver, char* kernver, char* tpmver, char* fwmp, char* gscver, char* gsctype){