Date: Fri, 26 Apr 2024 17:06:31 -0600 From: Warner Losh <imp@bsdimp.com> To: Mike Karels <mike@karels.net> Cc: FreeBSD Net <freebsd-net@freebsd.org> Subject: Re: Question about netinet6/in6.h Message-ID: <CANCZdfrtxsGKKn3bzaWRDhYphYb0DuZ7VTOWeTbR_8X980u_1A@mail.gmail.com> In-Reply-To: <AA706B2F-1C77-47B7-915E-6574E1F3654C@karels.net> References: <CANCZdfrDTktpyW9Ad=3-K9qnVYmY_wCnrmyizvgwJktVfHfV3Q@mail.gmail.com> <229EB3F8-FB68-461C-BF1F-3B2846510EBA@karels.net> <AA706B2F-1C77-47B7-915E-6574E1F3654C@karels.net>
next in thread | previous in thread | raw e-mail | index | archive | help
[-- Attachment #1 --]
On Fri, Apr 26, 2024 at 4:21 PM Mike Karels <mike@karels.net> wrote:
> On 26 Apr 2024, at 15:49, Mike Karels wrote:
>
> > On 26 Apr 2024, at 15:01, Warner Losh wrote:
> >
> >> This has to be a FAQ
> >>
> >> I'm porting a program from Linux, I often see an error like:
> >> ./test/mock-ifaddrs.c:95:19: error: no member named 's6_addr32' in
> 'struct
> >> in6_addr'
> >> 95 | ipv6->sin6_addr.s6_addr32[3] = 0;
> >> | ~~~~~~~~~~~~~~~ ^
> >> but yet, we kinda define them, but only for the kernel and boot loader:
> >> /*
> >> * IPv6 address
> >> */
> >> struct in6_addr {
> >> union {
> >> uint8_t __u6_addr8[16];
> >> uint16_t __u6_addr16[8];
> >> uint32_t __u6_addr32[4];
> >> } __u6_addr; /* 128-bit IP6 address */
> >> };
> >>
> >> #define s6_addr __u6_addr.__u6_addr8
> >> #if defined(_KERNEL) || defined(_STANDALONE) /* XXX nonstandard */
> >> #define s6_addr8 __u6_addr.__u6_addr8
> >> #define s6_addr16 __u6_addr.__u6_addr16
> >> #define s6_addr32 __u6_addr.__u6_addr32
> >> #endif
> >>
> >> I'm wondering if anybody why it's like that? git blame suggests we
> imported
> >> that from kame, with
> >> only tweaks by people that are now deceased*.*
> >>
> >> Why not just expose them?
> >
> > Looks like only s6_addr is specified in the RFCs (2553 and 3493). Oddly,
> > though, the RFCs give an example implementation using that union with
> > different element names (like _S6_u8), and show the one #define.
> > Similarly, POSIX specifies only s6_addr, but it allows other members
> > of the structure, so I don't see a problem with exposing them all even
> > in a POSIX environment.
> >
> > I would have no objection to exposing all four definitions, especially
> > if Linux apps use them.
>
> I put the change, along with an explanatory comment, in
> https://reviews.freebsd.org/D44979. Comments welcome.
>
Thanks! I was testing a similar change, but I like yours better... though
maybe
we should just make it visible when __BSD_VISIBLE is true.... I'll have to
look
closely at what Linux does here... I think they have it always visible, or
at least
musl does that (glibc is harder to track down due to the many layers of
indirection).
Warner
[-- Attachment #2 --]
<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Apr 26, 2024 at 4:21 PM Mike Karels <<a href="mailto:mike@karels.net">mike@karels.net</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 26 Apr 2024, at 15:49, Mike Karels wrote:<br>
<br>
> On 26 Apr 2024, at 15:01, Warner Losh wrote:<br>
><br>
>> This has to be a FAQ<br>
>><br>
>> I'm porting a program from Linux, I often see an error like:<br>
>> ./test/mock-ifaddrs.c:95:19: error: no member named 's6_addr32' in 'struct<br>
>> in6_addr'<br>
>>Â Â 95 |Â Â Â Â Â Â Â Â Â ipv6->sin6_addr.s6_addr32[3] = 0;<br>
>>Â Â Â Â |Â Â Â Â Â Â Â Â Â ~~~~~~~~~~~~~~~ ^<br>
>> but yet, we kinda define them, but only for the kernel and boot loader:<br>
>> /*<br>
>>Â * IPv6 address<br>
>>Â */<br>
>> struct in6_addr {<br>
>>Â Â Â Â Â union {<br>
>>         uint8_t     __u6_addr8[16];<br>
>>         uint16_t    __u6_addr16[8];<br>
>>         uint32_t    __u6_addr32[4];<br>
>>Â Â Â Â Â } __u6_addr;Â Â Â Â Â Â Â Â Â Â /* 128-bit IP6 address */<br>
>> };<br>
>><br>
>> #define s6_addr  __u6_addr.__u6_addr8<br>
>> #if defined(_KERNEL) || defined(_STANDALONE) /* XXX nonstandard */<br>
>> #define s6_addr8Â __u6_addr.__u6_addr8<br>
>> #define s6_addr16 __u6_addr.__u6_addr16<br>
>> #define s6_addr32 __u6_addr.__u6_addr32<br>
>> #endif<br>
>><br>
>> I'm wondering if anybody why it's like that? git blame suggests we imported<br>
>> that from kame, with<br>
>> only tweaks by people that are now deceased*.*<br>
>><br>
>> Why not just expose them?<br>
><br>
> Looks like only s6_addr is specified in the RFCs (2553 and 3493). Oddly,<br>
> though, the RFCs give an example implementation using that union with<br>
> different element names (like _S6_u8), and show the one #define.<br>
> Similarly, POSIX specifies only s6_addr, but it allows other members<br>
> of the structure, so I don't see a problem with exposing them all even<br>
> in a POSIX environment.<br>
><br>
> I would have no objection to exposing all four definitions, especially<br>
> if Linux apps use them.<br>
<br>
I put the change, along with an explanatory comment, in<br>
<a href="https://reviews.freebsd.org/D44979" rel="noreferrer" target="_blank">https://reviews.freebsd.org/D44979</a>. Comments welcome.<br></blockquote><div><br></div><div>Thanks! I was testing a similar change, but I like yours better... though maybe</div><div>we should just make it visible when __BSD_VISIBLE is true.... I'll have to look</div><div>closely at what Linux does here... I think they have it always visible, or at least</div><div>musl does that (glibc is harder to track down due to the many layers of indirection).</div><div><br></div><div>Warner<br></div></div></div>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CANCZdfrtxsGKKn3bzaWRDhYphYb0DuZ7VTOWeTbR_8X980u_1A>
