cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
79 lines
2.2 KiB
C++
79 lines
2.2 KiB
C++
// RUN: %clangxx -fsanitize=realtime %s -o %t
|
|
// RUN: %env_rtsan_opts="halt_on_error=false" %run %t 2>&1 | FileCheck %s --check-prefixes=CHECK-RTSAN,CHECK
|
|
|
|
// RUN: %clangxx %s -o %t
|
|
// RUN: %run %t 2>&1 | FileCheck %s
|
|
|
|
// UNSUPPORTED: ios
|
|
|
|
// Intent: Ensure the `syscall` call behaves in the same way with/without the
|
|
// sanitizer disabled
|
|
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/syscall.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
const char *GetTemporaryFilePath() { return "/tmp/rtsan_syscall_test.txt"; }
|
|
|
|
void custom_assert(bool condition, const char *message) {
|
|
if (!condition) {
|
|
fprintf(stderr, "ASSERTION FAILED: %s\n", message);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
class ScopedFileCleanup {
|
|
public:
|
|
[[nodiscard]] ScopedFileCleanup() = default;
|
|
~ScopedFileCleanup() {
|
|
if (access(GetTemporaryFilePath(), F_OK) != -1)
|
|
unlink(GetTemporaryFilePath());
|
|
}
|
|
};
|
|
|
|
// Apple has deprecated `syscall`, ignore that error
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
|
int main() [[clang::nonblocking]] {
|
|
ScopedFileCleanup cleanup;
|
|
|
|
{
|
|
int fd = syscall(SYS_openat, AT_FDCWD, GetTemporaryFilePath(),
|
|
O_CREAT | O_WRONLY, 0644);
|
|
|
|
custom_assert(fd != -1, "Failed to open file - write");
|
|
|
|
int written = syscall(SYS_write, fd, "Hello, world!", 13);
|
|
custom_assert(written == 13, "Failed to write to file");
|
|
|
|
custom_assert(syscall(SYS_close, fd) == 0, "Failed to close file - write");
|
|
}
|
|
|
|
{
|
|
int fd = syscall(SYS_openat, AT_FDCWD, GetTemporaryFilePath(), O_RDONLY);
|
|
custom_assert(fd != -1, "Failed to open file - read");
|
|
|
|
char buffer[13];
|
|
int read = syscall(SYS_read, fd, buffer, 13);
|
|
custom_assert(read == 13, "Failed to read from file");
|
|
|
|
custom_assert(memcmp(buffer, "Hello, world!", 13) == 0,
|
|
"Read data does not match written data");
|
|
|
|
custom_assert(syscall(SYS_close, fd) == 0, "Failed to close file - read");
|
|
}
|
|
|
|
unlink(GetTemporaryFilePath());
|
|
printf("DONE\n");
|
|
}
|
|
#pragma clang diagnostic pop
|
|
|
|
// CHECK-NOT: ASSERTION FAILED
|
|
// CHECK-RTSAN-COUNT-6: Intercepted call to real-time unsafe function `syscall`
|
|
|
|
// CHECK: DONE
|