if_addr.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #ifndef __LINUX_IF_ADDR_H
  2. #define __LINUX_IF_ADDR_H
  3. #include <linux/types.h>
  4. #include <linux/netlink.h>
  5. struct ifaddrmsg {
  6. __u8 ifa_family;
  7. __u8 ifa_prefixlen; /* The prefix length */
  8. __u8 ifa_flags; /* Flags */
  9. __u8 ifa_scope; /* Address scope */
  10. __u32 ifa_index; /* Link index */
  11. };
  12. /*
  13. * Important comment:
  14. * IFA_ADDRESS is prefix address, rather than local interface address.
  15. * It makes no difference for normally configured broadcast interfaces,
  16. * but for point-to-point IFA_ADDRESS is DESTINATION address,
  17. * local address is supplied in IFA_LOCAL attribute.
  18. *
  19. * IFA_FLAGS is a u32 attribute that extends the u8 field ifa_flags.
  20. * If present, the value from struct ifaddrmsg will be ignored.
  21. */
  22. enum {
  23. IFA_UNSPEC,
  24. IFA_ADDRESS,
  25. IFA_LOCAL,
  26. IFA_LABEL,
  27. IFA_BROADCAST,
  28. IFA_ANYCAST,
  29. IFA_CACHEINFO,
  30. IFA_MULTICAST,
  31. IFA_FLAGS,
  32. __IFA_MAX,
  33. };
  34. #define IFA_MAX (__IFA_MAX - 1)
  35. /* ifa_flags */
  36. #define IFA_F_SECONDARY 0x01
  37. #define IFA_F_TEMPORARY IFA_F_SECONDARY
  38. #define IFA_F_NODAD 0x02
  39. #define IFA_F_OPTIMISTIC 0x04
  40. #define IFA_F_DADFAILED 0x08
  41. #define IFA_F_HOMEADDRESS 0x10
  42. #define IFA_F_DEPRECATED 0x20
  43. #define IFA_F_TENTATIVE 0x40
  44. #define IFA_F_PERMANENT 0x80
  45. #define IFA_F_MANAGETEMPADDR 0x100
  46. #define IFA_F_NOPREFIXROUTE 0x200
  47. #define IFA_F_MCAUTOJOIN 0x400
  48. #define IFA_F_STABLE_PRIVACY 0x800
  49. struct ifa_cacheinfo {
  50. __u32 ifa_prefered;
  51. __u32 ifa_valid;
  52. __u32 cstamp; /* created timestamp, hundredths of seconds */
  53. __u32 tstamp; /* updated timestamp, hundredths of seconds */
  54. };
  55. /* backwards compatibility for userspace */
  56. #ifndef __KERNEL__
  57. #define IFA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
  58. #define IFA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifaddrmsg))
  59. #endif
  60. #endif