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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __LINUX_RTNETLINK_H
  2. #define __LINUX_RTNETLINK_H
  3. #include <linux/netlink.h>
  4. /****
  5.  * Routing/neighbour discovery messages.
  6.  ****/
  7. /* Types of messages */
  8. enum {
  9. RTM_BASE = 16,
  10. #define RTM_BASE RTM_BASE
  11. RTM_NEWLINK = 16,
  12. #define RTM_NEWLINK RTM_NEWLINK
  13. RTM_DELLINK,
  14. #define RTM_DELLINK RTM_DELLINK
  15. RTM_GETLINK,
  16. #define RTM_GETLINK RTM_GETLINK
  17. RTM_SETLINK,
  18. #define RTM_SETLINK RTM_SETLINK
  19. RTM_NEWADDR = 20,
  20. #define RTM_NEWADDR RTM_NEWADDR
  21. RTM_DELADDR,
  22. #define RTM_DELADDR RTM_DELADDR
  23. RTM_GETADDR,
  24. #define RTM_GETADDR RTM_GETADDR
  25. RTM_NEWROUTE = 24,
  26. #define RTM_NEWROUTE RTM_NEWROUTE
  27. RTM_DELROUTE,
  28. #define RTM_DELROUTE RTM_DELROUTE
  29. RTM_GETROUTE,
  30. #define RTM_GETROUTE RTM_GETROUTE
  31. RTM_NEWNEIGH = 28,
  32. #define RTM_NEWNEIGH RTM_NEWNEIGH
  33. RTM_DELNEIGH,
  34. #define RTM_DELNEIGH RTM_DELNEIGH
  35. RTM_GETNEIGH,
  36. #define RTM_GETNEIGH RTM_GETNEIGH
  37. RTM_NEWRULE = 32,
  38. #define RTM_NEWRULE RTM_NEWRULE
  39. RTM_DELRULE,
  40. #define RTM_DELRULE RTM_DELRULE
  41. RTM_GETRULE,
  42. #define RTM_GETRULE RTM_GETRULE
  43. RTM_NEWQDISC = 36,
  44. #define RTM_NEWQDISC RTM_NEWQDISC
  45. RTM_DELQDISC,
  46. #define RTM_DELQDISC RTM_DELQDISC
  47. RTM_GETQDISC,
  48. #define RTM_GETQDISC RTM_GETQDISC
  49. RTM_NEWTCLASS = 40,
  50. #define RTM_NEWTCLASS RTM_NEWTCLASS
  51. RTM_DELTCLASS,
  52. #define RTM_DELTCLASS RTM_DELTCLASS
  53. RTM_GETTCLASS,
  54. #define RTM_GETTCLASS RTM_GETTCLASS
  55. RTM_NEWTFILTER = 44,
  56. #define RTM_NEWTFILTER RTM_NEWTFILTER
  57. RTM_DELTFILTER,
  58. #define RTM_DELTFILTER RTM_DELTFILTER
  59. RTM_GETTFILTER,
  60. #define RTM_GETTFILTER RTM_GETTFILTER
  61. RTM_NEWACTION = 48,
  62. #define RTM_NEWACTION   RTM_NEWACTION
  63. RTM_DELACTION,
  64. #define RTM_DELACTION   RTM_DELACTION
  65. RTM_GETACTION,
  66. #define RTM_GETACTION   RTM_GETACTION
  67. RTM_NEWPREFIX = 52,
  68. #define RTM_NEWPREFIX RTM_NEWPREFIX
  69. RTM_GETPREFIX = 54,
  70. #define RTM_GETPREFIX RTM_GETPREFIX
  71. RTM_GETMULTICAST = 58,
  72. #define RTM_GETMULTICAST RTM_GETMULTICAST
  73. RTM_GETANYCAST = 62,
  74. #define RTM_GETANYCAST RTM_GETANYCAST
  75. RTM_NEWNEIGHTBL = 64,
  76. #define RTM_NEWNEIGHTBL RTM_NEWNEIGHTBL
  77. RTM_GETNEIGHTBL = 66,
  78. #define RTM_GETNEIGHTBL RTM_GETNEIGHTBL
  79. RTM_SETNEIGHTBL,
  80. #define RTM_SETNEIGHTBL RTM_SETNEIGHTBL
  81. __RTM_MAX,
  82. #define RTM_MAX (((__RTM_MAX + 3) & ~3) - 1)
  83. };
  84. #define RTM_NR_MSGTYPES (RTM_MAX + 1 - RTM_BASE)
  85. #define RTM_NR_FAMILIES (RTM_NR_MSGTYPES >> 2)
  86. #define RTM_FAM(cmd) (((cmd) - RTM_BASE) >> 2)
  87. /* 
  88.    Generic structure for encapsulation of optional route information.
  89.    It is reminiscent of sockaddr, but with sa_family replaced
  90.    with attribute type.
  91.  */
  92. struct rtattr
  93. {
  94. unsigned short rta_len;
  95. unsigned short rta_type;
  96. };
  97. /* Macros to handle rtattributes */
  98. #define RTA_ALIGNTO 4
  99. #define RTA_ALIGN(len) ( ((len)+RTA_ALIGNTO-1) & ~(RTA_ALIGNTO-1) )
  100. #define RTA_OK(rta,len) ((len) >= (int)sizeof(struct rtattr) && 
  101.  (rta)->rta_len >= sizeof(struct rtattr) && 
  102.  (rta)->rta_len <= (len))
  103. #define RTA_NEXT(rta,attrlen) ((attrlen) -= RTA_ALIGN((rta)->rta_len), 
  104.  (struct rtattr*)(((char*)(rta)) + RTA_ALIGN((rta)->rta_len)))
  105. #define RTA_LENGTH(len) (RTA_ALIGN(sizeof(struct rtattr)) + (len))
  106. #define RTA_SPACE(len) RTA_ALIGN(RTA_LENGTH(len))
  107. #define RTA_DATA(rta)   ((void*)(((char*)(rta)) + RTA_LENGTH(0)))
  108. #define RTA_PAYLOAD(rta) ((int)((rta)->rta_len) - RTA_LENGTH(0))
  109. /******************************************************************************
  110.  * Definitions used in routing table administration.
  111.  ****/
  112. struct rtmsg
  113. {
  114. unsigned char rtm_family;
  115. unsigned char rtm_dst_len;
  116. unsigned char rtm_src_len;
  117. unsigned char rtm_tos;
  118. unsigned char rtm_table; /* Routing table id */
  119. unsigned char rtm_protocol; /* Routing protocol; see below */
  120. unsigned char rtm_scope; /* See below */
  121. unsigned char rtm_type; /* See below */
  122. unsigned rtm_flags;
  123. };
  124. /* rtm_type */
  125. enum
  126. {
  127. RTN_UNSPEC,
  128. RTN_UNICAST, /* Gateway or direct route */
  129. RTN_LOCAL, /* Accept locally */
  130. RTN_BROADCAST, /* Accept locally as broadcast,
  131.    send as broadcast */
  132. RTN_ANYCAST, /* Accept locally as broadcast,
  133.    but send as unicast */
  134. RTN_MULTICAST, /* Multicast route */
  135. RTN_BLACKHOLE, /* Drop */
  136. RTN_UNREACHABLE, /* Destination is unreachable   */
  137. RTN_PROHIBIT, /* Administratively prohibited */
  138. RTN_THROW, /* Not in this table */
  139. RTN_NAT, /* Translate this address */
  140. RTN_XRESOLVE, /* Use external resolver */
  141. __RTN_MAX
  142. };
  143. #define RTN_MAX (__RTN_MAX - 1)
  144. /* rtm_protocol */
  145. #define RTPROT_UNSPEC 0
  146. #define RTPROT_REDIRECT 1 /* Route installed by ICMP redirects;
  147.    not used by current IPv4 */
  148. #define RTPROT_KERNEL 2 /* Route installed by kernel */
  149. #define RTPROT_BOOT 3 /* Route installed during boot */
  150. #define RTPROT_STATIC 4 /* Route installed by administrator */
  151. /* Values of protocol >= RTPROT_STATIC are not interpreted by kernel;
  152.    they are just passed from user and back as is.
  153.    It will be used by hypothetical multiple routing daemons.
  154.    Note that protocol values should be standardized in order to
  155.    avoid conflicts.
  156.  */
  157. #define RTPROT_GATED 8 /* Apparently, GateD */
  158. #define RTPROT_RA 9 /* RDISC/ND router advertisements */
  159. #define RTPROT_MRT 10 /* Merit MRT */
  160. #define RTPROT_ZEBRA 11 /* Zebra */
  161. #define RTPROT_BIRD 12 /* BIRD */
  162. #define RTPROT_DNROUTED 13 /* DECnet routing daemon */
  163. #define RTPROT_XORP 14 /* XORP */
  164. /* rtm_scope
  165.    Really it is not scope, but sort of distance to the destination.
  166.    NOWHERE are reserved for not existing destinations, HOST is our
  167.    local addresses, LINK are destinations, located on directly attached
  168.    link and UNIVERSE is everywhere in the Universe.
  169.    Intermediate values are also possible f.e. interior routes
  170.    could be assigned a value between UNIVERSE and LINK.
  171. */
  172. enum rt_scope_t
  173. {
  174. RT_SCOPE_UNIVERSE=0,
  175. /* User defined values  */
  176. RT_SCOPE_SITE=200,
  177. RT_SCOPE_LINK=253,
  178. RT_SCOPE_HOST=254,
  179. RT_SCOPE_NOWHERE=255
  180. };
  181. /* rtm_flags */
  182. #define RTM_F_NOTIFY 0x100 /* Notify user of route change */
  183. #define RTM_F_CLONED 0x200 /* This route is cloned */
  184. #define RTM_F_EQUALIZE 0x400 /* Multipath equalizer: NI */
  185. #define RTM_F_PREFIX 0x800 /* Prefix addresses */
  186. /* Reserved table identifiers */
  187. enum rt_class_t
  188. {
  189. RT_TABLE_UNSPEC=0,
  190. /* User defined values */
  191. RT_TABLE_DEFAULT=253,
  192. RT_TABLE_MAIN=254,
  193. RT_TABLE_LOCAL=255,
  194. __RT_TABLE_MAX
  195. };
  196. #define RT_TABLE_MAX (__RT_TABLE_MAX - 1)
  197. /* Routing message attributes */
  198. enum rtattr_type_t
  199. {
  200. RTA_UNSPEC,
  201. RTA_DST,
  202. RTA_SRC,
  203. RTA_IIF,
  204. RTA_OIF,
  205. RTA_GATEWAY,
  206. RTA_PRIORITY,
  207. RTA_PREFSRC,
  208. RTA_METRICS,
  209. RTA_MULTIPATH,
  210. RTA_PROTOINFO,
  211. RTA_FLOW,
  212. RTA_CACHEINFO,
  213. RTA_SESSION,
  214. RTA_MP_ALGO,
  215. __RTA_MAX
  216. };
  217. #define RTA_MAX (__RTA_MAX - 1)
  218. #define RTM_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct rtmsg))))
  219. #define RTM_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct rtmsg))
  220. /* RTM_MULTIPATH --- array of struct rtnexthop.
  221.  *
  222.  * "struct rtnexthop" describes all necessary nexthop information,
  223.  * i.e. parameters of path to a destination via this nexthop.
  224.  *
  225.  * At the moment it is impossible to set different prefsrc, mtu, window
  226.  * and rtt for different paths from multipath.
  227.  */
  228. struct rtnexthop
  229. {
  230. unsigned short rtnh_len;
  231. unsigned char rtnh_flags;
  232. unsigned char rtnh_hops;
  233. int rtnh_ifindex;
  234. };
  235. /* rtnh_flags */
  236. #define RTNH_F_DEAD 1 /* Nexthop is dead (used by multipath) */
  237. #define RTNH_F_PERVASIVE 2 /* Do recursive gateway lookup */
  238. #define RTNH_F_ONLINK 4 /* Gateway is forced on link */
  239. /* Macros to handle hexthops */
  240. #define RTNH_ALIGNTO 4
  241. #define RTNH_ALIGN(len) ( ((len)+RTNH_ALIGNTO-1) & ~(RTNH_ALIGNTO-1) )
  242. #define RTNH_OK(rtnh,len) ((rtnh)->rtnh_len >= sizeof(struct rtnexthop) && 
  243.    ((int)(rtnh)->rtnh_len) <= (len))
  244. #define RTNH_NEXT(rtnh) ((struct rtnexthop*)(((char*)(rtnh)) + RTNH_ALIGN((rtnh)->rtnh_len)))
  245. #define RTNH_LENGTH(len) (RTNH_ALIGN(sizeof(struct rtnexthop)) + (len))
  246. #define RTNH_SPACE(len) RTNH_ALIGN(RTNH_LENGTH(len))
  247. #define RTNH_DATA(rtnh)   ((struct rtattr*)(((char*)(rtnh)) + RTNH_LENGTH(0)))
  248. /* RTM_CACHEINFO */
  249. struct rta_cacheinfo
  250. {
  251. __u32 rta_clntref;
  252. __u32 rta_lastuse;
  253. __s32 rta_expires;
  254. __u32 rta_error;
  255. __u32 rta_used;
  256. #define RTNETLINK_HAVE_PEERINFO 1
  257. __u32 rta_id;
  258. __u32 rta_ts;
  259. __u32 rta_tsage;
  260. };
  261. /* RTM_METRICS --- array of struct rtattr with types of RTAX_* */
  262. enum
  263. {
  264. RTAX_UNSPEC,
  265. #define RTAX_UNSPEC RTAX_UNSPEC
  266. RTAX_LOCK,
  267. #define RTAX_LOCK RTAX_LOCK
  268. RTAX_MTU,
  269. #define RTAX_MTU RTAX_MTU
  270. RTAX_WINDOW,
  271. #define RTAX_WINDOW RTAX_WINDOW
  272. RTAX_RTT,
  273. #define RTAX_RTT RTAX_RTT
  274. RTAX_RTTVAR,
  275. #define RTAX_RTTVAR RTAX_RTTVAR
  276. RTAX_SSTHRESH,
  277. #define RTAX_SSTHRESH RTAX_SSTHRESH
  278. RTAX_CWND,
  279. #define RTAX_CWND RTAX_CWND
  280. RTAX_ADVMSS,
  281. #define RTAX_ADVMSS RTAX_ADVMSS
  282. RTAX_REORDERING,
  283. #define RTAX_REORDERING RTAX_REORDERING
  284. RTAX_HOPLIMIT,
  285. #define RTAX_HOPLIMIT RTAX_HOPLIMIT
  286. RTAX_INITCWND,
  287. #define RTAX_INITCWND RTAX_INITCWND
  288. RTAX_FEATURES,
  289. #define RTAX_FEATURES RTAX_FEATURES
  290. __RTAX_MAX
  291. };
  292. #define RTAX_MAX (__RTAX_MAX - 1)
  293. #define RTAX_FEATURE_ECN 0x00000001
  294. #define RTAX_FEATURE_SACK 0x00000002
  295. #define RTAX_FEATURE_TIMESTAMP 0x00000004
  296. #define RTAX_FEATURE_ALLFRAG 0x00000008
  297. struct rta_session
  298. {
  299. __u8 proto;
  300. __u8 pad1;
  301. __u16 pad2;
  302. union {
  303. struct {
  304. __u16 sport;
  305. __u16 dport;
  306. } ports;
  307. struct {
  308. __u8 type;
  309. __u8 code;
  310. __u16 ident;
  311. } icmpt;
  312. __u32 spi;
  313. } u;
  314. };
  315. /*********************************************************
  316.  * Interface address.
  317.  ****/
  318. struct ifaddrmsg
  319. {
  320. unsigned char ifa_family;
  321. unsigned char ifa_prefixlen; /* The prefix length */
  322. unsigned char ifa_flags; /* Flags */
  323. unsigned char ifa_scope; /* See above */
  324. int ifa_index; /* Link index */
  325. };
  326. enum
  327. {
  328. IFA_UNSPEC,
  329. IFA_ADDRESS,
  330. IFA_LOCAL,
  331. IFA_LABEL,
  332. IFA_BROADCAST,
  333. IFA_ANYCAST,
  334. IFA_CACHEINFO,
  335. IFA_MULTICAST,
  336. __IFA_MAX
  337. };
  338. #define IFA_MAX (__IFA_MAX - 1)
  339. /* ifa_flags */
  340. #define IFA_F_SECONDARY 0x01
  341. #define IFA_F_TEMPORARY IFA_F_SECONDARY
  342. #define IFA_F_DEPRECATED 0x20
  343. #define IFA_F_TENTATIVE 0x40
  344. #define IFA_F_PERMANENT 0x80
  345. struct ifa_cacheinfo
  346. {
  347. __u32 ifa_prefered;
  348. __u32 ifa_valid;
  349. __u32 cstamp; /* created timestamp, hundredths of seconds */
  350. __u32 tstamp; /* updated timestamp, hundredths of seconds */
  351. };
  352. #define IFA_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
  353. #define IFA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifaddrmsg))
  354. /*
  355.    Important comment:
  356.    IFA_ADDRESS is prefix address, rather than local interface address.
  357.    It makes no difference for normally configured broadcast interfaces,
  358.    but for point-to-point IFA_ADDRESS is DESTINATION address,
  359.    local address is supplied in IFA_LOCAL attribute.
  360.  */
  361. /**************************************************************
  362.  * Neighbour discovery.
  363.  ****/
  364. struct ndmsg
  365. {
  366. unsigned char ndm_family;
  367. unsigned char ndm_pad1;
  368. unsigned short ndm_pad2;
  369. int ndm_ifindex; /* Link index */
  370. __u16 ndm_state;
  371. __u8 ndm_flags;
  372. __u8 ndm_type;
  373. };
  374. enum
  375. {
  376. NDA_UNSPEC,
  377. NDA_DST,
  378. NDA_LLADDR,
  379. NDA_CACHEINFO,
  380. NDA_PROBES,
  381. __NDA_MAX
  382. };
  383. #define NDA_MAX (__NDA_MAX - 1)
  384. #define NDA_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndmsg))))
  385. #define NDA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndmsg))
  386. /*
  387.  * Neighbor Cache Entry Flags
  388.  */
  389. #define NTF_PROXY 0x08 /* == ATF_PUBL */
  390. #define NTF_ROUTER 0x80
  391. /*
  392.  * Neighbor Cache Entry States.
  393.  */
  394. #define NUD_INCOMPLETE 0x01
  395. #define NUD_REACHABLE 0x02
  396. #define NUD_STALE 0x04
  397. #define NUD_DELAY 0x08
  398. #define NUD_PROBE 0x10
  399. #define NUD_FAILED 0x20
  400. /* Dummy states */
  401. #define NUD_NOARP 0x40
  402. #define NUD_PERMANENT 0x80
  403. #define NUD_NONE 0x00
  404. struct nda_cacheinfo
  405. {
  406. __u32 ndm_confirmed;
  407. __u32 ndm_used;
  408. __u32 ndm_updated;
  409. __u32 ndm_refcnt;
  410. };
  411. /*****************************************************************
  412.  * Neighbour tables specific messages.
  413.  *
  414.  * To retrieve the neighbour tables send RTM_GETNEIGHTBL with the
  415.  * NLM_F_DUMP flag set. Every neighbour table configuration is
  416.  * spread over multiple messages to avoid running into message
  417.  * size limits on systems with many interfaces. The first message
  418.  * in the sequence transports all not device specific data such as
  419.  * statistics, configuration, and the default parameter set.
  420.  * This message is followed by 0..n messages carrying device
  421.  * specific parameter sets.
  422.  * Although the ordering should be sufficient, NDTA_NAME can be
  423.  * used to identify sequences. The initial message can be identified
  424.  * by checking for NDTA_CONFIG. The device specific messages do
  425.  * not contain this TLV but have NDTPA_IFINDEX set to the
  426.  * corresponding interface index.
  427.  *
  428.  * To change neighbour table attributes, send RTM_SETNEIGHTBL
  429.  * with NDTA_NAME set. Changeable attribute include NDTA_THRESH[1-3],
  430.  * NDTA_GC_INTERVAL, and all TLVs in NDTA_PARMS unless marked
  431.  * otherwise. Device specific parameter sets can be changed by
  432.  * setting NDTPA_IFINDEX to the interface index of the corresponding
  433.  * device.
  434.  ****/
  435. struct ndt_stats
  436. {
  437. __u64 ndts_allocs;
  438. __u64 ndts_destroys;
  439. __u64 ndts_hash_grows;
  440. __u64 ndts_res_failed;
  441. __u64 ndts_lookups;
  442. __u64 ndts_hits;
  443. __u64 ndts_rcv_probes_mcast;
  444. __u64 ndts_rcv_probes_ucast;
  445. __u64 ndts_periodic_gc_runs;
  446. __u64 ndts_forced_gc_runs;
  447. };
  448. enum {
  449. NDTPA_UNSPEC,
  450. NDTPA_IFINDEX, /* u32, unchangeable */
  451. NDTPA_REFCNT, /* u32, read-only */
  452. NDTPA_REACHABLE_TIME, /* u64, read-only, msecs */
  453. NDTPA_BASE_REACHABLE_TIME, /* u64, msecs */
  454. NDTPA_RETRANS_TIME, /* u64, msecs */
  455. NDTPA_GC_STALETIME, /* u64, msecs */
  456. NDTPA_DELAY_PROBE_TIME, /* u64, msecs */
  457. NDTPA_QUEUE_LEN, /* u32 */
  458. NDTPA_APP_PROBES, /* u32 */
  459. NDTPA_UCAST_PROBES, /* u32 */
  460. NDTPA_MCAST_PROBES, /* u32 */
  461. NDTPA_ANYCAST_DELAY, /* u64, msecs */
  462. NDTPA_PROXY_DELAY, /* u64, msecs */
  463. NDTPA_PROXY_QLEN, /* u32 */
  464. NDTPA_LOCKTIME, /* u64, msecs */
  465. __NDTPA_MAX
  466. };
  467. #define NDTPA_MAX (__NDTPA_MAX - 1)
  468. struct ndtmsg
  469. {
  470. __u8 ndtm_family;
  471. __u8 ndtm_pad1;
  472. __u16 ndtm_pad2;
  473. };
  474. struct ndt_config
  475. {
  476. __u16 ndtc_key_len;
  477. __u16 ndtc_entry_size;
  478. __u32 ndtc_entries;
  479. __u32 ndtc_last_flush; /* delta to now in msecs */
  480. __u32 ndtc_last_rand; /* delta to now in msecs */
  481. __u32 ndtc_hash_rnd;
  482. __u32 ndtc_hash_mask;
  483. __u32 ndtc_hash_chain_gc;
  484. __u32 ndtc_proxy_qlen;
  485. };
  486. enum {
  487. NDTA_UNSPEC,
  488. NDTA_NAME, /* char *, unchangeable */
  489. NDTA_THRESH1, /* u32 */
  490. NDTA_THRESH2, /* u32 */
  491. NDTA_THRESH3, /* u32 */
  492. NDTA_CONFIG, /* struct ndt_config, read-only */
  493. NDTA_PARMS, /* nested TLV NDTPA_* */
  494. NDTA_STATS, /* struct ndt_stats, read-only */
  495. NDTA_GC_INTERVAL, /* u64, msecs */
  496. __NDTA_MAX
  497. };
  498. #define NDTA_MAX (__NDTA_MAX - 1)
  499. #define NDTA_RTA(r) ((struct rtattr*)(((char*)(r)) + 
  500.      NLMSG_ALIGN(sizeof(struct ndtmsg))))
  501. #define NDTA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndtmsg))
  502. /****
  503.  * General form of address family dependent message.
  504.  ****/
  505. struct rtgenmsg
  506. {
  507. unsigned char rtgen_family;
  508. };
  509. /*****************************************************************
  510.  * Link layer specific messages.
  511.  ****/
  512. /* struct ifinfomsg
  513.  * passes link level specific information, not dependent
  514.  * on network protocol.
  515.  */
  516. struct ifinfomsg
  517. {
  518. unsigned char ifi_family;
  519. unsigned char __ifi_pad;
  520. unsigned short ifi_type; /* ARPHRD_* */
  521. int ifi_index; /* Link index */
  522. unsigned ifi_flags; /* IFF_* flags */
  523. unsigned ifi_change; /* IFF_* change mask */
  524. };
  525. /********************************************************************
  526.  * prefix information 
  527.  ****/
  528. struct prefixmsg
  529. {
  530. unsigned char prefix_family;
  531. unsigned char prefix_pad1;
  532. unsigned short prefix_pad2;
  533. int prefix_ifindex;
  534. unsigned char prefix_type;
  535. unsigned char prefix_len;
  536. unsigned char prefix_flags;
  537. unsigned char prefix_pad3;
  538. };
  539. enum 
  540. {
  541. PREFIX_UNSPEC,
  542. PREFIX_ADDRESS,
  543. PREFIX_CACHEINFO,
  544. __PREFIX_MAX
  545. };
  546. #define PREFIX_MAX (__PREFIX_MAX - 1)
  547. struct prefix_cacheinfo
  548. {
  549. __u32 preferred_time;
  550. __u32 valid_time;
  551. };
  552. /* The struct should be in sync with struct net_device_stats */
  553. struct rtnl_link_stats
  554. {
  555. __u32 rx_packets; /* total packets received */
  556. __u32 tx_packets; /* total packets transmitted */
  557. __u32 rx_bytes; /* total bytes received  */
  558. __u32 tx_bytes; /* total bytes transmitted */
  559. __u32 rx_errors; /* bad packets received */
  560. __u32 tx_errors; /* packet transmit problems */
  561. __u32 rx_dropped; /* no space in linux buffers */
  562. __u32 tx_dropped; /* no space available in linux */
  563. __u32 multicast; /* multicast packets received */
  564. __u32 collisions;
  565. /* detailed rx_errors: */
  566. __u32 rx_length_errors;
  567. __u32 rx_over_errors; /* receiver ring buff overflow */
  568. __u32 rx_crc_errors; /* recved pkt with crc error */
  569. __u32 rx_frame_errors; /* recv'd frame alignment error */
  570. __u32 rx_fifo_errors; /* recv'r fifo overrun */
  571. __u32 rx_missed_errors; /* receiver missed packet */
  572. /* detailed tx_errors */
  573. __u32 tx_aborted_errors;
  574. __u32 tx_carrier_errors;
  575. __u32 tx_fifo_errors;
  576. __u32 tx_heartbeat_errors;
  577. __u32 tx_window_errors;
  578. /* for cslip etc */
  579. __u32 rx_compressed;
  580. __u32 tx_compressed;
  581. };
  582. /* The struct should be in sync with struct ifmap */
  583. struct rtnl_link_ifmap
  584. {
  585. __u64 mem_start;
  586. __u64 mem_end;
  587. __u64 base_addr;
  588. __u16 irq;
  589. __u8 dma;
  590. __u8 port;
  591. };
  592. enum
  593. {
  594. IFLA_UNSPEC,
  595. IFLA_ADDRESS,
  596. IFLA_BROADCAST,
  597. IFLA_IFNAME,
  598. IFLA_MTU,
  599. IFLA_LINK,
  600. IFLA_QDISC,
  601. IFLA_STATS,
  602. IFLA_COST,
  603. #define IFLA_COST IFLA_COST
  604. IFLA_PRIORITY,
  605. #define IFLA_PRIORITY IFLA_PRIORITY
  606. IFLA_MASTER,
  607. #define IFLA_MASTER IFLA_MASTER
  608. IFLA_WIRELESS, /* Wireless Extension event - see wireless.h */
  609. #define IFLA_WIRELESS IFLA_WIRELESS
  610. IFLA_PROTINFO, /* Protocol specific information for a link */
  611. #define IFLA_PROTINFO IFLA_PROTINFO
  612. IFLA_TXQLEN,
  613. #define IFLA_TXQLEN IFLA_TXQLEN
  614. IFLA_MAP,
  615. #define IFLA_MAP IFLA_MAP
  616. IFLA_WEIGHT,
  617. #define IFLA_WEIGHT IFLA_WEIGHT
  618. __IFLA_MAX
  619. };
  620. #define IFLA_MAX (__IFLA_MAX - 1)
  621. #define IFLA_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
  622. #define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
  623. /* ifi_flags.
  624.    IFF_* flags.
  625.    The only change is:
  626.    IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are
  627.    more not changeable by user. They describe link media
  628.    characteristics and set by device driver.
  629.    Comments:
  630.    - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid
  631.    - If neither of these three flags are set;
  632.      the interface is NBMA.
  633.    - IFF_MULTICAST does not mean anything special:
  634.    multicasts can be used on all not-NBMA links.
  635.    IFF_MULTICAST means that this media uses special encapsulation
  636.    for multicast frames. Apparently, all IFF_POINTOPOINT and
  637.    IFF_BROADCAST devices are able to use multicasts too.
  638.  */
  639. /* IFLA_LINK.
  640.    For usual devices it is equal ifi_index.
  641.    If it is a "virtual interface" (f.e. tunnel), ifi_link
  642.    can point to real physical interface (f.e. for bandwidth calculations),
  643.    or maybe 0, what means, that real media is unknown (usual
  644.    for IPIP tunnels, when route to endpoint is allowed to change)
  645.  */
  646. /* Subtype attributes for IFLA_PROTINFO */
  647. enum
  648. {
  649. IFLA_INET6_UNSPEC,
  650. IFLA_INET6_FLAGS, /* link flags */
  651. IFLA_INET6_CONF, /* sysctl parameters */
  652. IFLA_INET6_STATS, /* statistics */
  653. IFLA_INET6_MCAST, /* MC things. What of them? */
  654. IFLA_INET6_CACHEINFO, /* time values and max reasm size */
  655. __IFLA_INET6_MAX
  656. };
  657. #define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
  658. struct ifla_cacheinfo
  659. {
  660. __u32 max_reasm_len;
  661. __u32 tstamp; /* ipv6InterfaceTable updated timestamp */
  662. __u32 reachable_time;
  663. __u32 retrans_time;
  664. };
  665. /*****************************************************************
  666.  * Traffic control messages.
  667.  ****/
  668. struct tcmsg
  669. {
  670. unsigned char tcm_family;
  671. unsigned char tcm__pad1;
  672. unsigned short tcm__pad2;
  673. int tcm_ifindex;
  674. __u32 tcm_handle;
  675. __u32 tcm_parent;
  676. __u32 tcm_info;
  677. };
  678. enum
  679. {
  680. TCA_UNSPEC,
  681. TCA_KIND,
  682. TCA_OPTIONS,
  683. TCA_STATS,
  684. TCA_XSTATS,
  685. TCA_RATE,
  686. TCA_FCNT,
  687. TCA_STATS2,
  688. __TCA_MAX
  689. };
  690. #define TCA_MAX (__TCA_MAX - 1)
  691. #define TCA_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcmsg))))
  692. #define TCA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct tcmsg))
  693. #ifndef __KERNEL__
  694. /* RTnetlink multicast groups - backwards compatibility for userspace */
  695. #define RTMGRP_LINK 1
  696. #define RTMGRP_NOTIFY 2
  697. #define RTMGRP_NEIGH 4
  698. #define RTMGRP_TC 8
  699. #define RTMGRP_IPV4_IFADDR 0x10
  700. #define RTMGRP_IPV4_MROUTE 0x20
  701. #define RTMGRP_IPV4_ROUTE 0x40
  702. #define RTMGRP_IPV6_IFADDR 0x100
  703. #define RTMGRP_IPV6_MROUTE 0x200
  704. #define RTMGRP_IPV6_ROUTE 0x400
  705. #define RTMGRP_IPV6_IFINFO 0x800
  706. #define RTMGRP_DECnet_IFADDR    0x1000
  707. #define RTMGRP_DECnet_ROUTE     0x4000
  708. #define RTMGRP_IPV6_PREFIX 0x20000
  709. #endif
  710. /* RTnetlink multicast groups */
  711. enum rtnetlink_groups {
  712. RTNLGRP_NONE,
  713. #define RTNLGRP_NONE RTNLGRP_NONE
  714. RTNLGRP_LINK,
  715. #define RTNLGRP_LINK RTNLGRP_LINK
  716. RTNLGRP_NOTIFY,
  717. #define RTNLGRP_NOTIFY RTNLGRP_NOTIFY
  718. RTNLGRP_NEIGH,
  719. #define RTNLGRP_NEIGH RTNLGRP_NEIGH
  720. RTNLGRP_TC,
  721. #define RTNLGRP_TC RTNLGRP_TC
  722. RTNLGRP_IPV4_IFADDR,
  723. #define RTNLGRP_IPV4_IFADDR RTNLGRP_IPV4_IFADDR
  724. RTNLGRP_IPV4_MROUTE,
  725. #define RTNLGRP_IPV4_MROUTE RTNLGRP_IPV4_MROUTE
  726. RTNLGRP_IPV4_ROUTE,
  727. #define RTNLGRP_IPV4_ROUTE RTNLGRP_IPV4_ROUTE
  728. RTNLGRP_IPV6_IFADDR,
  729. #define RTNLGRP_IPV6_IFADDR RTNLGRP_IPV6_IFADDR
  730. RTNLGRP_IPV6_MROUTE,
  731. #define RTNLGRP_IPV6_MROUTE RTNLGRP_IPV6_MROUTE
  732. RTNLGRP_IPV6_ROUTE,
  733. #define RTNLGRP_IPV6_ROUTE RTNLGRP_IPV6_ROUTE
  734. RTNLGRP_IPV6_IFINFO,
  735. #define RTNLGRP_IPV6_IFINFO RTNLGRP_IPV6_IFINFO
  736. RTNLGRP_DECnet_IFADDR,
  737. #define RTNLGRP_DECnet_IFADDR RTNLGRP_DECnet_IFADDR
  738. RTNLGRP_DECnet_ROUTE,
  739. #define RTNLGRP_DECnet_ROUTE RTNLGRP_DECnet_ROUTE
  740. RTNLGRP_IPV6_PREFIX,
  741. #define RTNLGRP_IPV6_PREFIX RTNLGRP_IPV6_PREFIX
  742. __RTNLGRP_MAX
  743. };
  744. #define RTNLGRP_MAX (__RTNLGRP_MAX - 1)
  745. /* TC action piece */
  746. struct tcamsg
  747. {
  748. unsigned char tca_family;
  749. unsigned char tca__pad1;
  750. unsigned short tca__pad2;
  751. };
  752. #define TA_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcamsg))))
  753. #define TA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct tcamsg))
  754. #define TCA_ACT_TAB 1 /* attr type must be >=1 */
  755. #define TCAA_MAX 1
  756. /* End of information exported to user level */
  757. #ifdef __KERNEL__
  758. #include <linux/config.h>
  759. extern size_t rtattr_strlcpy(char *dest, const struct rtattr *rta, size_t size);
  760. static __inline__ int rtattr_strcmp(const struct rtattr *rta, const char *str)
  761. {
  762. int len = strlen(str) + 1;
  763. return len > rta->rta_len || memcmp(RTA_DATA(rta), str, len);
  764. }
  765. extern int rtattr_parse(struct rtattr *tb[], int maxattr, struct rtattr *rta, int len);
  766. #define rtattr_parse_nested(tb, max, rta) 
  767. rtattr_parse((tb), (max), RTA_DATA((rta)), RTA_PAYLOAD((rta)))
  768. extern struct sock *rtnl;
  769. struct rtnetlink_link
  770. {
  771. int (*doit)(struct sk_buff *, struct nlmsghdr*, void *attr);
  772. int (*dumpit)(struct sk_buff *, struct netlink_callback *cb);
  773. };
  774. extern struct rtnetlink_link * rtnetlink_links[NPROTO];
  775. extern int rtnetlink_send(struct sk_buff *skb, u32 pid, u32 group, int echo);
  776. extern int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics);
  777. extern void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data);
  778. #define RTA_PUT(skb, attrtype, attrlen, data) 
  779. ({ if (unlikely(skb_tailroom(skb) < (int)RTA_SPACE(attrlen))) 
  780.  goto rtattr_failure; 
  781.     __rta_fill(skb, attrtype, attrlen, data); }) 
  782. #define RTA_APPEND(skb, attrlen, data) 
  783. ({ if (unlikely(skb_tailroom(skb) < (int)(attrlen))) 
  784. goto rtattr_failure; 
  785. memcpy(skb_put(skb, attrlen), data, attrlen); })
  786. #define RTA_PUT_NOHDR(skb, attrlen, data) 
  787. ({ RTA_APPEND(skb, RTA_ALIGN(attrlen), data); 
  788. memset(skb->tail - (RTA_ALIGN(attrlen) - attrlen), 0, 
  789.        RTA_ALIGN(attrlen) - attrlen); })
  790. #define RTA_PUT_U8(skb, attrtype, value) 
  791. ({ u8 _tmp = (value); 
  792. RTA_PUT(skb, attrtype, sizeof(u8), &_tmp); })
  793. #define RTA_PUT_U16(skb, attrtype, value) 
  794. ({ u16 _tmp = (value); 
  795. RTA_PUT(skb, attrtype, sizeof(u16), &_tmp); })
  796. #define RTA_PUT_U32(skb, attrtype, value) 
  797. ({ u32 _tmp = (value); 
  798. RTA_PUT(skb, attrtype, sizeof(u32), &_tmp); })
  799. #define RTA_PUT_U64(skb, attrtype, value) 
  800. ({ u64 _tmp = (value); 
  801. RTA_PUT(skb, attrtype, sizeof(u64), &_tmp); })
  802. #define RTA_PUT_SECS(skb, attrtype, value) 
  803. RTA_PUT_U64(skb, attrtype, (value) / HZ)
  804. #define RTA_PUT_MSECS(skb, attrtype, value) 
  805. RTA_PUT_U64(skb, attrtype, jiffies_to_msecs(value))
  806. #define RTA_PUT_STRING(skb, attrtype, value) 
  807. RTA_PUT(skb, attrtype, strlen(value) + 1, value)
  808. #define RTA_PUT_FLAG(skb, attrtype) 
  809. RTA_PUT(skb, attrtype, 0, NULL);
  810. #define RTA_NEST(skb, type) 
  811. ({ struct rtattr *__start = (struct rtattr *) (skb)->tail; 
  812. RTA_PUT(skb, type, 0, NULL); 
  813. __start;  })
  814. #define RTA_NEST_END(skb, start) 
  815. ({ (start)->rta_len = ((skb)->tail - (unsigned char *) (start)); 
  816. (skb)->len; })
  817. #define RTA_NEST_CANCEL(skb, start) 
  818. ({ if (start) 
  819. skb_trim(skb, (unsigned char *) (start) - (skb)->data); 
  820. -1; })
  821. #define RTA_GET_U8(rta) 
  822. ({ if (!rta || RTA_PAYLOAD(rta) < sizeof(u8)) 
  823. goto rtattr_failure; 
  824. *(u8 *) RTA_DATA(rta); })
  825. #define RTA_GET_U16(rta) 
  826. ({ if (!rta || RTA_PAYLOAD(rta) < sizeof(u16)) 
  827. goto rtattr_failure; 
  828. *(u16 *) RTA_DATA(rta); })
  829. #define RTA_GET_U32(rta) 
  830. ({ if (!rta || RTA_PAYLOAD(rta) < sizeof(u32)) 
  831. goto rtattr_failure; 
  832. *(u32 *) RTA_DATA(rta); })
  833. #define RTA_GET_U64(rta) 
  834. ({ u64 _tmp; 
  835. if (!rta || RTA_PAYLOAD(rta) < sizeof(u64)) 
  836. goto rtattr_failure; 
  837. memcpy(&_tmp, RTA_DATA(rta), sizeof(_tmp)); 
  838. _tmp; })
  839. #define RTA_GET_FLAG(rta) (!!(rta))
  840. #define RTA_GET_SECS(rta) ((unsigned long) RTA_GET_U64(rta) * HZ)
  841. #define RTA_GET_MSECS(rta) (msecs_to_jiffies((unsigned long) RTA_GET_U64(rta)))
  842. static inline struct rtattr *
  843. __rta_reserve(struct sk_buff *skb, int attrtype, int attrlen)
  844. {
  845. struct rtattr *rta;
  846. int size = RTA_LENGTH(attrlen);
  847. rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
  848. rta->rta_type = attrtype;
  849. rta->rta_len = size;
  850. memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
  851. return rta;
  852. }
  853. #define __RTA_PUT(skb, attrtype, attrlen) 
  854. ({  if (unlikely(skb_tailroom(skb) < (int)RTA_SPACE(attrlen))) 
  855. goto rtattr_failure; 
  856.     __rta_reserve(skb, attrtype, attrlen); })
  857. extern void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change);
  858. extern struct semaphore rtnl_sem;
  859. #define rtnl_shlock() down(&rtnl_sem)
  860. #define rtnl_shlock_nowait() down_trylock(&rtnl_sem)
  861. #define rtnl_shunlock() do { up(&rtnl_sem); 
  862.              if (rtnl && rtnl->sk_receive_queue.qlen) 
  863.      rtnl->sk_data_ready(rtnl, 0); 
  864.         } while(0)
  865. extern void rtnl_lock(void);
  866. extern int rtnl_lock_interruptible(void);
  867. extern void rtnl_unlock(void);
  868. extern void rtnetlink_init(void);
  869. #define ASSERT_RTNL() do { 
  870. if (unlikely(down_trylock(&rtnl_sem) == 0)) { 
  871. up(&rtnl_sem); 
  872. printk(KERN_ERR "RTNL: assertion failed at %s (%d)n", 
  873.        __FILE__,  __LINE__); 
  874. dump_stack(); 
  875. } while(0)
  876. #define BUG_TRAP(x) do { 
  877. if (unlikely(!(x))) { 
  878. printk(KERN_ERR "KERNEL: assertion (%s) failed at %s (%d)n", 
  879. #x,  __FILE__ , __LINE__); 
  880. } while(0)
  881. #endif /* __KERNEL__ */
  882. #endif /* __LINUX_RTNETLINK_H */