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 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
|
/*
* Phusion Passenger - http://www.modrails.com/
* Copyright (c) 2008, 2009 Phusion
*
* "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef _PASSENGER_APPLICATION_H_
#define _PASSENGER_APPLICATION_H_
#include <boost/shared_ptr.hpp>
#include <boost/function.hpp>
#include <oxt/system_calls.hpp>
#include <oxt/backtrace.hpp>
#include <string>
#include <vector>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <netdb.h>
#include <unistd.h>
#include <errno.h>
#include <ctime>
#include <cstring>
#include "MessageChannel.h"
#include "Exceptions.h"
#include "Logging.h"
#include "Utils.h"
namespace Passenger {
using namespace std;
using namespace boost;
/**
* Represents a single Ruby on Rails or Rack application instance.
*
* @ingroup Support
*/
class Application {
public:
class Session;
/** Convenient alias for Session smart pointer. */
typedef shared_ptr<Session> SessionPtr;
/**
* Represents the life time of a single request/response pair of a
* Ruby on Rails or Rack application.
*
* Session is used to forward a single HTTP request to a Ruby on Rails/Rack
* application. A Session has two communication channels: one for reading data
* from the application, and one for writing data to the application.
*
* In general, a session object is to be used in the following manner:
*
* -# Convert the HTTP request headers into a string, as expected by sendHeaders().
* Then send that string by calling sendHeaders().
* -# In case of a POST of PUT request, send the HTTP request body by calling
* sendBodyBlock(), possibly multiple times.
* -# Shutdown the writer channel since you're now done sending data.
* -# The HTTP response can now be read through the reader channel (getStream()).
* -# When the HTTP response has been read, the session must be closed.
* This is done by destroying the Session object.
*
* A usage example is shown in Application::connect().
*/
class Session {
public:
/**
* Implementing classes might throw arbitrary exceptions.
*/
virtual ~Session() {}
/**
* Send HTTP request headers to the application. The HTTP headers must be
* converted into CGI headers, and then encoded into a string that matches this grammar:
*
@verbatim
headers ::= header*
header ::= name NUL value NUL
name ::= notnull+
value ::= notnull+
notnull ::= "\x01" | "\x02" | "\x02" | ... | "\xFF"
NUL = "\x00"
@endverbatim
*
* This method should be the first one to be called during the lifetime of a Session
* object. Otherwise strange things may happen.
*
* @param headers The HTTP request headers, converted into CGI headers and encoded as
* a string, according to the description.
* @param size The size, in bytes, of <tt>headers</tt>.
* @pre headers != NULL
* @throws IOException The writer channel has already been closed.
* @throws SystemException Something went wrong during writing.
* @throws boost::thread_interrupted
*/
virtual void sendHeaders(const char *headers, unsigned int size) {
TRACE_POINT();
int stream = getStream();
if (stream == -1) {
throw IOException("Cannot write headers to the request handler "
"because the writer stream has already been closed.");
}
try {
MessageChannel(stream).writeScalar(headers, size);
} catch (SystemException &e) {
e.setBriefMessage("An error occured while writing headers "
"to the request handler");
throw;
}
}
/**
* Convenience shortcut for sendHeaders(const char *, unsigned int)
* @param headers
* @throws IOException The writer channel has already been closed.
* @throws SystemException Something went wrong during writing.
* @throws boost::thread_interrupted
*/
virtual void sendHeaders(const string &headers) {
sendHeaders(headers.c_str(), headers.size());
}
/**
* Send a chunk of HTTP request body data to the application.
* You can call this method as many times as is required to transfer
* the entire HTTP request body.
*
* This method should only be called after a sendHeaders(). Otherwise
* strange things may happen.
*
* @param block A block of HTTP request body data to send.
* @param size The size, in bytes, of <tt>block</tt>.
* @throws IOException The writer channel has already been closed.
* @throws SystemException Something went wrong during writing.
* @throws boost::thread_interrupted
*/
virtual void sendBodyBlock(const char *block, unsigned int size) {
TRACE_POINT();
int stream = getStream();
if (stream == -1) {
throw IOException("Cannot write request body block to the "
"request handler because the writer stream has "
"already been closed.");
}
try {
MessageChannel(stream).writeRaw(block, size);
} catch (SystemException &e) {
e.setBriefMessage("An error occured while sending the "
"request body to the request handler");
throw;
}
}
/**
* Get the I/O stream's file descriptor. This steam is full-duplex,
* and will be automatically closed upon Session's destruction,
* unless discardStream() is called.
*
* @pre The stream has not been fully closed.
*/
virtual int getStream() const = 0;
/**
* Set the timeout value for reading data from the I/O stream.
* If no data can be read within the timeout period, then the
* read call will fail with error EAGAIN or EWOULDBLOCK.
*
* @param msec The timeout, in milliseconds. If 0 is given,
* there will be no timeout.
* @throws SystemException Cannot set the timeout.
*/
virtual void setReaderTimeout(unsigned int msec) = 0;
/**
* Set the timeout value for writing data from the I/O stream.
* If no data can be written within the timeout period, then the
* write call will fail with error EAGAIN or EWOULDBLOCK.
*
* @param msec The timeout, in milliseconds. If 0 is given,
* there will be no timeout.
* @throws SystemException Cannot set the timeout.
*/
virtual void setWriterTimeout(unsigned int msec) = 0;
/**
* Indicate that we don't want to read data anymore from the I/O stream.
* Calling this method after closeStream() is called will have no effect.
*
* @throws SystemException Something went wrong.
* @throws boost::thread_interrupted
*/
virtual void shutdownReader() = 0;
/**
* Indicate that we don't want to write data anymore to the I/O stream.
* Calling this method after closeStream() is called will have no effect.
*
* @throws SystemException Something went wrong.
* @throws boost::thread_interrupted
*/
virtual void shutdownWriter() = 0;
/**
* Close the I/O stream.
*
* @throws SystemException Something went wrong.
* @throws boost::thread_interrupted
*/
virtual void closeStream() = 0;
/**
* Discard the I/O stream's file descriptor, so that Session won't automatically
* closed it upon Session's destruction.
*/
virtual void discardStream() = 0;
/**
* Get the process ID of the application instance that belongs to this session.
*/
virtual pid_t getPid() const = 0;
};
private:
/**
* A "standard" implementation of Session.
*/
class StandardSession: public Session {
protected:
function<void()> closeCallback;
int fd;
pid_t pid;
public:
StandardSession(pid_t pid,
const function<void()> &closeCallback,
int fd) {
this->pid = pid;
this->closeCallback = closeCallback;
this->fd = fd;
}
virtual ~StandardSession() {
TRACE_POINT();
closeStream();
closeCallback();
}
virtual int getStream() const {
return fd;
}
virtual void setReaderTimeout(unsigned int msec) {
MessageChannel(fd).setReadTimeout(msec);
}
virtual void setWriterTimeout(unsigned int msec) {
MessageChannel(fd).setWriteTimeout(msec);
}
virtual void shutdownReader() {
TRACE_POINT();
if (fd != -1) {
int ret = syscalls::shutdown(fd, SHUT_RD);
if (ret == -1) {
throw SystemException("Cannot shutdown the reader stream",
errno);
}
}
}
virtual void shutdownWriter() {
TRACE_POINT();
if (fd != -1) {
int ret = syscalls::shutdown(fd, SHUT_WR);
if (ret == -1) {
throw SystemException("Cannot shutdown the writer stream",
errno);
}
}
}
virtual void closeStream() {
TRACE_POINT();
if (fd != -1) {
int ret = syscalls::close(fd);
fd = -1;
if (ret == -1) {
if (errno == EIO) {
throw SystemException("A write operation on the session stream failed",
errno);
} else {
throw SystemException("Cannot close the session stream",
errno);
}
}
}
}
virtual void discardStream() {
fd = -1;
}
virtual pid_t getPid() const {
return pid;
}
};
string appRoot;
pid_t pid;
string listenSocketName;
string listenSocketType;
int ownerPipe;
SessionPtr connectToUnixServer(const function<void()> &closeCallback) const {
TRACE_POINT();
int fd = Passenger::connectToUnixServer(listenSocketName.c_str());
return ptr(new StandardSession(pid, closeCallback, fd));
}
SessionPtr connectToTcpServer(const function<void()> &closeCallback) const {
TRACE_POINT();
int fd, ret;
vector<string> args;
split(listenSocketName, ':', args);
if (args.size() != 2 || atoi(args[1]) == 0) {
throw IOException("Invalid TCP/IP address '" + listenSocketName + "'");
}
struct addrinfo hints, *res;
memset(&hints, 0, sizeof(hints));
hints.ai_family = PF_INET;
hints.ai_socktype = SOCK_STREAM;
ret = getaddrinfo(args[0].c_str(), args[1].c_str(), &hints, &res);
if (ret != 0) {
int e = errno;
throw IOException("Cannot resolve address '" + listenSocketName +
"': " + gai_strerror(e));
}
do {
fd = socket(PF_INET, SOCK_STREAM, 0);
} while (fd == -1 && errno == EINTR);
if (fd == -1) {
freeaddrinfo(res);
throw SystemException("Cannot create a new unconnected TCP socket", errno);
}
do {
ret = ::connect(fd, res->ai_addr, res->ai_addrlen);
} while (ret == -1 && errno == EINTR);
freeaddrinfo(res);
if (ret == -1) {
int e = errno;
string message("Cannot connect to TCP server '");
message.append(listenSocketName);
message.append("'");
do {
ret = close(fd);
} while (ret == -1 && errno == EINTR);
throw SystemException(message, e);
}
return ptr(new StandardSession(pid, closeCallback, fd));
}
public:
/**
* Construct a new Application object.
*
* @param theAppRoot The application root of an application. In case of a Rails application,
* this is the folder that contains 'app/', 'public/', 'config/', etc.
* This must be a valid directory, but the path does not have to be absolute.
* @param pid The process ID of this application instance.
* @param listenSocketName The name of the listener socket of this application instance.
* @param listenSocketType The type of the listener socket, e.g. "unix" for Unix
* domain sockets.
* @param ownerPipe The owner pipe of this application instance.
* @post getAppRoot() == theAppRoot && getPid() == pid
*/
Application(const string &theAppRoot, pid_t pid, const string &listenSocketName,
const string &listenSocketType, int ownerPipe) {
appRoot = theAppRoot;
this->pid = pid;
this->listenSocketName = listenSocketName;
this->listenSocketType = listenSocketType;
this->ownerPipe = ownerPipe;
P_TRACE(3, "Application " << this << ": created.");
}
virtual ~Application() {
TRACE_POINT();
int ret;
if (ownerPipe != -1) {
do {
ret = close(ownerPipe);
} while (ret == -1 && errno == EINTR);
}
if (listenSocketType == "unix") {
do {
ret = unlink(listenSocketName.c_str());
} while (ret == -1 && errno == EINTR);
}
P_TRACE(3, "Application " << this << ": destroyed.");
}
/**
* Returns the application root for this application. See the constructor
* for information about the application root.
*/
string getAppRoot() const {
return appRoot;
}
/**
* Returns the process ID of this application instance.
*/
pid_t getPid() const {
return pid;
}
/**
* Connect to this application instance with the purpose of sending
* a request to the application. Once connected, a new session will
* be opened. This session represents the life time of a single
* request/response pair, and can be used to send the request
* data to the application instance, as well as receiving the response
* data.
*
* The use of connect() is demonstrated in the following example.
* @code
* // Connect to the application and get the newly opened session.
* Application::SessionPtr session(app->connect("/home/webapps/foo"));
*
* // Send the request headers and request body data.
* session->sendHeaders(...);
* session->sendBodyBlock(...);
* // Done sending data, so we close the writer channel.
* session->shutdownWriter();
*
* // Now read the HTTP response.
* string responseData = readAllDataFromSocket(session->getReader());
* // Done reading data, so we close the reader channel.
* session->shutdownReader();
*
* // This session has now finished, so we close the session by resetting
* // the smart pointer to NULL (thereby destroying the Session object).
* session.reset();
*
* // We can connect to an Application multiple times. Just make sure
* // the previous session is closed.
* session = app->connect("/home/webapps/bar")
* @endcode
*
* Note that a RoR application instance can only process one
* request at the same time, and thus only one session at the same time.
* It's unspecified whether Rack applications can handle multiple simultanous sessions.
*
* You <b>must</b> close a session when you no longer need if. If you
* call connect() without having properly closed a previous session,
* you might cause a deadlock because the application instance may be
* waiting for you to close the previous session.
*
* @return A smart pointer to a Session object, which represents the created session.
* @param closeCallback A function which will be called when the session has been closed.
* @post this->getSessions() == old->getSessions() + 1
* @throws SystemException Something went wrong during the connection process.
* @throws IOException Something went wrong during the connection process.
* @throws boost::thread_interrupted
*/
SessionPtr connect(const function<void()> &closeCallback) const {
TRACE_POINT();
if (listenSocketType == "unix") {
return connectToUnixServer(closeCallback);
} else if (listenSocketType == "tcp") {
return connectToTcpServer(closeCallback);
} else {
throw IOException("Unsupported socket type '" + listenSocketType + "'");
}
}
};
/** Convenient alias for Application smart pointer. */
typedef shared_ptr<Application> ApplicationPtr;
} // namespace Passenger
#endif /* _PASSENGER_APPLICATION_H_ */
|