blob: 9750f0214c2255143ea332dd3d689e3e91416c7f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_RTNETLINK_H
2#define __LINUX_RTNETLINK_H
3
4#include <linux/netlink.h>
Thomas Graf08445652006-08-04 23:05:56 -07005#include <linux/if.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7/****
8 * Routing/neighbour discovery messages.
9 ****/
10
11/* Types of messages */
12
13enum {
14 RTM_BASE = 16,
15#define RTM_BASE RTM_BASE
16
17 RTM_NEWLINK = 16,
18#define RTM_NEWLINK RTM_NEWLINK
19 RTM_DELLINK,
20#define RTM_DELLINK RTM_DELLINK
21 RTM_GETLINK,
22#define RTM_GETLINK RTM_GETLINK
23 RTM_SETLINK,
24#define RTM_SETLINK RTM_SETLINK
25
26 RTM_NEWADDR = 20,
27#define RTM_NEWADDR RTM_NEWADDR
28 RTM_DELADDR,
29#define RTM_DELADDR RTM_DELADDR
30 RTM_GETADDR,
31#define RTM_GETADDR RTM_GETADDR
32
33 RTM_NEWROUTE = 24,
34#define RTM_NEWROUTE RTM_NEWROUTE
35 RTM_DELROUTE,
36#define RTM_DELROUTE RTM_DELROUTE
37 RTM_GETROUTE,
38#define RTM_GETROUTE RTM_GETROUTE
39
40 RTM_NEWNEIGH = 28,
41#define RTM_NEWNEIGH RTM_NEWNEIGH
42 RTM_DELNEIGH,
43#define RTM_DELNEIGH RTM_DELNEIGH
44 RTM_GETNEIGH,
45#define RTM_GETNEIGH RTM_GETNEIGH
46
47 RTM_NEWRULE = 32,
48#define RTM_NEWRULE RTM_NEWRULE
49 RTM_DELRULE,
50#define RTM_DELRULE RTM_DELRULE
51 RTM_GETRULE,
52#define RTM_GETRULE RTM_GETRULE
53
54 RTM_NEWQDISC = 36,
55#define RTM_NEWQDISC RTM_NEWQDISC
56 RTM_DELQDISC,
57#define RTM_DELQDISC RTM_DELQDISC
58 RTM_GETQDISC,
59#define RTM_GETQDISC RTM_GETQDISC
60
61 RTM_NEWTCLASS = 40,
62#define RTM_NEWTCLASS RTM_NEWTCLASS
63 RTM_DELTCLASS,
64#define RTM_DELTCLASS RTM_DELTCLASS
65 RTM_GETTCLASS,
66#define RTM_GETTCLASS RTM_GETTCLASS
67
68 RTM_NEWTFILTER = 44,
69#define RTM_NEWTFILTER RTM_NEWTFILTER
70 RTM_DELTFILTER,
71#define RTM_DELTFILTER RTM_DELTFILTER
72 RTM_GETTFILTER,
73#define RTM_GETTFILTER RTM_GETTFILTER
74
75 RTM_NEWACTION = 48,
76#define RTM_NEWACTION RTM_NEWACTION
77 RTM_DELACTION,
78#define RTM_DELACTION RTM_DELACTION
79 RTM_GETACTION,
80#define RTM_GETACTION RTM_GETACTION
81
82 RTM_NEWPREFIX = 52,
83#define RTM_NEWPREFIX RTM_NEWPREFIX
84 RTM_GETPREFIX = 54,
85#define RTM_GETPREFIX RTM_GETPREFIX
86
87 RTM_GETMULTICAST = 58,
88#define RTM_GETMULTICAST RTM_GETMULTICAST
89
90 RTM_GETANYCAST = 62,
91#define RTM_GETANYCAST RTM_GETANYCAST
92
Thomas Grafc7fb64d2005-06-18 22:50:55 -070093 RTM_NEWNEIGHTBL = 64,
94#define RTM_NEWNEIGHTBL RTM_NEWNEIGHTBL
95 RTM_GETNEIGHTBL = 66,
96#define RTM_GETNEIGHTBL RTM_GETNEIGHTBL
97 RTM_SETNEIGHTBL,
98#define RTM_SETNEIGHTBL RTM_SETNEIGHTBL
99
Thomas Grafd775fc02005-05-03 14:27:35 -0700100 __RTM_MAX,
101#define RTM_MAX (((__RTM_MAX + 3) & ~3) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102};
103
Thomas Grafdb46edc2005-05-03 14:29:39 -0700104#define RTM_NR_MSGTYPES (RTM_MAX + 1 - RTM_BASE)
105#define RTM_NR_FAMILIES (RTM_NR_MSGTYPES >> 2)
Thomas Graff90a0a72005-05-03 14:29:00 -0700106#define RTM_FAM(cmd) (((cmd) - RTM_BASE) >> 2)
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
109 Generic structure for encapsulation of optional route information.
110 It is reminiscent of sockaddr, but with sa_family replaced
111 with attribute type.
112 */
113
114struct rtattr
115{
116 unsigned short rta_len;
117 unsigned short rta_type;
118};
119
120/* Macros to handle rtattributes */
121
122#define RTA_ALIGNTO 4
123#define RTA_ALIGN(len) ( ((len)+RTA_ALIGNTO-1) & ~(RTA_ALIGNTO-1) )
124#define RTA_OK(rta,len) ((len) >= (int)sizeof(struct rtattr) && \
125 (rta)->rta_len >= sizeof(struct rtattr) && \
126 (rta)->rta_len <= (len))
127#define RTA_NEXT(rta,attrlen) ((attrlen) -= RTA_ALIGN((rta)->rta_len), \
128 (struct rtattr*)(((char*)(rta)) + RTA_ALIGN((rta)->rta_len)))
129#define RTA_LENGTH(len) (RTA_ALIGN(sizeof(struct rtattr)) + (len))
130#define RTA_SPACE(len) RTA_ALIGN(RTA_LENGTH(len))
131#define RTA_DATA(rta) ((void*)(((char*)(rta)) + RTA_LENGTH(0)))
132#define RTA_PAYLOAD(rta) ((int)((rta)->rta_len) - RTA_LENGTH(0))
133
134
135
136
137/******************************************************************************
138 * Definitions used in routing table administration.
139 ****/
140
141struct rtmsg
142{
143 unsigned char rtm_family;
144 unsigned char rtm_dst_len;
145 unsigned char rtm_src_len;
146 unsigned char rtm_tos;
147
148 unsigned char rtm_table; /* Routing table id */
149 unsigned char rtm_protocol; /* Routing protocol; see below */
150 unsigned char rtm_scope; /* See below */
151 unsigned char rtm_type; /* See below */
152
153 unsigned rtm_flags;
154};
155
156/* rtm_type */
157
158enum
159{
160 RTN_UNSPEC,
161 RTN_UNICAST, /* Gateway or direct route */
162 RTN_LOCAL, /* Accept locally */
163 RTN_BROADCAST, /* Accept locally as broadcast,
164 send as broadcast */
165 RTN_ANYCAST, /* Accept locally as broadcast,
166 but send as unicast */
167 RTN_MULTICAST, /* Multicast route */
168 RTN_BLACKHOLE, /* Drop */
169 RTN_UNREACHABLE, /* Destination is unreachable */
170 RTN_PROHIBIT, /* Administratively prohibited */
171 RTN_THROW, /* Not in this table */
172 RTN_NAT, /* Translate this address */
173 RTN_XRESOLVE, /* Use external resolver */
174 __RTN_MAX
175};
176
177#define RTN_MAX (__RTN_MAX - 1)
178
179
180/* rtm_protocol */
181
182#define RTPROT_UNSPEC 0
183#define RTPROT_REDIRECT 1 /* Route installed by ICMP redirects;
184 not used by current IPv4 */
185#define RTPROT_KERNEL 2 /* Route installed by kernel */
186#define RTPROT_BOOT 3 /* Route installed during boot */
187#define RTPROT_STATIC 4 /* Route installed by administrator */
188
189/* Values of protocol >= RTPROT_STATIC are not interpreted by kernel;
190 they are just passed from user and back as is.
191 It will be used by hypothetical multiple routing daemons.
192 Note that protocol values should be standardized in order to
193 avoid conflicts.
194 */
195
196#define RTPROT_GATED 8 /* Apparently, GateD */
197#define RTPROT_RA 9 /* RDISC/ND router advertisements */
198#define RTPROT_MRT 10 /* Merit MRT */
199#define RTPROT_ZEBRA 11 /* Zebra */
200#define RTPROT_BIRD 12 /* BIRD */
201#define RTPROT_DNROUTED 13 /* DECnet routing daemon */
202#define RTPROT_XORP 14 /* XORP */
Alpt99cae7f2006-03-20 22:26:17 -0800203#define RTPROT_NTK 15 /* Netsukuku */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205/* rtm_scope
206
207 Really it is not scope, but sort of distance to the destination.
208 NOWHERE are reserved for not existing destinations, HOST is our
209 local addresses, LINK are destinations, located on directly attached
210 link and UNIVERSE is everywhere in the Universe.
211
212 Intermediate values are also possible f.e. interior routes
213 could be assigned a value between UNIVERSE and LINK.
214*/
215
216enum rt_scope_t
217{
218 RT_SCOPE_UNIVERSE=0,
219/* User defined values */
220 RT_SCOPE_SITE=200,
221 RT_SCOPE_LINK=253,
222 RT_SCOPE_HOST=254,
223 RT_SCOPE_NOWHERE=255
224};
225
226/* rtm_flags */
227
228#define RTM_F_NOTIFY 0x100 /* Notify user of route change */
229#define RTM_F_CLONED 0x200 /* This route is cloned */
230#define RTM_F_EQUALIZE 0x400 /* Multipath equalizer: NI */
231#define RTM_F_PREFIX 0x800 /* Prefix addresses */
232
233/* Reserved table identifiers */
234
235enum rt_class_t
236{
237 RT_TABLE_UNSPEC=0,
238/* User defined values */
239 RT_TABLE_DEFAULT=253,
240 RT_TABLE_MAIN=254,
241 RT_TABLE_LOCAL=255,
242 __RT_TABLE_MAX
243};
244#define RT_TABLE_MAX (__RT_TABLE_MAX - 1)
245
246
247
248/* Routing message attributes */
249
250enum rtattr_type_t
251{
252 RTA_UNSPEC,
253 RTA_DST,
254 RTA_SRC,
255 RTA_IIF,
256 RTA_OIF,
257 RTA_GATEWAY,
258 RTA_PRIORITY,
259 RTA_PREFSRC,
260 RTA_METRICS,
261 RTA_MULTIPATH,
262 RTA_PROTOINFO,
263 RTA_FLOW,
264 RTA_CACHEINFO,
265 RTA_SESSION,
266 RTA_MP_ALGO,
267 __RTA_MAX
268};
269
270#define RTA_MAX (__RTA_MAX - 1)
271
272#define RTM_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct rtmsg))))
273#define RTM_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct rtmsg))
274
275/* RTM_MULTIPATH --- array of struct rtnexthop.
276 *
277 * "struct rtnexthop" describes all necessary nexthop information,
278 * i.e. parameters of path to a destination via this nexthop.
279 *
280 * At the moment it is impossible to set different prefsrc, mtu, window
281 * and rtt for different paths from multipath.
282 */
283
284struct rtnexthop
285{
286 unsigned short rtnh_len;
287 unsigned char rtnh_flags;
288 unsigned char rtnh_hops;
289 int rtnh_ifindex;
290};
291
292/* rtnh_flags */
293
294#define RTNH_F_DEAD 1 /* Nexthop is dead (used by multipath) */
295#define RTNH_F_PERVASIVE 2 /* Do recursive gateway lookup */
296#define RTNH_F_ONLINK 4 /* Gateway is forced on link */
297
298/* Macros to handle hexthops */
299
300#define RTNH_ALIGNTO 4
301#define RTNH_ALIGN(len) ( ((len)+RTNH_ALIGNTO-1) & ~(RTNH_ALIGNTO-1) )
302#define RTNH_OK(rtnh,len) ((rtnh)->rtnh_len >= sizeof(struct rtnexthop) && \
303 ((int)(rtnh)->rtnh_len) <= (len))
304#define RTNH_NEXT(rtnh) ((struct rtnexthop*)(((char*)(rtnh)) + RTNH_ALIGN((rtnh)->rtnh_len)))
305#define RTNH_LENGTH(len) (RTNH_ALIGN(sizeof(struct rtnexthop)) + (len))
306#define RTNH_SPACE(len) RTNH_ALIGN(RTNH_LENGTH(len))
307#define RTNH_DATA(rtnh) ((struct rtattr*)(((char*)(rtnh)) + RTNH_LENGTH(0)))
308
309/* RTM_CACHEINFO */
310
311struct rta_cacheinfo
312{
313 __u32 rta_clntref;
314 __u32 rta_lastuse;
315 __s32 rta_expires;
316 __u32 rta_error;
317 __u32 rta_used;
318
319#define RTNETLINK_HAVE_PEERINFO 1
320 __u32 rta_id;
321 __u32 rta_ts;
322 __u32 rta_tsage;
323};
324
325/* RTM_METRICS --- array of struct rtattr with types of RTAX_* */
326
327enum
328{
329 RTAX_UNSPEC,
330#define RTAX_UNSPEC RTAX_UNSPEC
331 RTAX_LOCK,
332#define RTAX_LOCK RTAX_LOCK
333 RTAX_MTU,
334#define RTAX_MTU RTAX_MTU
335 RTAX_WINDOW,
336#define RTAX_WINDOW RTAX_WINDOW
337 RTAX_RTT,
338#define RTAX_RTT RTAX_RTT
339 RTAX_RTTVAR,
340#define RTAX_RTTVAR RTAX_RTTVAR
341 RTAX_SSTHRESH,
342#define RTAX_SSTHRESH RTAX_SSTHRESH
343 RTAX_CWND,
344#define RTAX_CWND RTAX_CWND
345 RTAX_ADVMSS,
346#define RTAX_ADVMSS RTAX_ADVMSS
347 RTAX_REORDERING,
348#define RTAX_REORDERING RTAX_REORDERING
349 RTAX_HOPLIMIT,
350#define RTAX_HOPLIMIT RTAX_HOPLIMIT
351 RTAX_INITCWND,
352#define RTAX_INITCWND RTAX_INITCWND
353 RTAX_FEATURES,
354#define RTAX_FEATURES RTAX_FEATURES
355 __RTAX_MAX
356};
357
358#define RTAX_MAX (__RTAX_MAX - 1)
359
360#define RTAX_FEATURE_ECN 0x00000001
361#define RTAX_FEATURE_SACK 0x00000002
362#define RTAX_FEATURE_TIMESTAMP 0x00000004
363#define RTAX_FEATURE_ALLFRAG 0x00000008
364
365struct rta_session
366{
367 __u8 proto;
Patrick McHardy8a470772005-06-28 12:56:45 -0700368 __u8 pad1;
369 __u16 pad2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 union {
372 struct {
373 __u16 sport;
374 __u16 dport;
375 } ports;
376
377 struct {
378 __u8 type;
379 __u8 code;
380 __u16 ident;
381 } icmpt;
382
383 __u32 spi;
384 } u;
385};
386
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Thomas Grafc7fb64d2005-06-18 22:50:55 -0700389/*****************************************************************
390 * Neighbour tables specific messages.
391 *
392 * To retrieve the neighbour tables send RTM_GETNEIGHTBL with the
393 * NLM_F_DUMP flag set. Every neighbour table configuration is
394 * spread over multiple messages to avoid running into message
395 * size limits on systems with many interfaces. The first message
396 * in the sequence transports all not device specific data such as
397 * statistics, configuration, and the default parameter set.
398 * This message is followed by 0..n messages carrying device
399 * specific parameter sets.
400 * Although the ordering should be sufficient, NDTA_NAME can be
401 * used to identify sequences. The initial message can be identified
402 * by checking for NDTA_CONFIG. The device specific messages do
403 * not contain this TLV but have NDTPA_IFINDEX set to the
404 * corresponding interface index.
405 *
406 * To change neighbour table attributes, send RTM_SETNEIGHTBL
407 * with NDTA_NAME set. Changeable attribute include NDTA_THRESH[1-3],
408 * NDTA_GC_INTERVAL, and all TLVs in NDTA_PARMS unless marked
409 * otherwise. Device specific parameter sets can be changed by
410 * setting NDTPA_IFINDEX to the interface index of the corresponding
411 * device.
412 ****/
413
414struct ndt_stats
415{
416 __u64 ndts_allocs;
417 __u64 ndts_destroys;
418 __u64 ndts_hash_grows;
419 __u64 ndts_res_failed;
420 __u64 ndts_lookups;
421 __u64 ndts_hits;
422 __u64 ndts_rcv_probes_mcast;
423 __u64 ndts_rcv_probes_ucast;
424 __u64 ndts_periodic_gc_runs;
425 __u64 ndts_forced_gc_runs;
426};
427
428enum {
429 NDTPA_UNSPEC,
430 NDTPA_IFINDEX, /* u32, unchangeable */
431 NDTPA_REFCNT, /* u32, read-only */
432 NDTPA_REACHABLE_TIME, /* u64, read-only, msecs */
433 NDTPA_BASE_REACHABLE_TIME, /* u64, msecs */
434 NDTPA_RETRANS_TIME, /* u64, msecs */
435 NDTPA_GC_STALETIME, /* u64, msecs */
436 NDTPA_DELAY_PROBE_TIME, /* u64, msecs */
437 NDTPA_QUEUE_LEN, /* u32 */
438 NDTPA_APP_PROBES, /* u32 */
439 NDTPA_UCAST_PROBES, /* u32 */
440 NDTPA_MCAST_PROBES, /* u32 */
441 NDTPA_ANYCAST_DELAY, /* u64, msecs */
442 NDTPA_PROXY_DELAY, /* u64, msecs */
443 NDTPA_PROXY_QLEN, /* u32 */
444 NDTPA_LOCKTIME, /* u64, msecs */
445 __NDTPA_MAX
446};
447#define NDTPA_MAX (__NDTPA_MAX - 1)
448
449struct ndtmsg
450{
451 __u8 ndtm_family;
452 __u8 ndtm_pad1;
453 __u16 ndtm_pad2;
454};
455
456struct ndt_config
457{
458 __u16 ndtc_key_len;
459 __u16 ndtc_entry_size;
460 __u32 ndtc_entries;
461 __u32 ndtc_last_flush; /* delta to now in msecs */
462 __u32 ndtc_last_rand; /* delta to now in msecs */
463 __u32 ndtc_hash_rnd;
464 __u32 ndtc_hash_mask;
465 __u32 ndtc_hash_chain_gc;
466 __u32 ndtc_proxy_qlen;
467};
468
469enum {
470 NDTA_UNSPEC,
471 NDTA_NAME, /* char *, unchangeable */
472 NDTA_THRESH1, /* u32 */
473 NDTA_THRESH2, /* u32 */
474 NDTA_THRESH3, /* u32 */
475 NDTA_CONFIG, /* struct ndt_config, read-only */
476 NDTA_PARMS, /* nested TLV NDTPA_* */
477 NDTA_STATS, /* struct ndt_stats, read-only */
478 NDTA_GC_INTERVAL, /* u64, msecs */
479 __NDTA_MAX
480};
481#define NDTA_MAX (__NDTA_MAX - 1)
482
483#define NDTA_RTA(r) ((struct rtattr*)(((char*)(r)) + \
484 NLMSG_ALIGN(sizeof(struct ndtmsg))))
485#define NDTA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndtmsg))
486
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/****
489 * General form of address family dependent message.
490 ****/
491
492struct rtgenmsg
493{
494 unsigned char rtgen_family;
495};
496
497/*****************************************************************
498 * Link layer specific messages.
499 ****/
500
501/* struct ifinfomsg
502 * passes link level specific information, not dependent
503 * on network protocol.
504 */
505
506struct ifinfomsg
507{
508 unsigned char ifi_family;
509 unsigned char __ifi_pad;
510 unsigned short ifi_type; /* ARPHRD_* */
511 int ifi_index; /* Link index */
512 unsigned ifi_flags; /* IFF_* flags */
513 unsigned ifi_change; /* IFF_* change mask */
514};
515
516/********************************************************************
517 * prefix information
518 ****/
519
520struct prefixmsg
521{
522 unsigned char prefix_family;
Patrick McHardy8a470772005-06-28 12:56:45 -0700523 unsigned char prefix_pad1;
524 unsigned short prefix_pad2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 int prefix_ifindex;
526 unsigned char prefix_type;
527 unsigned char prefix_len;
528 unsigned char prefix_flags;
Patrick McHardy8a470772005-06-28 12:56:45 -0700529 unsigned char prefix_pad3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530};
531
532enum
533{
534 PREFIX_UNSPEC,
535 PREFIX_ADDRESS,
536 PREFIX_CACHEINFO,
537 __PREFIX_MAX
538};
539
540#define PREFIX_MAX (__PREFIX_MAX - 1)
541
542struct prefix_cacheinfo
543{
544 __u32 preferred_time;
545 __u32 valid_time;
546};
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549/*****************************************************************
550 * Traffic control messages.
551 ****/
552
553struct tcmsg
554{
555 unsigned char tcm_family;
556 unsigned char tcm__pad1;
557 unsigned short tcm__pad2;
558 int tcm_ifindex;
559 __u32 tcm_handle;
560 __u32 tcm_parent;
561 __u32 tcm_info;
562};
563
564enum
565{
566 TCA_UNSPEC,
567 TCA_KIND,
568 TCA_OPTIONS,
569 TCA_STATS,
570 TCA_XSTATS,
571 TCA_RATE,
572 TCA_FCNT,
573 TCA_STATS2,
574 __TCA_MAX
575};
576
577#define TCA_MAX (__TCA_MAX - 1)
578
579#define TCA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcmsg))))
580#define TCA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct tcmsg))
581
Patrick McHardyac6d4392005-08-14 19:29:52 -0700582#ifndef __KERNEL__
583/* RTnetlink multicast groups - backwards compatibility for userspace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584#define RTMGRP_LINK 1
585#define RTMGRP_NOTIFY 2
586#define RTMGRP_NEIGH 4
587#define RTMGRP_TC 8
588
589#define RTMGRP_IPV4_IFADDR 0x10
590#define RTMGRP_IPV4_MROUTE 0x20
591#define RTMGRP_IPV4_ROUTE 0x40
Patrick McHardya5cdc032006-03-23 01:16:06 -0800592#define RTMGRP_IPV4_RULE 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594#define RTMGRP_IPV6_IFADDR 0x100
595#define RTMGRP_IPV6_MROUTE 0x200
596#define RTMGRP_IPV6_ROUTE 0x400
597#define RTMGRP_IPV6_IFINFO 0x800
598
599#define RTMGRP_DECnet_IFADDR 0x1000
600#define RTMGRP_DECnet_ROUTE 0x4000
601
602#define RTMGRP_IPV6_PREFIX 0x20000
Patrick McHardyac6d4392005-08-14 19:29:52 -0700603#endif
604
605/* RTnetlink multicast groups */
606enum rtnetlink_groups {
607 RTNLGRP_NONE,
608#define RTNLGRP_NONE RTNLGRP_NONE
609 RTNLGRP_LINK,
610#define RTNLGRP_LINK RTNLGRP_LINK
611 RTNLGRP_NOTIFY,
612#define RTNLGRP_NOTIFY RTNLGRP_NOTIFY
613 RTNLGRP_NEIGH,
614#define RTNLGRP_NEIGH RTNLGRP_NEIGH
615 RTNLGRP_TC,
616#define RTNLGRP_TC RTNLGRP_TC
617 RTNLGRP_IPV4_IFADDR,
618#define RTNLGRP_IPV4_IFADDR RTNLGRP_IPV4_IFADDR
619 RTNLGRP_IPV4_MROUTE,
620#define RTNLGRP_IPV4_MROUTE RTNLGRP_IPV4_MROUTE
621 RTNLGRP_IPV4_ROUTE,
622#define RTNLGRP_IPV4_ROUTE RTNLGRP_IPV4_ROUTE
Patrick McHardya5cdc032006-03-23 01:16:06 -0800623 RTNLGRP_IPV4_RULE,
624#define RTNLGRP_IPV4_RULE RTNLGRP_IPV4_RULE
Patrick McHardyac6d4392005-08-14 19:29:52 -0700625 RTNLGRP_IPV6_IFADDR,
626#define RTNLGRP_IPV6_IFADDR RTNLGRP_IPV6_IFADDR
627 RTNLGRP_IPV6_MROUTE,
628#define RTNLGRP_IPV6_MROUTE RTNLGRP_IPV6_MROUTE
629 RTNLGRP_IPV6_ROUTE,
630#define RTNLGRP_IPV6_ROUTE RTNLGRP_IPV6_ROUTE
631 RTNLGRP_IPV6_IFINFO,
632#define RTNLGRP_IPV6_IFINFO RTNLGRP_IPV6_IFINFO
633 RTNLGRP_DECnet_IFADDR,
634#define RTNLGRP_DECnet_IFADDR RTNLGRP_DECnet_IFADDR
Kristian Slavov6b80ebe2005-12-19 13:54:44 -0800635 RTNLGRP_NOP2,
Patrick McHardyac6d4392005-08-14 19:29:52 -0700636 RTNLGRP_DECnet_ROUTE,
637#define RTNLGRP_DECnet_ROUTE RTNLGRP_DECnet_ROUTE
Kristian Slavov6b80ebe2005-12-19 13:54:44 -0800638 RTNLGRP_NOP3,
639 RTNLGRP_NOP4,
Patrick McHardyac6d4392005-08-14 19:29:52 -0700640 RTNLGRP_IPV6_PREFIX,
641#define RTNLGRP_IPV6_PREFIX RTNLGRP_IPV6_PREFIX
Thomas Graf101367c2006-08-04 03:39:02 -0700642 RTNLGRP_IPV6_RULE,
643#define RTNLGRP_IPV6_RULE RTNLGRP_IPV6_RULE
Patrick McHardyac6d4392005-08-14 19:29:52 -0700644 __RTNLGRP_MAX
645};
646#define RTNLGRP_MAX (__RTNLGRP_MAX - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648/* TC action piece */
649struct tcamsg
650{
651 unsigned char tca_family;
652 unsigned char tca__pad1;
653 unsigned short tca__pad2;
654};
655#define TA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcamsg))))
656#define TA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct tcamsg))
657#define TCA_ACT_TAB 1 /* attr type must be >=1 */
658#define TCAA_MAX 1
659
660/* End of information exported to user level */
661
662#ifdef __KERNEL__
663
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800664#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666extern size_t rtattr_strlcpy(char *dest, const struct rtattr *rta, size_t size);
667static __inline__ int rtattr_strcmp(const struct rtattr *rta, const char *str)
668{
669 int len = strlen(str) + 1;
670 return len > rta->rta_len || memcmp(RTA_DATA(rta), str, len);
671}
672
673extern int rtattr_parse(struct rtattr *tb[], int maxattr, struct rtattr *rta, int len);
674
675#define rtattr_parse_nested(tb, max, rta) \
676 rtattr_parse((tb), (max), RTA_DATA((rta)), RTA_PAYLOAD((rta)))
677
678extern struct sock *rtnl;
679
680struct rtnetlink_link
681{
682 int (*doit)(struct sk_buff *, struct nlmsghdr*, void *attr);
683 int (*dumpit)(struct sk_buff *, struct netlink_callback *cb);
684};
685
686extern struct rtnetlink_link * rtnetlink_links[NPROTO];
687extern int rtnetlink_send(struct sk_buff *skb, u32 pid, u32 group, int echo);
688extern int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics);
689
690extern void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data);
691
692#define RTA_PUT(skb, attrtype, attrlen, data) \
693({ if (unlikely(skb_tailroom(skb) < (int)RTA_SPACE(attrlen))) \
694 goto rtattr_failure; \
695 __rta_fill(skb, attrtype, attrlen, data); })
696
Thomas Grafd675c982005-06-23 21:00:58 -0700697#define RTA_APPEND(skb, attrlen, data) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698({ if (unlikely(skb_tailroom(skb) < (int)(attrlen))) \
699 goto rtattr_failure; \
Thomas Grafd675c982005-06-23 21:00:58 -0700700 memcpy(skb_put(skb, attrlen), data, attrlen); })
701
702#define RTA_PUT_NOHDR(skb, attrlen, data) \
Patrick McHardyb3563c42005-06-28 12:54:43 -0700703({ RTA_APPEND(skb, RTA_ALIGN(attrlen), data); \
704 memset(skb->tail - (RTA_ALIGN(attrlen) - attrlen), 0, \
705 RTA_ALIGN(attrlen) - attrlen); })
Thomas Graf00768242005-06-18 22:50:38 -0700706
Thomas Graf8f48bcd2005-06-18 22:52:36 -0700707#define RTA_PUT_U8(skb, attrtype, value) \
708({ u8 _tmp = (value); \
709 RTA_PUT(skb, attrtype, sizeof(u8), &_tmp); })
710
711#define RTA_PUT_U16(skb, attrtype, value) \
712({ u16 _tmp = (value); \
713 RTA_PUT(skb, attrtype, sizeof(u16), &_tmp); })
714
Thomas Graf00768242005-06-18 22:50:38 -0700715#define RTA_PUT_U32(skb, attrtype, value) \
716({ u32 _tmp = (value); \
717 RTA_PUT(skb, attrtype, sizeof(u32), &_tmp); })
718
719#define RTA_PUT_U64(skb, attrtype, value) \
720({ u64 _tmp = (value); \
721 RTA_PUT(skb, attrtype, sizeof(u64), &_tmp); })
722
723#define RTA_PUT_SECS(skb, attrtype, value) \
724 RTA_PUT_U64(skb, attrtype, (value) / HZ)
725
726#define RTA_PUT_MSECS(skb, attrtype, value) \
727 RTA_PUT_U64(skb, attrtype, jiffies_to_msecs(value))
728
729#define RTA_PUT_STRING(skb, attrtype, value) \
730 RTA_PUT(skb, attrtype, strlen(value) + 1, value)
731
Thomas Graf8f48bcd2005-06-18 22:52:36 -0700732#define RTA_PUT_FLAG(skb, attrtype) \
733 RTA_PUT(skb, attrtype, 0, NULL);
734
Thomas Graf00768242005-06-18 22:50:38 -0700735#define RTA_NEST(skb, type) \
736({ struct rtattr *__start = (struct rtattr *) (skb)->tail; \
737 RTA_PUT(skb, type, 0, NULL); \
738 __start; })
739
740#define RTA_NEST_END(skb, start) \
741({ (start)->rta_len = ((skb)->tail - (unsigned char *) (start)); \
742 (skb)->len; })
743
744#define RTA_NEST_CANCEL(skb, start) \
Thomas Grafc52a3f82005-06-18 22:51:26 -0700745({ if (start) \
746 skb_trim(skb, (unsigned char *) (start) - (skb)->data); \
Thomas Graf00768242005-06-18 22:50:38 -0700747 -1; })
748
Thomas Graf8f48bcd2005-06-18 22:52:36 -0700749#define RTA_GET_U8(rta) \
750({ if (!rta || RTA_PAYLOAD(rta) < sizeof(u8)) \
751 goto rtattr_failure; \
752 *(u8 *) RTA_DATA(rta); })
753
754#define RTA_GET_U16(rta) \
755({ if (!rta || RTA_PAYLOAD(rta) < sizeof(u16)) \
756 goto rtattr_failure; \
757 *(u16 *) RTA_DATA(rta); })
758
Thomas Graf00768242005-06-18 22:50:38 -0700759#define RTA_GET_U32(rta) \
760({ if (!rta || RTA_PAYLOAD(rta) < sizeof(u32)) \
761 goto rtattr_failure; \
762 *(u32 *) RTA_DATA(rta); })
763
764#define RTA_GET_U64(rta) \
765({ u64 _tmp; \
766 if (!rta || RTA_PAYLOAD(rta) < sizeof(u64)) \
767 goto rtattr_failure; \
768 memcpy(&_tmp, RTA_DATA(rta), sizeof(_tmp)); \
769 _tmp; })
770
Thomas Graf8f48bcd2005-06-18 22:52:36 -0700771#define RTA_GET_FLAG(rta) (!!(rta))
772
Thomas Graf00768242005-06-18 22:50:38 -0700773#define RTA_GET_SECS(rta) ((unsigned long) RTA_GET_U64(rta) * HZ)
774#define RTA_GET_MSECS(rta) (msecs_to_jiffies((unsigned long) RTA_GET_U64(rta)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776static inline struct rtattr *
777__rta_reserve(struct sk_buff *skb, int attrtype, int attrlen)
778{
779 struct rtattr *rta;
780 int size = RTA_LENGTH(attrlen);
781
782 rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
783 rta->rta_type = attrtype;
784 rta->rta_len = size;
Patrick McHardyb3563c42005-06-28 12:54:43 -0700785 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return rta;
787}
788
789#define __RTA_PUT(skb, attrtype, attrlen) \
790({ if (unlikely(skb_tailroom(skb) < (int)RTA_SPACE(attrlen))) \
791 goto rtattr_failure; \
792 __rta_reserve(skb, attrtype, attrlen); })
793
794extern void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change);
795
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800796/* RTNL is used as a global lock for all changes to network configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797extern void rtnl_lock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798extern void rtnl_unlock(void);
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800799extern int rtnl_trylock(void);
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801extern void rtnetlink_init(void);
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800802extern void __rtnl_unlock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804#define ASSERT_RTNL() do { \
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800805 if (unlikely(rtnl_trylock())) { \
806 rtnl_unlock(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 printk(KERN_ERR "RTNL: assertion failed at %s (%d)\n", \
808 __FILE__, __LINE__); \
809 dump_stack(); \
810 } \
811} while(0)
812
813#define BUG_TRAP(x) do { \
814 if (unlikely(!(x))) { \
815 printk(KERN_ERR "KERNEL: assertion (%s) failed at %s (%d)\n", \
816 #x, __FILE__ , __LINE__); \
817 } \
818} while(0)
819
820#endif /* __KERNEL__ */
821
822
823#endif /* __LINUX_RTNETLINK_H */