mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-07-04 03:48:58 +00:00
Fix some of the issues on ARM64
This commit is contained in:
parent
00c1d8c0ef
commit
0b3eceddf4
@ -34,6 +34,6 @@ WORKDIR /
|
|||||||
# Build and install Capstone from source
|
# Build and install Capstone from source
|
||||||
RUN curl https://github.com/aquynh/capstone/archive/4.0.2.tar.gz -Lo ./capstone.tar.gz \
|
RUN curl https://github.com/aquynh/capstone/archive/4.0.2.tar.gz -Lo ./capstone.tar.gz \
|
||||||
&& tar -xzf capstone.tar.gz && mv ./capstone-* ./capstone
|
&& tar -xzf capstone.tar.gz && mv ./capstone-* ./capstone
|
||||||
WORKDIR /work/capstone
|
WORKDIR /capstone
|
||||||
RUN ./make.sh \
|
RUN ./make.sh \
|
||||||
&& ./make.sh install
|
&& ./make.sh install
|
||||||
|
@ -7,7 +7,7 @@ Copyright (C) UP9 Inc.
|
|||||||
#ifndef __COMMON__
|
#ifndef __COMMON__
|
||||||
#define __COMMON__
|
#define __COMMON__
|
||||||
|
|
||||||
const int32_t invalid_fd = -1;
|
const __s32 invalid_fd = -1;
|
||||||
|
|
||||||
static int add_address_to_chunk(struct pt_regs *ctx, struct tls_chunk* chunk, __u64 id, __u32 fd);
|
static int add_address_to_chunk(struct pt_regs *ctx, struct tls_chunk* chunk, __u64 id, __u32 fd);
|
||||||
static void send_chunk_part(struct pt_regs *ctx, __u8* buffer, __u64 id, struct tls_chunk* chunk, int start, int end);
|
static void send_chunk_part(struct pt_regs *ctx, __u8* buffer, __u64 id, struct tls_chunk* chunk, int start, int end);
|
||||||
|
@ -8,7 +8,7 @@ Copyright (C) UP9 Inc.
|
|||||||
#define __GO_TYPES__
|
#define __GO_TYPES__
|
||||||
|
|
||||||
struct go_interface {
|
struct go_interface {
|
||||||
int64_t type;
|
__s64 type;
|
||||||
void* ptr;
|
void* ptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -8,7 +8,6 @@ Copyright (C) UP9 Inc.
|
|||||||
#define __HEADERS__
|
#define __HEADERS__
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdint.h>
|
|
||||||
#include <linux/bpf.h>
|
#include <linux/bpf.h>
|
||||||
#include <linux/ptrace.h>
|
#include <linux/ptrace.h>
|
||||||
#include <bpf/bpf_helpers.h>
|
#include <bpf/bpf_helpers.h>
|
||||||
|
@ -5,6 +5,7 @@ import (
|
|||||||
"debug/elf"
|
"debug/elf"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
"runtime"
|
||||||
|
|
||||||
"github.com/Masterminds/semver"
|
"github.com/Masterminds/semver"
|
||||||
"github.com/cilium/ebpf/link"
|
"github.com/cilium/ebpf/link"
|
||||||
@ -66,10 +67,21 @@ func findGoOffsets(filePath string) (goOffsets, error) {
|
|||||||
|
|
||||||
func getOffsets(filePath string) (offsets map[string]*goExtendedOffset, err error) {
|
func getOffsets(filePath string) (offsets map[string]*goExtendedOffset, err error) {
|
||||||
var engine gapstone.Engine
|
var engine gapstone.Engine
|
||||||
engine, err = gapstone.New(
|
switch runtime.GOARCH {
|
||||||
gapstone.CS_ARCH_X86,
|
case "amd64":
|
||||||
gapstone.CS_MODE_64,
|
engine, err = gapstone.New(
|
||||||
)
|
gapstone.CS_ARCH_X86,
|
||||||
|
gapstone.CS_MODE_64,
|
||||||
|
)
|
||||||
|
case "arm64":
|
||||||
|
engine, err = gapstone.New(
|
||||||
|
gapstone.CS_ARCH_ARM64,
|
||||||
|
gapstone.CS_MODE_ARM,
|
||||||
|
)
|
||||||
|
default:
|
||||||
|
err = fmt.Errorf("Unsupported architecture: %v", runtime.GOARCH)
|
||||||
|
return
|
||||||
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user