system.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  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, forward delay, max age and hello time are always set */
  100. BRIDGE_OPT_AGEING_TIME = (1 << 0),
  101. BRIDGE_OPT_ROBUSTNESS = (1 << 1),
  102. BRIDGE_OPT_QUERY_INTERVAL = (1 << 2),
  103. BRIDGE_OPT_QUERY_RESPONSE_INTERVAL = (1 << 3),
  104. BRIDGE_OPT_LAST_MEMBER_INTERVAL = (1 << 4),
  105. };
  106. struct bridge_config {
  107. enum bridge_opt flags;
  108. bool stp;
  109. bool stp_kernel;
  110. const char *stp_proto;
  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. enum bonding_mode {
  161. BONDING_MODE_BALANCE_RR,
  162. BONDING_MODE_ACTIVE_BACKUP,
  163. BONDING_MODE_BALANCE_XOR,
  164. BONDING_MODE_BROADCAST,
  165. BONDING_MODE_8023AD,
  166. BONDING_MODE_BALANCE_TLB,
  167. BONDING_MODE_BALANCE_ALB,
  168. __BONDING_MODE_MAX,
  169. };
  170. struct bonding_config {
  171. enum bonding_mode policy;
  172. const char *xmit_hash_policy;
  173. bool all_ports_active;
  174. int min_links;
  175. const char *ad_actor_system;
  176. int ad_actor_sys_prio;
  177. const char *ad_select;
  178. const char *lacp_rate;
  179. int packets_per_port;
  180. int lp_interval;
  181. bool dynamic_lb;
  182. int resend_igmp;
  183. int num_peer_notif;
  184. const char *primary;
  185. const char *primary_reselect;
  186. const char *failover_mac;
  187. bool monitor_arp;
  188. int monitor_interval;
  189. struct blob_attr *arp_target;
  190. bool arp_all_targets;
  191. const char *arp_validate;
  192. bool use_carrier;
  193. int updelay;
  194. int downdelay;
  195. };
  196. static inline int system_get_addr_family(unsigned int flags)
  197. {
  198. if ((flags & DEVADDR_FAMILY) == DEVADDR_INET6)
  199. return AF_INET6;
  200. else
  201. return AF_INET;
  202. }
  203. static inline int system_get_addr_len(unsigned int flags)
  204. {
  205. if ((flags & DEVADDR_FAMILY) != DEVADDR_INET6)
  206. return sizeof(struct in_addr);
  207. else
  208. return sizeof(struct in6_addr);
  209. }
  210. extern const char * const bonding_policy_str[__BONDING_MODE_MAX];
  211. int system_init(void);
  212. int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg);
  213. int system_bridge_delbr(struct device *bridge);
  214. int system_bridge_addif(struct device *bridge, struct device *dev);
  215. int system_bridge_delif(struct device *bridge, struct device *dev);
  216. int system_bridge_vlan(const char *iface, uint16_t vid, int16_t vid_end, bool add, unsigned int vflags);
  217. int system_bridge_vlan_check(struct device *dev, char *ifname);
  218. void system_bridge_set_stp_state(struct device *dev, bool val);
  219. int system_bonding_set_device(struct device *dev, struct bonding_config *cfg);
  220. int system_bonding_set_port(struct device *dev, struct device *port, bool add, bool primary);
  221. int system_macvlan_add(struct device *macvlan, struct device *dev, struct macvlan_config *cfg);
  222. int system_macvlan_del(struct device *macvlan);
  223. int system_veth_add(struct device *veth, struct veth_config *cfg);
  224. int system_veth_del(struct device *veth);
  225. int system_vlan_add(struct device *dev, int id);
  226. int system_vlan_del(struct device *dev);
  227. int system_vlandev_add(struct device *vlandev, struct device *dev, struct vlandev_config *cfg);
  228. int system_vlandev_del(struct device *vlandev);
  229. void system_if_get_settings(struct device *dev, struct device_settings *s);
  230. void system_if_clear_state(struct device *dev);
  231. int system_if_up(struct device *dev);
  232. int system_if_down(struct device *dev);
  233. int system_if_check(struct device *dev);
  234. int system_if_resolve(struct device *dev);
  235. int system_if_dump_info(struct device *dev, struct blob_buf *b);
  236. int system_if_dump_stats(struct device *dev, struct blob_buf *b);
  237. struct device *system_if_get_parent(struct device *dev);
  238. bool system_if_force_external(const char *ifname);
  239. void system_if_apply_settings(struct device *dev, struct device_settings *s,
  240. uint64_t apply_mask);
  241. void system_if_apply_settings_after_up(struct device *dev, struct device_settings *s);
  242. int system_add_address(struct device *dev, struct device_addr *addr);
  243. int system_del_address(struct device *dev, struct device_addr *addr);
  244. int system_add_route(struct device *dev, struct device_route *route);
  245. int system_del_route(struct device *dev, struct device_route *route);
  246. int system_flush_routes(void);
  247. int system_add_neighbor(struct device *dev, struct device_neighbor * neighbor);
  248. int system_del_neighbor(struct device *dev, struct device_neighbor * neighbor);
  249. bool system_resolve_rt_type(const char *type, unsigned int *id);
  250. bool system_resolve_rt_proto(const char *type, unsigned int *id);
  251. bool system_resolve_rt_table(const char *name, unsigned int *id);
  252. bool system_is_default_rt_table(unsigned int id);
  253. bool system_resolve_rpfilter(const char *filter, unsigned int *id);
  254. int system_del_ip_tunnel(const struct device *dev);
  255. int system_add_ip_tunnel(const struct device *dev, struct blob_attr *attr);
  256. int system_add_iprule(struct iprule *rule);
  257. int system_del_iprule(struct iprule *rule);
  258. int system_flush_iprules(void);
  259. bool system_resolve_iprule_action(const char *action, unsigned int *id);
  260. time_t system_get_rtime(void);
  261. void system_fd_set_cloexec(int fd);
  262. int system_update_ipv6_mtu(struct device *dev, int mtu);
  263. int system_link_netns_move(struct device *dev, const pid_t target_ns, const char *target_ifname);
  264. int system_netns_open(const pid_t target_ns);
  265. int system_netns_set(int netns_fd);
  266. #endif