-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Alignment on own struct types violated by ringbuffer #483
Comments
I've had a close look at this. It seems to be that the messages in the ringbuffer are held as an array of uint32 and aligned to 1 of those (slightly pointlessly imho). To align them to 2 of those would break the IPC 'on-wire' so a server linked with a 1-aligned libqb can't talk to a new 2-aligned client, and vice-versa. So, given the level of breakage it would cause for a problem that's not really much of a practical issue (unless you know differently) I'm inclined to leave this until (if) we do a new major version of libqb. |
But how about replacing the alignment attributes with explicit padding struct members as stop gap, i.e.:
That way it would stay compatible, the misalignment access would be gone from POV of UBSan.
From top of my head the practical impact probably isn't really big, but it might affect:
So, no hard feelings from my side, and keeping this as is and open for now would be OK. |
I'm certainly not against doing that if it will help you. I don't think it fixes the fundamental problem, which is the alignment of data within the ringbuffer itself. But if your aim is simply to get rid of that message in your testing, then I'm happy to take a PR for it. |
Some libqb structs enforce specific alignment like 8 bytes for
struct qb_ipc_request_header
, but it seems that not all the code path handling such a struct enforces that, at least when using the shared memory variant, and the library can end up passing unaligned pointers around, e.g., to the msg_process callback, resulting in undefined behavior when accessing its struct members.As example use the following truncated msg_process callback:
Which is exercised on the client side by doing something along the lines of
Just for the record: The cast struct enforces 8byte alignment on members and itself:
Compiling above with ASan & (for this issue the actual relevant) UBSan, e.g. for a common Makefile it'd look something like:
one then sometimes (not always!) gets an
member access within misaligned address
error reported:After looking through the whole call chain and checking how our side and libqb sides handles pointers, it seems that misalignment comes from the libqb ring buffer implementation, namely
qb_rb_chunk_step
which steps the write pointer always bysizeof(uint32_t)
, i.e., four bytes, breaking the alignment rules of theqb_ipc_request_header
struct.If the base alignment of most (all?) public types really should be 8 bytes then we could simply increment the write_puffer always by 8 bytes.
But IMO, the 8 byte alignment is rather odd in the first place and might waste quite a bit of (CPU cache) space, albeit I did not really analyze that part closely. So, is there an actual reason for keeping those? Besides ABI breakage causing churn, naturally.
The text was updated successfully, but these errors were encountered: