Blame view

include/net/ping.h 2.9 KB
2874c5fd2   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-or-later */
c319b4d76   Vasiliy Kulikov   net: ipv4: add IP...
2
3
4
5
6
7
  /*
   * INET		An implementation of the TCP/IP protocol suite for the LINUX
   *		operating system.  INET is implemented using the  BSD Socket
   *		interface as the means of communication with the user level.
   *
   *		Definitions for the "ping" module.
c319b4d76   Vasiliy Kulikov   net: ipv4: add IP...
8
9
10
   */
  #ifndef _PING_H
  #define _PING_H
6d0bfe226   Lorenzo Colitti   net: ipv6: Add IP...
11
  #include <net/icmp.h>
c319b4d76   Vasiliy Kulikov   net: ipv4: add IP...
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  #include <net/netns/hash.h>
  
  /* PING_HTABLE_SIZE must be power of 2 */
  #define PING_HTABLE_SIZE 	64
  #define PING_HTABLE_MASK 	(PING_HTABLE_SIZE-1)
  
  #define ping_portaddr_for_each_entry(__sk, node, list) \
  	hlist_nulls_for_each_entry(__sk, node, list, sk_nulls_node)
  
  /*
   * gid_t is either uint or ushort.  We want to pass it to
   * proc_dointvec_minmax(), so it must not be larger than MAX_INT
   */
  #define GID_T_MAX (((gid_t)~0U) >> 1)
6d0bfe226   Lorenzo Colitti   net: ipv6: Add IP...
26
27
  /* Compatibility glue so we can support IPv6 when it's compiled as a module */
  struct pingv6_ops {
85fbaa750   Hannes Frederic Sowa   inet: fix addr_le...
28
29
  	int (*ipv6_recv_error)(struct sock *sk, struct msghdr *msg, int len,
  			       int *addr_len);
4b261c75a   Hannes Frederic Sowa   ipv6: make IPV6_R...
30
31
32
33
34
35
  	void (*ip6_datagram_recv_common_ctl)(struct sock *sk,
  					     struct msghdr *msg,
  					     struct sk_buff *skb);
  	void (*ip6_datagram_recv_specific_ctl)(struct sock *sk,
  					       struct msghdr *msg,
  					       struct sk_buff *skb);
6d0bfe226   Lorenzo Colitti   net: ipv6: Add IP...
36
37
38
39
  	int (*icmpv6_err_convert)(u8 type, u8 code, int *err);
  	void (*ipv6_icmp_error)(struct sock *sk, struct sk_buff *skb, int err,
  				__be16 port, u32 info, u8 *payload);
  	int (*ipv6_chk_addr)(struct net *net, const struct in6_addr *addr,
6bc19fb82   David S. Miller   Merge git://git.k...
40
  			     const struct net_device *dev, int strict);
6d0bfe226   Lorenzo Colitti   net: ipv6: Add IP...
41
  };
c319b4d76   Vasiliy Kulikov   net: ipv4: add IP...
42
43
44
  struct ping_iter_state {
  	struct seq_net_private  p;
  	int			bucket;
8cc785f6f   Lorenzo Colitti   net: ipv4: make t...
45
  	sa_family_t		family;
c319b4d76   Vasiliy Kulikov   net: ipv4: add IP...
46
47
48
  };
  
  extern struct proto ping_prot;
6d0bfe226   Lorenzo Colitti   net: ipv6: Add IP...
49
50
51
  #if IS_ENABLED(CONFIG_IPV6)
  extern struct pingv6_ops pingv6_ops;
  #endif
c319b4d76   Vasiliy Kulikov   net: ipv4: add IP...
52

6d0bfe226   Lorenzo Colitti   net: ipv6: Add IP...
53
54
  struct pingfakehdr {
  	struct icmphdr icmph;
cacdc7d2f   Al Viro   ip: stash a point...
55
  	struct msghdr *msg;
6d0bfe226   Lorenzo Colitti   net: ipv6: Add IP...
56
57
58
  	sa_family_t family;
  	__wsum wcheck;
  };
c319b4d76   Vasiliy Kulikov   net: ipv4: add IP...
59

6d0bfe226   Lorenzo Colitti   net: ipv6: Add IP...
60
  int  ping_get_port(struct sock *sk, unsigned short ident);
086c653f5   Craig Gallek   sock: struct prot...
61
  int ping_hash(struct sock *sk);
6d0bfe226   Lorenzo Colitti   net: ipv6: Add IP...
62
63
64
65
66
67
68
69
  void ping_unhash(struct sock *sk);
  
  int  ping_init_sock(struct sock *sk);
  void ping_close(struct sock *sk, long timeout);
  int  ping_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len);
  void ping_err(struct sk_buff *skb, int offset, u32 info);
  int  ping_getfrag(void *from, char *to, int offset, int fraglen, int odd,
  		  struct sk_buff *);
1b7841404   Ying Xue   net: Remove iocb ...
70
71
  int  ping_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock,
  		  int flags, int *addr_len);
6d0bfe226   Lorenzo Colitti   net: ipv6: Add IP...
72
73
  int  ping_common_sendmsg(int family, struct msghdr *msg, size_t len,
  			 void *user_icmph, size_t icmph_len);
6d0bfe226   Lorenzo Colitti   net: ipv6: Add IP...
74
  int  ping_queue_rcv_skb(struct sock *sk, struct sk_buff *skb);
e3e321702   Rick Jones   icmp: Remove some...
75
  bool ping_rcv(struct sk_buff *skb);
c319b4d76   Vasiliy Kulikov   net: ipv4: add IP...
76

c319b4d76   Vasiliy Kulikov   net: ipv4: add IP...
77
  #ifdef CONFIG_PROC_FS
d862e5461   Lorenzo Colitti   net: ipv6: Implem...
78
79
80
  void *ping_seq_start(struct seq_file *seq, loff_t *pos, sa_family_t family);
  void *ping_seq_next(struct seq_file *seq, void *v, loff_t *pos);
  void ping_seq_stop(struct seq_file *seq, void *v);
d862e5461   Lorenzo Colitti   net: ipv6: Implem...
81

6d3b334d6   Joe Perches   ping.h: Remove ex...
82
83
  int __init ping_proc_init(void);
  void ping_proc_exit(void);
c319b4d76   Vasiliy Kulikov   net: ipv4: add IP...
84
85
86
  #endif
  
  void __init ping_init(void);
6d0bfe226   Lorenzo Colitti   net: ipv6: Add IP...
87
88
  int  __init pingv6_init(void);
  void pingv6_exit(void);
c319b4d76   Vasiliy Kulikov   net: ipv4: add IP...
89
90
  
  #endif /* _PING_H */