if_addr.h 1.8 KB

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