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
|
/*
* 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_CONFIGURATION_H_
#define _PASSENGER_CONFIGURATION_H_
#ifdef __cplusplus
#include "Utils.h"
#include "MessageChannel.h"
#include "Logging.h"
#endif
/* The APR headers must come after the Passenger headers. See Hooks.cpp
* to learn why.
*
* MessageChannel.h must be included -- even though we don't actually use
* MessageChannel.h in here, it's necessary to make sure that apr_want.h
* doesn't b0rk on 'struct iovec'.
*/
#include <apr_pools.h>
#include <httpd.h>
#include <http_config.h>
/**
* @defgroup Configuration Apache module configuration
* @ingroup Core
* @{
*/
#ifdef __cplusplus
#include <set>
#include <string>
namespace Passenger {
using namespace std;
/**
* Per-directory configuration information.
*
* Use the getter methods to query information, because those will return
* the default value if the value is not specified.
*/
struct DirConfig {
enum Threeway { ENABLED, DISABLED, UNSET };
enum SpawnMethod { SM_UNSET, SM_SMART, SM_SMART_LV2, SM_CONSERVATIVE };
Threeway enabled;
std::set<std::string> railsBaseURIs;
std::set<std::string> rackBaseURIs;
/** Whether to autodetect Rails applications. */
Threeway autoDetectRails;
/** Whether to autodetect Rack applications. */
Threeway autoDetectRack;
/** Whether to autodetect WSGI applications. */
Threeway autoDetectWSGI;
/** Whether mod_rewrite should be allowed for Rails applications. */
Threeway allowModRewrite;
/** The environment (i.e. value for RAILS_ENV) under which
* Rails applications should operate. */
const char *railsEnv;
/** The path to the application's root (for example: RAILS_ROOT
* for Rails applications, directory containing 'config.ru'
* for Rack applications). If this value is NULL, the default
* autodetected path will be used.
*/
const char *appRoot;
/** The environment (i.e. value for RACK_ENV) under which
* Rack applications should operate. */
const char *rackEnv;
/** The Rails spawn method to use. */
SpawnMethod spawnMethod;
/**
* The idle timeout, in seconds, of Rails framework spawners.
* May also be 0 (which indicates that the framework spawner should
* never idle timeout) or -1 (which means that the value is not specified).
*/
long frameworkSpawnerTimeout;
/**
* The idle timeout, in seconds, of Rails application spawners.
* May also be 0 (which indicates that the application spawner should
* never idle timeout) or -1 (which means that the value is not specified).
*/
long appSpawnerTimeout;
/**
* The maximum number of requests that the spawned application may process
* before exiting. A value of 0 means unlimited.
*/
unsigned long maxRequests;
/** Indicates whether the maxRequests option was explicitly specified
* in the directory configuration. */
bool maxRequestsSpecified;
/**
* The maximum amount of memory (in MB) the spawned application may use.
* A value of 0 means unlimited.
*/
unsigned long memoryLimit;
/** Indicates whether the memoryLimit option was explicitly specified
* in the directory configuration. */
bool memoryLimitSpecified;
/** Whether symlinks in the document root path should be resolved.
* The implication of this is documented in the users guide, section
* "How Phusion Passenger detects whether a virtual host is a web application".
*/
Threeway resolveSymlinksInDocRoot;
/** Whether high performance mode should be turned on. */
Threeway highPerformance;
/** Whether global queuing should be used. */
Threeway useGlobalQueue;
/**
* Whether encoded slashes in URLs should be supported. This however conflicts
* with mod_rewrite support because of a bug/limitation in Apache, so it's one
* or the other.
*/
Threeway allowEncodedSlashes;
/**
* Throttle the number of stat() calls on files like
* restart.txt to the once per given number of seconds.
*/
unsigned long statThrottleRate;
/** Indicates whether the statThrottleRate option was
* explicitly specified in the directory configuration. */
bool statThrottleRateSpecified;
/** The directory in which Passenger should look for
* restart.txt. NULL means that the default directory
* should be used.
*/
const char *restartDir;
/**
* The directory in which Passenger should place upload buffer
* files. NULL means that the default directory should be used.
*/
const char *uploadBufferDir;
/*************************************/
/*************************************/
bool isEnabled() const {
return enabled != DISABLED;
}
string getAppRoot(const char *documentRoot) const {
if (appRoot == NULL) {
if (resolveSymlinksInDocRoot == DirConfig::ENABLED) {
return extractDirName(resolveSymlink(documentRoot));
} else {
return extractDirName(documentRoot);
}
} else {
return appRoot;
}
}
string getAppRoot(const string &documentRoot) const {
if (appRoot == NULL) {
if (resolveSymlinksInDocRoot == DirConfig::ENABLED) {
return extractDirName(resolveSymlink(documentRoot));
} else {
return extractDirName(documentRoot);
}
} else {
return appRoot;
}
}
const char *getRailsEnv() const {
if (railsEnv != NULL) {
return railsEnv;
} else {
return "production";
}
}
const char *getRackEnv() const {
if (rackEnv != NULL) {
return rackEnv;
} else {
return "production";
}
}
const char *getSpawnMethodString() {
switch (spawnMethod) {
case SM_SMART:
return "smart";
case SM_SMART_LV2:
return "smart-lv2";
case SM_CONSERVATIVE:
return "conservative";
default:
return "smart-lv2";
}
}
unsigned long getMaxRequests() {
if (maxRequestsSpecified) {
return maxRequests;
} else {
return 0;
}
}
unsigned long getMemoryLimit() {
if (memoryLimitSpecified) {
return memoryLimit;
} else {
return 200;
}
}
bool highPerformanceMode() const {
return highPerformance == ENABLED;
}
bool usingGlobalQueue() const {
return useGlobalQueue == ENABLED;
}
bool allowsEncodedSlashes() const {
return allowEncodedSlashes == ENABLED;
}
unsigned long getStatThrottleRate() const {
if (statThrottleRateSpecified) {
return statThrottleRate;
} else {
return 0;
}
}
const char *getRestartDir() const {
if (restartDir != NULL) {
return restartDir;
} else {
return "";
}
}
string getUploadBufferDir() const {
if (uploadBufferDir != NULL) {
return uploadBufferDir;
} else {
return getPassengerTempDir() + "/webserver_private";
}
}
/*************************************/
};
/**
* Server-wide (global, not per-virtual host) configuration information.
*
* Use the getter methods to query information, because those will return
* the default value if the value is not specified.
*/
struct ServerConfig {
/** The filename of the Ruby interpreter to use. */
const char *ruby;
/** The Passenger root folder. */
const char *root;
/** The log verbosity. */
unsigned int logLevel;
/** The maximum number of simultaneously alive application
* instances. */
unsigned int maxPoolSize;
/** Whether the maxPoolSize option was explicitly specified in
* this server config. */
bool maxPoolSizeSpecified;
/** The maximum number of simultaneously alive Rails application
* that a single Rails application may occupy. */
unsigned int maxInstancesPerApp;
/** Whether the maxInstancesPerApp option was explicitly specified in
* this server config. */
bool maxInstancesPerAppSpecified;
/** The maximum number of seconds that an application may be
* idle before it gets terminated. */
unsigned int poolIdleTime;
/** Whether the poolIdleTime option was explicitly specified in
* this server config. */
bool poolIdleTimeSpecified;
/** Whether user switching support is enabled. */
bool userSwitching;
/** Whether the userSwitching option was explicitly specified in
* this server config. */
bool userSwitchingSpecified;
/** The user that applications must run as if user switching
* fails or is disabled. NULL means the option is not specified.
*/
const char *defaultUser;
/** The temp directory that Passenger should use. NULL
* means unspecified.
*/
const char *tempDir;
const char *getRuby() const {
if (ruby != NULL) {
return ruby;
} else {
return "ruby";
}
}
const char *getDefaultUser() const {
if (defaultUser != NULL) {
return defaultUser;
} else {
return "nobody";
}
}
const char *getTempDir() const {
if (tempDir != NULL) {
return tempDir;
} else {
return getSystemTempDir();
}
}
};
}
extern "C" {
#endif
/** Configuration hook for per-directory configuration structure creation. */
void *passenger_config_create_dir(apr_pool_t *p, char *dirspec);
/** Configuration hook for per-directory configuration structure merging. */
void *passenger_config_merge_dir(apr_pool_t *p, void *basev, void *addv);
/** Configuration hook for per-server configuration structure creation. */
void *passenger_config_create_server(apr_pool_t *p, server_rec *s);
/** Configuration hook for per-server configuration structure merging. */
void *passenger_config_merge_server(apr_pool_t *p, void *basev, void *overridesv);
void passenger_config_merge_all_servers(apr_pool_t *pool, server_rec *main_server);
/** Apache module commands array. */
extern const command_rec passenger_commands[];
#ifdef __cplusplus
}
#endif
/**
* @}
*/
#endif /* _PASSENGER_CONFIGURATION_H_ */
|