ping.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * INET An implementation of the TCP/IP protocol suite for the LINUX
  3. * operating system. INET is implemented using the BSD Socket
  4. * interface as the means of communication with the user level.
  5. *
  6. * Definitions for the "ping" module.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the License, or (at your option) any later version.
  12. */
  13. #ifndef _PING_H
  14. #define _PING_H
  15. #include <net/icmp.h>
  16. #include <net/netns/hash.h>
  17. /* PING_HTABLE_SIZE must be power of 2 */
  18. #define PING_HTABLE_SIZE 64
  19. #define PING_HTABLE_MASK (PING_HTABLE_SIZE-1)
  20. #define ping_portaddr_for_each_entry(__sk, node, list) \
  21. hlist_nulls_for_each_entry(__sk, node, list, sk_nulls_node)
  22. /*
  23. * gid_t is either uint or ushort. We want to pass it to
  24. * proc_dointvec_minmax(), so it must not be larger than MAX_INT
  25. */
  26. #define GID_T_MAX (((gid_t)~0U) >> 1)
  27. /* Compatibility glue so we can support IPv6 when it's compiled as a module */
  28. struct pingv6_ops {
  29. int (*ipv6_recv_error)(struct sock *sk, struct msghdr *msg, int len, int *addr_len);
  30. int (*ip6_datagram_recv_ctl)(struct sock *sk, struct msghdr *msg,
  31. struct sk_buff *skb);
  32. int (*icmpv6_err_convert)(u8 type, u8 code, int *err);
  33. void (*ipv6_icmp_error)(struct sock *sk, struct sk_buff *skb, int err,
  34. __be16 port, u32 info, u8 *payload);
  35. int (*ipv6_chk_addr)(struct net *net, const struct in6_addr *addr,
  36. struct net_device *dev, int strict);
  37. };
  38. struct ping_table {
  39. struct hlist_nulls_head hash[PING_HTABLE_SIZE];
  40. rwlock_t lock;
  41. };
  42. struct ping_iter_state {
  43. struct seq_net_private p;
  44. int bucket;
  45. };
  46. extern struct proto ping_prot;
  47. extern struct ping_table ping_table;
  48. #if IS_ENABLED(CONFIG_IPV6)
  49. extern struct pingv6_ops pingv6_ops;
  50. #endif
  51. struct pingfakehdr {
  52. struct icmphdr icmph;
  53. struct iovec *iov;
  54. sa_family_t family;
  55. __wsum wcheck;
  56. };
  57. int ping_get_port(struct sock *sk, unsigned short ident);
  58. void ping_hash(struct sock *sk);
  59. void ping_unhash(struct sock *sk);
  60. int ping_init_sock(struct sock *sk);
  61. void ping_close(struct sock *sk, long timeout);
  62. int ping_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len);
  63. void ping_err(struct sk_buff *skb, int offset, u32 info);
  64. void ping_v4_err(struct sk_buff *skb, u32 info);
  65. int ping_getfrag(void *from, char *to, int offset, int fraglen, int odd,
  66. struct sk_buff *);
  67. int ping_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
  68. size_t len, int noblock, int flags, int *addr_len);
  69. int ping_common_sendmsg(int family, struct msghdr *msg, size_t len,
  70. void *user_icmph, size_t icmph_len);
  71. int ping_v4_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
  72. size_t len);
  73. int ping_v6_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
  74. size_t len);
  75. int ping_queue_rcv_skb(struct sock *sk, struct sk_buff *skb);
  76. void ping_rcv(struct sk_buff *skb);
  77. #ifdef CONFIG_PROC_FS
  78. extern int __init ping_proc_init(void);
  79. extern void ping_proc_exit(void);
  80. #endif
  81. void __init ping_init(void);
  82. int __init pingv6_init(void);
  83. void pingv6_exit(void);
  84. #endif /* _PING_H */