system.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  2. * netifd - network interface daemon
  3. * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2
  7. * as published by the Free Software Foundation
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #ifndef __NETIFD_SYSTEM_H
  15. #define __NETIFD_SYSTEM_H
  16. #include <sys/time.h>
  17. #include <sys/socket.h>
  18. #include <arpa/inet.h>
  19. #include "device.h"
  20. #include "interface-ip.h"
  21. #include "iprule.h"
  22. enum tunnel_param {
  23. TUNNEL_ATTR_TYPE,
  24. TUNNEL_ATTR_REMOTE,
  25. TUNNEL_ATTR_LOCAL,
  26. TUNNEL_ATTR_MTU,
  27. TUNNEL_ATTR_DF,
  28. TUNNEL_ATTR_TTL,
  29. TUNNEL_ATTR_TOS,
  30. TUNNEL_ATTR_6RD_PREFIX,
  31. TUNNEL_ATTR_6RD_RELAY_PREFIX,
  32. TUNNEL_ATTR_LINK,
  33. TUNNEL_ATTR_FMRS,
  34. TUNNEL_ATTR_INFO,
  35. __TUNNEL_ATTR_MAX
  36. };
  37. const struct uci_blob_param_list tunnel_attr_list;
  38. enum bridge_opt {
  39. /* stp and forward delay always set */
  40. BRIDGE_OPT_AGEING_TIME = (1 << 0),
  41. BRIDGE_OPT_HELLO_TIME = (1 << 1),
  42. BRIDGE_OPT_MAX_AGE = (1 << 2),
  43. };
  44. struct bridge_config {
  45. enum bridge_opt flags;
  46. bool stp;
  47. bool igmp_snoop;
  48. unsigned short priority;
  49. int forward_delay;
  50. bool bridge_empty;
  51. int ageing_time;
  52. int hello_time;
  53. int max_age;
  54. };
  55. enum macvlan_opt {
  56. MACVLAN_OPT_MACADDR = (1 << 0),
  57. };
  58. struct macvlan_config {
  59. const char *mode;
  60. enum macvlan_opt flags;
  61. unsigned char macaddr[6];
  62. };
  63. enum vlan_proto {
  64. VLAN_PROTO_8021Q = 0x8100,
  65. VLAN_PROTO_8021AD = 0x88A8
  66. };
  67. struct vlandev_config {
  68. enum vlan_proto proto;
  69. uint16_t vid;
  70. };
  71. static inline int system_get_addr_family(unsigned int flags)
  72. {
  73. if ((flags & DEVADDR_FAMILY) == DEVADDR_INET6)
  74. return AF_INET6;
  75. else
  76. return AF_INET;
  77. }
  78. static inline int system_get_addr_len(unsigned int flags)
  79. {
  80. if ((flags & DEVADDR_FAMILY) == DEVADDR_INET6)
  81. return sizeof(struct in_addr);
  82. else
  83. return sizeof(struct in6_addr);
  84. }
  85. int system_init(void);
  86. int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg);
  87. int system_bridge_delbr(struct device *bridge);
  88. int system_bridge_addif(struct device *bridge, struct device *dev);
  89. int system_bridge_delif(struct device *bridge, struct device *dev);
  90. int system_macvlan_add(struct device *macvlan, struct device *dev, struct macvlan_config *cfg);
  91. int system_macvlan_del(struct device *macvlan);
  92. int system_vlan_add(struct device *dev, int id);
  93. int system_vlan_del(struct device *dev);
  94. int system_vlandev_add(struct device *vlandev, struct device *dev, struct vlandev_config *cfg);
  95. int system_vlandev_del(struct device *vlandev);
  96. void system_if_clear_state(struct device *dev);
  97. int system_if_up(struct device *dev);
  98. int system_if_down(struct device *dev);
  99. int system_if_check(struct device *dev);
  100. int system_if_dump_info(struct device *dev, struct blob_buf *b);
  101. int system_if_dump_stats(struct device *dev, struct blob_buf *b);
  102. struct device *system_if_get_parent(struct device *dev);
  103. bool system_if_force_external(const char *ifname);
  104. void system_if_apply_settings(struct device *dev, struct device_settings *s,
  105. unsigned int apply_mask);
  106. int system_add_address(struct device *dev, struct device_addr *addr);
  107. int system_del_address(struct device *dev, struct device_addr *addr);
  108. int system_add_route(struct device *dev, struct device_route *route);
  109. int system_del_route(struct device *dev, struct device_route *route);
  110. int system_flush_routes(void);
  111. bool system_resolve_rt_type(const char *type, unsigned int *id);
  112. bool system_resolve_rt_table(const char *name, unsigned int *id);
  113. bool system_is_default_rt_table(unsigned int id);
  114. int system_del_ip_tunnel(const char *name, struct blob_attr *attr);
  115. int system_add_ip_tunnel(const char *name, struct blob_attr *attr);
  116. int system_add_iprule(struct iprule *rule);
  117. int system_del_iprule(struct iprule *rule);
  118. int system_flush_iprules(void);
  119. bool system_resolve_iprule_action(const char *action, unsigned int *id);
  120. time_t system_get_rtime(void);
  121. void system_fd_set_cloexec(int fd);
  122. int system_update_ipv6_mtu(struct device *device, int mtu);
  123. #endif