/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/password-prompt.c

  • Committer: Teddy Hogeborn
  • Date: 2009-09-16 23:28:39 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090916232839-3o7i8qmcdcz5j1ya
* init.d-mandos (Required-Start, Required-Stop): Bug fix: Added
                 "$syslog", thanks to Petter Reinholdtsen
                 <pere@hungry.com> (Debian bug #546928).

* initramfs-tools-script: Removed erroneous comment.

* plugins.d/askpass-fifo.c: Removed TEMP_FAILURE_RETRY since it is
                            not needed.

* plugins.d/mandos-client.c (main): Bug fix: Initialize
                                    "old_sigterm_action".

* plugins.d/splashy.c (main): Bug fix: really check return value from
                              "sigaddset".  Fix some warnings on
                              64-bit systems.

* plugins.d/usplash.c (termination_handler, main): Save received
                                                   signal and
                                                   re-raise it on
                                                   exit.
  (usplash_write): Do not close FIFO, instead, take an additional file
                   descriptor pointer to it and open only when needed
                   (all callers changed).  Abort immediately on EINTR.
                   Bug fix:  Add NUL byte on single-word commands.
                   Ignore "interrupted_by_signal".
  (makeprompt, find_usplash): New; broken out from "main()".
  (find_usplash): Bug fix: close /proc/<pid>/cmdline FD on error.
  (main): Reorganized to jump to a new "failure" label on any error.
          Bug fix: check return values from sigaddset.
          New variable "usplash_accessed" to flag if usplash(8) needs
          to be killed and restarted.  Removed the "an_error_occured"
          variable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  -*- coding: utf-8 -*- */
 
1
/*  -*- coding: utf-8; mode: c; mode: orgtbl -*- */
2
2
/*
3
 
 * Passprompt - Read a password from the terminal and print it
4
 
 *
5
 
 * Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
 
3
 * Password-prompt - Read a password from the terminal and print it
 
4
 * 
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
6
 * Copyright © 2008,2009 Björn Påhlsson
6
7
 * 
7
8
 * This program is free software: you can redistribute it and/or
8
9
 * modify it under the terms of the GNU General Public License as
18
19
 * along with this program.  If not, see
19
20
 * <http://www.gnu.org/licenses/>.
20
21
 * 
21
 
 * Contact the authors at <https://www.fukt.bsnet.se/~belorn/> and
22
 
 * <https://www.fukt.bsnet.se/~teddy/>.
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
23
23
 */
24
24
 
25
25
#define _GNU_SOURCE             /* getline() */
32
32
#include <signal.h>             /* sig_atomic_t, raise(), struct
33
33
                                   sigaction, sigemptyset(),
34
34
                                   sigaction(), sigaddset(), SIGINT,
35
 
                                   SIGQUIT, SIGHUP, SIGTERM */
 
35
                                   SIGQUIT, SIGHUP, SIGTERM,
 
36
                                   raise() */
36
37
#include <stddef.h>             /* NULL, size_t, ssize_t */
37
38
#include <sys/types.h>          /* ssize_t */
38
39
#include <stdlib.h>             /* EXIT_SUCCESS, EXIT_FAILURE,
50
51
                                   ARGP_KEY_ARG, ARGP_KEY_END,
51
52
                                   ARGP_ERR_UNKNOWN */
52
53
 
53
 
volatile bool quit_now = false;
 
54
volatile sig_atomic_t quit_now = 0;
 
55
int signal_received;
54
56
bool debug = false;
55
 
const char *argp_program_version = "password-prompt 1.0";
 
57
const char *argp_program_version = "password-prompt " VERSION;
56
58
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
57
59
 
58
 
static void termination_handler(__attribute__((unused))int signum){
59
 
  quit_now = true;
 
60
static void termination_handler(int signum){
 
61
  if(quit_now){
 
62
    return;
 
63
  }
 
64
  quit_now = 1;
 
65
  signal_received = signum;
60
66
}
61
67
 
62
68
int main(int argc, char **argv){
78
84
        .doc = "Debug mode", .group = 3 },
79
85
      { .name = NULL }
80
86
    };
81
 
  
82
 
    error_t parse_opt (int key, char *arg, struct argp_state *state) {
83
 
      /* Get the INPUT argument from `argp_parse', which we know is a
84
 
         pointer to our plugin list pointer. */
85
 
      switch (key) {
 
87
    
 
88
    error_t parse_opt (int key, char *arg, struct argp_state *state){
 
89
      switch (key){
86
90
      case 'p':
87
91
        prefix = arg;
88
92
        break;
90
94
        debug = true;
91
95
        break;
92
96
      case ARGP_KEY_ARG:
93
 
        argp_usage (state);
 
97
        argp_usage(state);
94
98
        break;
95
99
      case ARGP_KEY_END:
96
100
        break;
99
103
      }
100
104
      return 0;
101
105
    }
102
 
  
 
106
    
103
107
    struct argp argp = { .options = options, .parser = parse_opt,
104
108
                         .args_doc = "",
105
109
                         .doc = "Mandos password-prompt -- Read and"
106
110
                         " output a password" };
107
 
    ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
108
 
    if (ret == ARGP_ERR_UNKNOWN){
 
111
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
 
112
    if(ret == ARGP_ERR_UNKNOWN){
109
113
      fprintf(stderr, "Unknown error while parsing arguments\n");
110
114
      return EXIT_FAILURE;
111
115
    }
112
116
  }
113
 
    
114
 
  if (debug){
 
117
  
 
118
  if(debug){
115
119
    fprintf(stderr, "Starting %s\n", argv[0]);
116
120
  }
117
 
  if (debug){
 
121
  if(debug){
118
122
    fprintf(stderr, "Storing current terminal attributes\n");
119
123
  }
120
124
  
121
 
  if (tcgetattr(STDIN_FILENO, &t_old) != 0){
 
125
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
122
126
    perror("tcgetattr");
123
127
    return EXIT_FAILURE;
124
128
  }
125
129
  
126
130
  sigemptyset(&new_action.sa_mask);
127
 
  sigaddset(&new_action.sa_mask, SIGINT);
128
 
  sigaddset(&new_action.sa_mask, SIGHUP);
129
 
  sigaddset(&new_action.sa_mask, SIGTERM);
 
131
  ret = sigaddset(&new_action.sa_mask, SIGINT);
 
132
  if(ret == -1){
 
133
    perror("sigaddset");
 
134
    return EXIT_FAILURE;
 
135
  }
 
136
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
 
137
  if(ret == -1){
 
138
    perror("sigaddset");
 
139
    return EXIT_FAILURE;
 
140
  }
 
141
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
 
142
  if(ret == -1){
 
143
    perror("sigaddset");
 
144
    return EXIT_FAILURE;
 
145
  }
 
146
  /* Need to check if the handler is SIG_IGN before handling:
 
147
     | [[info:libc:Initial Signal Actions]] |
 
148
     | [[info:libc:Basic Signal Handling]]  |
 
149
  */
130
150
  ret = sigaction(SIGINT, NULL, &old_action);
131
151
  if(ret == -1){
132
152
    perror("sigaction");
133
153
    return EXIT_FAILURE;
134
154
  }
135
 
  if (old_action.sa_handler != SIG_IGN){
 
155
  if(old_action.sa_handler != SIG_IGN){
136
156
    ret = sigaction(SIGINT, &new_action, NULL);
137
157
    if(ret == -1){
138
158
      perror("sigaction");
144
164
    perror("sigaction");
145
165
    return EXIT_FAILURE;
146
166
  }
147
 
  if (old_action.sa_handler != SIG_IGN){
 
167
  if(old_action.sa_handler != SIG_IGN){
148
168
    ret = sigaction(SIGHUP, &new_action, NULL);
149
169
    if(ret == -1){
150
170
      perror("sigaction");
156
176
    perror("sigaction");
157
177
    return EXIT_FAILURE;
158
178
  }
159
 
  if (old_action.sa_handler != SIG_IGN){
 
179
  if(old_action.sa_handler != SIG_IGN){
160
180
    ret = sigaction(SIGTERM, &new_action, NULL);
161
181
    if(ret == -1){
162
182
      perror("sigaction");
165
185
  }
166
186
  
167
187
  
168
 
  if (debug){
 
188
  if(debug){
169
189
    fprintf(stderr, "Removing echo flag from terminal attributes\n");
170
190
  }
171
191
  
172
192
  t_new = t_old;
173
193
  t_new.c_lflag &= ~ECHO;
174
 
  if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
 
194
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
175
195
    perror("tcsetattr-echo");
176
196
    return EXIT_FAILURE;
177
197
  }
178
198
 
179
 
  if (debug){
 
199
  if(debug){
180
200
    fprintf(stderr, "Waiting for input from stdin \n");
181
201
  }
182
202
  while(true){
183
 
    if (quit_now){
 
203
    if(quit_now){
184
204
      if(debug){
185
205
        fprintf(stderr, "Interrupted by signal, exiting.\n");
186
206
      }
212
232
      }
213
233
    }
214
234
    ret = getline(&buffer, &n, stdin);
215
 
    if (ret > 0){
 
235
    if(ret > 0){
216
236
      status = EXIT_SUCCESS;
217
237
      /* Make n = data size instead of allocated buffer size */
218
238
      n = (size_t)ret;
233
253
      }
234
254
      break;
235
255
    }
236
 
    if (ret < 0){
237
 
      if (errno != EINTR and not feof(stdin)){
 
256
    if(ret < 0){
 
257
      if(errno != EINTR and not feof(stdin)){
238
258
        perror("getline");
239
259
        status = EXIT_FAILURE;
240
260
        break;
244
264
       read from stdin */
245
265
    fputc('\n', stderr);
246
266
    if(debug and not quit_now){
247
 
      /* If quit_now is true, we were interrupted by a signal, and
 
267
      /* If quit_now is nonzero, we were interrupted by a signal, and
248
268
         will print that later, so no need to show this too. */
249
269
      fprintf(stderr, "getline() returned 0, retrying.\n");
250
270
    }
251
271
  }
252
272
  
253
 
  if (debug){
 
273
  free(buffer);
 
274
  
 
275
  if(debug){
254
276
    fprintf(stderr, "Restoring terminal attributes\n");
255
277
  }
256
 
  if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
 
278
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
257
279
    perror("tcsetattr+echo");
258
280
  }
259
281
  
260
 
  if (debug){
 
282
  if(quit_now){
 
283
    sigemptyset(&old_action.sa_mask);
 
284
    old_action.sa_handler = SIG_DFL;
 
285
    ret = sigaction(signal_received, &old_action, NULL);
 
286
    if(ret == -1){
 
287
      perror("sigaction");
 
288
    }
 
289
    raise(signal_received);
 
290
  }
 
291
  
 
292
  if(debug){
261
293
    fprintf(stderr, "%s is exiting with status %d\n", argv[0],
262
294
            status);
263
295
  }