debugnet_int.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*-
  2. * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
  3. *
  4. * Copyright (c) 2019 Isilon Systems, LLC.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  16. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  19. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  21. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  22. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  23. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  24. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  25. * SUCH DAMAGE.
  26. *
  27. * $FreeBSD$
  28. */
  29. #pragma once
  30. #ifndef DEBUGNET_INTERNAL
  31. #error "Don't include this"
  32. #endif
  33. #define DNETDEBUG(f, ...) do { \
  34. if (debugnet_debug > 0) \
  35. printf(("%s: " f), __func__, ## __VA_ARGS__); \
  36. } while (0)
  37. #define DNETDEBUG_IF(i, f, ...) do { \
  38. if (debugnet_debug > 0) \
  39. if_printf((i), ("%s: " f), __func__, ## __VA_ARGS__); \
  40. } while (0)
  41. #define DNETDEBUGV(f, ...) do { \
  42. if (debugnet_debug > 1) \
  43. printf(("%s: " f), __func__, ## __VA_ARGS__); \
  44. } while (0)
  45. enum dnet_pcb_st {
  46. DN_STATE_INIT = 1,
  47. DN_STATE_HAVE_GW_MAC,
  48. DN_STATE_GOT_HERALD_PORT,
  49. DN_STATE_REMOTE_CLOSED,
  50. };
  51. struct debugnet_pcb {
  52. uint64_t dp_rcvd_acks;
  53. in_addr_t dp_client;
  54. in_addr_t dp_server;
  55. in_addr_t dp_gateway;
  56. uint32_t dp_seqno;
  57. struct ether_addr dp_gw_mac;
  58. uint16_t dp_server_port;
  59. struct ifnet *dp_ifp;
  60. /* Saved driver if_input to restore on close. */
  61. void (*dp_drv_input)(struct ifnet *, struct mbuf *);
  62. /* RX handler for bidirectional protocols. */
  63. void (*dp_rx_handler)(struct debugnet_pcb *,
  64. struct mbuf **);
  65. enum dnet_pcb_st dp_state;
  66. uint16_t dp_client_port;
  67. bool dp_event_started;
  68. };
  69. /* TODO(CEM): Obviate this assertion by using a BITSET(9) for acks. */
  70. CTASSERT(sizeof(((struct debugnet_pcb *)0)->dp_rcvd_acks) * NBBY >=
  71. DEBUGNET_MAX_IN_FLIGHT);
  72. extern unsigned debugnet_debug;
  73. SYSCTL_DECL(_net_debugnet);
  74. int debugnet_ether_output(struct mbuf *, struct ifnet *, struct ether_addr,
  75. u_short);
  76. void debugnet_handle_udp(struct debugnet_pcb *, struct mbuf **);
  77. #ifdef INET
  78. int debugnet_arp_gw(struct debugnet_pcb *);
  79. void debugnet_handle_arp(struct debugnet_pcb *, struct mbuf **);
  80. void debugnet_handle_ip(struct debugnet_pcb *, struct mbuf **);
  81. int debugnet_ip_output(struct debugnet_pcb *, struct mbuf *);
  82. #endif