|
|
|
|
|
by madog
1138 days ago
|
|
What you can do is quite limited. You're restricted to some preset eBPF program types, and each program type has a restricted set of operations it can perform (eBPF helper methods). So arbitrary modifications, absolutely not without adding a helper method and/or program type for this purpose. More program types and helper methods are being added all the time but overall it's pretty limited in use cases and operations. If you want full control then kernel module is the way to go, but this doesn't have the same security and stability guarantees. |
|