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
|
/*
* 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_UTILS_H_
#define _PASSENGER_UTILS_H_
#include <boost/shared_ptr.hpp>
#include <boost/function.hpp>
#include <sys/types.h>
#include <sys/stat.h>
#include <string>
#include <vector>
#include <utility>
#include <sstream>
#include <cstdio>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <errno.h>
#include <unistd.h>
#include "StaticString.h"
#include "Exceptions.h"
namespace Passenger {
using namespace std;
using namespace boost;
static const uid_t USER_NOT_GIVEN = (uid_t) -1;
static const gid_t GROUP_NOT_GIVEN = (gid_t) -1;
class CachedFileStat;
class ResourceLocator;
/** Enumeration which indicates what kind of file a file is. */
typedef enum {
/** The file doesn't exist. */
FT_NONEXISTANT,
/** A regular file or a symlink to a regular file. */
FT_REGULAR,
/** A directory. */
FT_DIRECTORY,
/** Something else, e.g. a pipe or a socket. */
FT_OTHER
} FileType;
/**
* Convenience shortcut for creating a <tt>shared_ptr</tt>.
* Instead of:
* @code
* shared_ptr<Foo> foo;
* ...
* foo = shared_ptr<Foo>(new Foo());
* @endcode
* one can write:
* @code
* shared_ptr<Foo> foo;
* ...
* foo = ptr(new Foo());
* @endcode
*
* @param pointer The item to put in the shared_ptr object.
* @ingroup Support
*/
template<typename T> shared_ptr<T>
ptr(T *pointer) {
return shared_ptr<T>(pointer);
}
/**
* Check whether the specified file exists.
*
* @param filename The filename to check.
* @param cstat A CachedFileStat object, if you want to use cached statting.
* @param throttleRate A throttle rate for cstat. Only applicable if cstat is not NULL.
* @return Whether the file exists.
* @throws FileSystemException Unable to check because of a filesystem error.
* @throws TimeRetrievalException
* @throws boost::thread_interrupted
* @ingroup Support
*/
bool fileExists(const StaticString &filename, CachedFileStat *cstat = 0,
unsigned int throttleRate = 0);
/**
* Check whether 'filename' exists and what kind of file it is.
*
* @param filename The filename to check. It MUST be NULL-terminated.
* @param mstat A CachedFileStat object, if you want to use cached statting.
* @param throttleRate A throttle rate for cstat. Only applicable if cstat is not NULL.
* @return The file type.
* @throws FileSystemException Unable to check because of a filesystem error.
* @throws TimeRetrievalException
* @throws boost::thread_interrupted
* @ingroup Support
*/
FileType getFileType(const StaticString &filename, CachedFileStat *cstat = 0,
unsigned int throttleRate = 0);
/**
* Create the given file with the given contents, permissions and ownership.
* This function does not leave behind junk files: if the ownership cannot be set
* or if not all data can be written then then the file will be deleted.
*
* @param filename The file to create.
* @param contents The contents to write to the file.
* @param permissions The desired file permissions.
* @param owner The desired file owner. Specify USER_NOT_GIVEN if you want to use the current
* process's owner as the file owner.
* @param group The desired file group. Specify GROUP_NOT_GIVEN if you want to use the current
* process's group as the file group.
* @param overwrite Whether to overwrite the file if it exists. If set to false
* and the file exists then nothing will happen.
* @throws FileSystemException Something went wrong.
* @ingroup Support
*/
void createFile(const string &filename, const StaticString &contents,
mode_t permissions = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH,
uid_t owner = USER_NOT_GIVEN, gid_t group = GROUP_NOT_GIVEN,
bool overwrite = true);
/**
* Returns a canonical version of the specified path. All symbolic links
* and relative path elements are resolved.
*
* @throws FileSystemException Something went wrong.
* @ingroup Support
*/
string canonicalizePath(const string &path);
/**
* If <em>path</em> refers to a symlink, then this function resolves the
* symlink for 1 level. That is, if the symlink points to another symlink,
* then the other symlink will not be resolved. The resolved path is returned.
*
* If the symlink doesn't point to an absolute path, then this function will
* prepend <em>path</em>'s directory to the result.
*
* If <em>path</em> doesn't refer to a symlink then this method will return
* <em>path</em>.
*
* @throws FileSystemException Something went wrong.
* @ingroup Support
*/
string resolveSymlink(const string &path);
/**
* Given a path, extracts its directory name.
*
* @ingroup Support
*/
string extractDirName(const StaticString &path);
/**
* Given a path, extracts its base name.
*
* @ingroup Support
*/
string extractBaseName(const StaticString &path);
/**
* Escape the given raw string into an XML value.
*
* @throws std::bad_alloc Something went wrong.
* @ingroup Support
*/
string escapeForXml(const string &input);
/**
* Returns the username of the user that the current process is running as.
* If the user has no associated username, then "UID xxxx" is returned,
* where xxxx is the current UID.
*/
string getProcessUsername();
/**
* Converts a mode string into a mode_t value.
*
* At this time only the symbolic mode strings are supported, e.g. something like looks
* this: "u=rwx,g=w,o=rx". The grammar is as follows:
* @code
* mode ::= (clause ("," clause)*)?
* clause ::= who "=" permission*
* who ::= "u" | "g" | "o"
* permission ::= "r" | "w" | "x" | "s"
* @endcode
*
* Notes:
* - The mode value starts with 0. So if you specify "u=rwx", then the group and world
* permissions will be empty (set to 0).
* - The "s" permission is only allowed for who == "u" or who == "g".
* - The return value does not depend on the umask.
*
* @throws InvalidModeStringException The mode string cannot be parsed.
*/
mode_t parseModeString(const StaticString &mode);
/**
* Return the path name for the directory in which the system stores general
* temporary files. This is usually "/tmp", but might be something else depending
* on some environment variables.
*
* @ensure result != NULL
* @ingroup Support
*/
const char *getSystemTempDir();
/* Create a temporary directory for storing Phusion Passenger instance-specific
* temp files, such as temporarily buffered uploads, sockets for backend
* processes, etc.
* The directory that will be created is the one returned by
* <tt>getPassengerTempDir(false, parentDir)</tt>. This call stores the path to
* this temp directory in an internal variable, so that subsequent calls to
* getPassengerTempDir() will return the same path.
*
* The created temp directory will have several subdirectories:
* - webserver_private - for storing the web server's buffered uploads.
* - info - for storing files that allow external tools to query information
* about a running Phusion Passenger instance.
* - backends - for storing Unix sockets created by backend processes.
* - master - for storing files such as the Passenger HelperServer socket.
*
* If a (sub)directory already exists, then it will not result in an error.
*
* The <em>userSwitching</em> and <em>lowestUser</em> arguments passed to
* this method are used for determining the optimal permissions for the
* (sub)directories. The permissions will be set as tightly as possible based
* on the values. The <em>workerUid</em> and <em>workerGid</em> arguments
* will be used for determining the owner of certain subdirectories.
*
* @note You should only call this method inside the web server's master
* process. In case of Apache, this is the Apache control process,
* the one that tends to run as root. This is because this function
* will set directory permissions and owners/groups, which may require
* root privileges.
*
* @param parentDir The directory under which the Phusion Passenger-specific
* temp directory should be created. This argument may be the
* empty string, in which case getSystemTempDir() will be used
* as the parent directory.
* @param userSwitching Whether user switching is turned on.
* @param lowestUser The user that the spawn manager and the pool server will
* run as, if user switching is turned off.
* @param workerUid The UID that the web server's worker processes are running
* as. On Apache, this is the UID that's associated with the
* 'User' directive.
* @param workerGid The GID that the web server's worker processes are running
* as. On Apache, this is the GID that's associated with the
* 'Group' directive.
* @throws IOException Something went wrong.
* @throws SystemException Something went wrong.
* @throws FileSystemException Something went wrong.
*/
/* void createPassengerTempDir(const string &parentDir, bool userSwitching,
const string &lowestUser,
uid_t workerUid, gid_t workerGid); */
/**
* Create the directory at the given path, creating intermediate directories
* if necessary. The created directories' permissions are exactly as specified
* by the 'mode' parameter (i.e. the umask will be ignored). You can specify
* this directory's owner and group through the 'owner' and 'group' parameters.
* A value of USER_NOT_GIVEN for 'owner' and/or GROUP_NOT_GIVEN 'group' means
* that the owner/group should not be changed.
*
* If 'path' already exists, then nothing will happen.
*
* @param mode A mode string, as supported by parseModeString().
* @throws FileSystemException Something went wrong.
* @throws InvalidModeStringException The mode string cannot be parsed.
*/
void makeDirTree(const string &path, const StaticString &mode = "u=rwx,g=,o=",
uid_t owner = USER_NOT_GIVEN, gid_t group = GROUP_NOT_GIVEN);
/**
* Remove an entire directory tree recursively. If the directory doesn't exist then this
* function does nothing.
*
* @throws FileSystemException Something went wrong.
*/
void removeDirTree(const string &path);
/**
* Check whether the specified directory is a valid Ruby on Rails
* application root directory.
*
* @param cstat A CachedFileStat object, if you want to use cached statting.
* @param throttleRate A throttle rate for cstat. Only applicable if cstat is not NULL.
* @throws FileSystemException Unable to check because of a system error.
* @throws TimeRetrievalException
* @throws boost::thread_interrupted
* @ingroup Support
*/
bool verifyRailsDir(const string &dir, CachedFileStat *cstat = 0,
unsigned int throttleRate = 0);
/**
* Check whether the specified directory is a valid Rack application
* root directory.
*
* @param cstat A CachedFileStat object, if you want to use cached statting.
* @param throttleRate A throttle rate for cstat. Only applicable if cstat is not NULL.
* @throws FileSystemException Unable to check because of a filesystem error.
* @throws TimeRetrievalException
* @throws boost::thread_interrupted
* @ingroup Support
*/
bool verifyRackDir(const string &dir, CachedFileStat *cstat = 0,
unsigned int throttleRate = 0);
/**
* Check whether the specified directory is a valid WSGI application
* root directory.
*
* @param cstat A CachedFileStat object, if you want to use cached statting.
* @param throttleRate A throttle rate for cstat. Only applicable if cstat is not NULL.
* @throws FileSystemException Unable to check because of a filesystem error.
* @throws TimeRetrievalException
* @throws boost::thread_interrupted
* @ingroup Support
*/
bool verifyWSGIDir(const string &dir, CachedFileStat *cstat = 0,
unsigned int throttleRate = 0);
void prestartWebApps(const ResourceLocator &locator, const string &serializedprestartURLs);
/**
* Runs the given function and catches any tracable_exceptions. Upon catching such an exception,
* its message and backtrace will be printed. If toAbort is true then it will call abort(),
* otherwise the exception is swallowed.
* thread_interrupted and all other exceptions are silently propagated.
*/
void runAndPrintExceptions(const function<void ()> &func, bool toAbort);
void runAndPrintExceptions(const function<void ()> &func);
/**
* Returns the system's host name.
*
* @throws SystemException The host name cannot be retrieved.
*/
string getHostName();
/**
* Convert a signal number to its associated name.
*/
string getSignalName(int sig);
/**
* Resets the current process's signal handler disposition and signal mask
* to default values. One should call this every time one forks a child process;
* non-default signal masks/handler dispositions can cause all kinds of weird quirks,
* like waitpid() malfunctioning on OS X.
*
* This function is async-signal safe.
*/
void resetSignalHandlersAndMask();
/**
* Close all file descriptors that are higher than <em>lastToKeepOpen</em>.
* This function is async-signal safe. But make sure there are no other
* threads running that might open file descriptors!
*/
void closeAllFileDescriptors(int lastToKeepOpen);
/**
* Represents a buffered upload file.
*
* @ingroup Support
*/
class BufferedUpload {
public:
/** The file handle. */
FILE *handle;
/**
* Create an empty upload bufer file, and open it for reading and writing.
*
* @throws SystemException Something went wrong.
*/
BufferedUpload(const string &dir, const char *identifier = "temp") {
char templ[PATH_MAX];
int fd;
snprintf(templ, sizeof(templ), "%s/%s.XXXXXX", dir.c_str(), identifier);
templ[sizeof(templ) - 1] = '\0';
fd = mkstemp(templ);
if (fd == -1) {
char message[1024];
int e = errno;
snprintf(message, sizeof(message), "Cannot create a temporary file '%s'", templ);
message[sizeof(message) - 1] = '\0';
throw SystemException(message, e);
}
/* We use a POSIX trick here: the file's permissions are set to "u=,g=,o="
* and the file is deleted immediately from the filesystem, while we
* keep its file handle open. The result is that no other processes
* will be able to access this file's contents anymore, except us.
* We now have an anonymous disk-backed buffer.
*/
fchmod(fd, 0000);
unlink(templ);
handle = fdopen(fd, "w+");
}
~BufferedUpload() {
fclose(handle);
}
};
} // namespace Passenger
#endif /* _PASSENGER_UTILS_H_ */
|