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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _CONNTRACK_PROTO_GRE_H
  2. #define _CONNTRACK_PROTO_GRE_H
  3. #include <asm/byteorder.h>
  4. /* GRE PROTOCOL HEADER */
  5. /* GRE Version field */
  6. #define GRE_VERSION_1701 0x0
  7. #define GRE_VERSION_PPTP 0x1
  8. /* GRE Protocol field */
  9. #define GRE_PROTOCOL_PPTP 0x880B
  10. /* GRE Flags */
  11. #define GRE_FLAG_C 0x80
  12. #define GRE_FLAG_R 0x40
  13. #define GRE_FLAG_K 0x20
  14. #define GRE_FLAG_S 0x10
  15. #define GRE_FLAG_A 0x80
  16. #define GRE_IS_C(f) ((f)&GRE_FLAG_C)
  17. #define GRE_IS_R(f) ((f)&GRE_FLAG_R)
  18. #define GRE_IS_K(f) ((f)&GRE_FLAG_K)
  19. #define GRE_IS_S(f) ((f)&GRE_FLAG_S)
  20. #define GRE_IS_A(f) ((f)&GRE_FLAG_A)
  21. /* GRE is a mess: Four different standards */
  22. struct gre_hdr {
  23. #if defined(__LITTLE_ENDIAN_BITFIELD)
  24. __u16 rec:3,
  25. srr:1,
  26. seq:1,
  27. key:1,
  28. routing:1,
  29. csum:1,
  30. version:3,
  31. reserved:4,
  32. ack:1;
  33. #elif defined(__BIG_ENDIAN_BITFIELD)
  34. __u16 csum:1,
  35. routing:1,
  36. key:1,
  37. seq:1,
  38. srr:1,
  39. rec:3,
  40. ack:1,
  41. reserved:4,
  42. version:3;
  43. #else
  44. #error "Adjust your <asm/byteorder.h> defines"
  45. #endif
  46. __u16 protocol;
  47. };
  48. /* modified GRE header for PPTP */
  49. struct gre_hdr_pptp {
  50. __u8  flags; /* bitfield */
  51. __u8  version; /* should be GRE_VERSION_PPTP */
  52. __u16 protocol; /* should be GRE_PROTOCOL_PPTP */
  53. __u16 payload_len; /* size of ppp payload, not inc. gre header */
  54. __u16 call_id; /* peer's call_id for this session */
  55. __u32 seq; /* sequence number.  Present if S==1 */
  56. __u32 ack; /* seq number of highest packet recieved by */
  57. /*  sender in this session */
  58. };
  59. /* this is part of ip_conntrack */
  60. struct ip_ct_gre {
  61. unsigned int stream_timeout;
  62. unsigned int timeout;
  63. };
  64. #ifdef __KERNEL__
  65. struct ip_conntrack_expect;
  66. struct ip_conntrack;
  67. /* structure for original <-> reply keymap */
  68. struct ip_ct_gre_keymap {
  69. struct list_head list;
  70. struct ip_conntrack_tuple tuple;
  71. };
  72. /* add new tuple->key_reply pair to keymap */
  73. int ip_ct_gre_keymap_add(struct ip_conntrack *ct,
  74.  struct ip_conntrack_tuple *t,
  75.  int reply);
  76. /* delete keymap entries */
  77. void ip_ct_gre_keymap_destroy(struct ip_conntrack *ct);
  78. /* get pointer to gre key, if present */
  79. static inline u_int32_t *gre_key(struct gre_hdr *greh)
  80. {
  81. if (!greh->key)
  82. return NULL;
  83. if (greh->csum || greh->routing)
  84. return (u_int32_t *) (greh+sizeof(*greh)+4);
  85. return (u_int32_t *) (greh+sizeof(*greh));
  86. }
  87. /* get pointer ot gre csum, if present */
  88. static inline u_int16_t *gre_csum(struct gre_hdr *greh)
  89. {
  90. if (!greh->csum)
  91. return NULL;
  92. return (u_int16_t *) (greh+sizeof(*greh));
  93. }
  94. #endif /* __KERNEL__ */
  95. #endif /* _CONNTRACK_PROTO_GRE_H */