system.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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 xfrm_data {
  60. XFRM_DATA_IF_ID,
  61. __XFRM_DATA_ATTR_MAX
  62. };
  63. enum sixrd_data {
  64. SIXRD_DATA_PREFIX,
  65. SIXRD_DATA_RELAY_PREFIX,
  66. __SIXRD_DATA_ATTR_MAX
  67. };
  68. enum ipip6_data {
  69. IPIP6_DATA_ENCAPLIMIT,
  70. IPIP6_DATA_FMRS,
  71. __IPIP6_DATA_ATTR_MAX
  72. };
  73. enum fmr_data {
  74. FMR_DATA_PREFIX6,
  75. FMR_DATA_PREFIX4,
  76. FMR_DATA_EALEN,
  77. FMR_DATA_OFFSET,
  78. __FMR_DATA_ATTR_MAX
  79. };
  80. extern const struct uci_blob_param_list vxlan_data_attr_list;
  81. extern const struct uci_blob_param_list gre_data_attr_list;
  82. extern const struct uci_blob_param_list vti_data_attr_list;
  83. extern const struct uci_blob_param_list xfrm_data_attr_list;
  84. extern const struct uci_blob_param_list sixrd_data_attr_list;
  85. extern const struct uci_blob_param_list ipip6_data_attr_list;
  86. extern const struct uci_blob_param_list fmr_data_attr_list;
  87. enum bridge_opt {
  88. /* stp and forward delay always set */
  89. BRIDGE_OPT_AGEING_TIME = (1 << 0),
  90. BRIDGE_OPT_HELLO_TIME = (1 << 1),
  91. BRIDGE_OPT_MAX_AGE = (1 << 2),
  92. BRIDGE_OPT_ROBUSTNESS = (1 << 3),
  93. BRIDGE_OPT_QUERY_INTERVAL = (1 << 4),
  94. BRIDGE_OPT_QUERY_RESPONSE_INTERVAL = (1 << 5),
  95. BRIDGE_OPT_LAST_MEMBER_INTERVAL = (1 << 6),
  96. };
  97. struct bridge_config {
  98. enum bridge_opt flags;
  99. bool stp;
  100. bool igmp_snoop;
  101. bool multicast_querier;
  102. int robustness;
  103. int query_interval;
  104. int query_response_interval;
  105. int last_member_interval;
  106. unsigned short priority;
  107. int forward_delay;
  108. bool bridge_empty;
  109. int ageing_time;
  110. int hello_time;
  111. int max_age;
  112. int hash_max;
  113. };
  114. enum macvlan_opt {
  115. MACVLAN_OPT_MACADDR = (1 << 0),
  116. };
  117. struct macvlan_config {
  118. const char *mode;
  119. enum macvlan_opt flags;
  120. unsigned char macaddr[6];
  121. };
  122. enum veth_opt {
  123. VETH_OPT_MACADDR = (1 << 0),
  124. VETH_OPT_PEER_NAME = (1 << 1),
  125. VETH_OPT_PEER_MACADDR = (1 << 2),
  126. };
  127. struct veth_config {
  128. enum veth_opt flags;
  129. unsigned char macaddr[6];
  130. char peer_name[IFNAMSIZ];
  131. unsigned char peer_macaddr[6];
  132. };
  133. enum vlan_proto {
  134. VLAN_PROTO_8021Q = 0x8100,
  135. VLAN_PROTO_8021AD = 0x88A8
  136. };
  137. struct vlandev_config {
  138. enum vlan_proto proto;
  139. uint16_t vid;
  140. };
  141. static inline int system_get_addr_family(unsigned int flags)
  142. {
  143. if ((flags & DEVADDR_FAMILY) == DEVADDR_INET6)
  144. return AF_INET6;
  145. else
  146. return AF_INET;
  147. }
  148. static inline int system_get_addr_len(unsigned int flags)
  149. {
  150. if ((flags & DEVADDR_FAMILY) != DEVADDR_INET6)
  151. return sizeof(struct in_addr);
  152. else
  153. return sizeof(struct in6_addr);
  154. }
  155. int system_init(void);
  156. int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg);
  157. int system_bridge_delbr(struct device *bridge);
  158. int system_bridge_addif(struct device *bridge, struct device *dev);
  159. int system_bridge_delif(struct device *bridge, struct device *dev);
  160. int system_macvlan_add(struct device *macvlan, struct device *dev, struct macvlan_config *cfg);
  161. int system_macvlan_del(struct device *macvlan);
  162. int system_veth_add(struct device *veth, struct veth_config *cfg);
  163. int system_veth_del(struct device *veth);
  164. int system_vlan_add(struct device *dev, int id);
  165. int system_vlan_del(struct device *dev);
  166. int system_vlandev_add(struct device *vlandev, struct device *dev, struct vlandev_config *cfg);
  167. int system_vlandev_del(struct device *vlandev);
  168. void system_if_get_settings(struct device *dev, struct device_settings *s);
  169. void system_if_clear_state(struct device *dev);
  170. int system_if_up(struct device *dev);
  171. int system_if_down(struct device *dev);
  172. int system_if_check(struct device *dev);
  173. int system_if_resolve(struct device *dev);
  174. int system_if_dump_info(struct device *dev, struct blob_buf *b);
  175. int system_if_dump_stats(struct device *dev, struct blob_buf *b);
  176. struct device *system_if_get_parent(struct device *dev);
  177. bool system_if_force_external(const char *ifname);
  178. void system_if_apply_settings(struct device *dev, struct device_settings *s,
  179. unsigned int apply_mask);
  180. int system_add_address(struct device *dev, struct device_addr *addr);
  181. int system_del_address(struct device *dev, struct device_addr *addr);
  182. int system_add_route(struct device *dev, struct device_route *route);
  183. int system_del_route(struct device *dev, struct device_route *route);
  184. int system_flush_routes(void);
  185. int system_add_neighbor(struct device *dev, struct device_neighbor * neighbor);
  186. int system_del_neighbor(struct device *dev, struct device_neighbor * neighbor);
  187. bool system_resolve_rt_type(const char *type, unsigned int *id);
  188. bool system_resolve_rt_proto(const char *type, unsigned int *id);
  189. bool system_resolve_rt_table(const char *name, unsigned int *id);
  190. bool system_is_default_rt_table(unsigned int id);
  191. bool system_resolve_rpfilter(const char *filter, unsigned int *id);
  192. int system_del_ip_tunnel(const char *name, struct blob_attr *attr);
  193. int system_add_ip_tunnel(const char *name, struct blob_attr *attr);
  194. int system_add_iprule(struct iprule *rule);
  195. int system_del_iprule(struct iprule *rule);
  196. int system_flush_iprules(void);
  197. bool system_resolve_iprule_action(const char *action, unsigned int *id);
  198. time_t system_get_rtime(void);
  199. void system_fd_set_cloexec(int fd);
  200. int system_update_ipv6_mtu(struct device *dev, int mtu);
  201. int system_link_netns_move(const char *ifname, const pid_t target_ns);
  202. int system_netns_open(const pid_t target_ns);
  203. int system_netns_set(int netns_fd);
  204. #endif