/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 at bsnet
  • Date: 2011-12-24 23:17:02 UTC
  • Revision ID: teddy@fukt.bsnet.se-20111224231702-1ffgu6r02p0bz9co
* plugins.d/splashy.c (error_plus): Check format string.
* plugins.d/askpass-fifo.c (error_plus): - '' -
* plugins.d/plymouth.c (error_plus): - '' -
* plugins.d/password-prompt.c (error_plus): - '' -
* plugins.d/usplash.c (error_plus): - '' -

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