1 /*===- InstrProfilingFile.c - Write instrumentation to a file -------------===*\ 2 |* 3 |* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 |* See https://llvm.org/LICENSE.txt for license information. 5 |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 |* 7 \*===----------------------------------------------------------------------===*/ 8 9 #if !defined(__Fuchsia__) 10 11 #include <errno.h> 12 #include <stdio.h> 13 #include <stdlib.h> 14 #include <string.h> 15 #ifdef _MSC_VER 16 /* For _alloca. */ 17 #include <malloc.h> 18 #endif 19 #if defined(_WIN32) 20 #include "WindowsMMap.h" 21 /* For _chsize_s */ 22 #include <io.h> 23 #include <process.h> 24 #else 25 #include <sys/file.h> 26 #include <sys/mman.h> 27 #include <unistd.h> 28 #if defined(__linux__) 29 #include <sys/types.h> 30 #endif 31 #endif 32 33 #include "InstrProfiling.h" 34 #include "InstrProfilingInternal.h" 35 #include "InstrProfilingPort.h" 36 #include "InstrProfilingUtil.h" 37 38 /* From where is profile name specified. 39 * The order the enumerators define their 40 * precedence. Re-order them may lead to 41 * runtime behavior change. */ 42 typedef enum ProfileNameSpecifier { 43 PNS_unknown = 0, 44 PNS_default, 45 PNS_command_line, 46 PNS_environment, 47 PNS_runtime_api 48 } ProfileNameSpecifier; 49 50 static const char *getPNSStr(ProfileNameSpecifier PNS) { 51 switch (PNS) { 52 case PNS_default: 53 return "default setting"; 54 case PNS_command_line: 55 return "command line"; 56 case PNS_environment: 57 return "environment variable"; 58 case PNS_runtime_api: 59 return "runtime API"; 60 default: 61 return "Unknown"; 62 } 63 } 64 65 #define MAX_PID_SIZE 16 66 /* Data structure holding the result of parsed filename pattern. */ 67 typedef struct lprofFilename { 68 /* File name string possibly with %p or %h specifiers. */ 69 const char *FilenamePat; 70 /* A flag indicating if FilenamePat's memory is allocated 71 * by runtime. */ 72 unsigned OwnsFilenamePat; 73 const char *ProfilePathPrefix; 74 char PidChars[MAX_PID_SIZE]; 75 char Hostname[COMPILER_RT_MAX_HOSTLEN]; 76 unsigned NumPids; 77 unsigned NumHosts; 78 /* When in-process merging is enabled, this parameter specifies 79 * the total number of profile data files shared by all the processes 80 * spawned from the same binary. By default the value is 1. If merging 81 * is not enabled, its value should be 0. This parameter is specified 82 * by the %[0-9]m specifier. For instance %2m enables merging using 83 * 2 profile data files. %1m is equivalent to %m. Also %m specifier 84 * can only appear once at the end of the name pattern. */ 85 unsigned MergePoolSize; 86 ProfileNameSpecifier PNS; 87 } lprofFilename; 88 89 static lprofFilename lprofCurFilename = {0, 0, 0, {0}, {0}, 90 0, 0, 0, PNS_unknown}; 91 92 static int ProfileMergeRequested = 0; 93 static int isProfileMergeRequested() { return ProfileMergeRequested; } 94 static void setProfileMergeRequested(int EnableMerge) { 95 ProfileMergeRequested = EnableMerge; 96 } 97 98 static FILE *ProfileFile = NULL; 99 static FILE *getProfileFile() { return ProfileFile; } 100 static void setProfileFile(FILE *File) { ProfileFile = File; } 101 102 COMPILER_RT_VISIBILITY void __llvm_profile_set_file_object(FILE *File, 103 int EnableMerge) { 104 if (__llvm_profile_is_continuous_mode_enabled()) { 105 PROF_WARN("__llvm_profile_set_file_object(fd=%d) not supported, because " 106 "continuous sync mode (%%c) is enabled", 107 fileno(File)); 108 return; 109 } 110 setProfileFile(File); 111 setProfileMergeRequested(EnableMerge); 112 } 113 114 static int getCurFilenameLength(); 115 static const char *getCurFilename(char *FilenameBuf, int ForceUseBuf); 116 static unsigned doMerging() { 117 return lprofCurFilename.MergePoolSize || isProfileMergeRequested(); 118 } 119 120 /* Return 1 if there is an error, otherwise return 0. */ 121 static uint32_t fileWriter(ProfDataWriter *This, ProfDataIOVec *IOVecs, 122 uint32_t NumIOVecs) { 123 uint32_t I; 124 FILE *File = (FILE *)This->WriterCtx; 125 char Zeroes[sizeof(uint64_t)] = {0}; 126 for (I = 0; I < NumIOVecs; I++) { 127 if (IOVecs[I].Data) { 128 if (fwrite(IOVecs[I].Data, IOVecs[I].ElmSize, IOVecs[I].NumElm, File) != 129 IOVecs[I].NumElm) 130 return 1; 131 } else if (IOVecs[I].UseZeroPadding) { 132 size_t BytesToWrite = IOVecs[I].ElmSize * IOVecs[I].NumElm; 133 while (BytesToWrite > 0) { 134 size_t PartialWriteLen = 135 (sizeof(uint64_t) > BytesToWrite) ? BytesToWrite : sizeof(uint64_t); 136 if (fwrite(Zeroes, sizeof(uint8_t), PartialWriteLen, File) != 137 PartialWriteLen) { 138 return 1; 139 } 140 BytesToWrite -= PartialWriteLen; 141 } 142 } else { 143 if (fseek(File, IOVecs[I].ElmSize * IOVecs[I].NumElm, SEEK_CUR) == -1) 144 return 1; 145 } 146 } 147 return 0; 148 } 149 150 /* TODO: make buffer size controllable by an internal option, and compiler can pass the size 151 to runtime via a variable. */ 152 static uint32_t orderFileWriter(FILE *File, const uint32_t *DataStart) { 153 if (fwrite(DataStart, sizeof(uint32_t), INSTR_ORDER_FILE_BUFFER_SIZE, File) != 154 INSTR_ORDER_FILE_BUFFER_SIZE) 155 return 1; 156 return 0; 157 } 158 159 static void initFileWriter(ProfDataWriter *This, FILE *File) { 160 This->Write = fileWriter; 161 This->WriterCtx = File; 162 } 163 164 COMPILER_RT_VISIBILITY ProfBufferIO * 165 lprofCreateBufferIOInternal(void *File, uint32_t BufferSz) { 166 FreeHook = &free; 167 DynamicBufferIOBuffer = (uint8_t *)calloc(BufferSz, 1); 168 VPBufferSize = BufferSz; 169 ProfDataWriter *fileWriter = 170 (ProfDataWriter *)calloc(sizeof(ProfDataWriter), 1); 171 initFileWriter(fileWriter, File); 172 ProfBufferIO *IO = lprofCreateBufferIO(fileWriter); 173 IO->OwnFileWriter = 1; 174 return IO; 175 } 176 177 static void setupIOBuffer() { 178 const char *BufferSzStr = 0; 179 BufferSzStr = getenv("LLVM_VP_BUFFER_SIZE"); 180 if (BufferSzStr && BufferSzStr[0]) { 181 VPBufferSize = atoi(BufferSzStr); 182 DynamicBufferIOBuffer = (uint8_t *)calloc(VPBufferSize, 1); 183 } 184 } 185 186 /* Get the size of the profile file. If there are any errors, print the 187 * message under the assumption that the profile is being read for merging 188 * purposes, and return -1. Otherwise return the file size in the inout param 189 * \p ProfileFileSize. */ 190 static int getProfileFileSizeForMerging(FILE *ProfileFile, 191 uint64_t *ProfileFileSize) { 192 if (fseek(ProfileFile, 0L, SEEK_END) == -1) { 193 PROF_ERR("Unable to merge profile data, unable to get size: %s\n", 194 strerror(errno)); 195 return -1; 196 } 197 *ProfileFileSize = ftell(ProfileFile); 198 199 /* Restore file offset. */ 200 if (fseek(ProfileFile, 0L, SEEK_SET) == -1) { 201 PROF_ERR("Unable to merge profile data, unable to rewind: %s\n", 202 strerror(errno)); 203 return -1; 204 } 205 206 if (*ProfileFileSize > 0 && 207 *ProfileFileSize < sizeof(__llvm_profile_header)) { 208 PROF_WARN("Unable to merge profile data: %s\n", 209 "source profile file is too small."); 210 return -1; 211 } 212 return 0; 213 } 214 215 /* mmap() \p ProfileFile for profile merging purposes, assuming that an 216 * exclusive lock is held on the file and that \p ProfileFileSize is the 217 * length of the file. Return the mmap'd buffer in the inout variable 218 * \p ProfileBuffer. Returns -1 on failure. On success, the caller is 219 * responsible for unmapping the mmap'd buffer in \p ProfileBuffer. */ 220 static int mmapProfileForMerging(FILE *ProfileFile, uint64_t ProfileFileSize, 221 char **ProfileBuffer) { 222 *ProfileBuffer = mmap(NULL, ProfileFileSize, PROT_READ, MAP_SHARED | MAP_FILE, 223 fileno(ProfileFile), 0); 224 if (*ProfileBuffer == MAP_FAILED) { 225 PROF_ERR("Unable to merge profile data, mmap failed: %s\n", 226 strerror(errno)); 227 return -1; 228 } 229 230 if (__llvm_profile_check_compatibility(*ProfileBuffer, ProfileFileSize)) { 231 (void)munmap(*ProfileBuffer, ProfileFileSize); 232 PROF_WARN("Unable to merge profile data: %s\n", 233 "source profile file is not compatible."); 234 return -1; 235 } 236 return 0; 237 } 238 239 /* Read profile data in \c ProfileFile and merge with in-memory 240 profile counters. Returns -1 if there is fatal error, otheriwse 241 0 is returned. Returning 0 does not mean merge is actually 242 performed. If merge is actually done, *MergeDone is set to 1. 243 */ 244 static int doProfileMerging(FILE *ProfileFile, int *MergeDone) { 245 uint64_t ProfileFileSize; 246 char *ProfileBuffer; 247 248 /* Get the size of the profile on disk. */ 249 if (getProfileFileSizeForMerging(ProfileFile, &ProfileFileSize) == -1) 250 return -1; 251 252 /* Nothing to merge. */ 253 if (!ProfileFileSize) 254 return 0; 255 256 /* mmap() the profile and check that it is compatible with the data in 257 * the current image. */ 258 if (mmapProfileForMerging(ProfileFile, ProfileFileSize, &ProfileBuffer) == -1) 259 return -1; 260 261 /* Now start merging */ 262 __llvm_profile_merge_from_buffer(ProfileBuffer, ProfileFileSize); 263 264 // Truncate the file in case merging of value profile did not happend to 265 // prevent from leaving garbage data at the end of the profile file. 266 COMPILER_RT_FTRUNCATE(ProfileFile, __llvm_profile_get_size_for_buffer()); 267 268 (void)munmap(ProfileBuffer, ProfileFileSize); 269 *MergeDone = 1; 270 271 return 0; 272 } 273 274 /* Create the directory holding the file, if needed. */ 275 static void createProfileDir(const char *Filename) { 276 size_t Length = strlen(Filename); 277 if (lprofFindFirstDirSeparator(Filename)) { 278 char *Copy = (char *)COMPILER_RT_ALLOCA(Length + 1); 279 strncpy(Copy, Filename, Length + 1); 280 __llvm_profile_recursive_mkdir(Copy); 281 } 282 } 283 284 /* Open the profile data for merging. It opens the file in r+b mode with 285 * file locking. If the file has content which is compatible with the 286 * current process, it also reads in the profile data in the file and merge 287 * it with in-memory counters. After the profile data is merged in memory, 288 * the original profile data is truncated and gets ready for the profile 289 * dumper. With profile merging enabled, each executable as well as any of 290 * its instrumented shared libraries dump profile data into their own data file. 291 */ 292 static FILE *openFileForMerging(const char *ProfileFileName, int *MergeDone) { 293 FILE *ProfileFile = NULL; 294 int rc; 295 296 ProfileFile = getProfileFile(); 297 if (ProfileFile) { 298 lprofLockFileHandle(ProfileFile); 299 } else { 300 createProfileDir(ProfileFileName); 301 ProfileFile = lprofOpenFileEx(ProfileFileName); 302 } 303 if (!ProfileFile) 304 return NULL; 305 306 rc = doProfileMerging(ProfileFile, MergeDone); 307 if (rc || (!*MergeDone && COMPILER_RT_FTRUNCATE(ProfileFile, 0L)) || 308 fseek(ProfileFile, 0L, SEEK_SET) == -1) { 309 PROF_ERR("Profile Merging of file %s failed: %s\n", ProfileFileName, 310 strerror(errno)); 311 fclose(ProfileFile); 312 return NULL; 313 } 314 return ProfileFile; 315 } 316 317 static FILE *getFileObject(const char *OutputName) { 318 FILE *File; 319 File = getProfileFile(); 320 if (File != NULL) { 321 return File; 322 } 323 324 return fopen(OutputName, "ab"); 325 } 326 327 /* Write profile data to file \c OutputName. */ 328 static int writeFile(const char *OutputName) { 329 int RetVal; 330 FILE *OutputFile; 331 332 int MergeDone = 0; 333 VPMergeHook = &lprofMergeValueProfData; 334 if (doMerging()) 335 OutputFile = openFileForMerging(OutputName, &MergeDone); 336 else 337 OutputFile = getFileObject(OutputName); 338 339 if (!OutputFile) 340 return -1; 341 342 FreeHook = &free; 343 setupIOBuffer(); 344 ProfDataWriter fileWriter; 345 initFileWriter(&fileWriter, OutputFile); 346 RetVal = lprofWriteData(&fileWriter, lprofGetVPDataReader(), MergeDone); 347 348 if (OutputFile == getProfileFile()) { 349 fflush(OutputFile); 350 if (doMerging()) { 351 lprofUnlockFileHandle(OutputFile); 352 } 353 } else { 354 fclose(OutputFile); 355 } 356 357 return RetVal; 358 } 359 360 /* Write order data to file \c OutputName. */ 361 static int writeOrderFile(const char *OutputName) { 362 int RetVal; 363 FILE *OutputFile; 364 365 OutputFile = fopen(OutputName, "w"); 366 367 if (!OutputFile) { 368 PROF_WARN("can't open file with mode ab: %s\n", OutputName); 369 return -1; 370 } 371 372 FreeHook = &free; 373 setupIOBuffer(); 374 const uint32_t *DataBegin = __llvm_profile_begin_orderfile(); 375 RetVal = orderFileWriter(OutputFile, DataBegin); 376 377 fclose(OutputFile); 378 return RetVal; 379 } 380 381 #define LPROF_INIT_ONCE_ENV "__LLVM_PROFILE_RT_INIT_ONCE" 382 383 static void truncateCurrentFile(void) { 384 const char *Filename; 385 char *FilenameBuf; 386 FILE *File; 387 int Length; 388 389 Length = getCurFilenameLength(); 390 FilenameBuf = (char *)COMPILER_RT_ALLOCA(Length + 1); 391 Filename = getCurFilename(FilenameBuf, 0); 392 if (!Filename) 393 return; 394 395 /* Only create the profile directory and truncate an existing profile once. 396 * In continuous mode, this is necessary, as the profile is written-to by the 397 * runtime initializer. */ 398 int initialized = getenv(LPROF_INIT_ONCE_ENV) != NULL; 399 if (initialized) 400 return; 401 #if defined(_WIN32) 402 _putenv(LPROF_INIT_ONCE_ENV "=" LPROF_INIT_ONCE_ENV); 403 #else 404 setenv(LPROF_INIT_ONCE_ENV, LPROF_INIT_ONCE_ENV, 1); 405 #endif 406 407 /* Create the profile dir (even if online merging is enabled), so that 408 * the profile file can be set up if continuous mode is enabled. */ 409 createProfileDir(Filename); 410 411 /* By pass file truncation to allow online raw profile merging. */ 412 if (lprofCurFilename.MergePoolSize) 413 return; 414 415 /* Truncate the file. Later we'll reopen and append. */ 416 File = fopen(Filename, "w"); 417 if (!File) 418 return; 419 fclose(File); 420 } 421 422 #ifndef _MSC_VER 423 static void assertIsZero(int *i) { 424 if (*i) 425 PROF_WARN("Expected flag to be 0, but got: %d\n", *i); 426 } 427 #endif 428 429 #if !defined(__Fuchsia__) && !defined(_WIN32) 430 /* Write a partial profile to \p Filename, which is required to be backed by 431 * the open file object \p File. */ 432 static int writeProfileWithFileObject(const char *Filename, FILE *File) { 433 setProfileFile(File); 434 int rc = writeFile(Filename); 435 if (rc) 436 PROF_ERR("Failed to write file \"%s\": %s\n", Filename, strerror(errno)); 437 setProfileFile(NULL); 438 return rc; 439 } 440 441 /* Unlock the profile \p File and clear the unlock flag. */ 442 static void unlockProfile(int *ProfileRequiresUnlock, FILE *File) { 443 if (!*ProfileRequiresUnlock) { 444 PROF_WARN("%s", "Expected to require profile unlock\n"); 445 } 446 lprofUnlockFileHandle(File); 447 *ProfileRequiresUnlock = 0; 448 } 449 #endif // !defined(__Fuchsia__) && !defined(_WIN32) 450 451 static int writeMMappedFile(FILE *OutputFile, char **Profile) { 452 if (!OutputFile) 453 return -1; 454 455 /* Write the data into a file. */ 456 setupIOBuffer(); 457 ProfDataWriter fileWriter; 458 initFileWriter(&fileWriter, OutputFile); 459 if (lprofWriteData(&fileWriter, NULL, 0)) { 460 PROF_ERR("Failed to write profile: %s\n", strerror(errno)); 461 return -1; 462 } 463 fflush(OutputFile); 464 465 /* Get the file size. */ 466 uint64_t FileSize = ftell(OutputFile); 467 468 /* Map the profile. */ 469 *Profile = (char *)mmap( 470 NULL, FileSize, PROT_READ | PROT_WRITE, MAP_SHARED, fileno(OutputFile), 0); 471 if (*Profile == MAP_FAILED) { 472 PROF_ERR("Unable to mmap profile: %s\n", strerror(errno)); 473 return -1; 474 } 475 476 return 0; 477 } 478 479 static void relocateCounters(void) { 480 if (!__llvm_profile_is_continuous_mode_enabled() || !RuntimeCounterRelocation) 481 return; 482 483 /* Get the sizes of various profile data sections. Taken from 484 * __llvm_profile_get_size_for_buffer(). */ 485 const __llvm_profile_data *DataBegin = __llvm_profile_begin_data(); 486 const __llvm_profile_data *DataEnd = __llvm_profile_end_data(); 487 uint64_t DataSize = __llvm_profile_get_data_size(DataBegin, DataEnd); 488 const uint64_t CountersOffset = sizeof(__llvm_profile_header) + 489 (DataSize * sizeof(__llvm_profile_data)); 490 491 int Length = getCurFilenameLength(); 492 char *FilenameBuf = (char *)COMPILER_RT_ALLOCA(Length + 1); 493 const char *Filename = getCurFilename(FilenameBuf, 0); 494 if (!Filename) 495 return; 496 497 FILE *File = NULL; 498 char *Profile = NULL; 499 500 if (!doMerging()) { 501 File = fopen(Filename, "w+b"); 502 if (!File) 503 return; 504 505 if (writeMMappedFile(File, &Profile) == -1) { 506 fclose(File); 507 return; 508 } 509 } else { 510 File = lprofOpenFileEx(Filename); 511 if (!File) 512 return; 513 514 uint64_t ProfileFileSize = 0; 515 if (getProfileFileSizeForMerging(File, &ProfileFileSize) == -1) { 516 lprofUnlockFileHandle(File); 517 fclose(File); 518 return; 519 } 520 521 if (!ProfileFileSize) { 522 if (writeMMappedFile(File, &Profile) == -1) { 523 fclose(File); 524 return; 525 } 526 } else { 527 /* The merged profile has a non-zero length. Check that it is compatible 528 * with the data in this process. */ 529 if (mmapProfileForMerging(File, ProfileFileSize, &Profile) == -1) { 530 fclose(File); 531 return; 532 } 533 } 534 535 lprofUnlockFileHandle(File); 536 } 537 538 /* Update the profile fields based on the current mapping. */ 539 __llvm_profile_counter_bias = (intptr_t)Profile - 540 (uintptr_t)__llvm_profile_begin_counters() + CountersOffset; 541 } 542 543 static void initializeProfileForContinuousMode(void) { 544 if (!__llvm_profile_is_continuous_mode_enabled()) 545 return; 546 547 #if defined(__Fuchsia__) || defined(_WIN32) 548 PROF_ERR("%s\n", "Continuous mode not yet supported on Fuchsia or Windows."); 549 #else // defined(__Fuchsia__) || defined(_WIN32) 550 /* Get the sizes of various profile data sections. Taken from 551 * __llvm_profile_get_size_for_buffer(). */ 552 const __llvm_profile_data *DataBegin = __llvm_profile_begin_data(); 553 const __llvm_profile_data *DataEnd = __llvm_profile_end_data(); 554 const uint64_t *CountersBegin = __llvm_profile_begin_counters(); 555 const uint64_t *CountersEnd = __llvm_profile_end_counters(); 556 const char *NamesBegin = __llvm_profile_begin_names(); 557 const char *NamesEnd = __llvm_profile_end_names(); 558 const uint64_t NamesSize = (NamesEnd - NamesBegin) * sizeof(char); 559 uint64_t DataSize = __llvm_profile_get_data_size(DataBegin, DataEnd); 560 uint64_t CountersSize = CountersEnd - CountersBegin; 561 562 /* Check that the counter and data sections in this image are page-aligned. */ 563 unsigned PageSize = getpagesize(); 564 if ((intptr_t)CountersBegin % PageSize != 0) { 565 PROF_ERR("Counters section not page-aligned (start = %p, pagesz = %u).\n", 566 CountersBegin, PageSize); 567 return; 568 } 569 if ((intptr_t)DataBegin % PageSize != 0) { 570 PROF_ERR("Data section not page-aligned (start = %p, pagesz = %u).\n", 571 DataBegin, PageSize); 572 return; 573 } 574 575 int Length = getCurFilenameLength(); 576 char *FilenameBuf = (char *)COMPILER_RT_ALLOCA(Length + 1); 577 const char *Filename = getCurFilename(FilenameBuf, 0); 578 if (!Filename) 579 return; 580 581 FILE *File = NULL; 582 off_t CurrentFileOffset = 0; 583 off_t OffsetModPage = 0; 584 585 /* Whether an exclusive lock on the profile must be dropped after init. 586 * Use a cleanup to warn if the unlock does not occur. */ 587 COMPILER_RT_CLEANUP(assertIsZero) int ProfileRequiresUnlock = 0; 588 589 if (!doMerging()) { 590 /* We are not merging profiles, so open the raw profile in append mode. */ 591 File = fopen(Filename, "a+b"); 592 if (!File) 593 return; 594 595 /* Check that the offset within the file is page-aligned. */ 596 CurrentFileOffset = ftello(File); 597 OffsetModPage = CurrentFileOffset % PageSize; 598 if (OffsetModPage != 0) { 599 PROF_ERR("Continuous counter sync mode is enabled, but raw profile is not" 600 "page-aligned. CurrentFileOffset = %" PRIu64 ", pagesz = %u.\n", 601 (uint64_t)CurrentFileOffset, PageSize); 602 return; 603 } 604 605 /* Grow the profile so that mmap() can succeed. Leak the file handle, as 606 * the file should stay open. */ 607 if (writeProfileWithFileObject(Filename, File) != 0) 608 return; 609 } else { 610 /* We are merging profiles. Map the counter section as shared memory into 611 * the profile, i.e. into each participating process. An increment in one 612 * process should be visible to every other process with the same counter 613 * section mapped. */ 614 File = lprofOpenFileEx(Filename); 615 if (!File) 616 return; 617 618 ProfileRequiresUnlock = 1; 619 620 uint64_t ProfileFileSize; 621 if (getProfileFileSizeForMerging(File, &ProfileFileSize) == -1) 622 return unlockProfile(&ProfileRequiresUnlock, File); 623 624 if (ProfileFileSize == 0) { 625 /* Grow the profile so that mmap() can succeed. Leak the file handle, as 626 * the file should stay open. */ 627 if (writeProfileWithFileObject(Filename, File) != 0) 628 return unlockProfile(&ProfileRequiresUnlock, File); 629 } else { 630 /* The merged profile has a non-zero length. Check that it is compatible 631 * with the data in this process. */ 632 char *ProfileBuffer; 633 if (mmapProfileForMerging(File, ProfileFileSize, &ProfileBuffer) == -1 || 634 munmap(ProfileBuffer, ProfileFileSize) == -1) 635 return unlockProfile(&ProfileRequiresUnlock, File); 636 } 637 } 638 639 int Fileno = fileno(File); 640 641 /* Determine how much padding is needed before/after the counters and after 642 * the names. */ 643 uint64_t PaddingBytesBeforeCounters, PaddingBytesAfterCounters, 644 PaddingBytesAfterNames; 645 __llvm_profile_get_padding_sizes_for_counters( 646 DataSize, CountersSize, NamesSize, &PaddingBytesBeforeCounters, 647 &PaddingBytesAfterCounters, &PaddingBytesAfterNames); 648 649 uint64_t PageAlignedCountersLength = 650 (CountersSize * sizeof(uint64_t)) + PaddingBytesAfterCounters; 651 uint64_t FileOffsetToCounters = 652 CurrentFileOffset + sizeof(__llvm_profile_header) + 653 (DataSize * sizeof(__llvm_profile_data)) + PaddingBytesBeforeCounters; 654 655 uint64_t *CounterMmap = (uint64_t *)mmap( 656 (void *)CountersBegin, PageAlignedCountersLength, PROT_READ | PROT_WRITE, 657 MAP_FIXED | MAP_SHARED, Fileno, FileOffsetToCounters); 658 if (CounterMmap != CountersBegin) { 659 PROF_ERR( 660 "Continuous counter sync mode is enabled, but mmap() failed (%s).\n" 661 " - CountersBegin: %p\n" 662 " - PageAlignedCountersLength: %" PRIu64 "\n" 663 " - Fileno: %d\n" 664 " - FileOffsetToCounters: %" PRIu64 "\n", 665 strerror(errno), CountersBegin, PageAlignedCountersLength, Fileno, 666 FileOffsetToCounters); 667 } 668 669 unlockProfile(&ProfileRequiresUnlock, File); 670 #endif // defined(__Fuchsia__) || defined(_WIN32) 671 } 672 673 static const char *DefaultProfileName = "default.profraw"; 674 static void resetFilenameToDefault(void) { 675 if (lprofCurFilename.FilenamePat && lprofCurFilename.OwnsFilenamePat) { 676 free((void *)lprofCurFilename.FilenamePat); 677 } 678 memset(&lprofCurFilename, 0, sizeof(lprofCurFilename)); 679 lprofCurFilename.FilenamePat = DefaultProfileName; 680 lprofCurFilename.PNS = PNS_default; 681 } 682 683 static unsigned getMergePoolSize(const char *FilenamePat, int *I) { 684 unsigned J = 0, Num = 0; 685 for (;; ++J) { 686 char C = FilenamePat[*I + J]; 687 if (C == 'm') { 688 *I += J; 689 return Num ? Num : 1; 690 } 691 if (C < '0' || C > '9') 692 break; 693 Num = Num * 10 + C - '0'; 694 695 /* If FilenamePat[*I+J] is between '0' and '9', the next byte is guaranteed 696 * to be in-bound as the string is null terminated. */ 697 } 698 return 0; 699 } 700 701 /* Parses the pattern string \p FilenamePat and stores the result to 702 * lprofcurFilename structure. */ 703 static int parseFilenamePattern(const char *FilenamePat, 704 unsigned CopyFilenamePat) { 705 int NumPids = 0, NumHosts = 0, I; 706 char *PidChars = &lprofCurFilename.PidChars[0]; 707 char *Hostname = &lprofCurFilename.Hostname[0]; 708 int MergingEnabled = 0; 709 710 /* Clean up cached prefix and filename. */ 711 if (lprofCurFilename.ProfilePathPrefix) 712 free((void *)lprofCurFilename.ProfilePathPrefix); 713 714 if (lprofCurFilename.FilenamePat && lprofCurFilename.OwnsFilenamePat) { 715 free((void *)lprofCurFilename.FilenamePat); 716 } 717 718 memset(&lprofCurFilename, 0, sizeof(lprofCurFilename)); 719 720 if (!CopyFilenamePat) 721 lprofCurFilename.FilenamePat = FilenamePat; 722 else { 723 lprofCurFilename.FilenamePat = strdup(FilenamePat); 724 lprofCurFilename.OwnsFilenamePat = 1; 725 } 726 /* Check the filename for "%p", which indicates a pid-substitution. */ 727 for (I = 0; FilenamePat[I]; ++I) 728 if (FilenamePat[I] == '%') { 729 if (FilenamePat[++I] == 'p') { 730 if (!NumPids++) { 731 if (snprintf(PidChars, MAX_PID_SIZE, "%ld", (long)getpid()) <= 0) { 732 PROF_WARN("Unable to get pid for filename pattern %s. Using the " 733 "default name.", 734 FilenamePat); 735 return -1; 736 } 737 } 738 } else if (FilenamePat[I] == 'h') { 739 if (!NumHosts++) 740 if (COMPILER_RT_GETHOSTNAME(Hostname, COMPILER_RT_MAX_HOSTLEN)) { 741 PROF_WARN("Unable to get hostname for filename pattern %s. Using " 742 "the default name.", 743 FilenamePat); 744 return -1; 745 } 746 } else if (FilenamePat[I] == 'c') { 747 if (__llvm_profile_is_continuous_mode_enabled()) { 748 PROF_WARN("%%c specifier can only be specified once in %s.\n", 749 FilenamePat); 750 return -1; 751 } 752 753 __llvm_profile_enable_continuous_mode(); 754 I++; /* advance to 'c' */ 755 } else { 756 unsigned MergePoolSize = getMergePoolSize(FilenamePat, &I); 757 if (!MergePoolSize) 758 continue; 759 if (MergingEnabled) { 760 PROF_WARN("%%m specifier can only be specified once in %s.\n", 761 FilenamePat); 762 return -1; 763 } 764 MergingEnabled = 1; 765 lprofCurFilename.MergePoolSize = MergePoolSize; 766 } 767 } 768 769 lprofCurFilename.NumPids = NumPids; 770 lprofCurFilename.NumHosts = NumHosts; 771 return 0; 772 } 773 774 static void parseAndSetFilename(const char *FilenamePat, 775 ProfileNameSpecifier PNS, 776 unsigned CopyFilenamePat) { 777 778 const char *OldFilenamePat = lprofCurFilename.FilenamePat; 779 ProfileNameSpecifier OldPNS = lprofCurFilename.PNS; 780 781 /* The old profile name specifier takes precedence over the old one. */ 782 if (PNS < OldPNS) 783 return; 784 785 if (!FilenamePat) 786 FilenamePat = DefaultProfileName; 787 788 if (OldFilenamePat && !strcmp(OldFilenamePat, FilenamePat)) { 789 lprofCurFilename.PNS = PNS; 790 return; 791 } 792 793 /* When PNS >= OldPNS, the last one wins. */ 794 if (!FilenamePat || parseFilenamePattern(FilenamePat, CopyFilenamePat)) 795 resetFilenameToDefault(); 796 lprofCurFilename.PNS = PNS; 797 798 if (!OldFilenamePat) { 799 if (getenv("LLVM_PROFILE_VERBOSE")) 800 PROF_NOTE("Set profile file path to \"%s\" via %s.\n", 801 lprofCurFilename.FilenamePat, getPNSStr(PNS)); 802 } else { 803 if (getenv("LLVM_PROFILE_VERBOSE")) 804 PROF_NOTE("Override old profile path \"%s\" via %s to \"%s\" via %s.\n", 805 OldFilenamePat, getPNSStr(OldPNS), lprofCurFilename.FilenamePat, 806 getPNSStr(PNS)); 807 } 808 809 truncateCurrentFile(); 810 if (__llvm_profile_is_continuous_mode_enabled()) { 811 if (RuntimeCounterRelocation) 812 relocateCounters(); 813 else 814 initializeProfileForContinuousMode(); 815 } 816 } 817 818 /* Return buffer length that is required to store the current profile 819 * filename with PID and hostname substitutions. */ 820 /* The length to hold uint64_t followed by 3 digits pool id including '_' */ 821 #define SIGLEN 24 822 static int getCurFilenameLength() { 823 int Len; 824 if (!lprofCurFilename.FilenamePat || !lprofCurFilename.FilenamePat[0]) 825 return 0; 826 827 if (!(lprofCurFilename.NumPids || lprofCurFilename.NumHosts || 828 lprofCurFilename.MergePoolSize)) 829 return strlen(lprofCurFilename.FilenamePat); 830 831 Len = strlen(lprofCurFilename.FilenamePat) + 832 lprofCurFilename.NumPids * (strlen(lprofCurFilename.PidChars) - 2) + 833 lprofCurFilename.NumHosts * (strlen(lprofCurFilename.Hostname) - 2); 834 if (lprofCurFilename.MergePoolSize) 835 Len += SIGLEN; 836 return Len; 837 } 838 839 /* Return the pointer to the current profile file name (after substituting 840 * PIDs and Hostnames in filename pattern. \p FilenameBuf is the buffer 841 * to store the resulting filename. If no substitution is needed, the 842 * current filename pattern string is directly returned, unless ForceUseBuf 843 * is enabled. */ 844 static const char *getCurFilename(char *FilenameBuf, int ForceUseBuf) { 845 int I, J, PidLength, HostNameLength, FilenamePatLength; 846 const char *FilenamePat = lprofCurFilename.FilenamePat; 847 848 if (!lprofCurFilename.FilenamePat || !lprofCurFilename.FilenamePat[0]) 849 return 0; 850 851 if (!(lprofCurFilename.NumPids || lprofCurFilename.NumHosts || 852 lprofCurFilename.MergePoolSize || 853 __llvm_profile_is_continuous_mode_enabled())) { 854 if (!ForceUseBuf) 855 return lprofCurFilename.FilenamePat; 856 857 FilenamePatLength = strlen(lprofCurFilename.FilenamePat); 858 memcpy(FilenameBuf, lprofCurFilename.FilenamePat, FilenamePatLength); 859 FilenameBuf[FilenamePatLength] = '\0'; 860 return FilenameBuf; 861 } 862 863 PidLength = strlen(lprofCurFilename.PidChars); 864 HostNameLength = strlen(lprofCurFilename.Hostname); 865 /* Construct the new filename. */ 866 for (I = 0, J = 0; FilenamePat[I]; ++I) 867 if (FilenamePat[I] == '%') { 868 if (FilenamePat[++I] == 'p') { 869 memcpy(FilenameBuf + J, lprofCurFilename.PidChars, PidLength); 870 J += PidLength; 871 } else if (FilenamePat[I] == 'h') { 872 memcpy(FilenameBuf + J, lprofCurFilename.Hostname, HostNameLength); 873 J += HostNameLength; 874 } else { 875 if (!getMergePoolSize(FilenamePat, &I)) 876 continue; 877 char LoadModuleSignature[SIGLEN + 1]; 878 int S; 879 int ProfilePoolId = getpid() % lprofCurFilename.MergePoolSize; 880 S = snprintf(LoadModuleSignature, SIGLEN + 1, "%" PRIu64 "_%d", 881 lprofGetLoadModuleSignature(), ProfilePoolId); 882 if (S == -1 || S > SIGLEN) 883 S = SIGLEN; 884 memcpy(FilenameBuf + J, LoadModuleSignature, S); 885 J += S; 886 } 887 /* Drop any unknown substitutions. */ 888 } else 889 FilenameBuf[J++] = FilenamePat[I]; 890 FilenameBuf[J] = 0; 891 892 return FilenameBuf; 893 } 894 895 /* Returns the pointer to the environment variable 896 * string. Returns null if the env var is not set. */ 897 static const char *getFilenamePatFromEnv(void) { 898 const char *Filename = getenv("LLVM_PROFILE_FILE"); 899 if (!Filename || !Filename[0]) 900 return 0; 901 return Filename; 902 } 903 904 COMPILER_RT_VISIBILITY 905 const char *__llvm_profile_get_path_prefix(void) { 906 int Length; 907 char *FilenameBuf, *Prefix; 908 const char *Filename, *PrefixEnd; 909 910 if (lprofCurFilename.ProfilePathPrefix) 911 return lprofCurFilename.ProfilePathPrefix; 912 913 Length = getCurFilenameLength(); 914 FilenameBuf = (char *)COMPILER_RT_ALLOCA(Length + 1); 915 Filename = getCurFilename(FilenameBuf, 0); 916 if (!Filename) 917 return "\0"; 918 919 PrefixEnd = lprofFindLastDirSeparator(Filename); 920 if (!PrefixEnd) 921 return "\0"; 922 923 Length = PrefixEnd - Filename + 1; 924 Prefix = (char *)malloc(Length + 1); 925 if (!Prefix) { 926 PROF_ERR("Failed to %s\n", "allocate memory."); 927 return "\0"; 928 } 929 memcpy(Prefix, Filename, Length); 930 Prefix[Length] = '\0'; 931 lprofCurFilename.ProfilePathPrefix = Prefix; 932 return Prefix; 933 } 934 935 COMPILER_RT_VISIBILITY 936 const char *__llvm_profile_get_filename(void) { 937 int Length; 938 char *FilenameBuf; 939 const char *Filename; 940 941 Length = getCurFilenameLength(); 942 FilenameBuf = (char *)malloc(Length + 1); 943 if (!FilenameBuf) { 944 PROF_ERR("Failed to %s\n", "allocate memory."); 945 return "\0"; 946 } 947 Filename = getCurFilename(FilenameBuf, 1); 948 if (!Filename) 949 return "\0"; 950 951 return FilenameBuf; 952 } 953 954 /* This method is invoked by the runtime initialization hook 955 * InstrProfilingRuntime.o if it is linked in. Both user specified 956 * profile path via -fprofile-instr-generate= and LLVM_PROFILE_FILE 957 * environment variable can override this default value. */ 958 COMPILER_RT_VISIBILITY 959 void __llvm_profile_initialize_file(void) { 960 const char *EnvFilenamePat; 961 const char *SelectedPat = NULL; 962 ProfileNameSpecifier PNS = PNS_unknown; 963 int hasCommandLineOverrider = (INSTR_PROF_PROFILE_NAME_VAR[0] != 0); 964 965 if (__llvm_profile_counter_bias != -1) 966 RuntimeCounterRelocation = 1; 967 968 EnvFilenamePat = getFilenamePatFromEnv(); 969 if (EnvFilenamePat) { 970 /* Pass CopyFilenamePat = 1, to ensure that the filename would be valid 971 at the moment when __llvm_profile_write_file() gets executed. */ 972 parseAndSetFilename(EnvFilenamePat, PNS_environment, 1); 973 return; 974 } else if (hasCommandLineOverrider) { 975 SelectedPat = INSTR_PROF_PROFILE_NAME_VAR; 976 PNS = PNS_command_line; 977 } else { 978 SelectedPat = NULL; 979 PNS = PNS_default; 980 } 981 982 parseAndSetFilename(SelectedPat, PNS, 0); 983 } 984 985 /* This API is directly called by the user application code. It has the 986 * highest precedence compared with LLVM_PROFILE_FILE environment variable 987 * and command line option -fprofile-instr-generate=<profile_name>. 988 */ 989 COMPILER_RT_VISIBILITY 990 void __llvm_profile_set_filename(const char *FilenamePat) { 991 if (__llvm_profile_is_continuous_mode_enabled()) 992 return; 993 parseAndSetFilename(FilenamePat, PNS_runtime_api, 1); 994 } 995 996 /* The public API for writing profile data into the file with name 997 * set by previous calls to __llvm_profile_set_filename or 998 * __llvm_profile_override_default_filename or 999 * __llvm_profile_initialize_file. */ 1000 COMPILER_RT_VISIBILITY 1001 int __llvm_profile_write_file(void) { 1002 int rc, Length; 1003 const char *Filename; 1004 char *FilenameBuf; 1005 int PDeathSig = 0; 1006 1007 if (lprofProfileDumped() || __llvm_profile_is_continuous_mode_enabled()) { 1008 PROF_NOTE("Profile data not written to file: %s.\n", "already written"); 1009 return 0; 1010 } 1011 1012 Length = getCurFilenameLength(); 1013 FilenameBuf = (char *)COMPILER_RT_ALLOCA(Length + 1); 1014 Filename = getCurFilename(FilenameBuf, 0); 1015 1016 /* Check the filename. */ 1017 if (!Filename) { 1018 PROF_ERR("Failed to write file : %s\n", "Filename not set"); 1019 return -1; 1020 } 1021 1022 /* Check if there is llvm/runtime version mismatch. */ 1023 if (GET_VERSION(__llvm_profile_get_version()) != INSTR_PROF_RAW_VERSION) { 1024 PROF_ERR("Runtime and instrumentation version mismatch : " 1025 "expected %d, but get %d\n", 1026 INSTR_PROF_RAW_VERSION, 1027 (int)GET_VERSION(__llvm_profile_get_version())); 1028 return -1; 1029 } 1030 1031 // Temporarily suspend getting SIGKILL when the parent exits. 1032 PDeathSig = lprofSuspendSigKill(); 1033 1034 /* Write profile data to the file. */ 1035 rc = writeFile(Filename); 1036 if (rc) 1037 PROF_ERR("Failed to write file \"%s\": %s\n", Filename, strerror(errno)); 1038 1039 // Restore SIGKILL. 1040 if (PDeathSig == 1) 1041 lprofRestoreSigKill(); 1042 1043 return rc; 1044 } 1045 1046 COMPILER_RT_VISIBILITY 1047 int __llvm_profile_dump(void) { 1048 if (!doMerging()) 1049 PROF_WARN("Later invocation of __llvm_profile_dump can lead to clobbering " 1050 " of previously dumped profile data : %s. Either use %%m " 1051 "in profile name or change profile name before dumping.\n", 1052 "online profile merging is not on"); 1053 int rc = __llvm_profile_write_file(); 1054 lprofSetProfileDumped(); 1055 return rc; 1056 } 1057 1058 /* Order file data will be saved in a file with suffx .order. */ 1059 static const char *OrderFileSuffix = ".order"; 1060 1061 COMPILER_RT_VISIBILITY 1062 int __llvm_orderfile_write_file(void) { 1063 int rc, Length, LengthBeforeAppend, SuffixLength; 1064 const char *Filename; 1065 char *FilenameBuf; 1066 int PDeathSig = 0; 1067 1068 SuffixLength = strlen(OrderFileSuffix); 1069 Length = getCurFilenameLength() + SuffixLength; 1070 FilenameBuf = (char *)COMPILER_RT_ALLOCA(Length + 1); 1071 Filename = getCurFilename(FilenameBuf, 1); 1072 1073 /* Check the filename. */ 1074 if (!Filename) { 1075 PROF_ERR("Failed to write file : %s\n", "Filename not set"); 1076 return -1; 1077 } 1078 1079 /* Append order file suffix */ 1080 LengthBeforeAppend = strlen(Filename); 1081 memcpy(FilenameBuf + LengthBeforeAppend, OrderFileSuffix, SuffixLength); 1082 FilenameBuf[LengthBeforeAppend + SuffixLength] = '\0'; 1083 1084 /* Check if there is llvm/runtime version mismatch. */ 1085 if (GET_VERSION(__llvm_profile_get_version()) != INSTR_PROF_RAW_VERSION) { 1086 PROF_ERR("Runtime and instrumentation version mismatch : " 1087 "expected %d, but get %d\n", 1088 INSTR_PROF_RAW_VERSION, 1089 (int)GET_VERSION(__llvm_profile_get_version())); 1090 return -1; 1091 } 1092 1093 // Temporarily suspend getting SIGKILL when the parent exits. 1094 PDeathSig = lprofSuspendSigKill(); 1095 1096 /* Write order data to the file. */ 1097 rc = writeOrderFile(Filename); 1098 if (rc) 1099 PROF_ERR("Failed to write file \"%s\": %s\n", Filename, strerror(errno)); 1100 1101 // Restore SIGKILL. 1102 if (PDeathSig == 1) 1103 lprofRestoreSigKill(); 1104 1105 return rc; 1106 } 1107 1108 COMPILER_RT_VISIBILITY 1109 int __llvm_orderfile_dump(void) { 1110 int rc = __llvm_orderfile_write_file(); 1111 return rc; 1112 } 1113 1114 static void writeFileWithoutReturn(void) { __llvm_profile_write_file(); } 1115 1116 COMPILER_RT_VISIBILITY 1117 int __llvm_profile_register_write_file_atexit(void) { 1118 static int HasBeenRegistered = 0; 1119 1120 if (HasBeenRegistered) 1121 return 0; 1122 1123 lprofSetupValueProfiler(); 1124 1125 HasBeenRegistered = 1; 1126 return atexit(writeFileWithoutReturn); 1127 } 1128 1129 #endif 1130