ol_rx_pn.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * Copyright (c) 2011, 2014 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #ifndef _OL_RX_PN_H_
  27. #define _OL_RX_PN_H_
  28. #include <cdf_nbuf.h> /* cdf_nbuf_t, etc. */
  29. #include <ol_txrx_api.h> /* ol_txrx_peer_t, etc. */
  30. int ol_rx_pn_cmp24(union htt_rx_pn_t *new_pn,
  31. union htt_rx_pn_t *old_pn, int is_unicast, int opmode);
  32. int ol_rx_pn_cmp48(union htt_rx_pn_t *new_pn,
  33. union htt_rx_pn_t *old_pn, int is_unicast, int opmode);
  34. int ol_rx_pn_wapi_cmp(union htt_rx_pn_t *new_pn,
  35. union htt_rx_pn_t *old_pn, int is_unicast, int opmode);
  36. /**
  37. * @brief If applicable, check the Packet Number to detect replays.
  38. * @details
  39. * Determine whether a PN check is needed, and if so, what the PN size is.
  40. * (A PN size of 0 is used to indirectly bypass the PN check for security
  41. * methods that don't involve a PN check.)
  42. * This function produces event notifications for any PN failures, via the
  43. * ol_rx_err function.
  44. * After the PN check, call the next stage of rx processing (rx --> tx
  45. * forwarding check).
  46. *
  47. * @param vdev - which virtual device the frames were addressed to
  48. * @param peer - which peer the rx frames belong to
  49. * @param tid - which TID within the peer the rx frames belong to
  50. * @param msdu_list - NULL-terminated list of MSDUs to perform PN check on
  51. * (if PN check is applicable, i.e. PN length > 0)
  52. */
  53. void
  54. ol_rx_pn_check(struct ol_txrx_vdev_t *vdev,
  55. struct ol_txrx_peer_t *peer, unsigned tid, cdf_nbuf_t msdu_list);
  56. /**
  57. * @brief If applicable, check the Packet Number to detect replays.
  58. * @details
  59. * Determine whether a PN check is needed, and if so, what the PN size is.
  60. * (A PN size of 0 is used to indirectly bypass the PN check for security
  61. * methods that don't involve a PN check.)
  62. * This function produces event notifications for any PN failures, via the
  63. * ol_rx_err function.
  64. * After the PN check, deliver the valid rx frames to the OS shim.
  65. * (Don't perform a rx --> tx forwarding check.)
  66. *
  67. * @param vdev - which virtual device the frames were addressed to
  68. * @param peer - which peer the rx frames belong to
  69. * @param tid - which TID within the peer the rx frames belong to
  70. * @param msdu_list - NULL-terminated list of MSDUs to perform PN check on
  71. * (if PN check is applicable, i.e. PN length > 0)
  72. */
  73. void
  74. ol_rx_pn_check_only(struct ol_txrx_vdev_t *vdev,
  75. struct ol_txrx_peer_t *peer,
  76. unsigned tid, cdf_nbuf_t msdu_list);
  77. /**
  78. * @brief If applicable, check the Packet Number to detect replays.
  79. * @details
  80. * Same as ol_rx_pn_check but return valid rx netbufs
  81. * rather than invoking the rx --> tx forwarding check.
  82. *
  83. * @param vdev - which virtual device the frames were addressed to
  84. * @param peer - which peer the rx frames belong to
  85. * @param tid - which TID within the peer the rx frames belong to
  86. * @param msdu_list - NULL-terminated list of MSDUs to perform PN check on
  87. * (if PN check is applicable, i.e. PN length > 0)
  88. * @return list of netbufs that didn't fail the PN check
  89. */
  90. cdf_nbuf_t
  91. ol_rx_pn_check_base(struct ol_txrx_vdev_t *vdev,
  92. struct ol_txrx_peer_t *peer,
  93. unsigned tid, cdf_nbuf_t msdu_list);
  94. #endif /* _OL_RX_PN_H_ */