22
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
25
 
#define _GNU_SOURCE             /* getline() */
 
 
25
#define _GNU_SOURCE             /* getline(), asprintf() */
 
27
27
#include <termios.h>            /* struct termios, tcsetattr(),
 
28
28
                                   TCSAFLUSH, tcgetattr(), ECHO */
 
29
29
#include <unistd.h>             /* struct termios, tcsetattr(),
 
30
30
                                   STDIN_FILENO, TCSAFLUSH,
 
 
31
                                   tcgetattr(), ECHO, readlink() */
 
32
32
#include <signal.h>             /* sig_atomic_t, raise(), struct
 
33
33
                                   sigaction, sigemptyset(),
 
34
34
                                   sigaction(), sigaddset(), SIGINT,
 
35
35
                                   SIGQUIT, SIGHUP, SIGTERM,
 
37
37
#include <stddef.h>             /* NULL, size_t, ssize_t */
 
38
 
#include <sys/types.h>          /* ssize_t */
 
 
38
#include <sys/types.h>          /* ssize_t, struct dirent, pid_t, ssize_t */
 
39
39
#include <stdlib.h>             /* EXIT_SUCCESS, EXIT_FAILURE,
 
 
41
#include <dirent.h>             /* scandir(), alphasort() */
 
41
42
#include <stdio.h>              /* fprintf(), stderr, getline(),
 
42
43
                                   stdin, feof(), fputc()
 
 
47
48
#include <error.h>              /* error() */
 
48
49
#include <iso646.h>             /* or, not */
 
49
50
#include <stdbool.h>            /* bool, false, true */
 
50
 
#include <string.h>             /* strlen, rindex */
 
 
51
#include <inttypes.h>           /* strtoumax() */
 
 
52
#include <sys/stat.h>           /* struct stat, lstat() */
 
 
53
#include <string.h>             /* strlen, rindex, memcmp */
 
51
54
#include <argp.h>               /* struct argp_option, struct
 
52
55
                                   argp_state, struct argp,
 
53
56
                                   argp_parse(), error_t,
 
 
62
65
const char *argp_program_version = "password-prompt " VERSION;
 
63
66
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
 
68
/* Needed for conflic resolution */
 
 
69
const char plymouthd_path[] = "/sbin/plymouth";
 
65
72
static void termination_handler(int signum){
 
 
70
77
  signal_received = signum;
 
 
80
bool conflict_detection(void){
 
 
82
  /* plymouth conflicts with password-promt since both want to control the
 
 
83
     associated terminal. Password-prompt exit since plymouth perferms the same
 
 
86
  int is_plymouth(const struct dirent *proc_entry){
 
 
92
      maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
 
 
94
      if(errno != 0 or *tmp != '\0'
 
 
95
         or maxvalue != (uintmax_t)((pid_t)maxvalue)){
 
 
99
    char exe_target[sizeof(plymouthd_path)];
 
 
101
    ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
 
 
103
      error(0, errno, "asprintf");
 
 
107
    struct stat exe_stat;
 
 
108
    ret = lstat(exe_link, &exe_stat);
 
 
112
        error(0, errno, "lstat");
 
 
117
    if(not S_ISLNK(exe_stat.st_mode)
 
 
118
       or exe_stat.st_uid != 0
 
 
119
       or exe_stat.st_gid != 0){
 
 
124
    ssize_t sret = readlink(exe_link, exe_target, sizeof(exe_target));
 
 
126
    if((sret != (ssize_t)sizeof(plymouthd_path)-1) or
 
 
127
       (memcmp(plymouthd_path, exe_target,
 
 
128
               sizeof(plymouthd_path)-1) != 0)){
 
 
134
  struct dirent **direntries;
 
 
136
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
 
 
138
    error(1, errno, "scandir");
 
73
148
int main(int argc, char **argv){
 
 
152
227
    fprintf(stderr, "Starting %s\n", argv[0]);
 
 
230
  if (conflict_detection()){
 
 
232
      fprintf(stderr, "Stopping %s because of conflict", argv[0]);
 
155
238
    fprintf(stderr, "Storing current terminal attributes\n");