mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2025-12-31 21:06:25 +00:00
make semantics work other than field diffs
This commit is contained in:
@ -40,43 +40,22 @@ def process_vmlinux_post_ast(
|
|||||||
type_length: Optional[int] = None
|
type_length: Optional[int] = None
|
||||||
module_name = getattr(elem_type_class, "__module__", None)
|
module_name = getattr(elem_type_class, "__module__", None)
|
||||||
|
|
||||||
if hasattr(elem_type_class, "_length_") and is_complex_type:
|
|
||||||
type_length = elem_type_class._length_
|
|
||||||
|
|
||||||
if current_symbol_name in processing_stack:
|
if current_symbol_name in processing_stack:
|
||||||
logger.debug(
|
logger.info(
|
||||||
f"Circular dependency detected for {current_symbol_name}, skipping"
|
f"Circular dependency detected for {current_symbol_name}, skipping"
|
||||||
)
|
)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
# Check if already processed
|
# Check if already processed
|
||||||
if handler.has_node(current_symbol_name):
|
if handler.has_node(current_symbol_name):
|
||||||
existing_node = handler.get_node(current_symbol_name)
|
logger.info(f"Node {current_symbol_name} already processed and ready")
|
||||||
# If the node exists and is ready, we're done
|
return True
|
||||||
if existing_node and existing_node.is_ready:
|
|
||||||
logger.info(f"Node {current_symbol_name} already processed and ready")
|
|
||||||
return True
|
|
||||||
|
|
||||||
processing_stack.add(current_symbol_name)
|
processing_stack.add(current_symbol_name)
|
||||||
|
|
||||||
if module_name == "vmlinux":
|
if module_name == "vmlinux":
|
||||||
if hasattr(elem_type_class, "_type_"):
|
if hasattr(elem_type_class, "_type_"):
|
||||||
is_complex_type = True
|
pass
|
||||||
containing_type = elem_type_class._type_
|
|
||||||
if containing_type.__module__ == "vmlinux":
|
|
||||||
print("Very weird type ig for containing type", containing_type)
|
|
||||||
elif containing_type.__module__ == ctypes.__name__:
|
|
||||||
if isinstance(elem_type_class, type):
|
|
||||||
if issubclass(elem_type_class, ctypes.Array):
|
|
||||||
ctype_complex_type = ctypes.Array
|
|
||||||
elif issubclass(elem_type_class, ctypes._Pointer):
|
|
||||||
ctype_complex_type = ctypes._Pointer
|
|
||||||
else:
|
|
||||||
raise TypeError("Unsupported ctypes subclass")
|
|
||||||
# handle ctype complex type
|
|
||||||
|
|
||||||
else:
|
|
||||||
raise ImportError(f"Unsupported module of {containing_type}")
|
|
||||||
else:
|
else:
|
||||||
new_dep_node = DependencyNode(name=current_symbol_name)
|
new_dep_node = DependencyNode(name=current_symbol_name)
|
||||||
handler.add_node(new_dep_node)
|
handler.add_node(new_dep_node)
|
||||||
@ -103,6 +82,40 @@ def process_vmlinux_post_ast(
|
|||||||
logger.debug(
|
logger.debug(
|
||||||
f"Processing vmlinux field: {elem_name}, type: {elem_type}"
|
f"Processing vmlinux field: {elem_name}, type: {elem_type}"
|
||||||
)
|
)
|
||||||
|
if hasattr(elem_type, "_type_"):
|
||||||
|
is_complex_type = True
|
||||||
|
containing_type = elem_type._type_
|
||||||
|
if hasattr(elem_type, "_length_") and is_complex_type:
|
||||||
|
type_length = elem_type._length_
|
||||||
|
if containing_type.__module__ == "vmlinux":
|
||||||
|
pass
|
||||||
|
elif containing_type.__module__ == ctypes.__name__:
|
||||||
|
if isinstance(elem_type, type):
|
||||||
|
if issubclass(elem_type, ctypes.Array):
|
||||||
|
ctype_complex_type = ctypes.Array
|
||||||
|
elif issubclass(elem_type, ctypes._Pointer):
|
||||||
|
ctype_complex_type = ctypes._Pointer
|
||||||
|
else:
|
||||||
|
raise TypeError("Unsupported ctypes subclass")
|
||||||
|
else:
|
||||||
|
raise ImportError(
|
||||||
|
f"Unsupported module of {containing_type}"
|
||||||
|
)
|
||||||
|
logger.info(f"{containing_type} containing type of parent {elem_name} with {elem_type} and ctype {ctype_complex_type} and length {type_length}")
|
||||||
|
new_dep_node.set_field_containing_type(elem_name, containing_type)
|
||||||
|
new_dep_node.set_field_type_size(elem_name, type_length)
|
||||||
|
new_dep_node.set_field_ctype_complex_type(elem_name, ctype_complex_type)
|
||||||
|
new_dep_node.set_field_type(elem_name, elem_type)
|
||||||
|
if containing_type.__module__ == "vmlinux":
|
||||||
|
if process_vmlinux_post_ast(
|
||||||
|
containing_type, llvm_handler, handler, processing_stack
|
||||||
|
):
|
||||||
|
new_dep_node.set_field_ready(elem_name, True)
|
||||||
|
elif containing_type.__module__ == ctypes.__name__:
|
||||||
|
logger.info(f"Processing ctype internal{containing_type}")
|
||||||
|
else:
|
||||||
|
raise TypeError("Module not supported in recursive resolution")
|
||||||
|
continue
|
||||||
if process_vmlinux_post_ast(
|
if process_vmlinux_post_ast(
|
||||||
elem_type, llvm_handler, handler, processing_stack
|
elem_type, llvm_handler, handler, processing_stack
|
||||||
):
|
):
|
||||||
@ -111,7 +124,6 @@ def process_vmlinux_post_ast(
|
|||||||
raise ValueError(
|
raise ValueError(
|
||||||
f"{elem_name} with type {elem_type} from module {module_name} not supported in recursive resolver"
|
f"{elem_name} with type {elem_type} from module {module_name} not supported in recursive resolver"
|
||||||
)
|
)
|
||||||
print("")
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
raise ImportError("UNSUPPORTED Module")
|
raise ImportError("UNSUPPORTED Module")
|
||||||
|
|||||||
@ -9,6 +9,7 @@ class Field:
|
|||||||
|
|
||||||
name: str
|
name: str
|
||||||
type: type
|
type: type
|
||||||
|
ctype_complex_type: Optional[Any]
|
||||||
containing_type: Optional[Any]
|
containing_type: Optional[Any]
|
||||||
type_size: Optional[int]
|
type_size: Optional[int]
|
||||||
value: Any = None
|
value: Any = None
|
||||||
@ -44,6 +45,12 @@ class Field:
|
|||||||
if mark_ready:
|
if mark_ready:
|
||||||
self.ready = True
|
self.ready = True
|
||||||
|
|
||||||
|
def set_ctype_complex_type(self, ctype_complex_type: Any, mark_ready: bool = True) -> None:
|
||||||
|
"""Set the ctype_complex_type of this field and optionally mark it as ready."""
|
||||||
|
self.ctype_complex_type = ctype_complex_type
|
||||||
|
if mark_ready:
|
||||||
|
self.ready = True
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
class DependencyNode:
|
class DependencyNode:
|
||||||
@ -100,6 +107,7 @@ class DependencyNode:
|
|||||||
initial_value: Any = None,
|
initial_value: Any = None,
|
||||||
containing_type: Optional[Any] = None,
|
containing_type: Optional[Any] = None,
|
||||||
type_size: Optional[int] = None,
|
type_size: Optional[int] = None,
|
||||||
|
ctype_complex_type: Optional[int] = None,
|
||||||
ready: bool = False,
|
ready: bool = False,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Add a field to the node with an optional initial value and readiness state."""
|
"""Add a field to the node with an optional initial value and readiness state."""
|
||||||
@ -110,6 +118,7 @@ class DependencyNode:
|
|||||||
ready=ready,
|
ready=ready,
|
||||||
containing_type=containing_type,
|
containing_type=containing_type,
|
||||||
type_size=type_size,
|
type_size=type_size,
|
||||||
|
ctype_complex_type=ctype_complex_type
|
||||||
)
|
)
|
||||||
# Invalidate readiness cache
|
# Invalidate readiness cache
|
||||||
self._ready_cache = None
|
self._ready_cache = None
|
||||||
@ -158,6 +167,17 @@ class DependencyNode:
|
|||||||
# Invalidate readiness cache
|
# Invalidate readiness cache
|
||||||
self._ready_cache = None
|
self._ready_cache = None
|
||||||
|
|
||||||
|
def set_field_ctype_complex_type(
|
||||||
|
self, name: str, ctype_complex_type: Any, mark_ready: bool = True
|
||||||
|
) -> None:
|
||||||
|
"""Set a field's ctype_complex_type and optionally mark it as ready."""
|
||||||
|
if name not in self.fields:
|
||||||
|
raise KeyError(f"Field '{name}' does not exist in node '{self.name}'")
|
||||||
|
|
||||||
|
self.fields[name].set_ctype_complex_type(ctype_complex_type, mark_ready)
|
||||||
|
# Invalidate readiness cache
|
||||||
|
self._ready_cache = None
|
||||||
|
|
||||||
def set_field_ready(self, name: str, is_ready: bool = True) -> None:
|
def set_field_ready(self, name: str, is_ready: bool = True) -> None:
|
||||||
"""Mark a field as ready or not ready."""
|
"""Mark a field as ready or not ready."""
|
||||||
if name not in self.fields:
|
if name not in self.fields:
|
||||||
|
|||||||
@ -1,10 +1,9 @@
|
|||||||
from pythonbpf import bpf, map, section, bpfglobal, compile, compile_to_ir
|
from pythonbpf import bpf, map, section, bpfglobal, compile_to_ir
|
||||||
from pythonbpf.maps import HashMap
|
from pythonbpf.maps import HashMap
|
||||||
from pythonbpf.helper import XDP_PASS
|
from pythonbpf.helper import XDP_PASS
|
||||||
from vmlinux import struct_xdp_md
|
from vmlinux import struct_xdp_md
|
||||||
from vmlinux import struct_ring_buffer_per_cpu # noqa: F401
|
# from vmlinux import struct_ring_buffer_per_cpu # noqa: F401
|
||||||
|
from vmlinux import struct_xdp_buff # noqa: F401
|
||||||
# from vmlinux import struct_xdp_buff # noqa: F401
|
|
||||||
# from vmlinux import struct_xdp_md
|
# from vmlinux import struct_xdp_md
|
||||||
from ctypes import c_int64
|
from ctypes import c_int64
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user