wlan_nlink_srv.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright (c) 2012-2017 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. /******************************************************************************
  27. * wlan_nlink_srv.h
  28. *
  29. * wlan_nlink_srv is used to RX/TX Netlink messages from user space to kernel
  30. * modules and vice versa. Kernel modules must register a message handler for a
  31. * message type so that the wlan_nlink_srv can invoke the corresponding msg handler
  32. * whenever a Netlink message of a particular type has been received from an
  33. * application. In the opposite direction, wlan_nlink_srv provides a mechanism
  34. * which kernel modules can use to send Netlink messages to applications.
  35. *
  36. ******************************************************************************/
  37. #ifndef WLAN_NLINK_SRV_H
  38. #define WLAN_NLINK_SRV_H
  39. #include <linux/skbuff.h>
  40. #include <net/netlink.h>
  41. #include <wlan_nlink_common.h>
  42. #define INVALID_PID -1
  43. #define NLINK_MAX_CALLBACKS (WLAN_NL_MSG_MAX - WLAN_NL_MSG_BASE)
  44. typedef int (*nl_srv_msg_callback)(struct sk_buff *skb);
  45. int nl_srv_init(void *wiphy);
  46. void nl_srv_exit(void);
  47. int nl_srv_register(tWlanNlModTypes msg_type, nl_srv_msg_callback msg_handler);
  48. int nl_srv_unregister(tWlanNlModTypes msg_type,
  49. nl_srv_msg_callback msg_handler);
  50. #ifdef CNSS_GENL
  51. int nl_srv_ucast(struct sk_buff *skb, int dst_pid, int flag,
  52. int app_id, int mcgroup_id);
  53. int nl_srv_bcast(struct sk_buff *skb, int mcgroup_id, int app_id);
  54. #else
  55. int nl_srv_ucast(struct sk_buff *skb, int dst_pid, int flag);
  56. int nl_srv_bcast(struct sk_buff *skb);
  57. #endif
  58. int nl_srv_is_initialized(void);
  59. void nl_srv_ucast_oem(struct sk_buff *skb, int dst_pid, int flag);
  60. #endif