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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __LINUX_RTNETLINK_H
  2. #define __LINUX_RTNETLINK_H
  3. #include <linux/netlink.h>
  4. #define RTNL_DEBUG 1
  5. /****
  6.  * Routing/neighbour discovery messages.
  7.  ****/
  8. /* Types of messages */
  9. #define RTM_BASE 0x10
  10. #define RTM_NEWLINK (RTM_BASE+0)
  11. #define RTM_DELLINK (RTM_BASE+1)
  12. #define RTM_GETLINK (RTM_BASE+2)
  13. #define RTM_NEWADDR (RTM_BASE+4)
  14. #define RTM_DELADDR (RTM_BASE+5)
  15. #define RTM_GETADDR (RTM_BASE+6)
  16. #define RTM_NEWROUTE (RTM_BASE+8)
  17. #define RTM_DELROUTE (RTM_BASE+9)
  18. #define RTM_GETROUTE (RTM_BASE+10)
  19. #define RTM_NEWNEIGH (RTM_BASE+12)
  20. #define RTM_DELNEIGH (RTM_BASE+13)
  21. #define RTM_GETNEIGH (RTM_BASE+14)
  22. #define RTM_NEWRULE (RTM_BASE+16)
  23. #define RTM_DELRULE (RTM_BASE+17)
  24. #define RTM_GETRULE (RTM_BASE+18)
  25. #define RTM_NEWQDISC (RTM_BASE+20)
  26. #define RTM_DELQDISC (RTM_BASE+21)
  27. #define RTM_GETQDISC (RTM_BASE+22)
  28. #define RTM_NEWTCLASS (RTM_BASE+24)
  29. #define RTM_DELTCLASS (RTM_BASE+25)
  30. #define RTM_GETTCLASS (RTM_BASE+26)
  31. #define RTM_NEWTFILTER (RTM_BASE+28)
  32. #define RTM_DELTFILTER (RTM_BASE+29)
  33. #define RTM_GETTFILTER (RTM_BASE+30)
  34. #define RTM_MAX (RTM_BASE+31)
  35. /* 
  36.    Generic structure for encapsulation optional route information.
  37.    It is reminiscent of sockaddr, but with sa_family replaced
  38.    with attribute type.
  39.  */
  40. struct rtattr
  41. {
  42. unsigned short rta_len;
  43. unsigned short rta_type;
  44. };
  45. /* Macros to handle rtattributes */
  46. #define RTA_ALIGNTO 4
  47. #define RTA_ALIGN(len) ( ((len)+RTA_ALIGNTO-1) & ~(RTA_ALIGNTO-1) )
  48. #define RTA_OK(rta,len) ((len) > 0 && (rta)->rta_len >= sizeof(struct rtattr) && 
  49.  (rta)->rta_len <= (len))
  50. #define RTA_NEXT(rta,attrlen) ((attrlen) -= RTA_ALIGN((rta)->rta_len), 
  51.  (struct rtattr*)(((char*)(rta)) + RTA_ALIGN((rta)->rta_len)))
  52. #define RTA_LENGTH(len) (RTA_ALIGN(sizeof(struct rtattr)) + (len))
  53. #define RTA_SPACE(len) RTA_ALIGN(RTA_LENGTH(len))
  54. #define RTA_DATA(rta)   ((void*)(((char*)(rta)) + RTA_LENGTH(0)))
  55. #define RTA_PAYLOAD(rta) ((int)((rta)->rta_len) - RTA_LENGTH(0))
  56. /******************************************************************************
  57.  * Definitions used in routing table administation.
  58.  ****/
  59. struct rtmsg
  60. {
  61. unsigned char rtm_family;
  62. unsigned char rtm_dst_len;
  63. unsigned char rtm_src_len;
  64. unsigned char rtm_tos;
  65. unsigned char rtm_table; /* Routing table id */
  66. unsigned char rtm_protocol; /* Routing protocol; see below */
  67. unsigned char rtm_scope; /* See below */
  68. unsigned char rtm_type; /* See below */
  69. unsigned rtm_flags;
  70. };
  71. /* rtm_type */
  72. enum
  73. {
  74. RTN_UNSPEC,
  75. RTN_UNICAST, /* Gateway or direct route */
  76. RTN_LOCAL, /* Accept locally */
  77. RTN_BROADCAST, /* Accept locally as broadcast,
  78.    send as broadcast */
  79. RTN_ANYCAST, /* Accept locally as broadcast,
  80.    but send as unicast */
  81. RTN_MULTICAST, /* Multicast route */
  82. RTN_BLACKHOLE, /* Drop */
  83. RTN_UNREACHABLE, /* Destination is unreachable   */
  84. RTN_PROHIBIT, /* Administratively prohibited */
  85. RTN_THROW, /* Not in this table */
  86. RTN_NAT, /* Translate this address */
  87. RTN_XRESOLVE, /* Use external resolver */
  88. };
  89. #define RTN_MAX RTN_XRESOLVE
  90. /* rtm_protocol */
  91. #define RTPROT_UNSPEC 0
  92. #define RTPROT_REDIRECT 1 /* Route installed by ICMP redirects;
  93.    not used by current IPv4 */
  94. #define RTPROT_KERNEL 2 /* Route installed by kernel */
  95. #define RTPROT_BOOT 3 /* Route installed during boot */
  96. #define RTPROT_STATIC 4 /* Route installed by administrator */
  97. /* Values of protocol >= RTPROT_STATIC are not interpreted by kernel;
  98.    they just passed from user and back as is.
  99.    It will be used by hypothetical multiple routing daemons.
  100.    Note that protocol values should be standardized in order to
  101.    avoid conflicts.
  102.  */
  103. #define RTPROT_GATED 8 /* Apparently, GateD */
  104. #define RTPROT_RA 9 /* RDISC/ND router advertisments */
  105. #define RTPROT_MRT 10 /* Merit MRT */
  106. #define RTPROT_ZEBRA 11 /* Zebra */
  107. #define RTPROT_BIRD 12 /* BIRD */
  108. #define RTPROT_DNROUTED 13 /* DECnet routing daemon */
  109. /* rtm_scope
  110.    Really it is not scope, but sort of distance to the destination.
  111.    NOWHERE are reserved for not existing destinations, HOST is our
  112.    local addresses, LINK are destinations, located on directly attached
  113.    link and UNIVERSE is everywhere in the Universe.
  114.    Intermediate values are also possible f.e. interior routes
  115.    could be assigned a value between UNIVERSE and LINK.
  116. */
  117. enum rt_scope_t
  118. {
  119. RT_SCOPE_UNIVERSE=0,
  120. /* User defined values  */
  121. RT_SCOPE_SITE=200,
  122. RT_SCOPE_LINK=253,
  123. RT_SCOPE_HOST=254,
  124. RT_SCOPE_NOWHERE=255
  125. };
  126. /* rtm_flags */
  127. #define RTM_F_NOTIFY 0x100 /* Notify user of route change */
  128. #define RTM_F_CLONED 0x200 /* This route is cloned */
  129. #define RTM_F_EQUALIZE 0x400 /* Multipath equalizer: NI */
  130. /* Reserved table identifiers */
  131. enum rt_class_t
  132. {
  133. RT_TABLE_UNSPEC=0,
  134. /* User defined values */
  135. RT_TABLE_DEFAULT=253,
  136. RT_TABLE_MAIN=254,
  137. RT_TABLE_LOCAL=255
  138. };
  139. #define RT_TABLE_MAX RT_TABLE_LOCAL
  140. /* Routing message attributes */
  141. enum rtattr_type_t
  142. {
  143. RTA_UNSPEC,
  144. RTA_DST,
  145. RTA_SRC,
  146. RTA_IIF,
  147. RTA_OIF,
  148. RTA_GATEWAY,
  149. RTA_PRIORITY,
  150. RTA_PREFSRC,
  151. RTA_METRICS,
  152. RTA_MULTIPATH,
  153. RTA_PROTOINFO,
  154. RTA_FLOW,
  155. RTA_CACHEINFO
  156. };
  157. #define RTA_MAX RTA_CACHEINFO
  158. #define RTM_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct rtmsg))))
  159. #define RTM_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct rtmsg))
  160. /* RTM_MULTIPATH --- array of struct rtnexthop.
  161.  *
  162.  * "struct rtnexthop" describres all necessary nexthop information,
  163.  * i.e. parameters of path to a destination via this nextop.
  164.  *
  165.  * At the moment it is impossible to set different prefsrc, mtu, window
  166.  * and rtt for different paths from multipath.
  167.  */
  168. struct rtnexthop
  169. {
  170. unsigned short rtnh_len;
  171. unsigned char rtnh_flags;
  172. unsigned char rtnh_hops;
  173. int rtnh_ifindex;
  174. };
  175. /* rtnh_flags */
  176. #define RTNH_F_DEAD 1 /* Nexthop is dead (used by multipath) */
  177. #define RTNH_F_PERVASIVE 2 /* Do recursive gateway lookup */
  178. #define RTNH_F_ONLINK 4 /* Gateway is forced on link */
  179. /* Macros to handle hexthops */
  180. #define RTNH_ALIGNTO 4
  181. #define RTNH_ALIGN(len) ( ((len)+RTNH_ALIGNTO-1) & ~(RTNH_ALIGNTO-1) )
  182. #define RTNH_OK(rtnh,len) ((rtnh)->rtnh_len >= sizeof(struct rtnexthop) && 
  183.    ((int)(rtnh)->rtnh_len) <= (len))
  184. #define RTNH_NEXT(rtnh) ((struct rtnexthop*)(((char*)(rtnh)) + RTNH_ALIGN((rtnh)->rtnh_len)))
  185. #define RTNH_LENGTH(len) (RTNH_ALIGN(sizeof(struct rtnexthop)) + (len))
  186. #define RTNH_SPACE(len) RTNH_ALIGN(RTNH_LENGTH(len))
  187. #define RTNH_DATA(rtnh)   ((struct rtattr*)(((char*)(rtnh)) + RTNH_LENGTH(0)))
  188. /* RTM_CACHEINFO */
  189. struct rta_cacheinfo
  190. {
  191. __u32 rta_clntref;
  192. __u32 rta_lastuse;
  193. __s32 rta_expires;
  194. __u32 rta_error;
  195. __u32 rta_used;
  196. #define RTNETLINK_HAVE_PEERINFO 1
  197. __u32 rta_id;
  198. __u32 rta_ts;
  199. __u32 rta_tsage;
  200. };
  201. /* RTM_METRICS --- array of struct rtattr with types of RTAX_* */
  202. enum
  203. {
  204. RTAX_UNSPEC,
  205. #define RTAX_UNSPEC RTAX_UNSPEC
  206. RTAX_LOCK,
  207. #define RTAX_LOCK RTAX_LOCK
  208. RTAX_MTU,
  209. #define RTAX_MTU RTAX_MTU
  210. RTAX_WINDOW,
  211. #define RTAX_WINDOW RTAX_WINDOW
  212. RTAX_RTT,
  213. #define RTAX_RTT RTAX_RTT
  214. RTAX_RTTVAR,
  215. #define RTAX_RTTVAR RTAX_RTTVAR
  216. RTAX_SSTHRESH,
  217. #define RTAX_SSTHRESH RTAX_SSTHRESH
  218. RTAX_CWND,
  219. #define RTAX_CWND RTAX_CWND
  220. RTAX_ADVMSS,
  221. #define RTAX_ADVMSS RTAX_ADVMSS
  222. RTAX_REORDERING,
  223. #define RTAX_REORDERING RTAX_REORDERING
  224. };
  225. #define RTAX_MAX RTAX_REORDERING
  226. /*********************************************************
  227.  * Interface address.
  228.  ****/
  229. struct ifaddrmsg
  230. {
  231. unsigned char ifa_family;
  232. unsigned char ifa_prefixlen; /* The prefix length */
  233. unsigned char ifa_flags; /* Flags */
  234. unsigned char ifa_scope; /* See above */
  235. int ifa_index; /* Link index */
  236. };
  237. enum
  238. {
  239. IFA_UNSPEC,
  240. IFA_ADDRESS,
  241. IFA_LOCAL,
  242. IFA_LABEL,
  243. IFA_BROADCAST,
  244. IFA_ANYCAST,
  245. IFA_CACHEINFO
  246. };
  247. #define IFA_MAX IFA_CACHEINFO
  248. /* ifa_flags */
  249. #define IFA_F_SECONDARY 0x01
  250. #define IFA_F_DEPRECATED 0x20
  251. #define IFA_F_TENTATIVE 0x40
  252. #define IFA_F_PERMANENT 0x80
  253. struct ifa_cacheinfo
  254. {
  255. __s32 ifa_prefered;
  256. __s32 ifa_valid;
  257. };
  258. #define IFA_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
  259. #define IFA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifaddrmsg))
  260. /*
  261.    Important comment:
  262.    IFA_ADDRESS is prefix address, rather than local interface address.
  263.    It makes no difference for normally configured broadcast interfaces,
  264.    but for point-to-point IFA_ADDRESS is DESTINATION address,
  265.    local address is supplied in IFA_LOCAL attribute.
  266.  */
  267. /**************************************************************
  268.  * Neighbour discovery.
  269.  ****/
  270. struct ndmsg
  271. {
  272. unsigned char ndm_family;
  273. unsigned char ndm_pad1;
  274. unsigned short ndm_pad2;
  275. int ndm_ifindex; /* Link index */
  276. __u16 ndm_state;
  277. __u8 ndm_flags;
  278. __u8 ndm_type;
  279. };
  280. enum
  281. {
  282. NDA_UNSPEC,
  283. NDA_DST,
  284. NDA_LLADDR,
  285. NDA_CACHEINFO
  286. };
  287. #define NDA_MAX NDA_CACHEINFO
  288. #define NDA_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndmsg))))
  289. #define NDA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndmsg))
  290. /*
  291.  * Neighbor Cache Entry Flags
  292.  */
  293. #define NTF_PROXY 0x08 /* == ATF_PUBL */
  294. #define NTF_ROUTER 0x80
  295. /*
  296.  * Neighbor Cache Entry States.
  297.  */
  298. #define NUD_INCOMPLETE 0x01
  299. #define NUD_REACHABLE 0x02
  300. #define NUD_STALE 0x04
  301. #define NUD_DELAY 0x08
  302. #define NUD_PROBE 0x10
  303. #define NUD_FAILED 0x20
  304. /* Dummy states */
  305. #define NUD_NOARP 0x40
  306. #define NUD_PERMANENT 0x80
  307. #define NUD_NONE 0x00
  308. struct nda_cacheinfo
  309. {
  310. __u32 ndm_confirmed;
  311. __u32 ndm_used;
  312. __u32 ndm_updated;
  313. __u32 ndm_refcnt;
  314. };
  315. /****
  316.  * General form of address family dependent message.
  317.  ****/
  318. struct rtgenmsg
  319. {
  320. unsigned char rtgen_family;
  321. };
  322. /*****************************************************************
  323.  * Link layer specific messages.
  324.  ****/
  325. /* struct ifinfomsg
  326.  * passes link level specific information, not dependent
  327.  * on network protocol.
  328.  */
  329. struct ifinfomsg
  330. {
  331. unsigned char ifi_family;
  332. unsigned char __ifi_pad;
  333. unsigned short ifi_type; /* ARPHRD_* */
  334. int ifi_index; /* Link index */
  335. unsigned ifi_flags; /* IFF_* flags */
  336. unsigned ifi_change; /* IFF_* change mask */
  337. };
  338. enum
  339. {
  340. IFLA_UNSPEC,
  341. IFLA_ADDRESS,
  342. IFLA_BROADCAST,
  343. IFLA_IFNAME,
  344. IFLA_MTU,
  345. IFLA_LINK,
  346. IFLA_QDISC,
  347. IFLA_STATS,
  348. IFLA_COST,
  349. #define IFLA_COST IFLA_COST
  350. IFLA_PRIORITY,
  351. #define IFLA_PRIORITY IFLA_PRIORITY
  352. IFLA_MASTER
  353. #define IFLA_MASTER IFLA_MASTER
  354. };
  355. #define IFLA_MAX IFLA_MASTER
  356. #define IFLA_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
  357. #define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
  358. /* ifi_flags.
  359.    IFF_* flags.
  360.    The only change is:
  361.    IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are
  362.    more not changeable by user. They describe link media
  363.    characteristics and set by device driver.
  364.    Comments:
  365.    - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid
  366.    - If neiher of these three flags are set;
  367.      the interface is NBMA.
  368.    - IFF_MULTICAST does not mean anything special:
  369.    multicasts can be used on all not-NBMA links.
  370.    IFF_MULTICAST means that this media uses special encapsulation
  371.    for multicast frames. Apparently, all IFF_POINTOPOINT and
  372.    IFF_BROADCAST devices are able to use multicasts too.
  373.  */
  374. /* IFLA_LINK.
  375.    For usual devices it is equal ifi_index.
  376.    If it is a "virtual interface" (f.e. tunnel), ifi_link
  377.    can point to real physical interface (f.e. for bandwidth calculations),
  378.    or maybe 0, what means, that real media is unknown (usual
  379.    for IPIP tunnels, when route to endpoint is allowed to change)
  380.  */
  381. /*****************************************************************
  382.  * Traffic control messages.
  383.  ****/
  384. struct tcmsg
  385. {
  386. unsigned char tcm_family;
  387. unsigned char tcm__pad1;
  388. unsigned short tcm__pad2;
  389. int tcm_ifindex;
  390. __u32 tcm_handle;
  391. __u32 tcm_parent;
  392. __u32 tcm_info;
  393. };
  394. enum
  395. {
  396. TCA_UNSPEC,
  397. TCA_KIND,
  398. TCA_OPTIONS,
  399. TCA_STATS,
  400. TCA_XSTATS,
  401. TCA_RATE,
  402. };
  403. #define TCA_MAX TCA_RATE
  404. #define TCA_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcmsg))))
  405. #define TCA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct tcmsg))
  406. /* SUMMARY: maximal rtattr understood by kernel */
  407. #define RTATTR_MAX RTA_MAX
  408. /* RTnetlink multicast groups */
  409. #define RTMGRP_LINK 1
  410. #define RTMGRP_NOTIFY 2
  411. #define RTMGRP_NEIGH 4
  412. #define RTMGRP_TC 8
  413. #define RTMGRP_IPV4_IFADDR 0x10
  414. #define RTMGRP_IPV4_MROUTE 0x20
  415. #define RTMGRP_IPV4_ROUTE 0x40
  416. #define RTMGRP_IPV6_IFADDR 0x100
  417. #define RTMGRP_IPV6_MROUTE 0x200
  418. #define RTMGRP_IPV6_ROUTE 0x400
  419. #define RTMGRP_DECnet_IFADDR    0x1000
  420. #define RTMGRP_DECnet_ROUTE     0x4000
  421. /* End of information exported to user level */
  422. #ifdef __KERNEL__
  423. #include <linux/config.h>
  424. static __inline__ int rtattr_strcmp(struct rtattr *rta, char *str)
  425. {
  426. int len = strlen(str) + 1;
  427. return len > rta->rta_len || memcmp(RTA_DATA(rta), str, len);
  428. }
  429. extern int rtattr_parse(struct rtattr *tb[], int maxattr, struct rtattr *rta, int len);
  430. extern struct sock *rtnl;
  431. struct rtnetlink_link
  432. {
  433. int (*doit)(struct sk_buff *, struct nlmsghdr*, void *attr);
  434. int (*dumpit)(struct sk_buff *, struct netlink_callback *cb);
  435. };
  436. extern struct rtnetlink_link * rtnetlink_links[NPROTO];
  437. extern int rtnetlink_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb);
  438. extern int rtnetlink_send(struct sk_buff *skb, u32 pid, u32 group, int echo);
  439. extern int rtnetlink_put_metrics(struct sk_buff *skb, unsigned *metrics);
  440. extern void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data);
  441. #define RTA_PUT(skb, attrtype, attrlen, data) 
  442. ({ if (skb_tailroom(skb) < (int)RTA_SPACE(attrlen)) goto rtattr_failure; 
  443.    __rta_fill(skb, attrtype, attrlen, data); })
  444. extern void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change);
  445. extern struct semaphore rtnl_sem;
  446. #define rtnl_exlock() do { } while(0)
  447. #define rtnl_exunlock() do { } while(0)
  448. #define rtnl_exlock_nowait() (0)
  449. #define rtnl_shlock() down(&rtnl_sem)
  450. #define rtnl_shlock_nowait() down_trylock(&rtnl_sem)
  451. #define rtnl_shunlock() do { up(&rtnl_sem); 
  452.              if (rtnl && rtnl->receive_queue.qlen) 
  453.      rtnl->data_ready(rtnl, 0); 
  454.         } while(0)
  455. extern void rtnl_lock(void);
  456. extern void rtnl_unlock(void);
  457. extern void rtnetlink_init(void);
  458. #define ASSERT_RTNL() do { if (down_trylock(&rtnl_sem) == 0)  { up(&rtnl_sem); 
  459. printk("RTNL: assertion failed at " __FILE__ "(%d)n", __LINE__); } 
  460.    } while(0);
  461. #define BUG_TRAP(x) if (!(x)) { printk("KERNEL: assertion (" #x ") failed at " __FILE__ "(%d)n", __LINE__); }
  462. #endif /* __KERNEL__ */
  463. #endif /* __LINUX_RTNETLINK_H */