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