Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 1 | #ifndef __LINUX_IF_ADDR_H |
| 2 | #define __LINUX_IF_ADDR_H |
| 3 | |
Jaswinder Singh Rajput | 680ee0b | 2009-01-30 21:21:01 +0530 | [diff] [blame] | 4 | #include <linux/types.h> |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 5 | #include <linux/netlink.h> |
| 6 | |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 7 | struct ifaddrmsg { |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 8 | __u8 ifa_family; |
| 9 | __u8 ifa_prefixlen; /* The prefix length */ |
| 10 | __u8 ifa_flags; /* Flags */ |
| 11 | __u8 ifa_scope; /* Address scope */ |
| 12 | __u32 ifa_index; /* Link index */ |
| 13 | }; |
| 14 | |
| 15 | /* |
| 16 | * Important comment: |
| 17 | * IFA_ADDRESS is prefix address, rather than local interface address. |
| 18 | * It makes no difference for normally configured broadcast interfaces, |
| 19 | * but for point-to-point IFA_ADDRESS is DESTINATION address, |
| 20 | * local address is supplied in IFA_LOCAL attribute. |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 21 | * |
| 22 | * IFA_FLAGS is a u32 attribute that extends the u8 field ifa_flags. |
| 23 | * If present, the value from struct ifaddrmsg will be ignored. |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 24 | */ |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 25 | enum { |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 26 | IFA_UNSPEC, |
| 27 | IFA_ADDRESS, |
| 28 | IFA_LOCAL, |
| 29 | IFA_LABEL, |
| 30 | IFA_BROADCAST, |
| 31 | IFA_ANYCAST, |
| 32 | IFA_CACHEINFO, |
| 33 | IFA_MULTICAST, |
Jiri Pirko | 479840f | 2013-12-06 09:45:21 +0100 | [diff] [blame] | 34 | IFA_FLAGS, |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 35 | __IFA_MAX, |
| 36 | }; |
| 37 | |
| 38 | #define IFA_MAX (__IFA_MAX - 1) |
| 39 | |
| 40 | /* ifa_flags */ |
| 41 | #define IFA_F_SECONDARY 0x01 |
| 42 | #define IFA_F_TEMPORARY IFA_F_SECONDARY |
| 43 | |
Noriaki TAKAMIYA | 55ebaef | 2006-09-22 14:45:27 -0700 | [diff] [blame] | 44 | #define IFA_F_NODAD 0x02 |
Neil Horman | 95c385b | 2007-04-25 17:08:10 -0700 | [diff] [blame] | 45 | #define IFA_F_OPTIMISTIC 0x04 |
Brian Haley | cc411d0 | 2009-09-09 14:41:32 +0000 | [diff] [blame] | 46 | #define IFA_F_DADFAILED 0x08 |
Noriaki TAKAMIYA | 3b9f9a1 | 2006-09-22 14:45:56 -0700 | [diff] [blame] | 47 | #define IFA_F_HOMEADDRESS 0x10 |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 48 | #define IFA_F_DEPRECATED 0x20 |
| 49 | #define IFA_F_TENTATIVE 0x40 |
| 50 | #define IFA_F_PERMANENT 0x80 |
Jiri Pirko | 53bd674 | 2013-12-06 09:45:22 +0100 | [diff] [blame] | 51 | #define IFA_F_MANAGETEMPADDR 0x100 |
Thomas Haller | 761aac7 | 2014-01-15 15:36:58 +0100 | [diff] [blame] | 52 | #define IFA_F_NOPREFIXROUTE 0x200 |
Madhu Challa | 93a714d | 2015-02-25 09:58:35 -0800 | [diff] [blame] | 53 | #define IFA_F_MCAUTOJOIN 0x400 |
Hannes Frederic Sowa | 64236f3 | 2015-03-23 23:36:02 +0100 | [diff] [blame] | 54 | #define IFA_F_STABLE_PRIVACY 0x800 |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 55 | |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 56 | struct ifa_cacheinfo { |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 57 | __u32 ifa_prefered; |
| 58 | __u32 ifa_valid; |
| 59 | __u32 cstamp; /* created timestamp, hundredths of seconds */ |
| 60 | __u32 tstamp; /* updated timestamp, hundredths of seconds */ |
| 61 | }; |
| 62 | |
David S. Miller | d3dcc07 | 2006-12-08 17:05:13 -0800 | [diff] [blame] | 63 | /* backwards compatibility for userspace */ |
| 64 | #ifndef __KERNEL__ |
| 65 | #define IFA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg)))) |
| 66 | #define IFA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifaddrmsg)) |
| 67 | #endif |
| 68 | |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 69 | #endif |