system.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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 <net/if.h>
  17. #include <sys/time.h>
  18. #include <sys/socket.h>
  19. #include <arpa/inet.h>
  20. #include "device.h"
  21. #include "interface-ip.h"
  22. #include "iprule.h"
  23. enum tunnel_param {
  24. TUNNEL_ATTR_TYPE,
  25. TUNNEL_ATTR_REMOTE,
  26. TUNNEL_ATTR_LOCAL,
  27. TUNNEL_ATTR_MTU,
  28. TUNNEL_ATTR_DF,
  29. TUNNEL_ATTR_TTL,
  30. TUNNEL_ATTR_TOS,
  31. TUNNEL_ATTR_LINK,
  32. TUNNEL_ATTR_DATA,
  33. __TUNNEL_ATTR_MAX
  34. };
  35. extern const struct uci_blob_param_list tunnel_attr_list;
  36. enum vxlan_data {
  37. VXLAN_DATA_ATTR_ID,
  38. VXLAN_DATA_ATTR_PORT,
  39. VXLAN_DATA_ATTR_MACADDR,
  40. VXLAN_DATA_ATTR_RXCSUM,
  41. VXLAN_DATA_ATTR_TXCSUM,
  42. __VXLAN_DATA_ATTR_MAX
  43. };
  44. enum gre_data {
  45. GRE_DATA_IKEY,
  46. GRE_DATA_OKEY,
  47. GRE_DATA_ICSUM,
  48. GRE_DATA_OCSUM,
  49. GRE_DATA_ISEQNO,
  50. GRE_DATA_OSEQNO,
  51. GRE_DATA_ENCAPLIMIT,
  52. __GRE_DATA_ATTR_MAX
  53. };
  54. enum vti_data {
  55. VTI_DATA_IKEY,
  56. VTI_DATA_OKEY,
  57. __VTI_DATA_ATTR_MAX
  58. };
  59. enum sixrd_data {
  60. SIXRD_DATA_PREFIX,
  61. SIXRD_DATA_RELAY_PREFIX,
  62. __SIXRD_DATA_ATTR_MAX
  63. };
  64. enum ipip6_data {
  65. IPIP6_DATA_ENCAPLIMIT,
  66. IPIP6_DATA_FMRS,
  67. __IPIP6_DATA_ATTR_MAX
  68. };
  69. enum fmr_data {
  70. FMR_DATA_PREFIX6,
  71. FMR_DATA_PREFIX4,
  72. FMR_DATA_EALEN,
  73. FMR_DATA_OFFSET,
  74. __FMR_DATA_ATTR_MAX
  75. };
  76. extern const struct uci_blob_param_list vxlan_data_attr_list;
  77. extern const struct uci_blob_param_list gre_data_attr_list;
  78. extern const struct uci_blob_param_list vti_data_attr_list;
  79. extern const struct uci_blob_param_list sixrd_data_attr_list;
  80. extern const struct uci_blob_param_list ipip6_data_attr_list;
  81. extern const struct uci_blob_param_list fmr_data_attr_list;
  82. enum bridge_opt {
  83. /* stp and forward delay always set */
  84. BRIDGE_OPT_AGEING_TIME = (1 << 0),
  85. BRIDGE_OPT_HELLO_TIME = (1 << 1),
  86. BRIDGE_OPT_MAX_AGE = (1 << 2),
  87. BRIDGE_OPT_ROBUSTNESS = (1 << 3),
  88. BRIDGE_OPT_QUERY_INTERVAL = (1 << 4),
  89. BRIDGE_OPT_QUERY_RESPONSE_INTERVAL = (1 << 5),
  90. BRIDGE_OPT_LAST_MEMBER_INTERVAL = (1 << 6),
  91. };
  92. struct bridge_config {
  93. enum bridge_opt flags;
  94. bool stp;
  95. bool igmp_snoop;
  96. bool multicast_querier;
  97. int robustness;
  98. int query_interval;
  99. int query_response_interval;
  100. int last_member_interval;
  101. unsigned short priority;
  102. int forward_delay;
  103. bool bridge_empty;
  104. int ageing_time;
  105. int hello_time;
  106. int max_age;
  107. int hash_max;
  108. };
  109. enum macvlan_opt {
  110. MACVLAN_OPT_MACADDR = (1 << 0),
  111. };
  112. struct macvlan_config {
  113. const char *mode;
  114. enum macvlan_opt flags;
  115. unsigned char macaddr[6];
  116. };
  117. enum veth_opt {
  118. VETH_OPT_MACADDR = (1 << 0),
  119. VETH_OPT_PEER_NAME = (1 << 1),
  120. VETH_OPT_PEER_MACADDR = (1 << 2),
  121. };
  122. struct veth_config {
  123. enum veth_opt flags;
  124. unsigned char macaddr[6];
  125. char peer_name[IFNAMSIZ];
  126. unsigned char peer_macaddr[6];
  127. };
  128. enum vlan_proto {
  129. VLAN_PROTO_8021Q = 0x8100,
  130. VLAN_PROTO_8021AD = 0x88A8
  131. };
  132. struct vlandev_config {
  133. enum vlan_proto proto;
  134. uint16_t vid;
  135. };
  136. static inline int system_get_addr_family(unsigned int flags)
  137. {
  138. if ((flags & DEVADDR_FAMILY) == DEVADDR_INET6)
  139. return AF_INET6;
  140. else
  141. return AF_INET;
  142. }
  143. static inline int system_get_addr_len(unsigned int flags)
  144. {
  145. if ((flags & DEVADDR_FAMILY) != DEVADDR_INET6)
  146. return sizeof(struct in_addr);
  147. else
  148. return sizeof(struct in6_addr);
  149. }
  150. int system_init(void);
  151. int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg);
  152. int system_bridge_delbr(struct device *bridge);
  153. int system_bridge_addif(struct device *bridge, struct device *dev);
  154. int system_bridge_delif(struct device *bridge, struct device *dev);
  155. int system_macvlan_add(struct device *macvlan, struct device *dev, struct macvlan_config *cfg);
  156. int system_macvlan_del(struct device *macvlan);
  157. int system_veth_add(struct device *veth, struct veth_config *cfg);
  158. int system_veth_del(struct device *veth);
  159. int system_vlan_add(struct device *dev, int id);
  160. int system_vlan_del(struct device *dev);
  161. int system_vlandev_add(struct device *vlandev, struct device *dev, struct vlandev_config *cfg);
  162. int system_vlandev_del(struct device *vlandev);
  163. void system_if_get_settings(struct device *dev, struct device_settings *s);
  164. void system_if_clear_state(struct device *dev);
  165. int system_if_up(struct device *dev);
  166. int system_if_down(struct device *dev);
  167. int system_if_check(struct device *dev);
  168. int system_if_resolve(struct device *dev);
  169. int system_if_dump_info(struct device *dev, struct blob_buf *b);
  170. int system_if_dump_stats(struct device *dev, struct blob_buf *b);
  171. struct device *system_if_get_parent(struct device *dev);
  172. bool system_if_force_external(const char *ifname);
  173. void system_if_apply_settings(struct device *dev, struct device_settings *s,
  174. unsigned int apply_mask);
  175. int system_add_address(struct device *dev, struct device_addr *addr);
  176. int system_del_address(struct device *dev, struct device_addr *addr);
  177. int system_add_route(struct device *dev, struct device_route *route);
  178. int system_del_route(struct device *dev, struct device_route *route);
  179. int system_flush_routes(void);
  180. bool system_resolve_rt_type(const char *type, unsigned int *id);
  181. bool system_resolve_rt_proto(const char *type, unsigned int *id);
  182. bool system_resolve_rt_table(const char *name, unsigned int *id);
  183. bool system_is_default_rt_table(unsigned int id);
  184. bool system_resolve_rpfilter(const char *filter, unsigned int *id);
  185. int system_del_ip_tunnel(const char *name, struct blob_attr *attr);
  186. int system_add_ip_tunnel(const char *name, struct blob_attr *attr);
  187. int system_add_iprule(struct iprule *rule);
  188. int system_del_iprule(struct iprule *rule);
  189. int system_flush_iprules(void);
  190. bool system_resolve_iprule_action(const char *action, unsigned int *id);
  191. time_t system_get_rtime(void);
  192. void system_fd_set_cloexec(int fd);
  193. int system_update_ipv6_mtu(struct device *dev, int mtu);
  194. #endif