/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 recompile
  • Date: 2011-12-31 13:25:58 UTC
  • mto: This revision was merged to the branch mainline in revision 541.
  • Revision ID: teddy@recompile.se-20111231132558-z0dh7qgofgctmgri
* network-hooks.s/bridge: Don't use interface names directly; search
                          for interface names using their address.
  (addrtoif): New function.
* network-hooks.s/bridge.conf (PORTS): Removed.
  (PORT_ADDRESSES): New.
* network-hooks.s/wireless: Don't use interface names directly; search
                            for interface names using their address.
  (addrtoif): New function.
* network-hooks.s/wireless.conf: Specify address.

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-2010 Teddy Hogeborn
6
 
 * Copyright © 2008-2010 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
19
19
 * along with this program.  If not, see
20
20
 * <http://www.gnu.org/licenses/>.
21
21
 * 
22
 
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
22
 * Contact the authors at <mandos@recompile.se>.
23
23
 */
24
24
 
25
25
#define _GNU_SOURCE             /* getline(), asprintf() */
26
26
 
27
 
#include <termios.h>            /* struct termios, tcsetattr(),
 
27
#include <termios.h>            /* struct termios, tcsetattr(),
28
28
                                   TCSAFLUSH, tcgetattr(), ECHO */
29
29
#include <unistd.h>             /* struct termios, tcsetattr(),
30
30
                                   STDIN_FILENO, TCSAFLUSH,
41
41
                                   getenv(), free() */
42
42
#include <dirent.h>             /* scandir(), alphasort() */
43
43
#include <stdio.h>              /* fprintf(), stderr, getline(),
44
 
                                   stdin, feof(), fputc()
45
 
                                */
 
44
                                   stdin, feof(), fputc(), vfprintf(),
 
45
                                   vasprintf() */
46
46
#include <errno.h>              /* errno, EBADF, ENOTTY, EINVAL,
47
47
                                   EFAULT, EFBIG, EIO, ENOSPC, EINTR
48
48
                                */
50
50
#include <iso646.h>             /* or, not */
51
51
#include <stdbool.h>            /* bool, false, true */
52
52
#include <inttypes.h>           /* strtoumax() */
53
 
#include <sys/stat.h>           /* struct stat, lstat(), open() */
54
 
#include <string.h>             /* strlen, rindex, memcmp */
 
53
#include <sys/stat.h>           /* struct stat, lstat(), open() */
 
54
#include <string.h>             /* strlen, rindex, memcmp, strerror()
 
55
                                 */
55
56
#include <argp.h>               /* struct argp_option, struct
56
57
                                   argp_state, struct argp,
57
58
                                   argp_parse(), error_t,
60
61
#include <sysexits.h>           /* EX_SOFTWARE, EX_OSERR,
61
62
                                   EX_UNAVAILABLE, EX_IOERR, EX_OK */
62
63
#include <fcntl.h>              /* open() */
 
64
#include <stdarg.h>             /* va_list, va_start(), ... */
63
65
 
64
66
volatile sig_atomic_t quit_now = 0;
65
67
int signal_received;
66
68
bool debug = false;
67
69
const char *argp_program_version = "password-prompt " VERSION;
68
 
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
70
const char *argp_program_bug_address = "<mandos@recompile.se>";
69
71
 
70
72
/* Needed for conflict resolution */
71
73
const char plymouth_name[] = "plymouthd";
72
 
const char plymouth_alt_name[] = "plymouthd";
73
 
 
 
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
/* Function to use when printing errors */
 
86
__attribute__((format (gnu_printf, 3, 4)))
 
87
void error_plus(int status, int errnum, const char *formatstring,
 
88
                ...){
 
89
  va_list ap;
 
90
  char *text;
 
91
  int ret;
 
92
  
 
93
  va_start(ap, formatstring);
 
94
  ret = vasprintf(&text, formatstring, ap);
 
95
  if (ret == -1){
 
96
    fprintf(stderr, "Mandos plugin %s: ",
 
97
            program_invocation_short_name);
 
98
    vfprintf(stderr, formatstring, ap);
 
99
    fprintf(stderr, ": %s\n", strerror(errnum));
 
100
    error(status, errno, "vasprintf while printing error");
 
101
    return;
 
102
  }
 
103
  fprintf(stderr, "Mandos plugin ");
 
104
  error(status, errnum, "%s", text);
 
105
  free(text);
 
106
}
74
107
 
75
108
static void termination_handler(int signum){
76
109
  if(quit_now){
86
119
     from the terminal.  Password-prompt will exit if it detects
87
120
     plymouth since plymouth performs the same functionality.
88
121
   */
 
122
  __attribute__((nonnull))
89
123
  int is_plymouth(const struct dirent *proc_entry){
90
124
    int ret;
91
125
    int cl_fd;
102
136
    }
103
137
    
104
138
    char *cmdline_filename;
105
 
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline", proc_entry->d_name);
 
139
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
 
140
                   proc_entry->d_name);
106
141
    if(ret == -1){
107
 
      error(0, errno, "asprintf");
 
142
      error_plus(0, errno, "asprintf");
108
143
      return 0;
109
144
    }
110
145
    
111
 
    /* Open /proc/<pid>/cmdline  */
 
146
    /* Open /proc/<pid>/cmdline */
112
147
    cl_fd = open(cmdline_filename, O_RDONLY);
113
148
    free(cmdline_filename);
114
149
    if(cl_fd == -1){
115
 
      error(0, errno, "open");
 
150
      if(errno != ENOENT){
 
151
        error_plus(0, errno, "open");
 
152
      }
116
153
      return 0;
117
154
    }
118
155
    
128
165
        if(cmdline_len + blocksize + 1 > cmdline_allocated){
129
166
          tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
130
167
          if(tmp == NULL){
131
 
            error(0, errno, "realloc");
 
168
            error_plus(0, errno, "realloc");
132
169
            free(cmdline);
133
170
            close(cl_fd);
134
171
            return 0;
141
178
        sret = read(cl_fd, cmdline + cmdline_len,
142
179
                    cmdline_allocated - cmdline_len);
143
180
        if(sret == -1){
144
 
          error(0, errno, "read");
 
181
          error_plus(0, errno, "read");
145
182
          free(cmdline);
146
183
          close(cl_fd);
147
184
          return 0;
150
187
      } while(sret != 0);
151
188
      ret = close(cl_fd);
152
189
      if(ret == -1){
153
 
        error(0, errno, "close");
 
190
        error_plus(0, errno, "close");
154
191
        free(cmdline);
155
192
        return 0;
156
193
      }
166
203
      cmdline_base = cmdline;
167
204
    }
168
205
    
169
 
    if((strcmp(cmdline_base, plymouth_name) != 0)
170
 
       and (strcmp(cmdline_base, plymouth_alt_name) != 0)){
 
206
    if(strcmp(cmdline_base, plymouth_name) != 0){
 
207
      if(debug){
 
208
        fprintf(stderr, "\"%s\" is not \"%s\"\n", cmdline_base,
 
209
                plymouth_name);
 
210
      }
171
211
      free(cmdline);
172
212
      return 0;
173
213
    }
 
214
    if(debug){
 
215
      fprintf(stderr, "\"%s\" equals \"%s\"\n", cmdline_base,
 
216
              plymouth_name);
 
217
    }
174
218
    free(cmdline);
175
219
    return 1;
176
220
  }
177
 
 
178
 
  struct dirent **direntries;
 
221
  
 
222
  struct dirent **direntries = NULL;
179
223
  int ret;
180
224
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
181
225
  if (ret == -1){
182
 
    error(1, errno, "scandir");
 
226
    error_plus(1, errno, "scandir");
183
227
  }
 
228
  free(direntries);
184
229
  return ret > 0;
185
230
}
186
231
 
215
260
      { .name = NULL }
216
261
    };
217
262
    
 
263
    __attribute__((nonnull(3)))
218
264
    error_t parse_opt (int key, char *arg, struct argp_state *state){
219
265
      errno = 0;
220
266
      switch (key){
256
302
    case ENOMEM:
257
303
    default:
258
304
      errno = ret;
259
 
      error(0, errno, "argp_parse");
 
305
      error_plus(0, errno, "argp_parse");
260
306
      return EX_OSERR;
261
307
    case EINVAL:
262
308
      return EX_USAGE;
269
315
 
270
316
  if (conflict_detection()){
271
317
    if(debug){
272
 
      fprintf(stderr, "Stopping %s because of conflict", argv[0]);
 
318
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
273
319
    }
274
320
    return EXIT_FAILURE;
275
321
  }
280
326
  
281
327
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
282
328
    int e = errno;
283
 
    error(0, errno, "tcgetattr");
 
329
    error_plus(0, errno, "tcgetattr");
284
330
    switch(e){
285
331
    case EBADF:
286
332
    case ENOTTY:
293
339
  sigemptyset(&new_action.sa_mask);
294
340
  ret = sigaddset(&new_action.sa_mask, SIGINT);
295
341
  if(ret == -1){
296
 
    error(0, errno, "sigaddset");
 
342
    error_plus(0, errno, "sigaddset");
297
343
    return EX_OSERR;
298
344
  }
299
345
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
300
346
  if(ret == -1){
301
 
    error(0, errno, "sigaddset");
 
347
    error_plus(0, errno, "sigaddset");
302
348
    return EX_OSERR;
303
349
  }
304
350
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
305
351
  if(ret == -1){
306
 
    error(0, errno, "sigaddset");
 
352
    error_plus(0, errno, "sigaddset");
307
353
    return EX_OSERR;
308
354
  }
309
355
  /* Need to check if the handler is SIG_IGN before handling:
312
358
  */
313
359
  ret = sigaction(SIGINT, NULL, &old_action);
314
360
  if(ret == -1){
315
 
    error(0, errno, "sigaction");
 
361
    error_plus(0, errno, "sigaction");
316
362
    return EX_OSERR;
317
363
  }
318
364
  if(old_action.sa_handler != SIG_IGN){
319
365
    ret = sigaction(SIGINT, &new_action, NULL);
320
366
    if(ret == -1){
321
 
      error(0, errno, "sigaction");
 
367
      error_plus(0, errno, "sigaction");
322
368
      return EX_OSERR;
323
369
    }
324
370
  }
325
371
  ret = sigaction(SIGHUP, NULL, &old_action);
326
372
  if(ret == -1){
327
 
    error(0, errno, "sigaction");
 
373
    error_plus(0, errno, "sigaction");
328
374
    return EX_OSERR;
329
375
  }
330
376
  if(old_action.sa_handler != SIG_IGN){
331
377
    ret = sigaction(SIGHUP, &new_action, NULL);
332
378
    if(ret == -1){
333
 
      error(0, errno, "sigaction");
 
379
      error_plus(0, errno, "sigaction");
334
380
      return EX_OSERR;
335
381
    }
336
382
  }
337
383
  ret = sigaction(SIGTERM, NULL, &old_action);
338
384
  if(ret == -1){
339
 
    error(0, errno, "sigaction");
 
385
    error_plus(0, errno, "sigaction");
340
386
    return EX_OSERR;
341
387
  }
342
388
  if(old_action.sa_handler != SIG_IGN){
343
389
    ret = sigaction(SIGTERM, &new_action, NULL);
344
390
    if(ret == -1){
345
 
      error(0, errno, "sigaction");
 
391
      error_plus(0, errno, "sigaction");
346
392
      return EX_OSERR;
347
393
    }
348
394
  }
356
402
  t_new.c_lflag &= ~(tcflag_t)ECHO;
357
403
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
358
404
    int e = errno;
359
 
    error(0, errno, "tcsetattr-echo");
 
405
    error_plus(0, errno, "tcsetattr-echo");
360
406
    switch(e){
361
407
    case EBADF:
362
408
    case ENOTTY:
426
472
        sret = write(STDOUT_FILENO, buffer + written, n - written);
427
473
        if(sret < 0){
428
474
          int e = errno;
429
 
          error(0, errno, "write");
 
475
          error_plus(0, errno, "write");
430
476
          switch(e){
431
477
          case EBADF:
432
478
          case EFAULT:
448
494
      sret = close(STDOUT_FILENO);
449
495
      if(sret == -1){
450
496
        int e = errno;
451
 
        error(0, errno, "close");
 
497
        error_plus(0, errno, "close");
452
498
        switch(e){
453
499
        case EBADF:
454
500
          status = EX_OSFILE;
464
510
    if(sret < 0){
465
511
      int e = errno;
466
512
      if(errno != EINTR and not feof(stdin)){
467
 
        error(0, errno, "getline");
 
513
        error_plus(0, errno, "getline");
468
514
        switch(e){
469
515
        case EBADF:
470
516
          status = EX_UNAVAILABLE;
477
523
        break;
478
524
      }
479
525
    }
480
 
    /* if(sret == 0), then the only sensible thing to do is to retry to
481
 
       read from stdin */
 
526
    /* if(sret == 0), then the only sensible thing to do is to retry
 
527
       to read from stdin */
482
528
    fputc('\n', stderr);
483
529
    if(debug and not quit_now){
484
530
      /* If quit_now is nonzero, we were interrupted by a signal, and
493
539
    fprintf(stderr, "Restoring terminal attributes\n");
494
540
  }
495
541
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
496
 
    error(0, errno, "tcsetattr+echo");
 
542
    error_plus(0, errno, "tcsetattr+echo");
497
543
  }
498
544
  
499
545
  if(quit_now){
501
547
    old_action.sa_handler = SIG_DFL;
502
548
    ret = sigaction(signal_received, &old_action, NULL);
503
549
    if(ret == -1){
504
 
      error(0, errno, "sigaction");
 
550
      error_plus(0, errno, "sigaction");
505
551
    }
506
552
    raise(signal_received);
507
553
  }