system.h 7.2 KB

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