/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-15 01:07:51 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110715010751-bh9rhcm6hv8f174e
* initramfs-tools-script: Bug fix: Add missing "--options" argument to
                          getopt.

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-2018 Teddy Hogeborn
6
 
 * Copyright © 2008-2018 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){
299
289
    case ENOMEM:
300
290
    default:
301
291
      errno = ret;
302
 
      error_plus(0, errno, "argp_parse");
 
292
      error(0, errno, "argp_parse");
303
293
      return EX_OSERR;
304
294
    case EINVAL:
305
295
      return EX_USAGE;
310
300
    fprintf(stderr, "Starting %s\n", argv[0]);
311
301
  }
312
302
 
313
 
  if(conflict_detection()){
 
303
  if (conflict_detection()){
314
304
    if(debug){
315
305
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
316
306
    }
323
313
  
324
314
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
325
315
    int e = errno;
326
 
    error_plus(0, errno, "tcgetattr");
 
316
    error(0, errno, "tcgetattr");
327
317
    switch(e){
328
318
    case EBADF:
329
319
    case ENOTTY:
336
326
  sigemptyset(&new_action.sa_mask);
337
327
  ret = sigaddset(&new_action.sa_mask, SIGINT);
338
328
  if(ret == -1){
339
 
    error_plus(0, errno, "sigaddset");
 
329
    error(0, errno, "sigaddset");
340
330
    return EX_OSERR;
341
331
  }
342
332
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
343
333
  if(ret == -1){
344
 
    error_plus(0, errno, "sigaddset");
 
334
    error(0, errno, "sigaddset");
345
335
    return EX_OSERR;
346
336
  }
347
337
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
348
338
  if(ret == -1){
349
 
    error_plus(0, errno, "sigaddset");
 
339
    error(0, errno, "sigaddset");
350
340
    return EX_OSERR;
351
341
  }
352
342
  /* Need to check if the handler is SIG_IGN before handling:
355
345
  */
356
346
  ret = sigaction(SIGINT, NULL, &old_action);
357
347
  if(ret == -1){
358
 
    error_plus(0, errno, "sigaction");
 
348
    error(0, errno, "sigaction");
359
349
    return EX_OSERR;
360
350
  }
361
351
  if(old_action.sa_handler != SIG_IGN){
362
352
    ret = sigaction(SIGINT, &new_action, NULL);
363
353
    if(ret == -1){
364
 
      error_plus(0, errno, "sigaction");
 
354
      error(0, errno, "sigaction");
365
355
      return EX_OSERR;
366
356
    }
367
357
  }
368
358
  ret = sigaction(SIGHUP, NULL, &old_action);
369
359
  if(ret == -1){
370
 
    error_plus(0, errno, "sigaction");
 
360
    error(0, errno, "sigaction");
371
361
    return EX_OSERR;
372
362
  }
373
363
  if(old_action.sa_handler != SIG_IGN){
374
364
    ret = sigaction(SIGHUP, &new_action, NULL);
375
365
    if(ret == -1){
376
 
      error_plus(0, errno, "sigaction");
 
366
      error(0, errno, "sigaction");
377
367
      return EX_OSERR;
378
368
    }
379
369
  }
380
370
  ret = sigaction(SIGTERM, NULL, &old_action);
381
371
  if(ret == -1){
382
 
    error_plus(0, errno, "sigaction");
 
372
    error(0, errno, "sigaction");
383
373
    return EX_OSERR;
384
374
  }
385
375
  if(old_action.sa_handler != SIG_IGN){
386
376
    ret = sigaction(SIGTERM, &new_action, NULL);
387
377
    if(ret == -1){
388
 
      error_plus(0, errno, "sigaction");
 
378
      error(0, errno, "sigaction");
389
379
      return EX_OSERR;
390
380
    }
391
381
  }
399
389
  t_new.c_lflag &= ~(tcflag_t)ECHO;
400
390
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
401
391
    int e = errno;
402
 
    error_plus(0, errno, "tcsetattr-echo");
 
392
    error(0, errno, "tcsetattr-echo");
403
393
    switch(e){
404
394
    case EBADF:
405
395
    case ENOTTY:
469
459
        sret = write(STDOUT_FILENO, buffer + written, n - written);
470
460
        if(sret < 0){
471
461
          int e = errno;
472
 
          error_plus(0, errno, "write");
 
462
          error(0, errno, "write");
473
463
          switch(e){
474
464
          case EBADF:
475
465
          case EFAULT:
491
481
      sret = close(STDOUT_FILENO);
492
482
      if(sret == -1){
493
483
        int e = errno;
494
 
        error_plus(0, errno, "close");
 
484
        error(0, errno, "close");
495
485
        switch(e){
496
486
        case EBADF:
497
487
          status = EX_OSFILE;
507
497
    if(sret < 0){
508
498
      int e = errno;
509
499
      if(errno != EINTR and not feof(stdin)){
510
 
        error_plus(0, errno, "getline");
 
500
        error(0, errno, "getline");
511
501
        switch(e){
512
502
        case EBADF:
513
503
          status = EX_UNAVAILABLE;
514
 
          break;
515
504
        case EIO:
516
505
        case EINVAL:
517
506
        default:
537
526
    fprintf(stderr, "Restoring terminal attributes\n");
538
527
  }
539
528
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
540
 
    error_plus(0, errno, "tcsetattr+echo");
 
529
    error(0, errno, "tcsetattr+echo");
541
530
  }
542
531
  
543
532
  if(quit_now){
545
534
    old_action.sa_handler = SIG_DFL;
546
535
    ret = sigaction(signal_received, &old_action, NULL);
547
536
    if(ret == -1){
548
 
      error_plus(0, errno, "sigaction");
 
537
      error(0, errno, "sigaction");
549
538
    }
550
539
    raise(signal_received);
551
540
  }