blob: 84f3eb426da208a48b46d90927239213de53b251 [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
389/**************************************************************
390 * Neighbour discovery.
391 ****/
392
393struct ndmsg
394{
395 unsigned char ndm_family;
396 unsigned char ndm_pad1;
397 unsigned short ndm_pad2;
398 int ndm_ifindex; /* Link index */
399 __u16 ndm_state;
400 __u8 ndm_flags;
401 __u8 ndm_type;
402};
403
404enum
405{
406 NDA_UNSPEC,
407 NDA_DST,
408 NDA_LLADDR,
409 NDA_CACHEINFO,
410 NDA_PROBES,
411 __NDA_MAX
412};
413
414#define NDA_MAX (__NDA_MAX - 1)
415
416#define NDA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndmsg))))
417#define NDA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndmsg))
418
419/*
420 * Neighbor Cache Entry Flags
421 */
422
423#define NTF_PROXY 0x08 /* == ATF_PUBL */
424#define NTF_ROUTER 0x80
425
426/*
427 * Neighbor Cache Entry States.
428 */
429
430#define NUD_INCOMPLETE 0x01
431#define NUD_REACHABLE 0x02
432#define NUD_STALE 0x04
433#define NUD_DELAY 0x08
434#define NUD_PROBE 0x10
435#define NUD_FAILED 0x20
436
437/* Dummy states */
438#define NUD_NOARP 0x40
439#define NUD_PERMANENT 0x80
440#define NUD_NONE 0x00
441
442
443struct nda_cacheinfo
444{
445 __u32 ndm_confirmed;
446 __u32 ndm_used;
447 __u32 ndm_updated;
448 __u32 ndm_refcnt;
449};
450
Thomas Grafc7fb64d2005-06-18 22:50:55 -0700451
452/*****************************************************************
453 * Neighbour tables specific messages.
454 *
455 * To retrieve the neighbour tables send RTM_GETNEIGHTBL with the
456 * NLM_F_DUMP flag set. Every neighbour table configuration is
457 * spread over multiple messages to avoid running into message
458 * size limits on systems with many interfaces. The first message
459 * in the sequence transports all not device specific data such as
460 * statistics, configuration, and the default parameter set.
461 * This message is followed by 0..n messages carrying device
462 * specific parameter sets.
463 * Although the ordering should be sufficient, NDTA_NAME can be
464 * used to identify sequences. The initial message can be identified
465 * by checking for NDTA_CONFIG. The device specific messages do
466 * not contain this TLV but have NDTPA_IFINDEX set to the
467 * corresponding interface index.
468 *
469 * To change neighbour table attributes, send RTM_SETNEIGHTBL
470 * with NDTA_NAME set. Changeable attribute include NDTA_THRESH[1-3],
471 * NDTA_GC_INTERVAL, and all TLVs in NDTA_PARMS unless marked
472 * otherwise. Device specific parameter sets can be changed by
473 * setting NDTPA_IFINDEX to the interface index of the corresponding
474 * device.
475 ****/
476
477struct ndt_stats
478{
479 __u64 ndts_allocs;
480 __u64 ndts_destroys;
481 __u64 ndts_hash_grows;
482 __u64 ndts_res_failed;
483 __u64 ndts_lookups;
484 __u64 ndts_hits;
485 __u64 ndts_rcv_probes_mcast;
486 __u64 ndts_rcv_probes_ucast;
487 __u64 ndts_periodic_gc_runs;
488 __u64 ndts_forced_gc_runs;
489};
490
491enum {
492 NDTPA_UNSPEC,
493 NDTPA_IFINDEX, /* u32, unchangeable */
494 NDTPA_REFCNT, /* u32, read-only */
495 NDTPA_REACHABLE_TIME, /* u64, read-only, msecs */
496 NDTPA_BASE_REACHABLE_TIME, /* u64, msecs */
497 NDTPA_RETRANS_TIME, /* u64, msecs */
498 NDTPA_GC_STALETIME, /* u64, msecs */
499 NDTPA_DELAY_PROBE_TIME, /* u64, msecs */
500 NDTPA_QUEUE_LEN, /* u32 */
501 NDTPA_APP_PROBES, /* u32 */
502 NDTPA_UCAST_PROBES, /* u32 */
503 NDTPA_MCAST_PROBES, /* u32 */
504 NDTPA_ANYCAST_DELAY, /* u64, msecs */
505 NDTPA_PROXY_DELAY, /* u64, msecs */
506 NDTPA_PROXY_QLEN, /* u32 */
507 NDTPA_LOCKTIME, /* u64, msecs */
508 __NDTPA_MAX
509};
510#define NDTPA_MAX (__NDTPA_MAX - 1)
511
512struct ndtmsg
513{
514 __u8 ndtm_family;
515 __u8 ndtm_pad1;
516 __u16 ndtm_pad2;
517};
518
519struct ndt_config
520{
521 __u16 ndtc_key_len;
522 __u16 ndtc_entry_size;
523 __u32 ndtc_entries;
524 __u32 ndtc_last_flush; /* delta to now in msecs */
525 __u32 ndtc_last_rand; /* delta to now in msecs */
526 __u32 ndtc_hash_rnd;
527 __u32 ndtc_hash_mask;
528 __u32 ndtc_hash_chain_gc;
529 __u32 ndtc_proxy_qlen;
530};
531
532enum {
533 NDTA_UNSPEC,
534 NDTA_NAME, /* char *, unchangeable */
535 NDTA_THRESH1, /* u32 */
536 NDTA_THRESH2, /* u32 */
537 NDTA_THRESH3, /* u32 */
538 NDTA_CONFIG, /* struct ndt_config, read-only */
539 NDTA_PARMS, /* nested TLV NDTPA_* */
540 NDTA_STATS, /* struct ndt_stats, read-only */
541 NDTA_GC_INTERVAL, /* u64, msecs */
542 __NDTA_MAX
543};
544#define NDTA_MAX (__NDTA_MAX - 1)
545
546#define NDTA_RTA(r) ((struct rtattr*)(((char*)(r)) + \
547 NLMSG_ALIGN(sizeof(struct ndtmsg))))
548#define NDTA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndtmsg))
549
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/****
552 * General form of address family dependent message.
553 ****/
554
555struct rtgenmsg
556{
557 unsigned char rtgen_family;
558};
559
560/*****************************************************************
561 * Link layer specific messages.
562 ****/
563
564/* struct ifinfomsg
565 * passes link level specific information, not dependent
566 * on network protocol.
567 */
568
569struct ifinfomsg
570{
571 unsigned char ifi_family;
572 unsigned char __ifi_pad;
573 unsigned short ifi_type; /* ARPHRD_* */
574 int ifi_index; /* Link index */
575 unsigned ifi_flags; /* IFF_* flags */
576 unsigned ifi_change; /* IFF_* change mask */
577};
578
579/********************************************************************
580 * prefix information
581 ****/
582
583struct prefixmsg
584{
585 unsigned char prefix_family;
Patrick McHardy8a470772005-06-28 12:56:45 -0700586 unsigned char prefix_pad1;
587 unsigned short prefix_pad2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 int prefix_ifindex;
589 unsigned char prefix_type;
590 unsigned char prefix_len;
591 unsigned char prefix_flags;
Patrick McHardy8a470772005-06-28 12:56:45 -0700592 unsigned char prefix_pad3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593};
594
595enum
596{
597 PREFIX_UNSPEC,
598 PREFIX_ADDRESS,
599 PREFIX_CACHEINFO,
600 __PREFIX_MAX
601};
602
603#define PREFIX_MAX (__PREFIX_MAX - 1)
604
605struct prefix_cacheinfo
606{
607 __u32 preferred_time;
608 __u32 valid_time;
609};
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612/*****************************************************************
613 * Traffic control messages.
614 ****/
615
616struct tcmsg
617{
618 unsigned char tcm_family;
619 unsigned char tcm__pad1;
620 unsigned short tcm__pad2;
621 int tcm_ifindex;
622 __u32 tcm_handle;
623 __u32 tcm_parent;
624 __u32 tcm_info;
625};
626
627enum
628{
629 TCA_UNSPEC,
630 TCA_KIND,
631 TCA_OPTIONS,
632 TCA_STATS,
633 TCA_XSTATS,
634 TCA_RATE,
635 TCA_FCNT,
636 TCA_STATS2,
637 __TCA_MAX
638};
639
640#define TCA_MAX (__TCA_MAX - 1)
641
642#define TCA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcmsg))))
643#define TCA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct tcmsg))
644
Patrick McHardyac6d4392005-08-14 19:29:52 -0700645#ifndef __KERNEL__
646/* RTnetlink multicast groups - backwards compatibility for userspace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647#define RTMGRP_LINK 1
648#define RTMGRP_NOTIFY 2
649#define RTMGRP_NEIGH 4
650#define RTMGRP_TC 8
651
652#define RTMGRP_IPV4_IFADDR 0x10
653#define RTMGRP_IPV4_MROUTE 0x20
654#define RTMGRP_IPV4_ROUTE 0x40
Patrick McHardya5cdc032006-03-23 01:16:06 -0800655#define RTMGRP_IPV4_RULE 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657#define RTMGRP_IPV6_IFADDR 0x100
658#define RTMGRP_IPV6_MROUTE 0x200
659#define RTMGRP_IPV6_ROUTE 0x400
660#define RTMGRP_IPV6_IFINFO 0x800
661
662#define RTMGRP_DECnet_IFADDR 0x1000
663#define RTMGRP_DECnet_ROUTE 0x4000
664
665#define RTMGRP_IPV6_PREFIX 0x20000
Patrick McHardyac6d4392005-08-14 19:29:52 -0700666#endif
667
668/* RTnetlink multicast groups */
669enum rtnetlink_groups {
670 RTNLGRP_NONE,
671#define RTNLGRP_NONE RTNLGRP_NONE
672 RTNLGRP_LINK,
673#define RTNLGRP_LINK RTNLGRP_LINK
674 RTNLGRP_NOTIFY,
675#define RTNLGRP_NOTIFY RTNLGRP_NOTIFY
676 RTNLGRP_NEIGH,
677#define RTNLGRP_NEIGH RTNLGRP_NEIGH
678 RTNLGRP_TC,
679#define RTNLGRP_TC RTNLGRP_TC
680 RTNLGRP_IPV4_IFADDR,
681#define RTNLGRP_IPV4_IFADDR RTNLGRP_IPV4_IFADDR
682 RTNLGRP_IPV4_MROUTE,
683#define RTNLGRP_IPV4_MROUTE RTNLGRP_IPV4_MROUTE
684 RTNLGRP_IPV4_ROUTE,
685#define RTNLGRP_IPV4_ROUTE RTNLGRP_IPV4_ROUTE
Patrick McHardya5cdc032006-03-23 01:16:06 -0800686 RTNLGRP_IPV4_RULE,
687#define RTNLGRP_IPV4_RULE RTNLGRP_IPV4_RULE
Patrick McHardyac6d4392005-08-14 19:29:52 -0700688 RTNLGRP_IPV6_IFADDR,
689#define RTNLGRP_IPV6_IFADDR RTNLGRP_IPV6_IFADDR
690 RTNLGRP_IPV6_MROUTE,
691#define RTNLGRP_IPV6_MROUTE RTNLGRP_IPV6_MROUTE
692 RTNLGRP_IPV6_ROUTE,
693#define RTNLGRP_IPV6_ROUTE RTNLGRP_IPV6_ROUTE
694 RTNLGRP_IPV6_IFINFO,
695#define RTNLGRP_IPV6_IFINFO RTNLGRP_IPV6_IFINFO
696 RTNLGRP_DECnet_IFADDR,
697#define RTNLGRP_DECnet_IFADDR RTNLGRP_DECnet_IFADDR
Kristian Slavov6b80ebe2005-12-19 13:54:44 -0800698 RTNLGRP_NOP2,
Patrick McHardyac6d4392005-08-14 19:29:52 -0700699 RTNLGRP_DECnet_ROUTE,
700#define RTNLGRP_DECnet_ROUTE RTNLGRP_DECnet_ROUTE
Kristian Slavov6b80ebe2005-12-19 13:54:44 -0800701 RTNLGRP_NOP3,
702 RTNLGRP_NOP4,
Patrick McHardyac6d4392005-08-14 19:29:52 -0700703 RTNLGRP_IPV6_PREFIX,
704#define RTNLGRP_IPV6_PREFIX RTNLGRP_IPV6_PREFIX
Thomas Graf101367c2006-08-04 03:39:02 -0700705 RTNLGRP_IPV6_RULE,
706#define RTNLGRP_IPV6_RULE RTNLGRP_IPV6_RULE
Patrick McHardyac6d4392005-08-14 19:29:52 -0700707 __RTNLGRP_MAX
708};
709#define RTNLGRP_MAX (__RTNLGRP_MAX - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711/* TC action piece */
712struct tcamsg
713{
714 unsigned char tca_family;
715 unsigned char tca__pad1;
716 unsigned short tca__pad2;
717};
718#define TA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcamsg))))
719#define TA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct tcamsg))
720#define TCA_ACT_TAB 1 /* attr type must be >=1 */
721#define TCAA_MAX 1
722
723/* End of information exported to user level */
724
725#ifdef __KERNEL__
726
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800727#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729extern size_t rtattr_strlcpy(char *dest, const struct rtattr *rta, size_t size);
730static __inline__ int rtattr_strcmp(const struct rtattr *rta, const char *str)
731{
732 int len = strlen(str) + 1;
733 return len > rta->rta_len || memcmp(RTA_DATA(rta), str, len);
734}
735
736extern int rtattr_parse(struct rtattr *tb[], int maxattr, struct rtattr *rta, int len);
737
738#define rtattr_parse_nested(tb, max, rta) \
739 rtattr_parse((tb), (max), RTA_DATA((rta)), RTA_PAYLOAD((rta)))
740
741extern struct sock *rtnl;
742
743struct rtnetlink_link
744{
745 int (*doit)(struct sk_buff *, struct nlmsghdr*, void *attr);
746 int (*dumpit)(struct sk_buff *, struct netlink_callback *cb);
747};
748
749extern struct rtnetlink_link * rtnetlink_links[NPROTO];
750extern int rtnetlink_send(struct sk_buff *skb, u32 pid, u32 group, int echo);
751extern int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics);
752
753extern void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data);
754
755#define RTA_PUT(skb, attrtype, attrlen, data) \
756({ if (unlikely(skb_tailroom(skb) < (int)RTA_SPACE(attrlen))) \
757 goto rtattr_failure; \
758 __rta_fill(skb, attrtype, attrlen, data); })
759
Thomas Grafd675c982005-06-23 21:00:58 -0700760#define RTA_APPEND(skb, attrlen, data) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761({ if (unlikely(skb_tailroom(skb) < (int)(attrlen))) \
762 goto rtattr_failure; \
Thomas Grafd675c982005-06-23 21:00:58 -0700763 memcpy(skb_put(skb, attrlen), data, attrlen); })
764
765#define RTA_PUT_NOHDR(skb, attrlen, data) \
Patrick McHardyb3563c42005-06-28 12:54:43 -0700766({ RTA_APPEND(skb, RTA_ALIGN(attrlen), data); \
767 memset(skb->tail - (RTA_ALIGN(attrlen) - attrlen), 0, \
768 RTA_ALIGN(attrlen) - attrlen); })
Thomas Graf00768242005-06-18 22:50:38 -0700769
Thomas Graf8f48bcd2005-06-18 22:52:36 -0700770#define RTA_PUT_U8(skb, attrtype, value) \
771({ u8 _tmp = (value); \
772 RTA_PUT(skb, attrtype, sizeof(u8), &_tmp); })
773
774#define RTA_PUT_U16(skb, attrtype, value) \
775({ u16 _tmp = (value); \
776 RTA_PUT(skb, attrtype, sizeof(u16), &_tmp); })
777
Thomas Graf00768242005-06-18 22:50:38 -0700778#define RTA_PUT_U32(skb, attrtype, value) \
779({ u32 _tmp = (value); \
780 RTA_PUT(skb, attrtype, sizeof(u32), &_tmp); })
781
782#define RTA_PUT_U64(skb, attrtype, value) \
783({ u64 _tmp = (value); \
784 RTA_PUT(skb, attrtype, sizeof(u64), &_tmp); })
785
786#define RTA_PUT_SECS(skb, attrtype, value) \
787 RTA_PUT_U64(skb, attrtype, (value) / HZ)
788
789#define RTA_PUT_MSECS(skb, attrtype, value) \
790 RTA_PUT_U64(skb, attrtype, jiffies_to_msecs(value))
791
792#define RTA_PUT_STRING(skb, attrtype, value) \
793 RTA_PUT(skb, attrtype, strlen(value) + 1, value)
794
Thomas Graf8f48bcd2005-06-18 22:52:36 -0700795#define RTA_PUT_FLAG(skb, attrtype) \
796 RTA_PUT(skb, attrtype, 0, NULL);
797
Thomas Graf00768242005-06-18 22:50:38 -0700798#define RTA_NEST(skb, type) \
799({ struct rtattr *__start = (struct rtattr *) (skb)->tail; \
800 RTA_PUT(skb, type, 0, NULL); \
801 __start; })
802
803#define RTA_NEST_END(skb, start) \
804({ (start)->rta_len = ((skb)->tail - (unsigned char *) (start)); \
805 (skb)->len; })
806
807#define RTA_NEST_CANCEL(skb, start) \
Thomas Grafc52a3f82005-06-18 22:51:26 -0700808({ if (start) \
809 skb_trim(skb, (unsigned char *) (start) - (skb)->data); \
Thomas Graf00768242005-06-18 22:50:38 -0700810 -1; })
811
Thomas Graf8f48bcd2005-06-18 22:52:36 -0700812#define RTA_GET_U8(rta) \
813({ if (!rta || RTA_PAYLOAD(rta) < sizeof(u8)) \
814 goto rtattr_failure; \
815 *(u8 *) RTA_DATA(rta); })
816
817#define RTA_GET_U16(rta) \
818({ if (!rta || RTA_PAYLOAD(rta) < sizeof(u16)) \
819 goto rtattr_failure; \
820 *(u16 *) RTA_DATA(rta); })
821
Thomas Graf00768242005-06-18 22:50:38 -0700822#define RTA_GET_U32(rta) \
823({ if (!rta || RTA_PAYLOAD(rta) < sizeof(u32)) \
824 goto rtattr_failure; \
825 *(u32 *) RTA_DATA(rta); })
826
827#define RTA_GET_U64(rta) \
828({ u64 _tmp; \
829 if (!rta || RTA_PAYLOAD(rta) < sizeof(u64)) \
830 goto rtattr_failure; \
831 memcpy(&_tmp, RTA_DATA(rta), sizeof(_tmp)); \
832 _tmp; })
833
Thomas Graf8f48bcd2005-06-18 22:52:36 -0700834#define RTA_GET_FLAG(rta) (!!(rta))
835
Thomas Graf00768242005-06-18 22:50:38 -0700836#define RTA_GET_SECS(rta) ((unsigned long) RTA_GET_U64(rta) * HZ)
837#define RTA_GET_MSECS(rta) (msecs_to_jiffies((unsigned long) RTA_GET_U64(rta)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839static inline struct rtattr *
840__rta_reserve(struct sk_buff *skb, int attrtype, int attrlen)
841{
842 struct rtattr *rta;
843 int size = RTA_LENGTH(attrlen);
844
845 rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size));
846 rta->rta_type = attrtype;
847 rta->rta_len = size;
Patrick McHardyb3563c42005-06-28 12:54:43 -0700848 memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return rta;
850}
851
852#define __RTA_PUT(skb, attrtype, attrlen) \
853({ if (unlikely(skb_tailroom(skb) < (int)RTA_SPACE(attrlen))) \
854 goto rtattr_failure; \
855 __rta_reserve(skb, attrtype, attrlen); })
856
857extern void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change);
858
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800859/* RTNL is used as a global lock for all changes to network configuration */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860extern void rtnl_lock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861extern void rtnl_unlock(void);
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800862extern int rtnl_trylock(void);
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864extern void rtnetlink_init(void);
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800865extern void __rtnl_unlock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867#define ASSERT_RTNL() do { \
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800868 if (unlikely(rtnl_trylock())) { \
869 rtnl_unlock(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 printk(KERN_ERR "RTNL: assertion failed at %s (%d)\n", \
871 __FILE__, __LINE__); \
872 dump_stack(); \
873 } \
874} while(0)
875
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 } \
881} while(0)
882
883#endif /* __KERNEL__ */
884
885
886#endif /* __LINUX_RTNETLINK_H */