/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: Björn Påhlsson
  • Date: 2011-10-02 19:18:24 UTC
  • mto: This revision was merged to the branch mainline in revision 505.
  • Revision ID: belorn@fukt.bsnet.se-20111002191824-eweh4pvneeg3qzia
transitional stuff actually working
documented change to D-Bus API

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