/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: 2011-04-03 00:46:51 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110403004651-yyrzgwwkoq4ts2vi
* mandos: Never call .Reset() on a defunct Avahi entry group.
  (AvahiService.remove): Only do group.Reset(), as before.
  (AvahiService.add): Only create new group if necessary.
  (AvahiService.cleanup): Also do group.Free() if a group exists.
  (AvahiService.server_state_changed): Call .cleanup() on errors.
                                       Also log error parameter, if
                                       passed.

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
    
144
112
    free(cmdline_filename);
145
113
    if(cl_fd == -1){
146
114
      if(errno != ENOENT){
147
 
        error_plus(0, errno, "open");
 
115
        error(0, errno, "open");
148
116
      }
149
117
      return 0;
150
118
    }
161
129
        if(cmdline_len + blocksize + 1 > cmdline_allocated){
162
130
          tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
163
131
          if(tmp == NULL){
164
 
            error_plus(0, errno, "realloc");
 
132
            error(0, errno, "realloc");
165
133
            free(cmdline);
166
134
            close(cl_fd);
167
135
            return 0;
174
142
        sret = read(cl_fd, cmdline + cmdline_len,
175
143
                    cmdline_allocated - cmdline_len);
176
144
        if(sret == -1){
177
 
          error_plus(0, errno, "read");
 
145
          error(0, errno, "read");
178
146
          free(cmdline);
179
147
          close(cl_fd);
180
148
          return 0;
183
151
      } while(sret != 0);
184
152
      ret = close(cl_fd);
185
153
      if(ret == -1){
186
 
        error_plus(0, errno, "close");
 
154
        error(0, errno, "close");
187
155
        free(cmdline);
188
156
        return 0;
189
157
      }
215
183
    return 1;
216
184
  }
217
185
  
218
 
  struct dirent **direntries = NULL;
 
186
  struct dirent **direntries;
219
187
  int ret;
220
188
  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);
 
189
  if (ret == -1){
 
190
    error(1, errno, "scandir");
 
191
  }
231
192
  return ret > 0;
232
193
}
233
194
 
239
200
  struct termios t_new, t_old;
240
201
  char *buffer = NULL;
241
202
  char *prefix = NULL;
242
 
  char *prompt = NULL;
243
203
  int status = EXIT_SUCCESS;
244
204
  struct sigaction old_action,
245
205
    new_action = { .sa_handler = termination_handler,
249
209
      { .name = "prefix", .key = 'p',
250
210
        .arg = "PREFIX", .flags = 0,
251
211
        .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
212
      { .name = "debug", .key = 128,
256
213
        .doc = "Debug mode", .group = 3 },
257
214
      /*
266
223
      { .name = NULL }
267
224
    };
268
225
    
269
 
    __attribute__((nonnull(3)))
270
226
    error_t parse_opt (int key, char *arg, struct argp_state *state){
271
227
      errno = 0;
272
228
      switch (key){
273
 
      case 'p':                 /* --prefix */
 
229
      case 'p':
274
230
        prefix = arg;
275
231
        break;
276
 
      case 128:                 /* --debug */
 
232
      case 128:
277
233
        debug = true;
278
234
        break;
279
 
      case 129:                 /* --prompt */
280
 
        prompt = arg;
281
 
        break;
282
235
        /*
283
236
         * These reproduce what we would get without ARGP_NO_HELP
284
237
         */
286
239
        argp_state_help(state, state->out_stream,
287
240
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
288
241
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
289
 
        __builtin_unreachable();
290
242
      case -3:                  /* --usage */
291
243
        argp_state_help(state, state->out_stream,
292
244
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
293
 
        __builtin_unreachable();
294
245
      case 'V':                 /* --version */
295
246
        fprintf(state->out_stream, "%s\n", argp_program_version);
296
247
        exit(argp_err_exit_status);
313
264
    case ENOMEM:
314
265
    default:
315
266
      errno = ret;
316
 
      error_plus(0, errno, "argp_parse");
 
267
      error(0, errno, "argp_parse");
317
268
      return EX_OSERR;
318
269
    case EINVAL:
319
270
      return EX_USAGE;
324
275
    fprintf(stderr, "Starting %s\n", argv[0]);
325
276
  }
326
277
 
327
 
  if(conflict_detection()){
 
278
  if (conflict_detection()){
328
279
    if(debug){
329
280
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
330
281
    }
337
288
  
338
289
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
339
290
    int e = errno;
340
 
    error_plus(0, errno, "tcgetattr");
 
291
    error(0, errno, "tcgetattr");
341
292
    switch(e){
342
293
    case EBADF:
343
294
    case ENOTTY:
350
301
  sigemptyset(&new_action.sa_mask);
351
302
  ret = sigaddset(&new_action.sa_mask, SIGINT);
352
303
  if(ret == -1){
353
 
    error_plus(0, errno, "sigaddset");
 
304
    error(0, errno, "sigaddset");
354
305
    return EX_OSERR;
355
306
  }
356
307
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
357
308
  if(ret == -1){
358
 
    error_plus(0, errno, "sigaddset");
 
309
    error(0, errno, "sigaddset");
359
310
    return EX_OSERR;
360
311
  }
361
312
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
362
313
  if(ret == -1){
363
 
    error_plus(0, errno, "sigaddset");
 
314
    error(0, errno, "sigaddset");
364
315
    return EX_OSERR;
365
316
  }
366
317
  /* Need to check if the handler is SIG_IGN before handling:
369
320
  */
370
321
  ret = sigaction(SIGINT, NULL, &old_action);
371
322
  if(ret == -1){
372
 
    error_plus(0, errno, "sigaction");
 
323
    error(0, errno, "sigaction");
373
324
    return EX_OSERR;
374
325
  }
375
326
  if(old_action.sa_handler != SIG_IGN){
376
327
    ret = sigaction(SIGINT, &new_action, NULL);
377
328
    if(ret == -1){
378
 
      error_plus(0, errno, "sigaction");
 
329
      error(0, errno, "sigaction");
379
330
      return EX_OSERR;
380
331
    }
381
332
  }
382
333
  ret = sigaction(SIGHUP, NULL, &old_action);
383
334
  if(ret == -1){
384
 
    error_plus(0, errno, "sigaction");
 
335
    error(0, errno, "sigaction");
385
336
    return EX_OSERR;
386
337
  }
387
338
  if(old_action.sa_handler != SIG_IGN){
388
339
    ret = sigaction(SIGHUP, &new_action, NULL);
389
340
    if(ret == -1){
390
 
      error_plus(0, errno, "sigaction");
 
341
      error(0, errno, "sigaction");
391
342
      return EX_OSERR;
392
343
    }
393
344
  }
394
345
  ret = sigaction(SIGTERM, NULL, &old_action);
395
346
  if(ret == -1){
396
 
    error_plus(0, errno, "sigaction");
 
347
    error(0, errno, "sigaction");
397
348
    return EX_OSERR;
398
349
  }
399
350
  if(old_action.sa_handler != SIG_IGN){
400
351
    ret = sigaction(SIGTERM, &new_action, NULL);
401
352
    if(ret == -1){
402
 
      error_plus(0, errno, "sigaction");
 
353
      error(0, errno, "sigaction");
403
354
      return EX_OSERR;
404
355
    }
405
356
  }
413
364
  t_new.c_lflag &= ~(tcflag_t)ECHO;
414
365
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
415
366
    int e = errno;
416
 
    error_plus(0, errno, "tcsetattr-echo");
 
367
    error(0, errno, "tcsetattr-echo");
417
368
    switch(e){
418
369
    case EBADF:
419
370
    case ENOTTY:
439
390
    if(prefix){
440
391
      fprintf(stderr, "%s ", prefix);
441
392
    }
442
 
    if(prompt != NULL){
443
 
      fprintf(stderr, "%s: ", prompt);
444
 
    } else {
 
393
    {
445
394
      const char *cryptsource = getenv("CRYPTTAB_SOURCE");
446
395
      const char *crypttarget = getenv("CRYPTTAB_NAME");
447
396
      /* Before cryptsetup 1.1.0~rc2 */
485
434
        sret = write(STDOUT_FILENO, buffer + written, n - written);
486
435
        if(sret < 0){
487
436
          int e = errno;
488
 
          error_plus(0, errno, "write");
 
437
          error(0, errno, "write");
489
438
          switch(e){
490
439
          case EBADF:
491
440
          case EFAULT:
507
456
      sret = close(STDOUT_FILENO);
508
457
      if(sret == -1){
509
458
        int e = errno;
510
 
        error_plus(0, errno, "close");
 
459
        error(0, errno, "close");
511
460
        switch(e){
512
461
        case EBADF:
513
462
          status = EX_OSFILE;
522
471
    }
523
472
    if(sret < 0){
524
473
      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
 
          }
 
474
      if(errno != EINTR and not feof(stdin)){
 
475
        error(0, errno, "getline");
 
476
        switch(e){
 
477
        case EBADF:
 
478
          status = EX_UNAVAILABLE;
 
479
        case EIO:
 
480
        case EINVAL:
 
481
        default:
 
482
          status = EX_IOERR;
538
483
          break;
539
 
        } else {
540
 
          clearerr(stdin);
541
484
        }
 
485
        break;
542
486
      }
543
487
    }
544
488
    /* if(sret == 0), then the only sensible thing to do is to retry
557
501
    fprintf(stderr, "Restoring terminal attributes\n");
558
502
  }
559
503
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
560
 
    error_plus(0, errno, "tcsetattr+echo");
 
504
    error(0, errno, "tcsetattr+echo");
561
505
  }
562
506
  
563
507
  if(quit_now){
565
509
    old_action.sa_handler = SIG_DFL;
566
510
    ret = sigaction(signal_received, &old_action, NULL);
567
511
    if(ret == -1){
568
 
      error_plus(0, errno, "sigaction");
 
512
      error(0, errno, "sigaction");
569
513
    }
570
514
    raise(signal_received);
571
515
  }