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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _NET_DN_FIB_H
  2. #define _NET_DN_FIB_H
  3. #include <linux/config.h>
  4. #ifdef CONFIG_DECNET_ROUTER
  5. #include <linux/rtnetlink.h>
  6. struct dn_kern_rta
  7. {
  8.         void            *rta_dst;
  9.         void            *rta_src;
  10.         int             *rta_iif;
  11.         int             *rta_oif;
  12.         void            *rta_gw;
  13.         u32             *rta_priority;
  14.         void            *rta_prefsrc;
  15.         struct rtattr   *rta_mx;
  16.         struct rtattr   *rta_mp;
  17.         unsigned char   *rta_protoinfo;
  18.         unsigned char   *rta_flow;
  19.         struct rta_cacheinfo *rta_ci;
  20. };
  21. struct dn_fib_key {
  22. dn_address src;
  23. dn_address dst;
  24. int iif;
  25. int oif;
  26. u32 fwmark;
  27. unsigned char scope;
  28. };
  29. struct dn_fib_res {
  30. struct dn_fib_rule *r;
  31. struct dn_fib_info *fi;
  32. unsigned char prefixlen;
  33. unsigned char nh_sel;
  34. unsigned char type;
  35. unsigned char scope;
  36. };
  37. struct dn_fib_nh {
  38. struct net_device *nh_dev;
  39. unsigned nh_flags;
  40. unsigned char nh_scope;
  41. int nh_weight;
  42. int nh_power;
  43. int nh_oif;
  44. u32 nh_gw;
  45. };
  46. struct dn_fib_info {
  47. struct dn_fib_info *fib_next;
  48. struct dn_fib_info *fib_prev;
  49. int  fib_treeref;
  50. atomic_t fib_clntref;
  51. int fib_dead;
  52. unsigned fib_flags;
  53. int fib_protocol;
  54. dn_address fib_prefsrc;
  55. u32 fib_priority;
  56. int fib_nhs;
  57. int fib_power;
  58. struct dn_fib_nh fib_nh[0];
  59. #define fib_dev fib_nh[0].nh_dev
  60. };
  61. #define DN_FIB_RES_NH(res) ((res).fi->fib_nh[(res).nh_sel])
  62. #define DN_FIB_RES_RESET(res) ((res).nh_sel = 0)
  63. #define DN_FIB_RES_GW(res) (DN_FIB_RES_NH(res).nh_gw)
  64. #define DN_FIB_RES_DEV(res) (DN_FIB_RES_NH(res).nh_dev)
  65. #define DN_FIB_RES_OIF(res) (DN_FIB_RES_NH(res).nh_oif)
  66. typedef struct {
  67. u16 datum;
  68. } dn_fib_key_t;
  69. typedef struct {
  70. u16 datum;
  71. } dn_fib_hash_t;
  72. typedef struct {
  73. u16 datum;
  74. } dn_fib_idx_t;
  75. struct dn_fib_node {
  76. struct dn_fib_node *fn_next;
  77. struct dn_fib_info *fn_info;
  78. #define DN_FIB_INFO(f) ((f)->fn_info)
  79. dn_fib_key_t fn_key;
  80. u8 fn_type;
  81. u8 fn_scope;
  82. u8 fn_state;
  83. };
  84. struct dn_fib_table {
  85. int n;
  86. int (*insert)(struct dn_fib_table *t, struct rtmsg *r, 
  87. struct dn_kern_rta *rta, struct nlmsghdr *n, 
  88. struct netlink_skb_parms *req);
  89. int (*delete)(struct dn_fib_table *t, struct rtmsg *r,
  90. struct dn_kern_rta *rta, struct nlmsghdr *n,
  91. struct netlink_skb_parms *req);
  92. int (*lookup)(struct dn_fib_table *t, const struct dn_fib_key *key, 
  93. struct dn_fib_res *res);
  94. int (*flush)(struct dn_fib_table *t);
  95. #ifdef CONFIG_PROC_FS
  96. int (*get_info)(struct dn_fib_table *table, char *buf,
  97. int first, int count);
  98. #endif /* CONFIG_PROC_FS */
  99. int (*dump)(struct dn_fib_table *t, struct sk_buff *skb, struct netlink_callback *cb);
  100. unsigned char data[0];
  101. };
  102. /*
  103.  * dn_fib.c
  104.  */
  105. extern void dn_fib_init(void);
  106. extern void dn_fib_cleanup(void);
  107. extern int dn_fib_rt_message(struct sk_buff *skb);
  108. extern int dn_fib_ioctl(struct socket *sock, unsigned int cmd, 
  109. unsigned long arg);
  110. extern struct dn_fib_info *dn_fib_create_info(const struct rtmsg *r, 
  111. struct dn_kern_rta *rta, 
  112. const struct nlmsghdr *nlh, int *errp);
  113. extern int dn_fib_semantic_match(int type, struct dn_fib_info *fi, 
  114. const struct dn_fib_key *key, struct dn_fib_res *res);
  115. extern void dn_fib_release_info(struct dn_fib_info *fi);
  116. extern u16 dn_fib_get_attr16(struct rtattr *attr, int attrlen, int type);
  117. extern void dn_fib_flush(void);
  118. extern void dn_fib_select_multipath(const struct dn_fib_key *key, 
  119. struct dn_fib_res *res);
  120. extern int dn_fib_sync_down(dn_address local, struct net_device *dev, 
  121. int force);
  122. extern int dn_fib_sync_up(struct net_device *dev);
  123. /*
  124.  * dn_tables.c
  125.  */
  126. extern struct dn_fib_table *dn_fib_get_table(int n, int creat);
  127. extern struct dn_fib_table *dn_fib_empty_table(void);
  128. extern void dn_fib_table_init(void);
  129. extern void dn_fib_table_cleanup(void);
  130. /*
  131.  * dn_rules.c
  132.  */
  133. extern void dn_fib_rules_init(void);
  134. extern void dn_fib_rules_cleanup(void);
  135. extern void dn_fib_rule_put(struct dn_fib_rule *);
  136. extern int dn_fib_lookup(struct dn_fib_key *key, struct dn_fib_res *res);
  137. /*
  138.  * rtnetlink interface
  139.  */
  140. extern int dn_fib_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg);
  141. extern int dn_fib_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg);
  142. extern int dn_fib_dump(struct sk_buff *skb, struct netlink_callback *cb);
  143. extern int dn_fib_rtm_delrule(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg);
  144. extern int dn_fib_rtm_newrule(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg);
  145. extern int dn_fib_dump_rules(struct sk_buff *skb, struct netlink_callback *cb);
  146. #define DN_NUM_TABLES 255
  147. #define DN_MIN_TABLE 1
  148. #define DN_DEFAULT_TABLE 1
  149. #define DN_L1_TABLE 1
  150. #define DN_L2_TABLE 2
  151. extern void dn_fib_free_info(struct dn_fib_info *fi);
  152. static __inline__ void dn_fib_info_put(struct dn_fib_info *fi)
  153. {
  154. if (atomic_dec_and_test(&fi->fib_clntref))
  155. dn_fib_free_info(fi);
  156. }
  157. static __inline__ void dn_fib_res_put(struct dn_fib_res *res)
  158. {
  159. if (res->fi)
  160. dn_fib_info_put(res->fi);
  161. if (res->r)
  162. dn_fib_rule_put(res->r);
  163. }
  164. static __inline__ u16 dnet_make_mask(int n)
  165. {
  166.         if (n)
  167.                 return htons(~((1<<(16-n))-1));
  168.         return 0;
  169. }
  170. #endif /* CONFIG_DECNET_ROUTER */
  171. #endif /* _NET_DN_FIB_H */