/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/askpass-fifo.c

  • Committer: Teddy Hogeborn
  • Date: 2011-07-13 02:24:39 UTC
  • mfrom: (24.1.174 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20110713022439-wbv6kghshdsc2x24
Merge from Björn.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
                                   ENFILE, ENOMEM, EBADF, EINVAL, EIO,
33
33
                                   EISDIR, EFBIG */
34
34
#include <error.h>              /* error() */
 
35
#include <stdio.h>              /* fprintf(), vfprintf(),
 
36
                                   vasprintf() */
35
37
#include <stdlib.h>             /* EXIT_FAILURE, NULL, size_t, free(),
36
38
                                   realloc(), EXIT_SUCCESS */
37
39
#include <fcntl.h>              /* open(), O_RDONLY */
39
41
                                   STDOUT_FILENO */
40
42
#include <sysexits.h>           /* EX_OSERR, EX_OSFILE,
41
43
                                   EX_UNAVAILABLE, EX_IOERR */
42
 
 
 
44
#include <string.h>             /* strerror() */
 
45
#include <stdarg.h>             /* va_list, va_start(), ... */
 
46
 
 
47
 
 
48
/* Function to use when printing errors */
 
49
void error_plus(int status, int errnum, const char *formatstring,
 
50
                ...){
 
51
  va_list ap;
 
52
  char *text;
 
53
  int ret;
 
54
  
 
55
  va_start(ap, formatstring);
 
56
  ret = vasprintf(&text, formatstring, ap);
 
57
  if (ret == -1){
 
58
    fprintf(stderr, "Mandos plugin %s: ",
 
59
            program_invocation_short_name);
 
60
    vfprintf(stderr, formatstring, ap);
 
61
    fprintf(stderr, ": ");
 
62
    fprintf(stderr, "%s\n", strerror(errnum));
 
63
    error(status, errno, "vasprintf while printing error");
 
64
    return;
 
65
  }
 
66
  fprintf(stderr, "Mandos plugin ");
 
67
  error(status, errnum, "%s", text);
 
68
  free(text);
 
69
}
43
70
 
44
71
int main(__attribute__((unused))int argc,
45
72
         __attribute__((unused))char **argv){
55
82
    case EACCES:
56
83
    case ENOTDIR:
57
84
    case ELOOP:
58
 
      error(EX_OSFILE, errno, "mkfifo");
 
85
      error_plus(EX_OSFILE, errno, "mkfifo");
59
86
    case ENAMETOOLONG:
60
87
    case ENOSPC:
61
88
    case EROFS:
62
89
    default:
63
 
      error(EX_OSERR, errno, "mkfifo");
 
90
      error_plus(EX_OSERR, errno, "mkfifo");
64
91
    case ENOENT:
65
92
      /* no "/lib/cryptsetup"? */
66
 
      error(EX_UNAVAILABLE, errno, "mkfifo");
 
93
      error_plus(EX_UNAVAILABLE, errno, "mkfifo");
67
94
    case EEXIST:
68
95
      break;                    /* not an error */
69
96
    }
73
100
  int fifo_fd = open(passfifo, O_RDONLY);
74
101
  if(fifo_fd == -1){
75
102
    int e = errno;
76
 
    error(0, errno, "open");
 
103
    error_plus(0, errno, "open");
77
104
    switch(e){
78
105
    case EACCES:
79
106
    case ENOENT:
101
128
      if(buf_len + blocksize > buf_allocated){
102
129
        char *tmp = realloc(buf, buf_allocated + blocksize);
103
130
        if(tmp == NULL){
104
 
          error(0, errno, "realloc");
 
131
          error_plus(0, errno, "realloc");
105
132
          free(buf);
106
133
          return EX_OSERR;
107
134
        }
113
140
        int e = errno;
114
141
        free(buf);
115
142
        errno = e;
116
 
        error(0, errno, "read");
 
143
        error_plus(0, errno, "read");
117
144
        switch(e){
118
145
        case EBADF:
119
146
        case EFAULT:
141
168
      int e = errno;
142
169
      free(buf);
143
170
      errno = e;
144
 
      error(0, errno, "write");
 
171
      error_plus(0, errno, "write");
145
172
      switch(e){
146
173
      case EBADF:
147
174
      case EFAULT:
161
188
  ret = close(STDOUT_FILENO);
162
189
  if(ret == -1){
163
190
    int e = errno;
164
 
    error(0, errno, "close");
 
191
    error_plus(0, errno, "close");
165
192
    switch(e){
166
193
    case EBADF:
167
194
      return EX_OSFILE;