/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/usplash.c

  • Committer: Björn Påhlsson
  • Date: 2011-06-23 22:27:15 UTC
  • mto: This revision was merged to the branch mainline in revision 485.
  • Revision ID: belorn@fukt.bsnet.se-20110623222715-q5wro9ma9iyjl367
* Makefile (CFLAGS): Added "-lrt" to include real time library.
* plugins.d/mandos-client.c: use scandir(3) instead of readdir(3)
                             Prefix all debug output with "Mandos plugin " + program_invocation_short_name
                             Retry servers that failed to provide password.
                             New option --retry SECONDS that sets the interval between rechecking.
                             --retry also controls how often it retries a server when using --connect.
* plugins.d/splashy.c:  Prefix all debug output with "Mandos plugin " + program_invocation_short_name
* plugins.d/usplash.c: --||--
* plugins.d/askpass-fifo.c: --||--
* plugins.d/password-prompt.c: --||--
* plugins.d/plymouth.c: --||--
* mandos: Lower logger level from warning to info on failed client requests because client was disabled or unknown fingerprint.
* plugins.d/plymouth.c (get_pid): bug fix. Was not calling free on direntries. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*
3
3
 * Usplash - Read a password from usplash and output 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-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
 
 * 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             /* asprintf(), TEMP_FAILURE_RETRY() */
37
36
                                   dirent */
38
37
#include <stddef.h>             /* NULL */
39
38
#include <string.h>             /* strlen(), memcmp(), strerror() */
40
 
#include <stdio.h>              /* asprintf(), vasprintf(), vprintf(),
41
 
                                   fprintf() */
 
39
#include <stdio.h>              /* asprintf(), vasprintf(), vprintf(), fprintf() */
42
40
#include <unistd.h>             /* close(), write(), readlink(),
43
41
                                   read(), STDOUT_FILENO, sleep(),
44
42
                                   fork(), setuid(), geteuid(),
59
57
const char usplash_name[] = "/sbin/usplash";
60
58
 
61
59
/* Function to use when printing errors */
62
 
__attribute__((format (gnu_printf, 3, 4)))
63
 
void error_plus(int status, int errnum, const char *formatstring,
64
 
                ...){
 
60
void error_plus(int status, int errnum, const char *formatstring, ...){
65
61
  va_list ap;
66
62
  char *text;
67
63
  int ret;
68
64
  
69
65
  va_start(ap, formatstring);
70
66
  ret = vasprintf(&text, formatstring, ap);
71
 
  if(ret == -1){
72
 
    fprintf(stderr, "Mandos plugin %s: ",
73
 
            program_invocation_short_name);
 
67
  if (ret == -1){
 
68
    fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name);
74
69
    vfprintf(stderr, formatstring, ap);
75
70
    fprintf(stderr, ": ");
76
71
    fprintf(stderr, "%s\n", strerror(errnum));
118
113
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
119
114
      if(ret == -1){
120
115
        int e = errno;
121
 
        close(*fifo_fd_r);
 
116
        TEMP_FAILURE_RETRY(close(*fifo_fd_r));
122
117
        errno = e;
123
118
        return false;
124
119
      }
134
129
                 cmd_line_len - written);
135
130
    if(sret == -1){
136
131
      int e = errno;
137
 
      close(*fifo_fd_r);
 
132
      TEMP_FAILURE_RETRY(close(*fifo_fd_r));
138
133
      free(cmd_line_alloc);
139
134
      errno = e;
140
135
      return false;
492
487
        error_plus(0, errno, "read");
493
488
        status = EX_OSERR;
494
489
      }
495
 
      close(outfifo_fd);
 
490
      TEMP_FAILURE_RETRY(close(outfifo_fd));
496
491
      goto failure;
497
492
    }
498
493
    if(interrupted_by_signal){
579
574
  
580
575
  /* Close FIFO */
581
576
  if(fifo_fd != -1){
582
 
    ret = close(fifo_fd);
 
577
    ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
583
578
    if(ret == -1 and errno != EINTR){
584
579
      error_plus(0, errno, "close");
585
580
    }
588
583
  
589
584
  /* Close output FIFO */
590
585
  if(outfifo_fd != -1){
591
 
    ret = close(outfifo_fd);
 
586
    ret = (int)TEMP_FAILURE_RETRY(close(outfifo_fd));
592
587
    if(ret == -1){
593
588
      error_plus(0, errno, "close");
594
589
    }
656
651
  
657
652
  /* Close FIFO (again) */
658
653
  if(fifo_fd != -1){
659
 
    ret = close(fifo_fd);
 
654
    ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
660
655
    if(ret == -1 and errno != EINTR){
661
656
      error_plus(0, errno, "close");
662
657
    }