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 512 513 514 515 516 517 518 519
|
/*
* OXT - OS eXtensions for boosT
* Provides important functionality necessary for writing robust server software.
*
* Copyright (c) 2010 Phusion
*
* 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.
*/
#include "system_calls.hpp"
#include <boost/thread.hpp>
#include <cerrno>
using namespace boost;
using namespace oxt;
/*************************************
* oxt
*************************************/
static void
interruption_signal_handler(int sig) {
// Do nothing.
}
void
oxt::setup_syscall_interruption_support() {
struct sigaction action;
sigset_t signal_set;
int ret;
/* Very important! The signal mask is inherited across fork()
* and exec() and we don't know what the parent process did to
* us. At least on OS X, having a signal mask blocking important
* signals can lead to stuff like waitpid() malfunction.
*/
sigemptyset(&signal_set);
do {
ret = sigprocmask(SIG_SETMASK, &signal_set, NULL);
} while (ret == -1 && errno == EINTR);
action.sa_handler = interruption_signal_handler;
action.sa_flags = 0;
sigemptyset(&action.sa_mask);
do {
ret = sigaction(INTERRUPTION_SIGNAL, &action, NULL);
} while (ret == -1 && errno == EINTR);
do {
ret = siginterrupt(INTERRUPTION_SIGNAL, 1);
} while (ret == -1 && errno == EINTR);
}
/*************************************
* Passenger::syscalls
*************************************/
#define CHECK_INTERRUPTION(error_expression, code) \
do { \
int _my_errno; \
do { \
code; \
_my_errno = errno; \
} while ((error_expression) && _my_errno == EINTR \
&& !this_thread::syscalls_interruptable()); \
if ((error_expression) && _my_errno == EINTR && this_thread::syscalls_interruptable()) { \
throw thread_interrupted(); \
} \
errno = _my_errno; \
} while (false)
int
syscalls::open(const char *path, int oflag) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::open(path, oflag)
);
return ret;
}
int
syscalls::open(const char *path, int oflag, mode_t mode) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::open(path, oflag, mode)
);
return ret;
}
ssize_t
syscalls::read(int fd, void *buf, size_t count) {
ssize_t ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::read(fd, buf, count)
);
return ret;
}
ssize_t
syscalls::write(int fd, const void *buf, size_t count) {
ssize_t ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::write(fd, buf, count)
);
return ret;
}
ssize_t
syscalls::writev(int fd, const struct iovec *iov, int iovcnt) {
ssize_t ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::writev(fd, iov, iovcnt)
);
return ret;
}
int
syscalls::close(int fd) {
/* Apparently POSIX says that if close() returns EINTR the
* file descriptor will be left in an undefined state, so
* when coding for POSIX we can't just loop on EINTR or we
* could run into race conditions with other threads.
* http://www.daemonology.net/blog/2011-12-17-POSIX-close-is-broken.html
*
* On Linux, FreeBSD and OpenBSD, close() releases the file
* descriptor when it returns EINTR. HP-UX does not.
* http://news.ycombinator.com/item?id=3363884
*
* MacOS X is insane because although the system call does
* release the file descriptor, the close() function as
* implemented by libSystem may call pthread_testcancel() first
* which can also return EINTR. Whether this happens depends
* on whether unix2003 is enabled.
* http://www.reddit.com/r/programming/comments/ng6vt/posix_close2_is_broken/c38xrgu
*/
#if defined(_hpux)
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::close(fd)
);
return ret;
#else
/* TODO: If it's not known whether the OS releases the file
* descriptor on EINTR-on-close(), we should print some kind of
* warning here. This would actually explain why some people get
* mysterious EBADF errors. I think the best thing we can do is
* to manually whitelist operating systems as we find out their
* behaviors.
*/
int ret = ::close(fd);
if (ret == -1 && errno == EINTR && this_thread::syscalls_interruptable()) {
throw thread_interrupted();
} else {
return ret;
}
#endif
}
int
syscalls::pipe(int filedes[2]) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::pipe(filedes)
);
return ret;
}
int
syscalls::dup2(int filedes, int filedes2) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::dup2(filedes, filedes2)
);
return ret;
}
int
syscalls::accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::accept(sockfd, addr, addrlen)
);
return ret;
}
int
syscalls::bind(int sockfd, const struct sockaddr *addr, socklen_t addrlen) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::bind(sockfd, addr, addrlen)
);
return ret;
}
int
syscalls::connect(int sockfd, const struct sockaddr *serv_addr, socklen_t addrlen) {
int ret;
// FIXME: I don't think this is entirely correct.
// http://www.madore.org/~david/computers/connect-intr.html
CHECK_INTERRUPTION(
ret == -1,
ret = ::connect(sockfd, serv_addr, addrlen);
);
return ret;
}
int
syscalls::listen(int sockfd, int backlog) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::listen(sockfd, backlog)
);
return ret;
}
int
syscalls::socket(int domain, int type, int protocol) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::socket(domain, type, protocol)
);
return ret;
}
int
syscalls::socketpair(int d, int type, int protocol, int sv[2]) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::socketpair(d, type, protocol, sv)
);
return ret;
}
ssize_t
syscalls::recvmsg(int s, struct msghdr *msg, int flags) {
ssize_t ret;
#ifdef _AIX53
CHECK_INTERRUPTION(
ret == -1,
ret = ::nrecvmsg(s, msg, flags)
);
#else
CHECK_INTERRUPTION(
ret == -1,
ret = ::recvmsg(s, msg, flags)
);
#endif
return ret;
}
ssize_t
syscalls::sendmsg(int s, const struct msghdr *msg, int flags) {
ssize_t ret;
#ifdef _AIX53
CHECK_INTERRUPTION(
ret == -1,
ret = ::nsendmsg(s, msg, flags)
);
#else
CHECK_INTERRUPTION(
ret == -1,
ret = ::sendmsg(s, msg, flags)
);
#endif
return ret;
}
int
syscalls::setsockopt(int s, int level, int optname, const void *optval, socklen_t optlen) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::setsockopt(s, level, optname, optval, optlen)
);
return ret;
}
int
syscalls::shutdown(int s, int how) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::shutdown(s, how)
);
return ret;
}
int
syscalls::select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::select(nfds, readfds, writefds, errorfds, timeout)
);
return ret;
}
int
syscalls::poll(struct pollfd fds[], nfds_t nfds, int timeout) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::poll(fds, nfds, timeout)
);
return ret;
}
FILE *
syscalls::fopen(const char *path, const char *mode) {
FILE *ret;
CHECK_INTERRUPTION(
ret == NULL,
ret = ::fopen(path, mode)
);
return ret;
}
size_t
syscalls::fread(void *ptr, size_t size, size_t nitems, FILE *stream) {
int ret;
CHECK_INTERRUPTION(
ret == 0 && ferror(stream),
ret = ::fread(ptr, size, nitems, stream)
);
return ret;
}
int
syscalls::fclose(FILE *fp) {
int ret;
CHECK_INTERRUPTION(
ret == EOF,
ret = ::fclose(fp)
);
return ret;
}
int
syscalls::unlink(const char *pathname) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::unlink(pathname)
);
return ret;
}
int
syscalls::stat(const char *path, struct stat *buf) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::stat(path, buf)
);
return ret;
}
time_t
syscalls::time(time_t *t) {
time_t ret;
CHECK_INTERRUPTION(
ret == (time_t) -1,
ret = ::time(t)
);
return ret;
}
unsigned int
syscalls::sleep(unsigned int seconds) {
// We use syscalls::nanosleep() here not only to reuse interruption
// handling code, but also to avoid potentional infinite loops
// in combination with oxt::thread::interrupt_and_join().
// Upon interruption sleep() returns the number of seconds unslept
// but interrupt_and_join() keeps interrupting the thread every 10
// msec. Depending on the implementation of sleep(), it might return
// the same value as its original argument. A naive implementation
// of syscalls::sleep() that sleeps again with the return value
// could easily cause an infinite loop. nanosleep() has a large
// enough resolution so it won't trigger the problem.
struct timespec spec, rem;
int ret;
spec.tv_sec = seconds;
spec.tv_nsec = 0;
ret = syscalls::nanosleep(&spec, &rem);
if (ret == 0) {
return 0;
} else if (errno == EINTR) {
return rem.tv_sec;
} else {
// No sure what to do here. There's an error
// but we can't return -1. Let's just hope
// this never happens.
return 0;
}
}
int
syscalls::usleep(useconds_t usec) {
// We use syscalls::nanosleep() here to reuse the code that sleeps
// for the remaining amount of time, if a signal was received but
// system call interruption is disabled.
struct timespec spec;
spec.tv_sec = usec / 1000000;
spec.tv_nsec = usec % 1000000 * 1000;
return syscalls::nanosleep(&spec, NULL);
}
int
syscalls::nanosleep(const struct timespec *req, struct timespec *rem) {
struct timespec req2 = *req;
struct timespec rem2;
int ret, e;
do {
ret = ::nanosleep(&req2, &rem2);
e = errno;
// nanosleep() on some systems is sometimes buggy. rem2
// could end up containing a tv_sec with a value near 2^32-1,
// probably because of integer wrapping bugs in the kernel.
// So we check for those.
if (rem2.tv_sec < req->tv_sec) {
req2 = rem2;
} else {
req2.tv_sec = 0;
req2.tv_nsec = 0;
}
} while (ret == -1 && e == EINTR && !this_thread::syscalls_interruptable());
if (ret == -1 && e == EINTR && this_thread::syscalls_interruptable()) {
throw thread_interrupted();
}
errno = e;
if (ret == 0 && rem) {
*rem = rem2;
}
return ret;
}
pid_t
syscalls::fork() {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::fork()
);
return ret;
}
int
syscalls::kill(pid_t pid, int sig) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::kill(pid, sig)
);
return ret;
}
int
syscalls::killpg(pid_t pgrp, int sig) {
int ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::killpg(pgrp, sig)
);
return ret;
}
pid_t
syscalls::waitpid(pid_t pid, int *status, int options) {
pid_t ret;
CHECK_INTERRUPTION(
ret == -1,
ret = ::waitpid(pid, status, options)
);
return ret;
}
/*************************************
* boost::this_thread
*************************************/
thread_specific_ptr<bool> this_thread::_syscalls_interruptable;
bool
this_thread::syscalls_interruptable() {
return _syscalls_interruptable.get() == NULL || *_syscalls_interruptable;
}
|