filter.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Linux Socket Filter Data Structures
  3.  */
  4. #ifndef __LINUX_FILTER_H__
  5. #define __LINUX_FILTER_H__
  6. /*
  7.  * Current version of the filter code architecture.
  8.  */
  9. #define BPF_MAJOR_VERSION 1
  10. #define BPF_MINOR_VERSION 1
  11. /*
  12.  * Try and keep these values and structures similar to BSD, especially
  13.  * the BPF code definitions which need to match so you can share filters
  14.  */
  15.  
  16. struct sock_filter /* Filter block */
  17. {
  18.         __u16 code;   /* Actual filter code */
  19.         __u8 jt; /* Jump true */
  20.         __u8 jf; /* Jump false */
  21.         __u32 k;      /* Generic multiuse field */
  22. };
  23. struct sock_fprog /* Required for SO_ATTACH_FILTER. */
  24. {
  25. unsigned short len; /* Number of filter blocks */
  26. struct sock_filter *filter;
  27. };
  28. #ifdef __KERNEL__
  29. struct sk_filter
  30. {
  31. atomic_t refcnt;
  32.         unsigned int          len; /* Number of filter blocks */
  33.         struct sock_filter      insns[0];
  34. };
  35. static inline unsigned int sk_filter_len(struct sk_filter *fp)
  36. {
  37. return fp->len*sizeof(struct sock_filter) + sizeof(*fp);
  38. }
  39. #endif
  40. /*
  41.  * Instruction classes
  42.  */
  43. #define BPF_CLASS(code) ((code) & 0x07)
  44. #define         BPF_LD          0x00
  45. #define         BPF_LDX         0x01
  46. #define         BPF_ST          0x02
  47. #define         BPF_STX         0x03
  48. #define         BPF_ALU         0x04
  49. #define         BPF_JMP         0x05
  50. #define         BPF_RET         0x06
  51. #define         BPF_MISC        0x07
  52. /* ld/ldx fields */
  53. #define BPF_SIZE(code)  ((code) & 0x18)
  54. #define         BPF_W           0x00
  55. #define         BPF_H           0x08
  56. #define         BPF_B           0x10
  57. #define BPF_MODE(code)  ((code) & 0xe0)
  58. #define         BPF_IMM         0x00
  59. #define         BPF_ABS         0x20
  60. #define         BPF_IND         0x40
  61. #define         BPF_MEM         0x60
  62. #define         BPF_LEN         0x80
  63. #define         BPF_MSH         0xa0
  64. /* alu/jmp fields */
  65. #define BPF_OP(code)    ((code) & 0xf0)
  66. #define         BPF_ADD         0x00
  67. #define         BPF_SUB         0x10
  68. #define         BPF_MUL         0x20
  69. #define         BPF_DIV         0x30
  70. #define         BPF_OR          0x40
  71. #define         BPF_AND         0x50
  72. #define         BPF_LSH         0x60
  73. #define         BPF_RSH         0x70
  74. #define         BPF_NEG         0x80
  75. #define         BPF_JA          0x00
  76. #define         BPF_JEQ         0x10
  77. #define         BPF_JGT         0x20
  78. #define         BPF_JGE         0x30
  79. #define         BPF_JSET        0x40
  80. #define BPF_SRC(code)   ((code) & 0x08)
  81. #define         BPF_K           0x00
  82. #define         BPF_X           0x08
  83. /* ret - BPF_K and BPF_X also apply */
  84. #define BPF_RVAL(code)  ((code) & 0x18)
  85. #define         BPF_A           0x10
  86. /* misc */
  87. #define BPF_MISCOP(code) ((code) & 0xf8)
  88. #define         BPF_TAX         0x00
  89. #define         BPF_TXA         0x80
  90. #ifndef BPF_MAXINSNS
  91. #define BPF_MAXINSNS 4096
  92. #endif
  93. /*
  94.  * Macros for filter block array initializers.
  95.  */
  96. #ifndef BPF_STMT
  97. #define BPF_STMT(code, k) { (unsigned short)(code), 0, 0, k }
  98. #endif
  99. #ifndef BPF_JUMP
  100. #define BPF_JUMP(code, k, jt, jf) { (unsigned short)(code), jt, jf, k }
  101. #endif
  102. /*
  103.  * Number of scratch memory words for: BPF_ST and BPF_STX
  104.  */
  105. #define BPF_MEMWORDS 16
  106. /* RATIONALE. Negative offsets are invalid in BPF.
  107.    We use them to reference ancillary data.
  108.    Unlike introduction new instructions, it does not break
  109.    existing compilers/optimizers.
  110.  */
  111. #define SKF_AD_OFF    (-0x1000)
  112. #define SKF_AD_PROTOCOL 0
  113. #define SKF_AD_PKTTYPE  4
  114. #define SKF_AD_IFINDEX  8
  115. #define SKF_AD_MAX  12
  116. #define SKF_NET_OFF   (-0x100000)
  117. #define SKF_LL_OFF    (-0x200000)
  118. #ifdef __KERNEL__
  119. extern int sk_run_filter(struct sk_buff *skb, struct sock_filter *filter, int flen);
  120. extern int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk);
  121. extern int sk_chk_filter(struct sock_filter *filter, int flen);
  122. #endif /* __KERNEL__ */
  123. #endif /* __LINUX_FILTER_H__ */