filter.h 4.1 KB

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