bpftrace: Upgrade to 0.24.1 release

Drop upstreamed patches

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj
2025-10-26 19:55:35 -07:00
parent 466bf08759
commit 7e143c1e76
5 changed files with 2 additions and 201 deletions
@@ -1,39 +0,0 @@
From ead4dc45e35fc6c3770ef4021720e0e6a5b60674 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sun, 31 Aug 2025 15:23:27 -0700
Subject: [PATCH 1/3] Include missing c++ runtime headers
These headers are required and found to fail builds
when using llvm/libc++ instead of libstdc++ on linux
Upstream-Status: Submitted [https://github.com/bpftrace/bpftrace/pull/4526]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/util/bpf_names.cpp | 1 +
tests/opaque.cpp | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/util/bpf_names.cpp b/src/util/bpf_names.cpp
index 68525bfc..ab8f6f2f 100644
--- a/src/util/bpf_names.cpp
+++ b/src/util/bpf_names.cpp
@@ -1,6 +1,7 @@
#include <algorithm>
#include <iomanip>
#include <iostream>
+#include <sstream> // for std::ostringstream
#include "util/bpf_names.h"
diff --git a/tests/opaque.cpp b/tests/opaque.cpp
index a030a05d..034888d3 100644
--- a/tests/opaque.cpp
+++ b/tests/opaque.cpp
@@ -1,6 +1,7 @@
#include "util/opaque.h"
#include "gtest/gtest.h"
#include <cstring>
+#include <numbers> // for std::numbers
#include <string>
#include <vector>
@@ -1,24 +0,0 @@
From 7bd8ec690ad587e7f180bcd061a6205b28d86260 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sun, 31 Aug 2025 09:50:35 -0700
Subject: [PATCH] cmake: Raise max supported clang version to clang-21
Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 025fa738..a0f16dd1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -172,7 +172,7 @@ if(CMAKE_BUILD_TYPE STREQUAL "Debug")
# releases.
set(MAX_LLVM_MAJOR 999)
else()
- set(MAX_LLVM_MAJOR 20)
+ set(MAX_LLVM_MAJOR 21)
endif()
if((${LLVM_VERSION_MAJOR} VERSION_LESS ${MIN_LLVM_MAJOR}) OR (${LLVM_VERSION_MAJOR} VERSION_GREATER ${MAX_LLVM_MAJOR}))
@@ -1,54 +0,0 @@
From 381047c14dfbc3b89a5e87404cb7cf886f10c119 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sun, 31 Aug 2025 15:26:36 -0700
Subject: [PATCH 2/3] chrono: Fix build when using libc++ casting ns to
system_clock::duration
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
libc++ from LLVM/Clang 21 release requires that time_point::operator+=
receive the exact duration type of the time_point. On many Linux configs,
system_clock::duration is microseconds, so doing:
t += std::chrono::nanoseconds(...);
fails with:
error: no viable overloaded '+='
note: candidate function not viable: no known conversion from
'duration<..., nano>' to 'const duration<..., micro>' for 1st argument
Cast the nanoseconds to system_clock::duration via duration_cast before
adding them. This builds with Clang 21 + libc++ and remains compatible
with libstdc++. Semantics are unchanged except for truncation to the
clocks native resolution (which already applies).
No functional change intended.
Upstream-Status: Submitted [https://github.com/bpftrace/bpftrace/pull/4526]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/bpftrace.cpp | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/bpftrace.cpp b/src/bpftrace.cpp
index a49a3efe..485267e0 100644
--- a/src/bpftrace.cpp
+++ b/src/bpftrace.cpp
@@ -992,11 +992,13 @@ std::chrono::time_point<std::chrono::system_clock> BPFtrace::resolve_timestamp(
<< "Cannot resolve timestamp due to failed boot time calculation";
} else {
t += std::chrono::seconds(boottime_->tv_sec);
- t += std::chrono::nanoseconds(boottime_->tv_nsec);
+ t += std::chrono::duration_cast<std::chrono::system_clock::duration>(
+ std::chrono::nanoseconds(boottime_->tv_nsec));
}
}
- t += std::chrono::nanoseconds(nsecs);
+ t += std::chrono::duration_cast<std::chrono::system_clock::duration>(
+ std::chrono::nanoseconds(nsecs));
return t;
}
@@ -1,78 +0,0 @@
From 9771348249981680c2b893a435099673e79997c4 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sun, 31 Aug 2025 15:29:26 -0700
Subject: [PATCH 3/3] ast: Adapt to Clang/LLVM 21 DiagnosticOptions API
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Clang 21 removed intrusive ref-counting from DiagnosticOptions and
switched consumers to take a DiagnosticOptions&. Building bpftrace
with clang-21/libc++ failed with errors like:
IntrusiveRefCntPtr.h:163: error: no member named 'Retain' in
'clang::DiagnosticOptions'
Diagnostic.h:578: no known conversion from
'IntrusiveRefCntPtr<clang::DiagnosticOptions>' to
'DiagnosticOptions&'
Update the frontend glue:
- For LLVM >= 21, construct a real DiagnosticOptions object and pass
it by reference to TextDiagnosticPrinter and DiagnosticsEngine
(no IntrusiveRefCntPtr). Keep it alive via shared_ptr to satisfy
DiagnosticsEngines reference lifetime.
- Replace ci.setInvocation(inv) with
ci.getInvocation() = *inv; which is stable across modern Clang.
Retain the old code path for LLVM < 21 via #if guards.
This fixes builds with clang-21/libc++ while keeping compatibility
with older LLVM releases.
No functional change intended.
Upstream-Status: Submitted [https://github.com/bpftrace/bpftrace/pull/4526]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/ast/passes/clang_build.cpp | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/src/ast/passes/clang_build.cpp b/src/ast/passes/clang_build.cpp
index fa5b2add..3debc350 100644
--- a/src/ast/passes/clang_build.cpp
+++ b/src/ast/passes/clang_build.cpp
@@ -78,12 +78,21 @@ static Result<> build(CompileContext &ctx,
// a string, which we can then capture and associate with the import.
std::string errstr;
llvm::raw_string_ostream err(errstr);
+#if LLVM_VERSION_MAJOR < 21
auto diagOpts = llvm::makeIntrusiveRefCnt<clang::DiagnosticOptions>();
auto diags = std::make_unique<clang::DiagnosticsEngine>(
llvm::makeIntrusiveRefCnt<clang::DiagnosticIDs>(),
diagOpts,
new clang::TextDiagnosticPrinter(err, diagOpts.get()));
-
+#else
+ // Clang 21: DiagnosticOptions is NOT intrusive-refcounted anymore.
+ // Keep it alive for the program lifetime (or store it on a longer-lived object).
+ static std::shared_ptr<clang::DiagnosticOptions> diagOpts =
+ std::make_shared<clang::DiagnosticOptions>();
+ llvm::IntrusiveRefCntPtr<clang::DiagnosticIDs> diagID(new clang::DiagnosticIDs());
+ auto client = std::make_unique<clang::TextDiagnosticPrinter>(err, *diagOpts);
+ auto diags = std::make_unique<clang::DiagnosticsEngine>(diagID, *diagOpts, client.release());
+#endif
// We create a temporary memfd that we can use to store the output,
// since the ClangDriver API is framed in terms of filenames. Perhaps
// we could use the internals here, but that carries other risks.
@@ -122,7 +131,9 @@ static Result<> build(CompileContext &ctx,
inv->getCodeGenOpts().DebugColumnInfo = true;
clang::CompilerInstance ci;
- ci.setInvocation(inv);
+ // Cross-version friendly: assign into the existing invocation
+ // (works across modern Clang majors, including 21)
+ ci.getInvocation() = *inv;
ci.setDiagnostics(diags.release());
ci.setFileManager(new clang::FileManager(clang::FileSystemOptions(), vfs));
ci.createSourceManager(ci.getFileManager());
@@ -18,15 +18,11 @@ DEPENDS += "${@bb.utils.contains('PTEST_ENABLED', '1', 'pahole-native llvm-nativ
RDEPENDS:${PN} += "bash python3 xz"
RDEPENDS:${PN}-ptest += "bpftool"
SRC_URI = "git://github.com/iovisor/bpftrace;branch=master;protocol=https \
SRC_URI = "git://github.com/iovisor/bpftrace;branch=release/0.24.x;protocol=https;tag=v${PV} \
file://run-ptest \
file://0001-cmake-Raise-max-supported-clang-version-to-clang-21.patch \
file://0002-CMakeLists.txt-allow-to-set-BISON_FLAGS-like-l.patch \
file://0001-Include-missing-c-runtime-headers.patch \
file://0002-chrono-Fix-build-when-using-libc-casting-ns-to-syste.patch \
file://0003-ast-Adapt-to-Clang-LLVM-21-DiagnosticOptions-API.patch \
"
SRCREV = "3b78184eed28501ab4bbb55e45c4172538999da1"
SRCREV = "4c1f02a43f993758d445952ccd96e552752defec"
inherit bash-completion cmake ptest pkgconfig