send.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* Copyright (C) 2007-2018 B.A.T.M.A.N. contributors:
  3. *
  4. * Marek Lindner, Simon Wunderlich
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of version 2 of the GNU General Public
  8. * License as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef _NET_BATMAN_ADV_SEND_H_
  19. #define _NET_BATMAN_ADV_SEND_H_
  20. #include "main.h"
  21. #include <linux/compiler.h>
  22. #include <linux/spinlock.h>
  23. #include <linux/types.h>
  24. #include <uapi/linux/batadv_packet.h>
  25. struct sk_buff;
  26. void batadv_forw_packet_free(struct batadv_forw_packet *forw_packet,
  27. bool dropped);
  28. struct batadv_forw_packet *
  29. batadv_forw_packet_alloc(struct batadv_hard_iface *if_incoming,
  30. struct batadv_hard_iface *if_outgoing,
  31. atomic_t *queue_left,
  32. struct batadv_priv *bat_priv,
  33. struct sk_buff *skb);
  34. bool batadv_forw_packet_steal(struct batadv_forw_packet *packet, spinlock_t *l);
  35. void batadv_forw_packet_ogmv1_queue(struct batadv_priv *bat_priv,
  36. struct batadv_forw_packet *forw_packet,
  37. unsigned long send_time);
  38. bool batadv_forw_packet_is_rebroadcast(struct batadv_forw_packet *forw_packet);
  39. int batadv_send_skb_to_orig(struct sk_buff *skb,
  40. struct batadv_orig_node *orig_node,
  41. struct batadv_hard_iface *recv_if);
  42. int batadv_send_skb_packet(struct sk_buff *skb,
  43. struct batadv_hard_iface *hard_iface,
  44. const u8 *dst_addr);
  45. int batadv_send_broadcast_skb(struct sk_buff *skb,
  46. struct batadv_hard_iface *hard_iface);
  47. int batadv_send_unicast_skb(struct sk_buff *skb,
  48. struct batadv_neigh_node *neigh_node);
  49. int batadv_add_bcast_packet_to_list(struct batadv_priv *bat_priv,
  50. const struct sk_buff *skb,
  51. unsigned long delay,
  52. bool own_packet);
  53. void
  54. batadv_purge_outstanding_packets(struct batadv_priv *bat_priv,
  55. const struct batadv_hard_iface *hard_iface);
  56. bool batadv_send_skb_prepare_unicast_4addr(struct batadv_priv *bat_priv,
  57. struct sk_buff *skb,
  58. struct batadv_orig_node *orig_node,
  59. int packet_subtype);
  60. int batadv_send_skb_unicast(struct batadv_priv *bat_priv,
  61. struct sk_buff *skb, int packet_type,
  62. int packet_subtype,
  63. struct batadv_orig_node *orig_node,
  64. unsigned short vid);
  65. int batadv_send_skb_via_tt_generic(struct batadv_priv *bat_priv,
  66. struct sk_buff *skb, int packet_type,
  67. int packet_subtype, u8 *dst_hint,
  68. unsigned short vid);
  69. int batadv_send_skb_via_gw(struct batadv_priv *bat_priv, struct sk_buff *skb,
  70. unsigned short vid);
  71. /**
  72. * batadv_send_skb_via_tt() - send an skb via TT lookup
  73. * @bat_priv: the bat priv with all the soft interface information
  74. * @skb: the payload to send
  75. * @dst_hint: can be used to override the destination contained in the skb
  76. * @vid: the vid to be used to search the translation table
  77. *
  78. * Look up the recipient node for the destination address in the ethernet
  79. * header via the translation table. Wrap the given skb into a batman-adv
  80. * unicast header. Then send this frame to the according destination node.
  81. *
  82. * Return: NET_XMIT_DROP in case of error or NET_XMIT_SUCCESS otherwise.
  83. */
  84. static inline int batadv_send_skb_via_tt(struct batadv_priv *bat_priv,
  85. struct sk_buff *skb, u8 *dst_hint,
  86. unsigned short vid)
  87. {
  88. return batadv_send_skb_via_tt_generic(bat_priv, skb, BATADV_UNICAST, 0,
  89. dst_hint, vid);
  90. }
  91. /**
  92. * batadv_send_skb_via_tt_4addr() - send an skb via TT lookup
  93. * @bat_priv: the bat priv with all the soft interface information
  94. * @skb: the payload to send
  95. * @packet_subtype: the unicast 4addr packet subtype to use
  96. * @dst_hint: can be used to override the destination contained in the skb
  97. * @vid: the vid to be used to search the translation table
  98. *
  99. * Look up the recipient node for the destination address in the ethernet
  100. * header via the translation table. Wrap the given skb into a batman-adv
  101. * unicast-4addr header. Then send this frame to the according destination
  102. * node.
  103. *
  104. * Return: NET_XMIT_DROP in case of error or NET_XMIT_SUCCESS otherwise.
  105. */
  106. static inline int batadv_send_skb_via_tt_4addr(struct batadv_priv *bat_priv,
  107. struct sk_buff *skb,
  108. int packet_subtype,
  109. u8 *dst_hint,
  110. unsigned short vid)
  111. {
  112. return batadv_send_skb_via_tt_generic(bat_priv, skb,
  113. BATADV_UNICAST_4ADDR,
  114. packet_subtype, dst_hint, vid);
  115. }
  116. #endif /* _NET_BATMAN_ADV_SEND_H_ */