/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 bsnet
  • Date: 2011-12-24 23:17:02 UTC
  • Revision ID: teddy@fukt.bsnet.se-20111224231702-1ffgu6r02p0bz9co
* plugins.d/splashy.c (error_plus): Check format string.
* plugins.d/askpass-fifo.c (error_plus): - '' -
* plugins.d/plymouth.c (error_plus): - '' -
* plugins.d/password-prompt.c (error_plus): - '' -
* plugins.d/usplash.c (error_plus): - '' -

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-2011 Teddy Hogeborn
 
6
 * Copyright © 2008-2011 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
22
 * Contact the authors at <mandos@recompile.se>.
24
23
 */
83
82
  
84
83
  va_start(ap, formatstring);
85
84
  ret = vasprintf(&text, formatstring, ap);
86
 
  if(ret == -1){
 
85
  if (ret == -1){
87
86
    fprintf(stderr, "Mandos plugin %s: ",
88
87
            program_invocation_short_name);
89
88
    vfprintf(stderr, formatstring, ap);
90
 
    fprintf(stderr, ": %s\n", strerror(errnum));
 
89
    fprintf(stderr, ": ");
 
90
    fprintf(stderr, "%s\n", strerror(errnum));
91
91
    error(status, errno, "vasprintf while printing error");
92
92
    return;
93
93
  }
110
110
     from the terminal.  Password-prompt will exit if it detects
111
111
     plymouth since plymouth performs the same functionality.
112
112
   */
113
 
  __attribute__((nonnull))
114
113
  int is_plymouth(const struct dirent *proc_entry){
115
114
    int ret;
116
115
    int cl_fd;
117
116
    {
118
 
      uintmax_t proc_id;
 
117
      uintmax_t maxvalue;
119
118
      char *tmp;
120
119
      errno = 0;
121
 
      proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
 
120
      maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
122
121
      
123
122
      if(errno != 0 or *tmp != '\0'
124
 
         or proc_id != (uintmax_t)((pid_t)proc_id)){
 
123
         or maxvalue != (uintmax_t)((pid_t)maxvalue)){
125
124
        return 0;
126
125
      }
127
126
    }
130
129
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
131
130
                   proc_entry->d_name);
132
131
    if(ret == -1){
133
 
      error_plus(0, errno, "asprintf");
 
132
      error(0, errno, "asprintf");
134
133
      return 0;
135
134
    }
136
135
    
139
138
    free(cmdline_filename);
140
139
    if(cl_fd == -1){
141
140
      if(errno != ENOENT){
142
 
        error_plus(0, errno, "open");
 
141
        error(0, errno, "open");
143
142
      }
144
143
      return 0;
145
144
    }
156
155
        if(cmdline_len + blocksize + 1 > cmdline_allocated){
157
156
          tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
158
157
          if(tmp == NULL){
159
 
            error_plus(0, errno, "realloc");
 
158
            error(0, errno, "realloc");
160
159
            free(cmdline);
161
160
            close(cl_fd);
162
161
            return 0;
169
168
        sret = read(cl_fd, cmdline + cmdline_len,
170
169
                    cmdline_allocated - cmdline_len);
171
170
        if(sret == -1){
172
 
          error_plus(0, errno, "read");
 
171
          error(0, errno, "read");
173
172
          free(cmdline);
174
173
          close(cl_fd);
175
174
          return 0;
178
177
      } while(sret != 0);
179
178
      ret = close(cl_fd);
180
179
      if(ret == -1){
181
 
        error_plus(0, errno, "close");
 
180
        error(0, errno, "close");
182
181
        free(cmdline);
183
182
        return 0;
184
183
      }
213
212
  struct dirent **direntries = NULL;
214
213
  int ret;
215
214
  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
 
    }
 
215
  if (ret == -1){
 
216
    error(1, errno, "scandir");
224
217
  }
225
218
  free(direntries);
226
219
  return ret > 0;
257
250
      { .name = NULL }
258
251
    };
259
252
    
260
 
    __attribute__((nonnull(3)))
261
253
    error_t parse_opt (int key, char *arg, struct argp_state *state){
262
254
      errno = 0;
263
255
      switch (key){
274
266
        argp_state_help(state, state->out_stream,
275
267
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
276
268
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
277
 
        __builtin_unreachable();
278
269
      case -3:                  /* --usage */
279
270
        argp_state_help(state, state->out_stream,
280
271
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
281
 
        __builtin_unreachable();
282
272
      case 'V':                 /* --version */
283
273
        fprintf(state->out_stream, "%s\n", argp_program_version);
284
274
        exit(argp_err_exit_status);
301
291
    case ENOMEM:
302
292
    default:
303
293
      errno = ret;
304
 
      error_plus(0, errno, "argp_parse");
 
294
      error(0, errno, "argp_parse");
305
295
      return EX_OSERR;
306
296
    case EINVAL:
307
297
      return EX_USAGE;
312
302
    fprintf(stderr, "Starting %s\n", argv[0]);
313
303
  }
314
304
 
315
 
  if(conflict_detection()){
 
305
  if (conflict_detection()){
316
306
    if(debug){
317
307
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
318
308
    }
325
315
  
326
316
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
327
317
    int e = errno;
328
 
    error_plus(0, errno, "tcgetattr");
 
318
    error(0, errno, "tcgetattr");
329
319
    switch(e){
330
320
    case EBADF:
331
321
    case ENOTTY:
338
328
  sigemptyset(&new_action.sa_mask);
339
329
  ret = sigaddset(&new_action.sa_mask, SIGINT);
340
330
  if(ret == -1){
341
 
    error_plus(0, errno, "sigaddset");
 
331
    error(0, errno, "sigaddset");
342
332
    return EX_OSERR;
343
333
  }
344
334
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
345
335
  if(ret == -1){
346
 
    error_plus(0, errno, "sigaddset");
 
336
    error(0, errno, "sigaddset");
347
337
    return EX_OSERR;
348
338
  }
349
339
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
350
340
  if(ret == -1){
351
 
    error_plus(0, errno, "sigaddset");
 
341
    error(0, errno, "sigaddset");
352
342
    return EX_OSERR;
353
343
  }
354
344
  /* Need to check if the handler is SIG_IGN before handling:
357
347
  */
358
348
  ret = sigaction(SIGINT, NULL, &old_action);
359
349
  if(ret == -1){
360
 
    error_plus(0, errno, "sigaction");
 
350
    error(0, errno, "sigaction");
361
351
    return EX_OSERR;
362
352
  }
363
353
  if(old_action.sa_handler != SIG_IGN){
364
354
    ret = sigaction(SIGINT, &new_action, NULL);
365
355
    if(ret == -1){
366
 
      error_plus(0, errno, "sigaction");
 
356
      error(0, errno, "sigaction");
367
357
      return EX_OSERR;
368
358
    }
369
359
  }
370
360
  ret = sigaction(SIGHUP, NULL, &old_action);
371
361
  if(ret == -1){
372
 
    error_plus(0, errno, "sigaction");
 
362
    error(0, errno, "sigaction");
373
363
    return EX_OSERR;
374
364
  }
375
365
  if(old_action.sa_handler != SIG_IGN){
376
366
    ret = sigaction(SIGHUP, &new_action, NULL);
377
367
    if(ret == -1){
378
 
      error_plus(0, errno, "sigaction");
 
368
      error(0, errno, "sigaction");
379
369
      return EX_OSERR;
380
370
    }
381
371
  }
382
372
  ret = sigaction(SIGTERM, NULL, &old_action);
383
373
  if(ret == -1){
384
 
    error_plus(0, errno, "sigaction");
 
374
    error(0, errno, "sigaction");
385
375
    return EX_OSERR;
386
376
  }
387
377
  if(old_action.sa_handler != SIG_IGN){
388
378
    ret = sigaction(SIGTERM, &new_action, NULL);
389
379
    if(ret == -1){
390
 
      error_plus(0, errno, "sigaction");
 
380
      error(0, errno, "sigaction");
391
381
      return EX_OSERR;
392
382
    }
393
383
  }
401
391
  t_new.c_lflag &= ~(tcflag_t)ECHO;
402
392
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
403
393
    int e = errno;
404
 
    error_plus(0, errno, "tcsetattr-echo");
 
394
    error(0, errno, "tcsetattr-echo");
405
395
    switch(e){
406
396
    case EBADF:
407
397
    case ENOTTY:
471
461
        sret = write(STDOUT_FILENO, buffer + written, n - written);
472
462
        if(sret < 0){
473
463
          int e = errno;
474
 
          error_plus(0, errno, "write");
 
464
          error(0, errno, "write");
475
465
          switch(e){
476
466
          case EBADF:
477
467
          case EFAULT:
493
483
      sret = close(STDOUT_FILENO);
494
484
      if(sret == -1){
495
485
        int e = errno;
496
 
        error_plus(0, errno, "close");
 
486
        error(0, errno, "close");
497
487
        switch(e){
498
488
        case EBADF:
499
489
          status = EX_OSFILE;
509
499
    if(sret < 0){
510
500
      int e = errno;
511
501
      if(errno != EINTR and not feof(stdin)){
512
 
        error_plus(0, errno, "getline");
 
502
        error(0, errno, "getline");
513
503
        switch(e){
514
504
        case EBADF:
515
505
          status = EX_UNAVAILABLE;
516
 
          break;
517
506
        case EIO:
518
507
        case EINVAL:
519
508
        default:
539
528
    fprintf(stderr, "Restoring terminal attributes\n");
540
529
  }
541
530
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
542
 
    error_plus(0, errno, "tcsetattr+echo");
 
531
    error(0, errno, "tcsetattr+echo");
543
532
  }
544
533
  
545
534
  if(quit_now){
547
536
    old_action.sa_handler = SIG_DFL;
548
537
    ret = sigaction(signal_received, &old_action, NULL);
549
538
    if(ret == -1){
550
 
      error_plus(0, errno, "sigaction");
 
539
      error(0, errno, "sigaction");
551
540
    }
552
541
    raise(signal_received);
553
542
  }