/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-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
      }
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){
274
265
        argp_state_help(state, state->out_stream,
275
266
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
276
267
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
277
 
        __builtin_unreachable();
278
268
      case -3:                  /* --usage */
279
269
        argp_state_help(state, state->out_stream,
280
270
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
281
 
        __builtin_unreachable();
282
271
      case 'V':                 /* --version */
283
272
        fprintf(state->out_stream, "%s\n", argp_program_version);
284
273
        exit(argp_err_exit_status);
301
290
    case ENOMEM:
302
291
    default:
303
292
      errno = ret;
304
 
      error_plus(0, errno, "argp_parse");
 
293
      error(0, errno, "argp_parse");
305
294
      return EX_OSERR;
306
295
    case EINVAL:
307
296
      return EX_USAGE;
312
301
    fprintf(stderr, "Starting %s\n", argv[0]);
313
302
  }
314
303
 
315
 
  if(conflict_detection()){
 
304
  if (conflict_detection()){
316
305
    if(debug){
317
306
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
318
307
    }
325
314
  
326
315
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
327
316
    int e = errno;
328
 
    error_plus(0, errno, "tcgetattr");
 
317
    error(0, errno, "tcgetattr");
329
318
    switch(e){
330
319
    case EBADF:
331
320
    case ENOTTY:
338
327
  sigemptyset(&new_action.sa_mask);
339
328
  ret = sigaddset(&new_action.sa_mask, SIGINT);
340
329
  if(ret == -1){
341
 
    error_plus(0, errno, "sigaddset");
 
330
    error(0, errno, "sigaddset");
342
331
    return EX_OSERR;
343
332
  }
344
333
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
345
334
  if(ret == -1){
346
 
    error_plus(0, errno, "sigaddset");
 
335
    error(0, errno, "sigaddset");
347
336
    return EX_OSERR;
348
337
  }
349
338
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
350
339
  if(ret == -1){
351
 
    error_plus(0, errno, "sigaddset");
 
340
    error(0, errno, "sigaddset");
352
341
    return EX_OSERR;
353
342
  }
354
343
  /* Need to check if the handler is SIG_IGN before handling:
357
346
  */
358
347
  ret = sigaction(SIGINT, NULL, &old_action);
359
348
  if(ret == -1){
360
 
    error_plus(0, errno, "sigaction");
 
349
    error(0, errno, "sigaction");
361
350
    return EX_OSERR;
362
351
  }
363
352
  if(old_action.sa_handler != SIG_IGN){
364
353
    ret = sigaction(SIGINT, &new_action, NULL);
365
354
    if(ret == -1){
366
 
      error_plus(0, errno, "sigaction");
 
355
      error(0, errno, "sigaction");
367
356
      return EX_OSERR;
368
357
    }
369
358
  }
370
359
  ret = sigaction(SIGHUP, NULL, &old_action);
371
360
  if(ret == -1){
372
 
    error_plus(0, errno, "sigaction");
 
361
    error(0, errno, "sigaction");
373
362
    return EX_OSERR;
374
363
  }
375
364
  if(old_action.sa_handler != SIG_IGN){
376
365
    ret = sigaction(SIGHUP, &new_action, NULL);
377
366
    if(ret == -1){
378
 
      error_plus(0, errno, "sigaction");
 
367
      error(0, errno, "sigaction");
379
368
      return EX_OSERR;
380
369
    }
381
370
  }
382
371
  ret = sigaction(SIGTERM, NULL, &old_action);
383
372
  if(ret == -1){
384
 
    error_plus(0, errno, "sigaction");
 
373
    error(0, errno, "sigaction");
385
374
    return EX_OSERR;
386
375
  }
387
376
  if(old_action.sa_handler != SIG_IGN){
388
377
    ret = sigaction(SIGTERM, &new_action, NULL);
389
378
    if(ret == -1){
390
 
      error_plus(0, errno, "sigaction");
 
379
      error(0, errno, "sigaction");
391
380
      return EX_OSERR;
392
381
    }
393
382
  }
401
390
  t_new.c_lflag &= ~(tcflag_t)ECHO;
402
391
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
403
392
    int e = errno;
404
 
    error_plus(0, errno, "tcsetattr-echo");
 
393
    error(0, errno, "tcsetattr-echo");
405
394
    switch(e){
406
395
    case EBADF:
407
396
    case ENOTTY:
471
460
        sret = write(STDOUT_FILENO, buffer + written, n - written);
472
461
        if(sret < 0){
473
462
          int e = errno;
474
 
          error_plus(0, errno, "write");
 
463
          error(0, errno, "write");
475
464
          switch(e){
476
465
          case EBADF:
477
466
          case EFAULT:
493
482
      sret = close(STDOUT_FILENO);
494
483
      if(sret == -1){
495
484
        int e = errno;
496
 
        error_plus(0, errno, "close");
 
485
        error(0, errno, "close");
497
486
        switch(e){
498
487
        case EBADF:
499
488
          status = EX_OSFILE;
509
498
    if(sret < 0){
510
499
      int e = errno;
511
500
      if(errno != EINTR and not feof(stdin)){
512
 
        error_plus(0, errno, "getline");
 
501
        error(0, errno, "getline");
513
502
        switch(e){
514
503
        case EBADF:
515
504
          status = EX_UNAVAILABLE;
516
 
          break;
517
505
        case EIO:
518
506
        case EINVAL:
519
507
        default:
539
527
    fprintf(stderr, "Restoring terminal attributes\n");
540
528
  }
541
529
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
542
 
    error_plus(0, errno, "tcsetattr+echo");
 
530
    error(0, errno, "tcsetattr+echo");
543
531
  }
544
532
  
545
533
  if(quit_now){
547
535
    old_action.sa_handler = SIG_DFL;
548
536
    ret = sigaction(signal_received, &old_action, NULL);
549
537
    if(ret == -1){
550
 
      error_plus(0, errno, "sigaction");
 
538
      error(0, errno, "sigaction");
551
539
    }
552
540
    raise(signal_received);
553
541
  }