/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: 2019-11-03 18:44:41 UTC
  • Revision ID: teddy@recompile.se-20191103184441-1vhjuf06hjqgfohh
mandos-monitor: Use Python's standard loggging module

* mandos-monitor: Use Python's standard loggging module, also for
                  warnings.  Suppress BytesWarning from urwid when
                  exiting.
  (log): New global logger object.  This replaces UserInterface
        log_message().
  (MandosClientWidget.__init__): Remove "logger" argument.
  (MandosClientWidget.using_timer): Wrap self.update_timer using new
                                    glib_safely() function.
  (glib_safely): New function to log any exceptions instead of letting
                 exceptions propagate up to GLib.
  (UserInterface.__init__): Remove "log_level" argument.  Set new
                            "loghandler" attribute, instance of new
                            "UILogHandler".
  (UserInterface.log_message): Removed.
  (UserInterface.log_message_raw): Renamed to "add_log_line"; all
                                   callers changed.  Also fix
                                   off-by-one error in max_log_length
                                   logic.
  (UserInterface.run): Add self.loghandler to logger "log". Wrap
                       self.process_input using new glib_safely()
                       function.
  (UserInterface.stop): Remove self.loghandler from logger "log".
  (UserInterface.process_input): Make verbosity toggle affect log
                                 level of logger "log".
  (UILogHandler): New.

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-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
 
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
14
16
 * WITHOUT ANY WARRANTY; without even the implied warranty of
15
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16
18
 * General Public License for more details.
17
19
 * 
18
20
 * You should have received a copy of the GNU General Public License
19
 
 * along with this program.  If not, see
20
 
 * <http://www.gnu.org/licenses/>.
 
21
 * along with Mandos.  If not, see <http://www.gnu.org/licenses/>.
21
22
 * 
22
 
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
23
 * Contact the authors at <mandos@recompile.se>.
23
24
 */
24
25
 
25
26
#define _GNU_SOURCE             /* getline(), asprintf() */
26
27
 
27
 
#include <termios.h>            /* struct termios, tcsetattr(),
 
28
#include <termios.h>            /* struct termios, tcsetattr(),
28
29
                                   TCSAFLUSH, tcgetattr(), ECHO */
29
 
#include <unistd.h>             /* struct termios, tcsetattr(),
30
 
                                   STDIN_FILENO, TCSAFLUSH,
31
 
                                   tcgetattr(), ECHO, readlink() */
 
30
#include <unistd.h>             /* access(), struct termios,
 
31
                                   tcsetattr(), STDIN_FILENO,
 
32
                                   TCSAFLUSH, tcgetattr(), ECHO,
 
33
                                   readlink() */
32
34
#include <signal.h>             /* sig_atomic_t, raise(), struct
33
35
                                   sigaction, sigemptyset(),
34
36
                                   sigaction(), sigaddset(), SIGINT,
41
43
                                   getenv(), free() */
42
44
#include <dirent.h>             /* scandir(), alphasort() */
43
45
#include <stdio.h>              /* fprintf(), stderr, getline(),
44
 
                                   stdin, feof(), fputc()
45
 
                                */
 
46
                                   stdin, feof(), fputc(), vfprintf(),
 
47
                                   vasprintf() */
46
48
#include <errno.h>              /* errno, EBADF, ENOTTY, EINVAL,
47
49
                                   EFAULT, EFBIG, EIO, ENOSPC, EINTR
48
50
                                */
50
52
#include <iso646.h>             /* or, not */
51
53
#include <stdbool.h>            /* bool, false, true */
52
54
#include <inttypes.h>           /* strtoumax() */
53
 
#include <sys/stat.h>           /* struct stat, lstat(), open() */
54
 
#include <string.h>             /* strlen, rindex, memcmp */
 
55
#include <sys/stat.h>           /* struct stat, lstat(), open() */
 
56
#include <string.h>             /* strlen, rindex, memcmp, strerror()
 
57
                                 */
55
58
#include <argp.h>               /* struct argp_option, struct
56
59
                                   argp_state, struct argp,
57
60
                                   argp_parse(), error_t,
60
63
#include <sysexits.h>           /* EX_SOFTWARE, EX_OSERR,
61
64
                                   EX_UNAVAILABLE, EX_IOERR, EX_OK */
62
65
#include <fcntl.h>              /* open() */
 
66
#include <stdarg.h>             /* va_list, va_start(), ... */
63
67
 
64
68
volatile sig_atomic_t quit_now = 0;
65
69
int signal_received;
66
70
bool debug = false;
67
71
const char *argp_program_version = "password-prompt " VERSION;
68
 
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
72
const char *argp_program_bug_address = "<mandos@recompile.se>";
69
73
 
70
74
/* Needed for conflict resolution */
71
75
const char plymouth_name[] = "plymouthd";
72
 
const char plymouth_alt_name[] = "plymouthd";
73
76
 
 
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
}
74
99
 
75
100
static void termination_handler(int signum){
76
101
  if(quit_now){
86
111
     from the terminal.  Password-prompt will exit if it detects
87
112
     plymouth since plymouth performs the same functionality.
88
113
   */
 
114
  if(access("/run/plymouth/pid", R_OK) == 0){
 
115
    return true;
 
116
  }
 
117
  
 
118
  __attribute__((nonnull))
89
119
  int is_plymouth(const struct dirent *proc_entry){
90
120
    int ret;
91
121
    int cl_fd;
92
122
    {
93
 
      uintmax_t maxvalue;
 
123
      uintmax_t proc_id;
94
124
      char *tmp;
95
125
      errno = 0;
96
 
      maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
 
126
      proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
97
127
      
98
128
      if(errno != 0 or *tmp != '\0'
99
 
         or maxvalue != (uintmax_t)((pid_t)maxvalue)){
 
129
         or proc_id != (uintmax_t)((pid_t)proc_id)){
100
130
        return 0;
101
131
      }
102
132
    }
103
133
    
104
134
    char *cmdline_filename;
105
 
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline", proc_entry->d_name);
 
135
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
 
136
                   proc_entry->d_name);
106
137
    if(ret == -1){
107
 
      error(0, errno, "asprintf");
 
138
      error_plus(0, errno, "asprintf");
108
139
      return 0;
109
140
    }
110
141
    
111
 
    /* Open /proc/<pid>/cmdline  */
 
142
    /* Open /proc/<pid>/cmdline */
112
143
    cl_fd = open(cmdline_filename, O_RDONLY);
113
144
    free(cmdline_filename);
114
145
    if(cl_fd == -1){
115
 
      error(0, errno, "open");
 
146
      if(errno != ENOENT){
 
147
        error_plus(0, errno, "open");
 
148
      }
116
149
      return 0;
117
150
    }
118
151
    
128
161
        if(cmdline_len + blocksize + 1 > cmdline_allocated){
129
162
          tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
130
163
          if(tmp == NULL){
131
 
            error(0, errno, "realloc");
 
164
            error_plus(0, errno, "realloc");
132
165
            free(cmdline);
133
166
            close(cl_fd);
134
167
            return 0;
141
174
        sret = read(cl_fd, cmdline + cmdline_len,
142
175
                    cmdline_allocated - cmdline_len);
143
176
        if(sret == -1){
144
 
          error(0, errno, "read");
 
177
          error_plus(0, errno, "read");
145
178
          free(cmdline);
146
179
          close(cl_fd);
147
180
          return 0;
150
183
      } while(sret != 0);
151
184
      ret = close(cl_fd);
152
185
      if(ret == -1){
153
 
        error(0, errno, "close");
 
186
        error_plus(0, errno, "close");
154
187
        free(cmdline);
155
188
        return 0;
156
189
      }
166
199
      cmdline_base = cmdline;
167
200
    }
168
201
    
169
 
    if((strcmp(cmdline_base, plymouth_name) != 0)
170
 
       and (strcmp(cmdline_base, plymouth_alt_name) != 0)){
 
202
    if(strcmp(cmdline_base, plymouth_name) != 0){
 
203
      if(debug){
 
204
        fprintf(stderr, "\"%s\" is not \"%s\"\n", cmdline_base,
 
205
                plymouth_name);
 
206
      }
171
207
      free(cmdline);
172
208
      return 0;
173
209
    }
 
210
    if(debug){
 
211
      fprintf(stderr, "\"%s\" equals \"%s\"\n", cmdline_base,
 
212
              plymouth_name);
 
213
    }
174
214
    free(cmdline);
175
215
    return 1;
176
216
  }
177
 
 
178
 
  struct dirent **direntries;
 
217
  
 
218
  struct dirent **direntries = NULL;
179
219
  int ret;
180
220
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
181
 
  if (ret == -1){
182
 
    error(1, errno, "scandir");
183
 
  }
 
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);
184
231
  return ret > 0;
185
232
}
186
233
 
192
239
  struct termios t_new, t_old;
193
240
  char *buffer = NULL;
194
241
  char *prefix = NULL;
 
242
  char *prompt = NULL;
195
243
  int status = EXIT_SUCCESS;
196
244
  struct sigaction old_action,
197
245
    new_action = { .sa_handler = termination_handler,
201
249
      { .name = "prefix", .key = 'p',
202
250
        .arg = "PREFIX", .flags = 0,
203
251
        .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 },
204
255
      { .name = "debug", .key = 128,
205
256
        .doc = "Debug mode", .group = 3 },
206
257
      /*
215
266
      { .name = NULL }
216
267
    };
217
268
    
 
269
    __attribute__((nonnull(3)))
218
270
    error_t parse_opt (int key, char *arg, struct argp_state *state){
219
271
      errno = 0;
220
272
      switch (key){
221
 
      case 'p':
 
273
      case 'p':                 /* --prefix */
222
274
        prefix = arg;
223
275
        break;
224
 
      case 128:
 
276
      case 128:                 /* --debug */
225
277
        debug = true;
226
278
        break;
 
279
      case 129:                 /* --prompt */
 
280
        prompt = arg;
 
281
        break;
227
282
        /*
228
283
         * These reproduce what we would get without ARGP_NO_HELP
229
284
         */
231
286
        argp_state_help(state, state->out_stream,
232
287
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
233
288
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
 
289
        __builtin_unreachable();
234
290
      case -3:                  /* --usage */
235
291
        argp_state_help(state, state->out_stream,
236
292
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
 
293
        __builtin_unreachable();
237
294
      case 'V':                 /* --version */
238
295
        fprintf(state->out_stream, "%s\n", argp_program_version);
239
296
        exit(argp_err_exit_status);
256
313
    case ENOMEM:
257
314
    default:
258
315
      errno = ret;
259
 
      error(0, errno, "argp_parse");
 
316
      error_plus(0, errno, "argp_parse");
260
317
      return EX_OSERR;
261
318
    case EINVAL:
262
319
      return EX_USAGE;
267
324
    fprintf(stderr, "Starting %s\n", argv[0]);
268
325
  }
269
326
 
270
 
  if (conflict_detection()){
 
327
  if(conflict_detection()){
271
328
    if(debug){
272
 
      fprintf(stderr, "Stopping %s because of conflict", argv[0]);
 
329
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
273
330
    }
274
331
    return EXIT_FAILURE;
275
332
  }
280
337
  
281
338
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
282
339
    int e = errno;
283
 
    error(0, errno, "tcgetattr");
 
340
    error_plus(0, errno, "tcgetattr");
284
341
    switch(e){
285
342
    case EBADF:
286
343
    case ENOTTY:
293
350
  sigemptyset(&new_action.sa_mask);
294
351
  ret = sigaddset(&new_action.sa_mask, SIGINT);
295
352
  if(ret == -1){
296
 
    error(0, errno, "sigaddset");
 
353
    error_plus(0, errno, "sigaddset");
297
354
    return EX_OSERR;
298
355
  }
299
356
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
300
357
  if(ret == -1){
301
 
    error(0, errno, "sigaddset");
 
358
    error_plus(0, errno, "sigaddset");
302
359
    return EX_OSERR;
303
360
  }
304
361
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
305
362
  if(ret == -1){
306
 
    error(0, errno, "sigaddset");
 
363
    error_plus(0, errno, "sigaddset");
307
364
    return EX_OSERR;
308
365
  }
309
366
  /* Need to check if the handler is SIG_IGN before handling:
312
369
  */
313
370
  ret = sigaction(SIGINT, NULL, &old_action);
314
371
  if(ret == -1){
315
 
    error(0, errno, "sigaction");
 
372
    error_plus(0, errno, "sigaction");
316
373
    return EX_OSERR;
317
374
  }
318
375
  if(old_action.sa_handler != SIG_IGN){
319
376
    ret = sigaction(SIGINT, &new_action, NULL);
320
377
    if(ret == -1){
321
 
      error(0, errno, "sigaction");
 
378
      error_plus(0, errno, "sigaction");
322
379
      return EX_OSERR;
323
380
    }
324
381
  }
325
382
  ret = sigaction(SIGHUP, NULL, &old_action);
326
383
  if(ret == -1){
327
 
    error(0, errno, "sigaction");
 
384
    error_plus(0, errno, "sigaction");
328
385
    return EX_OSERR;
329
386
  }
330
387
  if(old_action.sa_handler != SIG_IGN){
331
388
    ret = sigaction(SIGHUP, &new_action, NULL);
332
389
    if(ret == -1){
333
 
      error(0, errno, "sigaction");
 
390
      error_plus(0, errno, "sigaction");
334
391
      return EX_OSERR;
335
392
    }
336
393
  }
337
394
  ret = sigaction(SIGTERM, NULL, &old_action);
338
395
  if(ret == -1){
339
 
    error(0, errno, "sigaction");
 
396
    error_plus(0, errno, "sigaction");
340
397
    return EX_OSERR;
341
398
  }
342
399
  if(old_action.sa_handler != SIG_IGN){
343
400
    ret = sigaction(SIGTERM, &new_action, NULL);
344
401
    if(ret == -1){
345
 
      error(0, errno, "sigaction");
 
402
      error_plus(0, errno, "sigaction");
346
403
      return EX_OSERR;
347
404
    }
348
405
  }
356
413
  t_new.c_lflag &= ~(tcflag_t)ECHO;
357
414
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
358
415
    int e = errno;
359
 
    error(0, errno, "tcsetattr-echo");
 
416
    error_plus(0, errno, "tcsetattr-echo");
360
417
    switch(e){
361
418
    case EBADF:
362
419
    case ENOTTY:
382
439
    if(prefix){
383
440
      fprintf(stderr, "%s ", prefix);
384
441
    }
385
 
    {
 
442
    if(prompt != NULL){
 
443
      fprintf(stderr, "%s: ", prompt);
 
444
    } else {
386
445
      const char *cryptsource = getenv("CRYPTTAB_SOURCE");
387
446
      const char *crypttarget = getenv("CRYPTTAB_NAME");
388
447
      /* Before cryptsetup 1.1.0~rc2 */
426
485
        sret = write(STDOUT_FILENO, buffer + written, n - written);
427
486
        if(sret < 0){
428
487
          int e = errno;
429
 
          error(0, errno, "write");
 
488
          error_plus(0, errno, "write");
430
489
          switch(e){
431
490
          case EBADF:
432
491
          case EFAULT:
448
507
      sret = close(STDOUT_FILENO);
449
508
      if(sret == -1){
450
509
        int e = errno;
451
 
        error(0, errno, "close");
 
510
        error_plus(0, errno, "close");
452
511
        switch(e){
453
512
        case EBADF:
454
513
          status = EX_OSFILE;
463
522
    }
464
523
    if(sret < 0){
465
524
      int e = errno;
466
 
      if(errno != EINTR and not feof(stdin)){
467
 
        error(0, errno, "getline");
468
 
        switch(e){
469
 
        case EBADF:
470
 
          status = EX_UNAVAILABLE;
471
 
        case EIO:
472
 
        case EINVAL:
473
 
        default:
474
 
          status = EX_IOERR;
 
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
          }
475
538
          break;
 
539
        } else {
 
540
          clearerr(stdin);
476
541
        }
477
 
        break;
478
542
      }
479
543
    }
480
 
    /* if(sret == 0), then the only sensible thing to do is to retry to
481
 
       read from stdin */
 
544
    /* if(sret == 0), then the only sensible thing to do is to retry
 
545
       to read from stdin */
482
546
    fputc('\n', stderr);
483
547
    if(debug and not quit_now){
484
548
      /* If quit_now is nonzero, we were interrupted by a signal, and
493
557
    fprintf(stderr, "Restoring terminal attributes\n");
494
558
  }
495
559
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
496
 
    error(0, errno, "tcsetattr+echo");
 
560
    error_plus(0, errno, "tcsetattr+echo");
497
561
  }
498
562
  
499
563
  if(quit_now){
501
565
    old_action.sa_handler = SIG_DFL;
502
566
    ret = sigaction(signal_received, &old_action, NULL);
503
567
    if(ret == -1){
504
 
      error(0, errno, "sigaction");
 
568
      error_plus(0, errno, "sigaction");
505
569
    }
506
570
    raise(signal_received);
507
571
  }