blob: bc7779262e60350e2748c74731a5d6d71f1b9455 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +00002/*
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * Definitions for the "ping" module.
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +00008 */
9#ifndef _PING_H
10#define _PING_H
11
Lorenzo Colitti6d0bfe22013-05-22 20:17:31 +000012#include <net/icmp.h>
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000013#include <net/netns/hash.h>
14
15/* PING_HTABLE_SIZE must be power of 2 */
16#define PING_HTABLE_SIZE 64
17#define PING_HTABLE_MASK (PING_HTABLE_SIZE-1)
18
Akihiro Suda91662252023-06-01 12:13:05 +090019#define GID_T_MAX (((gid_t)~0U) - 1)
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000020
Lorenzo Colitti6d0bfe22013-05-22 20:17:31 +000021/* Compatibility glue so we can support IPv6 when it's compiled as a module */
22struct pingv6_ops {
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +010023 int (*ipv6_recv_error)(struct sock *sk, struct msghdr *msg, int len,
24 int *addr_len);
Hannes Frederic Sowa4b261c752014-01-20 03:43:08 +010025 void (*ip6_datagram_recv_common_ctl)(struct sock *sk,
26 struct msghdr *msg,
27 struct sk_buff *skb);
28 void (*ip6_datagram_recv_specific_ctl)(struct sock *sk,
29 struct msghdr *msg,
30 struct sk_buff *skb);
Lorenzo Colitti6d0bfe22013-05-22 20:17:31 +000031 int (*icmpv6_err_convert)(u8 type, u8 code, int *err);
32 void (*ipv6_icmp_error)(struct sock *sk, struct sk_buff *skb, int err,
33 __be16 port, u32 info, u8 *payload);
34 int (*ipv6_chk_addr)(struct net *net, const struct in6_addr *addr,
David S. Miller6bc19fb2013-06-05 15:56:43 -070035 const struct net_device *dev, int strict);
Lorenzo Colitti6d0bfe22013-05-22 20:17:31 +000036};
37
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000038struct ping_iter_state {
39 struct seq_net_private p;
40 int bucket;
Lorenzo Colitti8cc785f2013-05-31 15:05:49 +000041 sa_family_t family;
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000042};
43
44extern struct proto ping_prot;
Lorenzo Colitti6d0bfe22013-05-22 20:17:31 +000045#if IS_ENABLED(CONFIG_IPV6)
46extern struct pingv6_ops pingv6_ops;
47#endif
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000048
Lorenzo Colitti6d0bfe22013-05-22 20:17:31 +000049struct pingfakehdr {
50 struct icmphdr icmph;
Al Virocacdc7d2014-11-27 20:34:16 -050051 struct msghdr *msg;
Lorenzo Colitti6d0bfe22013-05-22 20:17:31 +000052 sa_family_t family;
53 __wsum wcheck;
54};
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000055
Lorenzo Colitti6d0bfe22013-05-22 20:17:31 +000056int ping_get_port(struct sock *sk, unsigned short ident);
Craig Gallek086c6532016-02-10 11:50:35 -050057int ping_hash(struct sock *sk);
Lorenzo Colitti6d0bfe22013-05-22 20:17:31 +000058void ping_unhash(struct sock *sk);
59
60int ping_init_sock(struct sock *sk);
61void ping_close(struct sock *sk, long timeout);
62int ping_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len);
63void ping_err(struct sk_buff *skb, int offset, u32 info);
64int ping_getfrag(void *from, char *to, int offset, int fraglen, int odd,
65 struct sk_buff *);
66
Oliver Hartkoppec095262022-04-11 14:49:55 +020067int ping_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
Ying Xue1b784142015-03-02 15:37:48 +080068 int flags, int *addr_len);
Lorenzo Colitti6d0bfe22013-05-22 20:17:31 +000069int ping_common_sendmsg(int family, struct msghdr *msg, size_t len,
70 void *user_icmph, size_t icmph_len);
Lorenzo Colitti6d0bfe22013-05-22 20:17:31 +000071int ping_queue_rcv_skb(struct sock *sk, struct sk_buff *skb);
Menglong Dongb384c952022-04-07 14:20:52 +080072enum skb_drop_reason ping_rcv(struct sk_buff *skb);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000073
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000074#ifdef CONFIG_PROC_FS
Lorenzo Colittid862e542013-05-31 15:05:50 +000075void *ping_seq_start(struct seq_file *seq, loff_t *pos, sa_family_t family);
76void *ping_seq_next(struct seq_file *seq, void *v, loff_t *pos);
77void ping_seq_stop(struct seq_file *seq, void *v);
Lorenzo Colittid862e542013-05-31 15:05:50 +000078
Joe Perches6d3b3342013-09-22 10:32:16 -070079int __init ping_proc_init(void);
80void ping_proc_exit(void);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000081#endif
82
83void __init ping_init(void);
Lorenzo Colitti6d0bfe22013-05-22 20:17:31 +000084int __init pingv6_init(void);
85void pingv6_exit(void);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000086
87#endif /* _PING_H */