/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:
37
37
#include <stddef.h>             /* NULL, size_t, ssize_t */
38
38
#include <sys/types.h>          /* ssize_t */
39
39
#include <stdlib.h>             /* EXIT_SUCCESS, EXIT_FAILURE,
40
 
                                   getenv() */
 
40
                                   getopt_long, getenv() */
41
41
#include <stdio.h>              /* fprintf(), stderr, getline(),
42
 
                                   stdin, feof(), fputc()
43
 
                                */
44
 
#include <errno.h>              /* errno, EBADF, ENOTTY, EINVAL,
45
 
                                   EFAULT, EFBIG, EIO, ENOSPC, EINTR
46
 
                                */
47
 
#include <error.h>              /* error() */
 
42
                                   stdin, feof(), perror(), fputc(),
 
43
                                   stdout, getopt_long */
 
44
#include <errno.h>              /* errno, EINVAL */
48
45
#include <iso646.h>             /* or, not */
49
46
#include <stdbool.h>            /* bool, false, true */
50
 
#include <string.h>             /* strlen, rindex */
 
47
#include <string.h>             /* strlen, rindex, strncmp, strcmp */
51
48
#include <argp.h>               /* struct argp_option, struct
52
49
                                   argp_state, struct argp,
53
50
                                   argp_parse(), error_t,
54
51
                                   ARGP_KEY_ARG, ARGP_KEY_END,
55
52
                                   ARGP_ERR_UNKNOWN */
56
 
#include <sysexits.h>           /* EX_SOFTWARE, EX_OSERR,
57
 
                                   EX_UNAVAILABLE, EX_IOERR, EX_OK */
58
53
 
59
54
volatile sig_atomic_t quit_now = 0;
60
55
int signal_received;
71
66
}
72
67
 
73
68
int main(int argc, char **argv){
74
 
  ssize_t sret;
75
 
  int ret;
 
69
  ssize_t ret;
76
70
  size_t n;
77
71
  struct termios t_new, t_old;
78
72
  char *buffer = NULL;
88
82
        .doc = "Prefix shown before the prompt", .group = 2 },
89
83
      { .name = "debug", .key = 128,
90
84
        .doc = "Debug mode", .group = 3 },
91
 
      /*
92
 
       * These reproduce what we would get without ARGP_NO_HELP
93
 
       */
94
 
      { .name = "help", .key = '?',
95
 
        .doc = "Give this help list", .group = -1 },
96
 
      { .name = "usage", .key = -3,
97
 
        .doc = "Give a short usage message", .group = -1 },
98
 
      { .name = "version", .key = 'V',
99
 
        .doc = "Print program version", .group = -1 },
100
85
      { .name = NULL }
101
86
    };
102
87
    
103
88
    error_t parse_opt (int key, char *arg, struct argp_state *state){
104
 
      errno = 0;
105
89
      switch (key){
106
90
      case 'p':
107
91
        prefix = arg;
109
93
      case 128:
110
94
        debug = true;
111
95
        break;
112
 
        /*
113
 
         * These reproduce what we would get without ARGP_NO_HELP
114
 
         */
115
 
      case '?':                 /* --help */
116
 
        argp_state_help(state, state->out_stream,
117
 
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
118
 
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
119
 
      case -3:                  /* --usage */
120
 
        argp_state_help(state, state->out_stream,
121
 
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
122
 
      case 'V':                 /* --version */
123
 
        fprintf(state->out_stream, "%s\n", argp_program_version);
124
 
        exit(argp_err_exit_status);
 
96
      case ARGP_KEY_ARG:
 
97
        argp_usage(state);
 
98
        break;
 
99
      case ARGP_KEY_END:
125
100
        break;
126
101
      default:
127
102
        return ARGP_ERR_UNKNOWN;
128
103
      }
129
 
      return errno;
 
104
      return 0;
130
105
    }
131
106
    
132
107
    struct argp argp = { .options = options, .parser = parse_opt,
133
108
                         .args_doc = "",
134
109
                         .doc = "Mandos password-prompt -- Read and"
135
110
                         " output a password" };
136
 
    ret = argp_parse(&argp, argc, argv,
137
 
                     ARGP_IN_ORDER | ARGP_NO_HELP, NULL, NULL);
138
 
    switch(ret){
139
 
    case 0:
140
 
      break;
141
 
    case ENOMEM:
142
 
    default:
143
 
      errno = ret;
144
 
      error(0, errno, "argp_parse");
145
 
      return EX_OSERR;
146
 
    case EINVAL:
147
 
      return EX_USAGE;
 
111
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
 
112
    if(ret == ARGP_ERR_UNKNOWN){
 
113
      fprintf(stderr, "Unknown error while parsing arguments\n");
 
114
      return EXIT_FAILURE;
148
115
    }
149
116
  }
150
117
  
156
123
  }
157
124
  
158
125
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
159
 
    int e = errno;
160
 
    error(0, errno, "tcgetattr");
161
 
    switch(e){
162
 
    case EBADF:
163
 
    case ENOTTY:
164
 
      return EX_UNAVAILABLE;
165
 
    default:
166
 
      return EX_OSERR;
167
 
    }
 
126
    perror("tcgetattr");
 
127
    return EXIT_FAILURE;
168
128
  }
169
129
  
170
130
  sigemptyset(&new_action.sa_mask);
171
131
  ret = sigaddset(&new_action.sa_mask, SIGINT);
172
132
  if(ret == -1){
173
 
    error(0, errno, "sigaddset");
174
 
    return EX_OSERR;
 
133
    perror("sigaddset");
 
134
    return EXIT_FAILURE;
175
135
  }
176
136
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
177
137
  if(ret == -1){
178
 
    error(0, errno, "sigaddset");
179
 
    return EX_OSERR;
 
138
    perror("sigaddset");
 
139
    return EXIT_FAILURE;
180
140
  }
181
141
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
182
142
  if(ret == -1){
183
 
    error(0, errno, "sigaddset");
184
 
    return EX_OSERR;
 
143
    perror("sigaddset");
 
144
    return EXIT_FAILURE;
185
145
  }
186
146
  /* Need to check if the handler is SIG_IGN before handling:
187
147
     | [[info:libc:Initial Signal Actions]] |
189
149
  */
190
150
  ret = sigaction(SIGINT, NULL, &old_action);
191
151
  if(ret == -1){
192
 
    error(0, errno, "sigaction");
193
 
    return EX_OSERR;
 
152
    perror("sigaction");
 
153
    return EXIT_FAILURE;
194
154
  }
195
155
  if(old_action.sa_handler != SIG_IGN){
196
156
    ret = sigaction(SIGINT, &new_action, NULL);
197
157
    if(ret == -1){
198
 
      error(0, errno, "sigaction");
199
 
      return EX_OSERR;
 
158
      perror("sigaction");
 
159
      return EXIT_FAILURE;
200
160
    }
201
161
  }
202
162
  ret = sigaction(SIGHUP, NULL, &old_action);
203
163
  if(ret == -1){
204
 
    error(0, errno, "sigaction");
205
 
    return EX_OSERR;
 
164
    perror("sigaction");
 
165
    return EXIT_FAILURE;
206
166
  }
207
167
  if(old_action.sa_handler != SIG_IGN){
208
168
    ret = sigaction(SIGHUP, &new_action, NULL);
209
169
    if(ret == -1){
210
 
      error(0, errno, "sigaction");
211
 
      return EX_OSERR;
 
170
      perror("sigaction");
 
171
      return EXIT_FAILURE;
212
172
    }
213
173
  }
214
174
  ret = sigaction(SIGTERM, NULL, &old_action);
215
175
  if(ret == -1){
216
 
    error(0, errno, "sigaction");
217
 
    return EX_OSERR;
 
176
    perror("sigaction");
 
177
    return EXIT_FAILURE;
218
178
  }
219
179
  if(old_action.sa_handler != SIG_IGN){
220
180
    ret = sigaction(SIGTERM, &new_action, NULL);
221
181
    if(ret == -1){
222
 
      error(0, errno, "sigaction");
223
 
      return EX_OSERR;
 
182
      perror("sigaction");
 
183
      return EXIT_FAILURE;
224
184
    }
225
185
  }
226
186
  
230
190
  }
231
191
  
232
192
  t_new = t_old;
233
 
  t_new.c_lflag &= ~(tcflag_t)ECHO;
 
193
  t_new.c_lflag &= ~ECHO;
234
194
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
235
 
    int e = errno;
236
 
    error(0, errno, "tcsetattr-echo");
237
 
    switch(e){
238
 
    case EBADF:
239
 
    case ENOTTY:
240
 
      return EX_UNAVAILABLE;
241
 
    case EINVAL:
242
 
    default:
243
 
      return EX_OSERR;
244
 
    }
 
195
    perror("tcsetattr-echo");
 
196
    return EXIT_FAILURE;
245
197
  }
246
 
  
 
198
 
247
199
  if(debug){
248
200
    fprintf(stderr, "Waiting for input from stdin \n");
249
201
  }
260
212
      fprintf(stderr, "%s ", prefix);
261
213
    }
262
214
    {
263
 
      const char *cryptsource = getenv("CRYPTTAB_SOURCE");
264
 
      const char *crypttarget = getenv("CRYPTTAB_NAME");
265
 
      /* Before cryptsetup 1.1.0~rc2 */
266
 
      if(cryptsource == NULL){
267
 
        cryptsource = getenv("cryptsource");
268
 
      }
269
 
      if(crypttarget == NULL){
270
 
        crypttarget = getenv("crypttarget");
271
 
      }
272
 
      const char *const prompt1 = "Unlocking the disk";
273
 
      const char *const prompt2 = "Enter passphrase";
 
215
      const char *cryptsource = getenv("cryptsource");
 
216
      const char *crypttarget = getenv("crypttarget");
 
217
      const char *const prompt
 
218
        = "Enter passphrase to unlock the disk";
274
219
      if(cryptsource == NULL){
275
220
        if(crypttarget == NULL){
276
 
          fprintf(stderr, "%s to unlock the disk: ", prompt2);
 
221
          fprintf(stderr, "%s: ", prompt);
277
222
        } else {
278
 
          fprintf(stderr, "%s (%s)\n%s: ", prompt1, crypttarget,
279
 
                  prompt2);
 
223
          fprintf(stderr, "%s (%s): ", prompt, crypttarget);
280
224
        }
281
225
      } else {
282
226
        if(crypttarget == NULL){
283
 
          fprintf(stderr, "%s %s\n%s: ", prompt1, cryptsource,
284
 
                  prompt2);
 
227
          fprintf(stderr, "%s %s: ", prompt, cryptsource);
285
228
        } else {
286
 
          fprintf(stderr, "%s %s (%s)\n%s: ", prompt1, cryptsource,
287
 
                  crypttarget, prompt2);
 
229
          fprintf(stderr, "%s %s (%s): ", prompt, cryptsource,
 
230
                  crypttarget);
288
231
        }
289
232
      }
290
233
    }
291
 
    sret = getline(&buffer, &n, stdin);
292
 
    if(sret > 0){
 
234
    ret = getline(&buffer, &n, stdin);
 
235
    if(ret > 0){
293
236
      status = EXIT_SUCCESS;
294
237
      /* Make n = data size instead of allocated buffer size */
295
 
      n = (size_t)sret;
 
238
      n = (size_t)ret;
296
239
      /* Strip final newline */
297
 
      if(n > 0 and buffer[n-1] == '\n'){
 
240
      if(n>0 and buffer[n-1] == '\n'){
298
241
        buffer[n-1] = '\0';     /* not strictly necessary */
299
242
        n--;
300
243
      }
301
244
      size_t written = 0;
302
245
      while(written < n){
303
 
        sret = write(STDOUT_FILENO, buffer + written, n - written);
304
 
        if(sret < 0){
305
 
          int e = errno;
306
 
          error(0, errno, "write");
307
 
          switch(e){
308
 
          case EBADF:
309
 
          case EFAULT:
310
 
          case EINVAL:
311
 
          case EFBIG:
312
 
          case EIO:
313
 
          case ENOSPC:
314
 
          default:
315
 
            status = EX_IOERR;
316
 
            break;
317
 
          case EINTR:
318
 
            status = EXIT_FAILURE;
319
 
            break;
320
 
          }
321
 
          break;
322
 
        }
323
 
        written += (size_t)sret;
324
 
      }
325
 
      sret = close(STDOUT_FILENO);
326
 
      if(sret == -1){
327
 
        int e = errno;
328
 
        error(0, errno, "close");
329
 
        switch(e){
330
 
        case EBADF:
331
 
          status = EX_OSFILE;
332
 
          break;
333
 
        case EIO:
334
 
        default:
335
 
          status = EX_IOERR;
336
 
          break;
337
 
        }
 
246
        ret = write(STDOUT_FILENO, buffer + written, n - written);
 
247
        if(ret < 0){
 
248
          perror("write");
 
249
          status = EXIT_FAILURE;
 
250
          break;
 
251
        }
 
252
        written += (size_t)ret;
338
253
      }
339
254
      break;
340
255
    }
341
 
    if(sret < 0){
342
 
      int e = errno;
 
256
    if(ret < 0){
343
257
      if(errno != EINTR and not feof(stdin)){
344
 
        error(0, errno, "getline");
345
 
        switch(e){
346
 
        case EBADF:
347
 
          status = EX_UNAVAILABLE;
348
 
        case EIO:
349
 
        case EINVAL:
350
 
        default:
351
 
          status = EX_IOERR;
352
 
          break;
353
 
        }
 
258
        perror("getline");
 
259
        status = EXIT_FAILURE;
354
260
        break;
355
261
      }
356
262
    }
357
 
    /* if(sret == 0), then the only sensible thing to do is to retry to
 
263
    /* if(ret == 0), then the only sensible thing to do is to retry to
358
264
       read from stdin */
359
265
    fputc('\n', stderr);
360
266
    if(debug and not quit_now){
370
276
    fprintf(stderr, "Restoring terminal attributes\n");
371
277
  }
372
278
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
373
 
    error(0, errno, "tcsetattr+echo");
 
279
    perror("tcsetattr+echo");
374
280
  }
375
281
  
376
282
  if(quit_now){
378
284
    old_action.sa_handler = SIG_DFL;
379
285
    ret = sigaction(signal_received, &old_action, NULL);
380
286
    if(ret == -1){
381
 
      error(0, errno, "sigaction");
 
287
      perror("sigaction");
382
288
    }
383
289
    raise(signal_received);
384
290
  }
387
293
    fprintf(stderr, "%s is exiting with status %d\n", argv[0],
388
294
            status);
389
295
  }
390
 
  if(status == EXIT_SUCCESS or status == EX_OK){
 
296
  if(status == EXIT_SUCCESS){
391
297
    fputc('\n', stderr);
392
298
  }
393
299