All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V3 net-next 0/5] add support for RFC 8335 PROBE
@ 2021-02-17 18:07 Andreas Roeseler
  2021-02-17 18:07 ` [PATCH V3 net-next 1/5] icmp: " Andreas Roeseler
                   ` (5 more replies)
  0 siblings, 6 replies; 11+ messages in thread
From: Andreas Roeseler @ 2021-02-17 18:07 UTC (permalink / raw)
  To: davem; +Cc: yoshfuji, dsahern, kuba, netdev, kernel test robot, Dan Carpenter

The popular utility ping has several severe limitations such as the
inability to query specific interfaces on a node and requiring
bidirectional connectivity between the probing and probed interfaces.
RFC 8335 attempts to solve these limitations by creating the new utility
PROBE which is a specialized ICMP message that makes use of the ICMP
Extention Structure outlined in RFC 4884.

This patchset adds definitions for the ICMP Extended Echo Request and
Reply (PROBE) types for both IPV4 and IPV6, adds a sysctl to enable 
response to PROBE messages, expands the list of supported ICMP messages
to accommodate PROBE types, and adds functionality to respond to PROBE
requests.

Changes since v1:
 - Add AFI definitions
 - Switch to functions such as dev_get_by_name and ip_dev_find to lookup
   net devices 

Changes since v2:
Suggested by Willem de Brujin <willemdebrujin.kernel@gmail.com>
 - Add verification of incoming messages before looking up netdev
 - Add prefix for PROBE specific defined variables
 - Use proc_dointvec_minmax with zero and one  
 - Create struct icmp_ext_echo_iio for parsing incoming packet
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
 - Include net/addrconf.h library for ipv6_dev_find

Andreas Roeseler (5):
  icmp: add support for RFC 8335 PROBE
  ICMPV6: add support for RFC 8335 PROBE
  net: add sysctl for enabling RFC 8335 PROBE messages
  net: add support for sending RFC 8335 PROBE messages
  icmp: add response to RFC 8335 PROBE messages

 include/net/netns/ipv4.h    |   1 +
 include/uapi/linux/icmp.h   |  40 +++++++++++
 include/uapi/linux/icmpv6.h |   6 ++
 net/ipv4/icmp.c             | 133 +++++++++++++++++++++++++++++++++---
 net/ipv4/ping.c             |   4 +-
 net/ipv4/sysctl_net_ipv4.c  |   9 +++
 6 files changed, 181 insertions(+), 12 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2021-02-25 17:40 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-17 18:07 [PATCH V3 net-next 0/5] add support for RFC 8335 PROBE Andreas Roeseler
2021-02-17 18:07 ` [PATCH V3 net-next 1/5] icmp: " Andreas Roeseler
2021-02-22  4:38   ` Willem de Bruijn
2021-02-17 18:08 ` [PATCH V3 net-next 2/5] ICMPV6: " Andreas Roeseler
2021-02-17 18:08 ` [PATCH V3 net-next 3/5] net: add sysctl for enabling RFC 8335 PROBE messages Andreas Roeseler
2021-02-17 18:08 ` [PATCH V3 net-next 4/5] net: add support for sending " Andreas Roeseler
2021-02-17 18:08 ` [PATCH V3 net-next 5/5] icmp: add response to " Andreas Roeseler
2021-02-22  4:49   ` Willem de Bruijn
2021-02-24 23:20     ` Andreas Roeseler
2021-02-25 17:38       ` Willem de Bruijn
2021-02-17 22:25 ` [PATCH V3 net-next 0/5] add support for RFC 8335 PROBE David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.