/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: 2009-10-18 16:09:05 UTC
  • Revision ID: teddy@fukt.bsnet.se-20091018160905-ep07o5cwedsegz9x
* plugins.d/askpass-fifo.c: Do close(STDOUT_FILENO) before exiting to
                            check its return code.  Use exit codes
                            from <sysexits.h>.
* plugins.d/splashy.c: Use exit codes from <sysexits.h> in the fork to
                       exec the "splashy_update" command.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include <sys/types.h>          /* ssize_t */
27
27
#include <sys/stat.h>           /* mkfifo(), S_IRUSR, S_IWUSR */
28
28
#include <iso646.h>             /* and */
29
 
#include <errno.h>              /* errno, EEXIST */
 
29
#include <errno.h>              /* errno, EACCES, ENOTDIR, ELOOP,
 
30
                                   ENAMETOOLONG, ENOSPC, EROFS,
 
31
                                   ENOENT, EEXIST, EFAULT, EMFILE,
 
32
                                   ENFILE, ENOMEM, EBADF, EINVAL, EIO,
 
33
                                   EISDIR, EFBIG */
30
34
#include <stdio.h>              /* perror() */
31
35
#include <stdlib.h>             /* EXIT_FAILURE, NULL, size_t, free(),
32
36
                                   realloc(), EXIT_SUCCESS */
33
37
#include <fcntl.h>              /* open(), O_RDONLY */
34
38
#include <unistd.h>             /* read(), close(), write(),
35
39
                                   STDOUT_FILENO */
 
40
#include <sysexits.h>           /* EX_OSERR, EX_OSFILE,
 
41
                                   EX_UNAVAILABLE, EX_IOERR */
36
42
 
37
43
 
38
44
int main(__attribute__((unused))int argc,
43
49
  /* Create FIFO */
44
50
  const char passfifo[] = "/lib/cryptsetup/passfifo";
45
51
  ret = mkfifo(passfifo, S_IRUSR | S_IWUSR);
46
 
  if(ret == -1 and errno != EEXIST){
 
52
  if(ret == -1){
 
53
    int e = errno;
47
54
    perror("mkfifo");
48
 
    return EXIT_FAILURE;
 
55
    switch(e){
 
56
    case EACCES:
 
57
    case ENOTDIR:
 
58
    case ELOOP:
 
59
      return EX_OSFILE;
 
60
    case ENAMETOOLONG:
 
61
    case ENOSPC:
 
62
    case EROFS:
 
63
    default:
 
64
      return EX_OSERR;
 
65
    case ENOENT:
 
66
      return EX_UNAVAILABLE;    /* no "/lib/cryptsetup"? */
 
67
    case EEXIST:
 
68
      break;                    /* not an error */
 
69
    }
49
70
  }
50
71
  
51
72
  /* Open FIFO */
52
73
  int fifo_fd = open(passfifo, O_RDONLY);
53
74
  if(fifo_fd == -1){
 
75
    int e = errno;
54
76
    perror("open");
55
 
    return EXIT_FAILURE;
 
77
    switch(e){
 
78
    case EACCES:
 
79
    case ENOENT:
 
80
    case EFAULT:
 
81
      return EX_UNAVAILABLE;
 
82
    case ENAMETOOLONG:
 
83
    case EMFILE:
 
84
    case ENFILE:
 
85
    case ENOMEM:
 
86
    default:
 
87
      return EX_OSERR;
 
88
    case ENOTDIR:
 
89
    case ELOOP:
 
90
      return EX_OSFILE;
 
91
    }
56
92
  }
57
93
  
58
94
  /* Read from FIFO */
67
103
        if(tmp == NULL){
68
104
          perror("realloc");
69
105
          free(buf);
70
 
          return EXIT_FAILURE;
 
106
          return EX_OSERR;
71
107
        }
72
108
        buf = tmp;
73
109
        buf_allocated += blocksize;
74
110
      }
75
111
      sret = read(fifo_fd, buf + buf_len, buf_allocated - buf_len);
76
112
      if(sret == -1){
 
113
        int e = errno;
 
114
        free(buf);
 
115
        errno = e;
77
116
        perror("read");
78
 
        free(buf);
79
 
        return EXIT_FAILURE;
 
117
        switch(e){
 
118
        case EBADF:
 
119
        case EFAULT:
 
120
        case EINVAL:
 
121
        default:
 
122
          return EX_OSERR;
 
123
        case EIO:
 
124
          return EX_IOERR;
 
125
        case EISDIR:
 
126
          return EX_UNAVAILABLE;
 
127
        }
80
128
      }
81
129
      buf_len += (size_t)sret;
82
130
    } while(sret != 0);
90
138
  while(written < buf_len){
91
139
    sret = write(STDOUT_FILENO, buf + written, buf_len - written);
92
140
    if(sret == -1){
 
141
      int e = errno;
 
142
      free(buf);
 
143
      errno = e;
93
144
      perror("write");
94
 
      free(buf);
95
 
      return EXIT_FAILURE;
 
145
      switch(e){
 
146
      case EBADF:
 
147
      case EFAULT:
 
148
      case EINVAL:
 
149
        return EX_OSFILE;
 
150
      case EFBIG:
 
151
      case EIO:
 
152
      case ENOSPC:
 
153
      default:
 
154
        return EX_IOERR;
 
155
      }
96
156
    }
97
157
    written += (size_t)sret;
98
158
  }
99
159
  free(buf);
100
160
  
 
161
  ret = close(STDOUT_FILENO);
 
162
  if(ret == -1){
 
163
    int e = errno;
 
164
    perror("close");
 
165
    switch(e){
 
166
    case EBADF:
 
167
      return EX_OSFILE;
 
168
    case EIO:
 
169
    default:
 
170
      return EX_IOERR;
 
171
    }
 
172
  }
101
173
  return EXIT_SUCCESS;
102
174
}