3
3
 * Password-prompt - Read a password from the terminal and print it
 
5
 
 * Copyright © 2008-2010 Teddy Hogeborn
 
6
 
 * Copyright © 2008-2010 Björn Påhlsson
 
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
 
6
 * Copyright © 2008,2009 Björn Påhlsson
 
8
8
 * This program is free software: you can redistribute it and/or
 
9
9
 * modify it under the terms of the GNU General Public License as
 
 
22
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
25
 
#define _GNU_SOURCE             /* getline(), asprintf() */
 
 
25
#define _GNU_SOURCE             /* getline() */
 
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, struct dirent, pid_t, ssize_t */
 
 
38
#include <sys/types.h>          /* ssize_t */
 
39
39
#include <stdlib.h>             /* EXIT_SUCCESS, EXIT_FAILURE,
 
41
 
#include <dirent.h>             /* scandir(), alphasort() */
 
42
41
#include <stdio.h>              /* fprintf(), stderr, getline(),
 
43
42
                                   stdin, feof(), fputc()
 
 
48
47
#include <error.h>              /* error() */
 
49
48
#include <iso646.h>             /* or, not */
 
50
49
#include <stdbool.h>            /* bool, false, true */
 
51
 
#include <inttypes.h>           /* strtoumax() */
 
52
 
#include <sys/stat.h>           /* struct stat, lstat() */
 
53
 
#include <string.h>             /* strlen, rindex, memcmp */
 
 
50
#include <string.h>             /* strlen, rindex */
 
54
51
#include <argp.h>               /* struct argp_option, struct
 
55
52
                                   argp_state, struct argp,
 
56
53
                                   argp_parse(), error_t,
 
 
65
62
const char *argp_program_version = "password-prompt " VERSION;
 
66
63
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
68
 
/* Needed for conflic resolution */
 
69
 
const char plymouthd_path[] = "/sbin/plymouth";
 
72
65
static void termination_handler(int signum){
 
 
77
70
  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");
 
148
73
int main(int argc, char **argv){
 
 
227
152
    fprintf(stderr, "Starting %s\n", argv[0]);
 
230
 
  if (conflict_detection()){
 
232
 
      fprintf(stderr, "Stopping %s because of conflict", argv[0]);
 
238
155
    fprintf(stderr, "Storing current terminal attributes\n");