/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: Björn Påhlsson
  • Date: 2011-06-23 22:27:15 UTC
  • mto: This revision was merged to the branch mainline in revision 485.
  • Revision ID: belorn@fukt.bsnet.se-20110623222715-q5wro9ma9iyjl367
* Makefile (CFLAGS): Added "-lrt" to include real time library.
* plugins.d/mandos-client.c: use scandir(3) instead of readdir(3)
                             Prefix all debug output with "Mandos plugin " + program_invocation_short_name
                             Retry servers that failed to provide password.
                             New option --retry SECONDS that sets the interval between rechecking.
                             --retry also controls how often it retries a server when using --connect.
* plugins.d/splashy.c:  Prefix all debug output with "Mandos plugin " + program_invocation_short_name
* plugins.d/usplash.c: --||--
* plugins.d/askpass-fifo.c: --||--
* plugins.d/password-prompt.c: --||--
* plugins.d/plymouth.c: --||--
* mandos: Lower logger level from warning to info on failed client requests because client was disabled or unknown fingerprint.
* plugins.d/plymouth.c (get_pid): bug fix. Was not calling free on direntries. 

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(), vfprintf(), vasprintf()
 
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, strerror() */
58
55
#include <argp.h>               /* struct argp_option, struct
59
56
                                   argp_state, struct argp,
60
57
                                   argp_parse(), error_t,
69
66
int signal_received;
70
67
bool debug = false;
71
68
const char *argp_program_version = "password-prompt " VERSION;
72
 
const char *argp_program_bug_address = "<mandos@recompile.se>";
 
69
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
73
70
 
74
71
/* Needed for conflict resolution */
75
72
const char plymouth_name[] = "plymouthd";
76
73
 
77
74
/* 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
 
                ...){
 
75
void error_plus(int status, int errnum, const char *formatstring, ...){
81
76
  va_list ap;
82
77
  char *text;
83
78
  int ret;
84
79
  
85
80
  va_start(ap, formatstring);
86
81
  ret = vasprintf(&text, formatstring, ap);
87
 
  if(ret == -1){
88
 
    fprintf(stderr, "Mandos plugin %s: ",
89
 
            program_invocation_short_name);
 
82
  if (ret == -1){
 
83
    fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name);
90
84
    vfprintf(stderr, formatstring, ap);
91
 
    fprintf(stderr, ": %s\n", strerror(errnum));
 
85
    fprintf(stderr, ": ");
 
86
    fprintf(stderr, "%s\n", strerror(errnum));
92
87
    error(status, errno, "vasprintf while printing error");
93
88
    return;
94
89
  }
111
106
     from the terminal.  Password-prompt will exit if it detects
112
107
     plymouth since plymouth performs the same functionality.
113
108
   */
114
 
  if(access("/run/plymouth/pid", R_OK) == 0){
115
 
    return true;
116
 
  }
117
 
  
118
 
  __attribute__((nonnull))
119
109
  int is_plymouth(const struct dirent *proc_entry){
120
110
    int ret;
121
111
    int cl_fd;
122
112
    {
123
 
      uintmax_t proc_id;
 
113
      uintmax_t maxvalue;
124
114
      char *tmp;
125
115
      errno = 0;
126
 
      proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
 
116
      maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
127
117
      
128
118
      if(errno != 0 or *tmp != '\0'
129
 
         or proc_id != (uintmax_t)((pid_t)proc_id)){
 
119
         or maxvalue != (uintmax_t)((pid_t)maxvalue)){
130
120
        return 0;
131
121
      }
132
122
    }
135
125
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
136
126
                   proc_entry->d_name);
137
127
    if(ret == -1){
138
 
      error_plus(0, errno, "asprintf");
 
128
      error(0, errno, "asprintf");
139
129
      return 0;
140
130
    }
141
131
    
144
134
    free(cmdline_filename);
145
135
    if(cl_fd == -1){
146
136
      if(errno != ENOENT){
147
 
        error_plus(0, errno, "open");
 
137
        error(0, errno, "open");
148
138
      }
149
139
      return 0;
150
140
    }
161
151
        if(cmdline_len + blocksize + 1 > cmdline_allocated){
162
152
          tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
163
153
          if(tmp == NULL){
164
 
            error_plus(0, errno, "realloc");
 
154
            error(0, errno, "realloc");
165
155
            free(cmdline);
166
156
            close(cl_fd);
167
157
            return 0;
174
164
        sret = read(cl_fd, cmdline + cmdline_len,
175
165
                    cmdline_allocated - cmdline_len);
176
166
        if(sret == -1){
177
 
          error_plus(0, errno, "read");
 
167
          error(0, errno, "read");
178
168
          free(cmdline);
179
169
          close(cl_fd);
180
170
          return 0;
183
173
      } while(sret != 0);
184
174
      ret = close(cl_fd);
185
175
      if(ret == -1){
186
 
        error_plus(0, errno, "close");
 
176
        error(0, errno, "close");
187
177
        free(cmdline);
188
178
        return 0;
189
179
      }
215
205
    return 1;
216
206
  }
217
207
  
218
 
  struct dirent **direntries = NULL;
 
208
  struct dirent **direntries;
219
209
  int ret;
220
210
  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);
 
211
  if (ret == -1){
 
212
    error(1, errno, "scandir");
 
213
  }
231
214
  return ret > 0;
232
215
}
233
216
 
239
222
  struct termios t_new, t_old;
240
223
  char *buffer = NULL;
241
224
  char *prefix = NULL;
242
 
  char *prompt = NULL;
243
225
  int status = EXIT_SUCCESS;
244
226
  struct sigaction old_action,
245
227
    new_action = { .sa_handler = termination_handler,
249
231
      { .name = "prefix", .key = 'p',
250
232
        .arg = "PREFIX", .flags = 0,
251
233
        .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
234
      { .name = "debug", .key = 128,
256
235
        .doc = "Debug mode", .group = 3 },
257
236
      /*
266
245
      { .name = NULL }
267
246
    };
268
247
    
269
 
    __attribute__((nonnull(3)))
270
248
    error_t parse_opt (int key, char *arg, struct argp_state *state){
271
249
      errno = 0;
272
250
      switch (key){
273
 
      case 'p':                 /* --prefix */
 
251
      case 'p':
274
252
        prefix = arg;
275
253
        break;
276
 
      case 128:                 /* --debug */
 
254
      case 128:
277
255
        debug = true;
278
256
        break;
279
 
      case 129:                 /* --prompt */
280
 
        prompt = arg;
281
 
        break;
282
257
        /*
283
258
         * These reproduce what we would get without ARGP_NO_HELP
284
259
         */
286
261
        argp_state_help(state, state->out_stream,
287
262
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
288
263
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
289
 
        __builtin_unreachable();
290
264
      case -3:                  /* --usage */
291
265
        argp_state_help(state, state->out_stream,
292
266
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
293
 
        __builtin_unreachable();
294
267
      case 'V':                 /* --version */
295
268
        fprintf(state->out_stream, "%s\n", argp_program_version);
296
269
        exit(argp_err_exit_status);
313
286
    case ENOMEM:
314
287
    default:
315
288
      errno = ret;
316
 
      error_plus(0, errno, "argp_parse");
 
289
      error(0, errno, "argp_parse");
317
290
      return EX_OSERR;
318
291
    case EINVAL:
319
292
      return EX_USAGE;
324
297
    fprintf(stderr, "Starting %s\n", argv[0]);
325
298
  }
326
299
 
327
 
  if(conflict_detection()){
 
300
  if (conflict_detection()){
328
301
    if(debug){
329
302
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
330
303
    }
337
310
  
338
311
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
339
312
    int e = errno;
340
 
    error_plus(0, errno, "tcgetattr");
 
313
    error(0, errno, "tcgetattr");
341
314
    switch(e){
342
315
    case EBADF:
343
316
    case ENOTTY:
350
323
  sigemptyset(&new_action.sa_mask);
351
324
  ret = sigaddset(&new_action.sa_mask, SIGINT);
352
325
  if(ret == -1){
353
 
    error_plus(0, errno, "sigaddset");
 
326
    error(0, errno, "sigaddset");
354
327
    return EX_OSERR;
355
328
  }
356
329
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
357
330
  if(ret == -1){
358
 
    error_plus(0, errno, "sigaddset");
 
331
    error(0, errno, "sigaddset");
359
332
    return EX_OSERR;
360
333
  }
361
334
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
362
335
  if(ret == -1){
363
 
    error_plus(0, errno, "sigaddset");
 
336
    error(0, errno, "sigaddset");
364
337
    return EX_OSERR;
365
338
  }
366
339
  /* Need to check if the handler is SIG_IGN before handling:
369
342
  */
370
343
  ret = sigaction(SIGINT, NULL, &old_action);
371
344
  if(ret == -1){
372
 
    error_plus(0, errno, "sigaction");
 
345
    error(0, errno, "sigaction");
373
346
    return EX_OSERR;
374
347
  }
375
348
  if(old_action.sa_handler != SIG_IGN){
376
349
    ret = sigaction(SIGINT, &new_action, NULL);
377
350
    if(ret == -1){
378
 
      error_plus(0, errno, "sigaction");
 
351
      error(0, errno, "sigaction");
379
352
      return EX_OSERR;
380
353
    }
381
354
  }
382
355
  ret = sigaction(SIGHUP, NULL, &old_action);
383
356
  if(ret == -1){
384
 
    error_plus(0, errno, "sigaction");
 
357
    error(0, errno, "sigaction");
385
358
    return EX_OSERR;
386
359
  }
387
360
  if(old_action.sa_handler != SIG_IGN){
388
361
    ret = sigaction(SIGHUP, &new_action, NULL);
389
362
    if(ret == -1){
390
 
      error_plus(0, errno, "sigaction");
 
363
      error(0, errno, "sigaction");
391
364
      return EX_OSERR;
392
365
    }
393
366
  }
394
367
  ret = sigaction(SIGTERM, NULL, &old_action);
395
368
  if(ret == -1){
396
 
    error_plus(0, errno, "sigaction");
 
369
    error(0, errno, "sigaction");
397
370
    return EX_OSERR;
398
371
  }
399
372
  if(old_action.sa_handler != SIG_IGN){
400
373
    ret = sigaction(SIGTERM, &new_action, NULL);
401
374
    if(ret == -1){
402
 
      error_plus(0, errno, "sigaction");
 
375
      error(0, errno, "sigaction");
403
376
      return EX_OSERR;
404
377
    }
405
378
  }
413
386
  t_new.c_lflag &= ~(tcflag_t)ECHO;
414
387
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
415
388
    int e = errno;
416
 
    error_plus(0, errno, "tcsetattr-echo");
 
389
    error(0, errno, "tcsetattr-echo");
417
390
    switch(e){
418
391
    case EBADF:
419
392
    case ENOTTY:
439
412
    if(prefix){
440
413
      fprintf(stderr, "%s ", prefix);
441
414
    }
442
 
    if(prompt != NULL){
443
 
      fprintf(stderr, "%s: ", prompt);
444
 
    } else {
 
415
    {
445
416
      const char *cryptsource = getenv("CRYPTTAB_SOURCE");
446
417
      const char *crypttarget = getenv("CRYPTTAB_NAME");
447
418
      /* Before cryptsetup 1.1.0~rc2 */
485
456
        sret = write(STDOUT_FILENO, buffer + written, n - written);
486
457
        if(sret < 0){
487
458
          int e = errno;
488
 
          error_plus(0, errno, "write");
 
459
          error(0, errno, "write");
489
460
          switch(e){
490
461
          case EBADF:
491
462
          case EFAULT:
507
478
      sret = close(STDOUT_FILENO);
508
479
      if(sret == -1){
509
480
        int e = errno;
510
 
        error_plus(0, errno, "close");
 
481
        error(0, errno, "close");
511
482
        switch(e){
512
483
        case EBADF:
513
484
          status = EX_OSFILE;
522
493
    }
523
494
    if(sret < 0){
524
495
      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
 
          }
 
496
      if(errno != EINTR and not feof(stdin)){
 
497
        error(0, errno, "getline");
 
498
        switch(e){
 
499
        case EBADF:
 
500
          status = EX_UNAVAILABLE;
 
501
        case EIO:
 
502
        case EINVAL:
 
503
        default:
 
504
          status = EX_IOERR;
538
505
          break;
539
 
        } else {
540
 
          clearerr(stdin);
541
506
        }
 
507
        break;
542
508
      }
543
509
    }
544
510
    /* if(sret == 0), then the only sensible thing to do is to retry
557
523
    fprintf(stderr, "Restoring terminal attributes\n");
558
524
  }
559
525
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
560
 
    error_plus(0, errno, "tcsetattr+echo");
 
526
    error(0, errno, "tcsetattr+echo");
561
527
  }
562
528
  
563
529
  if(quit_now){
565
531
    old_action.sa_handler = SIG_DFL;
566
532
    ret = sigaction(signal_received, &old_action, NULL);
567
533
    if(ret == -1){
568
 
      error_plus(0, errno, "sigaction");
 
534
      error(0, errno, "sigaction");
569
535
    }
570
536
    raise(signal_received);
571
537
  }