/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-03-01 20:35:04 UTC
  • mfrom: (469.1.1 mandos-local)
  • Revision ID: teddy@fukt.bsnet.se-20110301203504-2sp5wiq74jz1rl80
* plugins.d/password-prompt.c: Some white space fixes.  Break some
                               long lines.  Add more debug output.

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-2014 Teddy Hogeborn
6
 
 * Copyright © 2008-2014 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() */
41
41
                                   getenv(), free() */
42
42
#include <dirent.h>             /* scandir(), alphasort() */
43
43
#include <stdio.h>              /* fprintf(), stderr, getline(),
44
 
                                   stdin, feof(), fputc(), vfprintf(),
45
 
                                   vasprintf() */
 
44
                                   stdin, feof(), fputc()
 
45
                                */
46
46
#include <errno.h>              /* errno, EBADF, ENOTTY, EINVAL,
47
47
                                   EFAULT, EFBIG, EIO, ENOSPC, EINTR
48
48
                                */
51
51
#include <stdbool.h>            /* bool, false, true */
52
52
#include <inttypes.h>           /* strtoumax() */
53
53
#include <sys/stat.h>           /* struct stat, lstat(), open() */
54
 
#include <string.h>             /* strlen, rindex, memcmp, strerror()
55
 
                                 */
 
54
#include <string.h>             /* strlen, rindex, memcmp */
56
55
#include <argp.h>               /* struct argp_option, struct
57
56
                                   argp_state, struct argp,
58
57
                                   argp_parse(), error_t,
61
60
#include <sysexits.h>           /* EX_SOFTWARE, EX_OSERR,
62
61
                                   EX_UNAVAILABLE, EX_IOERR, EX_OK */
63
62
#include <fcntl.h>              /* open() */
64
 
#include <stdarg.h>             /* va_list, va_start(), ... */
65
63
 
66
64
volatile sig_atomic_t quit_now = 0;
67
65
int signal_received;
68
66
bool debug = false;
69
67
const char *argp_program_version = "password-prompt " VERSION;
70
 
const char *argp_program_bug_address = "<mandos@recompile.se>";
 
68
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
71
69
 
72
70
/* Needed for conflict resolution */
73
71
const char plymouth_name[] = "plymouthd";
 
72
const char plymouth_alt_name[] = "plymouthd";
74
73
 
75
 
/* Function to use when printing errors */
76
 
__attribute__((format (gnu_printf, 3, 4)))
77
 
void error_plus(int status, int errnum, const char *formatstring,
78
 
                ...){
79
 
  va_list ap;
80
 
  char *text;
81
 
  int ret;
82
 
  
83
 
  va_start(ap, formatstring);
84
 
  ret = vasprintf(&text, formatstring, ap);
85
 
  if(ret == -1){
86
 
    fprintf(stderr, "Mandos plugin %s: ",
87
 
            program_invocation_short_name);
88
 
    vfprintf(stderr, formatstring, ap);
89
 
    fprintf(stderr, ": %s\n", strerror(errnum));
90
 
    error(status, errno, "vasprintf while printing error");
91
 
    return;
92
 
  }
93
 
  fprintf(stderr, "Mandos plugin ");
94
 
  error(status, errnum, "%s", text);
95
 
  free(text);
96
 
}
97
74
 
98
75
static void termination_handler(int signum){
99
76
  if(quit_now){
109
86
     from the terminal.  Password-prompt will exit if it detects
110
87
     plymouth since plymouth performs the same functionality.
111
88
   */
112
 
  __attribute__((nonnull))
113
89
  int is_plymouth(const struct dirent *proc_entry){
114
90
    int ret;
115
91
    int cl_fd;
116
92
    {
117
 
      uintmax_t proc_id;
 
93
      uintmax_t maxvalue;
118
94
      char *tmp;
119
95
      errno = 0;
120
 
      proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
 
96
      maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
121
97
      
122
98
      if(errno != 0 or *tmp != '\0'
123
 
         or proc_id != (uintmax_t)((pid_t)proc_id)){
 
99
         or maxvalue != (uintmax_t)((pid_t)maxvalue)){
124
100
        return 0;
125
101
      }
126
102
    }
129
105
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
130
106
                   proc_entry->d_name);
131
107
    if(ret == -1){
132
 
      error_plus(0, errno, "asprintf");
 
108
      error(0, errno, "asprintf");
133
109
      return 0;
134
110
    }
135
111
    
137
113
    cl_fd = open(cmdline_filename, O_RDONLY);
138
114
    free(cmdline_filename);
139
115
    if(cl_fd == -1){
140
 
      if(errno != ENOENT){
141
 
        error_plus(0, errno, "open");
142
 
      }
 
116
      error(0, errno, "open");
143
117
      return 0;
144
118
    }
145
119
    
155
129
        if(cmdline_len + blocksize + 1 > cmdline_allocated){
156
130
          tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
157
131
          if(tmp == NULL){
158
 
            error_plus(0, errno, "realloc");
 
132
            error(0, errno, "realloc");
159
133
            free(cmdline);
160
134
            close(cl_fd);
161
135
            return 0;
168
142
        sret = read(cl_fd, cmdline + cmdline_len,
169
143
                    cmdline_allocated - cmdline_len);
170
144
        if(sret == -1){
171
 
          error_plus(0, errno, "read");
 
145
          error(0, errno, "read");
172
146
          free(cmdline);
173
147
          close(cl_fd);
174
148
          return 0;
177
151
      } while(sret != 0);
178
152
      ret = close(cl_fd);
179
153
      if(ret == -1){
180
 
        error_plus(0, errno, "close");
 
154
        error(0, errno, "close");
181
155
        free(cmdline);
182
156
        return 0;
183
157
      }
193
167
      cmdline_base = cmdline;
194
168
    }
195
169
    
196
 
    if(strcmp(cmdline_base, plymouth_name) != 0){
 
170
    if((strcmp(cmdline_base, plymouth_name) != 0)
 
171
       and (strcmp(cmdline_base, plymouth_alt_name) != 0)){
197
172
      if(debug){
198
 
        fprintf(stderr, "\"%s\" is not \"%s\"\n", cmdline_base,
199
 
                plymouth_name);
 
173
        fprintf(stderr, "\"%s\" is not \"%s\" or \"%s\"\n",
 
174
                cmdline_base, plymouth_name, plymouth_alt_name);
200
175
      }
201
176
      free(cmdline);
202
177
      return 0;
203
178
    }
204
 
    if(debug){
205
 
      fprintf(stderr, "\"%s\" equals \"%s\"\n", cmdline_base,
206
 
              plymouth_name);
207
 
    }
 
179
    fprintf(stderr, "\"%s\" equals \"%s\" or \"%s\"\n",
 
180
            cmdline_base, plymouth_name, plymouth_alt_name);
208
181
    free(cmdline);
209
182
    return 1;
210
183
  }
211
184
  
212
 
  struct dirent **direntries = NULL;
 
185
  struct dirent **direntries;
213
186
  int ret;
214
187
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
215
 
  if(ret == -1){
216
 
    error_plus(1, errno, "scandir");
 
188
  if (ret == -1){
 
189
    error(1, errno, "scandir");
217
190
  }
218
 
  free(direntries);
219
191
  return ret > 0;
220
192
}
221
193
 
250
222
      { .name = NULL }
251
223
    };
252
224
    
253
 
    __attribute__((nonnull(3)))
254
225
    error_t parse_opt (int key, char *arg, struct argp_state *state){
255
226
      errno = 0;
256
227
      switch (key){
292
263
    case ENOMEM:
293
264
    default:
294
265
      errno = ret;
295
 
      error_plus(0, errno, "argp_parse");
 
266
      error(0, errno, "argp_parse");
296
267
      return EX_OSERR;
297
268
    case EINVAL:
298
269
      return EX_USAGE;
303
274
    fprintf(stderr, "Starting %s\n", argv[0]);
304
275
  }
305
276
 
306
 
  if(conflict_detection()){
 
277
  if (conflict_detection()){
307
278
    if(debug){
308
279
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
309
280
    }
316
287
  
317
288
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
318
289
    int e = errno;
319
 
    error_plus(0, errno, "tcgetattr");
 
290
    error(0, errno, "tcgetattr");
320
291
    switch(e){
321
292
    case EBADF:
322
293
    case ENOTTY:
329
300
  sigemptyset(&new_action.sa_mask);
330
301
  ret = sigaddset(&new_action.sa_mask, SIGINT);
331
302
  if(ret == -1){
332
 
    error_plus(0, errno, "sigaddset");
 
303
    error(0, errno, "sigaddset");
333
304
    return EX_OSERR;
334
305
  }
335
306
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
336
307
  if(ret == -1){
337
 
    error_plus(0, errno, "sigaddset");
 
308
    error(0, errno, "sigaddset");
338
309
    return EX_OSERR;
339
310
  }
340
311
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
341
312
  if(ret == -1){
342
 
    error_plus(0, errno, "sigaddset");
 
313
    error(0, errno, "sigaddset");
343
314
    return EX_OSERR;
344
315
  }
345
316
  /* Need to check if the handler is SIG_IGN before handling:
348
319
  */
349
320
  ret = sigaction(SIGINT, NULL, &old_action);
350
321
  if(ret == -1){
351
 
    error_plus(0, errno, "sigaction");
 
322
    error(0, errno, "sigaction");
352
323
    return EX_OSERR;
353
324
  }
354
325
  if(old_action.sa_handler != SIG_IGN){
355
326
    ret = sigaction(SIGINT, &new_action, NULL);
356
327
    if(ret == -1){
357
 
      error_plus(0, errno, "sigaction");
 
328
      error(0, errno, "sigaction");
358
329
      return EX_OSERR;
359
330
    }
360
331
  }
361
332
  ret = sigaction(SIGHUP, NULL, &old_action);
362
333
  if(ret == -1){
363
 
    error_plus(0, errno, "sigaction");
 
334
    error(0, errno, "sigaction");
364
335
    return EX_OSERR;
365
336
  }
366
337
  if(old_action.sa_handler != SIG_IGN){
367
338
    ret = sigaction(SIGHUP, &new_action, NULL);
368
339
    if(ret == -1){
369
 
      error_plus(0, errno, "sigaction");
 
340
      error(0, errno, "sigaction");
370
341
      return EX_OSERR;
371
342
    }
372
343
  }
373
344
  ret = sigaction(SIGTERM, NULL, &old_action);
374
345
  if(ret == -1){
375
 
    error_plus(0, errno, "sigaction");
 
346
    error(0, errno, "sigaction");
376
347
    return EX_OSERR;
377
348
  }
378
349
  if(old_action.sa_handler != SIG_IGN){
379
350
    ret = sigaction(SIGTERM, &new_action, NULL);
380
351
    if(ret == -1){
381
 
      error_plus(0, errno, "sigaction");
 
352
      error(0, errno, "sigaction");
382
353
      return EX_OSERR;
383
354
    }
384
355
  }
392
363
  t_new.c_lflag &= ~(tcflag_t)ECHO;
393
364
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
394
365
    int e = errno;
395
 
    error_plus(0, errno, "tcsetattr-echo");
 
366
    error(0, errno, "tcsetattr-echo");
396
367
    switch(e){
397
368
    case EBADF:
398
369
    case ENOTTY:
462
433
        sret = write(STDOUT_FILENO, buffer + written, n - written);
463
434
        if(sret < 0){
464
435
          int e = errno;
465
 
          error_plus(0, errno, "write");
 
436
          error(0, errno, "write");
466
437
          switch(e){
467
438
          case EBADF:
468
439
          case EFAULT:
484
455
      sret = close(STDOUT_FILENO);
485
456
      if(sret == -1){
486
457
        int e = errno;
487
 
        error_plus(0, errno, "close");
 
458
        error(0, errno, "close");
488
459
        switch(e){
489
460
        case EBADF:
490
461
          status = EX_OSFILE;
500
471
    if(sret < 0){
501
472
      int e = errno;
502
473
      if(errno != EINTR and not feof(stdin)){
503
 
        error_plus(0, errno, "getline");
 
474
        error(0, errno, "getline");
504
475
        switch(e){
505
476
        case EBADF:
506
477
          status = EX_UNAVAILABLE;
507
 
          break;
508
478
        case EIO:
509
479
        case EINVAL:
510
480
        default:
530
500
    fprintf(stderr, "Restoring terminal attributes\n");
531
501
  }
532
502
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
533
 
    error_plus(0, errno, "tcsetattr+echo");
 
503
    error(0, errno, "tcsetattr+echo");
534
504
  }
535
505
  
536
506
  if(quit_now){
538
508
    old_action.sa_handler = SIG_DFL;
539
509
    ret = sigaction(signal_received, &old_action, NULL);
540
510
    if(ret == -1){
541
 
      error_plus(0, errno, "sigaction");
 
511
      error(0, errno, "sigaction");
542
512
    }
543
513
    raise(signal_received);
544
514
  }