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
|
/*
* Phusion Passenger - http://www.modrails.com/
* Copyright (c) 2010 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_SESSION_H_
#define _PASSENGER_SESSION_H_
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>
#include <netdb.h>
#include <cerrno>
#include <cstring>
#include <string>
#include <vector>
#include <boost/shared_ptr.hpp>
#include <boost/function.hpp>
#include <oxt/backtrace.hpp>
#include <oxt/system_calls.hpp>
#include <StaticString.h>
#include <Exceptions.h>
#include <Utils/StrIntUtils.h>
#include <Utils/IOUtils.h>
#include <Utils/MessageIO.h>
namespace Passenger {
using namespace boost;
using namespace oxt;
using namespace std;
/**
* Represents a single request/response pair of an application process.
*
* Session is used to forward a single HTTP request to an application
* process, and to read back the HTTP response. A Session object is to
* be used in the following manner:
*
* -# Serialize the HTTP request headers into a format 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 end of the session channel (shutdownWriter())
* since you're now done sending data.
* -# The HTTP response can now be read through the session 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 Process::newSession().
*
* Session is an abstract base class. Concrete implementations can be found in
* StandardSession and ApplicationPool::Client::RemoteSession.
*
* Session is not guaranteed to be thread-safe.
*/
class Session {
protected:
string detachKey;
string connectPassword;
string gupid;
public:
/**
* Concrete classes might throw arbitrary exceptions.
*/
virtual ~Session() {}
/**
* Initiate the session by connecting to the associated process.
* A Session is not usable until it's initiated.
*
* @throws SystemException Something went wrong.
* @throws IOException Something went wrong.
* @throws boost::thread_interrupted
*/
virtual void initiate() = 0;
/**
* Returns whether this session has been initiated (that is, whether
* initiate() had been called in the past).
*/
virtual bool initiated() const = 0;
/**
* Returns the type of the socket that this session is served from,
* e.g. "unix" indicating a Unix socket.
*
* @post !result.empty()
*/
virtual string getSocketType() const = 0;
/**
* Returns the address of the socket that this session is served
* from. This can be a Unix socket filename or a TCP host:port string
* like "127.0.0.1:1234".
*
* @post !result.empty()
*/
virtual string getSocketName() const = 0;
/**
* 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
*
* There must be a header with the name "PASSWORD_CONNECT_PASSWORD", and it must
* have the same value as the string returned by getConnectPassword().
*
* 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
* @pre initiated()
* @throws IOException The I/O channel has already been closed or discarded.
* @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 I/O stream has already been closed or discarded.");
}
try {
writeScalarMessage(stream, 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 The headers
* @pre initiated()
* @throws IOException The I/O channel has already been closed or discarded.
* @throws SystemException Something went wrong during writing.
* @throws boost::thread_interrupted
*/
virtual void sendHeaders(const StaticString &headers) {
sendHeaders(headers.c_str(), (unsigned int) 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 must 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>.
* @pre initiated()
* @throws IOException The I/O channel has already been closed or discarded.
* @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 I/O channel has "
"already been closed or discarded.");
}
try {
writeExact(stream, block, size);
} catch (SystemException &e) {
e.setBriefMessage("An error occured while sending the "
"request body to the request handler");
throw;
}
}
/**
* Returns this session's channel's file descriptor. This stream is
* full-duplex, and will be automatically closed upon Session's
* destruction, unless discardStream() is called.
*
* @pre initiated()
* @returns The file descriptor, or -1 if the I/O channel has already
* been closed or discarded.
*/
virtual int getStream() const = 0;
/**
* Indicate that we don't want to read data anymore from the I/O channel.
* Calling this method after closeStream()/discardStream() is called will
* have no effect.
*
* @pre initiated()
* @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 channel.
* Calling this method after closeStream()/discardStream() is called will
* have no effect.
*
* @pre initiated()
* @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
* @pre initiated()
* @post getStream() == -1
*/
virtual void closeStream() = 0;
/**
* Discard the I/O channel's file descriptor, so that the destructor
* won't automatically close it.
*
* @pre initiated()
* @post getStream() == -1
*/
virtual void discardStream() = 0;
/**
* Get the process ID of the application process that this session
* belongs to.
*/
virtual pid_t getPid() const = 0;
const string getDetachKey() const {
return detachKey;
}
/**
* Returns this session's process's connect password. This password is
* guaranteed to be valid ASCII.
*/
const string getConnectPassword() const {
return connectPassword;
}
const string getGupid() const {
return gupid;
}
};
typedef shared_ptr<Session> SessionPtr;
/**
* A "standard" implementation of Session.
*/
class StandardSession: public Session {
public:
typedef function<void (const StandardSession *)> CloseCallback;
protected:
pid_t pid;
CloseCallback closeCallback;
string socketType;
string socketName;
/** The session connection file descriptor. */
int fd;
bool isInitiated;
public:
StandardSession(pid_t pid,
const CloseCallback &closeCallback,
const string &socketType,
const string &socketName,
const string &detachKey,
const string &connectPassword,
const string &gupid)
{
TRACE_POINT();
if (socketType != "unix" && socketType != "tcp") {
throw IOException("Unsupported socket type '" + socketType + "'");
}
this->pid = pid;
this->closeCallback = closeCallback;
this->socketType = socketType;
this->socketName = socketName;
this->detachKey = detachKey;
this->connectPassword = connectPassword;
this->gupid = gupid;
fd = -1;
isInitiated = false;
}
virtual ~StandardSession() {
TRACE_POINT();
closeStream();
if (closeCallback != NULL) {
closeCallback(this);
}
}
virtual void initiate() {
TRACE_POINT();
if (socketType == "unix") {
fd = connectToUnixServer(socketName.c_str());
} else {
vector<string> args;
split(socketName, ':', args);
if (args.size() != 2 || atoi(args[1]) == 0) {
UPDATE_TRACE_POINT();
throw IOException("Invalid TCP/IP address '" + socketName + "'");
}
fd = connectToTcpServer(args[0].c_str(), atoi(args[1]));
}
isInitiated = true;
}
virtual bool initiated() const {
return isInitiated;
}
virtual string getSocketType() const {
return socketType;
}
virtual string getSocketName() const {
return socketName;
}
virtual int getStream() const {
return fd;
}
virtual void shutdownReader() {
TRACE_POINT();
if (fd != -1) {
int ret = syscalls::shutdown(fd, SHUT_RD);
if (ret == -1) {
int e = errno;
// ENOTCONN is harmless here.
if (e != ENOTCONN) {
throw SystemException("Cannot shutdown the reader stream",
e);
}
}
}
}
virtual void shutdownWriter() {
TRACE_POINT();
if (fd != -1) {
int ret = syscalls::shutdown(fd, SHUT_WR);
if (ret == -1) {
int e = errno;
// ENOTCONN is harmless here.
if (e != ENOTCONN) {
throw SystemException("Cannot shutdown the writer stream",
e);
}
}
}
}
virtual void closeStream() {
TRACE_POINT();
if (fd != -1) {
int ret = syscalls::close(fd);
fd = -1;
if (ret == -1) {
int e = errno;
if (errno == EIO) {
throw SystemException(
"A write operation on the session stream failed",
e);
} else {
throw SystemException(
"Cannot close the session stream",
e);
}
}
}
}
virtual void discardStream() {
fd = -1;
}
virtual pid_t getPid() const {
return pid;
}
};
} // namespace Passenger
#endif /* _PASSENGER_SESSION_H_ */
|