GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: Phusion Passenger (mod_rails)
Homepage: http://www.modrails.com/
Clone URL: git://github.com/FooBarWidget/passenger.git
Click here to lend your support to: passenger and make a donation at www.pledgie.com !
FooBarWidget (author)
Fri Feb 01 13:09:31 -0800 2008
commit  aadf427bf3d5d7b0a1a164d50b35a1d71febefc3
tree    fb80451455fce166379cace0ddfd6f0b440357f3
parent  a92649cae9d3a26508f13b8f2cb73694216335ac
passenger / ext / apache2 / MessageChannel.h
100644 297 lines (265 sloc) 8.005 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
#ifndef _PASSENGER_MESSAGE_CHANNEL_H_
#define _PASSENGER_MESSAGE_CHANNEL_H_
 
#include <algorithm>
#include <string>
#include <list>
#include <vector>
 
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <errno.h>
#include <unistd.h>
 
#include "Exceptions.h"
 
namespace Passenger {
 
using namespace std;
 
/**
 * This class provides convenience methods for:
 * - sending and receiving discrete messages over a file descriptor.
 * A message is just a list of strings.
 * - file descriptor passing over a Unix socket.
 *
 * MessageChannel is to be wrapped around a file descriptor. For example:
 * @code
 * int p[2];
 * pipe(p);
 * MessageChannel channel1(p[0]);
 * MessageChannel channel2(p[1]);
 *
 * channel2.write("hello", "world !!", NULL);
 * list<string> args;
 * channel1.read(args); // args now contains { "hello", "world !!" }
 * @endcode
 *
 * The life time of a MessageChannel is independent from that of the
 * wrapped file descriptor. If a MessageChannel object is destroyed,
 * the file descriptor is not automatically closed. Call close()
 * if you want to close the file descriptor.
 *
 * @note I/O operations are not buffered.
 * @note Be careful with mixing the sending/receiving of messages file
 * descriptor passing. These operations have stream properties.
 * Suppose you first send a message, then pass a file descriptor.
 * If the other side of the communication channel first tries to
 * receive a file descriptor, and then tries to receive a message,
 * then bad things will happen.
 * @note MessageChannel is thread-safe.
 */
class MessageChannel {
private:
  const static char DELIMITER = '\0';
  int fd;
 
public:
  /**
   * Construct a new MessageChannel with no underlying file descriptor.
   * Thus the resulting MessageChannel object will not be usable.
   * This constructor exists to allow one to declare an "empty"
   * MessageChannel variable which is to be initialized later.
   */
  MessageChannel() {
    this->fd = -1;
  }
 
  /**
   * Construct a new MessageChannel with the given file descriptor.
   */
  MessageChannel(int fd) {
    this->fd = fd;
  }
  
  /**
   * Close the underlying file descriptor. If this method is called multiple
   * times, the file descriptor will only be closed the first time.
   */
  void close() {
    if (fd != -1) {
      ::close(fd);
      fd = -1;
    }
  }
 
  /**
   * Send the message, which consists of the given elements, over the underlying
   * file descriptor.
   *
   * @throws SystemException An error occured while writing the data to the file descriptor.
   */
  void write(const list<string> &args) {
    list<string>::const_iterator it;
    string data;
    uint16_t dataSize = 0;
    string::size_type written;
    int ret;
 
    for (it = args.begin(); it != args.end(); it++) {
      dataSize += it->size() + 1;
    }
    data.reserve(dataSize + sizeof(dataSize));
    dataSize = htons(dataSize);
    data.append((const char *) &dataSize, sizeof(dataSize));
    for (it = args.begin(); it != args.end(); it++) {
      data.append(*it);
      data.append(1, DELIMITER);
    }
    
    written = 0;
    do {
      do {
        ret = ::write(fd, data.data() + written, data.size() - written);
      } while (ret == -1 && errno == EINTR);
      if (ret == -1) {
        throw SystemException("write() failed", errno);
      } else {
        written += ret;
      }
    } while (written < data.size());
  }
  
  /**
   * Send the message, which consists of the given strings, over the underlying
   * file descriptor.
   *
   * @param name The first element of the message to send.
   * @param ... Other elements of the message. These *must* be strings, i.e. of type char*.
   * It is also required to terminate this list with a NULL.
   * @throws SystemException An error occured while writing the data to the file descriptor.
   */
  void write(const char *name, ...) {
    list<string> args;
    args.push_back(name);
    
    va_list ap;
    va_start(ap, name);
    while (true) {
      const char *arg = va_arg(ap, const char *);
      if (arg == NULL) {
        break;
      } else {
        args.push_back(arg);
      }
    }
    va_end(ap);
    write(args);
  }
  
  /**
   * Pass a file descriptor. This only works if the underlying file
   * descriptor is a Unix socket.
   *
   * @param fileDescriptor The file descriptor to pass.
   * @throws SystemException Something went wrong during file descriptor passing.
   * @pre <tt>fileDescriptor >= 0</tt>
   */
  void writeFileDescriptor(int fileDescriptor) {
    struct msghdr msg;
    struct iovec vec[1];
    char buf[1];
    struct {
      struct cmsghdr hdr;
      int fd;
    } cmsg;
  
    msg.msg_name = NULL;
    msg.msg_namelen = 0;
  
    /* Linux and Solaris doesn't work if msg_iov is NULL. */
    buf[0] = '\0';
    vec[0].iov_base = buf;
    vec[0].iov_len = 1;
    msg.msg_iov = vec;
    msg.msg_iovlen = 1;
  
    msg.msg_control = (caddr_t)&cmsg;
    msg.msg_controllen = CMSG_SPACE(sizeof(int));
    msg.msg_flags = 0;
    cmsg.hdr.cmsg_len = CMSG_LEN(sizeof(int));
    cmsg.hdr.cmsg_level = SOL_SOCKET;
    cmsg.hdr.cmsg_type = SCM_RIGHTS;
    cmsg.fd = fileDescriptor;
    
    if (sendmsg(fd, &msg, 0) == -1) {
      throw SystemException("Cannot send file descriptor with sendmsg()", errno);
    }
  }
  
  /**
   * Receive a message from the underlying file descriptor.
   *
   * @param args The message will be put in this variable.
   * @return Whether end-of-file has been reached. If so, then the contents
   * of <tt>args</tt> will be undefined.
   * @throws SystemException If an error occured while receiving the message.
   */
  bool read(vector<string> &args) {
    uint16_t size;
    int ret;
    unsigned int alreadyRead = 0;
    
    do {
      do {
        ret = ::read(fd, (char *) &size + alreadyRead, sizeof(size) - alreadyRead);
      } while (ret == -1 && errno == EINTR);
      if (ret == -1) {
        throw SystemException("read() failed", errno);
      } else if (ret == 0) {
        return false;
      }
      alreadyRead += ret;
    } while (alreadyRead < sizeof(size));
    size = ntohs(size);
    
    string buffer;
    args.clear();
    buffer.reserve(size);
    while (buffer.size() < size) {
      char tmp[1024 * 8];
      do {
        ret = ::read(fd, tmp, min(size - buffer.size(), sizeof(tmp)));
      } while (ret == -1 && errno == EINTR);
      if (ret == -1) {
        throw SystemException("read() failed", errno);
      } else if (ret == 0) {
        return false;
      }
      buffer.append(tmp, ret);
    }
    
    if (!buffer.empty()) {
      string::size_type start = 0, pos;
      const string &const_buffer(buffer);
      while ((pos = const_buffer.find('\0', start)) != string::npos) {
        args.push_back(const_buffer.substr(start, pos - start));
        start = pos + 1;
      }
    }
    return true;
  }
  
  /**
   * Receive a file descriptor, which had been passed over the underlying
   * file descriptor.
   *
   * @return The passed file descriptor.
   * @throws SystemException If something went wrong during the
   * receiving of a file descriptor. Perhaps the underlying
   * file descriptor isn't a Unix socket.
   * @throws IOException Whatever was received doesn't seem to be a
   * file descriptor.
   */
  int readFileDescriptor() {
    struct msghdr msg;
    struct iovec vec[2];
    char buf[1];
    struct {
      struct cmsghdr hdr;
      int fd;
    } cmsg;
 
    msg.msg_name = NULL;
    msg.msg_namelen = 0;
  
    vec[0].iov_base = buf;
    vec[0].iov_len = sizeof(buf);
    msg.msg_iov = vec;
    msg.msg_iovlen = 1;
 
    msg.msg_control = (caddr_t)&cmsg;
    msg.msg_controllen = CMSG_SPACE(sizeof(int));
    msg.msg_flags = 0;
    cmsg.hdr.cmsg_len = CMSG_LEN(sizeof(int));
    cmsg.hdr.cmsg_level = SOL_SOCKET;
    cmsg.hdr.cmsg_type = SCM_RIGHTS;
    cmsg.fd = -1;
 
    if (recvmsg(fd, &msg, 0) == -1) {
      throw SystemException("Cannot read file descriptor with recvmsg()", errno);
    }
 
    if (msg.msg_controllen != CMSG_SPACE(sizeof(int))
     || cmsg.hdr.cmsg_len != CMSG_SPACE(0) + sizeof(int)
     || cmsg.hdr.cmsg_level != SOL_SOCKET
     || cmsg.hdr.cmsg_type != SCM_RIGHTS) {
      throw IOException("No valid file descriptor received.");
    }
    return cmsg.fd;
  }
};
 
} // namespace Passenger
 
#endif /* _PASSENGER_MESSAGE_CHANNEL_H_ */