device.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  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_DEVICE_H
  15. #define __NETIFD_DEVICE_H
  16. #include <libubox/avl.h>
  17. #include <libubox/safe_list.h>
  18. #include <libubox/kvlist.h>
  19. #include <netinet/in.h>
  20. struct device;
  21. struct device_type;
  22. struct device_user;
  23. struct device_hotplug_ops;
  24. struct bridge_vlan;
  25. struct interface;
  26. typedef int (*device_state_cb)(struct device *, bool up);
  27. enum {
  28. DEV_ATTR_TYPE,
  29. DEV_ATTR_MTU,
  30. DEV_ATTR_MTU6,
  31. DEV_ATTR_MACADDR,
  32. DEV_ATTR_TXQUEUELEN,
  33. DEV_ATTR_ENABLED,
  34. DEV_ATTR_IPV6,
  35. DEV_ATTR_PROMISC,
  36. DEV_ATTR_RPFILTER,
  37. DEV_ATTR_ACCEPTLOCAL,
  38. DEV_ATTR_IGMPVERSION,
  39. DEV_ATTR_MLDVERSION,
  40. DEV_ATTR_NEIGHREACHABLETIME,
  41. DEV_ATTR_DADTRANSMITS,
  42. DEV_ATTR_MULTICAST_TO_UNICAST,
  43. DEV_ATTR_MULTICAST_ROUTER,
  44. DEV_ATTR_MULTICAST_FAST_LEAVE,
  45. DEV_ATTR_MULTICAST,
  46. DEV_ATTR_LEARNING,
  47. DEV_ATTR_UNICAST_FLOOD,
  48. DEV_ATTR_NEIGHGCSTALETIME,
  49. DEV_ATTR_SENDREDIRECTS,
  50. DEV_ATTR_NEIGHLOCKTIME,
  51. DEV_ATTR_ISOLATE,
  52. DEV_ATTR_IP6SEGMENTROUTING,
  53. DEV_ATTR_DROP_V4_UNICAST_IN_L2_MULTICAST,
  54. DEV_ATTR_DROP_V6_UNICAST_IN_L2_MULTICAST,
  55. DEV_ATTR_DROP_GRATUITOUS_ARP,
  56. DEV_ATTR_DROP_UNSOLICITED_NA,
  57. DEV_ATTR_ARP_ACCEPT,
  58. DEV_ATTR_AUTH,
  59. DEV_ATTR_AUTH_VLAN,
  60. DEV_ATTR_SPEED,
  61. DEV_ATTR_DUPLEX,
  62. DEV_ATTR_VLAN,
  63. DEV_ATTR_PAUSE,
  64. DEV_ATTR_ASYM_PAUSE,
  65. DEV_ATTR_RXPAUSE,
  66. DEV_ATTR_TXPAUSE,
  67. DEV_ATTR_AUTONEG,
  68. DEV_ATTR_GRO,
  69. DEV_ATTR_MASTER,
  70. __DEV_ATTR_MAX,
  71. };
  72. enum dev_change_type {
  73. DEV_CONFIG_NO_CHANGE,
  74. DEV_CONFIG_APPLIED,
  75. DEV_CONFIG_RESTART,
  76. DEV_CONFIG_RECREATE,
  77. };
  78. struct device_type {
  79. struct list_head list;
  80. const char *name;
  81. bool bridge_capability;
  82. const char *name_prefix;
  83. const struct uci_blob_param_list *config_params;
  84. struct device *(*create)(const char *name, struct device_type *devtype,
  85. struct blob_attr *attr);
  86. void (*config_init)(struct device *);
  87. enum dev_change_type (*reload)(struct device *, struct blob_attr *);
  88. void (*vlan_update)(struct device *);
  89. void (*dump_info)(struct device *, struct blob_buf *buf);
  90. void (*dump_stats)(struct device *, struct blob_buf *buf);
  91. int (*check_state)(struct device *);
  92. void (*stp_init)(struct device *);
  93. void (*free)(struct device *);
  94. };
  95. enum {
  96. DEV_OPT_MTU = (1ULL << 0),
  97. DEV_OPT_MACADDR = (1ULL << 1),
  98. DEV_OPT_TXQUEUELEN = (1ULL << 2),
  99. DEV_OPT_IPV6 = (1ULL << 3),
  100. DEV_OPT_PROMISC = (1ULL << 4),
  101. DEV_OPT_RPFILTER = (1ULL << 5),
  102. DEV_OPT_ACCEPTLOCAL = (1ULL << 6),
  103. DEV_OPT_IGMPVERSION = (1ULL << 7),
  104. DEV_OPT_MLDVERSION = (1ULL << 8),
  105. DEV_OPT_NEIGHREACHABLETIME = (1ULL << 9),
  106. DEV_OPT_DEFAULT_MACADDR = (1ULL << 10),
  107. DEV_OPT_AUTH = (1ULL << 11),
  108. DEV_OPT_MTU6 = (1ULL << 12),
  109. DEV_OPT_DADTRANSMITS = (1ULL << 13),
  110. DEV_OPT_MULTICAST_TO_UNICAST = (1ULL << 14),
  111. DEV_OPT_MULTICAST_ROUTER = (1ULL << 15),
  112. DEV_OPT_MULTICAST = (1ULL << 16),
  113. DEV_OPT_LEARNING = (1ULL << 17),
  114. DEV_OPT_UNICAST_FLOOD = (1ULL << 18),
  115. DEV_OPT_NEIGHGCSTALETIME = (1ULL << 19),
  116. DEV_OPT_MULTICAST_FAST_LEAVE = (1ULL << 20),
  117. DEV_OPT_SENDREDIRECTS = (1ULL << 21),
  118. DEV_OPT_NEIGHLOCKTIME = (1ULL << 22),
  119. DEV_OPT_ISOLATE = (1ULL << 23),
  120. DEV_OPT_IP6SEGMENTROUTING = (1ULL << 24),
  121. DEV_OPT_DROP_V4_UNICAST_IN_L2_MULTICAST = (1ULL << 25),
  122. DEV_OPT_DROP_V6_UNICAST_IN_L2_MULTICAST = (1ULL << 26),
  123. DEV_OPT_DROP_GRATUITOUS_ARP = (1ULL << 27),
  124. DEV_OPT_DROP_UNSOLICITED_NA = (1ULL << 28),
  125. DEV_OPT_ARP_ACCEPT = (1ULL << 29),
  126. DEV_OPT_SPEED = (1ULL << 30),
  127. DEV_OPT_DUPLEX = (1ULL << 31),
  128. DEV_OPT_PAUSE = (1ULL << 32),
  129. DEV_OPT_ASYM_PAUSE = (1ULL << 33),
  130. DEV_OPT_RXPAUSE = (1ULL << 34),
  131. DEV_OPT_TXPAUSE = (1ULL << 35),
  132. DEV_OPT_AUTONEG = (1ULL << 36),
  133. DEV_OPT_GRO = (1ULL << 37),
  134. DEV_OPT_MASTER = (1ULL << 38),
  135. };
  136. /* events broadcasted to all users of a device */
  137. enum device_event {
  138. DEV_EVENT_ADD,
  139. DEV_EVENT_REMOVE,
  140. DEV_EVENT_UPDATE_IFNAME,
  141. DEV_EVENT_UPDATE_IFINDEX,
  142. DEV_EVENT_SETUP,
  143. DEV_EVENT_TEARDOWN,
  144. DEV_EVENT_UP,
  145. DEV_EVENT_DOWN,
  146. DEV_EVENT_AUTH_UP,
  147. DEV_EVENT_LINK_UP,
  148. DEV_EVENT_LINK_DOWN,
  149. /* Topology changed (i.e. bridge member added) */
  150. DEV_EVENT_TOPO_CHANGE,
  151. __DEV_EVENT_MAX
  152. };
  153. /*
  154. * device dependency with callbacks
  155. */
  156. struct device_user {
  157. struct safe_list list;
  158. bool claimed;
  159. bool hotplug;
  160. bool alias;
  161. uint8_t ev_idx[__DEV_EVENT_MAX];
  162. struct device *dev;
  163. void (*cb)(struct device_user *, enum device_event);
  164. };
  165. struct device_settings {
  166. uint64_t flags;
  167. uint64_t valid_flags;
  168. unsigned int mtu;
  169. unsigned int mtu6;
  170. unsigned int txqueuelen;
  171. uint8_t macaddr[6];
  172. bool ipv6;
  173. bool promisc;
  174. unsigned int rpfilter;
  175. bool acceptlocal;
  176. unsigned int igmpversion;
  177. unsigned int mldversion;
  178. unsigned int neigh4reachabletime;
  179. unsigned int neigh6reachabletime;
  180. unsigned int neigh4gcstaletime;
  181. unsigned int neigh6gcstaletime;
  182. int neigh4locktime;
  183. unsigned int dadtransmits;
  184. bool multicast_to_unicast;
  185. unsigned int multicast_router;
  186. bool multicast_fast_leave;
  187. bool multicast;
  188. bool learning;
  189. bool unicast_flood;
  190. bool sendredirects;
  191. bool ip6segmentrouting;
  192. bool isolate;
  193. bool drop_v4_unicast_in_l2_multicast;
  194. bool drop_v6_unicast_in_l2_multicast;
  195. bool drop_gratuitous_arp;
  196. bool drop_unsolicited_na;
  197. bool arp_accept;
  198. bool auth;
  199. unsigned int speed;
  200. bool duplex;
  201. bool pause;
  202. bool asym_pause;
  203. bool rxpause;
  204. bool txpause;
  205. bool autoneg;
  206. bool gro;
  207. int master_ifindex;
  208. };
  209. struct device_vlan_range {
  210. uint16_t start, end;
  211. };
  212. /*
  213. * link layer device. typically represents a linux network device.
  214. * can be used to support VLANs as well
  215. */
  216. struct device {
  217. struct device_type *type;
  218. struct avl_node avl;
  219. struct safe_list users;
  220. struct safe_list aliases;
  221. struct vlist_tree vlans;
  222. struct kvlist vlan_aliases;
  223. struct blob_attr *config_auth_vlans;
  224. struct blob_attr *auth_vlans;
  225. char ifname[IFNAMSIZ];
  226. int ifindex;
  227. struct blob_attr *config;
  228. bool config_pending;
  229. bool sys_present;
  230. /* DEV_EVENT_ADD */
  231. bool present;
  232. /* DEV_EVENT_UP */
  233. int active;
  234. /* DEV_EVENT_LINK_UP */
  235. bool link_active;
  236. bool auth_status;
  237. bool external;
  238. bool disabled;
  239. bool deferred;
  240. bool hidden;
  241. bool current_config;
  242. bool iface_config;
  243. bool default_config;
  244. bool wireless;
  245. bool wireless_ap;
  246. bool wireless_proxyarp;
  247. bool wireless_isolate;
  248. bool bpdu_filter;
  249. struct interface *config_iface;
  250. struct device_vlan_range *extra_vlan;
  251. int n_extra_vlan;
  252. /* set interface up or down */
  253. device_state_cb set_state;
  254. const struct device_hotplug_ops *hotplug_ops;
  255. struct device_user parent;
  256. struct device_settings orig_settings;
  257. struct device_settings settings;
  258. };
  259. struct device_hotplug_ops {
  260. int (*prepare)(struct device *dev, struct device **bridge_dev);
  261. int (*add)(struct device *main, struct device *member, struct blob_attr *vlan);
  262. int (*del)(struct device *main, struct device *member, struct blob_attr *vlan);
  263. };
  264. enum bridge_vlan_flags {
  265. BRVLAN_F_SELF = (1 << 0),
  266. BRVLAN_F_PVID = (1 << 1),
  267. BRVLAN_F_UNTAGGED = (1 << 2),
  268. };
  269. struct bridge_vlan_port {
  270. const char *ifname;
  271. uint16_t flags;
  272. int8_t check;
  273. };
  274. struct bridge_vlan_hotplug_port {
  275. struct list_head list;
  276. struct bridge_vlan_port port;
  277. };
  278. struct bridge_vlan {
  279. struct vlist_node node;
  280. struct bridge_vlan_port *ports;
  281. int n_ports;
  282. struct list_head hotplug_ports;
  283. uint16_t vid;
  284. bool local;
  285. bool pending;
  286. };
  287. extern const struct uci_blob_param_list device_attr_list;
  288. extern struct device_type simple_device_type;
  289. extern struct device_type tunnel_device_type;
  290. void device_vlan_update(bool done);
  291. void device_stp_init(void);
  292. int device_type_add(struct device_type *devtype);
  293. struct device_type *device_type_get(const char *tname);
  294. struct device *device_create(const char *name, struct device_type *type,
  295. struct blob_attr *config);
  296. void device_merge_settings(struct device *dev, struct device_settings *n);
  297. void device_init_settings(struct device *dev, struct blob_attr **tb);
  298. void device_init_pending(void);
  299. enum dev_change_type
  300. device_apply_config(struct device *dev, struct device_type *type,
  301. struct blob_attr *config);
  302. void device_reset_config(void);
  303. void device_reset_old(void);
  304. int device_init_virtual(struct device *dev, struct device_type *type, const char *name);
  305. int device_init(struct device *dev, struct device_type *type, const char *ifname);
  306. void device_cleanup(struct device *dev);
  307. struct device *device_find(const char *name);
  308. struct device *__device_get(const char *name, int create, bool check_vlan);
  309. static inline struct device *device_get(const char *name, int create)
  310. {
  311. return __device_get(name, create, true);
  312. }
  313. void device_add_user(struct device_user *dep, struct device *dev);
  314. void device_remove_user(struct device_user *dep);
  315. void device_broadcast_event(struct device *dev, enum device_event ev);
  316. void device_set_present(struct device *dev, bool state);
  317. void device_set_link(struct device *dev, bool state);
  318. void device_set_ifindex(struct device *dev, int ifindex);
  319. int device_set_ifname(struct device *dev, const char *name);
  320. void device_refresh_present(struct device *dev);
  321. int device_claim(struct device_user *dep);
  322. void device_release(struct device_user *dep);
  323. int device_check_state(struct device *dev);
  324. void device_dump_status(struct blob_buf *b, struct device *dev);
  325. void device_free_unused(void);
  326. struct device *get_vlan_device_chain(const char *ifname, int create);
  327. void alias_notify_device(const char *name, struct device *dev);
  328. struct device *device_alias_get(const char *name);
  329. void device_set_auth_status(struct device *dev, bool value, struct blob_attr *vlans);
  330. static inline void
  331. device_set_deferred(struct device *dev, bool value)
  332. {
  333. dev->deferred = value;
  334. device_refresh_present(dev);
  335. }
  336. static inline void
  337. device_set_disabled(struct device *dev, bool value)
  338. {
  339. dev->disabled = value;
  340. device_refresh_present(dev);
  341. }
  342. static inline bool
  343. device_link_active(struct device *dev)
  344. {
  345. if (dev->settings.auth && !dev->auth_status)
  346. return false;
  347. return dev->link_active;
  348. }
  349. bool device_check_ip6segmentrouting(void);
  350. void device_hotplug_event(const char *name, bool add);
  351. #endif