mirror of
https://github.com/chromium/crashpad.git
synced 2025-03-10 06:36:02 +00:00
Previous commits[1][2] modified tests to require looking at RawLog output to validate the success or failure of the iOS InHandlerProcess. Previously this would use freopen to direct the RawLog to a file. However, freopen introduces a race where the log file may not be associated with stderr, and instead may interfere with the InProcessHandler's cached writer fd. This caused flake with the intermediate dumps sometimes including stderr logging. Since the test fixtures only needs to know about the output of RawLog, instead add a crashpad::internal::SetFileHandleForTesting method to that swaps out STDERR_FILENO with the test fixture's fd. [1] https://crrev.com/c/3488826 [2] https://crrev.com/c/3401563 Change-Id: I87b1020db6b896a47bec5a7c916a572c192b884f Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3517773 Reviewed-by: Joshua Peraza <jperaza@chromium.org> Commit-Queue: Justin Cohen <justincohen@chromium.org>
79 lines
2.1 KiB
C++
79 lines
2.1 KiB
C++
// Copyright 2021 The Crashpad Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "util/ios/raw_logging.h"
|
|
|
|
#include <atomic>
|
|
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "base/posix/eintr_wrapper.h"
|
|
|
|
namespace crashpad {
|
|
namespace internal {
|
|
|
|
namespace {
|
|
static_assert(std::atomic<FileHandle>::is_always_lock_free,
|
|
"std::atomic<FileHandle> may not be signal-safe");
|
|
std::atomic<FileHandle> g_file_handle = STDERR_FILENO;
|
|
} // namespace
|
|
|
|
void SetFileHandleForTesting(FileHandle file_handle) {
|
|
g_file_handle = file_handle;
|
|
}
|
|
|
|
void RawLogString(const char* message) {
|
|
const size_t message_len = strlen(message);
|
|
size_t bytes_written = 0;
|
|
while (bytes_written < message_len) {
|
|
int rv = HANDLE_EINTR(write(
|
|
g_file_handle, message + bytes_written, message_len - bytes_written));
|
|
if (rv < 0) {
|
|
// Give up, nothing we can do now.
|
|
break;
|
|
}
|
|
bytes_written += rv;
|
|
}
|
|
}
|
|
|
|
void RawLogInt(unsigned int number) {
|
|
char buffer[20];
|
|
char* digit = &buffer[sizeof(buffer) - 1];
|
|
*digit = '\0';
|
|
do {
|
|
*(--digit) = (number % 10) + '0';
|
|
number /= 10;
|
|
} while (number != 0);
|
|
RawLogString(digit);
|
|
}
|
|
|
|
// Prints `path:linenum message:error` (with optional `:error`).
|
|
void RawLog(const char* file, int line, const char* message, int error) {
|
|
RawLogString(file);
|
|
HANDLE_EINTR(write(g_file_handle, ":", 1));
|
|
RawLogInt(line);
|
|
HANDLE_EINTR(write(g_file_handle, " ", 1));
|
|
RawLogString(message);
|
|
if (error) {
|
|
RawLogString(": ");
|
|
RawLogInt(error);
|
|
}
|
|
HANDLE_EINTR(write(g_file_handle, "\n", 1));
|
|
}
|
|
|
|
} // namespace internal
|
|
} // namespace crashpad
|