/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-2012 Teddy Hogeborn
6
 
 * Copyright © 2008-2012 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
 
__attribute__((format (gnu_printf, 2, 3), nonnull(1)))
76
 
int fprintf_plus(FILE *stream, const char *format, ...){
77
 
  va_list ap;
78
 
  va_start (ap, format);
79
 
  
80
 
  TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
81
 
                             program_invocation_short_name));
82
 
  return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
83
 
}
84
 
 
85
75
/* Function to use when printing errors */
86
 
__attribute__((format (gnu_printf, 3, 4)))
87
76
void error_plus(int status, int errnum, const char *formatstring,
88
77
                ...){
89
78
  va_list ap;
96
85
    fprintf(stderr, "Mandos plugin %s: ",
97
86
            program_invocation_short_name);
98
87
    vfprintf(stderr, formatstring, ap);
99
 
    fprintf(stderr, ": %s\n", strerror(errnum));
 
88
    fprintf(stderr, ": ");
 
89
    fprintf(stderr, "%s\n", strerror(errnum));
100
90
    error(status, errno, "vasprintf while printing error");
101
91
    return;
102
92
  }
119
109
     from the terminal.  Password-prompt will exit if it detects
120
110
     plymouth since plymouth performs the same functionality.
121
111
   */
122
 
  __attribute__((nonnull))
123
112
  int is_plymouth(const struct dirent *proc_entry){
124
113
    int ret;
125
114
    int cl_fd;
126
115
    {
127
 
      uintmax_t proc_id;
 
116
      uintmax_t maxvalue;
128
117
      char *tmp;
129
118
      errno = 0;
130
 
      proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
 
119
      maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
131
120
      
132
121
      if(errno != 0 or *tmp != '\0'
133
 
         or proc_id != (uintmax_t)((pid_t)proc_id)){
 
122
         or maxvalue != (uintmax_t)((pid_t)maxvalue)){
134
123
        return 0;
135
124
      }
136
125
    }
139
128
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
140
129
                   proc_entry->d_name);
141
130
    if(ret == -1){
142
 
      error_plus(0, errno, "asprintf");
 
131
      error(0, errno, "asprintf");
143
132
      return 0;
144
133
    }
145
134
    
148
137
    free(cmdline_filename);
149
138
    if(cl_fd == -1){
150
139
      if(errno != ENOENT){
151
 
        error_plus(0, errno, "open");
 
140
        error(0, errno, "open");
152
141
      }
153
142
      return 0;
154
143
    }
165
154
        if(cmdline_len + blocksize + 1 > cmdline_allocated){
166
155
          tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
167
156
          if(tmp == NULL){
168
 
            error_plus(0, errno, "realloc");
 
157
            error(0, errno, "realloc");
169
158
            free(cmdline);
170
159
            close(cl_fd);
171
160
            return 0;
178
167
        sret = read(cl_fd, cmdline + cmdline_len,
179
168
                    cmdline_allocated - cmdline_len);
180
169
        if(sret == -1){
181
 
          error_plus(0, errno, "read");
 
170
          error(0, errno, "read");
182
171
          free(cmdline);
183
172
          close(cl_fd);
184
173
          return 0;
187
176
      } while(sret != 0);
188
177
      ret = close(cl_fd);
189
178
      if(ret == -1){
190
 
        error_plus(0, errno, "close");
 
179
        error(0, errno, "close");
191
180
        free(cmdline);
192
181
        return 0;
193
182
      }
219
208
    return 1;
220
209
  }
221
210
  
222
 
  struct dirent **direntries = NULL;
 
211
  struct dirent **direntries;
223
212
  int ret;
224
213
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
225
214
  if (ret == -1){
226
 
    error_plus(1, errno, "scandir");
 
215
    error(1, errno, "scandir");
227
216
  }
228
 
  free(direntries);
229
217
  return ret > 0;
230
218
}
231
219
 
260
248
      { .name = NULL }
261
249
    };
262
250
    
263
 
    __attribute__((nonnull(3)))
264
251
    error_t parse_opt (int key, char *arg, struct argp_state *state){
265
252
      errno = 0;
266
253
      switch (key){
302
289
    case ENOMEM:
303
290
    default:
304
291
      errno = ret;
305
 
      error_plus(0, errno, "argp_parse");
 
292
      error(0, errno, "argp_parse");
306
293
      return EX_OSERR;
307
294
    case EINVAL:
308
295
      return EX_USAGE;
326
313
  
327
314
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
328
315
    int e = errno;
329
 
    error_plus(0, errno, "tcgetattr");
 
316
    error(0, errno, "tcgetattr");
330
317
    switch(e){
331
318
    case EBADF:
332
319
    case ENOTTY:
339
326
  sigemptyset(&new_action.sa_mask);
340
327
  ret = sigaddset(&new_action.sa_mask, SIGINT);
341
328
  if(ret == -1){
342
 
    error_plus(0, errno, "sigaddset");
 
329
    error(0, errno, "sigaddset");
343
330
    return EX_OSERR;
344
331
  }
345
332
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
346
333
  if(ret == -1){
347
 
    error_plus(0, errno, "sigaddset");
 
334
    error(0, errno, "sigaddset");
348
335
    return EX_OSERR;
349
336
  }
350
337
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
351
338
  if(ret == -1){
352
 
    error_plus(0, errno, "sigaddset");
 
339
    error(0, errno, "sigaddset");
353
340
    return EX_OSERR;
354
341
  }
355
342
  /* Need to check if the handler is SIG_IGN before handling:
358
345
  */
359
346
  ret = sigaction(SIGINT, NULL, &old_action);
360
347
  if(ret == -1){
361
 
    error_plus(0, errno, "sigaction");
 
348
    error(0, errno, "sigaction");
362
349
    return EX_OSERR;
363
350
  }
364
351
  if(old_action.sa_handler != SIG_IGN){
365
352
    ret = sigaction(SIGINT, &new_action, NULL);
366
353
    if(ret == -1){
367
 
      error_plus(0, errno, "sigaction");
 
354
      error(0, errno, "sigaction");
368
355
      return EX_OSERR;
369
356
    }
370
357
  }
371
358
  ret = sigaction(SIGHUP, NULL, &old_action);
372
359
  if(ret == -1){
373
 
    error_plus(0, errno, "sigaction");
 
360
    error(0, errno, "sigaction");
374
361
    return EX_OSERR;
375
362
  }
376
363
  if(old_action.sa_handler != SIG_IGN){
377
364
    ret = sigaction(SIGHUP, &new_action, NULL);
378
365
    if(ret == -1){
379
 
      error_plus(0, errno, "sigaction");
 
366
      error(0, errno, "sigaction");
380
367
      return EX_OSERR;
381
368
    }
382
369
  }
383
370
  ret = sigaction(SIGTERM, NULL, &old_action);
384
371
  if(ret == -1){
385
 
    error_plus(0, errno, "sigaction");
 
372
    error(0, errno, "sigaction");
386
373
    return EX_OSERR;
387
374
  }
388
375
  if(old_action.sa_handler != SIG_IGN){
389
376
    ret = sigaction(SIGTERM, &new_action, NULL);
390
377
    if(ret == -1){
391
 
      error_plus(0, errno, "sigaction");
 
378
      error(0, errno, "sigaction");
392
379
      return EX_OSERR;
393
380
    }
394
381
  }
402
389
  t_new.c_lflag &= ~(tcflag_t)ECHO;
403
390
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
404
391
    int e = errno;
405
 
    error_plus(0, errno, "tcsetattr-echo");
 
392
    error(0, errno, "tcsetattr-echo");
406
393
    switch(e){
407
394
    case EBADF:
408
395
    case ENOTTY:
472
459
        sret = write(STDOUT_FILENO, buffer + written, n - written);
473
460
        if(sret < 0){
474
461
          int e = errno;
475
 
          error_plus(0, errno, "write");
 
462
          error(0, errno, "write");
476
463
          switch(e){
477
464
          case EBADF:
478
465
          case EFAULT:
494
481
      sret = close(STDOUT_FILENO);
495
482
      if(sret == -1){
496
483
        int e = errno;
497
 
        error_plus(0, errno, "close");
 
484
        error(0, errno, "close");
498
485
        switch(e){
499
486
        case EBADF:
500
487
          status = EX_OSFILE;
510
497
    if(sret < 0){
511
498
      int e = errno;
512
499
      if(errno != EINTR and not feof(stdin)){
513
 
        error_plus(0, errno, "getline");
 
500
        error(0, errno, "getline");
514
501
        switch(e){
515
502
        case EBADF:
516
503
          status = EX_UNAVAILABLE;
517
 
          break;
518
504
        case EIO:
519
505
        case EINVAL:
520
506
        default:
540
526
    fprintf(stderr, "Restoring terminal attributes\n");
541
527
  }
542
528
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
543
 
    error_plus(0, errno, "tcsetattr+echo");
 
529
    error(0, errno, "tcsetattr+echo");
544
530
  }
545
531
  
546
532
  if(quit_now){
548
534
    old_action.sa_handler = SIG_DFL;
549
535
    ret = sigaction(signal_received, &old_action, NULL);
550
536
    if(ret == -1){
551
 
      error_plus(0, errno, "sigaction");
 
537
      error(0, errno, "sigaction");
552
538
    }
553
539
    raise(signal_received);
554
540
  }