netlink.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. #ifndef _UAPI__LINUX_NETLINK_H
  2. #define _UAPI__LINUX_NETLINK_H
  3. #include <linux/kernel.h>
  4. #include <linux/socket.h> /* for __kernel_sa_family_t */
  5. #include <linux/types.h>
  6. #define NETLINK_ROUTE 0 /* Routing/device hook */
  7. #define NETLINK_UNUSED 1 /* Unused number */
  8. #define NETLINK_USERSOCK 2 /* Reserved for user mode socket protocols */
  9. #define NETLINK_FIREWALL 3 /* Unused number, formerly ip_queue */
  10. #define NETLINK_SOCK_DIAG 4 /* socket monitoring */
  11. #define NETLINK_NFLOG 5 /* netfilter/iptables ULOG */
  12. #define NETLINK_XFRM 6 /* ipsec */
  13. #define NETLINK_SELINUX 7 /* SELinux event notifications */
  14. #define NETLINK_ISCSI 8 /* Open-iSCSI */
  15. #define NETLINK_AUDIT 9 /* auditing */
  16. #define NETLINK_FIB_LOOKUP 10
  17. #define NETLINK_CONNECTOR 11
  18. #define NETLINK_NETFILTER 12 /* netfilter subsystem */
  19. #define NETLINK_IP6_FW 13
  20. #define NETLINK_DNRTMSG 14 /* DECnet routing messages */
  21. #define NETLINK_KOBJECT_UEVENT 15 /* Kernel messages to userspace */
  22. #define NETLINK_GENERIC 16
  23. /* leave room for NETLINK_DM (DM Events) */
  24. #define NETLINK_SCSITRANSPORT 18 /* SCSI Transports */
  25. #define NETLINK_ECRYPTFS 19
  26. #define NETLINK_RDMA 20
  27. #define NETLINK_CRYPTO 21 /* Crypto layer */
  28. #define NETLINK_INET_DIAG NETLINK_SOCK_DIAG
  29. #define MAX_LINKS 32
  30. struct sockaddr_nl {
  31. __kernel_sa_family_t nl_family; /* AF_NETLINK */
  32. unsigned short nl_pad; /* zero */
  33. __u32 nl_pid; /* port ID */
  34. __u32 nl_groups; /* multicast groups mask */
  35. };
  36. struct nlmsghdr {
  37. __u32 nlmsg_len; /* Length of message including header */
  38. __u16 nlmsg_type; /* Message content */
  39. __u16 nlmsg_flags; /* Additional flags */
  40. __u32 nlmsg_seq; /* Sequence number */
  41. __u32 nlmsg_pid; /* Sending process port ID */
  42. };
  43. /* Flags values */
  44. #define NLM_F_REQUEST 1 /* It is request message. */
  45. #define NLM_F_MULTI 2 /* Multipart message, terminated by NLMSG_DONE */
  46. #define NLM_F_ACK 4 /* Reply with ack, with zero or error code */
  47. #define NLM_F_ECHO 8 /* Echo this request */
  48. #define NLM_F_DUMP_INTR 16 /* Dump was inconsistent due to sequence change */
  49. #define NLM_F_DUMP_FILTERED 32 /* Dump was filtered as requested */
  50. /* Modifiers to GET request */
  51. #define NLM_F_ROOT 0x100 /* specify tree root */
  52. #define NLM_F_MATCH 0x200 /* return all matching */
  53. #define NLM_F_ATOMIC 0x400 /* atomic GET */
  54. #define NLM_F_DUMP (NLM_F_ROOT|NLM_F_MATCH)
  55. /* Modifiers to NEW request */
  56. #define NLM_F_REPLACE 0x100 /* Override existing */
  57. #define NLM_F_EXCL 0x200 /* Do not touch, if it exists */
  58. #define NLM_F_CREATE 0x400 /* Create, if it does not exist */
  59. #define NLM_F_APPEND 0x800 /* Add to end of list */
  60. /*
  61. 4.4BSD ADD NLM_F_CREATE|NLM_F_EXCL
  62. 4.4BSD CHANGE NLM_F_REPLACE
  63. True CHANGE NLM_F_CREATE|NLM_F_REPLACE
  64. Append NLM_F_CREATE
  65. Check NLM_F_EXCL
  66. */
  67. #define NLMSG_ALIGNTO 4U
  68. #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
  69. #define NLMSG_HDRLEN ((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
  70. #define NLMSG_LENGTH(len) ((len) + NLMSG_HDRLEN)
  71. #define NLMSG_SPACE(len) NLMSG_ALIGN(NLMSG_LENGTH(len))
  72. #define NLMSG_DATA(nlh) ((void*)(((char*)nlh) + NLMSG_LENGTH(0)))
  73. #define NLMSG_NEXT(nlh,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \
  74. (struct nlmsghdr*)(((char*)(nlh)) + NLMSG_ALIGN((nlh)->nlmsg_len)))
  75. #define NLMSG_OK(nlh,len) ((len) >= (int)sizeof(struct nlmsghdr) && \
  76. (nlh)->nlmsg_len >= sizeof(struct nlmsghdr) && \
  77. (nlh)->nlmsg_len <= (len))
  78. #define NLMSG_PAYLOAD(nlh,len) ((nlh)->nlmsg_len - NLMSG_SPACE((len)))
  79. #define NLMSG_NOOP 0x1 /* Nothing. */
  80. #define NLMSG_ERROR 0x2 /* Error */
  81. #define NLMSG_DONE 0x3 /* End of a dump */
  82. #define NLMSG_OVERRUN 0x4 /* Data lost */
  83. #define NLMSG_MIN_TYPE 0x10 /* < 0x10: reserved control messages */
  84. struct nlmsgerr {
  85. int error;
  86. struct nlmsghdr msg;
  87. };
  88. #define NETLINK_ADD_MEMBERSHIP 1
  89. #define NETLINK_DROP_MEMBERSHIP 2
  90. #define NETLINK_PKTINFO 3
  91. #define NETLINK_BROADCAST_ERROR 4
  92. #define NETLINK_NO_ENOBUFS 5
  93. #ifndef __KERNEL__
  94. #define NETLINK_RX_RING 6
  95. #define NETLINK_TX_RING 7
  96. #endif
  97. #define NETLINK_LISTEN_ALL_NSID 8
  98. #define NETLINK_LIST_MEMBERSHIPS 9
  99. #define NETLINK_CAP_ACK 10
  100. struct nl_pktinfo {
  101. __u32 group;
  102. };
  103. struct nl_mmap_req {
  104. unsigned int nm_block_size;
  105. unsigned int nm_block_nr;
  106. unsigned int nm_frame_size;
  107. unsigned int nm_frame_nr;
  108. };
  109. struct nl_mmap_hdr {
  110. unsigned int nm_status;
  111. unsigned int nm_len;
  112. __u32 nm_group;
  113. /* credentials */
  114. __u32 nm_pid;
  115. __u32 nm_uid;
  116. __u32 nm_gid;
  117. };
  118. #ifndef __KERNEL__
  119. enum nl_mmap_status {
  120. NL_MMAP_STATUS_UNUSED,
  121. NL_MMAP_STATUS_RESERVED,
  122. NL_MMAP_STATUS_VALID,
  123. NL_MMAP_STATUS_COPY,
  124. NL_MMAP_STATUS_SKIP,
  125. };
  126. #define NL_MMAP_MSG_ALIGNMENT NLMSG_ALIGNTO
  127. #define NL_MMAP_MSG_ALIGN(sz) __ALIGN_KERNEL(sz, NL_MMAP_MSG_ALIGNMENT)
  128. #define NL_MMAP_HDRLEN NL_MMAP_MSG_ALIGN(sizeof(struct nl_mmap_hdr))
  129. #endif
  130. #define NET_MAJOR 36 /* Major 36 is reserved for networking */
  131. enum {
  132. NETLINK_UNCONNECTED = 0,
  133. NETLINK_CONNECTED,
  134. };
  135. /*
  136. * <------- NLA_HDRLEN ------> <-- NLA_ALIGN(payload)-->
  137. * +---------------------+- - -+- - - - - - - - - -+- - -+
  138. * | Header | Pad | Payload | Pad |
  139. * | (struct nlattr) | ing | | ing |
  140. * +---------------------+- - -+- - - - - - - - - -+- - -+
  141. * <-------------- nlattr->nla_len -------------->
  142. */
  143. struct nlattr {
  144. __u16 nla_len;
  145. __u16 nla_type;
  146. };
  147. /*
  148. * nla_type (16 bits)
  149. * +---+---+-------------------------------+
  150. * | N | O | Attribute Type |
  151. * +---+---+-------------------------------+
  152. * N := Carries nested attributes
  153. * O := Payload stored in network byte order
  154. *
  155. * Note: The N and O flag are mutually exclusive.
  156. */
  157. #define NLA_F_NESTED (1 << 15)
  158. #define NLA_F_NET_BYTEORDER (1 << 14)
  159. #define NLA_TYPE_MASK ~(NLA_F_NESTED | NLA_F_NET_BYTEORDER)
  160. #define NLA_ALIGNTO 4
  161. #define NLA_ALIGN(len) (((len) + NLA_ALIGNTO - 1) & ~(NLA_ALIGNTO - 1))
  162. #define NLA_HDRLEN ((int) NLA_ALIGN(sizeof(struct nlattr)))
  163. #endif /* _UAPI__LINUX_NETLINK_H */