/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 at bsnet
  • Date: 2011-03-15 19:15:24 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110315191524-jc3ajgqu2za7dcly
* mandos: Use the new argparse library instead of optparse.
* debian/control (mandos): Depend on python (<=2.7) | python-argparse

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*
3
3
 * Password-prompt - Read a password from the terminal and print it
4
4
 * 
5
 
 * Copyright © 2008-2019 Teddy Hogeborn
6
 
 * Copyright © 2008-2019 Björn Påhlsson
7
 
 * 
8
 
 * This file is part of Mandos.
9
 
 * 
10
 
 * Mandos is free software: you can redistribute it and/or modify it
11
 
 * under the terms of the GNU General Public License as published by
12
 
 * the Free Software Foundation, either version 3 of the License, or
13
 
 * (at your option) any later version.
14
 
 * 
15
 
 * Mandos is distributed in the hope that it will be useful, but
 
5
 * Copyright © 2008-2010 Teddy Hogeborn
 
6
 * Copyright © 2008-2010 Björn Påhlsson
 
7
 * 
 
8
 * This program is free software: you can redistribute it and/or
 
9
 * modify it under the terms of the GNU General Public License as
 
10
 * published by the Free Software Foundation, either version 3 of the
 
11
 * License, or (at your option) any later version.
 
12
 * 
 
13
 * This program is distributed in the hope that it will be useful, but
16
14
 * WITHOUT ANY WARRANTY; without even the implied warranty of
17
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18
16
 * General Public License for more details.
19
17
 * 
20
18
 * You should have received a copy of the GNU General Public License
21
 
 * along with Mandos.  If not, see <http://www.gnu.org/licenses/>.
 
19
 * along with this program.  If not, see
 
20
 * <http://www.gnu.org/licenses/>.
22
21
 * 
23
 
 * Contact the authors at <mandos@recompile.se>.
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
24
23
 */
25
24
 
26
25
#define _GNU_SOURCE             /* getline(), asprintf() */
27
26
 
28
27
#include <termios.h>            /* struct termios, tcsetattr(),
29
28
                                   TCSAFLUSH, tcgetattr(), ECHO */
30
 
#include <unistd.h>             /* access(), struct termios,
31
 
                                   tcsetattr(), STDIN_FILENO,
32
 
                                   TCSAFLUSH, tcgetattr(), ECHO,
33
 
                                   readlink() */
 
29
#include <unistd.h>             /* struct termios, tcsetattr(),
 
30
                                   STDIN_FILENO, TCSAFLUSH,
 
31
                                   tcgetattr(), ECHO, readlink() */
34
32
#include <signal.h>             /* sig_atomic_t, raise(), struct
35
33
                                   sigaction, sigemptyset(),
36
34
                                   sigaction(), sigaddset(), SIGINT,
43
41
                                   getenv(), free() */
44
42
#include <dirent.h>             /* scandir(), alphasort() */
45
43
#include <stdio.h>              /* fprintf(), stderr, getline(),
46
 
                                   stdin, feof(), fputc(), vfprintf(),
47
 
                                   vasprintf() */
 
44
                                   stdin, feof(), fputc()
 
45
                                */
48
46
#include <errno.h>              /* errno, EBADF, ENOTTY, EINVAL,
49
47
                                   EFAULT, EFBIG, EIO, ENOSPC, EINTR
50
48
                                */
53
51
#include <stdbool.h>            /* bool, false, true */
54
52
#include <inttypes.h>           /* strtoumax() */
55
53
#include <sys/stat.h>           /* struct stat, lstat(), open() */
56
 
#include <string.h>             /* strlen, rindex, memcmp, strerror()
57
 
                                 */
 
54
#include <string.h>             /* strlen, rindex, memcmp */
58
55
#include <argp.h>               /* struct argp_option, struct
59
56
                                   argp_state, struct argp,
60
57
                                   argp_parse(), error_t,
63
60
#include <sysexits.h>           /* EX_SOFTWARE, EX_OSERR,
64
61
                                   EX_UNAVAILABLE, EX_IOERR, EX_OK */
65
62
#include <fcntl.h>              /* open() */
66
 
#include <stdarg.h>             /* va_list, va_start(), ... */
67
63
 
68
64
volatile sig_atomic_t quit_now = 0;
69
65
int signal_received;
70
66
bool debug = false;
71
67
const char *argp_program_version = "password-prompt " VERSION;
72
 
const char *argp_program_bug_address = "<mandos@recompile.se>";
 
68
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
73
69
 
74
70
/* Needed for conflict resolution */
75
71
const char plymouth_name[] = "plymouthd";
76
72
 
77
 
/* Function to use when printing errors */
78
 
__attribute__((format (gnu_printf, 3, 4)))
79
 
void error_plus(int status, int errnum, const char *formatstring,
80
 
                ...){
81
 
  va_list ap;
82
 
  char *text;
83
 
  int ret;
84
 
  
85
 
  va_start(ap, formatstring);
86
 
  ret = vasprintf(&text, formatstring, ap);
87
 
  if(ret == -1){
88
 
    fprintf(stderr, "Mandos plugin %s: ",
89
 
            program_invocation_short_name);
90
 
    vfprintf(stderr, formatstring, ap);
91
 
    fprintf(stderr, ": %s\n", strerror(errnum));
92
 
    error(status, errno, "vasprintf while printing error");
93
 
    return;
94
 
  }
95
 
  fprintf(stderr, "Mandos plugin ");
96
 
  error(status, errnum, "%s", text);
97
 
  free(text);
98
 
}
99
 
 
100
73
static void termination_handler(int signum){
101
74
  if(quit_now){
102
75
    return;
111
84
     from the terminal.  Password-prompt will exit if it detects
112
85
     plymouth since plymouth performs the same functionality.
113
86
   */
114
 
  if(access("/run/plymouth/pid", R_OK) == 0){
115
 
    return true;
116
 
  }
117
 
  
118
 
  __attribute__((nonnull))
119
87
  int is_plymouth(const struct dirent *proc_entry){
120
88
    int ret;
121
89
    int cl_fd;
122
90
    {
123
 
      uintmax_t proc_id;
 
91
      uintmax_t maxvalue;
124
92
      char *tmp;
125
93
      errno = 0;
126
 
      proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
 
94
      maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
127
95
      
128
96
      if(errno != 0 or *tmp != '\0'
129
 
         or proc_id != (uintmax_t)((pid_t)proc_id)){
 
97
         or maxvalue != (uintmax_t)((pid_t)maxvalue)){
130
98
        return 0;
131
99
      }
132
100
    }
135
103
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
136
104
                   proc_entry->d_name);
137
105
    if(ret == -1){
138
 
      error_plus(0, errno, "asprintf");
 
106
      error(0, errno, "asprintf");
139
107
      return 0;
140
108
    }
141
109
    
143
111
    cl_fd = open(cmdline_filename, O_RDONLY);
144
112
    free(cmdline_filename);
145
113
    if(cl_fd == -1){
146
 
      if(errno != ENOENT){
147
 
        error_plus(0, errno, "open");
148
 
      }
 
114
      error(0, errno, "open");
149
115
      return 0;
150
116
    }
151
117
    
161
127
        if(cmdline_len + blocksize + 1 > cmdline_allocated){
162
128
          tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
163
129
          if(tmp == NULL){
164
 
            error_plus(0, errno, "realloc");
 
130
            error(0, errno, "realloc");
165
131
            free(cmdline);
166
132
            close(cl_fd);
167
133
            return 0;
174
140
        sret = read(cl_fd, cmdline + cmdline_len,
175
141
                    cmdline_allocated - cmdline_len);
176
142
        if(sret == -1){
177
 
          error_plus(0, errno, "read");
 
143
          error(0, errno, "read");
178
144
          free(cmdline);
179
145
          close(cl_fd);
180
146
          return 0;
183
149
      } while(sret != 0);
184
150
      ret = close(cl_fd);
185
151
      if(ret == -1){
186
 
        error_plus(0, errno, "close");
 
152
        error(0, errno, "close");
187
153
        free(cmdline);
188
154
        return 0;
189
155
      }
215
181
    return 1;
216
182
  }
217
183
  
218
 
  struct dirent **direntries = NULL;
 
184
  struct dirent **direntries;
219
185
  int ret;
220
186
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
221
 
  if(ret == -1){
222
 
    error_plus(1, errno, "scandir");
223
 
  }
224
 
  {
225
 
    int i = ret;
226
 
    while(i--){
227
 
      free(direntries[i]);
228
 
    }
229
 
  }
230
 
  free(direntries);
 
187
  if (ret == -1){
 
188
    error(1, errno, "scandir");
 
189
  }
231
190
  return ret > 0;
232
191
}
233
192
 
239
198
  struct termios t_new, t_old;
240
199
  char *buffer = NULL;
241
200
  char *prefix = NULL;
242
 
  char *prompt = NULL;
243
201
  int status = EXIT_SUCCESS;
244
202
  struct sigaction old_action,
245
203
    new_action = { .sa_handler = termination_handler,
249
207
      { .name = "prefix", .key = 'p',
250
208
        .arg = "PREFIX", .flags = 0,
251
209
        .doc = "Prefix shown before the prompt", .group = 2 },
252
 
      { .name = "prompt", .key = 129,
253
 
        .arg = "PROMPT", .flags = 0,
254
 
        .doc = "The prompt to show", .group = 2 },
255
210
      { .name = "debug", .key = 128,
256
211
        .doc = "Debug mode", .group = 3 },
257
212
      /*
266
221
      { .name = NULL }
267
222
    };
268
223
    
269
 
    __attribute__((nonnull(3)))
270
224
    error_t parse_opt (int key, char *arg, struct argp_state *state){
271
225
      errno = 0;
272
226
      switch (key){
273
 
      case 'p':                 /* --prefix */
 
227
      case 'p':
274
228
        prefix = arg;
275
229
        break;
276
 
      case 128:                 /* --debug */
 
230
      case 128:
277
231
        debug = true;
278
232
        break;
279
 
      case 129:                 /* --prompt */
280
 
        prompt = arg;
281
 
        break;
282
233
        /*
283
234
         * These reproduce what we would get without ARGP_NO_HELP
284
235
         */
286
237
        argp_state_help(state, state->out_stream,
287
238
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
288
239
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
289
 
        __builtin_unreachable();
290
240
      case -3:                  /* --usage */
291
241
        argp_state_help(state, state->out_stream,
292
242
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
293
 
        __builtin_unreachable();
294
243
      case 'V':                 /* --version */
295
244
        fprintf(state->out_stream, "%s\n", argp_program_version);
296
245
        exit(argp_err_exit_status);
313
262
    case ENOMEM:
314
263
    default:
315
264
      errno = ret;
316
 
      error_plus(0, errno, "argp_parse");
 
265
      error(0, errno, "argp_parse");
317
266
      return EX_OSERR;
318
267
    case EINVAL:
319
268
      return EX_USAGE;
324
273
    fprintf(stderr, "Starting %s\n", argv[0]);
325
274
  }
326
275
 
327
 
  if(conflict_detection()){
 
276
  if (conflict_detection()){
328
277
    if(debug){
329
278
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
330
279
    }
337
286
  
338
287
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
339
288
    int e = errno;
340
 
    error_plus(0, errno, "tcgetattr");
 
289
    error(0, errno, "tcgetattr");
341
290
    switch(e){
342
291
    case EBADF:
343
292
    case ENOTTY:
350
299
  sigemptyset(&new_action.sa_mask);
351
300
  ret = sigaddset(&new_action.sa_mask, SIGINT);
352
301
  if(ret == -1){
353
 
    error_plus(0, errno, "sigaddset");
 
302
    error(0, errno, "sigaddset");
354
303
    return EX_OSERR;
355
304
  }
356
305
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
357
306
  if(ret == -1){
358
 
    error_plus(0, errno, "sigaddset");
 
307
    error(0, errno, "sigaddset");
359
308
    return EX_OSERR;
360
309
  }
361
310
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
362
311
  if(ret == -1){
363
 
    error_plus(0, errno, "sigaddset");
 
312
    error(0, errno, "sigaddset");
364
313
    return EX_OSERR;
365
314
  }
366
315
  /* Need to check if the handler is SIG_IGN before handling:
369
318
  */
370
319
  ret = sigaction(SIGINT, NULL, &old_action);
371
320
  if(ret == -1){
372
 
    error_plus(0, errno, "sigaction");
 
321
    error(0, errno, "sigaction");
373
322
    return EX_OSERR;
374
323
  }
375
324
  if(old_action.sa_handler != SIG_IGN){
376
325
    ret = sigaction(SIGINT, &new_action, NULL);
377
326
    if(ret == -1){
378
 
      error_plus(0, errno, "sigaction");
 
327
      error(0, errno, "sigaction");
379
328
      return EX_OSERR;
380
329
    }
381
330
  }
382
331
  ret = sigaction(SIGHUP, NULL, &old_action);
383
332
  if(ret == -1){
384
 
    error_plus(0, errno, "sigaction");
 
333
    error(0, errno, "sigaction");
385
334
    return EX_OSERR;
386
335
  }
387
336
  if(old_action.sa_handler != SIG_IGN){
388
337
    ret = sigaction(SIGHUP, &new_action, NULL);
389
338
    if(ret == -1){
390
 
      error_plus(0, errno, "sigaction");
 
339
      error(0, errno, "sigaction");
391
340
      return EX_OSERR;
392
341
    }
393
342
  }
394
343
  ret = sigaction(SIGTERM, NULL, &old_action);
395
344
  if(ret == -1){
396
 
    error_plus(0, errno, "sigaction");
 
345
    error(0, errno, "sigaction");
397
346
    return EX_OSERR;
398
347
  }
399
348
  if(old_action.sa_handler != SIG_IGN){
400
349
    ret = sigaction(SIGTERM, &new_action, NULL);
401
350
    if(ret == -1){
402
 
      error_plus(0, errno, "sigaction");
 
351
      error(0, errno, "sigaction");
403
352
      return EX_OSERR;
404
353
    }
405
354
  }
413
362
  t_new.c_lflag &= ~(tcflag_t)ECHO;
414
363
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
415
364
    int e = errno;
416
 
    error_plus(0, errno, "tcsetattr-echo");
 
365
    error(0, errno, "tcsetattr-echo");
417
366
    switch(e){
418
367
    case EBADF:
419
368
    case ENOTTY:
439
388
    if(prefix){
440
389
      fprintf(stderr, "%s ", prefix);
441
390
    }
442
 
    if(prompt != NULL){
443
 
      fprintf(stderr, "%s: ", prompt);
444
 
    } else {
 
391
    {
445
392
      const char *cryptsource = getenv("CRYPTTAB_SOURCE");
446
393
      const char *crypttarget = getenv("CRYPTTAB_NAME");
447
394
      /* Before cryptsetup 1.1.0~rc2 */
485
432
        sret = write(STDOUT_FILENO, buffer + written, n - written);
486
433
        if(sret < 0){
487
434
          int e = errno;
488
 
          error_plus(0, errno, "write");
 
435
          error(0, errno, "write");
489
436
          switch(e){
490
437
          case EBADF:
491
438
          case EFAULT:
507
454
      sret = close(STDOUT_FILENO);
508
455
      if(sret == -1){
509
456
        int e = errno;
510
 
        error_plus(0, errno, "close");
 
457
        error(0, errno, "close");
511
458
        switch(e){
512
459
        case EBADF:
513
460
          status = EX_OSFILE;
522
469
    }
523
470
    if(sret < 0){
524
471
      int e = errno;
525
 
      if(errno != EINTR){
526
 
        if(not feof(stdin)){
527
 
          error_plus(0, errno, "getline");
528
 
          switch(e){
529
 
          case EBADF:
530
 
            status = EX_UNAVAILABLE;
531
 
            break;
532
 
          case EIO:
533
 
          case EINVAL:
534
 
          default:
535
 
            status = EX_IOERR;
536
 
            break;
537
 
          }
 
472
      if(errno != EINTR and not feof(stdin)){
 
473
        error(0, errno, "getline");
 
474
        switch(e){
 
475
        case EBADF:
 
476
          status = EX_UNAVAILABLE;
 
477
        case EIO:
 
478
        case EINVAL:
 
479
        default:
 
480
          status = EX_IOERR;
538
481
          break;
539
 
        } else {
540
 
          clearerr(stdin);
541
482
        }
 
483
        break;
542
484
      }
543
485
    }
544
486
    /* if(sret == 0), then the only sensible thing to do is to retry
557
499
    fprintf(stderr, "Restoring terminal attributes\n");
558
500
  }
559
501
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
560
 
    error_plus(0, errno, "tcsetattr+echo");
 
502
    error(0, errno, "tcsetattr+echo");
561
503
  }
562
504
  
563
505
  if(quit_now){
565
507
    old_action.sa_handler = SIG_DFL;
566
508
    ret = sigaction(signal_received, &old_action, NULL);
567
509
    if(ret == -1){
568
 
      error_plus(0, errno, "sigaction");
 
510
      error(0, errno, "sigaction");
569
511
    }
570
512
    raise(signal_received);
571
513
  }