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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Header for use in defining a given protocol for connection tracking. */
  2. #ifndef _IP_CONNTRACK_PROTOCOL_H
  3. #define _IP_CONNTRACK_PROTOCOL_H
  4. #include <linux/netfilter_ipv4/ip_conntrack.h>
  5. #include <linux/netfilter/nfnetlink_conntrack.h>
  6. struct seq_file;
  7. struct ip_conntrack_protocol
  8. {
  9. /* Protocol number. */
  10. u_int8_t proto;
  11. /* Protocol name */
  12. const char *name;
  13. /* Try to fill in the third arg: dataoff is offset past IP
  14.            hdr.  Return true if possible. */
  15. int (*pkt_to_tuple)(const struct sk_buff *skb,
  16.    unsigned int dataoff,
  17.    struct ip_conntrack_tuple *tuple);
  18. /* Invert the per-proto part of the tuple: ie. turn xmit into reply.
  19.  * Some packets can't be inverted: return 0 in that case.
  20.  */
  21. int (*invert_tuple)(struct ip_conntrack_tuple *inverse,
  22.     const struct ip_conntrack_tuple *orig);
  23. /* Print out the per-protocol part of the tuple. Return like seq_* */
  24. int (*print_tuple)(struct seq_file *,
  25.    const struct ip_conntrack_tuple *);
  26. /* Print out the private part of the conntrack. */
  27. int (*print_conntrack)(struct seq_file *, const struct ip_conntrack *);
  28. /* Returns verdict for packet, or -1 for invalid. */
  29. int (*packet)(struct ip_conntrack *conntrack,
  30.       const struct sk_buff *skb,
  31.       enum ip_conntrack_info ctinfo);
  32. /* Called when a new connection for this protocol found;
  33.  * returns TRUE if it's OK.  If so, packet() called next. */
  34. int (*new)(struct ip_conntrack *conntrack, const struct sk_buff *skb);
  35. /* Called when a conntrack entry is destroyed */
  36. void (*destroy)(struct ip_conntrack *conntrack);
  37. int (*error)(struct sk_buff *skb, enum ip_conntrack_info *ctinfo,
  38.      unsigned int hooknum);
  39. /* convert protoinfo to nfnetink attributes */
  40. int (*to_nfattr)(struct sk_buff *skb, struct nfattr *nfa,
  41.  const struct ip_conntrack *ct);
  42. /* convert nfnetlink attributes to protoinfo */
  43. int (*from_nfattr)(struct nfattr *tb[], struct ip_conntrack *ct);
  44. int (*tuple_to_nfattr)(struct sk_buff *skb,
  45.        const struct ip_conntrack_tuple *t);
  46. int (*nfattr_to_tuple)(struct nfattr *tb[],
  47.        struct ip_conntrack_tuple *t);
  48. /* Module (if any) which this is connected to. */
  49. struct module *me;
  50. };
  51. /* Protocol registration. */
  52. extern int ip_conntrack_protocol_register(struct ip_conntrack_protocol *proto);
  53. extern void ip_conntrack_protocol_unregister(struct ip_conntrack_protocol *proto);
  54. /* Existing built-in protocols */
  55. extern struct ip_conntrack_protocol ip_conntrack_protocol_tcp;
  56. extern struct ip_conntrack_protocol ip_conntrack_protocol_udp;
  57. extern struct ip_conntrack_protocol ip_conntrack_protocol_icmp;
  58. extern struct ip_conntrack_protocol ip_conntrack_generic_protocol;
  59. extern int ip_conntrack_protocol_tcp_init(void);
  60. /* Log invalid packets */
  61. extern unsigned int ip_ct_log_invalid;
  62. extern int ip_ct_port_tuple_to_nfattr(struct sk_buff *,
  63.       const struct ip_conntrack_tuple *);
  64. extern int ip_ct_port_nfattr_to_tuple(struct nfattr *tb[],
  65.       struct ip_conntrack_tuple *);
  66. #ifdef CONFIG_SYSCTL
  67. #ifdef DEBUG_INVALID_PACKETS
  68. #define LOG_INVALID(proto) 
  69. (ip_ct_log_invalid == (proto) || ip_ct_log_invalid == IPPROTO_RAW)
  70. #else
  71. #define LOG_INVALID(proto) 
  72. ((ip_ct_log_invalid == (proto) || ip_ct_log_invalid == IPPROTO_RAW) 
  73.  && net_ratelimit())
  74. #endif
  75. #else
  76. #define LOG_INVALID(proto) 0
  77. #endif /* CONFIG_SYSCTL */
  78. #endif /*_IP_CONNTRACK_PROTOCOL_H*/