You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 11, 2023. It is now read-only.
I got a strange error while testing the tutorial, related to the assert that checks for the alignment in the read_array function of the zero crate used by redbpf:
pubfnread_array<T:Pod>(input:&[u8]) -> &[T]{let t_size = mem::size_of::<T>();assert!(t_size > 0,"Can't read arrays of zero-sized types");assert!(input.len() % t_size == 0);let addr = input.as_ptr()asusize;assert!(addr &(mem::align_of::<T>() - 1) == 0);// We speak of this assert that checks the alignmentunsafe{read_array_unsafe(input)}}
The error happens randomly, for example while commenting out the code that attach the probe to do_sys_openat2.
I think redbpf was not affected until recently, as they pushed it a few days ago to crate.io (as explained here).
A quick fix would be to call read_array_unsafe instead of read_array (same with all read occurrences, if any).
But I'm not sure I understand why this assert fails.