toaruos/userspace/lock.c
Kevin Lange 07955c83c6 Fix dozens of build warnings and other oddities.
* Finally bring syscall.h up to speed and include all syscalls in the
  syscall module of the C library.
* Remove the third-party obfuscated C demos (we have nyancat, good
  enough)
* Fix userspace apps to build without complaining about undeclared
  strtok_r by disable __STRICT_ANSI__
* Fix .eh_frame by including the proper stuff with libgcc.
2012-09-04 20:27:49 -07:00

48 lines
1.1 KiB
C

/*
* lock
*
* CLI screen locker. Useful for a single-user
* terminal-only session.
*/
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <stdlib.h>
#include <syscall.h>
void sig_int(int sig) {
/* Ignore */
}
void main(int argc, char * argv[]) {
syscall_signal(2, sig_int);
char * password_a = malloc(sizeof(char) * 1024);
char * password_b = malloc(sizeof(char) * 1024);
printf("\033[H\033[2J");
fprintf(stdout, "Enter a lock password: \033[1001z");
fflush(stdout);
fgets(password_a, 1024, stdin);
password_a[strlen(password_a)-1] = '\0';
fprintf(stdout, "\033[1002z\n");
uint32_t failures = 0;
do {
printf("\033[H\033[2J");
if (failures > 0) {
printf("\n\033[1;41;33mIncorrect password. (%d failure%s)\033[0m\n", failures, (failures > 1 ? "s" : ""));
}
printf("\n\033[1;31mSystem is locked.\033[0m\n\n");
fprintf(stdout, "Enter password to unlock: \033[1001z");
fflush(stdout);
fgets(password_b, 1024, stdin);
password_b[strlen(password_b)-1] = '\0';
fprintf(stdout, "\033[1002z\n");
failures++;
} while (strcmp(password_a, password_b) != 0);
}