Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 11 Aug 2017 13:15:46 +0200
From:      Stefan Esser <se@freebsd.org>
To:        "Andrey V. Elsukov" <bu7cher@yandex.ru>, raichoo <raichoo@googlemail.com>
Cc:        freebsd-hackers@freebsd.org
Subject:   Re: `ifconfig` patch to resolve IPv6 scope names
Message-ID:  <2cb5043d-57cb-d0a8-0432-caf72069afe6@freebsd.org>
In-Reply-To: <92290fd6-fa7f-5d62-732a-1353af612297@yandex.ru>
References:  <CAJaUxeyRQoQkVdb3jNim_BVbdtBp0hM1pn3AiaR_DPJZAyQapg@mail.gmail.com> <8ebce8ed-5b3f-2b59-5b37-f6af7f3d4c2b@yandex.ru> <CAJaUxexd2ez=DezquYCcFiUG81K4tDEVTNNFnfe6u2-MZjiYZg@mail.gmail.com> <92290fd6-fa7f-5d62-732a-1353af612297@yandex.ru>

next in thread | previous in thread | raw e-mail | index | archive | help
Am 11.08.17 um 11:58 schrieb Andrey V. Elsukov:
> On 10.08.2017 23:02, raichoo via freebsd-hackers wrote:
>> Oh boy, should have read more code before posting that ^^.
>>
>> Thanks a lot for your feedback :)
>>
>> I've modified that patch to make it use the macros defined in in6.h. I'm
>> also quite
>> aware that this patch might be rejected since it might break script
>> depending on `ifconfig`
>> output. But it's a useful little learning experience anyway :)
>>
>> Kind regards,
>> raichoo
>>
>> Here's the new iteration:
>>
>> diff --git a/sbin/ifconfig/af_inet6.c b/sbin/ifconfig/af_inet6.c
>> index e93d94355e..e1d44395c9 100644
>> --- a/sbin/ifconfig/af_inet6.c
>> +++ b/sbin/ifconfig/af_inet6.c
>> @@ -167,6 +167,35 @@ setip6eui64(const char *cmd, int dummy __unused, int s,
>>  }
>>
>>  static void
>> +in6_addr_scope(const struct in6_addr *addr)
>> +{
>> +    if (IN6_IS_ADDR_LINKLOCAL(addr))
>> +        printf("link-local ");
>> +    else if (IN6_IS_ADDR_SITELOCAL(addr))
>> +        printf("site-local ");
>> +    else if (IN6_IS_ADDR_MULTICAST(addr)) {
>> +        printf("multicast ");
>> +        switch (__IPV6_ADDR_MC_SCOPE(addr)) {
>> +        case __IPV6_ADDR_SCOPE_NODELOCAL:
>> +            printf("node-local ");
>> +            break;
>> +        case __IPV6_ADDR_SCOPE_LINKLOCAL:
>> +            printf("link-local ");
>> +            break;
>> +        case __IPV6_ADDR_SCOPE_SITELOCAL:
>> +            printf("site-local ");
>> +            break;
>> +        case __IPV6_ADDR_SCOPE_ORGLOCAL:
>> +            printf("organization-local ");
>> +            break;
>> +        case __IPV6_ADDR_SCOPE_GLOBAL:
>> +            printf("global ");
>> +            break;
>> +        }
>> +    }
>> +}
> 
> Hi,
> 
> I'm not sure how it is useful configuring multicast addresses on the
> interface. I think there are only four possible useful cases:
> 1. loopback address should be marked as link-local
> 2. link-local addresses should be marked as link-local
> 3. site-local addresses should be marked as site-local
> 4. all other non multicast addresses should be marked as global
> 
> Also, AFAIR, the site-local scope was deprecated a long time ago.

Yes, but I think printing this extra information is still useful, at
least for an less experienced user who does not have memorized the
different scope types.

It doesn't matter, if a (possible) configuration makes sense, this
patch just reports what's already configured ...

If a site-local address is in use, it will be immediately obvious,
and thus it makes sense to include it in the scope list, even if it
should never be reported ;-)

I'd like to see this patch committed ...

Regards, STefan



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?2cb5043d-57cb-d0a8-0432-caf72069afe6>