/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-07-16 00:29:19 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110716002919-r77yikuiulj42o40
* initramfs-tools-script: Abort if plugin-runner is missing.  Removed
                          workaround for Debian bug #633582; the
                          workaround required getopt, which can not be
                          guaranteed.
* plugin-runner.c (main): Work around Debian bug #633582.
* plugins.d/mandos-client.c (main): - '' -

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-2017 Teddy Hogeborn
6
 
 * Copyright © 2008-2017 Björn Påhlsson
 
5
 * Copyright © 2008-2010 Teddy Hogeborn
 
6
 * Copyright © 2008-2010 Björn Påhlsson
7
7
 * 
8
8
 * This program is free software: you can redistribute it and/or
9
9
 * modify it under the terms of the GNU General Public License as
19
19
 * along with this program.  If not, see
20
20
 * <http://www.gnu.org/licenses/>.
21
21
 * 
22
 
 * Contact the authors at <mandos@recompile.se>.
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
23
23
 */
24
24
 
25
25
#define _GNU_SOURCE             /* getline(), asprintf() */
67
67
int signal_received;
68
68
bool debug = false;
69
69
const char *argp_program_version = "password-prompt " VERSION;
70
 
const char *argp_program_bug_address = "<mandos@recompile.se>";
 
70
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
71
71
 
72
72
/* Needed for conflict resolution */
73
73
const char plymouth_name[] = "plymouthd";
74
74
 
75
75
/* Function to use when printing errors */
76
 
__attribute__((format (gnu_printf, 3, 4)))
77
76
void error_plus(int status, int errnum, const char *formatstring,
78
77
                ...){
79
78
  va_list ap;
82
81
  
83
82
  va_start(ap, formatstring);
84
83
  ret = vasprintf(&text, formatstring, ap);
85
 
  if(ret == -1){
 
84
  if (ret == -1){
86
85
    fprintf(stderr, "Mandos plugin %s: ",
87
86
            program_invocation_short_name);
88
87
    vfprintf(stderr, formatstring, ap);
89
 
    fprintf(stderr, ": %s\n", strerror(errnum));
 
88
    fprintf(stderr, ": ");
 
89
    fprintf(stderr, "%s\n", strerror(errnum));
90
90
    error(status, errno, "vasprintf while printing error");
91
91
    return;
92
92
  }
109
109
     from the terminal.  Password-prompt will exit if it detects
110
110
     plymouth since plymouth performs the same functionality.
111
111
   */
112
 
  __attribute__((nonnull))
113
112
  int is_plymouth(const struct dirent *proc_entry){
114
113
    int ret;
115
114
    int cl_fd;
116
115
    {
117
 
      uintmax_t proc_id;
 
116
      uintmax_t maxvalue;
118
117
      char *tmp;
119
118
      errno = 0;
120
 
      proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
 
119
      maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
121
120
      
122
121
      if(errno != 0 or *tmp != '\0'
123
 
         or proc_id != (uintmax_t)((pid_t)proc_id)){
 
122
         or maxvalue != (uintmax_t)((pid_t)maxvalue)){
124
123
        return 0;
125
124
      }
126
125
    }
129
128
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
130
129
                   proc_entry->d_name);
131
130
    if(ret == -1){
132
 
      error_plus(0, errno, "asprintf");
 
131
      error(0, errno, "asprintf");
133
132
      return 0;
134
133
    }
135
134
    
138
137
    free(cmdline_filename);
139
138
    if(cl_fd == -1){
140
139
      if(errno != ENOENT){
141
 
        error_plus(0, errno, "open");
 
140
        error(0, errno, "open");
142
141
      }
143
142
      return 0;
144
143
    }
155
154
        if(cmdline_len + blocksize + 1 > cmdline_allocated){
156
155
          tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
157
156
          if(tmp == NULL){
158
 
            error_plus(0, errno, "realloc");
 
157
            error(0, errno, "realloc");
159
158
            free(cmdline);
160
159
            close(cl_fd);
161
160
            return 0;
168
167
        sret = read(cl_fd, cmdline + cmdline_len,
169
168
                    cmdline_allocated - cmdline_len);
170
169
        if(sret == -1){
171
 
          error_plus(0, errno, "read");
 
170
          error(0, errno, "read");
172
171
          free(cmdline);
173
172
          close(cl_fd);
174
173
          return 0;
177
176
      } while(sret != 0);
178
177
      ret = close(cl_fd);
179
178
      if(ret == -1){
180
 
        error_plus(0, errno, "close");
 
179
        error(0, errno, "close");
181
180
        free(cmdline);
182
181
        return 0;
183
182
      }
209
208
    return 1;
210
209
  }
211
210
  
212
 
  struct dirent **direntries = NULL;
 
211
  struct dirent **direntries;
213
212
  int ret;
214
213
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
215
 
  if(ret == -1){
216
 
    error_plus(1, errno, "scandir");
217
 
  }
218
 
  {
219
 
    int i = ret;
220
 
    while(i--){
221
 
      free(direntries[i]);
222
 
    }
223
 
  }
224
 
  free(direntries);
 
214
  if (ret == -1){
 
215
    error(1, errno, "scandir");
 
216
  }
225
217
  return ret > 0;
226
218
}
227
219
 
256
248
      { .name = NULL }
257
249
    };
258
250
    
259
 
    __attribute__((nonnull(3)))
260
251
    error_t parse_opt (int key, char *arg, struct argp_state *state){
261
252
      errno = 0;
262
253
      switch (key){
298
289
    case ENOMEM:
299
290
    default:
300
291
      errno = ret;
301
 
      error_plus(0, errno, "argp_parse");
 
292
      error(0, errno, "argp_parse");
302
293
      return EX_OSERR;
303
294
    case EINVAL:
304
295
      return EX_USAGE;
309
300
    fprintf(stderr, "Starting %s\n", argv[0]);
310
301
  }
311
302
 
312
 
  if(conflict_detection()){
 
303
  if (conflict_detection()){
313
304
    if(debug){
314
305
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
315
306
    }
322
313
  
323
314
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
324
315
    int e = errno;
325
 
    error_plus(0, errno, "tcgetattr");
 
316
    error(0, errno, "tcgetattr");
326
317
    switch(e){
327
318
    case EBADF:
328
319
    case ENOTTY:
335
326
  sigemptyset(&new_action.sa_mask);
336
327
  ret = sigaddset(&new_action.sa_mask, SIGINT);
337
328
  if(ret == -1){
338
 
    error_plus(0, errno, "sigaddset");
 
329
    error(0, errno, "sigaddset");
339
330
    return EX_OSERR;
340
331
  }
341
332
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
342
333
  if(ret == -1){
343
 
    error_plus(0, errno, "sigaddset");
 
334
    error(0, errno, "sigaddset");
344
335
    return EX_OSERR;
345
336
  }
346
337
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
347
338
  if(ret == -1){
348
 
    error_plus(0, errno, "sigaddset");
 
339
    error(0, errno, "sigaddset");
349
340
    return EX_OSERR;
350
341
  }
351
342
  /* Need to check if the handler is SIG_IGN before handling:
354
345
  */
355
346
  ret = sigaction(SIGINT, NULL, &old_action);
356
347
  if(ret == -1){
357
 
    error_plus(0, errno, "sigaction");
 
348
    error(0, errno, "sigaction");
358
349
    return EX_OSERR;
359
350
  }
360
351
  if(old_action.sa_handler != SIG_IGN){
361
352
    ret = sigaction(SIGINT, &new_action, NULL);
362
353
    if(ret == -1){
363
 
      error_plus(0, errno, "sigaction");
 
354
      error(0, errno, "sigaction");
364
355
      return EX_OSERR;
365
356
    }
366
357
  }
367
358
  ret = sigaction(SIGHUP, NULL, &old_action);
368
359
  if(ret == -1){
369
 
    error_plus(0, errno, "sigaction");
 
360
    error(0, errno, "sigaction");
370
361
    return EX_OSERR;
371
362
  }
372
363
  if(old_action.sa_handler != SIG_IGN){
373
364
    ret = sigaction(SIGHUP, &new_action, NULL);
374
365
    if(ret == -1){
375
 
      error_plus(0, errno, "sigaction");
 
366
      error(0, errno, "sigaction");
376
367
      return EX_OSERR;
377
368
    }
378
369
  }
379
370
  ret = sigaction(SIGTERM, NULL, &old_action);
380
371
  if(ret == -1){
381
 
    error_plus(0, errno, "sigaction");
 
372
    error(0, errno, "sigaction");
382
373
    return EX_OSERR;
383
374
  }
384
375
  if(old_action.sa_handler != SIG_IGN){
385
376
    ret = sigaction(SIGTERM, &new_action, NULL);
386
377
    if(ret == -1){
387
 
      error_plus(0, errno, "sigaction");
 
378
      error(0, errno, "sigaction");
388
379
      return EX_OSERR;
389
380
    }
390
381
  }
398
389
  t_new.c_lflag &= ~(tcflag_t)ECHO;
399
390
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
400
391
    int e = errno;
401
 
    error_plus(0, errno, "tcsetattr-echo");
 
392
    error(0, errno, "tcsetattr-echo");
402
393
    switch(e){
403
394
    case EBADF:
404
395
    case ENOTTY:
468
459
        sret = write(STDOUT_FILENO, buffer + written, n - written);
469
460
        if(sret < 0){
470
461
          int e = errno;
471
 
          error_plus(0, errno, "write");
 
462
          error(0, errno, "write");
472
463
          switch(e){
473
464
          case EBADF:
474
465
          case EFAULT:
490
481
      sret = close(STDOUT_FILENO);
491
482
      if(sret == -1){
492
483
        int e = errno;
493
 
        error_plus(0, errno, "close");
 
484
        error(0, errno, "close");
494
485
        switch(e){
495
486
        case EBADF:
496
487
          status = EX_OSFILE;
506
497
    if(sret < 0){
507
498
      int e = errno;
508
499
      if(errno != EINTR and not feof(stdin)){
509
 
        error_plus(0, errno, "getline");
 
500
        error(0, errno, "getline");
510
501
        switch(e){
511
502
        case EBADF:
512
503
          status = EX_UNAVAILABLE;
513
 
          break;
514
504
        case EIO:
515
505
        case EINVAL:
516
506
        default:
536
526
    fprintf(stderr, "Restoring terminal attributes\n");
537
527
  }
538
528
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
539
 
    error_plus(0, errno, "tcsetattr+echo");
 
529
    error(0, errno, "tcsetattr+echo");
540
530
  }
541
531
  
542
532
  if(quit_now){
544
534
    old_action.sa_handler = SIG_DFL;
545
535
    ret = sigaction(signal_received, &old_action, NULL);
546
536
    if(ret == -1){
547
 
      error_plus(0, errno, "sigaction");
 
537
      error(0, errno, "sigaction");
548
538
    }
549
539
    raise(signal_received);
550
540
  }