nfnetlink_log.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _NFNETLINK_LOG_H
  2. #define _NFNETLINK_LOG_H
  3. /* This file describes the netlink messages (i.e. 'protocol packets'),
  4.  * and not any kind of function definitions.  It is shared between kernel and
  5.  * userspace.  Don't put kernel specific stuff in here */
  6. #include <linux/types.h>
  7. #include <linux/netfilter/nfnetlink.h>
  8. enum nfulnl_msg_types {
  9. NFULNL_MSG_PACKET, /* packet from kernel to userspace */
  10. NFULNL_MSG_CONFIG, /* connect to a particular queue */
  11. NFULNL_MSG_MAX
  12. };
  13. struct nfulnl_msg_packet_hdr {
  14. u_int16_t hw_protocol; /* hw protocol (network order) */
  15. u_int8_t hook; /* netfilter hook */
  16. u_int8_t _pad;
  17. } __attribute__ ((packed));
  18. struct nfulnl_msg_packet_hw {
  19. u_int16_t hw_addrlen;
  20. u_int16_t _pad;
  21. u_int8_t hw_addr[8];
  22. } __attribute__ ((packed));
  23. struct nfulnl_msg_packet_timestamp {
  24. aligned_u64 sec;
  25. aligned_u64 usec;
  26. } __attribute__ ((packed));
  27. #define NFULNL_PREFIXLEN 30 /* just like old log target */
  28. enum nfulnl_attr_type {
  29. NFULA_UNSPEC,
  30. NFULA_PACKET_HDR,
  31. NFULA_MARK, /* u_int32_t nfmark */
  32. NFULA_TIMESTAMP, /* nfulnl_msg_packet_timestamp */
  33. NFULA_IFINDEX_INDEV, /* u_int32_t ifindex */
  34. NFULA_IFINDEX_OUTDEV, /* u_int32_t ifindex */
  35. NFULA_IFINDEX_PHYSINDEV, /* u_int32_t ifindex */
  36. NFULA_IFINDEX_PHYSOUTDEV, /* u_int32_t ifindex */
  37. NFULA_HWADDR, /* nfulnl_msg_packet_hw */
  38. NFULA_PAYLOAD, /* opaque data payload */
  39. NFULA_PREFIX, /* string prefix */
  40. NFULA_UID, /* user id of socket */
  41. __NFULA_MAX
  42. };
  43. #define NFULA_MAX (__NFULA_MAX - 1)
  44. enum nfulnl_msg_config_cmds {
  45. NFULNL_CFG_CMD_NONE,
  46. NFULNL_CFG_CMD_BIND,
  47. NFULNL_CFG_CMD_UNBIND,
  48. NFULNL_CFG_CMD_PF_BIND,
  49. NFULNL_CFG_CMD_PF_UNBIND,
  50. };
  51. struct nfulnl_msg_config_cmd {
  52. u_int8_t command; /* nfulnl_msg_config_cmds */
  53. } __attribute__ ((packed));
  54. struct nfulnl_msg_config_mode {
  55. u_int32_t copy_range;
  56. u_int8_t copy_mode;
  57. u_int8_t _pad;
  58. } __attribute__ ((packed));
  59. enum nfulnl_attr_config {
  60. NFULA_CFG_UNSPEC,
  61. NFULA_CFG_CMD, /* nfulnl_msg_config_cmd */
  62. NFULA_CFG_MODE, /* nfulnl_msg_config_mode */
  63. NFULA_CFG_NLBUFSIZ, /* u_int32_t buffer size */
  64. NFULA_CFG_TIMEOUT, /* u_int32_t in 1/100 s */
  65. NFULA_CFG_QTHRESH, /* u_int32_t */
  66. __NFULA_CFG_MAX
  67. };
  68. #define NFULA_CFG_MAX (__NFULA_CFG_MAX -1)
  69. #define NFULNL_COPY_NONE 0x00
  70. #define NFULNL_COPY_META 0x01
  71. #define NFULNL_COPY_PACKET 0x02
  72. #endif /* _NFNETLINK_LOG_H */