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 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
|
/*
* Copyright (C) 2003,2004,2005,2006,2007,2008 Wolfgang Hommel
*
* This file is part of the FakeTime Preload Library, version 0.8.
*
* The FakeTime Preload Library is free software; you can redistribute it
* and/or modify it under the terms of the GNU General Public License v2 as
* published by the Free Software Foundation.
*
* The FakeTime Preload Library is distributed in the hope that it will
* be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License v2
* along with the FakeTime Preload Library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define _GNU_SOURCE /* required to get RTLD_NEXT defined */
#define _XOPEN_SOURCE /* required to get strptime() defined */
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
/* pthread-handling contributed by David North, TDI in version 0.7 */
#ifdef PTHREAD
#include <pthread.h>
static pthread_mutex_t once_mutex=PTHREAD_MUTEX_INITIALIZER;
#define SINGLE_IF_MTX(ifcondition,mtxaddr) \
if (ifcondition) { \
pthread_mutex_lock(mtxaddr); \
pthread_cleanup_push((void (*)(void *))pthread_mutex_unlock, (void *)mtxaddr); \
if (ifcondition) {
#define SINGLE_IF(ifcondition) SINGLE_IF_MTX(ifcondition,&once_mutex)
#define END_SINGLE_IF \
} \
pthread_cleanup_pop(1); \
}
#else
#define SINGLE_IF_MTX(ifcondition,mtxaddr) if (ifcondition) {
#define SINGLE_IF(ifcondition) if (ifcondition) {
#define END_SINGLE_IF }
#endif
#include <sys/timeb.h>
#include <dlfcn.h>
#define BUFFERLEN 256
/* prototypes */
time_t fake_time(time_t *time_tptr);
int fake_ftime(struct timeb *tp);
int fake_gettimeofday(struct timeval *tv, void *tz);
int fake_clock_gettime(clockid_t clk_id, struct timespec *tp);
/*
* Intercepted system calls:
* - time()
* - ftime()
* - gettimeofday()
* - clock_gettime()
*
* Since version 0.7, if FAKE_INTERNAL_CALLS is defined, also calls to
* __time(), __ftime(), __gettimeofday(), and __clock_gettime() will be
* intercepted.
*
* Thanks to a contribution by Philipp Hachtmann, the following
* system calls will also be time-adjusted depending on the compile
* switches used + any environmental variables present.
*
* - stat()
* - fstat()
* - lstat()
* - the 64-bit versions of those three
*
*/
#ifdef FAKE_STAT
#ifndef NO_ATFILE
#ifndef _ATFILE_SOURCE
#define _ATFILE_SOURCE
#endif
#include <fcntl.h> /* Definition of AT_* constants */
#endif
#include <sys/stat.h>
static int fake_stat_disabled = 0;
/* Contributed by Philipp Hachtmann in version 0.6 */
int __xstat (int ver, const char *path, struct stat *buf) {
static int (*real_stat) (int, const char *, struct stat *);
static int has_real_stat=0;
SINGLE_IF(has_real_stat==0)
real_stat = NULL;
real_stat = dlsym(RTLD_NEXT, "__xstat");
if (dlerror() == NULL) {
has_real_stat = 1;
}
END_SINGLE_IF
if (!has_real_stat) { /* dlsym() failed */
#ifdef DEBUG
(void) fprintf(stderr, "faketime problem: original stat() not found.\n");
#endif
return -1; /* propagate error to caller */
}
int result = real_stat(ver, path, buf);
if (result == -1) {
return -1;
}
if (buf != NULL) {
if (!fake_stat_disabled) {
buf->st_ctime = fake_time(&(buf->st_ctime));
buf->st_atime = fake_time(&(buf->st_atime));
buf->st_mtime = fake_time(&(buf->st_mtime));
}
}
return result;
}
/* Contributed by Philipp Hachtmann in version 0.6 */
int __fxstat (int ver, int fildes, struct stat *buf) {
static int (*real_fstat) (int, int, struct stat *);
static int has_real_fstat=0;
SINGLE_IF(has_real_fstat==0)
real_fstat = NULL;
real_fstat = dlsym(RTLD_NEXT, "__fxstat");
if (dlerror() == NULL) {
has_real_fstat = 1;
}
END_SINGLE_IF
if (!has_real_fstat) { /* dlsym() failed */
#ifdef DEBUG
(void) fprintf(stderr, "faketime problem: original fstat() not found.\n");
#endif
return -1; /* propagate error to caller */
}
int result = real_fstat(ver, fildes, buf);
if (result == -1) {
return -1;
}
if (buf != NULL) {
if (!fake_stat_disabled) {
buf->st_ctime = fake_time(&(buf->st_ctime));
buf->st_atime = fake_time(&(buf->st_atime));
buf->st_mtime = fake_time(&(buf->st_mtime));
}
}
return result;
}
/* Added in v0.8 as suggested by Daniel Kahn Gillmor */
#ifndef NO_ATFILE
int __fxstatat(int ver, int fildes, const char *filename, struct stat *buf, int flag) {
static int (*real_fstatat) (int, int, const char *, struct stat *, int);
static int has_real_fstatat=0;
SINGLE_IF(has_real_fstatat==0)
real_fstatat = NULL;
real_fstatat = dlsym(RTLD_NEXT, "__fxstatat");
if (dlerror() == NULL) {
has_real_fstatat = 1;
}
END_SINGLE_IF
if (!has_real_fstatat) { /* dlsym() failed */
#ifdef DEBUG
(void) fprintf(stderr, "faketime problem: original fstatat() not found.\n");
#endif
return -1; /* propagate error to caller */
}
int result = real_fstatat(ver, fildes, filename, buf, flag);
if (result == -1) {
return -1;
}
if (buf != NULL) {
if (!fake_stat_disabled) {
buf->st_ctime = fake_time(&(buf->st_ctime));
buf->st_atime = fake_time(&(buf->st_atime));
buf->st_mtime = fake_time(&(buf->st_mtime));
}
}
return result;
}
#endif
/* Contributed by Philipp Hachtmann in version 0.6 */
int __lxstat (int ver, const char *path, struct stat *buf) {
static int (*real_lstat)(int, const char *, struct stat *);
static int has_real_lstat=0;
SINGLE_IF(has_real_lstat==0)
real_lstat = NULL;
real_lstat = dlsym(RTLD_NEXT, "__lxstat");
if (dlerror() == NULL) {
has_real_lstat = 1;
}
END_SINGLE_IF
if (!has_real_lstat) { /* dlsym() failed */
#ifdef DEBUG
(void) fprintf(stderr, "faketime problem: original lstat() not found.\n");
#endif
return -1; /* propagate error to caller */
}
int result = real_lstat(ver, path, buf);
if (result == -1) {
return -1;
}
if (buf != NULL) {
if (!fake_stat_disabled) {
buf->st_ctime = fake_time(&(buf->st_ctime));
buf->st_atime = fake_time(&(buf->st_atime));
buf->st_mtime = fake_time(&(buf->st_mtime));
}
}
return result;
}
/* Contributed by Philipp Hachtmann in version 0.6 */
int __xstat64 (int ver, const char *path, struct stat64 *buf) {
static int (*real_stat) (int, const char *, struct stat64 *);
static int has_real_stat = 0;
SINGLE_IF(has_real_stat==0)
real_stat = NULL;
real_stat = dlsym(RTLD_NEXT,"__xstat64");
if (dlerror() == NULL) {
has_real_stat = 1;
}
END_SINGLE_IF
if (!has_real_stat) { /* dlsym() failed */
#ifdef DEBUG
(void) fprintf(stderr, "faketime problem: original stat() not found.\n");
#endif
return -1; /* propagate error to caller */
}
int result=real_stat(ver, path, buf);
if (result == -1) {
return -1;
}
if (buf != NULL){
if (!fake_stat_disabled) {
buf->st_ctime = fake_time(&(buf->st_ctime));
buf->st_atime = fake_time(&(buf->st_atime));
buf->st_mtime = fake_time(&(buf->st_mtime));
}
}
return result;
}
/* Contributed by Philipp Hachtmann in version 0.6 */
int __fxstat64 (int ver, int fildes, struct stat64 *buf) {
static int (*real_fstat)(int, int , struct stat64 *);
static int has_real_fstat=0;
SINGLE_IF(has_real_fstat==0)
real_fstat = NULL;
real_fstat = dlsym(RTLD_NEXT, "__fxstat64");
if (dlerror() == NULL) {
has_real_fstat = 1;
}
END_SINGLE_IF
if (!has_real_fstat) { /* dlsym() failed */
#ifdef DEBUG
(void) fprintf(stderr, "faketime problem: original fstat() not found.\n");
#endif
return -1; /* propagate error to caller */
}
int result = real_fstat(ver, fildes, buf);
if (result == -1){
return -1;
}
if (buf != NULL){
if (!fake_stat_disabled) {
buf->st_ctime = fake_time(&(buf->st_ctime));
buf->st_atime = fake_time(&(buf->st_atime));
buf->st_mtime = fake_time(&(buf->st_mtime));
}
}
return result;
}
/* Added in v0.8 as suggested by Daniel Kahn Gillmor */
#ifndef NO_ATFILE
int __fxstatat64 (int ver, int fildes, const char *filename, struct stat64 *buf, int flag) {
static int (*real_fstatat64)(int, int , const char *, struct stat64 *, int);
static int has_real_fstatat64=0;
SINGLE_IF(has_real_fstatat64==0)
real_fstatat64 = NULL;
real_fstatat64 = dlsym(RTLD_NEXT, "__fxstatat64");
if (dlerror() == NULL) {
has_real_fstatat64 = 1;
}
END_SINGLE_IF
if (!has_real_fstatat64) { /* dlsym() failed */
#ifdef DEBUG
(void) fprintf(stderr, "faketime problem: original fstatat64() not found.\n");
#endif
return -1; /* propagate error to caller */
}
int result = real_fstatat64(ver, fildes, filename, buf, flag);
if (result == -1){
return -1;
}
if (buf != NULL){
if (!fake_stat_disabled) {
buf->st_ctime = fake_time(&(buf->st_ctime));
buf->st_atime = fake_time(&(buf->st_atime));
buf->st_mtime = fake_time(&(buf->st_mtime));
}
}
return result;
}
#endif
/* Contributed by Philipp Hachtmann in version 0.6 */
int __lxstat64 (int ver, const char *path, struct stat64 *buf){
static int (*real_lstat) (int, const char *, struct stat64 *);
static int has_real_lstat = 0;
SINGLE_IF(has_real_lstat==0)
real_lstat = NULL;
real_lstat = dlsym(RTLD_NEXT, "__lxstat64");
if (dlerror() == NULL) {
has_real_lstat = 1;
}
END_SINGLE_IF
if (!has_real_lstat) { /* dlsym() failed */
#ifdef DEBUG
(void) fprintf(stderr, "faketime problem: original lstat() not found.\n");
#endif
return -1; /* propagate error to caller */
}
int result = real_lstat(ver, path, buf);
if (result == -1){
return -1;
}
if (buf != NULL){
if (!fake_stat_disabled) {
buf->st_ctime = fake_time(&(buf->st_ctime));
buf->st_atime = fake_time(&(buf->st_atime));
buf->st_mtime = fake_time(&(buf->st_mtime));
}
}
return result;
}
#endif
/*
* Our version of time() allows us to return fake values, so the calling
* program thinks it's retrieving the current date and time, while it is
* not
* Note that this routine is split into two parts so that the initialization
* piece can call the 'real' time function to establish a base time.
*/
static time_t _ftpl_time(time_t *time_tptr) {
static time_t (*real_time)(time_t *);
static int has_real_time = 0;
time_t result;
time_t null_dummy;
/* Handle null pointers correctly, fix as suggested by Andres Ojamaa */
if (time_tptr == NULL) {
time_tptr = &null_dummy;
/* (void) fprintf(stderr, "NULL pointer caught in time().\n"); */
}
/* Check whether we've got a pointer to the real time function yet */
SINGLE_IF(has_real_time==0)
real_time = NULL;
real_time = dlsym(RTLD_NEXT, "time");
/* check whether dlsym() worked */
if (dlerror() == NULL) {
has_real_time = 1;
}
END_SINGLE_IF
if (!has_real_time) { /* dlsym() failed */
#ifdef DEBUG
(void) fprintf(stderr, "faketime problem: original time() not found.\n");
#endif
if (time_tptr != NULL)
*time_tptr = -1;
return -1; /* propagate error to caller */
}
/* initialize our result with the real current time */
result = (*real_time)(time_tptr);
return result;
}
time_t time(time_t *time_tptr) {
time_t result;
time_t null_dummy;
if (time_tptr == NULL) {
time_tptr = &null_dummy;
/* (void) fprintf(stderr, "NULL pointer caught in time().\n"); */
}
result = _ftpl_time(time_tptr);
if (result == ((time_t) -1)) return result;
/* pass the real current time to our faking version, overwriting it */
result = fake_time(time_tptr);
/* return the result to the caller */
return result;
}
int ftime(struct timeb *tp) {
static int (*real_ftime)(struct timeb *);
static int has_real_ftime = 0;
int result;
/* sanity check */
if (tp == NULL)
return 0; /* ftime() always returns 0, see manpage */
/* Check whether we've got a pointer to the real ftime() function yet */
SINGLE_IF(has_real_ftime==0)
real_ftime = NULL;
real_ftime = dlsym(RTLD_NEXT, "ftime");
/* check whether dlsym() worked */
if (dlerror() == NULL) {
has_real_ftime = 1;
}
END_SINGLE_IF
if (!has_real_ftime) { /* dlsym() failed */
#ifdef DEBUG
(void) fprintf(stderr, "faketime problem: original ftime() not found.\n");
#endif
tp = NULL;
return 0; /* propagate error to caller */
}
/* initialize our result with the real current time */
result = (*real_ftime)(tp);
/* pass the real current ftime to our faking version, overwriting it */
result = fake_ftime(tp);
/* return the result to the caller */
return result; /* will always be 0 (see manpage) */
}
int gettimeofday(struct timeval *tv, void *tz) {
static int (*real_gettimeofday)(struct timeval *, void *);
static int has_real_gettimeofday = 0;
int result;
/* sanity check */
if (tv == NULL) {
return -1;
}
/* Check whether we've got a pointer to the real ftime() function yet */
SINGLE_IF(has_real_gettimeofday==0)
real_gettimeofday = NULL;
real_gettimeofday = dlsym(RTLD_NEXT, "gettimeofday");
/* check whether dlsym() worked */
if (dlerror() == NULL) {
has_real_gettimeofday = 1;
}
END_SINGLE_IF
if (!has_real_gettimeofday) { /* dlsym() failed */
#ifdef DEBUG
(void) fprintf(stderr, "faketime problem: original gettimeofday() not found.\n");
#endif
return -1; /* propagate error to caller */
}
/* initialize our result with the real current time */
result = (*real_gettimeofday)(tv, tz);
if (result == -1) return result; /* original function failed */
/* pass the real current time to our faking version, overwriting it */
result = fake_gettimeofday(tv, tz);
/* return the result to the caller */
return result;
}
int clock_gettime(clockid_t clk_id, struct timespec *tp) {
static int (*real_clock_gettime)(clockid_t clk_id, struct timespec *tp);
static int has_real_clock_gettime = 0;
int result;
/* sanity check */
if (tp == NULL) {
return -1;
}
/* Check whether we've got a pointer to the real clock_gettime() function yet */
SINGLE_IF(has_real_clock_gettime==0)
real_clock_gettime = NULL;
real_clock_gettime = dlsym(RTLD_NEXT, "clock_gettime");
/* check whether dlsym() worked */
if (dlerror() == NULL) {
has_real_clock_gettime = 1;
}
END_SINGLE_IF
if (!has_real_clock_gettime) { /* dlsym() failed */
#ifdef DEBUG
(void) fprintf(stderr, "faketime problem: original clock_gettime() not found.\n");
#endif
return -1; /* propagate error to caller */
}
/* initialize our result with the real current time */
result = (*real_clock_gettime)(clk_id, tp);
if (result == -1) return result; /* original function failed */
/* pass the real current time to our faking version, overwriting it */
result = fake_clock_gettime(clk_id, tp);
/* return the result to the caller */
return result;
}
/*
* Static time_t to store our startup time, followed by a load-time library
* initialization declaration.
*/
static time_t ftpl_starttime = 0;
void __attribute__ ((constructor)) ftpl_init(void)
{
time_t temp_tt;
#ifdef FAKE_STAT
if (getenv("NO_FAKE_STAT")!=NULL) {
fake_stat_disabled = 1; //Note that this is NOT re-checked
}
#endif
ftpl_starttime = _ftpl_time(&temp_tt);
}
time_t fake_time(time_t *time_tptr) {
static char user_faked_time[BUFFERLEN]; /* changed to static for caching in v0.6 */
struct tm user_faked_time_tm;
time_t user_faked_time_time_t;
long user_offset;
double frac_user_offset;
char filename[BUFSIZ], line[BUFFERLEN];
FILE *faketimerc;
static const char *user_faked_time_fmt = NULL;
/* variables used for caching, introduced in version 0.6 */
static time_t last_data_fetch = 0; /* not fetched previously at first call */
static int cache_expired = 1; /* considered expired at first call */
static int cache_duration = 10; /* cache fake time input for 10 seconds */
#ifdef PTHREAD_SINGLETHREADED_TIME
static pthread_mutex_t time_mutex=PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_lock(&time_mutex);
pthread_cleanup_push((void (*)(void *))pthread_mutex_unlock, (void *)&time_mutex);
#endif
/* Sanity check by Karl Chan since v0.8 */
if (time_tptr == NULL) return -1;
if (last_data_fetch > 0) {
if ((*time_tptr - last_data_fetch) > cache_duration) {
cache_expired = 1;
}
else {
cache_expired = 0;
}
}
#ifdef NO_CACHING
cache_expired = 1;
#endif
if (cache_expired == 1) {
last_data_fetch = *time_tptr;
/* Can be enabled for testing ...
fprintf(stderr, "***************++ Cache expired ++**************\n");
*/
/* initialize with default */
snprintf(user_faked_time, BUFFERLEN, "+0");
/* fake time supplied as environment variable? */
if (getenv("FAKETIME") != NULL) {
(void) strncpy(user_faked_time, getenv("FAKETIME"), BUFFERLEN-2);
user_faked_time[BUFFERLEN-1] = 0;
}
else {
/* check whether there's a .faketimerc in the user's home directory, or
* a system-wide /etc/faketimerc present.
* The /etc/faketimerc handling has been contributed by David Burley,
* Jacob Moorman, and Wayne Davison of SourceForge, Inc. in version 0.6 */
(void) snprintf(filename, BUFSIZ, "%s/.faketimerc", getenv("HOME"));
if ((faketimerc = fopen(filename, "rt")) != NULL ||
(faketimerc = fopen("/etc/faketimerc", "rt")) != NULL) {
while(fgets(line, BUFFERLEN, faketimerc) != NULL) {
if ((strlen(line) > 1) && (line[0] != ' ') &&
(line[0] != '#') && (line[0] != ';')) {
while((line[strlen(line)-1] == 13) ||
(line[strlen(line)-1] == 10))
line[strlen(line)-1] = 0;
strncpy(user_faked_time, line, BUFFERLEN-1);
user_faked_time[BUFFERLEN-1] = 0;
break;
}
}
fclose(faketimerc);
}
} /* read fake time from file */
user_faked_time_fmt = getenv("FAKETIME_FMT");
if (user_faked_time_fmt == NULL)
user_faked_time_fmt = "%Y-%m-%d %T";
} /* cache had expired */
/* check whether the user gave us an absolute time to fake */
switch (user_faked_time[0]) {
default: /* Try and interpret this as a specified time */
user_faked_time_tm.tm_isdst = -1;
(void) strptime(user_faked_time, user_faked_time_fmt, &user_faked_time_tm);
user_faked_time_time_t = mktime(&user_faked_time_tm);
if (user_faked_time_time_t != -1) {
if (time_tptr != NULL) /* sanity check */
*time_tptr = user_faked_time_time_t;
}
break;
case '+':
case '-': /* User-specified offset */
/* fractional time offsets contributed by Karl Chen in v0.8 */
frac_user_offset = atof(user_faked_time);
/* offset is in seconds by default, but the string may contain
* multipliers...
*/
if (strchr(user_faked_time, 'm') != NULL) frac_user_offset *= 60;
else if (strchr(user_faked_time, 'h') != NULL) frac_user_offset *= 60 * 60;
else if (strchr(user_faked_time, 'd') != NULL) frac_user_offset *= 60 * 60 * 24;
else if (strchr(user_faked_time, 'y') != NULL) frac_user_offset *= 60 * 60 * 24 * 365;
/* Speed-up / slow-down contributed by Karl Chen in v0.8 */
if (strchr(user_faked_time, 'x') != NULL) {
const double rate = atof(strchr(user_faked_time, 'x')+1);
const long tdiff = (long long) *time_tptr - (long long)ftpl_starttime;
const double timeadj = tdiff * (rate - 1.0);
*time_tptr += (long) timeadj;
}
*time_tptr += (long) frac_user_offset;
break;
/* Contributed by David North, TDI in version 0.7 */
case '@': /* Specific time, but clock along relative to that starttime */
user_faked_time_tm.tm_isdst = -1;
(void) strptime(&user_faked_time[1], user_faked_time_fmt, &user_faked_time_tm);
user_faked_time_time_t = mktime(&user_faked_time_tm);
if (user_faked_time_time_t != -1) {
user_offset = - ( (long long int)ftpl_starttime - (long long int)user_faked_time_time_t );
/* Speed-up / slow-down contributed by Karl Chen in v0.8 */
if (strchr(user_faked_time, 'x') != NULL) {
const double rate = atof(strchr(user_faked_time, 'x')+1);
const long tdiff = (long long) *time_tptr - (long long)ftpl_starttime;
const double timeadj = tdiff * (rate - 1.0);
*time_tptr += (long) timeadj;
}
*time_tptr += user_offset;
}
break;
}
#ifdef PTHREAD_SINGLETHREADED_TIME
pthread_cleanup_pop(1);
#endif
/* pass the possibly modified time back to caller */
return *time_tptr;
}
int fake_ftime(struct timeb *tp) {
time_t temp_tt;
tp->time = time(&temp_tt);
return 0; /* always returns 0, see manpage */
}
int fake_gettimeofday(struct timeval *tv, void *tz) {
time_t temp_tt;
tv->tv_sec = time(&temp_tt);
return 0;
}
int fake_clock_gettime(clockid_t clk_id, struct timespec *tp) {
time_t temp_tt;
/* Fake only if the call is realtime clock related */
if (clk_id == CLOCK_REALTIME) {
tp->tv_sec = time(&temp_tt);
}
return 0;
}
/* Added in v0.7 as suggested by Jamie Cameron, Google */
#ifdef FAKE_INTERNAL_CALLS
int __gettimeofday(struct timeval *tv, void *tz) {
return gettimeofday(tv, tz);
}
int __clock_gettime(clockid_t clk_id, struct timespec *tp) {
return clock_gettime(clk_id, tp);
}
int __ftime(struct timeb *tp) {
return ftime(tp);
}
time_t __time(time_t *time_tptr) {
return time(time_tptr);
}
#endif
|