public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Andreas Roeseler <andreas.a.roeseler@gmail.com>
To: Adhemerval Zanella <adhemerval.zanella@linaro.org>,
	libc-alpha@sourceware.org
Cc: fweimer@redhat.com
Subject: Re: [PATCH V4] Add RFC 8335 Definitions from Linux 5.13
Date: Sun, 11 Jul 2021 10:39:04 -0500	[thread overview]
Message-ID: <fbeda518-61d7-e412-d6b0-82cb854e0565@gmail.com> (raw)
In-Reply-To: <150a1fef-ce9e-4f7d-697e-4b945fc194c5@linaro.org>

On 6/29/2021 1:17 PM, Adhemerval Zanella wrote:
> 
> 
> On 03/06/2021 11:26, Andreas Roeseler via Libc-alpha wrote:
>> RFC 8335 defines the network utility PROBE, which builds off of the
>> capabilities of Ping to query more detailed interface information from
>> networking nodes.
>>
>> The definitions included in this patchset have been accepted into the
>> linux net-next branch and will be included in Linux 5.13. This
>> patchset adds the same definitions to the glibc for use in the
>> iputils package.
>>
>> The relevant commits for the Linux definitions can be found here:
>> https://github.com/torvalds/linux/commit/e542d29ca81d005651680a0a697b72ca13ddc4cc
>> https://github.com/torvalds/linux/commit/750f4fc2a12f6632b5aa04526bf57fa06bfe8467
>>
>> These changes have been tested by running the glibc tests on x86_64
>>
>> Signed-off-by: Andreas Roeseler <andreas.a.roeseler@gmail.com>
> 
> LGTM, thanks. The values match the referred kernel commits.
> 
> Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
> 

Bump

>> ---
>> Changes:
>> v1 -> v2:
>> - Add more specific prefixes to constants
>>
>> v2 -> v3:
>> - Updated URLs
>> - Corrected Linux version that will include the definitions (5.13)
>>
>> v3 -> v4:
>> - Updated URLs to Linus branch
>> - Added V to ICMPV6 definitions
>> ---
>>  inet/netinet/icmp6.h          |  2 ++
>>  sysdeps/gnu/netinet/ip_icmp.h | 18 ++++++++++++++++++
>>  2 files changed, 20 insertions(+)
>>
>> diff --git a/inet/netinet/icmp6.h b/inet/netinet/icmp6.h
>> index 22b82335ec..151347987f 100644
>> --- a/inet/netinet/icmp6.h
>> +++ b/inet/netinet/icmp6.h
>> @@ -69,6 +69,8 @@ struct icmp6_hdr
>>  #define MLD_LISTENER_QUERY          130
>>  #define MLD_LISTENER_REPORT         131
>>  #define MLD_LISTENER_REDUCTION      132
>> +#define ICMPV6_EXT_ECHO_REQUEST	    160
>> +#define ICMPV6_EXT_ECHO_REPLY	    161
>>  
>>  #define ICMP6_DST_UNREACH_NOROUTE     0 /* no route to destination */
>>  #define ICMP6_DST_UNREACH_ADMIN       1 /* communication with destination */
>> diff --git a/sysdeps/gnu/netinet/ip_icmp.h b/sysdeps/gnu/netinet/ip_icmp.h
>> index 5db7ac7c37..ec7137253f 100644
>> --- a/sysdeps/gnu/netinet/ip_icmp.h
>> +++ b/sysdeps/gnu/netinet/ip_icmp.h
>> @@ -89,6 +89,24 @@ struct icmphdr
>>  #define ICMP_EXC_TTL		0	/* TTL count exceeded		*/
>>  #define ICMP_EXC_FRAGTIME	1	/* Fragment Reass time exceeded	*/
>>  
>> +/* Codes for ICMP_EXT_ECHO (PROBE) */
>> +#define ICMP_EXT_ECHO		42
>> +#define ICMP_EXT_ECHOREPLY	43
>> +#define ICMP_EXT_CODE_MAL_QUERY	1	/* Malformed Query */
>> +#define ICMP_EXT_CODE_NO_IF	2	/* No such Interface */
>> +#define ICMP_EXT_CODE_NO_TABLE_ENT	3	/* No table entry */
>> +#define ICMP_EXT_CODE_MULT_IFS	4	/* Multiple Interfaces Satisfy Query */
>> +
>> +/* Constants for EXT_ECHO (PROBE) */
>> +#define ICMP_EXT_ECHOREPLY_ACTIVE	(1 << 2)/* active bit in reply */
>> +#define ICMP_EXT_ECHOREPLY_IPV4		(1 << 1)/* ipv4 bit in reply */
>> +#define ICMP_EXT_ECHOREPLY_IPV6		1	/* ipv6 bit in reply */
>> +#define ICMP_EXT_ECHO_CTYPE_NAME	1
>> +#define ICMP_EXT_ECHO_CTYPE_INDEX	2
>> +#define ICMP_EXT_ECHO_CTYPE_ADDR	3
>> +#define ICMP_AFI_IP			1	/* Address Family Identifier for IPV4 */
>> +#define ICMP_AFI_IP6			2	/* Address Family Identifier for IPV6 */
>> +
>>  
>>  #ifdef __USE_MISC
>>  /*
>>


  reply	other threads:[~2021-07-11 15:39 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-03 14:26 Andreas Roeseler
2021-06-21 13:00 ` Andreas Roeseler
2021-06-28 12:50   ` Andreas Roeseler
2021-06-29 18:17 ` Adhemerval Zanella
2021-07-11 15:39   ` Andreas Roeseler [this message]
2021-07-12  6:00     ` Florian Weimer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=fbeda518-61d7-e412-d6b0-82cb854e0565@gmail.com \
    --to=andreas.a.roeseler@gmail.com \
    --cc=adhemerval.zanella@linaro.org \
    --cc=fweimer@redhat.com \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).