1 #ifndef __LINUX_RTNETLINK_H
2 #define __LINUX_RTNETLINK_H
4 #include <linux/config.h>
5 #include <linux/netlink.h>
11 * Routing/neighbour discovery messages.
14 /* Types of messages */
18 #define RTM_NEWLINK (RTM_BASE+0)
19 #define RTM_DELLINK (RTM_BASE+1)
20 #define RTM_GETLINK (RTM_BASE+2)
22 #define RTM_NEWADDR (RTM_BASE+4)
23 #define RTM_DELADDR (RTM_BASE+5)
24 #define RTM_GETADDR (RTM_BASE+6)
26 #define RTM_NEWROUTE (RTM_BASE+8)
27 #define RTM_DELROUTE (RTM_BASE+9)
28 #define RTM_GETROUTE (RTM_BASE+10)
30 #define RTM_NEWNEIGH (RTM_BASE+12)
31 #define RTM_DELNEIGH (RTM_BASE+13)
32 #define RTM_GETNEIGH (RTM_BASE+14)
34 #define RTM_NEWRULE (RTM_BASE+16)
35 #define RTM_DELRULE (RTM_BASE+17)
36 #define RTM_GETRULE (RTM_BASE+18)
38 #define RTM_NEWQDISC (RTM_BASE+20)
39 #define RTM_DELQDISC (RTM_BASE+21)
40 #define RTM_GETQDISC (RTM_BASE+22)
42 #define RTM_NEWTCLASS (RTM_BASE+24)
43 #define RTM_DELTCLASS (RTM_BASE+25)
44 #define RTM_GETTCLASS (RTM_BASE+26)
46 #define RTM_NEWTFILTER (RTM_BASE+28)
47 #define RTM_DELTFILTER (RTM_BASE+29)
48 #define RTM_GETTFILTER (RTM_BASE+30)
50 #define RTM_MAX (RTM_BASE+31)
53 Generic structure for encapsulation optional route information.
54 It is reminiscent of sockaddr, but with sa_family replaced
60 unsigned short rta_len
;
61 unsigned short rta_type
;
64 /* Macros to handle rtattributes */
67 #define RTA_ALIGN(len) ( ((len)+RTA_ALIGNTO-1) & ~(RTA_ALIGNTO-1) )
68 #define RTA_OK(rta,len) ((len) > 0 && (rta)->rta_len >= sizeof(struct rtattr) && \
69 (rta)->rta_len <= (len))
70 #define RTA_NEXT(rta,attrlen) ((attrlen) -= RTA_ALIGN((rta)->rta_len), \
71 (struct rtattr*)(((char*)(rta)) + RTA_ALIGN((rta)->rta_len)))
72 #define RTA_LENGTH(len) (RTA_ALIGN(sizeof(struct rtattr)) + (len))
73 #define RTA_SPACE(len) RTA_ALIGN(RTA_LENGTH(len))
74 #define RTA_DATA(rta) ((void*)(((char*)(rta)) + RTA_LENGTH(0)))
75 #define RTA_PAYLOAD(rta) ((int)((rta)->rta_len) - RTA_LENGTH(0))
80 /******************************************************************************
81 * Definitions used in routing table administation.
86 unsigned char rtm_family
;
87 unsigned char rtm_dst_len
;
88 unsigned char rtm_src_len
;
89 unsigned char rtm_tos
;
91 unsigned char rtm_table
; /* Routing table id */
92 unsigned char rtm_protocol
; /* Routing protocol; see below */
93 unsigned char rtm_scope
; /* See below */
94 unsigned char rtm_type
; /* See below */
104 RTN_UNICAST
, /* Gateway or direct route */
105 RTN_LOCAL
, /* Accept locally */
106 RTN_BROADCAST
, /* Accept locally as broadcast,
108 RTN_ANYCAST
, /* Accept locally as broadcast,
109 but send as unicast */
110 RTN_MULTICAST
, /* Multicast route */
111 RTN_BLACKHOLE
, /* Drop */
112 RTN_UNREACHABLE
, /* Destination is unreachable */
113 RTN_PROHIBIT
, /* Administratively prohibited */
114 RTN_THROW
, /* Not in this table */
115 RTN_NAT
, /* Translate this address */
116 RTN_XRESOLVE
, /* Use external resolver */
119 #define RTN_MAX RTN_XRESOLVE
124 #define RTPROT_UNSPEC 0
125 #define RTPROT_REDIRECT 1 /* Route installed by ICMP redirects;
126 not used by current IPv4 */
127 #define RTPROT_KERNEL 2 /* Route installed by kernel */
128 #define RTPROT_BOOT 3 /* Route installed during boot */
129 #define RTPROT_STATIC 4 /* Route installed by administrator */
131 /* Values of protocol >= RTPROT_STATIC are not interpreted by kernel;
132 they just passed from user and back as is.
133 It will be used by hypothetical multiple routing daemons.
134 Note that protocol values should be standardized in order to
138 #define RTPROT_GATED 8 /* Apparently, GateD */
139 #define RTPROT_RA 9 /* RDISC/ND router advertisments */
140 #define RTPROT_MRT 10 /* Merit MRT */
141 #define RTPROT_ZEBRA 11 /* Zebra */
142 #define RTPROT_BIRD 12 /* BIRD */
146 Really it is not scope, but sort of distance to the destination.
147 NOWHERE are reserved for not existing destinations, HOST is our
148 local addresses, LINK are destinations, located on directly attached
149 link and UNIVERSE is everywhere in the Universe.
151 Intermediate values are also possible f.e. interior routes
152 could be assigned a value between UNIVERSE and LINK.
158 /* User defined values */
167 #define RTM_F_NOTIFY 0x100 /* Notify user of route change */
168 #define RTM_F_CLONED 0x200 /* This route is cloned */
169 #define RTM_F_EQUALIZE 0x400 /* Multipath equalizer: NI */
171 /* Reserved table identifiers */
176 /* User defined values */
177 RT_TABLE_DEFAULT
=253,
181 #define RT_TABLE_MAX RT_TABLE_LOCAL
185 /* Routing message attributes */
204 #define RTA_MAX RTA_CACHEINFO
206 #define RTM_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct rtmsg))))
207 #define RTM_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct rtmsg))
209 /* RTM_MULTIPATH --- array of struct rtnexthop.
211 * "struct rtnexthop" describres all necessary nexthop information,
212 * i.e. parameters of path to a destination via this nextop.
214 * At the moment it is impossible to set different prefsrc, mtu, window
215 * and rtt for different paths from multipath.
220 unsigned short rtnh_len
;
221 unsigned char rtnh_flags
;
222 unsigned char rtnh_hops
;
228 #define RTNH_F_DEAD 1 /* Nexthop is dead (used by multipath) */
229 #define RTNH_F_PERVASIVE 2 /* Do recursive gateway lookup */
230 #define RTNH_F_ONLINK 4 /* Gateway is forced on link */
232 /* Macros to handle hexthops */
234 #define RTNH_ALIGNTO 4
235 #define RTNH_ALIGN(len) ( ((len)+RTNH_ALIGNTO-1) & ~(RTNH_ALIGNTO-1) )
236 #define RTNH_OK(rtnh,len) ((rtnh)->rtnh_len >= sizeof(struct rtnexthop) && \
237 ((int)(rtnh)->rtnh_len) <= (len))
238 #define RTNH_NEXT(rtnh) ((struct rtnexthop*)(((char*)(rtnh)) + RTNH_ALIGN((rtnh)->rtnh_len)))
239 #define RTNH_LENGTH(len) (RTNH_ALIGN(sizeof(struct rtnexthop)) + (len))
240 #define RTNH_SPACE(len) RTNH_ALIGN(RTNH_LENGTH(len))
241 #define RTNH_DATA(rtnh) ((struct rtattr*)(((char*)(rtnh)) + RTNH_LENGTH(0)))
254 /* RTM_METRICS --- array of struct rtattr with types of RTAX_* */
259 #define RTAX_UNSPEC RTAX_UNSPEC
261 #define RTAX_LOCK RTAX_LOCK
263 #define RTAX_MTU RTAX_MTU
265 #define RTAX_WINDOW RTAX_WINDOW
267 #define RTAX_RTT RTAX_RTT
269 #define RTAX_RTTVAR RTAX_RTTVAR
271 #define RTAX_SSTHRESH RTAX_SSTHRESH
273 #define RTAX_CWND RTAX_CWND
275 #define RTAX_ADVMSS RTAX_ADVMSS
278 #define RTAX_MAX RTAX_ADVMSS
282 /*********************************************************
288 unsigned char ifa_family
;
289 unsigned char ifa_prefixlen
; /* The prefix length */
290 unsigned char ifa_flags
; /* Flags */
291 unsigned char ifa_scope
; /* See above */
292 int ifa_index
; /* Link index */
306 #define IFA_MAX IFA_CACHEINFO
310 #define IFA_F_SECONDARY 0x01
312 #define IFA_F_DEPRECATED 0x20
313 #define IFA_F_TENTATIVE 0x40
314 #define IFA_F_PERMANENT 0x80
323 #define IFA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
324 #define IFA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifaddrmsg))
328 IFA_ADDRESS is prefix address, rather than local interface address.
329 It makes no difference for normally configured broadcast interfaces,
330 but for point-to-point IFA_ADDRESS is DESTINATION address,
331 local address is supplied in IFA_LOCAL attribute.
334 /**************************************************************
335 * Neighbour discovery.
340 unsigned char ndm_family
;
341 unsigned char ndm_pad1
;
342 unsigned short ndm_pad2
;
343 int ndm_ifindex
; /* Link index */
357 #define NDA_MAX NDA_CACHEINFO
359 #define NDA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndmsg))))
360 #define NDA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndmsg))
363 * Neighbor Cache Entry Flags
366 #define NTF_PROXY 0x08 /* == ATF_PUBL */
367 #define NTF_ROUTER 0x80
370 * Neighbor Cache Entry States.
373 #define NUD_INCOMPLETE 0x01
374 #define NUD_REACHABLE 0x02
375 #define NUD_STALE 0x04
376 #define NUD_DELAY 0x08
377 #define NUD_PROBE 0x10
378 #define NUD_FAILED 0x20
381 #define NUD_NOARP 0x40
382 #define NUD_PERMANENT 0x80
383 #define NUD_NONE 0x00
395 * General form of address family dependent message.
400 unsigned char rtgen_family
;
403 /*****************************************************************
404 * Link layer specific messages.
408 * passes link level specific information, not dependent
409 * on network protocol.
414 unsigned char ifi_family
;
415 unsigned char __ifi_pad
;
416 unsigned short ifi_type
; /* ARPHRD_* */
417 int ifi_index
; /* Link index */
418 unsigned ifi_flags
; /* IFF_* flags */
419 unsigned ifi_change
; /* IFF_* change mask */
437 #define IFLA_MAX IFLA_STATS
439 #define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
440 #define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
447 IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are
448 more not changeable by user. They describe link media
449 characteristics and set by device driver.
452 - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid
453 - If neiher of these three flags are set;
454 the interface is NBMA.
456 - IFF_MULTICAST does not mean anything special:
457 multicasts can be used on all not-NBMA links.
458 IFF_MULTICAST means that this media uses special encapsulation
459 for multicast frames. Apparently, all IFF_POINTOPOINT and
460 IFF_BROADCAST devices are able to use multicasts too.
464 For usual devices it is equal ifi_index.
465 If it is a "virtual interface" (f.e. tunnel), ifi_link
466 can point to real physical interface (f.e. for bandwidth calculations),
467 or maybe 0, what means, that real media is unknown (usual
468 for IPIP tunnels, when route to endpoint is allowed to change)
471 /*****************************************************************
472 * Traffic control messages.
477 unsigned char tcm_family
;
478 unsigned char tcm__pad1
;
479 unsigned short tcm__pad2
;
496 #define TCA_MAX TCA_RATE
498 #define TCA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcmsg))))
499 #define TCA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct tcmsg))
502 /* SUMMARY: maximal rtattr understood by kernel */
504 #define RTATTR_MAX RTA_MAX
506 /* RTnetlink multicast groups */
508 #define RTMGRP_LINK 1
509 #define RTMGRP_NOTIFY 2
510 #define RTMGRP_NEIGH 4
513 #define RTMGRP_IPV4_IFADDR 0x10
514 #define RTMGRP_IPV4_MROUTE 0x20
515 #define RTMGRP_IPV4_ROUTE 0x40
517 #define RTMGRP_IPV6_IFADDR 0x100
518 #define RTMGRP_IPV6_MROUTE 0x200
519 #define RTMGRP_IPV6_ROUTE 0x400
521 #define RTMGRP_DECnet_IFADDR 0x1000
522 #define RTMGRP_DECnet_ROUTE 0x4000
524 /* End of information exported to user level */
528 extern __inline__
int rtattr_strcmp(struct rtattr
*rta
, char *str
)
530 int len
= strlen(str
) + 1;
531 return len
> rta
->rta_len
|| memcmp(RTA_DATA(rta
), str
, len
);
534 extern int rtattr_parse(struct rtattr
*tb
[], int maxattr
, struct rtattr
*rta
, int len
);
536 #ifdef CONFIG_RTNETLINK
537 extern struct sock
*rtnl
;
539 struct rtnetlink_link
541 int (*doit
)(struct sk_buff
*, struct nlmsghdr
*, void *attr
);
542 int (*dumpit
)(struct sk_buff
*, struct netlink_callback
*cb
);
545 extern struct rtnetlink_link
* rtnetlink_links
[NPROTO
];
546 extern int rtnetlink_dump_ifinfo(struct sk_buff
*skb
, struct netlink_callback
*cb
);
547 extern int rtnetlink_send(struct sk_buff
*skb
, u32 pid
, u32 group
, int echo
);
548 extern int rtnetlink_put_metrics(struct sk_buff
*skb
, unsigned *metrics
);
550 extern void __rta_fill(struct sk_buff
*skb
, int attrtype
, int attrlen
, const void *data
);
552 #define RTA_PUT(skb, attrtype, attrlen, data) \
553 ({ if (skb_tailroom(skb) < (int)RTA_SPACE(attrlen)) goto rtattr_failure; \
554 __rta_fill(skb, attrtype, attrlen, data); })
557 extern struct semaphore rtnl_sem
;
559 #define rtnl_exlock() do { } while(0)
560 #define rtnl_exunlock() do { } while(0)
561 #define rtnl_exlock_nowait() (0)
563 #define rtnl_shlock() down(&rtnl_sem)
564 #define rtnl_shlock_nowait() down_trylock(&rtnl_sem)
566 #ifndef CONFIG_RTNETLINK
567 #define rtnl_shunlock() up(&rtnl_sem)
569 #define rtnl_shunlock() do { up(&rtnl_sem); \
570 if (rtnl && rtnl->receive_queue.qlen) \
571 rtnl->data_ready(rtnl, 0); \
575 extern void rtnl_lock(void);
576 extern void rtnl_unlock(void);
577 extern void rtnetlink_init(void);
579 #define ASSERT_RTNL() do { if (down_trylock(&rtnl_sem) == 0) { up(&rtnl_sem); \
580 printk("RTNL: assertion failed at " __FILE__ "(%d):" __FUNCTION__ "\n", __LINE__); } \
582 #define BUG_TRAP(x) if (!(x)) { printk("KERNEL: assertion (" #x ") failed at " __FILE__ "(%d):" __FUNCTION__ "\n", __LINE__); }
585 #endif /* __KERNEL__ */
588 #endif /* __LINUX_RTNETLINK_H */