/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/passprompt.c

  • Committer: Teddy Hogeborn
  • Date: 2008-07-21 04:42:08 UTC
  • mfrom: (15.1.3 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20080721044208-y8v1sjmvalfiehrv
Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
                                   SIGQUIT, SIGHUP, SIGTERM */
12
12
#include <stddef.h>             /* NULL, size_t */
13
13
#include <sys/types.h>          /* ssize_t */
14
 
#include <stdlib.h>             /* EXIT_SUCCESS, EXIT_FAILURE */
 
14
#include <stdlib.h>             /* EXIT_SUCCESS, EXIT_FAILURE,
 
15
                                   getopt_long */
15
16
#include <stdio.h>              /* fprintf(), stderr, getline(),
16
17
                                   stdin, feof(), perror(), fputc(),
17
 
                                   stdout */
 
18
                                   stdout, getopt_long */
18
19
#include <errno.h>              /* errno, EINVAL */
19
20
#include <iso646.h>             /* or, not */
20
21
#include <stdbool.h>            /* bool, false, true */
 
22
#include <string.h>             /* strlen, rindex, strncmp, strcmp */
 
23
#include <getopt.h>             /* getopt_long */
21
24
 
22
25
volatile bool quit_now = false;
 
26
bool debug = false;
23
27
 
24
28
void termination_handler(int signum){
25
29
  quit_now = true;
26
30
}
27
31
 
28
32
int main(int argc, char **argv){
29
 
  ssize_t ret = -1;
 
33
  ssize_t ret;
30
34
  size_t n;
31
35
  struct termios t_new, t_old;
32
36
  char *buffer = NULL;
 
37
  char *prefix = NULL;
33
38
  int status = EXIT_SUCCESS;
34
39
  struct sigaction old_action,
35
40
    new_action = { .sa_handler = termination_handler,
36
41
                   .sa_flags = 0 };
 
42
 
 
43
  while (true){
 
44
    static struct option long_options[] = {
 
45
      {"debug", no_argument, (int *)&debug, 1},
 
46
      {"prefix", required_argument, 0, 'p'},
 
47
      {0, 0, 0, 0} };
 
48
 
 
49
    int option_index = 0;
 
50
    ret = getopt_long (argc, argv, "p:", long_options, &option_index);
 
51
 
 
52
    if (ret == -1){
 
53
      break;
 
54
    }
 
55
      
 
56
    switch(ret){
 
57
    case 0:
 
58
      break;
 
59
    case 'p':
 
60
      prefix = optarg;
 
61
      break;
 
62
    default:
 
63
      fprintf(stderr, "bad arguments\n");
 
64
      exit(EXIT_FAILURE);
 
65
    }
 
66
  }
 
67
      
 
68
  if (debug){
 
69
    fprintf(stderr, "Starting %s\n", argv[0]);
 
70
  }
 
71
  if (debug){
 
72
    fprintf(stderr, "Storing current terminal attributes\n");
 
73
  }
37
74
  
38
75
  if (tcgetattr(STDIN_FILENO, &t_old) != 0){
39
76
    return EXIT_FAILURE;
56
93
  sigaction(SIGTERM, NULL, &old_action);
57
94
  if (old_action.sa_handler != SIG_IGN)
58
95
    sigaction(SIGTERM, &new_action, NULL);
 
96
 
 
97
  
 
98
  if (debug){
 
99
    fprintf(stderr, "Removing echo flag from terminal attributes\n");
 
100
  }
59
101
  
60
102
  t_new = t_old;
61
103
  t_new.c_lflag &= ~ECHO;
63
105
    perror("tcsetattr-echo");
64
106
    return EXIT_FAILURE;
65
107
  }
66
 
  
 
108
 
 
109
  if (debug){
 
110
    fprintf(stderr, "Waiting for input from stdin \n");
 
111
  }
67
112
  while(true){
68
113
    if (quit_now){
69
114
      status = EXIT_FAILURE;
70
115
      break;
71
116
    }
72
 
    fprintf(stderr, "Password: ");
 
117
 
 
118
    if(prefix){
 
119
      fprintf(stderr, "%s Password: ", prefix);
 
120
    } else {
 
121
      fprintf(stderr, "Password: ");
 
122
    }      
73
123
    ret = getline(&buffer, &n, stdin);
74
124
    if (ret > 0){
75
125
      fprintf(stdout, "%s", buffer);
87
137
    fputc('\n', stderr);
88
138
  }
89
139
 
 
140
  if (debug){
 
141
    fprintf(stderr, "Restoring terminal attributes\n");
 
142
  }
90
143
  if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
91
144
    perror("tcsetattr+echo");
92
145
  }
 
146
 
 
147
  if (debug){
 
148
    fprintf(stderr, "%s is exiting\n", argv[0]);
 
149
  }
93
150
  
94
151
  return status;
95
152
}