/**
* cerberus – Minimal login program
*
* Copyright © 2013, 2014 Mattias Andrée (maandree@member.fsf.org)
*
* 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.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
#include "cerberus.h"
#include
#include
#define HOOK_LOGIN 0
#define HOOK_LOGOUT 1
#define HOOK_DENIED 2
#ifdef USE_TTY_GROUP
/**
* The group ID for the `tty` group
*/
static gid_t tty_group = 0;
#endif
/**
* The user's entry in the password file
*/
static struct passwd* entry;
/**
* The process ID of the child process, 0 if none
*/
pid_t child_pid = 0;
#if AUTH > 0
/**
* The passphrase
*/
char* passphrase = NULL;
#endif
/**
* Mane method
*
* @param argc The number of command line arguments
* @param argv The command line arguments
* @return Return code
*/
int main(int argc, char** argv)
{
char* tty_device = ttyname(STDIN_FILENO);
do_login(argc, argv);
/* Ignore signals */
signal(SIGQUIT, SIG_IGN);
signal(SIGINT, SIG_IGN);
/* Run login hook */
if (fork() == 0)
{
exec_hook(HOOK_LOGIN, argc, argv);
return 0;
}
/* Wait for the login shell and all grandchildren to exit */
while ((wait(NULL) == -1) && (errno == EINTR))
;
/* Regain access to the terminal */
if (tty_device)
{
int fd = open(tty_device, O_RDWR | O_NONBLOCK);
if (fd != 0) dup2(fd, 0);
if (fd != 1) dup2(fd, 1);
if (fd != 2) dup2(fd, 2);
}
/* Reset terminal ownership and mode */
chown_tty(0, tty_group, 0);
/* Close login session */
close_login_session();
/* Run logout hook */
exec_hook(HOOK_LOGOUT, argc, argv);
return 0;
}
/**
* Exec /etc/cerberusrc
*
* @param hook The ID of the hook to run
* @param argc The number of command line arguments
* @param argv The command line arguments
*/
void exec_hook(int hook, int argc, char** argv)
{
static char cerberusrc[] = CERBERUSRC;
static char hooks[][7] =
{
[HOOK_LOGIN] = "login",
[HOOK_LOGOUT] = "logout",
[HOOK_DENIED] = "denied",
};
char** args = malloc((size_t)(argc + 2) * sizeof(char*));
int i;
if (args == NULL)
{
perror("malloc");
return;
}
args[0] = cerberusrc;
args[1] = hooks[hook];
for (i = 1; i < argc; i++)
args[i + 1] = argv[i];
args[argc + 1] = NULL;
execv(CERBERUSRC, args);
}
/**
* Do everything before the fork and do everything the exec fork
*
* @param argc The number of command line arguments
* @param argv The command line arguments
*/
void do_login(int argc, char** argv)
{
char* username = NULL;
char* hostname = NULL;
char preserve_env = 0;
char skip_auth = 0;
int ret;
#ifdef USE_TTY_GROUP
struct group* group;
#endif
#if AUTH > 0
/* Disable echoing */
passphrase_disable_echo();
/* This should be done as early and quickly as possible so as little
as possible of the passphrase gets leaked to the output if the user
begins entering the passphrase directly after the username. */
#endif
/* Set process group ID */
setpgrp();
/* Parse command line arguments */
{
char double_dashed = 0;
char hostname_on_next = 0;
int i;
for (i = 1; i < argc; i++)
{
char *arg = *(argv + i);
char c;
if (*arg == 0)
;
else if ((*arg == '-') && (double_dashed == 0))
while ((c = *(++arg)))
if (c == 'H')
;
else if (c == 'V')
_exit(2);
else if (c == 'p')
preserve_env = 1;
else if (c == 'h')
{
if (*(arg + 1))
hostname = arg + 1;
else
hostname_on_next = 1;
break;
}
else if (c == 'f')
{
if (*(arg + 1))
username = arg + 1;
skip_auth = 1;
break;
}
else if (c == '-')
{
double_dashed = 1;
break;
}
else
printf("%s: unrecognised options: -%c\n", *argv, c);
else if (hostname_on_next)
{
hostname = arg;
hostname_on_next = 0;
}
else
username = arg;
}
}
/* Change that a username has been specified */
if (username == NULL)
{
printf("%s: no username specified\n", *argv);
sleep(ERROR_SLEEP);
_exit(2);
}
/* Only root may bypass authentication */
if (skip_auth)
{
if (getuid())
{
printf("%s: only root by use the -f option\n", *argv);
sleep(ERROR_SLEEP);
_exit(2);
}
}
/* Print ant we want a passphrase, if -f has not been used */
else
{
printf("Passphrase: ");
fflush(stdout);
}
/* Done early to make to program look like it is even faster than it is */
/* Make sure nopony is spying */
#ifdef USE_TTY_GROUP
if ((group = getgrnam(TTY_GROUP)))
tty_group = group->gr_gid;
endgrent();
#endif
secure_tty(tty_group);
#if AUTH > 0
/* Redisable echoing */
passphrase_disable_echo();
#endif
/* Set up clean quiting and time out */
signal(SIGALRM, timeout_quit);
signal(SIGQUIT, user_quit);
signal(SIGINT, user_quit);
siginterrupt(SIGALRM, 1);
siginterrupt(SIGQUIT, 1);
siginterrupt(SIGINT, 1);
#if AUTH > 0
alarm(TIMEOUT_SECONDS);
#endif
/* Get user information */
if ((entry = getpwnam(username)) == NULL)
{
if (errno)
perror("getpwnam");
else
printf("User does not exist\n");
sleep(ERROR_SLEEP);
_exit(1);
}
endpwent();
username = entry->pw_name;
/* Verify passphrase or other token, if -f has not been used */
ret = 2;
#if AUTH == 0
(void) hostname;
#else
initialise_login(hostname, username, read_passphrase);
if (skip_auth == 0)
ret = authenticate_login();
#endif
if (ret == 2)
printf("(auto-authenticated)\n");
if (ret == 0)
{
if (fork() == 0)
{
exec_hook(HOOK_DENIED, argc, argv);
_exit(0);
}
sleep(FAILURE_SLEEP);
_exit(1);
}
#if AUTH > 0
/* Passphrase entered, turn off timeout */
alarm(0);
/* Wipe and free the passphrase from the memory */
destroy_passphrase();
/* Reset terminal settings */
passphrase_reenable_echo();
#endif
/* Verify account, such as that it is enabled */
verify_account();
/* Partial login */
chown_tty(entry->pw_uid, tty_group, 0);
chdir_home(entry);
ensure_shell(entry);
set_environ(entry, preserve_env);
open_login_session();
/* Stop signal handling */
signal(SIGALRM, SIG_DFL);
signal(SIGQUIT, SIG_DFL);
signal(SIGTSTP, SIG_IGN);
child_pid = fork();
/* vfork cannot be used as the child changes the user,
the parent would not be able to chown the TTY */
if (child_pid == -1)
{
perror("fork");
close_login_session();
sleep(ERROR_SLEEP);
_exit(1);
}
else if (child_pid)
return; /* Do not go beyond this in the parent */
/* In case the shell does not do this */
setsid();
/* Set controlling terminal */
if (ioctl(STDIN_FILENO, TIOCSCTTY, 1))
perror("TIOCSCTTY");
signal(SIGINT, SIG_DFL);
/* Partial login */
ret = entry->pw_uid
? initgroups(username, entry->pw_gid) /* supplemental groups for user, can require network */
: setgroups(0, NULL); /* supplemental groups for root, does not require netork */
if (ret == -1)
{
perror(entry->pw_uid ? "initgroups" : "setgroups");
sleep(ERROR_SLEEP);
_exit(1);
}
set_user(entry);
exec_shell(entry);
}
#if AUTH > 0
/**
* Read passphrase from the terminal
*
* @return The entered passphrase
*/
char* read_passphrase(void)
{
passphrase = passphrase_read();
if (passphrase == NULL)
{
perror("passphrase_read");
sleep(ERROR_SLEEP);
_exit(1);
}
return passphrase;
}
#endif
# pragma GCC optimize "-O0"
/**
* Wipe and free the passphrase if it is allocated
*/
void destroy_passphrase(void)
{
if (passphrase)
{
passphrase_wipe(passphrase, strlen(passphrase));
free(passphrase);
passphrase = NULL;
}
}
/**
* Wipe the passphrase when the program exits
*/
static __attribute__((destructor)) void passphrase_destructor(void)
{
destroy_passphrase();
}