socket_net_mgmt.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /** @file
  2. * @brief NET_MGMT socket definitions.
  3. *
  4. * Definitions for NET_MGMT socket support.
  5. */
  6. /*
  7. * Copyright (c) 2019 Intel Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_NET_SOCKET_NET_MGMT_H_
  12. #define ZEPHYR_INCLUDE_NET_SOCKET_NET_MGMT_H_
  13. #include <zephyr/types.h>
  14. #include <net/net_ip.h>
  15. #include <net/net_if.h>
  16. #include <net/net_mgmt.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /**
  21. * @brief Socket NET_MGMT library
  22. * @defgroup socket_net_mgmt Network Core Library
  23. * @ingroup networking
  24. * @{
  25. */
  26. /* Protocols of the protocol family PF_NET_MGMT */
  27. #define NET_MGMT_EVENT_PROTO 0x01
  28. /* Socket NET_MGMT options */
  29. #define SOL_NET_MGMT_BASE 100
  30. #define SOL_NET_MGMT_RAW (SOL_NET_MGMT_BASE + 1)
  31. /**
  32. * struct sockaddr_nm - The sockaddr structure for NET_MGMT sockets
  33. *
  34. * Similar concepts are used as in Linux AF_NETLINK. The NETLINK name is not
  35. * used in order to avoid confusion between Zephyr and Linux as the
  36. * implementations are different.
  37. *
  38. * The socket domain (address family) is AF_NET_MGMT, and the type of socket
  39. * is either SOCK_RAW or SOCK_DGRAM, because this is a datagram-oriented
  40. * service.
  41. *
  42. * The protocol (protocol type) selects for which feature the socket is used.
  43. *
  44. * When used with bind(), the nm_pid field of the sockaddr_nm can be
  45. * filled with the calling thread' own id. The nm_pid serves here as the local
  46. * address of this net_mgmt socket. The application is responsible for picking
  47. * a unique integer value to fill in nm_pid.
  48. */
  49. struct sockaddr_nm {
  50. /** AF_NET_MGMT address family. */
  51. sa_family_t nm_family;
  52. /** Network interface related to this address */
  53. int nm_ifindex;
  54. /** Thread id or similar that is used to separate the different
  55. * sockets. Application can decide how the pid is constructed.
  56. */
  57. uintptr_t nm_pid;
  58. /** net_mgmt mask */
  59. uint32_t nm_mask;
  60. };
  61. /**
  62. * Each network management message is prefixed with this header.
  63. */
  64. struct net_mgmt_msghdr {
  65. /** Network management version */
  66. uint32_t nm_msg_version;
  67. /** Length of the data */
  68. uint32_t nm_msg_len;
  69. /** The actual message data follows */
  70. uint8_t nm_msg[];
  71. };
  72. /**
  73. * Version of the message is placed to the header. Currently we have
  74. * following versions.
  75. *
  76. * Network management message versions:
  77. *
  78. * 0x0001 : The net_mgmt event info message follows directly
  79. * after the header.
  80. */
  81. #define NET_MGMT_SOCKET_VERSION_1 0x0001
  82. /**
  83. * @}
  84. */
  85. #ifdef __cplusplus
  86. }
  87. #endif
  88. #endif /* ZEPHYR_INCLUDE_NET_SOCKET_NET_MGMT_H_ */