[V3] Add RFC 8335 Definitions from Linux 5.13

Message ID 20210502225854.3295-1-andreas.a.roeseler@gmail.com
State Superseded
Delegated to: Florian Weimer
Headers
Series [V3] Add RFC 8335 Definitions from Linux 5.13 |

Commit Message

Andreas Roeseler May 2, 2021, 10:58 p.m. UTC
  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://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=e542d29ca81d005651680a0a697b72ca13ddc4cc
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=750f4fc2a12f6632b5aa04526bf57fa06bfe8467

These changes have been tested by running the glibc tests on x86_64

Signed-off-by: Andreas Roeseler <andreas.a.roeseler@gmail.com>
---
Changes:
v1 -> v2:
- Add more specific prefixes to constants

v2 -> v3:
- Updated URLs
- Corrected Linux version that will include the definitions (5.13)
---
 inet/netinet/icmp6.h          |  2 ++
 sysdeps/gnu/netinet/ip_icmp.h | 18 ++++++++++++++++++
 2 files changed, 20 insertions(+)
  

Comments

Andreas Roeseler May 11, 2021, 9:33 p.m. UTC | #1
On Sun, 2021-05-02 at 17:58 -0500, Andreas Roeseler 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://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=e542d29ca81d005651680a0a697b72ca13ddc4cc
> https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=750f4fc2a12f6632b5aa04526bf57fa06bfe8467
> 
> These changes have been tested by running the glibc tests on x86_64
> 
> Signed-off-by: Andreas Roeseler <andreas.a.roeseler@gmail.com>
> ---
> Changes:
> v1 -> v2:
> - Add more specific prefixes to constants
> 
> v2 -> v3:
> - Updated URLs
> - Corrected Linux version that will include the definitions (5.13)
> ---
>  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..f0df16123e 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 ICMP6_EXT_ECHO_REQUEST     160
> +#define ICMP6_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
>  /*

Bumping this patch.
Please let me know if there is any feedback/comments.
  
Andreas Roeseler May 17, 2021, 4:33 p.m. UTC | #2
On 5/11/2021 4:33 PM, Andreas Roeseler wrote:
> On Sun, 2021-05-02 at 17:58 -0500, Andreas Roeseler 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://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=e542d29ca81d005651680a0a697b72ca13ddc4cc
>> https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=750f4fc2a12f6632b5aa04526bf57fa06bfe8467
>>
>> These changes have been tested by running the glibc tests on x86_64
>>
>> Signed-off-by: Andreas Roeseler <andreas.a.roeseler@gmail.com>
>> ---
>> Changes:
>> v1 -> v2:
>> - Add more specific prefixes to constants
>>
>> v2 -> v3:
>> - Updated URLs
>> - Corrected Linux version that will include the definitions (5.13)
>> ---
>>   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..f0df16123e 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 ICMP6_EXT_ECHO_REQUEST     160
>> +#define ICMP6_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
>>   /*
> Bumping this patch.
> Please let me know if there is any feedback/comments.


Bumping this patch
  
Andreas Roeseler June 2, 2021, 3:10 p.m. UTC | #3
On 5/17/2021 11:33 AM, Andreas Roeseler wrote:
>
> On 5/11/2021 4:33 PM, Andreas Roeseler wrote:
>> On Sun, 2021-05-02 at 17:58 -0500, Andreas Roeseler 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://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=e542d29ca81d005651680a0a697b72ca13ddc4cc 
>>>
>>> https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=750f4fc2a12f6632b5aa04526bf57fa06bfe8467 
>>>
>>>
>>> These changes have been tested by running the glibc tests on x86_64
>>>
>>> Signed-off-by: Andreas Roeseler <andreas.a.roeseler@gmail.com>
>>> ---
>>> Changes:
>>> v1 -> v2:
>>> - Add more specific prefixes to constants
>>>
>>> v2 -> v3:
>>> - Updated URLs
>>> - Corrected Linux version that will include the definitions (5.13)
>>> ---
>>>   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..f0df16123e 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 ICMP6_EXT_ECHO_REQUEST     160
>>> +#define ICMP6_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
>>>   /*
>> Bumping this patch.
>> Please let me know if there is any feedback/comments.
>
>
> Bumping this patch

Bump
  
Florian Weimer June 3, 2021, 6:45 a.m. UTC | #4
* Andreas Roeseler:

> 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://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=e542d29ca81d005651680a0a697b72ca13ddc4cc
> https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=750f4fc2a12f6632b5aa04526bf57fa06bfe8467

I think this has been merged into Linus' tree now, so perhaps you should
reference those commits?

> diff --git a/inet/netinet/icmp6.h b/inet/netinet/icmp6.h
> index 22b82335ec..f0df16123e 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 ICMP6_EXT_ECHO_REQUEST	    160
> +#define ICMP6_EXT_ECHO_REPLY	    161

I see this in the UAPI headers (with an extra V):

#define ICMPV6_EXT_ECHO_REQUEST         160
#define ICMPV6_EXT_ECHO_REPLY           161

Thanks,
Florian
  

Patch

diff --git a/inet/netinet/icmp6.h b/inet/netinet/icmp6.h
index 22b82335ec..f0df16123e 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 ICMP6_EXT_ECHO_REQUEST	    160
+#define ICMP6_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
 /*