mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2025-12-31 21:06:25 +00:00
emit license
This commit is contained in:
@ -3,13 +3,17 @@ CFLAGS := -O2 -emit-llvm -target bpf -c
|
|||||||
|
|
||||||
SRC := example.bpf.c
|
SRC := example.bpf.c
|
||||||
OUT := example.bpf.ll
|
OUT := example.bpf.ll
|
||||||
|
OBJECT := example.bpf.o
|
||||||
|
|
||||||
.PHONY: all clean
|
.PHONY: all clean
|
||||||
|
|
||||||
all: $(OUT)
|
all: $(OUT)
|
||||||
|
|
||||||
|
object: $(SRC)
|
||||||
|
$(BPF_CLANG) $(CFLAGS) $< -o $(OBJECT)
|
||||||
|
|
||||||
$(OUT): $(SRC)
|
$(OUT): $(SRC) object
|
||||||
$(BPF_CLANG) $(CFLAGS) -S $< -o $@
|
$(BPF_CLANG) $(CFLAGS) -S $< -o $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(OUT)
|
rm -f $(OUT) $(OBJECT)
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
from pythonbpf.decorators import tracepoint, license
|
from pythonbpf.decorators import tracepoint
|
||||||
|
|
||||||
@tracepoint("syscalls:sys_enter_execve")
|
@tracepoint("syscalls:sys_enter_execve")
|
||||||
def trace_execve(ctx) -> int:
|
def trace_execve(ctx) -> int:
|
||||||
print("execve called\n")
|
print("execve called\n")
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
license("GPL")
|
LICENSE = "GPL"
|
||||||
|
|||||||
@ -1,28 +1,20 @@
|
|||||||
import ast
|
import ast
|
||||||
from llvmlite import ir
|
from llvmlite import ir
|
||||||
|
from .license_pass import license_processing
|
||||||
|
|
||||||
def parser(source_code, filename):
|
def processor(source_code, filename, module):
|
||||||
tree = ast.parse(source_code, filename)
|
tree = ast.parse(source_code, filename)
|
||||||
|
license_processing(tree, module)
|
||||||
for node in tree.body:
|
|
||||||
if isinstance(node, ast.FunctionDef):
|
|
||||||
print("Function:", node.name)
|
|
||||||
for dec in node.decorator_list:
|
|
||||||
print(" Decorator AST:", ast.dump(dec))
|
|
||||||
|
|
||||||
def compile_to_ir(filename: str, output: str):
|
def compile_to_ir(filename: str, output: str):
|
||||||
with open(filename) as f:
|
with open(filename) as f:
|
||||||
parser(f.read(), filename)
|
source = f.read()
|
||||||
|
|
||||||
module = ir.Module(name=filename)
|
module = ir.Module(name=filename)
|
||||||
module.data_layout = "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128"
|
module.data_layout = "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128"
|
||||||
module.triple = "bpf"
|
module.triple = "bpf"
|
||||||
|
|
||||||
func_ty = ir.FunctionType(ir.IntType(64), [], False)
|
processor(source, filename, module)
|
||||||
func = ir.Function(module, func_ty, name="trace_execve")
|
|
||||||
|
|
||||||
block = func.append_basic_block(name="entry")
|
|
||||||
builder = ir.IRBuilder(block)
|
|
||||||
builder.ret(ir.IntType(64)(0))
|
|
||||||
|
|
||||||
with open(output, "w") as f:
|
with open(output, "w") as f:
|
||||||
f.write(str(module))
|
f.write(str(module))
|
||||||
|
|||||||
@ -3,6 +3,3 @@ def tracepoint(name: str):
|
|||||||
fn._section = f"tracepoint/{name}"
|
fn._section = f"tracepoint/{name}"
|
||||||
return fn
|
return fn
|
||||||
return wrapper
|
return wrapper
|
||||||
|
|
||||||
def license(license_type: str):
|
|
||||||
return license_type
|
|
||||||
|
|||||||
33
pythonbpf/license_pass.py
Normal file
33
pythonbpf/license_pass.py
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
from llvmlite import ir
|
||||||
|
import ast
|
||||||
|
|
||||||
|
def emit_license(module: ir.Module, license_str: str):
|
||||||
|
license_bytes = license_str.encode("utf8") + b"\x00"
|
||||||
|
elems = [ir.Constant(ir.IntType(8), b) for b in license_bytes]
|
||||||
|
ty = ir.ArrayType(ir.IntType(8), len(elems))
|
||||||
|
|
||||||
|
gvar = ir.GlobalVariable(module, ty, name="LICENSE")
|
||||||
|
|
||||||
|
gvar.initializer = ir.Constant(ty, elems) # type: ignore
|
||||||
|
|
||||||
|
gvar.align = 1 # type: ignore
|
||||||
|
gvar.linkage = "dso_local" # type: ignore
|
||||||
|
gvar.global_constant = False # must be global, not constant
|
||||||
|
gvar.section = "license" # type: ignore
|
||||||
|
|
||||||
|
return gvar
|
||||||
|
|
||||||
|
def license_processing(tree, module):
|
||||||
|
count = 0
|
||||||
|
for node in tree.body:
|
||||||
|
if isinstance(node, ast.Assign):
|
||||||
|
for target in node.targets:
|
||||||
|
if isinstance(target, ast.Name) and target.id == "LICENSE":
|
||||||
|
if count == 0:
|
||||||
|
count += 1
|
||||||
|
if isinstance(node.value, ast.Constant) and isinstance(node.value.value, str):
|
||||||
|
emit_license(module, node.value.value)
|
||||||
|
else:
|
||||||
|
print("ERROR: LICENSE must be a string literal")
|
||||||
|
else:
|
||||||
|
print("ERROR: LICENSE already assigned")
|
||||||
Reference in New Issue
Block a user