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 !
Hongli Lai (Phusion) (author)
Thu May 01 09:28:24 -0700 2008
commit  3f5fb12ba8240018c6210a42d2550d21a3cd6497
tree    d17037c6e79f3251c1e903f1c4b77b545f58aa8d
parent  76ffd90bdc0acbc66d7f40059dc682d013242605 parent  89cd016e92be791b249abc1bd9385edd45d718c4
passenger / ext / apache2 / MessageChannel.h
100644 460 lines (417 sloc) 13.984 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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
/*
 * Phusion Passenger - http://www.modrails.com/
 * Copyright (C) 2008 Phusion
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
#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 <cstdarg>
 
#include "Exceptions.h"
#include "Utils.h"
 
namespace Passenger {
 
using namespace std;
 
/**
 * Convenience class for I/O operations on file descriptors.
 *
 * This class provides convenience methods for:
 * - sending and receiving raw data over a file descriptor.
 * - sending and receiving messages over a file descriptor.
 * - file descriptor passing over a Unix socket.
 * All of these methods use exceptions for error reporting.
 *
 * There are two kinds of messages:
 * - Array messages. These are just a list of strings, and the message
 * itself has a specific length. The contained strings may not
 * contain NUL characters (<tt>'\\0'</tt>). Note that an array message
 * must have at least one element.
 * - Scalar messages. These are byte strings which may contain arbitrary
 * binary data. Scalar messages also have a specific length.
 * The protocol is designed to be low overhead, easy to implement and
 * easy to parse.
 *
 * 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]);
 *
 * // Send an array message.
 * channel2.write("hello", "world !!", NULL);
 * list<string> args;
 * channel1.read(args); // args now contains { "hello", "world !!" }
 *
 * // Send a scalar message.
 * channel2.writeScalar("some long string which can contain arbitrary binary data");
 * string str;
 * channel1.readScalar(str);
 * @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 array messages,
 * scalar messages and file descriptors. If you send a collection of any
 * of these in a specific order, then the receiving side must receive them
 * in the exact some order. So suppose you first send a message, then a
 * file descriptor, then a scalar, then the receiving side must first
 * receive a message, then a file descriptor, then a scalar. If the
 * receiving side does things in the wrong order then bad things will
 * happen.
 * @note MessageChannel is thread-safe.
 *
 * @ingroup Support
 */
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 an array message, which consists of the given elements, over the underlying
   * file descriptor.
   *
   * @param args The message elements.
   * @throws SystemException An error occured while writing the data to the file descriptor.
   * @pre None of the message elements may contain a NUL character (<tt>'\\0'</tt>).
   * @see read(), write(const char *, ...)
   */
  void write(const list<string> &args) {
    list<string>::const_iterator it;
    string data;
    uint16_t dataSize = 0;
 
    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);
    }
    
    writeRaw(data);
  }
  
  /**
   * Send an array 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.
   * @pre None of the message elements may contain a NUL character (<tt>'\\0'</tt>).
   * @see read(), write(const list<string> &)
   */
  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);
  }
  
  /**
   * Send a scalar message over the underlying file descriptor.
   *
   * @param str The scalar message's content.
   * @throws SystemException An error occured while writing the data to the file descriptor.
   * @see readScalar(), writeScalar(const char *, unsigned int)
   */
  void writeScalar(const string &str) {
    writeScalar(str.c_str(), str.size());
  }
  
  /**
   * Send a scalar message over the underlying file descriptor.
   *
   * @param data The scalar message's content.
   * @param size The number of bytes in <tt>data</tt>.
   * @pre <tt>data != NULL</tt>
   * @throws SystemException An error occured while writing the data to the file descriptor.
   * @see readScalar(), writeScalar(const string &)
   */
  void writeScalar(const char *data, unsigned int size) {
    uint32_t l = htonl(size);
    writeRaw((const char *) &l, sizeof(uint32_t));
    writeRaw(data, size);
  }
  
  /**
   * Send a block of data over the underlying file descriptor.
   * This method blocks until everything is sent.
   *
   * @param data The data to send.
   * @param size The number of bytes in <tt>data</tt>.
   * @pre <tt>data != NULL</tt>
   * @throws SystemException An error occured while writing the data to the file descriptor.
   * @see readRaw()
   */
  void writeRaw(const char *data, unsigned int size) {
    ssize_t ret;
    unsigned int written = 0;
    do {
      do {
        ret = ::write(fd, data + written, size - written);
      } while (ret == -1 && errno == EINTR);
      if (ret == -1) {
        throw SystemException("write() failed", errno);
      } else {
        written += ret;
      }
    } while (written < size);
  }
  
  /**
   * Send a block of data over the underlying file descriptor.
   * This method blocks until everything is sent.
   *
   * @param data The data to send.
   * @pre <tt>data != NULL</tt>
   * @throws SystemException An error occured while writing the data to the file descriptor.
   */
  void writeRaw(const string &data) {
    writeRaw(data.c_str(), data.size());
  }
  
  /**
   * 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>
   * @see readFileDescriptor()
   */
  void writeFileDescriptor(int fileDescriptor) {
    struct msghdr msg;
    struct iovec vec;
    char dummy[1];
    char control_data[CMSG_SPACE(sizeof(int))];
    struct cmsghdr *control_header;
  
    msg.msg_name = NULL;
    msg.msg_namelen = 0;
  
    /* Linux and Solaris require msg_iov to be non-NULL. */
    dummy[0] = '\0';
    vec.iov_base = dummy;
    vec.iov_len = sizeof(dummy);
    msg.msg_iov = &vec;
    msg.msg_iovlen = 1;
  
    msg.msg_control = (caddr_t) control_data;
    msg.msg_controllen = sizeof(control_data);
    msg.msg_flags = 0;
  
    control_header = CMSG_FIRSTHDR(&msg);
    control_header->cmsg_len = CMSG_LEN(sizeof(int));
    control_header->cmsg_level = SOL_SOCKET;
    control_header->cmsg_type = SCM_RIGHTS;
    memcpy(CMSG_DATA(control_header), &fileDescriptor, sizeof(int));
    
    if (sendmsg(fd, &msg, 0) == -1) {
      throw SystemException("Cannot send file descriptor with sendmsg()", errno);
    }
  }
  
  /**
   * Read an array 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.
   * @see write()
   */
  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;
  }
  
  /**
   * Read a scalar message from the underlying file descriptor.
   *
   * @param output The message will be put in here.
   * @returns Whether end-of-file was reached during reading.
   * @throws SystemException An error occured while writing the data to the file descriptor.
   * @see writeScalar()
   */
  bool readScalar(string &output) {
    uint32_t size;
    unsigned int remaining;
    
    if (!readRaw(&size, sizeof(uint32_t))) {
      return false;
    }
    size = ntohl(size);
    
    output.clear();
    output.reserve(size);
    remaining = size;
    while (remaining > 0) {
      char buf[1024 * 32];
      unsigned int blockSize = min((unsigned int) sizeof(buf), remaining);
      
      if (!readRaw(buf, blockSize)) {
        return false;
      }
      output.append(buf, blockSize);
      remaining -= blockSize;
    }
    return true;
  }
  
  /**
   * Read exactly <tt>size</tt> bytes of data from the underlying file descriptor,
   * and put the result in <tt>buf</tt>. If end-of-file has been reached, or if
   * end-of-file was encountered before <tt>size</tt> bytes have been read, then
   * <tt>false</tt> will be returned. Otherwise (i.e. if the read was successful),
   * <tt>true</tt> will be returned.
   *
   * @param buf The buffer to place the read data in. This buffer must be at least
   * <tt>size</tt> bytes long.
   * @param size The number of bytes to read.
   * @return Whether reading was successful or whether EOF was reached.
   * @pre buf != NULL
   * @throws SystemException Something went wrong during reading.
   * @see writeRaw()
   */
  bool readRaw(void *buf, unsigned int size) {
    ssize_t ret;
    unsigned int alreadyRead = 0;
    
    while (alreadyRead < size) {
      do {
        ret = ::read(fd, (char *) buf + alreadyRead, size - alreadyRead);
      } while (ret == -1 && errno == EINTR);
      if (ret == -1) {
        throw SystemException("read() failed", errno);
      } else if (ret == 0) {
        return false;
      } else {
        alreadyRead += ret;
      }
    }
    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;
    char dummy[1];
    char control_data[CMSG_SPACE(sizeof(int))];
    struct cmsghdr *control_header;
 
    msg.msg_name = NULL;
    msg.msg_namelen = 0;
    
    dummy[0] = '\0';
    vec.iov_base = dummy;
    vec.iov_len = sizeof(dummy);
    msg.msg_iov = &vec;
    msg.msg_iovlen = 1;
 
    msg.msg_control = (caddr_t) control_data;
    msg.msg_controllen = sizeof(control_data);
    msg.msg_flags = 0;
    
    if (recvmsg(fd, &msg, 0) == -1) {
      throw SystemException("Cannot read file descriptor with recvmsg()", errno);
    }
    
    control_header = CMSG_FIRSTHDR(&msg);
    if (msg.msg_controllen != sizeof(control_data)
     || control_header->cmsg_len != CMSG_LEN(sizeof(int))
     || control_header->cmsg_level != SOL_SOCKET
     || control_header->cmsg_type != SCM_RIGHTS) {
      throw IOException("No valid file descriptor received.");
    }
    return *((int *) CMSG_DATA(control_header));
  }
};
 
} // namespace Passenger
 
#endif /* _PASSENGER_MESSAGE_CHANNEL_H_ */