|
Message-Id: <20210903101352.379FC2FC06B2@dd11108.kasserver.com> Date: Fri, 3 Sep 2021 12:13:52 +0200 (CEST) From: "J. Hanne" <musl@...hanne.name> To: musl@...ts.openwall.com Subject: CMSG_LEN macro Hi, can somebody enlighten me on the purpose of "CMSG_ALIGN (sizeof (struct cmsghdr))" in #define CMSG_LEN(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + (len)) of https://git.musl-libc.org/cgit/musl/tree/include/sys/socket.h? CMSG_ALIGN seems to round up to a multiple of sizeof(size_t) - e.g. to a multiple of 4 on x86/arm and to a multiple of 8 on x86_64/aarch64? Given struct cmsghdr, which has a size of 16 bytes on all 4 mentioned archs, I already wonder if this has an effect on any real-world architecture. But more importantly, I wonder *what* exactly is supposed to being aligned here: - Shall it put some padding *before* struct cmsghdr? That doesn't seem to make sense as the result of CMSG_LEN() goes into the cmsg_len member of struct cmsg, so it would seem strange to me to include bytes preceding the struct in its length field. - Shall it put some padding *after* struct cmsghdr? In this case, CMSG_DATA would be wrong as it puts the data directly behind struct cmsghdr without any padding between. Regards, Johann
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.